@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Satisfy&display=swap');



* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    /* font-family: "Raleway", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

h1, h2, h3, h4, h5, p{
    color: #008000;

}

html,
body {
    width: 100vw;
    height: 100vh;
}

.mainContainer {
    width: 100%;
    height: 100%;
}

.upperNavbar {
    /* background-color: #062b70; */
    background-color: #008000;
}

.contactInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5vw;
    width: 60%;
    margin: 0 auto;
}

.officeContact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.officeContact span,
.officeContact a {
    color: #fff;
    font-size: 13px;
}
.officeContact a:hover {
    color: #e2d139;
}

.socialContact img {
    width: 20px;
}

.lowerNavbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4vw;
    width: 60%;
    margin: 0 auto;
    position: relative;
   
}

nav {
    background-color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navContent {

    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    position: relative;
}

.navContent ul {
    display: flex;
    gap: 20px;
}

.navContent li {
    position: relative;

}

.navContent ul li i{
    display: none;
}

.navContent a {
    /* color: #000000ab; */
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #008000;
    
}

.navContent a::after {
    background-color: #008000;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -150%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    opacity: 0;
}

.navContent a:hover:after {
    width: 100%;
    bottom: -210%;
    opacity: 1;
}

.navhamburger{
    width: 25px;
    height: 20px;
    position: absolute;
    border: 2px solid #008000a2;
    padding: 5px;
    cursor: pointer;
    display: none;
    z-index: 9999999;
}

.hamburgerlines{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.hamburgerlines span{
    width: 100%;
    height: 3px;
    background-color: #008000a8;
    display: block;
}

.homeContent,
.bgContent-section {
    width: 100vw;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.bgcontainer-images {
    display: flex;
    transition: 0.3s ease-in-out;
    width: 300%;
    height: 100%;
}

.backgroundContent {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-services {
    width: 60%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.bg-services-box {
    width: 300px;
    background-color: #ffffff;
    padding:30px;
}

.bg-services-box p {
    font-size: 12px;
    border-bottom: 1px solid #00000027;
    padding: 10px 0;
}

.bg-services-box h1 {
    font-size: 20px;
    color: #008000;
    font-weight: 700;
    padding: 15px 0;
}

.services-buttons ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.services-buttons li {
    width: 150px;
    padding: 20px 15px;
    /* background-color: #062b70; */
    background-color: #008000;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 30px;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    position: relative;
}


.services-buttons a {
    color: #fff;
}



.services-buttons li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: #2f2f2f;
    transition: width 0.4s ease, left 0.4s ease;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.services-buttons li:hover::before {
    width: 100%;
    left: 50%;
}

.services-buttons a {
    position: relative;
    z-index: 2;
}

.sliderArrow {
    position: absolute;
    bottom: 40px;
    left: 100px;
    cursor: pointer;
}

.sliderArrow i {
    margin-right: 5px;
    /* padding: 15px 0px; */
    color: #fff;
    font-size: 20px;
    background-color: #008000;
    width: 25px;
    height: 60px;
    text-align: center;
    align-content: center;
    transition: width 0.3s ease;
}

.sliderArrow i:hover {
    width: 70px;
    background-color: #008000;
}

.mainhomecontent {
    width: 60%;
    margin: 0 auto;
}

.appdownloadsection {
    width: 100%;
    padding: 10px 20px;
    background-color: #062b70;
    background-color: #008000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logoapp {
    display: flex;
    align-items: center;
}

.logoapp>p {
    color: #e44110;
    font-size: 25px;
    margin: 0 15px;
}

.logoapp i {
    font-size: 35px;
    color: #fff;
}

.apptextcontent p,
.apptextcontent h2 {
    color: #fff;
}

.apptextcontent h2 {
    font-size: 18px;
}

.playstore {
    margin-top: 20px;
}
/* .playstore img {
    width: 50%;
} */

.ourservices-section {
    width: 100%;
    padding-bottom: 50px;
}

.services-header,
.aboutus-header,
.testimonalsheader {
    margin: 60px auto;
    width: 50%;
}

.services-header,
.testimonalsheader p, .testimonalsheader h2,
.aboutus-header p, .aboutus-header h2 {
    color: #008000;
    text-align: center;
    text-transform: capitalize;
}

.services-header > p,
.testimonalsheader>p,
.aboutus-header>p {
    font-size: 15px;
    color: #008000;
}

.services-header,
.testimonalsheader>h2,
.aboutus-header>h2 {
    font-size: 25px;
    color: #008000;
}

.services-header-textcontent p {
    font-family: "Satisfy", cursive;
    margin: 40px 0;
    color: #008000;
    font-size: 15px;
}

.ourservicescontent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.servicescontent {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.servicescontent-img{
    width: 300px;
}
.servicescontent-img img {
    width: 100%;
    object-fit: contain;
}

.servicescontent-textcontent p{
    font-size: 14px;
    color: #00000056;
    margin: 20px 0;
}
.servicescontent-textcontent h3{
    color: #008000;
}

.service-btn {
    padding: 15px;
    background-color: #008000;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    position: relative;
    width: 150px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.service-btn a {
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-btn span {
    position: relative;
    z-index: 2;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: #2f2f2f;
    transition: width 0.4s ease, left 0.4s ease;
    z-index: 0;
    transform: translate(-50%, -50%);

}

.service-btn:hover::before {
    width: 100%;
    left: 50%;
}

.service-btn span {
    color: #fff;
    font-size: 22px;
}


.aboutuscontent {
    display: flex;
    width: 100%;
}

.aboutustextcontent{
    width: 50%;
}
.aboutus-image{
    width: 50%;
}

.aboutuscontentsection {
    border: 1px solid #0000001f;
    padding: 30px;
    margin: 20px 0;
    width: 80%;
}

.aboutuscontent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-bottom: 1px solid #0000001f; */
}
.aboutuscontent-header h4:hover{
    
    cursor: pointer;
    color: #919b03;
    /* border-bottom: 1px solid #0000001f; */
}


.toggle-content>p {
    margin-top: 20px;
    font-size: 14px;
    color: #0000009c;
}

.minimize {
    display: none;
}

.aboutuscontent-header>button {
    width: 20px;
    text-align: center;
    color: #fff;
    padding: 5px;
    background-color: #008000;
    cursor: pointer;
    border: none;
}
/* 
.aboutus-image{
    width: 160%;
} */
.aboutus-image img{
    width: 100%;

}

.toggle-content {
    display: none;
    margin-top: 10px;
}
.toggle-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.toggle-content.show {
    max-height: 200px; /* Adjust based on content */
    opacity: 1;
}

.toggle-content.show {
    display: block;
}

.toggle-button::after {
    content: '+';
    font-weight: 800;
}

.toggle-button.active::after {
    content: '-';
    font-weight: 800;
}

.testimonialsSection {
    width: 100%;
    background-color: #948e8e1c;
}

.testimonialcontent {
    width: 60%;
    margin: 0 auto;
    padding: 50px 0;
}

.testimonial-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.testimonial {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    position: relative;
    background-color: #fff;
    padding: 100px 30px 20px 30px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 2px 2px 0 rgba(0, 0, 0, 0);
}
.testimonial .speech p{
    color: #000;
    font-size: 12px;
}

.testimonials-info {
    margin: 0 10px;
}

.profile-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px 0;
    position: absolute;
    top: -50px;
    left: 50px;
}

.profile-icon>i {
    background-color: #008000;
    padding: 5px;
    font-size: 15px;
    position: absolute;
    bottom: 0;
    left: -30px;
}

.profile-icon>img {
    width: 100%;

}

.name {
    font-weight: bold;
    margin-top: 10px;
    margin-left: 20px;
}

.testimonial-btn {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.buttons button {
    width: 6px;
    height: 6px;
    background-color: #2f2f2fa8;
    border: none;
    cursor: pointer;
}



.testimonial-pages {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
}

.pages {
    width: 95%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    transition: left 1s ease;
}

.pages.active {
    left: 0;
}

.pages.previous {
    left: -100%;
}

.pages.next {
    left: 100%;
}

footer{
    width: 100%;
    background-color: #008000;
}

.upperfooter{
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 50px 30px;
    background-color: #fff;
}

.visitus, .emailus, .callus{
    display: flex;
    gap: 10px;
    
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo > i{
    color: #000;
    font-size: 40px;
}
.logo span{
    color: #000;
}

.text-Content-upper h5{
    font-size: 16px;
    color: #000;
    font-weight: 200;
    letter-spacing: 1px;
}

.text-Content-upper p{
    font-size: 18px;
    color: #474545a6;
}

.middlefooter{
    width: 60%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.aboutsite{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.leftsideSite{
    display: flex;
    gap: 20px;
}

.description{
    width: 220px;
}

.description h5{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}
.description p, ul li{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.description ul li{
    margin: 5px 0;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.description ul li a{
    color: #fff;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.description ul li a:hover{
    color: #008000;
}

.rightsideSite{
    display: flex;
}

.lowerfooter{
    width: 60%;
    margin: 200px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lowerfooter-content{
    text-align: center;
    margin-bottom: 50px;
}

.lowerfooter-content p{
    font-size: 14px;
    color: #fff;
}

.lowerfooter-content a{
    color: #fff;
    font-weight: 800;
}

.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 195px;
	right: 30px;
	background-color: #008000;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	}
	.ff {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	color: #fff;
	
	}
	
	.my-float {
	margin-top: 17px;
	}
	
	.float-fb{
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 65px;
	right: 30px;
	background-color: #008000;
	
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100; 
	}



 .aboutus-Content{
    width: 100vw;
    height: 50vh;
 }

 .heroSection{
    background-image: linear-gradient(to bottom, rgba(25, 23, 23, 0.8), rgba(34, 34, 34, 0.2)), url(https://tackles.ae/assets/images/about/background.jpg);
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
 }

 .heroSection-header h1{
    color: #ffff;
    font-size: 40px;
 }

 .heroSection-pageinfo{
    margin-top: 15px;
    font-size: 14px;
 }
 .heroSection-pageinfo a{
    color: #fff;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
 }
 .heroSection-pageinfo a:hover{
    color: #008000;
 }
 .heroSection-pageinfo span{
    margin: 5px;
    color: #008000;
 }

 .certifications-section{
    width: 100%;
    background-color: #e0d6d62d;
 }

 .certification-content{
    width: 60%;
    margin: 0px auto;
    padding: 80px 0;
    text-transform: capitalize;
 }

 
.certifictionheader p{
    font-size: 14px;

}
.certifictionheader h1, .certifictionheader span{
    font-size: 35px;

}
.certifictionheader span{
    color: #062b70;

}

 .certification-description{
    display: flex;
    width: 100%;
    margin-top: 50px;
    justify-content: space-between;

 }
 .certification-description .text-description p{
   font-size: 14px;
   color: #948e8e;
 }

 .text-description{
    width: 30%;
 }

 .card-container{
    padding: 10px;
    background-color: #fff;
    width: 160px;
    margin: 0 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
 }
 .card-container i{
    font-size: 40px;
    font-weight: 100;
    line-height: 50px;
 }
 .card-container p{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
 }

.serviceQuote{
    width: 100%;
    height: 40vh;
    background-image: linear-gradient(to bottom, rgba(21, 27, 25, 0.8), rgb(114 112 112 / 92%)),url(https://tackles.ae/assets/images/page-title/6.jpg);
    align-content: center;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    /* background-color: rgba(83, 94, 100, 0.9); */
}

.quote-content{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.quote-content h1, .quote-content p{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.quote-content h1{
   font-size: 38px;
   text-transform: uppercase;
}
.quote-content p{
    margin-top: 30px;
    font-family: "Satisfy", cursive;
}

.whyusContentSection{
    width: 60%;
    margin: 0px auto;
    padding: 80px 0 50px 0;
    text-transform: capitalize;
 }

.whyus-section{
    width: 100%;
    background-color: #fff;
}

.reasonsSection{
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0 80px 0;
}

.reasonsCard{
    width: 50%;
    margin-bottom: 20px;
}

.reasonsUpperpart{
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px;
}

.reasonsLowerpart p{
    font-size: 15px;
    color: #9c9292;
}



.mainhomecontent{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bookappointment-header{
    padding: 50px 0;
}

.form{
    padding: 20px 0;
}

input{
    width: 300px;
    font-size: 16px;
    padding: 5px;
    border: 1px solid #948e8e3a;
}

.form span{
    color: red;
}

#select{
    padding: 5px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #948e8e3a;
}

.bookappointment-header{
    text-align: left;
    display: flex;
    justify-content: start;
}


#descriptionBox{
    width: 500px;
    height: 100px;
}

.label {
    padding: 10px 0;
}

.submit-btn button{
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    background-color: #1080e9;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
}

.appointmentForm{
    padding-bottom: 100px;
}

.report p, .report a{
    padding: 10px 0;
    font-size: 12px;
    color: #948e8e;
}
.report a{
    text-decoration: underline;
}

.airtablelink{
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.airtablelink img{
    width: 60px;
    margin: 0 5px;
    filter: contrast(5);
}






.mapContainer{
    width: 100vw;
    height: 70vh;
}

.contactInfoContent{
    width: 60%;
    margin: 0 auto;
    padding: 50px 0;
}

.contactInfoContent-header p{
    color: #948e8e;
}
.contactInfoContent-header span{
    color: #062b70;
}
.contactDetails{
    margin: 50px 0;
}

.contactInfoDetails{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 80px 0;
}

.contactContent-text p{
    color: #948e8e;
}

.galleryContainerSection{
    width: 1152px;
}


.galleryImgaeBox{
    width: 350px;
    height: 200px;
    overflow: hidden;
    margin: 20px;
}


.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Fullscreen image */
.fullscreen-img {
    max-width: 90%;
    max-height: 90%;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.galleryImageBox img {
    width: 100%; /* Customize the gallery image size as needed */
    cursor: pointer;
}



.leftgallerysection{
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.rightgallerysection{
    width: 33%;
}

.galleryImgaeBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) .5s;
}
.galleryImgaeBox img:hover{
    scale: 1.2;
    cursor: pointer;
}

.gallerySection{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

body{
    overflow-x: hidden;
}


.team{
    width: 1160px;
    height: 100%;
    background-color: #ffff;
    margin: 0 auto;
}

.teamContainer{
    display: flex;
    flex-wrap: wrap;
}

.teamcard {
    position: relative;
    text-align: center;
    background-color: white;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    width: 250px;
    margin: 20px;

}

.teamcard img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out;
}

.teamcard .social-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #008000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}


.fadeBackground{
    width: 100%;
    height: 60%;
    background-image: linear-gradient(180deg, #008000 0%, transparent 49%, transparent 82%, transparent 100%);
    position: absolute;
    top: 51px;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.teamcard h3{
    font-size: 14px;
    margin-top: 20px;
    text-transform: uppercase;
}
.teamcard p{
    font-size: 10px;
}

.teamcard .social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
}
.teamcard .social-icons

.teamcard h3, .teamcard p {
    margin: 10px 0;
    transition: opacity 0.3s ease-in-out;
}

.teamcard:hover img {
    transform: translateY(40px); /* Move the image down on hover */
}

.teamcard:hover .social-icons {
    opacity: 1;
}

.teamcard:hover .fadeBackground{
    opacity: 1;
}

.teamcard:hover h3, .teamcard:hover p {
    opacity: 0; /* Hide name and job title on hover */
}

.visitus, .emailus{
    width: 33.33%;
}

.emailus .logo i{
    color: #000 !important;
    
}

/* .card:hover {
    transform: scale(1.05);
} */

.disclaimerContentContainer, .tosContentContainer, .privacyContentContainer, .faqsContainer, .testimonialcontent, .testimonialContent-Container{
    width: 1167px;
    margin: 50px auto;
}

.disclaimerText, .tosText, .privacyContent, .faqsContent{
    width: 90%;
    margin: 20px;
}
.disclaimerText h1, .tosText h1, .privacyContent h1{
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.disclaimerText p, .text-content p, .privacyContent p{
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
    color: #2020208f;
    margin-bottom: 20px;
}

.tosText ul li {
    list-style-type: disc;
    color: #000000de;
    margin-left: 40px;
    font-size: 14px;
}


/* testimonailas page*/
/* css starts here */
.testimonialContent-Container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.testimonialContentCard{
    border: 1px solid #000;
    border-radius: 24px;
    max-width: 300px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px;
}
.testimonialImg{
    width: 150px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
.testimonialImg img{
    width: 100%;
}
.testimonialAddress p{
    font-size: 14px;
    margin: 5px 0;
    text-align: center;
}
.testimonialJobType{
    font-size: 14px;
    text-align: center;
}
.testimonialFeedback p{
    font-size: 12px;
    margin: 22px 0;
}
.testimonialName{
    text-align: center;
    
}
.testimonialCountry p{
    font-size: 14px;
    margin: 5px 0;
    text-align: center;
}

.servicesContentImg img{
    width: 55%;
}
/* css ends here */




/* media queries for homepage */
/* starting */
@media screen and (max-width: 1782px) {
    .certification-content{
        width: 1068px;
    }
}
@media screen and (max-width: 1490px){
    .middlefooter{
        width: 70%;
    }
}
@media screen and (max-width: 1399px){
    .lowerNavbar{
        width: 90%;
    }

    .apptextcontent p{
        font-size: 12px;
    }
    .apptextcontent h2{
        font-size: 14px;
    }

    .services-header{
        width: 90%;
    }
    .servicescontent-img{
        width: 250px;
    }
    .aboutus-header{
        width: 90%;
    }
    .upperfooter{
        width: 60%;
    }

    .middlefooter{
        width: 70%;
    }

}

@media screen and (max-width: 1230px) {
    .upperfooter{
        width: 70%;
    }

    .middlefooter{
        width: 75%;
    }
    .browsemorePart .description{
        width: 125px;
    }

    .certification-content{
        width: 956px;
    }
    .card-container{
        width: 134px;
    }

    .galleryContainerSection{
        width: 860px;
    }
    .galleryImgaeBox{
        width: 250px;
    }

    .team{
        width:990px;
    }
    .teamcard{
        width: 200px;
    }
    .fadeBackground{
        top: 44px;
    }
    .disclaimerContentContainer, .tosContentContainer, .faqsContainer, .testimonialcontent, .testimonialContent-Container{
        width: 960px;
    }
    
    .card {
        width: calc(33.33% - 35px);
      }
}

@media screen and (max-width: 1100px) {
    .servicescontent-img{
        width: 150px;
    }
    .aboutsite .description{
        width: 185px;
    }

    .middlefooter{
        width: 80%;
    }
}

@media screen and (max-width: 1050px){
    .upperfooter{
        width: 75%;
    }
}

/* for nav hamburger */
@media screen and (max-width: 991px){

    .mainhomecontent{
        width: 90%;
    }
    .upperNavbar{
        height: 60px;
    }

    .lowerNavbar{
        width: 90%;
        height: 65px;
    }
    .navhamburger{
        display: block;
        z-index: 999999;
    }

    .navContent{
        display: none;
    }

    .companyLogo{
        width: 100%;
        display: flex;
        justify-content: center;
        
    }
    .companyLogo img{
        width: 100%;
        height: 100%;
    }

    .navContent{
        position: absolute;
        /* display: block; */
        bottom: -229%;
        background-color: #008000;
        width: 90%;
        z-index: -999;
        height: 0%;
        
    }

    .navContent.active{
        display: block;
        height: auto;
    }

    .navContent ul{
        display: flex;
        flex-direction: column;
        padding: 10px 20px;
    }

    .navContent ul li{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navContent ul li a{
        color: #fff;
    }

    .navContent a:hover:after {
        opacity: 0;
    }

    .navContent ul li i{
        display: block;
        color: #fff;
        font-size: 20px;
        font-weight: 900;
    }
    .bg-services{
        width: 80%;
    }

    .bg-services-box{
        width: 270px;
    }

    .appdownloadsection{
        flex-direction: column;
        padding: 20px 0;
    }

    .logoapp{
        flex-direction: column;
    }

    .logoapp > p{
        display: none;
    }

    .apptextcontent{
        text-align: center;
        gap: 10px;
    }

    .apptextcontent p{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .apptextcontent h2{
        font-size: 22px;
    }

    .services-header{
        width: 90%;
    }
    .aboutus-header{
        width: 90%;
    }

    .services-header-textcontent p{
        font-size: 14px;
    }

    .toggle-content p{
        font-size: 12px;
    }

    /* .testimonial1, .testimonial2{
        width: 100%;
    } */

    .upperfooter{
        width: 60%;
        flex-direction: column;
        padding: 50px;
        gap: 30px;
    }

    .text-Content-upper p{
        font-size: 16px;
    }

    .middlefooter{
        flex-direction: column;
        gap: 20px;
        margin: 30px auto;
        position: relative;
    }

    .leftsideSite{
        flex-direction: column;
    }

    .aboutsite{
        width: 100%;

        /* flex-direction: column; */
    }

    .aboutsite .description{
        width: 100%;
    }
    .rightsideSite{
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .certification-content{
        width: 90%;
    }

    .certifictionheader{
        text-align: center;
    }

    .certification-description{
        flex-direction: column;
        gap: 10px;
    }
    .certification-description .text-description{
        width: 100%;
        text-align: center;
        font-size: 16px;
    }
    .certification-description .text-description p{
        margin-bottom: 15px;
        font-size: 13px;
    }

    .card-container{
        width: 95%;
        padding: 20px 10px;
        text-align: center;
    }

    .serviceQuote{
        padding: 70px 0;
    }
    .whyusContentSection{
        width: 90%;
    }
    .reasonsSection{
        width: 90%;
        gap: 20px;
    }
    .reasonsCard{
        width: 48%;
        gap: 20px;
    }

    .gallerySection {
       justify-content: center;
    }

    .leftgallerysection{
        width: auto;
        grid-template-columns: 1fr;
    }

    .rightgallerysection{
        width: auto;
    }

    .team{
        width: 700px;
    }
    .teamcard{
        width: 300px;
    }
    .fadeBackground{
        top: 58px;
    }

    .disclaimerContentContainer, .tosContentContainer, .privacyContentContainer, .faqsContainer, .testimonialcontent, .testimonialContent-Container{
        width: 700px;
    }
    .testimonialContent-Container{
        grid-template-columns: 1fr 1fr;
    }

    .card {
        width: calc(37.33% - 45px);
      }
}


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

    .officeContact{
        display: none;
    }

    .socialContact{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .lowerNavbar{
        width: 100%;
        padding: 20px 0vw;
    }
    .companyLogo{
        justify-content: start;
    }

    .navhamburger{
        right: 10vw;
    }

    .navContent{
        position: absolute;
        width: 100vw;
        left: 0;
    }
    .navContent.active{
        display: block;
        height: auto;
    }
    .companyLogo{
        position: absolute;
        left: -4vw;
    }

    .bg-services{
        width: 95%;
    }
    .bg-services-box{
        width: 230px;
    }

    .services-buttons ul li{
        padding: 10px;
    }

    .services-buttons a{
        font-size: 10px;
    }

    .bg-services-info h1{
        font-size: 14px;
        text-align: center;
    }

    .ourservicescontent{
        flex-direction: column;
        justify-content: start;
    }
    .servicescontent{
        width: 90%;
    }

    .servicescontent > img{
        width: 332px;
    }

    .aboutus-header{
        width: 90%;
    }

    .services-header-textcontent p{
        font-size: 12px;
    }

    .aboutustextcontent{
        width: 100%;
    }

    .aboutus-image {
        display: none;
    }

    .rightsideSite{
        position: static;
    }

    /* .firstContentContainer{
        overflow: hidden;
    } */
    .lowerfooter{
        margin-top: 50px;
    }
    .aboutsite{
        flex-direction: column;
        text-align: center;
    }
    .aboutsite .description p{
        line-height: 18px;
        font-size: 12px;
        font-weight: 800;
    }
    .card-container{
        width: 95%;
        margin: 0;
    }
    .serviceQuote{
        height: 100%;
        padding: 100px 0;
    }
    .quote-content h1, .quote-content p{
        width: 100%;
    }
    .quote-content p{
        font-weight: 700;
    }
    .quote-content{
        width: 90%;
    }
    .whyusContentSection{
        width: 90%;
    }
    .upperwhyusSection{
        text-align: center;
    }
    .reasonsSection{
        flex-direction: column;
        gap: 20px;
        width: 90%;
    }
    .reasonsCard{
        width: 100%;
    }

    .galleryContainerSection {
        width: 100%;
    }

    #select, #descriptionBox{
        width: 300px;
    }

    .team{
        width: 80%;
    }
    .teamcard{
        width: 100%;
    }
    .fadeBackground{
        top: 59px;
    }
    .disclaimerContentContainer, .tosContentContainer, .privacyContentContainer, .faqsContainer, .testimonialcontent, .testimonialContent-Container{
        width: 90%;
    }

    .testimonialContent-Container{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .faqsContent{
        margin: 20px 0;
    }

    .card {
        width: calc(100vw - 9.50%);
      }

      .testimonial{
        max-width: 90%;
      }
      .servicesContentImg img{
        width: 32%;
    }
    
}

@media screen and (max-width: 620px){
    .gallerySection{
        display: block;
    }
    .leftgallerysection{
        width: 100%;
        justify-items: center;
    }
    .rightgallerysection{
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        justify-items: center;
    }
    .servicesContentImg{
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

@media screen and (max-width: 470px) {
    .servicescontent > img{
        width: 100%;
    }
    .servicesContentImg img{
        width: 55%;
    }
}

