@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary: #373535;
/* 	--secondary: #f4d7a6; */
    --secondary: #e3e3e3;
    --white:#fff;
    --black: #000000;
	--paragraph:#333;
}

body {
	margin:0 !important;
	padding:0 !important;
font-family: 'Open Sans', sans-serif;
	overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
background: none;
    border: solid 1px #ddd;
    color: #444;
    font-size: 14px;
    line-height: normal;
    margin: 0 0 15px;
    padding: 13px 18px;
    width: 100%;
    outline: 0;
    border-radius:0;
font-family: 'Open Sans', sans-serif;
}
input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    padding: 11px 25px;
    font-weight: 600;
    font-size: 14px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
}
input[type="submit"]:hover {
	background: var(--secondary);
	color: var(--white);
	transition: 0.8s;
}
textarea {
	height: 90px;
	margin-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 15px 0;
	font-family: 'Open Sans', sans-serif;
	color: #242424;
	font-weight: 500;
	text-transform: inherit;
	line-height: inherit;
	letter-spacing: 0.5px;
}
h1 {
	font-size:28px
}
h2 {
	font-size:25px
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size:16px
}
h6 {
	font-size:15px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
     font-family: 'Poppins', sans-serif;
    color: var(--paragraph);
    font-size: 14px;
    line-height: 26px;
}
ul, li, a {
	list-style-type: none;
 font-family: 'Poppins', sans-serif;
	color:  var(--paragraph);
	line-height: 26px;
	font-size: 14px;
}
strong {
    color:  var(--paragraph);
}
a:hover {
	transition:0.8s;
	text-decoration:none;
}
.heading, .leftheading {
    margin-bottom: 30px;
    letter-spacing:0;
    font-size: 40px;
    font-weight: 600;
    position: relative;
    font-family: 'Poppins', sans-serif;
	text-align: center;
}
.zoomeffect {
	overflow: hidden;
	position:relative;
}
.zoomeffect img {
	transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
	transform: scale(1.1);
}

/* HEADER SECTION CSS */

.topbar {
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
}
.topbar .row {
	align-items: center;
}
.topbar .col-sm-4 {
    text-align: right;
}
.topbar-cntdtls{
    display: flex;
    align-items: center;
}
.topbar p {
    margin: 0;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #e9e9e9;
}
.topbar p:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.topbar p i {
    color: var(--secondary);
    margin-right: 3px;
}
.topbar .btn-primary {
    background: #000;
}
.topbar .col-sm-5 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
}
.smoicons ul {
    display: flex;
    align-items: center;
    column-gap: 22px;
    justify-content: end;
}
.topbar .smoicons li a {font-size: 15px;}
.menubar .row {
    align-items: center;
}
.menubar {
    position: sticky;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 3;
    background: #f9f9f9;
    box-shadow: 0 2px 12px #00000012;
}
.menucontainer a.btn {
    text-transform: uppercase;
}

/* MAINSLIDER SECTION CSS */

.mainslider {
    position: relative;
}
.mainslider video {
    width: 100%;
    object-fit: cover;
    height: 580px;
}
.mainslider .carousel-caption h1, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: .5px;
    margin-bottom: 0;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-caption p {
    font-size: 22px;
    margin: 28px 0 0;
    line-height: 28px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
    font-weight: 400;
    letter-spacing: 1px;
}
.mainslider .carousel-caption .btn-primary {
    opacity: 0;
    animation: lts .5s ease-in-out 1.2s forwards;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* HOMEABOUT SECTION CSS */

.homeabout {
    padding: 60px 0;
	overflow:hidden;
}
.homeabout .row {
    align-items: center;
}
.homeabout img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #eee;
    padding: 10px;
}
.homeabout-cnt {
    padding-left: 10px;
}
.homeabout .homeabout-cnt h2 {
    font-size: 34px;
    margin-bottom: 18px;
    position: relative;
    font-weight: 700;
    line-height: normal;
}
.homeabout .homeabout-cnt span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #626262;
    margin-bottom: 10px;
    padding-left: 40px;
	position: relative;
}

.homeabout .homeabout-cnt span:before {
    position: absolute;
    content: '';
    top: 9px;
    left: 0;
    width: 30px;
    height: 1px;
    background: #b7b7b7;
}
.homeabout-cnt p {
    text-align: justify;
}
.homeabout-cnt ul li {
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
    font-weight: 500;
}

.homeabout-cnt ul li:before {
    position: absolute;
    content: '\f0a9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: var(--primary);
    font-size: 13px;
    left: 0;
    top: 1px;
}
.homeabout-cnt a.learnmore {
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 15px;
}
.homeabout-cnt a.learnmore:hover {
    color: var(--secondary);
}

/* OUR MARKET SECTION CSS */


.market {
    padding: 50px 0 80px;
    /* background: url(../images/market-bg.jpg)no-repeat center center/cover; */
    background: #ededed;
}
/* .market h2.heading {
    color: var(--white);
} */
.market .row {
    row-gap: 23px;
}
.marketlist {
    position: relative;
    transition: .5s;
    text-align: center;
    box-shadow: 0 0 12px #0000001a;
    background: var(--white);
    padding: 15px 15px 20px;
    height: 100%;
    border: 1px solid #dadada;
    border-radius: 8px;
}
.marketlist figure {
    overflow: hidden;
    border-radius: 8px;
}
.marketlist img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.marketlist:hover img {
    transform: scale(1.1) rotate(4deg);
}
.marketlist p {
    margin-bottom: 0;
    font-size: 15px;
}
.marketlist:hover {
    transform: translateY(-10px);
}

.marketlist h3 {margin: 18px 0 0;font-weight: 700;letter-spacing: 0;position: relative;font-size: 20px;}
.col-sm-4:nth-child(4) .marketlist p {
    height: 80px;
    overflow-x: hidden;
}
.col-sm-4:nth-child(4) .marketlist p::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
}

.col-sm-4:nth-child(4) .marketlist p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background: var(--button);
}

.col-sm-4:nth-child(4) .marketlist p::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgb(0 0 0 / 30%);
    border-radius: 10px;
    background-color: var(--white);
}


/* HOMEREVIEW SECTION CSS */

.homereview{
    padding: 50px 0 60px;
	text-align:center;
	background: url(../images/homereview-bg.jpg)no-repeat center center/cover;
}
.homereview button.slick-prev.slick-arrow {
    left: -60px !important;
}
.homereview button.slick-next.slick-arrow {
    right: -60px !important;
}
.homereview button.slick-prev.slick-arrow, .homereview button.slick-next.slick-arrow {
    box-shadow: 2px 3px 5px #00000030;
}
.homereview .heading{
margin-bottom:40px;
	
}
.homereview .heading strong {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    padding-right: 40px;
    letter-spacing: 1px;
    position: relative;
}
.homereview .heading strong:after {
    position: absolute;
    content: '';
    top: 9px;
    right: 0;
    background: var(--secondary);
    height: 2px;
    width: 30px;
}

.homereview .heading span {
    display: block;
}
.homereviewlist {
    cursor: grab;
}
.homereviewlist-cnt {
    padding: 40px 25px 25px;
    box-shadow: 0 0 12px #00000026;
    border-radius: 13px;
    position: relative;
}
.homereviewlist-cnt:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: url(
    ../images/reviewlist-arrow.jpg)no-repeat center bottom/contain;
    height: 28px;
    width: 80px;
    z-index: 99;
}
.rating {
    padding: 7px 20px 8px;
    background: var(--primary);
    position: relative;
    width: 60%;
    margin: 0 auto -18px;
    border-radius: 3px;
    line-height: normal;
    z-index: 1;
}

.rating i {
    color: #ffaf00;
    font-size: 13px;
}
.homereviewlist p {
    margin: 0 auto;
    font-size: 14px;
    line-height: 28px;
}
.homereview figure {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 50px auto 10px;
    border-radius: 50%;
}
.homereviewlist h4 {
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 0;
}



/* HOMEBLOG SECTION CSS */

.homeblog {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #dee1e8;
}
.homebloglist {
     box-shadow: 0 0 12px #ddd;
     background: var(--white);
     transition: .5s;
     overflow: hidden;
}
.homeblog .date-tag {
    position: absolute;
    left: 20px;
    top: 0;
    background: var(--white);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    border-radius: 0 0 7px 7px;
}
.homeblog .date-tag i {
    margin-right: 5px;
    color: var(--secondary);
}
.homebloglist:hover {
  transform: translateY(-10px);
}
.homebloglist img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.homebloglist p{
  margin: 0;
}
.homeblogbox {
    padding: 15px 18px;
    position: relative;
    z-index: 2;
    margin-top: -10px;
    background: var(--white);
}
.homeblogbox h3 {
    margin: 10px 0 12px;
    line-height: 22px;
}
.homeblogbox h3 a {
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
}

.homeblogbox a.readmore {
    color: var(--primary);
    margin: 15px 0 0;
    display: inline-block;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}
.homeblogbox a.readmore:after {
    position: absolute;
    content: '';
    bottom: 3px;
    width: 100%;
    height: 1px;
    background: var(--primary);
    left: 0;
}
.homeblogbox a.readmore i {
    font-size: 11px;
    transition: .5s;
}
.homeblogbox a.readmore:hover i {
    transform: rotate(180deg);
}

/* COUNTDOWN SECTION CSS */

.countdown {
    background: #f8f8f8 url(../images/counter-bg.png)no-repeat center center/cover;
    padding: 60px 0;
	text-align:center;
}
.countdownitem h4 {
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}
.countdownitem h4 span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0 5px;
}

/* OUR PARTNER SECTION */

.partner {
    padding: 55px 0 60px;
}

.partner ul li img {
    width: 75% !important;
    margin: 0 auto !important;
}

/* FOOTER SECTION CSS */

footer {
    padding: 55px 0 40px;
    background: #111111;
}
footer a.logo {
    display: inline-block;
    margin-bottom: 18px;
}
footer .col-sm-3:nth-child(2) {
    padding-left: 60px;
}
footer .col-sm-3:nth-child(3){
    padding-left: 40px;
}
footer .col-sm-3:first-child p {
    margin: 22px 0;
}
footer h4 {
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid #323232;
}
footer ul li {
    line-height: 34px;
}
footer ul li, footer ul li a, footer p, footer p a {
    color: #eee;
}
footer a.btn {
    margin: 12px 0 0;
}
footer ul.footer-dtls li {
    position: relative;
    padding-left: 36px;
    line-height: 26px;
    margin: 12px 0;
}

footer ul.footer-dtls li i {
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    border-radius: 2px;
    background: var(--white);
    height: 26px;
    width: 26px;
}

footer ul.footer-dtls li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
footer ul.menu li a {
    position: relative;
    display: inline-block;
}

footer ul.socialicon {
    display: flex;
    column-gap: 18px;
}

.copyright {
    padding: 18px 0;
    background: #2a356b;
}
.copyright .row{
	align-items:center;
}
.copyright p, .copyright p a {
    margin: 0;
    color: var(--white);
}
.copyright p {
    letter-spacing: .5px;
}
footer ul.socialicon {
    display: flex;
    column-gap: 8px;
    margin-top: 22px;
}
footer ul.socialicon li a {
    background: #ffffff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #2a2a2a;
    font-size: 14px;
}
footer ul.socialicon li a:hover {
    background: var(--primary);
	color: var(--white);
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 36px;
    z-index: 3;
    padding: 0;
    background: var(--primary);
    color: var(--white);
    width: 45px;
    height: 45px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    padding-top: 10px;
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
    background: var(--primary);
    color: #fff;
}
#GoToTop.show {
	display:block
}


#whatsappbtn {
	cursor: pointer;
	position: fixed;
	bottom:30px;
	left: 20px;
	z-index: 99999999;
	padding: 0 9px;
	background: #4fcc5d;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 32px;
	color: var(--white);
}
#whatsappbtn img {
	width: 30px;
	margin-top: 10px;
}
.breadcrumb {
    background: url(../images/breadcrumb.jpg)no-repeat center center/cover;
    padding: 100px 0 !important;
    margin-bottom: 0 !important;
}
.breadcrumb h1 {
}
.breadcrumb h1 .breadcrumb_last {
    font-size: 32px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}
.breadcrumb h1 span a {
	display: none;
}
.breadcrumb span a:after {
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    padding: 0 7px;
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
}
.breadcrumb h1 p#breadcrumbs {
	text-align: center;
}
.breadcrumb p, .breadcrumb p a {
    color: var(--white);
    margin: 0;
}
p#breadcrumbs {
	text-align: center;
}

.page-id-1263 .breadcrumb {
    background: #f1f1f1;
}
.page-id-1263 .breadcrumb p, .page-id-1263 .breadcrumb p a {
    color: var(--black);
}
.page-id-1263 .breadcrumb h1 .breadcrumb_last {
    color: var(--black);
}

.secondary-container {
	padding:60px 0;
}
.secondary-container.services {
    background: transparent;
}
.secondary-container.services-dtls {
    padding-bottom: 0;
}

/* CONTACT US PAGE CSS */

.contact-details span {
    position: relative;
    padding-left: 46px;
    font-size: 17px;
    font-weight: 500;
    color: var(--secondary);
    display: block;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-details span::before {
    content: "";
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    width: 42px;
    height: 6px;
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.contact-details h2 {
    font-size: 34px;
    line-height: 44px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 700;
}

.contact-details p {
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0 0;
}

.contactdtlslist {
    background-color: #f3f3f3;
    padding: 35px 10px;
    text-align: center;
    border-radius: 6px;
    transition: .5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contactdtlslist p {
    margin: 0;
}
.contactdtlslist:hover {
    background-color: var(--primary);
    color: white;
}

.contactdtlslist:hover i {
    background-color: var(--secondary);
}

.contactdtlslist:hover a,
.contactdtlslist:hover p,
.contactdtlslist:hover h3 {
    color: white;
}

.contactdtlslist li a:hover {
    color: var(--primary);
}

.contactdtlslist i {
    border-radius: 50%;
    color: var(--black);
    height: 60px;
    width: 60px;
    background: var(--secondary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: .5s;
}

.contactdtlslist h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    transition: .5s;
}
.contactdtlslist p a,
.contactdtlslist p {
    transition: .5s;
	font-size: 15px;
}

.contactform {
    padding: 40px;
    box-shadow: 0 0 15px #00000026;
    border-top: 3px solid var(--secondary);
}

.contactform .btn {
    background: linear-gradient(to right, #F02830 6%, #FF5E14 96%);
    padding: 11px 22px;
    color: white;
    border-radius: 0;
    font-weight: bold;
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: .5px;
}

.contactform h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 27px;
}

.contactform .form-control, .contactform input[type="text"] {
    border-radius: 0;
    border: 1px solid #e1e1e1;
    background: #f7f7f7;
    margin: 11px 0;
}

.contactform .form-control:focus {
    border-color: var(--secondary);
    box-shadow: none;
}

.contactform iframe {
    height: 100%;
    width: 100%;
    filter: brightness(0.9);
}

.contactform textarea.form-control {
    height: 130px;
}
.contactform input[type="submit"] {
    margin-top: 20px;
}


/* WHO WE ARE PAGE CSS */

.aboutus h2.heading strong {
    display: block;
    font-weight: 300;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 6px;
}
.aboutus-cnt h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.aboutus-content h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0;
    line-height: 38px;
}
.aboutus-cnt p strong {
    font-size: 22px;
    margin: 0 0 15px;
    display: inline-block;
    font-weight: 500;
}
.aboutus-content p {
    text-align: justify;
    font-size: 15px;
	line-height: 27px;
}
.aboutus-content p:last-child {
    margin: 0;
}
.aboutus .aboutus-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}
.aboutus-content {
    padding: 25px 30px 30px;
    box-shadow: 3px 3px 15px #0000001f;
    border-bottom: 3px solid var(--primary);
    border-radius: 20px;
}

.whoweare {
    padding: 60px 0;
    margin: 60px 0 0;
    background: url(../images/whoweare-bg.jpg)no-repeat center center/cover;
    background-attachment:fixed;
}
.whowearelist {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    height: 100%;
}
.whowearelist figure {
    height: 105px;
    width: 105px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 0;
    background: #0e54f30d;
}
.whowearelist p {
    margin: 0;
}
.whowearelist h3 {
    font-weight: 700;
    letter-spacing: 0;
    margin: 18px 0 15px;
}


/* OUR VALUE SECTION CSS */

.ourvalue .row{
    align-items:center;
}
.ourvalue figure {
    margin: 0;
}

.ourvalue figure img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.ourvalue-cnt {
    position: relative;
}
.ourvalue h3{
    font-weight: 700;
    font-size: 28px;
}
.ourvalue p{
    text-align: justify;
}
.ourvalue-cnt h4 {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin: 14px 0;
}

.ourvalue-cnt ul li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 22px;
}

.ourvalue-cnt ul li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 6px;
    padding: 3px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid #d7d7d7;
}


.teamlist img {
    width: 100%;
    height: 350px;
}

.teamlist-details {
    padding: 20px;
    border: 2px solid black;
    border-top: 0;
    position: relative;
}
.social-icons {
    position: absolute;
    bottom: 100%;
    right: 0;
    overflow: hidden;
}
.teamlist-details i.fas.fa-share-alt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    font-size: 14px;
    border-top: 1px solid #eee;
    background-color: white;
    position: relative;
}
.teamlist-details ul li a {
    opacity: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    font-size: 14px;
    transition: .5s;
    transform: translateY(150px);
    background-color: white;
}
.teamlist:hover .teamlist-details ul li a {
    opacity: 1;
    transform: translateY(0px);
}
.teamlist figure {
    margin: 0;
}

.teamlist {
    box-shadow: 0 0 12px #0000001a;
}

.teamlist-details h3 {
    margin: 0;
    font-weight: 700;
    text-align: center;
    font-size: 22px;
}

.teamlist-details h3 span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #9d9d9d;
    font-weight: 600;
    margin-top: 5px;
}



/* SERVICES DETAILS PAGE CSS */


.marketdtls-box {
    padding: 12px 20px;
    background: #ffffff;
    box-shadow: 0 0 12px #0000001a;
    border-top: 3px solid var(--secondary);
}
.marketdtls-box h3 {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0;
}
.marketdtls-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.marketdtls-box input[type="text"], .marketdtls-box input[type="tel"], .marketdtls-box input[type="email"], .marketdtls-box textarea, .marketdtls-box select {
    margin: 0 0 8px 0;
    border: none;
    border-bottom: 1px solid #e7e7e7;
    padding: 13px 0;
}
.marketdtls-box input[type="submit"] {width: 100%;padding: 13px 20px;}
.marketdtls-box  span.wpcf7-spinner {
    position: absolute;
}
.marketdtls-box ul li a {
    position: relative;
    line-height: 32px;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
}
.marketdtls-box ul li a:before {
    font-size: 14px;
    position: absolute;
    content: '\f0a4';
    font-family: 'Font Awesome 5 Free';
    color: var(--secondary);
    left: 0;
}

.marketdtls-content h2 {
    font-weight: 700;
    letter-spacing: 0;
}


/* MARKET PAGE CSS */

.markets .row {
    row-gap: 23px;
}


/* MARKET DETAILS PAGE CSS */

.marketdtls-content {
    padding-left: 10px;
}

.marketdtls-content p {
    text-align: justify;
}
.secondary-container.market-details figure {
    margin: 0;
}

.secondary-container.market-details figure img {
    width: 100%;
    height: 452px;
    object-fit: cover;
}



/* REFERENCES PAGE CSS */

.references-image img {
    width: 100%;
    height: 360px;
	object-fit: cover;
}
.secondary-container.references .row {
}

.references-content p {
    text-align: justify;
}

.references-content {
    padding-left: 10px;
}
.referenceslist {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 12px #0000001a;
    border-top: 3px solid #e1e1e1;
}

.referenceslist img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}
.referenceslist h3 {
    font-weight: 700;
    margin: 0;
    padding: 20px;
    border-top: 1px solid #ebebeb;
}

.referenceslist figure {
    margin: 0;
}


/* OUR ASSETS SECTION CSS */

.ourassets {
    padding: 50px 0 60px;
    background: linear-gradient(180deg, transparent, #f1f1f1);
    margin-bottom: 50px;
}
.ourassets .row {
    row-gap: 23px;
}
.ourassetslist {
    background: var(--white);
    box-shadow: 0 0 12px #0000001a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: .5s;
}

.ourassetslist h3 {
    margin: 0;
    text-align: center;
    font-weight: 600;
    position: absolute;
    background: #000000ab;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 14px;
    color: var(--white);
    transition: .5s;
}
.ourassetslist figure {
    margin: 0;
}
.ourassetslist figure img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: .5s;
}
.ourassetslist:hover {
    transform: translateY(-10px);
}
.ourassetslist:hover img {
    transform: rotate(3deg) scale(1.1);
}
.ourassetslist:hover h3 {
    background: #060606;
}



@media only screen and (max-width: 1199px) {
.homeabout .homeabout-cnt h2 {
    font-size: 26px;
}
.countdownitem h4 {
    font-size: 16px;
}	
}

@media only screen and (max-width: 991px) {
.menucontainer  ul.menutop {
    display: none !important;
}
.menubar {
    padding: 18px 0;
}	
.mainslider video {
    height: 420px;
}	
.mainslider .carousel-caption h1 {
    font-size: 32px;
}	
.mainslider .carousel-caption p {
    font-size: 18px;
    margin: 18px 0 0;
}	
.homeabout img {
    height: 600px;
}	
.heading, .leftheading {
    margin-bottom: 25px;
    font-size: 32px;
}	
.secondary-container.aboutus>.container>.row {
    flex-direction: column-reverse;
    row-gap: 20px;
}	
	
.contact-details h2 {
    font-size: 30px;
    line-height: 34px;
}	
	
.contactform {
    padding: 20px;
}
.contactform h2 {
    font-size: 24px;
}	
.contactform iframe {
    height: 300px;
	margin-bottom:20px;
}	
.aboutus .aboutus-image img {
    height: auto;
}	
.ourvalue figure img {
    height: auto;
}	
}


@media only screen and (max-width: 767px) {	
.menubar a.logo img {
    width: 190px;
}
.homeabout-cnt {
    padding: 25px 0 0;
}	
.homeabout, .market, .homereview, .countdown, .partner, footer {
    padding: 35px 0;
}
.market .row {
    row-gap: 12px;
}	
.homereview .heading {
    margin-bottom: 20px;
}	
.countdown .row {
    row-gap: 30px;
}	
.homeabout img {
    height: auto;
}	
	
.breadcrumb {
    padding: 50px 0 35px !important;
}	
.breadcrumb h1 .breadcrumb_last {
    font-size: 24px;
}	
.aboutus h2.heading strong {
    font-size: 20px;
}	
.secondary-container {
    padding: 35px 0;
}	
.ourvalue figure img, .ourvalue-cnt {
    transform: translateX(0);
    height: auto;
}
.ourvalue h3 {
    font-size: 22px;
}	
.whoweare {
    padding: 35px 0;
    margin: 35px 0;
}	
.markets .row {
    row-gap: 12px;
}	
	
.ourassets {
    padding-top: 30px;
    margin-top: 30px;
}	
.ourassets .row {
    row-gap: 7px;
}	
}

@media only screen and (max-width: 568px) {
.mainslider video {
    height: 360px;
}
.homereview button.slick-prev.slick-arrow, button.slick-prev.slick-arrow {
    left: 0 !important;
}
.homereview button.slick-next.slick-arrow, button.slick-next.slick-arrow {
    right: 0 !important;
}	
.heading, .leftheading {
    font-size: 24px;
}	
.contactform .form-control {
    margin: 0;
}	
}


@media only screen and (max-width: 395px) {
.mainslider video {
    height: 180px;
    object-position: top;
}
.mainslider .carousel-caption h1 {
    font-size: 26px;
}
.mainslider .carousel-caption p {
    font-size: 15px;
    margin: 8px 0 0;
}	
.contact-details h2 {
    font-size: 24px;
    line-height: 36px;
}
}