 /*-------------------------------------------------------------------
[Table of contents]

1. Body
2. Typography css / a
3. Preloader / #Preloader
4. Header css Start / .mb_header
5. Banner css Start / .mb_banner
6. About css Start / .mb_about
7. Services css Start / .mb_services
8. Feature css Start / .mb_feature
9. Counter css Start / .mb_counter
10. Responsive css Start / .mb_header
-------------------------------------------------------------------*/

html {
	scroll-behavior: smooth;
  }




  

body{
	padding:0;
	margin:0;
	font-family: 'Montserrat', sans-serif;
	background-color:#ffffff;
	color:#777777;
	font-size:15px;
}
*,*:before,*:after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
h1,h2{
	margin-bottom:0;
}
a,a:hover,a:focus,a:not([href]):not([tabindex]){
	text-decoration:none;
	color:#000000;
	transition:all 0.3s ease-in-out;
}


ul{
	margin:0;
	padding:0;
	list-style:none;
}
p{
	font-weight: 400;
	color: #000000;
}
/* preloader section*/
.mb_preloader{
	position:fixed;
	width:100%;
	height:100%;
	background-color:#ffffff;
	z-index:1111;
}
.loader {
	position: absolute;
    top: calc(50% - 150px);
    left: calc(50% - 64px);
    height: 150px;
    width: 150px;
    line-height: 190px;
    text-align: center;
    margin: 0 auto;
}
.spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.cube1, .cube2 {
  background-color: #131026;
  width: 20px;
  height: 20px;
  border-radius:100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-cubemove 2.5s infinite ease-in-out;
  animation: sk-cubemove 2.5s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
  25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
  50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
  75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
  100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
  25% { 
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  } 50% { 
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  } 50.1% { 
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  } 75% { 
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  } 100% { 
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

/*preloader end*/

.section{
	padding:70px 0px 70px;
}
.mb_btn, .mb_btn:focus {
    min-width: 150px;
    height: 45px;
    background-color: #ffffff;
    color: #221f36 ;
    border: none;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: all 0.3s;
    z-index: 1;
    outline: none;
    overflow: hidden;
}
.mb_btn:after{
	background: #221f36;
	width: 100%;
	display:block;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	z-index:-1;
	-webkit-transform: skew(-45deg) scaleX(0);
	transform: skew(-45deg) scaleX(0);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.mb_btn:hover{
	color:#fff; 
}
.mb_btn:hover:after{
	
	-webkit-transform: skew(-45deg) scaleX(1);
	transform: skew(-45deg) scaleX(1);
}
.mb_heading01 {
    text-align: center;
}
.mb_heading h3 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    color: #221f36;
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', serif;
}
.about_heading h3 {
   text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', serif;
}
.c_w {
    color: #ffffff;
}
.mb_heading.all_heading.all_heading_01 h3 {
    color: #ffffff;
}
.mb_heading.all_heading {
    text-align: center;
}
.mb_heading.all_heading h3 {
    color: #ffffff;
}
.mb_heading.all_heading p {
    color: #ffffff;
}
.mb_heading.all_heading > p {
    font-size: 16px;
    color: #000000;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
        padding-top: 20px;
}
.mb_heading01 h3 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    color: #221f36;
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', serif;
}
/*.mb_heading01 h3:before, .mb_heading01 h3:after {
    position: absolute;
    top: calc(100% + 8px);
    width: 70%;
    height: 3px;
    background-color: #ffffff;
    content: "";
    display: block;
    left: 40px;
}

.mb_heading h3:before, .mb_heading h3:after {
    position: absolute;
    top: calc(100% + 8px);
    width: 70%;
    height: 3px;
    background-color: #000000;
    content: "";
    display: block;
    left: 40px;
}*/
.mb_new_service_section {
    padding-top: 40px;
}
.service_new_image img{
    position: relative;
}
/*.service_new_image img:before{
	content: "";
	background-image: url(../images/02.png);
	position: absolute;
}*/
.mb_heading h3:before{
	background-color:#ffffff;
	width:35%;
	z-index:1;
}
.mb_header .mb_nav_menu > ul > li > a.mb_active {
    color: #ffffff;
}
.mb_header .mb_nav_menu > ul > li > a.mb_active:after{
	opacity:1;
	width:calc(100% - 10px);
}

/*Index Page Start*/
.mb_main_wrapper{
	overflow:hidden;
}
.mb_head_wrapper{
	position:relative;
	background-color:#131026;
	z-index:1;
}
.mb_head_wrapper.sizer{
	padding-bottom:300px;
}
.mb_head_wrapper:before{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	background:url("../images/banner_bg_dots.png") no-repeat center;
	background-size:cover;
	background-color:#221f36;
	width:40%;
	display:block;
	content:"";
	z-index:-1;
}
.mb_btn.contact_button {
    background: #131026;
    color: #fff;
}
.large_heading h1 {
    position: absolute;
    top: 135px;
    left: 50px;
    z-index: -1;
    font-size: 245px;
    text-transform: uppercase;
    font-weight: 700;
    color: hsl(222deg 9% 28%);
    animation: 5s installation2 infinite alternate;
    opacity: 0.1;
}
@keyframes installation2 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.mb_header .mb_logo{
	padding:25px 0;
	position:relative;
}
.mb_header .mb_logo .menu_toggle{
	position:absolute;
	top:35px;
	right:0;
	display:none;
}
.mb_header .mb_logo .menu_toggle span{
	font-size:22px;
	color:#ffffff;
	cursor:pointer;
}
.mb_header .mb_nav_menu > ul{
	text-align:right;
	vertical-align:middle;
	margin-top:14px;
}
.mb_header .mb_nav_menu > ul > li{
	display:inline-block;
	position:relative;
	padding:25px 0;
}
.mb_header .mb_nav_menu > ul > li > a{
	text-transform:capitalize;
	font-size:16px;
	color:#ffffff;
	font-weight:600;
	display:block;
	position:relative;
	margin:0px 17.5px;
	transition:all 0.3s ease-in-out;
}
.mb_header .mb_nav_menu > ul > li > a:hover{
	color:#ffffff;
}
.mb_header .mb_nav_menu > ul > li > a:after{
	position:absolute;
	top:100%;
	left:5px;
	opacity:0;
	width:0;
	height:2px;
	background-color:#ffffff;
	content:"";
	display:inline-block;
	transition:all 0.3s ease-in-out;
}
.mb_header .mb_nav_menu > ul > li > a:hover:after{
	opacity:1;
	width:calc(100% - 10px);
}
.mb_header .mb_nav_menu > ul > li > ul{
	position:absolute;
	min-width:150px;
	text-align:left;
	opacity:0;
	left: 18px;
	visibility:hidden;
	top:100%;
	border-right:2px solid #221f36;
	background-color:#ffffff;
	transform:translateY(-100px) rotateX(90deg);
	transition:all 0.3s ease-in-out;
}
.mb_header .mb_nav_menu > ul > li:hover > ul{
	opacity:1;
	visibility:visible;
	margin:0;
	transform:translateY(0px) rotateX(0deg);
}
.mb_header .mb_nav_menu ul > li > ul > li > a{
	padding:10px 10px 0px;
	text-transform:capitalize;
	font-weight:400;
	display:inline-block;
}
.mb_header .mb_nav_menu ul > li > ul > li{
	transition:all 0.3s ease-in-out;
}
.mb_header .mb_nav_menu ul > li > ul > li:hover{
	background-color:#f5f5f5;
}
.mb_header .mb_nav_menu ul > li > ul > li > a:last-child{
	padding-bottom:10px;
}
/* Banner section with viewport-based positioning */
.mb_banner {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: visible; /* Allow overflow */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Position bikes with viewport units for consistent sizing */
.banner_image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    max-width: 50vw; /* Limit maximum width */
}

.banner_image.left-bike {
    left: -15vw; /* Much further left - increased from -10vw */
    width: 35vw; /* Slightly larger */
}

.banner_image.right-bike {
    right: -14vw; /* Much further right - increased from -10vw */
    width: 35vw; /* Slightly larger */
}

/* Enhanced image sizing */
.banner_image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 25px rgba(0,0,0,0.5));
}

/* Center content with improved styling */
.banner_contents {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 650px;
    text-align: center;
    padding: 30px 40px;
    background-color: rgba(19, 16, 38, 0.75);
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}


/* Enhanced content styling */
.mb_banner .banner_contents h2 {
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .banner_image.left-bike {
        left: -12vw;
        width: 46vw;
    }
    
    .banner_image.right-bike {
        right: -12vw;
        width: 46vw;
    }
}

@media (max-width: 1200px) {
    .banner_image.left-bike {
        left: -14vw;
        width: 48vw;
    }
    
    .banner_image.right-bike {
        right: -14vw;
        width: 48vw;
    }
}

@media (max-width: 991px) {
    .mb_banner {
        min-height: auto;
        padding: 60px 0;
        flex-direction: column;
    }
    
    .banner_image {
        position: relative;
        width: 100%;
        height: auto;
        margin: 20px 0;
        transform: none;
        top: 0;
    }
    
    .banner_image.left-bike {
        left: 0;
        order: 1;
        /* Make left bike larger and centered on mobile */
        max-width: 100%;
        width: 100%;
    }
    
    .banner_contents {
        order: 2;
        margin: 30px auto;
    }
    
    /* Hide right bike on mobile */
    .banner_image.right-bike {
        display: none;
    }
    
    .banner_image img {
        /* Make left bike image larger on mobile */
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .mb_banner {
        padding: 40px 0;
    }
    
    .banner_contents {
        padding: 20px;
    }
    
    .banner_contents h2 {
        font-size: 32px !important;
    }
    
    .banner_image.left-bike img {
        /* Make left bike even larger on smaller screens */
        max-width: 95%;
    }

}
.mb_banner .banner_contents h3 {
    color: #131026;
    display: inline-block;
    padding: 20px 70px 20px 35px;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    overflow: hidden;
}
.mb_banner .banner_contents h3:before {
    position: absolute;
    content: '';
    background-color:#ffffff;
    top: 0;
    left: -13px;
    bottom: 0;
    width: 100%;
    transform: skew(25deg);
    z-index: -1;
}
.mb_banner .banner_contents h3:after {
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    content: "";
    display: block;
    border-left: 5px solid #fff;
    background-color: #000;
    width: 12px;
    backface-visibility: hidden;
    transform: skew(25deg);
}
.mb_banner .banner_contents h2{
	color:#ffffff;
	display:inline-block;
	font-size:55px;
	font-weight:800;
	font-family: 'Montserrat';
}
.mb_banner .banner_contents .mb_btn{
	margin-top:20px;
}
.heading_color {
    color: #ffffff;
}
.mb_about{
	position:relative;
	z-index:1;
}
.mb_about .large_heading h1{
	top:0;
	left:unset;
	right:50px;
	font-size:130px;
}
.mb_about .about_img{
	position: absolute;
    right: -70px;
    z-index: 1;
	box-shadow:4.474px 10.049px 31.54px 6.46px rgba(0, 0, 0, 0.08);
}
.about_img img {
    border-radius: 20px;
}
.mb_about .about_content{
	background-color: #221f36;
    padding: 23px 20px 30px 80px;
    margin-top: 180px;
    border-radius: 20px;
}
.mb_about .about_content .mb_heading{
	margin-bottom:13px;
}
.mb_about .about_content .mb_heading h3{
	color:#ffffff;
}
.mb_about .about_content .mb_heading h3:before{
	background-color:#ffffff;
}
.mb_about .about_content p{
	color:#ffffff;
}

/* Centraliza a seção de serviços */
.mb_services {
    position: relative;
    background-color: #221f36;
    z-index: 1;
    padding: 62px 0px 70px;
    text-align: center; /* Centraliza o conteúdo */
}

/* Ajusta o título grande "serviços" */
.mb_services .large_heading h1 {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); /* Centraliza no meio da seção */
    font-size: 120px; /* Ajuste o tamanho conforme necessário */
    color: rgba(255, 255, 255, 0.1); /* Torna o texto mais discreto */
    text-transform: uppercase;
    font-weight: bold;
}



/* Ajuste para garantir que a imagem apareça corretamente no mobile */
.service_new_image img {
    max-width: 100%; /* Garante que a imagem não ultrapasse os limites */
    height: auto; /* Mantém a proporção */
    display: block; /* Remove qualquer comportamento inline */
    margin: 0 auto; /* Centraliza a imagem */
}


/* Correção para mobile */
@media (max-width: 768px) {
    .mb_services .large_heading h1 {
        font-size: 60px; /* Reduz o tamanho do título para mobile */
    }
    
    .service_new_image {
        text-align: center; /* Garante que a imagem fique centralizada */
    }

    .service_new_image img {
        max-width: 90%; /* Reduz um pouco a largura no mobile */
    }
}

.service_section .service_block {
    background-color: #131026;
    padding: 30px 10px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}
.service_section .service_block:hover{
	transform: translateY(-10px);
}
.service_section .service_block img{
	margin-bottom:10px;
}
.service_section .service_block h5{
	color:#ffffff;
	font-size:16px;
	text-transform:capitalize;
	font-weight:400;
	margin:0;
}

.service_new_text {
    background: #131026;
    padding: 30px;
    border-radius: 20px;
}
.mb_heading1 > p {
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}
.mb_heading1p.heading_change{
	color: red!important;
}
.mb_heading1 > h3 {
    font-family: 'Montserrat', serif;
    color: #000000;
    font-weight: 800;
}
.mb_heading1.mb_heading1_01 h3 {
    color: #ffffff;
}
.mb-3.service_p1 {
    color: #ffffff;
}
.service_p2 {
    color: #ffffff;
}

/* Mobile-optimized brand logo grid */
.brand-logo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	align-items: center;
	justify-items: center;
  }
  
  .brand-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background-color: #fff;
	height: 60px;
  }
  
  .brand-logo-item img {
	max-height: 40px;
	max-width: 100%;
	object-fit: contain;
  }
  
  /* Mobile-specific adjustments */
  @media (max-width: 576px) {
	.brand-logo-grid {
	  grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
	  gap: 10px;
	}
	
	.brand-logo-item {
	  height: 50px;
	}
	
	.brand-logo-item img {
	  max-height: 30px;
	}
	
	.partners-list p {
	  font-size: 0.9rem;
	  line-height: 1.4;
	}
  }
  
  /* For medium-sized screens */
  @media (min-width: 577px) and (max-width: 768px) {
	.brand-logo-grid {
	  grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
	}
  }
.mb-3.service_p3 {
    color: #ffffff;
}
.mb_services  .service_content .mb_heading{
	margin-bottom:27px;
}

.mb_feature{
	position:relative;
	padding-top:63px;
	padding-bottom:40px;
	z-index:1;
}
.mb_feature .large_heading h1{
	top:0;
	left:0;
	font-size:200px;
}
.mb_feature .mb_heading{
	text-align:center;
}
.mb_feature .mb_heading h3:before, .mb_feature .mb_heading h3:after{
	left:calc(100% - 85%);
}
.mb_feature .mb_heading h3:before{
	width:35%;
}
.feature_slider{
	margin-top:22px;
}
.feature_slider .feature_block{
	background-color:#ffffff;
	padding:20px;
	box-shadow: -10.706px 11.89px 31.54px 6.46px rgba(0, 0, 0, 0.05);
}
.feature_block .feature_bike_img{
	position:relative;
	padding-top:20px;
	z-index:1;
}
.feature_block .feature_bike_img:before{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:67%;
	display:block;
	content:"";
	background-color:#221f36;
	z-index:-1;
}
.feature_block .feature_bike_content{
	margin-top:23px;
}
.feature_bike_content .bike_name{
	margin-bottom:10px;
}
.feature_bike_content .bike_name h3{
	font-size:30px;
	display:inline-block;
	font-weight:600;
	color:#221f36;
	text-transform:uppercase;
}
.feature_bike_content .bike_name h3 .heading_color{
	color:#221f36;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
	display: none;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
	display: none;
}
.feature_bike_content .bike_feature{
	margin-top:10px;
}
.bike_feature ul li {
    position: relative;
    color: #000;
    text-transform: capitalize;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}
.bike_feature ul li:before{
	position:absolute;
	left:0;
	font-family:fontawesome;
	content:"\f058";
	color:#221f36;
	font-size: 20px;
	top: -6px;
}
.feature_slider .swiper-button-next, .feature_slider .swiper-button-prev{
	width:50px;
	height:50px;
	text-align:center;
	line-height:50px;
	background-color:#221f36;
	top:calc(100% - 58px);
	right:20px;
	background-image:none;
	color:#ffffff;
}
.feature_slider .swiper-button-prev{
	right:70px;
	left:unset;
}
.feature_slider .swiper-button-next i, .feature_slider .swiper-button-prev i{
	font-size:50px;
}
.feature_slider .swiper-container {
    padding: 30px 20px;
}
.mb_counter{
	background-color:#221f36;
}
.mb_counter .counter_block {
    background-color: #131026;
    text-align: center;
    padding: 30px 0;
    border-radius: 20px;
}
.counter_block .counter_img{
	margin-bottom: 20px;
}
.counter_block .counter_img.space{
	margin-bottom: 26px;
}
.counter_block .counter_text h4{
	color:#ffffff;
	font-weight:600;
	font-size:26px;
}
.counter_block .counter_text h5 {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}
.mb_blog{
	position:relative;
	padding-top:63px;
	padding-bottom:40px;
}
.mb_blog .large_heading h1{
	top:0;
	font-size:170px;
}
.mb_blog .mb_heading{
	text-align:center;
}
.mb_blog .mb_heading h3:before, .mb_blog .mb_heading h3:after {
    left: calc(100% - 85%);
}
.mb_blog .mb_heading h3:before{
	width:35%;
}
.blog_wrapper{
	margin-top:52px;
}
.blog_wrapper .blog_box{
	display:flex;
	background-color:#221f36;
	padding:10px 10px;
	margin-bottom:30px;
	border-right:3px solid #221f36;
	box-shadow:0.813px 1.827px 11.52px 6.48px rgba(0, 0, 0, 0.03);
}
.blog_wrapper .blog_box.revers{
	flex-direction:row-reverse;
	border-right:none;
	border-left:3px solid #fff;
}
.blog_wrapper .blog_box .blog_content{
	flex:1;
	padding:20px;
}
.blog_content .blog_date{
	display: inline-block;
    background-color: #ffffff;
    padding: 8px 10px 5px;
    line-height: 20px;
	margin-bottom:15px;
}
.blog_content .blog_date p{
	text-transform: capitalize;
    font-size: 16px;
    margin: 0;
    color: #221f36;
}
.blog_content .blog_heading{
	margin:0;
	font-weight:600;
	font-size:18px;
}
h4.blog_heading a {
    color: #fff;
}
.blog_heading.blog_date_black a {
    color: #000000;
}
.blog_text.blog_date_black p {
    color: #000000;
}
.blog_list.blog_date_black ul li a {
    color: #000000 !important;
}
.blog_single_text.blog_content.blog_date_black p {
    color: #000000;
}
.blog_content .blog_list{
	margin:11px 0;
}
.blog_content .blog_list ul li{
	display:inline-block;
	margin-right:5px;
}
.blog_content .blog_list ul li a{
	text-transform:capitalize;
	font-weight:500;
	color: #ffffff;
}
.blog_content .blog_list ul li a span{
	margin-right:5px;

}
.blog_content p{
	color:#ffffff;
	font-size:14px;
	font-weight:400;
	line-height:24px;
}
.blog_content .mb_btn{
	margin-top:7px;
}
.mb_testimonial{
	position:relative;
	background-color:#221f36;
	padding-top:63px;
	padding-bottom:62px;
	z-index:1;
}
.mb_testimonial .large_heading h1{
	top:-35px;
	left:10px;
	font-size:185px;
}
.mb_testimonial .mb_heading h3{
	color:#ffffff;
}

.mb_testimonial .mb_heading h3:before, .mb_testimonial .mb_heading h3:after {
    left: calc(100% - 85%);
}
.mb_testimonial .mb_heading h3:before{
	width:35%;
	background-color:#ffffff;
}
.testimonial_slider{
	margin-top:37px;
}
.testimonial_slider .swiper-container-horizontal >.swiper-pagination-bullets, .testimonial_slider .swiper-pagination-custom, .testimonial_slider .swiper-pagination-fraction{
	bottom:2px;
}
.testimonial_slider .swiper-container{
	padding:60px 20px;
}
.testimonial_slider .testimonial_block{
	position:relative;
	background-color:#131026;
	padding:25px 10px;
	border-radius: 20px;
	transition: all 0.5s;
}
.testimonial_slider .testimonial_block:hover{
	transform: translateY(-10px);
}
.testimonial_block .client_img {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border: 5px solid #131026;
    border-radius: 100%;
    overflow: hidden;
}
.client_text {
    padding-top: 50px;
    text-align: center;
}
.testimonial_block .client_name h4 {
    text-transform: capitalize;
    color: #ffffff;
    font-size: 25px;
    display: inline-block;
    margin: 0;
    font-family: 'Montserrat', serif;
    font-weight: 800;
    padding-bottom: 15px;
}
.testimonial_block .client_message p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}
.testimonial_block .quotes{
	position: absolute;
    right: -20px;
    bottom: -48px;
	display:inline-block;
}
.testimonial_slider .swiper-pagination-bullet{
	width: 30px;
    height: 2px;
    border-radius: 0;
    background: #ffffff;
	transition:all 0.2s ease-in-out;
    opacity: 1;
}
.testimonial_slider .swiper-pagination-bullet-active{
	background: #000000;
}
.mb_tutorials {
    position: relative;
    z-index: 1;
    padding: 70px 0px 70px;
}


.mb_tutorials .large_heading h1{
	top:-45px;
	font-size:230px;
}
.mb_tutorials .mb_heading{
	text-align:center;
}
.mb_tutorials .mb_heading h3:before, .mb_tutorials .mb_heading h3:after {
    left: calc(100% - 85%);
}
.mb_tutorials .mb_heading h3:before{
	width:35%;
}
.tutorials_slider{
	margin-top:24px;
}

.tutorials_slider .tutorials_block{
	padding:30px 10px;
	background-color:#221f36;
	position:relative;
	box-shadow:  2.44px 5.481px 14.22px 3.78px rgba(0, 0, 0, 0.07);
}
.tutorials_slider .tutorials_block .tutorials_img{
	margin-top:-42px;
	margin-left:-50px;
	position:relative;
	box-shadow: 4.474px 10.049px 31.54px 6.46px rgba(0, 0, 0, 0.08);
}
.tutorials_slider .tutorials_block .tutorials_img:before{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	content:"";
	display:block;
	background:rgba(0,0,0,0.5);
}
.tutorials_slider .tutorials_block .tutorials_img .play_icon{
	position:absolute;
	top:50%;
	left:50%;
	display:inline-block;
	transform:translate(-50% ,-50%);
}
.tutorials_block .tutorials_content .tutorials_heading{
	margin-bottom:10px;
}
.tutorials_block .tutorials_content .tutorials_heading h4{
	font-weight:600;
	color:#ffffff;
	font-size:18px;
	margin:0;
}
.tutorials_block .tutorials_content .tutorials_text p{
	color:#fff;
	font-size:14px;
	line-height:20px;
}

.tutorials_slider .swiper-button-prev {
    right: 100px;
    left: unset;
}
.tutorials_slider .swiper-button-next i, .tutorials_slider .swiper-button-prev i{
	font-size:50px;
}
.mb_partner{
	background-color:#f9f9f9;
}
.mb_footer {
    background-color: #221f36;
    padding: 38px 0px 35px;
}
.footer_copyright{
	background-color:#131026;
}

.upper_footer .footer_block_1 .footer_logo{
	margin-bottom:20px;
}
.upper_footer .footer_block_1 p{
	color:#ffffff;
}
.upper_footer .footer_block_1 .social_link ul li{
	display:inline-block;
	margin:0px 5px;
}
.upper_footer .footer_block_1 .social_link ul li a{
	color:#ffffff;
	display:block;
}

.footer_heading {
	margin-top:30px;
	margin-bottom:20px;
}
.link_section ul{
	margin: 0;
	padding: 0;
}
.link_section ul li{
	list-style: none;
	padding-bottom: 16px;
}
.link_section ul li:nth-child(5){
	padding-bottom: 0;
}
.link_section ul li a{
	color: #ffffff;
	font-weight: 500;
}
.footer_heading h4{
	text-transform:capitalize;
	color:#ffffff;
	font-weight:600;
	font-size:18px;
}
.footer_block_2 .tweet_block{
	margin-bottom:25px;
}
.footer_block_2 .tweet_block .admin{
	margin-bottom:10px;
}
.footer_block_2 .tweet_block .admin a{
	color:#999999;
	display:inline-block;
	text-transform:capitalize;
}
.footer_block_2 .tweet_block .admin a span{
	color: #e70d3c;
    margin-right: 5px;
    font-weight: 700;
    border-right: 1px solid #999999;
    padding-right: 10px;
}
.footer_block_2 .tweet_block .main_color{
	color:#e70d3c;
}
.footer_block_2 .tweet_block  p{
	color:#999999;
	font-size:15;
}
.footer_block_3 .info_list ul li{
	margin-bottom:20px;
}
.footer_block_3 .info_list ul li a{
	color:#ffffff;
}

.footer_block_3 .info_list ul li a span{
	color:#ffffff;
	margin-right:15px;
	font-size:20px;
}
.footer_block_4 .mb_instagram ul li{
	display:inline-block;
	margin-bottom:5px;
	margin-right:2px;
}
.footer_block_4 .mb_instagram ul li a{
	display:block;
}
.footer_copyright{
	text-align:center;
}
.footer_copyright p{
	margin:0;
	color:#fefefe;
	font-size:15px;
	padding:20px 0px;
}

/*About Page Start*/
.mb_head_wrapper.arrange .large_heading h1{
	top: 140px;
    left: unset;
    right: 0;
    font-size: 175px;
}
.mb_breadcrumb{
	margin-top:50px;
	display:block;
	padding-bottom:64px;
}
.mb_breadcrumb .mb_heading h3{
	color:#ffffff;
	font-size:40px;
	font-weight:700;
}
.mb_breadcrumb .mb_heading h3:before, .mb_breadcrumb .mb_heading h3:after{
	display:none;
}
.mb_breadcrumb ol.breadcrumb{
	background:none;
	padding:0;
}
.mb_breadcrumb ol.breadcrumb li.breadcrumb-item{
	color:#ffffff;
	font-weight:600;
	text-transform:capitalize;
	font-size:18px;
}
.mb_breadcrumb ol.breadcrumb li.breadcrumb-item a{
	color:#ffffff;
}
.mb_breadcrumb ol.breadcrumb li.breadcrumb-item.active:before{
	color:#ffffff;
}
.mb_team{
	padding-top:63px;
}
.mb_team .mb_heading h3:before, .mb_team .mb_heading h3:after{
	left: calc(100% - 85%);
}
.mb_team .mb_heading h3:before{
	width:35%;
}
.mb_team .team_wrapper{
	margin-top:72px;
}
.team_wrapper .team_block{
	position:relative;
	z-index:1;
}
.team_wrapper .team_block img{
	box-shadow: 2.034px 4.568px 5.95px 1.05px rgba(0, 0, 0, 0.11);
}
.team_wrapper .team_block:before{
	position:absolute;
	left:-20px;
	top:-20px;
	right:35px;
	bottom:20px;
	content:'';
	display:block;
	z-index:-1;
	border:5px solid #221f36;
}
.team_wrapper .team_block .team_name{
	position: absolute;
    bottom: 70px;
    left: -10px;
    padding: 5px 20px 5px 20px;
    background-color: #221f36;
	opacity:0;
	visibility:hidden;
	transition:all 0.3s ease-in-out;
}
.team_wrapper .team_block:hover .team_name{
	opacity:1;
	visibility:visible;
}
.team_wrapper .team_block .team_name:before{
	position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    display: inline-block;
    border-top: 0px solid #d78913;
    border-right: 10px solid #d78913;
    border-bottom: 10px solid transparent;
}
.team_wrapper .team_block .team_name h4{
	font-size:18px;
	text-transform:capitalize;
	color:#ffffff;
	margin:0;
}

/*Gallery Page Strat*/
.gallery_block{
	position:relative;
	margin-bottom:60px;
	transition:all 0.3s;
}
.gallery_block:hover{
	box-shadow: 0.813px 1.827px 4.6px 1px rgba(0, 0, 0, 0.3);
	transform: translateY(-10px);
}
.gallery_block img{
	width:100%;
}
.mb_gallery{
	padding-bottom:0;
}
.mb_tutorials.space_adjust{
	padding-top:33px;
}
.gallery_block .gallery_content{
	position:absolute;
	bottom:-20px;
	left:50%;
	box-shadow: 0.813px 1.827px 4.6px 0.4px rgba(0, 0, 0, 0.09);
	transform:translateX(-50%);
	display:inline-block;
	padding:10px 20px;
	background-color:#221f36;
	width:70%;
	text-align:center;
}
.gallery_block .gallery_content h4{
	text-transform:uppercase;
	font-size:18px;
	font-weight:600;
	color:#ffffff;
	margin:0;
}

/*Blog Page Start*/
.blog_sidebar .blog_search{
	position:relative;
	margin-bottom:37px;
}
.blog_sidebar .blog_search input.input_search{
	width:100%;
	border:none;
	height:45px;
	outline:none;
	border:1px solid #221f36;
	padding-left:10px;
	padding-right:35px;
}
.blog_sidebar .blog_search .search_button{
	position:absolute;
	right:3px;
	top:-2px;
	border:none;
	outline:none;
	background:none;
	height:45px;
	cursor:pointer;
	line-height:45px;
}
.blog_sub_heading{
	position:relative;
	margin-bottom:10px;
}
.blog_sub_heading:after{
	content:"";
	display:block;
	background-color:#000;
	height:1px;
	width:100%;
	position:absolute;
	top:50%;
	left:0;
	z-index:-2;
}
.blog_sub_heading:before{
	content:"";
	display:block;
	background-color:#ffffff;
	height:5px;
	width:5px;
	border-radius:100%;
	border:1px solid #000;
	position:absolute;
	top:9px;
	right:0;
}
.blog_sub_heading h3{
	position:relative;
	margin:0;
	text-transform:uppercase;
	color:#221f36;
	display:inline-block;
	font-size:18px;
	font-weight:600;
	background-color:#ffffff;
	padding-right:5px;
	z-index:1;
}
.blog_category{
	margin-bottom:37px;
}
.blog_category ul li{
	position:relative;
	padding-left:15px;
	margin-bottom:10px;
}
.blog_category ul li:before{
	content:"";
	display:block;
	background-color:#ffffff;
	height:5px;
	width:5px;
	border-radius:100%;
	border:1px solid #000;
	position:absolute;
	top:8px;
	left:0;
}
.blog_category ul li a{
	text-transform:capitalize;
	font-weight:500;
}
.blog_category ul li a:hover{
	color:#e70d3c;
}
.blog_latest_post{
	margin-bottom:37px;
}
.blog_latest_post ul li{
	position:relative;
	padding-left:55px;
	margin-bottom:20px;
}
.blog_latest_post ul li a.post_img{
	display:block;
	border-radius:2px;
	overflow:hidden;
}
.blog_latest_post ul li a.post_img img{
	position:absolute;
	left:0;
}
.blog_latest_post ul li h5{
	text-transform:capitalize;
	font-size:16px;
	font-weight:600;
}
.blog_latest_post ul li h5 a{
	color:#221f36;
}
.blog_latest_post ul li h6{
	text-transform:capitalize;
	color:#000000;
	font-size:15px;
	font-weight:500;
}
.blog_tag{
	margin-bottom:22px;
}
.blog_tag ul li{
	display:inline-block;
	margin-bottom:10px;
	margin-right:3px;
}
.blog_tag ul li a{
	display:block;
	background-color:#221f36;
	color:#ffffff;
	border-radius:2px;
	border:1px solid transparent;
	padding:5px 10px;
	text-transform:capitalize;
}
.blog_tag ul li a:hover{
	background-color:#ffffff;
	border:1px solid#221f36;
	color:#221f36;
}
.blog_follow ul li{
	display:inline-block;
	margin-right:10px;
}
.blog_follow ul li a:hover{
	color:#e70d3c;
}
.blog_list .blog_wrapper{
	margin:0;
}
.blog_list .blog_wrapper .blog_box .blog_content{
	padding-bottom:10px;
}
.blog_pagination ul{
	text-align:right;
}
.blog_pagination ul li{
	display:inline-block;
	margin:0;
}
.blog_pagination ul li a{
	display:block;
	margin:0;
	margin-left:-2px;
	line-height:15px;
	padding:10px 15px;
	border-right:1px solid #e2e2e2;
	background-color:#fafafa;
}
.blog_pagination ul li:last-child a{
	border-color:transparent;
}
.blog_pagination ul li a:hover{
	background-color:#221f36;
	color:#ffffff;
	border-right:1px solid transparent;
}

/*Blog Single Page Start*/
.blog_single_wrapper .blog_single_image{
	padding:10px;
	background-color:#ffffff;
	box-shadow: 0.813px 1.827px 11.52px 6.48px rgba(0, 0, 0, 0.03);
	margin-bottom:30px;
}
.blog_single_date{
	display: inline-block;
    background-color: #e70d3c;
    padding: 5px 10px;
    line-height: 20px;
    margin-bottom: 15px;
}
.blog_single_date p{
	text-transform: capitalize;
    font-size: 16px;
    margin: 0;
    color: #ffffff;
}
.blog_single_heading{
	margin: 0;
    font-weight: 600;
    font-size: 18px;
}
.blog_single_heading:hover a{
	color:#e70d3c;
}
.blog_single_list{
	margin: 11px 0;
}
.blog_single_list ul li{
	display: inline-block;
    margin-right: 5px;
}
.blog_single_list ul li a{
	text-transform: capitalize;
    font-weight: 500;
}
.blog_single_list ul li a span{
	margin-right: 5px;
    color: #e70d3c;
}
.blog_thought{
	position:relative;
	padding:5px;
	padding-left:70px;
	margin-bottom:20px;
	border-left:2px solid #221f36;
}
.blog_thought .blog_quote{
	position:absolute;
	left:0;
	bottom:0;
	top:0;
	line-height:40px;
	padding:20px 15px;
	text-align:center;
	background-color:#f5f5f5;
	display:inline-block;
}
.blog_thought  p{
	margin:0;
	font-style:italic;
}
.blog_comments{
	margin-top:30px;
}
.blog_inner_heading{
	margin-bottom:10px;
}
.blog_inner_heading h4{
	margin:0;
	text-transform:capitalize;
	font-size:18px;
	font-weight:600;
	color:#221f36;
}
.comment_wrapper .comment_block{
	position:relative;
	padding-left:100px;
}
.comment_wrapper .comment_block img{
	position:absolute;
	top:0;
	left:5px;
}
.comment_wrapper .comment_block .comment_name{
	text-transform:capitalize;
	color:#000;
	margin:0;
	font-size:16px;
	font-weight:600;
}
.comment_wrapper .comment_block .comment_message{
	margin-top:10px;
}
.comment_wrapper .comment_block .comment_date{
	position:absolute;
	top:0;
	right:10px;
	text-transform:capitalize;
	color:#000;
	font-weight: 500;
	font-size:15px;
}
.comment_wrapper ul li ul{
	margin-left:30px;
}
.comment_wrapper .comment_block .comment_reply{
	margin-left:10px;
}
.comment_wrapper .comment_block .comment_reply a{
	color:#221f36;
	text-transform:capitalize;
}
.comment_form .input_block{
	margin-bottom:30px;
}
.blog_post_comment{
	margin-top:40px;
}
.comment_form .input_block .blog_input{
	width:100%;
	border:none;
	outline:none;
	border:1px solid #efefef;
	background-color:#fafafa;
	padding-left:10px;
}
.comment_form .input_block .blog_input:focus{
	border:none;
	border:1px solid #e70d3c;
}
.comment_form .input_block input.blog_input{
	height:45px;
}
.comment_form .input_block textarea.blog_input{
	resize:none;
}

/*Contact Page Start*/
.contact_form_section{
	padding-bottom:52px;
}
.contact_form_section .contact_heading{
	margin-bottom:30px;
}
.contact_form_section .contact_heading h4{
	text-transform:uppercase;
	font-size:30px;
	color:#000;
	font-weight:600;
	position:relative;
	margin:0;
}
.contact_form_section .contact_heading h4:after{
	position:absolute;
	left:0;
	top:calc(100% + 10px);
	content:"";
	display:block;
	width:100px;
	height:2px;
	background-color:#221f36;
}
.contact_form .contact_block{
	margin-bottom:30px;
	position:relative;
}
.contact_form .contact_block .contact_input::placeholder{
	color:#ccc;
}
.contact_form .contact_block .contact_input{
	width:100%;
	padding-left:20px;
	height:45px;
	outline:none;
	border:none;
	border-bottom:1px solid #ccc;
}
.contact_form .contact_block textarea.contact_input{
	resize:none;
	height:150px;
	padding:0;
	padding-left:20px;
}
.contact_form .contact_block:before, .contact_form .contact_block:after{
	position:absolute;
	left:0;
	top:88%;
	content:"";
	display:block;
	width:1px;
	height:5px;
	background-color:#ccc;
}
.contact_form .contact_block:after{
	left:unset;
	right:0;
}
.contact_form .contact_block.message_box:before, .contact_form .contact_block.message_box:after{
	top:92%;
}
#map{
	width:100%;
	height:450px;
}
.address_details{
	background-color:#131026;
	padding:60px 0;
}
.address_details .address_block{
	position:relative;
	text-align:center;
}
.address_details .address_block .address_icon{
	position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background-color:#131026;
    line-height: 90px;
}
.address_details .address_block h5{
	text-transform:capitalize;
	color:#ffffff;
	font-size:15px;
	font-weight:600;
}
.address_details .address_block p{
	color:#ffffff;
	font-size:15px;
	margin:0;
}

/*Responsive CSS*/
@media (min-width:991px) and (max-width:1360px){
	.large_heading h1{
	    font-size:170px;
	}
}
@media (min-width:767px) and (max-width:990px){
	.mb_banner .banner_contents {
		margin: 30px 0;
	}
}
@media (max-width: 1199px){
	.banner_image img{
		position:relative;
		left:unset;
		max-width:100%;
	}
	.mb_head_wrapper.sizer{
		padding-bottom:30px;
	}
	.mb_banner .banner_contents{
		margin-top:100px;
	}
	.mb_banner .banner_contents h2{
		font-size:45px;
	}
}
@media (max-width: 991px){
	.about_img img {
    border-radius: 0px;
}
	
	.large_heading h1{
		display: none;
	}
	.tutorials_slider .swiper-container{
		padding: 0;
	}
	.m_top{
		margin-top: 30px !important;
	}
	.mb_about .about_img{
		right: 0;
		position: relative;
	}
	.mb_about .about_content{
		margin-top: 0;
		border-radius: 0;
	}
	.service_new_text{
		border-radius: 0;
	}
	.mb_new_service_section {
    padding-top: 0px;
    }
	.mb_new_service_section {
    padding-top: 0px;
    }
	.blog_wrapper .blog_box{
		flex-direction:column;
	}
	.blog_wrapper .blog_box .blog_img a img{
		width:100%;
	}
	.blog_wrapper .blog_box.revers{
		flex-direction:column;
	}
	.tutorials_slider .tutorials_block .tutorials_img{
		margin:0;
	}
	.tutorials_slider .tutorials_block .tutorials_img img{
		width:100%;
	}
	.tutorials_slider .tutorials_block .tutorials_content{
		margin-top:30px;
	}
	.mb_head_wrapper.arrange .large_heading h1{
		font-size:80px;
	}
	.mb_services .large_heading h1{
		font-size:140px;
	}
	.mb_testimonial .large_heading h1{
		top: 0px;
		font-size: 100px;
	}
	.mb_feature .large_heading h1 {
		font-size: 135px;
	}
	.mb_header .mb_nav_menu > ul > li > a{
		margin:0 10px;
	}
	.mb_banner .banner_contents {
		margin-top: 20px;
	}
	.mb_banner {
    padding-top: 0;
}
.comment_wrapper ul li ul {
    margin-left: 0px;
}
}
@media (max-width: 767px){
	.mb_header .mb_logo .menu_toggle{
		display:block;
	}
	.mb_main_wrapper .mb_header .mb_nav_menu {
    display: none;
    position: absolute;
    z-index: 999;
   left: 0;
    background: #131026;
    width: 55%;
    height: 100vh;
}
	.mb_head_wrapper:before{
		background:none;
		width:100%;
	}
	.mb_main_wrapper .mb_header .mb_nav_menu ul{
		text-align:left;
	}
	.mb_main_wrapper .mb_header .mb_nav_menu ul li{
		display:block;
		padding:10px 0;
	}
	.mb_header .mb_nav_menu > ul > li > a{
		display:inline-block;
	}
	.mb_header .mb_nav_menu > ul > li > a.mb_active{
		color:#fefefe;
	}
	.mb_header .mb_nav_menu > ul > li > a:hover{
		color:#fefefe;
	}
	.mb_header .mb_nav_menu > ul > li > a:after{
		display:none;
	}
	.mb_main_wrapper .mb_header .mb_nav_menu ul li ul{
		position:relative;
		opacity:1;
		visibility:visible;
		display:none;
		box-shadow:none;
		transition:none;
		transform:none;
	}
	.mb_main_wrapper .mb_header .mb_nav_menu ul li ul li{
		padding:0;
		padding-left:30px;
	}
	.mb_banner .banner_contents{
		margin:50px 0;
	}
	.mb_banner .banner_contents h2{
		color:#fefefe;
	}
	
	.mb_banner .banner_contents .mb_btn:hover{
		color:#000000 !important;
	}
	.mb_banner .banner_contents .mb_btn:after{
		background-color:#ffffff;
	}
	.large_heading h1{
		font-size:90px;
	}
	.mb_about .about_img{
		position:relative;
		right:unset;
	}
	.mb_about .about_content{
		margin:0;
		padding: 23px 20px 30px;
	}
	.mb_services .large_heading h1{
		font-size:135px;
	}
	.mb_counter .counter_block{
		margin-bottom:30px;
	}
	.mb_counter{
		padding-bottom:40px;
	}
	.blog_wrapper .blog_box{
		flex-direction:column;
	}
	.blog_wrapper .blog_box .blog_img a img{
		width:100%;
	}
	.blog_wrapper .blog_box.revers{
		flex-direction:column;
	}
	.tutorials_slider .tutorials_block .tutorials_img{
		margin:0;
	}
	.tutorials_content{
		margin-top:30px;
	}
	.mb_feature .large_heading h1{
		font-size:115px;
	}
	.mb_blog .large_heading h1{
		font-size:80px;
	}
	.mb_testimonial .large_heading h1{
		top: 7px;
		font-size: 90px;
	}
	.mb_head_wrapper.arrange .large_heading h1{
		font-size:80px;
	}
	.team_wrapper .team_block{
		margin-bottom:50px;
	}
	.team_wrapper .team_block img{
		width:100%;
	}
	.blog_list{
		margin-top:50px;
	}
	.blog_single_wrapper{
		margin-top:50px;
	}
	.address_details .address_block{
		margin-bottom:30px;
	}
	.address_details .address_block .address_icon{
		position:relative;
		display:block;
		top:unset;
		margin-bottom:20px;
	}
	.address_details{
		padding-bottom:30px;
	}
	.feature_slider{
		margin-top: 0;
	}
	.feature_slider .swiper-container {
    padding: 0px 20px;
}
}
@media(max-width: 580px){
	.service_new_image img {
    display: none;
}
.section {
    padding: 40px 0px 40px;
}
.mb_services{
	padding: 40px 0px 40px;
}
.mb_tutorials{
	padding: 0px 0px 40px;
}
}
@media(max-width: 380px){
	.comment_wrapper .comment_block .comment_date{
		display: none;
	}
}

.certification_block {
    background-color: #131026;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.brand_certifications {
    list-style: none;
    padding-left: 10px;
}

.brand_certifications li {
    margin-bottom: 10px;
    color: #ffffff;
}

.brand_certifications i {
    color: #ffffff;
    margin-right: 10px;
}

.electric_specialization {
    border-left: 1px solid #221f36;
}

.electric_specialization h4 {
    color: #000000;
}

.highlight_text {
    background-color: #221f36;
    color: #ffffff;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 4px;
}

.brands_logos img {
    max-height: 60px;
    margin: 0 auto;
}

.mb_brands .large_heading h1 {
    color: rgba(34, 31, 54, 0.1);
}

.brand-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
}

.brand-logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.brand_logos_container {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .brand-logo-wrapper {
        height: 80px;
        margin-bottom: 15px;
    }
}

/* Section separators and visual distinction */

/* 1. Add subtle gradient transitions between dark sections */
.section-transition {
	height: 30px;
	background: linear-gradient(to bottom, #221f36, #131026);
	margin-top: -30px;
	position: relative;
	z-index: 1;
  }
  
  /* 2. Add decorative dividers between sections with similar colors */
  .section-divider {
	position: relative;
	height: 20px;
	margin: -10px 0;
	z-index: 2;
	overflow: hidden;
  }
  
  .section-divider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 1px;
	background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
  }
  
  .section-divider::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background-color: #221f36;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
  }
  
  /* 3. Add accent borders to distinguish similar sections */
  .section-accent-top {
	position: relative;
	padding-top: 15px !important;
  }
  
  .section-accent-top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(to right, #e74c3c, #f39c12, #2ecc71);
  }
  
  /* 4. Add subtle texture to some dark sections */
  .section-textured {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	background-color: #221f36;
  }
  
  /* 5. Alternate dark colors for adjacent sections */
  .section-dark-alt1 {
	background-color: #221f36;
  }
  
  .section-dark-alt2 {
	background-color: #1a1828;
  }
  
  .section-dark-alt3 {
	background-color: #131026;
  }
  
  /* 6. Add box shadow to partner section to make it stand out */
  .partners-container {
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	border-radius: 15px;
	overflow: hidden;
	border-left: 4px solid #e74c3c;
  }

  /* Enhanced Services Section for Mobile */
@media (max-width: 767px) {
    /* Make the service text section more compact */
    .service_new_text {
        padding: 20px;
        margin-bottom: 25px;
        border-radius: 10px;
    }
    
    /* Create a mobile-friendly image display */
    .service_new_image {
        display: block !important;
        margin: 0 auto 30px;
        text-align: center;
        position: relative;
    }
    
    /* Reorder elements to show image first, then text */
    .mb_new_service_section .row {
        display: flex;
        flex-direction: column;
    }
    
    .mb_new_service_section .col-lg-6:first-child {
        order: 2;
    }
    
    .mb_new_service_section .col-lg-6:last-child {
        order: 1;
    }
}

/* Override the display: none for the service image */
@media (max-width: 580px) {
    .service_new_image img {
        display: block !important;
    }
}