/*@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');*/

:root{
    --primary-color:#f1c304;
    --secondary-color:#191819;
    --black-color:#000000;
    --white-color:#fff;
}

/****base css*********/
*{ margin: 0; padding: 0; box-sizing: border-box; font-family: "Inter", sans-serif!important; }
body {font-size: 20px; line-height: 1.178; color: var(--black-color); -webkit-font-smoothing: antialiased; font-family: "Inter", sans-serif!important; font-optical-sizing: auto; font-weight: 400; margin: 0;}
.container { max-width: 1920px;width: 100%;padding: 0 60px;margin: 0 auto }

h1, h2, h3, h4, h5, h6 {font-weight: 600; line-height: 1.186;}
h1 { font-size: 54px; margin: 0px 0px 34px; }
h2 { font-size: 48px;}
h3 { font-size: 42px; margin: 0px 0px 30px; }
h4 { font-size: 36px; margin: 0px 0px 20px; }
h5 { font-size: 32px; margin: 0px 0px 20px; }
h6 { font-size: 28px; margin: 0px 0px 20px; }
p { margin:0; padding:0 0 0px 0; line-height: 1.178; font-size: 20px;}

/* Site Button */
.btn{background: var(--primary-color); color: var(--secondary-color); border: 2px solid var(--primary-color); font-size: 18px; justify-content: center; align-items: center; font-family: "Inter", sans-serif; font-weight: 500; text-transform: uppercase; padding: 10px 30px; transition: 0.45s ease-in-out;}
.btn:hover, .btn:focus, .btn:active, .btn:active:focus {background: var(--secondary-color); color: var(--primary-color); filter: drop-shadow(8px 0px 10px rgb(0 0 0 / 30%));}
.btn.dark{background: var(--black-color); border-color: var(--black-color); color: var(--white-color);}
.btn.dark:hover, .btn.dark:focus, .btn.dark:active, .btn.dark:active:focus{background: transparent; color: var(--black-color);}

/* Common */
a{ color: var(--primary-color); outline:none !important; text-decoration: none; transition:all 0.3s ease-in 0s;-webkit-transition:all 0.3s ease-in 0s; text-decoration: none; vertical-align: middle;}  
a:hover,a:focus { outline: none !important; color: var(--primary-color);; text-decoration: none; }
input , button { transition:all 0.3s ease-in 0s; -webkit-transition:all 0.3s ease-in 0s; outline: none !important; }
ul,ol { padding-left: 15px; margin-bottom: 15px; }
ul:not([class]) li:not([class]) + li, ol:not([class]) li:not([class]) + li{margin-top: 8px;}
img { outline: none !important; max-width: 100%; vertical-align: middle; }
hr { margin: 12px 0; opacity: 0.3; }

/* Form Element */
input:not([type="submit"], [type="button"], [type="checkbox"], [type="radio"]){border:5px solid #0042ab; background: #fff; border-radius: 16px; height: 80px; width: 100%; line-height: 1; padding: 0 10px; color: #0042ab;}	
input[type="radio"]{appearance: none; -moz-appearance: none; -webkit-appearance: none; position: relative; height: 24px; width: 24px; margin: 0; vertical-align: middle;}
input[type="radio"]::after{content:''; position: absolute; height: 100%; width: 100%; border-radius: 50%; top: 0; left: 0; border: 5px solid #0042ab; box-sizing: border-box;}
input[type="radio"]:checked:before { content: ''; position: absolute; height: 42%; width: 42%; border-radius: 50%; top: 50%; left: 50%; background: #0042ab; box-sizing: border-box; transform: translate(-50%, -50%); }
input[type="checkbox"]{appearance: none; -moz-appearance: none; -webkit-appearance: none; position: relative; height: 24px; width: 24px; margin: 0; vertical-align: middle;}
input[type="checkbox"]::after{content:''; position: absolute; height: 100%; width: 100%; border-radius: 0; top: 0; left: 0; border: 5px solid #0042ab; box-sizing: border-box;}
label{font-size: 24px; color: #0042ab; font-weight: normal; margin: 0;}
input[type="checkbox"]:checked:before { content: ''; position: absolute; top: 36%; left: 61%; box-sizing: border-box; transform: translate(-50%, -50%) rotate(-43deg); border-left: 3px solid #0042ab; border-bottom: 3px solid #0042ab; padding: 3px 7px; }

/*********************************  Header *************************************/
header { width: 100%; padding: 21px 0; z-index: 9;     position: relative;    background-color: white;}
header .header-row { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; margin: 0 auto;}
header .header-row .header-col{min-height: 1px; flex: 1;}
header .logo{max-width: 373px;}
header .header-right{display: flex; justify-content: flex-end; align-items: center; gap: 25px;}
header .header-right .btn{background: var(--white-color); border-color: var(--white-color); color: var(--secondary-color);}
header .header-right .btn:hover, header .header-right .btn:focus{background: var(--primary-color); border-color: var(--primary-color);}
header .menu-icon{cursor: pointer; position: relative; transition: 0.20s ease-in-out;    z-index: 11;}
header .menu-icon.active img{transition: 0.20s ease-in-out;}
header .menu-icon::after{content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../images/close-menu.png) no-repeat; background-size: 100%; transform: scale(0); transition: 0.20s ease-in-out;}
header .menu-icon.active img{transform: scale(0); transition: 0.20s ease-in-out;}
header .menu-icon.active::after{transform: scale(1); transition: 0.20s ease-in-out;}
header .menu { position: absolute; top: 100%; background: var(--secondary-color); right: 0; padding: 20px; min-width: 300px; display: none;}
header .menu ul{padding: 0; margin: 0; list-style: none;}
header .menu ul li + li{margin-top: 10px;}
header .menu ul li a{font-size: 24px; line-height: 1; font-weight: 700; color: var(--white-color);}
header .menu ul li a:hover{color: var(--primary-color);}
header .menu ul li.parent .mod-menu__sub { padding: 12px 10px 8px; display: none;}
header .menu ul li.parent > a{display: flex; justify-content: space-between; gap: 10px; align-items: center;}
header .menu ul li.parent > a span{ color: var(--white-color); font-size: 16px; display: inline-block; margin-left: 6px; vertical-align: middle; transition: 0.5s; }
header .menu ul li.parent > a.active span{transform: rotate(-90deg);}
header .menu ul li.parent > a:hover span, header .menu ul li.parent > a.active span{color: var(--primary-color);}
header .menu ul li.parent .mod-menu__sub a { font-weight: 400; font-size: 18px; }
header .menu ul li.parent .mod-menu__sub li + li{margin-top: 7px;}

.header-main{
    transition: all 0.5s ease 0s;
}

.header-main.sticky {
    position: fixed;
    box-shadow: rgba(0,0,0,0.25) 0px 0px 10px 5px;
    z-index: 10;
	transition: all 0.5s ease 0s;
}



/*********************************  Content Box  *************************************/
.content-box {width: 100%; padding: 50px 0 0; display: inline-block; vertical-align: middle; overflow:hidden}
.content-box p:last-child{padding-bottom: 0;}
.left-side { float: left; width: 23%; padding-right: 15px; padding-top: 12px;}
.right-side { float: right; width: 23%; padding-top: 12px;}
.content-side.left { float: right; width: 75%; }
.content-side.both { float: left; width: 50%; margin-left: 1%; }
.content-side.right { float: left; width: 75%; }
.main-body-top { float: left; width: 100%; margin-bottom: 20px; }
.main-body-bottom { float: left; width: 100%; margin-top: 20px; }
.inner-page .content-box .page-header { border: none; padding: 0; margin: 0; }
.inner-page .content-box h1.page-header, .inner-page .content-box .page-header h1{ margin: 0 0px 20px; }
dl.article-info{margin: 0 0 26px;}

/* Custom Globle */
.owl-theme .owl-dots, .owl-theme .owl-nav.disabled + .owl-dots{margin: 46px 0 0;}
.owl-theme .owl-dots .owl-dot span{height: 22px; width: 22px; background: #7d7d7d;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{background: var(--primary-color);}

/* Home Banner */
.home-banner { position: relative; }
.home-banner .img img { width: 100%; height: 100%; min-height:500px;    object-fit: cover;}
.home-banner .container{position: absolute; top:50%; transform: translateY(-50%); left: 0; right: 0; margin: auto;}
.home-banner .container .hero-banner h2 { color: #fff; max-width: 700px; font-weight: 600; font-size: 54px;}
.home-banner .container .hero-banner p { color: #fff;max-width: 460px;}
/* About */
.about{ position: relative; background:url(../images/about-bg.png) no-repeat left top; padding: 252px 0; background-size: 100% 100%; display: flex; align-items: center; margin: -5% 0 0; overflow: hidden;}
.about:after{content: ''; position: absolute; top: 0; right: 0; transform: translateX(50%); opacity: 0; visibility: hidden; height: 100%; width: 100%; max-width: 1280px; background: url(/images/van-bg.png) no-repeat top 69% right -90px; background-size: 100%; pointer-events: none; transition: 2s;}
.about.aos-animate::after{transform: translateX(0); opacity: 1; visibility: visible;}
.about .text-block { max-width: 777px; margin: 3% 0 0;}
.about .text-block p{color: var(--white-color); max-width: 620px;}
.about .btn{margin-top: 10px;}

/* Service */
.services{background-image: url(/images/yellow-bg.jpg)}
.services .container{
	padding:0;
}
.services .text-block h2{color: var(--white-color); text-align: center; margin:0 0 36px}
.services .text-block p{color: var(--white-color); text-align: center;}
.services .services-icon-grid{display: grid; grid-template-columns: repeat(6, 1fr); gap: 41px; margin: 0 auto; max-width: 1300px; padding-bottom: 60px!important; padding-top: 60px;}
.services .services-box{display: flex; text-align: center; position: relative; z-index: 111;border-radius: 8px;}
/*.services .services-box:hover{background: var(--primary-color); transform: scale(1.03);}*/
.services .services-box .img{position: relative; z-index: 11;width:100%;}
.services .services-box .img img{width:100%;}
.services .services-box .title { font-size: 26px; color: var(--white-color); position: absolute; bottom: 25px; left: 0; width: 100%; font-weight: 700; padding: 0 20px; }
/*.services .services-box:hover .title { color: var(--secondary-color); position: absolute; bottom: 25px; font-weight: 700; padding: 0 20px; }*/
.services .btn-sec{text-align: center; margin: 81px 0 0;}
.services .dj-slide-desc-text{
    padding: 20px;
	    min-height: 185px;
}
/* Our Clients */
.our-clients{padding: 90px 0 110px;}
.our-clients h2{margin: 0 0 37px; text-align: center;}
.our-clients ul{display: flex; flex-wrap: wrap; gap:60px 130px; list-style: none; padding: 0; margin: 0; justify-content: center; align-items: center; text-align: center;}
.our-clients ul li a img{transition: 0.5s;}
.our-clients ul li:hover a img{transform: scale(1.04);}
.our-clients h2 {color:black!important}

/* Testimonial */
.testimonial{padding: 110px 0 130px; background: url(../images/testimonial.jpg) no-repeat center; background-size: cover;}
.testimonial h2{text-align: center; color: var(--white-color); margin: 0 0 72px;}
.testimonials-box{min-height: 570px; width: auto; box-sizing: border-box; border: 7px solid #fff; padding: 53px 35px 27px; text-align: center; background: rgb(255 255 255 / 62%); border-radius: 15px; overflow: hidden;}
.testimonials-box p{color: var(--black-color); padding: 0 0 43px; font-size: 18px;}
.testimonials-box .avtar{height: 142px; width: 142px; background: var(--secondary-color); border-radius: 50%; padding: 11px; margin: auto; display: flex; align-items: center; justify-content: center; position: relative;}
.testimonials-box .avtar:after{content: ''; height: 7px; width: 100vw; position: absolute; left: 50%; transform: translateX(-50%); background: #fff; z-index: -1;}
.testimonials-box .avtar img{max-height: 100%; width: auto;}
.testimonials-box .avtar-name{font-size: 24px; margin: 13px 0 0; font-weight: 700;}
.testimonials-box .avtar-name .designation{display: block;}

/** Accreditations **/
.accreditation {
    padding: 60px;
    margin: 0 auto;
}
.accreditation h2 {color: black !important;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;} 
.accreditation .container{
    padding: 0;
    max-width: 1300px;
}

div#maximenuck132.maximenuckh ul.maximenuck li.maximenuck.level1 li.maximenuck > a span.titreck{
	font-size:16px!important;
}
/* Footer */
footer{    background-color: #ffcf0a;    padding: 60px;}
footer .container{max-width: 1300px;padding:0;}
footer .footer-top { display: flex; justify-content: space-between; align-items: center;padding-bottom:30px; }
footer .footer-col{min-height: 1px; flex: auto;}
footer .footer-logo{text-align: left;}
footer .footer-logo img{max-width: 373px;}
footer .footer-menu{position: relative; padding: 53px 0 0;}
footer .footer-menu ul { padding: 0; margin: 0; list-style: none; display: flex; align-items: center; justify-content: center; gap: 0 95px; }
footer .footer-menu ul li{margin: 0;}
footer .footer-menu ul li a{font-weight: 500; color: var(--primary-color);}
footer .footer-menu ul li a:hover{text-decoration:underline; text-underline-offset: 8px;}
footer .footer-contact-us{text-align: right;}
footer .terms-links{margin: 204px 0 32px; text-align: center;}
footer .terms-links a{color: var(--white-color); font-size: 14px;}
footer .terms-links a:hover{color: var(--primary-color);}
footer .terms-text p{padding: 0; color: var(--white-color); text-align: center; font-size: 14px;}
footer .terms-text p a:not(:hover){color: var(--white-color);}
footer .footer-social { display: flex; align-items: center; justify-content: center; gap: 0 36px; margin: 42px 0 0; }
.footer-copyright { color: var(--white-color); font-size: 9px; margin: 20px 0 0; display: flex; align-items: center; justify-content: center; gap: 15px; font-family: "Montserrat", sans-serif;}
.footer-copyright img { width: 60%;}

.footer_middle_top{
        display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 30px 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.footer_middle_contact_column{
    max-width:300px;
}

.footer_middle_heading{
    margin:0 0 5px;
    font-size:22px;
    font-weight:300;
    line-height:1.2;
	color:black;
	padding:0;
}

.footer_middle_address{
    margin:0 0 28px;
    font-size:22px;
    font-weight:300;
    line-height:1.25;
	color:black;
}

.footer_middle_contact_row{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer_middle_contact_row img{
    width:22px;
    height:22px;
    object-fit:contain;
}

.footer_middle_contact_row a{
    font-size:22px;
    font-weight:300;
    line-height:1.2;
    text-decoration:none;
    color:black;
}

.footer_middle_links_column,
.footer_middle_services_column{
    display:flex;
    flex-direction:column;
    padding-top:42px;
}

.footer_middle_links_column a,
.footer_middle_services_column a{
    font-size:22px;
    font-weight:300;
    line-height:1.25;
    text-decoration:none;
    color:black;
}

@media (max-width:991px){

    .footer_middle_top{
        flex-direction:column;
        gap:20px;
    }

    .footer_middle_links_column,
    .footer_middle_services_column{
        padding-top:0;
    }

}

.footer_middle_bottom{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:40px;
    padding-top:30px;
}

.footer_middle_socials{
    display:flex;
    align-items:center;
    gap:24px;
    min-width:220px;
}

.footer_middle_socials a{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:black;
	font-size:30px;
}

.footer_middle_socials i{
    font-size:42px;
    line-height:1;
}

.footer_middle_company{
    flex:1;
    text-align:center;
}

.footer_middle_company p{
    margin:0;
    font-size:16px;
    font-weight:300;
    line-height:1.3;
    color:rgba(0,0,0,0.55);
}

.footer_middle_credit{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:34px;
}

.footer_middle_credit a{
    display:flex;
    align-items:center;
}

.footer_middle_credit span{
    font-size:10px;
    line-height:1;
    color:#111;
}

.footer_middle_credit img{
    height:15px;
    width:auto;
    display:block;
}

@media (max-width:991px){

    .footer_middle_bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer_middle_company{
        text-align:left;
    }

}

/* Inner Page */
.inner-page header{position: relative;}

/*** additional ****/

.hero-banner {
	    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1300px;
}

/* cables */

.what-lower {
	margin-left: -60px;
	margin-right: -60px;
	margin-top: 60px;
	padding: 0 60px;
}

.what-inner {
    max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}


.solutions-flex {
	margin-left: -60px;
	margin-right: -60px;
	margin-bottom: 0;
	padding: 60px;
}

.solutions-main {
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}

.solutions-main a{
	margin: 0!important;
}

.cable-flex-main {
	margin: 0 -60px;
	padding: 60px;
}

.cable-flex-upper {
	max-width: 1300px;
	margin: 0 auto;
	text-align: left;
}



.what-we-do-flex {
	    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    padding-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.what-we-do-card {
	    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    border: solid 2px #f2c204;
    border-radius: 12px;
    min-height: 200px;
    padding: 10px;
    text-align: center;
    width: 100%;
    min-width: 160px;
    max-width: 160px;
}

.what-we-do-card h4 {
	font-size: 20px;
	margin:0;
}

.what-we-do-left {
	flex: 1;
}


.what-we-do-right {
	flex: 1;
}

.what-we-do-left img{
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.what-we-do-right img{
	width: 100%;
	height: auto;
	border-radius: 12px;
}


.what-we-do-main {
	margin: 0 -60px;
	padding-top: 0px;
	padding-bottom: 60px;
	padding-left: 60px;
	padding-right: 60px;
}

/* services 2026 */


.services-new-flex {
	padding: 60px;
}

.services-new-flex h2{
	color:black;
	padding-bottom:20px;
}

.services-new-flex p{
	margin-bottom:40px;
}

.services-new-upper {
	    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 60px;
}



.services-new {
	display: flex;
	max-width: 1300px;
	margin: 0 auto;
	column-gap: 20px;
	row-gap: 20px;
	flex-wrap: wrap;
}

.services-new h4 {
	font-size: 22px;
}

.new-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	border: solid 2px #f2c204;
	border-radius: 12px;
	min-height: 200px;
	padding: 20px;
}

.new-box img {
	width: 80px;
	height: auto;
}

.services-new-flex-2 {
	margin: 0 -60px;
	padding: 60px;
}

/* social values */

.social-flex {
	margin: 0 -60px;
	padding: 60px;
	align-items: center;
}

.social-columns {
	display: flex;
	max-width: 1300px;
	margin: 0 auto;
	column-gap: 20px;
}

.social-left {
	flex: 1;
}


.social-right {
	flex: 1;
}

.social-lower-flex {
	background-image: url("/images/social-bg-1.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 0 -60px;
    padding: 70px 60px;
}

.social-lower {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.social-lower p {
	color: #1a1a1a;
}

.social-cards {
	display: flex;
	flex-wrap: wrap;
	max-width: 1300px;
	margin: 0 auto;
	padding-top: 60px;
	column-gap: 20px;
	row-gap: 20px;
}

.social-card {
	flex: 1;
	border: 2px solid #fff;
	padding: 30px 20px;
	border-radius: 12px;
	background: #595959;
	background: linear-gradient(44deg,rgba(89, 89, 89, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.social-card p,.social-card h4{
	color: #fff;
}

/* leadership */

.leaders-flex {
	margin: 0 -60px;
    padding: 70px 60px;
}

.leaders-top {
	max-width: 1100px;
    text-align: center;
    margin: 0 auto;
}

.leaders-top p {
	padding: 0!important;
}

.leaders {
	display: flex;
	max-width: 1300px;
	margin: 0 auto;
	padding-top: 60px;
	column-gap: 20px;
}

.leader-card {
	flex: 1;
	text-align: center;
	border-radius: 12px;
	border: solid 2px #f2c204;
	padding-bottom: 10px;
}

.leader-card img {
	border-radius: 12px 12px 0 0;
	padding-bottom: 10px;
}

/* values */

.values-flex {
    text-align: center;
    background: #F2C204;
    background: linear-gradient(180deg,rgba(242, 194, 4, 1) 0%, rgba(255, 226, 112, 1) 100%);
    margin: 0 -60px;
    padding: 70px 60px;
}

.values-head h2{
	color: #1a1a1a!important;
}

.values-main {
    display: flex;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    column-gap: 10px;
	flex-wrap: wrap;
	row-gap: 10px;
}

.value-card {
    flex: 1;
    border-radius: 12px;
    padding: 20px;
	row-gap: 20px;
}

.value-card h3 {
	font-size: 22px;
}

.value-card img {
    width: 50px;
    height: auto;
	padding-bottom: 20px;
}
.dj-slide-description p{
	margin:0;
	    padding: 0;
}

/** accreds 2026 **/

.credit-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
	max-width: 1300px;
}

.cred-card img {
  width: 100%;
  height: auto;
}

.cred-card {
    flex: 1;
    padding: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .cred-card {
    flex: 1 1 160px;
    max-width: 180px;
    padding: 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .credit-main {
    gap: 15px;
  }

  .cred-card {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 10px;
  }

  .cred-card img {
    max-width: 140px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cred-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cred-card img {
    max-width: 160px;
  }
}

/* ================================
   Partners Logo Carousel
================================ */

.logo-carousel {
  overflow: hidden;
  position: relative;
  background: #fff;
  margin: 0 -60px !important;
  padding: 32px 0 36px;
  text-align: center;
}

.logo-title {
  margin-bottom: 28px;
}

.logo-title h3 {
  color: black !important;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Fade edges */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    #fff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(
    to left,
    #fff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}

.logo-track img {
  width: 230px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 45px;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  transform: scale(1.06);
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================================
   Tablet
================================ */

@media (max-width: 1024px) {

  .logo-carousel {
    margin: 0 -30px !important;
  }

  .logo-track img {
    width: 170px;
    margin: 0 30px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 80px;
  }

}

/* ================================
   Mobile
================================ */

@media (max-width: 767px) {

  .logo-carousel {
    margin: 0 -20px !important;
    padding: 24px 0 28px;
  }

  .logo-title {
    margin-bottom: 20px;
  }

  .logo-title h3 {
    font-size: 15px;
  }

  .logo-track {
    animation-duration: 20s;
  }

  .logo-track img {
    width: 120px;
    margin: 0 20px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 50px;
  }

}

.stats-section {
  background: #262626;
  padding: 100px 60px;
}

.stats-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.stat-item {
  flex: 1;
}

.stat-number {
  color: #ffd400;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
	font-weight:600;
}

.stat-label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-label-wrap span {
  display: block;
  width: 5px;
  height: 50px;
  background: #f1c304;
}

.stat-label-wrap p {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  text-transform: uppercase;
	font-weight:500;
}

@media (max-width: 900px) {
  .stats-wrapper {
    gap: 35px;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-label-wrap p {
    font-size: 16px;
	  padding:0;
  }
	.stats-section {
  padding: 20px;
}
}

@media (max-width: 767px) {
  .stats-section {
    padding: 45px 20px;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 35px;
    max-width: 360px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label-wrap span {
    height: 42px;
  }

  .stat-label-wrap p {
    font-size: 17px;
    letter-spacing: 1.5px;
  }
}

/* projects */
#mod-custom137{
	max-width:1300px;
	margin:0 auto;
}
.projects-flex {
	display: flex;
	background: linear-gradient(
  to bottom,
  white 50%,
  #262626 50%
);
	height:100%;
	padding:60px 60px 0 60px;
}

.projects-flex h2{
	color:black;
}

.projects-flex .container{
	padding:0;
}

.logo-list img {
 width: 60%;	
}

.djslider-default .slide-desc {
    max-width: 40%;
	margin: 20px;
    left: unset !important;
    right: 0;
}
.djhorizontalswipe .dj-image {
    max-height: 184px;
	    max-width: 320px;
}
#dj-horizontalSwipe1m128 .dj-horizontal-slide {
    border-radius: 0!important;
}
.slide-desc-text-default .slide-title a{
	font-weight:400;
}

.djslider-loader-default {
    overflow: visible!important;
}
.djslider-default .navigation-container {
    top: unset !important;
    bottom: -103%;
    margin: 0 !important;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
}

ul.djslider-in > li {
    min-height: 350px;
}

.djslider-default {
    min-height: 350px;
}

.djslider-default .navigation-container-custom, .djslider-default .navigation-numbers {
    position: absolute;
    top: unset!important;
    right: unset!important;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}
.djslider-default .load-button {
    width: 20px!important;
    height: 20px!important;
    background: white!important;
    border: 2px solid white!important;
}
#djslider-loader141 {
    padding-top: 30px !important;
    padding-bottom: 90px !important;
}

.dj-image{
    width: 100%;
    height: 100%!important;
    object-fit: cover;
}

.slide-desc-text-default a.readmore {
    float: left!important;
    padding-top: 15px;
    margin-bottom: 0!important;
    font-weight: 400;
}

#maximenuck132{
	position:relative;
}

.white {
	color: #fff;
}


.contact-boxes{
    display: flex;
	color: white;
	flex-wrap: wrap;
}

.contact-box-flex {
    flex-basis: calc(33.333% - 40px) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px;
    transition: ease-in-out 0.3s;
    flex-grow: 0;
    -webkit-box-shadow: -3px 0px 16px 2px rgba(0, 0, 0, 0.31);
    box-shadow: -3px 0px 16px 2px #f1c304;
    border-radius: 50px;
    text-align: center;
    background-color: black;
    background-image: url(/images/bolt-bg.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    min-width: 350px;
    min-height: 300px;
}

.contact-box-title a{
	font-size:40px;
	font-weight:400;
	    line-height: 1.2em;
}

.contact-box-flex:hover {
    transform: scale(0.98);
}

.contact-box-icon img{
    width: 100px;
    height: auto;
	    margin: 10px 0;
}

.contact-box-title{
    color: white!important;
}

.contact-box-text{
    text-align: center;
}
	.contact-box-flex {
    flex: 0 0 49%;
}
	.contact-box-title a{
	font-size:25px;
		line-height: 1.8em;
}

/**shake**/

.shake-image:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/**/

/***contact-page****/

.form-flex-main {
	margin: 0px -60px;
}

.form-main {
	display: flex;
	margin:0 auto;
	max-width: 1300px;
	padding: 60px;
}

.form-right {
	flex: 1;
}

.form-left {
	flex: 1;
}



/****/

/* services 2026 */

.title-main {
	display: flex;
	align-items : center;
	margin-left: -60px;
	margin-right: -60px;
	padding: 10px 60px;
}

.section-title {
	min-width: 1300px;
	margin: 0 auto;
}


.title-flex {
	max-width: 1300px;
	margin: 0 auto;
}
/***News page css***/

.menu-button{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.com-content-category-blog__items {
	    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-page .blog-item{
    box-shadow: 5px 5px 15px rgb(0 0 0 / 40%);
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 40%);
    -moz-box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
	width: 32.333%;
    margin: 40px 0.5%;
}

.blog-item a:hover{
	color: #F1C304;
}

.blog-item p{
	color:white;
}

.blog-page .item-content{
    transition: 0.3s;
    background-color: black;
    color: white!important;
	padding:20px;
	line-height: 0.5;
}

.blog-item .item-image {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  overflow: hidden;
}

.btn-secondary {
      background-color: #F1C304 !important;
    color: white !important;
  border-radius: 30px !important;
  margin-top: 10px;
}

.blog-item {
        background-color: black;
    flex: calc(33.333% - 40px);
    min-width: 350px;
    flex-grow: 0;
}

.blog-item .item-content{
    padding: 20px;
}

.btn-secondary:hover {
  background-color: #F1C304;
  color: white ;
  border-radius: 30px;
  margin-top: 10px;
}

/****/

/**about**/

.about-top {
	display: flex;
    align-items: center;
	min-height: 70vh;
    padding: 60px;
	margin: 0px -60px;
	transition: 2s;
	column-gap: 30px;
}

.top-content {
	display: flex;
    max-width: 1300px;
	margin: 0 auto;
	column-gap: 20px;
}

.top-left {
    flex: 1;
}

.top-left h2{
    font-size: 32px;
	margin-bottom: 20px;
}

.top-left p {
	margin-bottom: 20px;
}

.top-right{
flex: 1;
}

.top-right img {
    width: 100%;
    height: auto;
}
.icon-flex {
    display: flex;
    justify-content: center;
    padding: 60px;
	margin: 0px -60px;
	flex-wrap:wrap;
}

.icon-card {
    margin: 20px;
    min-width: 350px;
    height: auto;
    text-align: center;
}

.icon-card h3 {
    text-transform: uppercase;
}

/*fig text*/	

.banner-heading{
	margin: -50px -60px 0 -60px;
    position: relative;
	margin-bottom:20px;
}


.banner-heading figcaption{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	width: 100%;
    text-align: center;
    padding: 0 20px;
	font-family: "Inter", sans-serif;
	font-weight: var(--cassiopeia-font-weight-headings, 700);
}

.banner-heading img{
    object-fit: cover;
    max-height: 600px;
    width: 100%;
    object-position: bottom;
	display:block;
	filter: brightness(0.7);
}

.banner-heading h1{
	padding:0;
	color: #fff;
}

/*service page*/

.inner-service-flex {
    background-image: url(../images/services-bg-inner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 60px;
	margin: 0px -60px;
}

.service-box-flex {
    display: flex;
	justify-content: center;
}

.service-box {
    margin: 30px;
    background-image: url(../images/bg-service-card.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    border: solid 5px #e6d47d;
    border-radius: 10px;
    color: #fff;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    padding: 30px 20px;
	width: 100%;
	height: auto;
	align-content: center!important;
}

.service-box:hover {
    animation-name: bounce;
    animation-timing-function: ease;
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-50px); }
  100% { transform: translateY(0); }
}

.service-box h4 {
    color: #f2c205;
}

.service-box-txt {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1200px;
	text-align: center;
	color: #fff;
	margin: 0 auto;
	padding-bottom: 30px;
}

.service-box-txt h2 {
    color: #f2c205;
}



/*blogs*/

/*** social values ***/

.social-values-flex {
    text-align: center;
    padding: 100px 90px;
}

.social-values {
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
  
}

.layout-blog .com-content-article__body p{
	color:black;
}

.values-box {
    /*display: flex;*/
	flex-basis: calc(50% - 40px);
    flex-direction: column;
	justify-content: center;
    align-items: center;
    width: 320px;
    height: auto;
    padding: 20px;
    text-align: center;
    background: linear-gradient(90deg, rgba(25,24,25,1) 0%, rgba(241,195,4,1) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    box-shadow: 5px 5px 20px #bbb;
	
}

.values-box img {
    max-width: 200px;
    height: auto;
}




.values-box:hover {
    animation-name: bounce;
    animation-timing-function: ease;
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/*** speak ***/

.speak-flex {
	background-color: #191819;
	margin: 0px -60px;
	padding-left: 60px;
	padding-right: 60px;
	padding-top: 60px;
	padding-bottom: 60px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 68%);
}

.speak-to-us {
	text-align: center;
}

.speak-to-us h5 {
	color: #fff;
}

/*** team ***/

.man-flex {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: black;
	padding: 60px 60px;
	margin: 0px -60px;
}

.team-flex {
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.team-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    margin: 15px;
    border-radius: 25px;
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
}

.profile-pic {
    height: 220px;
    width: 220px;
    border-radius: 50%;
}

.team-name {
    color: #000;
	padding-top: 10px;
}

.job-title {
    color: #000;
}

.team-hr {
    border: 1px solid #f1c304;
    width: 60px;
}

/*** gallery container ***/

.gall-mod {
	padding: 60px 0px;
}

/*** Areas ***/

.areas-flex{
    background-image: linear-gradient(rgba( 241,195,4, .9), rgba(25,24,25, .9)), url(/images/bg-hvs.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	margin: 0px -60px;
}

.areas-worked {
    display: flex;
    align-items: center;
    padding: 100px 90px;

}

.areas-left{
    flex: 1;
}

.areas-left h2 {
	color: #000!important;
}

.areas-left ul {
	padding-bottom: 20px;
}

.areas-right{
    flex: 1;
}

.areas-right img{
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1920px){


}

@media only screen and (max-width: 1300px){
.contact-box-flex{
min-width:300px;
}  
}
@media only screen and (max-width: 1170px) {
  .contact-box-flex{
min-width:250px;
}  
	.service-box {
    margin: 20px;
    width: 250px;
}
	.service-box-flex {
    flex-wrap: wrap;
}
    .profile-pic {
        height: 200px;
        width: 200px;
    }
	ul.djslider-in > li {
    min-height: 500px;
}
  }

  @media only screen and (max-width: 1100px) {
	  
.slide-desc-text-default {
    padding: 20px!important;
}
	  .djslider-default .slide-desc {
    max-width: 100%;
    margin: 0;
		  background-color: #f1c304;
}
	  #djslider-loader141 {
    padding-top: 20px !important;
    padding-bottom: 60px !important;
		  min-height: 500px!important;
}
	  .djslider-default {
    min-height: 500px!important;
}
	  .services-new-upper {
    padding-bottom: 0;
}
	  .logo-carousel {
    margin: 0 -20px !important;
}
    .contact-boxes {
flex-direction:column;
}

	  .blog-page .blog-item {
    width: 49%;
}
	  .social-values-flex {
    padding: 40px 20px;
}
	      #menu-bar #maximenuck132:before {
        width: 200px;
        height: 26px;
    }
    .profile-pic {
        height: 180px;
        width: 180px;
    }
	  .banner-heading {
    margin: -49px -20px 0 -20px;
}
	.inner-service-flex {
    background-image: url(../images/services-bg-inner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 20px;
	margin: 0px -20px;
}
	  .container {
    padding: 0 20px;
}
	  .banner-heading img {
    max-height: 400px;
}
	  .top-content {
    padding: 40px 20px;
    margin: 0px -20px;
}
	  .icon-flex {
    padding: 40px 20px;
    margin: 0px -20px;
		  
}

  }

  @media only screen and (max-width: 1024px) {
    .profile-pic {
        height: 175px;
        width: 175px;
    }
  }

  @media only screen and (max-width: 1000px) {
    .profile-pic {
        height: 168px;
        width: 168px;
    }
    .team-card {
        padding: 15px;
        margin: 10px;
    }
  }

  @media only screen and (max-width: 990px) {
    .profile-pic {
        height: 160px;
        width: 160px;
    }
	  div#maximenuck132.maximenuckh ul.maximenuck ul.maximenuck2 li.maximenuck {
    text-align: center!important;
}
  }

  @media only screen and (max-width: 840px) {
    .profile-pic {
        height: 150px;
        width: 150px;
    }
  }

  @media only screen and (max-width: 768px) {
	      .blog-page .blog-item {
        width: 100%;
    }
    .team-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .profile-pic {
        height: 300px;
        width: 300px;
    }
	  	.contact-boxes{
		flex-wrap: wrap;
			flex-direction:column;
					max-width:350px;
			margin-left:auto;
		  		  margin-right:auto;

	}
	.contact-box {
    flex: 100%;
}
	  .contact-box-flex {
	  min-width: 100%;
    min-height: 200px;
			max-width:350px;
		  margin-left:auto;
		  		  margin-right:auto;

	  }
	.contact-box + .contact-box {
    margin-left: 0;
		margin-top: 20px;
}
	.service-box-flex {
    flex: 100%;
}
	  .areas-worked {
    flex-direction: column-reverse;
    padding: 50px 90px;

}
	  .areas-right img{
    padding-bottom: 30px;
}
	  .areas-left ul {
	padding-bottom: 10px;
}
	  .values-box {
    flex-basis: 100%;
}
	  .credit-main {
    flex-direction: column;
}
	  .leaders {
	flex-direction: column;
		  row-gap: 20px;
}
	  .form-main {
	flex-direction: column;
		  row-gap: 20px;
}
  }

  @media only screen and (max-width: 480px) {
    .profile-pic {
        height: 200px;
        width: 200px;
    }
  }



