/*****/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
    background-color: white;
    font-family: 'Times New Roman', Times, serif;
}

.flipbook {
    width: 1000px;
    height: 600px;
}

.flipbook .hard {
    background: #c0392b !important;
    color: #fff;
    font-weight: bold;
    border: none; 
}

.flipbook .hard small{
	font-style: italic;
	font-weight: lighter;
	opacity: 0.7;
	font-size: 14px;
}

.flipbook .page {
    background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.11);
}

.page img{
	width: 70%;
	object-fit: cover;
	margin: auto;
}

.flipbook .page small{
	font-size: 14px;
    margin-bottom: 10px;
}



/*****/

/*****Global ****/
.new_call a{
	text-decoration: none;
}
.new_call {
    color: #e61111 !important;
    font-weight: 500;
    font-size: 12px;
    line-height: 10px;
   
    
}
a {
	text-decoration: none;
}

.headertitle{
  font-size: 40px;
    font-weight: 800;
    text-align: center;
}
.headersubtitle{
  margin-bottom: 50px;
  color: #c70200;
  text-decoration: underline;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
}

.headertitlesmall{
  font-size: 30px;
    font-weight: 800;
    text-align: center;
}
.headersubtitlesmall{
  margin-bottom: 50px;
  color: #c70200;
  text-decoration: underline;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

.subtitle{
  font-weight: 800;
    font-size: 20px;
}
.detailsblock {
  background: #e3e3e340;
  border-radius: 10px;
  padding: 10px;
  margin: 5px;
}


/****** End Global/
/* Ensure the carousel container takes up the full width and height */
.carousel-static {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

/* Style the background image */
.carousel-static-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area */
}

/* Add a black overlay */
.carousel-static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Style the text container */
.carousel-static-text {
    color: white; /* White text for contrast */
    max-width: 800px; /* Limit text width for readability */
    padding: 20px;
}

/* Style the heading */
.carousel-static-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Style the paragraph text */
.carousel-static-text strong {
    font-size: 1.2rem;
    line-height: 1.6;
    display: block;
    margin-bottom: 30px;
}

/* Style the button */
.carousel-static-text button {
    background-color: #ff5722; /* Example button color */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-static-text button:hover {
    background-color: #e64a19; /* Darker shade on hover */
}

/* Hero Section */
#hero {
 
  
    padding: 80px 0;
    text-align: left;
    
    
    
    background: linear-gradient(to right, #FFEAC3, #FFFFFF, #FFEAC3) !important;

    
    
  }
  
  #hero .btn {
    background-color: red;
    color: white;
    
  }
  
    
    /* Remove the before pseudo-element as it's not needed anymore */
    #hero::before {
        display: none; /* Hide previous background */
    }
    
    /* General button styling for both buttons */
    .register-btn {
        background-color: red !important; /* Set background color */
        color: white !important;
        width: 200px;
        border: 2px solid white !important;
        padding: 3px !important; /* Add some horizontal padding */
        border-radius: 20px !important;
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        text-align: center;
        font-size: 1rem;
        z-index: 10;
        transition: transform 1s, background-color 1.5s !important; /* Increased duration for smoother animation */
        cursor: pointer;
    }
    
    /* Hover animation */
    .explore-btn:hover, .register-btn:hover {
        transform: scale(1.05); /* Slightly increase the size */
        background-color: #f20505 !important; /* Change background color on hover */
        color: #fff !important; /* Change text color on hover */
        border-color: #fed20f !important; /* Change border color on hover */
    }
    
    /* Optional: Active state for click effect */
    .explore-btn:active, .register-btn:active {
        transform: scale(0.95); /* Slightly shrink the button when clicked */
    }
    
    /* Specific for 'Explore Our Products' button */
    .explore-btn {
        height: 40px;
        margin-top: 15px;
    }
    
    /* Specific for 'Get a Quote' button */
    .register-btn {
        width: 200px;
        height: 40px;
        position: absolute;
        bottom: 100px;
        right: 80px;
    }
    
    /* Adjust buttons for small screens */
    @media (max-width: 767px) {
        .explore-btn, .register-btn {
            width: calc(100% - 40px); /* Full width minus padding for uniform space */
            margin: 0 20px; /* Uniform space on both sides */
            z-index: 10;
        }
    
        .register-btn {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
    
        .text_d {
            margin-top: 50px;
            color: #272b73 !important;
        }
    
        .text-set {
            color: #272b73 !important;
        }
    }

/* Media query for smaller screens */
@media (max-width: 768px) {
    .carousel-static {
        height: 100vh; /* Ensure full height on smaller screens */
    }

    .carousel-static-bg img {
        min-height: 100%; /* Ensure the image covers the full height */
    }

    .carousel-static-text h1 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }

    .carousel-static-text strong {
        font-size: 1rem; /* Adjust paragraph text size for smaller screens */
    }
}



/****top bar***/
.top-bar {
    position: sticky;
    top: 0px;
   
    width: 100%;
    padding: 5px 0;
    z-index: 1000;
	
    height: auto;
    display: flex;
    align-items: center;
    background: white;
}

.top-bar .logo {
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: -4px 0 0 0;
    color: #E81C2E;
    font-size: 30px;
    line-height: 70px;
    font-weight: 500;
    letter-spacing: 1px;
    font-style: italic;
}

.top-bar .logo h1 span {
    color: rgb(17, 17, 17);
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	padding: 5px;
    
}

.top-bar .top-bar-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(17, 17, 17);
    border-radius: 50%;
	
}

.top-bar .top-bar-icon i {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
	padding: 5px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
    
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    font-size: 12px;
    font-weight: 700;
}

.top-bar .top-bar-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 200;
}
.mail_top_bar {
    font-size: 12px !important;
}


@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}
@media (max-width: 988px) {
    .top-bar .top-bar-item {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .top-bar .top-bar-item {
        
       
        margin-left: 0px !important;
        display:block;
        position: relative !important; 
        left: 0px; 
        
        
        
    }
    .top-bar .top-bar-text {
        
       
        vertical-align: middle;
        
        
    }
    .top-bar .top-bar-text h3 {
        font-size: 20px;
        float: left;
        padding: 4px 10px 0px 10px;
    }
    
    .top-bar .top-bar-text p {
       float: left;
       padding: 3px 10px 10px 10px;
       font-size: 22px;

    }
    
    .top-bar .top-bar-icon {
        float: left;
        margin: 0;
       
        
        font-size: 8px;
        vertical-align: middle;
    }
}

  

/****top bar end**/


/*****carousel***/


.carousel-item{
			max-height: 95vh;
			min-height: 250px;
			-webkit-background-size: cover;
			background-size: cover;
			text-align: left;
			

		}
        .carousel-inner {
            border-radius: 0px; /* Set desired border radius value */
            overflow: hidden; /* Ensure that content inside the carousel does not overflow */
          }
          /* Parallax Effect */
          


h5{
font-size: 52px;
		
}



p{
	font-size: 30px;
			
}
.carousel-item::before {
content: "";
display: block;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: rgb(19, 17, 17);
opacity: 0.7;
}


.carousel-caption{
	text-align: center;
	bottom: 250px;
	color: whitesmoke;
}


.carousel-item h5 {
 font-size: 50px;
 font-weight: bolder;

 


}
.carousel-item p {
	font-size: 30px;
	
}

.carousel-item img{
	height: 100%;
	width: 100%;
}
.carousel-indicators{
	margin-bottom: 200px;
	
}
.carousel-indicators button {
    height: 10px !important;
    width: 10px !important;
    margin: 0 10px !important;
    border-radius: 100%;
    background-color: red !important;
}



.carousel-control-prev, .carousel-control-next{
	background-color: red;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	padding: 5px;
	top: calc(50%);
	margin-right: 30px;
	margin-left: 30px;
}

.btn-primary{
	background-color: red !important;
	border-radius: 10%;
}

/*****  carousel Media control start****/


@media only screen and (max-width: 991.98px) {
	.carousel-caption{
		text-align: center;
		bottom: 150px;
		color: whitesmoke;
	}
	.carousel-indicators{
		margin-bottom: 50px;
		
	}


	.carousel-item p {
		font-size: 30px;
		
	}
	.carousel-item h5 {
		font-size: 40px;
		font-weight: bold;
	}

	.carousel-control-prev, .carousel-control-next{
		
		margin-left: 50px;
		margin-right: 50px;
	}



	
	


}

@media (max-width: 988px) {
	.carousel-caption{
		text-align: center;
		bottom: 100px;
		color: whitesmoke;
	}
	.carousel-indicators{
		margin-bottom: 45px;
		
	}


	.carousel-item p {
		font-size: 25px;
		
	}
	.carousel-item h5 {
		font-size: 35px;
		font-weight: bold;
	}

	.carousel-control-prev, .carousel-control-next{
		
		margin-left: 50px;
		margin-right: 50px;
	}

	
}
@media (max-width: 768px) {
	.carousel-caption{
		text-align: center;
		bottom: 90px;
		color: whitesmoke;
	}
	.carousel-indicators{
		margin-bottom: 45px;
		
	}


	.carousel-item p {
		font-size: 15px;
		
	}
	.carousel-item h5 {
		font-size: 26px;
		font-weight: bold;
	}

	.carousel-control-prev, .carousel-control-next{
		
		margin-left: 50px;
		margin-right: 50px;
	}

	

}

@media (max-width: 524px) {
.carousel-caption{
	text-align: center;
	bottom: 90px;
	color: whitesmoke;
}
.carousel-indicators{
	margin-bottom: 45px;
	
}


.carousel-item p {
	font-size: 13px;
	
}
.carousel-item h5 {
	font-size: 17px;
	font-weight: bold;
}

.carousel-control-prev, .carousel-control-next{
	
	
    margin: 50px !important;
	
}



}

/**** carousel media end***/




/******* NAV BAR START*****/




/* custom toggler  start*/
.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #d3531a;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.bar-2 {
    margin-top: 0px;
}


/* State when the navbar is collapsed */

.navbar-toggler.collapsed .bar-1 {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .bar-2 {
    opacity: 1;
    position: absolute;
    top: 10px;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bar-3 {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}

/* when navigation is clicked */

.navbar-toggler .bar-1 {
    top: inherit;
    transform: rotate(135deg);
}

.navbar-toggler .bar-2 {
    opacity: 0;
    top: inherit;
    filter: alpha(opacity=0);
}

.navbar-toggler .bar-3{
    top: inherit;
    transform: rotate(-135deg);
}

/* Color of 3 lines */

.navbar-toggler.collapsed .toggler-icon {
    background: linear-gradient( 263deg, rgba(252,74,74,1) 0%, rgb(179, 198, 202) 100% );
}

/* end custom togler */

.dropdown-toggle[aria-expanded="true"]:after {
	transform: rotate(180deg);
  }
  
  
  /*for the animation*/
  .dropdown-toggle:after {
	transition: 0.5s;
  }




.navbar-nav li a:hover{
	color: red !important;
	}
	.navbar-nav li a{
		color: white;
		font-weight: 600;
		}
	.active {
		color:red!important;
		font-weight: bolder;
	   }

.navbar-nav{
	margin: auto;
}
 
 .dropdown-menu {
	background: rgb(19, 17, 17);
    
 }
 .dropdown-menu :hover {
	
 }
 .dropdown-menu-2 {
    max-height: 200px; /* Set the maximum height of the scrollable part */
  overflow-y: auto;
 }

 .navbar{	
	
   
	width: 100%;
	padding: 5px 0;
	z-index: 3;
	
	height: auto;
	display: flex;
	align-items: center;
	background: rgb(19, 17, 17) !important;
	opacity: 0.95;
	
}
#first_button {
	
	
}

@media (min-width: 992px) {
    .navbar-brand {
        display: none;
    }
	.navbar{
		
		
		
	   
		width: 100%;
		padding: 5px 0;
		z-index: 3;
		
		height: auto;
		display: flex;
		align-items: center;
		background: rgb(19, 17, 17) !important;
		opacity: 0.9;
	}
	#first_button {
		margin-left: 400px!important;
		width: 150px !important;
	}
    .dropdown-item::before{
        transform: rotate(0deg) !important;
        
     }


     #about_styler {
         margin: 50px;
         padding: 20px;
        justify-content: center;
    
        
       
    }

	}
	.view_parallax {
        width: 100%;
        height: 350px;
        
        background-image: url('https://autoaidtowing.com/img/tracktor.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-position: center;
    }
    .view_parallax > * {
        transform: translateY(50%);
      }


      .view2_parallax {
        width: 100%;
        height: 350px;
        
        background-image: url('https://autoaidtowing.com/img/about-1.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-position: center;
    }
    .view2_parallax > * {
        transform: translateY(50%);
      }

      .view3_parallax {
        width: 100%;
        height: 350px;
        
        background-image: url('https://autoaidtowing.com/img/carousel-3.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-position: center;
    }
    .view3_parallax > * {
        transform: translateY(50%);
      }

      .view4_parallax {
        width: 100%;
        height: 350px;
        
        
        background-image: url('https://autoaidtowing.com/img/Car026.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-position: center;
    }
   
      .overay1 {
        
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        
        background-color: black;
        opacity: 0.7;
        overflow: hidden;
      }
      .overay1::after{
        mix-blend-mode: color;
        mix-blend-mode: hue;
        mix-blend-mode: hard-light;
      }
      @media (min-width: 1066px) {
        .overay1{
            height: 420px;
        } 
      }
      @media (max-width: 1066px) {
        .overay1{
            height: 420px;
        } 
      }
      @media (max-width: 988px) {
        .overay1{
            height: 533px;
        } 
      }
      @media (max-width: 762px) {
        .overay1{
            height: 615px;
        } 
      }
      
      @media (max-width: 304px) {
        .overay1{
            height: 640px;
        } 
    }
        
    @media (min-width: 992px){
        .checkbox_styler {
            margin-top: 120px;
            justify-content: center;
          }
          #lets_style {
        
            font-size: 21px !important;
            color: white;
          }
    
      }
      
     
      @media (max-width: 992px){
        .checkbox_styler {
            margin-top: 250px;
            justify-content: center;
          }
          #lets_style {
        
            font-size: 20px !important;
            color: white;
          }
    
      }
      
      @media (max-width: 768px){
        .checkbox_styler {
            margin-top: 300px;
            justify-content: center;
          }
          #lets_style {
        
            font-size: 15px !important;
            color: white;
          }
    
      }
      
      @media (max-width: 524px){
        .checkbox_styler {
            margin-top: 300px;
            justify-content: center;
          }
          #lets_style {
        
            font-size: 12px !important;
            color: white;
          }
    
      }
      @media (max-width: 316px){
        .checkbox_styler {
            margin-top: 350px;
            justify-content: center;
          }
          #lets_style {
        
            font-size: 10px !important;
            color: white;
          }
    
      }



      

@media (max-width: 992) {
	.navbar-nav{
		margin-left: 0px !important;
	}
	.navbar-brand {
		color: white;
	 }
	 
	 .dropdown{
		width: 100%;


	 }
     
	 


}

.dropdown-item::before{
    transform: rotate(-90deg);
    
 }

h2 {
	font-size: 20px;
	justify-content: center;
	font-weight: bold;
	color: rgb(17, 17, 17);
}
.about-content p {
	font-size: 16px;
}

.location {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.location p{
	
	font-size: 16px;

}

.location h2{
	
	font-size: 20px;
	justify-content: center;
	font-weight: bold;
	color: rgb(17, 17, 17);

}
.testimonial p {
	font-size: 16px;
}
.testimonial p {
	font-size: 16px;
}

 
	

	
 




/******* NAV BAR END*****/

/***butttons start**/
.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}
/***butttons end**/


/*******************************/
/********** About CSS **********/
/*******************************/

.about {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
	
}
.about .about-img img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
}



/*** footer ***start**/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: rgb(19, 17, 17);

	
}


.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #E81C2E;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #E81C2E;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

#ground_style {
	font-size: 12px;
}
.copyright p {
	font-size: 12px;
}
.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202C45;
    background: #ffffff;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-social a:hover {
    color: #ffffff;
    background: #E81C2E;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 45px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

.footer .copyright {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 45px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #E81C2E;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}


/* for desktop */
.whatsapp_float {
	position:fixed;
	width:45px;
	height:40px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.whatsapp-icon {
	margin-top:20px;
}
/* for mobile */
@media screen and (max-width: 767px){
     .whatsapp-icon {
	 margin-top:10px;
     }
    .whatsapp_float {
        width: 35px;
        height: 30px;
        bottom: 20px;
        right: 10px;
        font-size: 22px;
    }
}
#about_new_paragraphs {
    color: black;

}

/**/



/***footer end***/



/*****about page start *****/
.about_scroller{
    
    background-image: url(limo.jpg);
    
    min-height: 200vh;

}


/*****about page end*****/




/******testmonials***/


.testimonial {
	padding: 80px 0;
}
.sec-heading {
	margin-bottom: 60px;
}
.sec-heading h6 {
	font-family: allura;
	font-weight: 600;
	font-size: 80px;
}
.single-box {
	border: 3px solid #202C45;
	padding: 50px 30px 40px;
	border-radius: 20px;
	background: #fff;
}
.img-area {
	margin: 45px 0 20px;
}
.single-box img {
	max-width: 150px;
	border-radius: 50%;
	margin: 0 auto
}
.single-box h4 {
	font-weight: 600;
	margin: 0;
	font-family: 'Allura', cursive;
	font-size: 35px;
}
.single-box p{
color: #202C45;

}
.single-box {
	overflow: hidden
}
.single-box .img-area {
	width: 30%;
	float: left;
	margin: 0
}
.single-box .content {
	width: 70%;
	float: left;
	padding-left: 10px
}
.single-box p {
	margin: 10px 0 25px;
	line-height: 2.3;
}
.testi-carousel-three .single-box {
	border: 0;
	padding: 0 50px;
}
.testi-carousel .owl-dots, .clients-carousel .owl-dots, .testi-carousel-three .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -60px;
	text-align: center;
	width: 100%;
}
.testi-carousel .owl-dot, .clients-carousel .owl-dot, .testi-carousel-three .owl-dot {
	width: 16px;
	height: 16px;
	background-color: #ddd;
	display: inline-block;
	margin: 0 6px;
	text-align: center;
	border-radius: 50%;
}
.testi-carousel .owl-dot.active, .clients-carousel .owl-dot.active, .testi-carousel-three .owl-dot.active {
	background-color: red;
}
@media only screen and (min-width: 360px) and (max-width: 479px) {
	.testimonial {
		padding: 70px 0 130px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 359px) {
	.testimonial {
		padding: 70px 0 130px;
	}
	.single-box {
		padding: 50px 0 40px;
	}
	.single-box .img-area {
		width: 100%;
		float: none;
	}
	.single-box .content {
		width: 100%;
		float: none;
	}
}


/* checked */
.checked {
    color: #202C45;
   
}


/*******************************/
/********* Contact CSS *********/
/*******************************/


.contact .contact-info {
    width: 100%;
    margin-bottom: 45px;
    padding: 35px 30px 10px 30px;
    border-radius: 5px;
    background: rgb(19, 17, 17);
    
}

.contact .contact-info h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact .contact-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.contact .contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
}

.contact .contact-info-icon i {
    margin: 0;
    color: #202C45;
    
}

.contact .contact-info-text {
    padding-left: 20px;
}

.contact .contact-info-text h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact .contact-info-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.contact .contact-form input {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #202C45;
}

.contact .contact-form textarea {
    height: 125px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #202C45;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.blog .blog-item {
    margin-bottom: 45px;
}

.blog .blog-img {
    position: relative;
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
    border-radius: 5px;
}

.blog .meta-date {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: calc(50% - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 70px;
    background: #202C45;
    color: #ffffff;
    opacity: 0;
    transition: .5s;
}

.blog .meta-date span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .meta-date strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog .blog-item:hover .meta-date {
    bottom: calc(50% - 35px);
    opacity: 1;
}

.blog .blog-text {
    padding: 25px 0 20px 0;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #202C45;
}

.blog .blog-text h3 a:hover {
    color: #E81C2E;
}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    display: flex;
}

.blog .blog-meta p {
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    padding: 0 10px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #999999;
    margin-right: 5px;
}

.blog .blog-meta a {
    color: #999999;
}

.blog .blog-meta a:hover {
    color: #E81C2E;
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #202C45;
    border-radius: 0;
    border-color: rgb(17, 17, 17);
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #E81C2E;
    background: rgb(17, 17, 17);
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

.city_dividers {
    height: 100px;
    width: 100%;


}
.table_aling {
    margin-left: 600px;
}




/* statisctics */

.wrapper{
    width: 100%;
    height: auto;
    background-color: transparent;
    opacity: 0.8;
    margin: auto;
    padding: 20px;
    flex-wrap: wrap;

}
.container_service{
   
    height: 250px;
    border: 5px solid black;
    
    align-items: center;
    justify-content: space-around;
    margin: auto;
    border-radius: 23px;
    border-bottom: 20px solid red;
    margin-bottom: 5px;
    background-color: white;
    opacity: 0.9;
    
}
span.num {
    font-size: 20px;
    text-align: center;
    display: grid;
    font-weight: bolder;
}
span.text{
    font-size: 20px;
    text-align: center;
    display: grid;
    font-weight: bolder;
}
.stat_icon{
    display: grid; 
    color: red;
    font-size: 30px;
    justify-content: center;
    margin: auto;
    padding: 5px;
}
@media only screen and (min-width: 992px){
    
    .wrapper{
        height: 350px;

    }
    

    
}
.table1,.table2{
    padding: 30px;
    
    
    border-radius: 30px;
    justify-content: center;
    border: 7px solid black;
}
.pricing_div{
    margin: auto;
    
}
.table_d{
    margin: auto; 
}
@media screen and (max-width: 992px){
    
    .table1,.table2{
        
        
    }

}

/* Global Images / in the whole site */

/* car_towing */
.img_btn_paragraphs {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car039.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
  }
  
  
  
  .overay2 {
    border-radius: 10px;    
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    
    background-color: black;
    opacity: 0.4;
    overflow: hidden;
  }
  .overay2::after{
    mix-blend-mode: color;
    mix-blend-mode: hue;
    mix-blend-mode: hard-light;
  }
  /* flatbed page */
  .img_btn_paragraphs1 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car040.jpeg');
    background-size: cover;
    background-position: right;
    background-attachment: fixed;
    background-position: center;
  }
  /* hook and chain */
  .img_btn_paragraphs2 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car088.jpeg');
    background-size: cover;
    background-position: right;
    background-attachment: fixed;
    background-position: center;
    
    
  }
  .img_btn_paragraphs3 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car022.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* karen */
  .img_btn_paragraphs4 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car026.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* kiambu */
  .img_btn_paragraphs5 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car029.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* kirinyaga */
  .img_btn_paragraphs6 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car035.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* kisumu */
  .img_btn_paragraphs7 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car051.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* limuru */
  .img_btn_paragraphs8 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car054.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* Machakos */
  .img_btn_paragraphs9 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car063.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs10 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car062.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* mombasa */

  .img_btn_paragraphs11 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car089.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* Motor vehicle inner images */
  .img_btn_paragraphs12 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car016.jpeg');
    background-size: calc(25%);
    background-position: right;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* Muranga */
  .img_btn_paragraphs13 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car075.jpeg');
    background-size: calc(25%);
    background-position: right;
    background-attachment: fixed;
    background-position: center;
  }
/* Nairobi */

.img_btn_paragraphs14 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car052.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs15 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car074.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  /* lavington */
  .img_btn_paragraphs15 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car077.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs16 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car015.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs17 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa03.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs18 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa04.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs19 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa05.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs20 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa05.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs21 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa06.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs22 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa07.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs23 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa08.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs24 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa010.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs25 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa09.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs26 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa011.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs27 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa012.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs28 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa015.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs29 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa016.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs30 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa018.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs31 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa016.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs32 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa018.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs33 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa019.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs34 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa020.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs35 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car046.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs36 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa022.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs37 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa023.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs38 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa024.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs39 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa025.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs40 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa026.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  .img_btn_paragraphs41 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/wa027.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  
  .img_btn_paragraphs42 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/range.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs43 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/about-4.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs44 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car011.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs45 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car014.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs46 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car015.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }

  .img_btn_paragraphs47 {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    background-image: url('https://autoaidtowing.com/img/Car036.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
   
    
    
  }
  
  
  
  
  
  

  
  .gap{
    margin-right: 10px;
  }
  input[type="checkbox"] {
    /* Replace "red" with your desired color */
    background-color: red;
}

/* Hide the default checkbox appearance */
input[type="checkbox"]::-ms-check,
input[type="checkbox"]::-webkit-checkmark,
input[type="checkbox"]::before {
    display: none;
}
  /* gallary */
  .next_b{
    position: fixed;
    z-index: 100;
    bottom: 40px;
    opacity: 0.7;
    border-radius: 30px;
    
  }

  .view51_parallax {
    position: relative;
    width: 100%;
    min-height: 350px;
    
    
    background-image: url('https://autoaidtowing.com/img/Car026.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
}
.disabled {
    color: red;
  }
  .checkbox {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    margin-right: 8px;
    vertical-align: middle;
    background-color: #FFF;
  }
.red-checkbox{
    color: red;
}

