*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}
p{
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
}
a{
    text-decoration: none;
}
.text-red{
    color: #00B16A;
}
.background-red{
    background-color: #00B16A;
}
.navbar-brand h3{
    font-size: 30px;
    color: #00B16A;
    font-weight: 500;
}
.navbar-brand h3 b{
    font-weight: 800;
}
header{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}
.navbar{
	padding: 20px 0;
	-webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: #fff;
    z-index: 1000;
}
.navbar-nav{
	gap: 25px;
}
.navbar-nav .nav-item .nav-link{
	font-size: 20px;
	font-weight: 400;
    color: #333;
}
 .navbar-nav .nav-item .nav-link.active, .navbar-nav .nav-item .nav-link:hover{
	color: #00B16A;
}
.banner{
    height: 100vh;
    background: url(../images/banner.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.banner-content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.banner-content h6{
    font-size: 18px;
    color: #00B16A;
    font-weight: 500;
}
.banner-content h1{
    font-size: 70px;
    color: #fff;
    font-weight: 800;
    margin: 30px 0;
    max-width: 70%;
    width: 100%;
}
.common-btn{
    padding: 15px 50px;
    background-color: #00B16A;
    color: #fff;
    font-size: 16px;
    display: inline-block;
}
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}
.about{
    padding: 70px 0;
}
.about-image{
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00B16A;
}
.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 5px;
    border-radius: 50%;
}
.about-right{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.about-right small{
    font-size: 18px;
    color: #00B16A;
}
.about-right h2{
    font-size: 35px;
    color: #333;
    line-height: 40px;
    font-weight: bold;
    margin: 10px 0;
}
.about-right p{
    margin: 30px 0 20px 0;
}
.services{
    padding: 70px 0;
}
.single-service{
    padding: 40px 20px;
    display: flex;
    gap: 20px;
    transition: 0.3s;
    min-height: 335px;
}
.rated-image{
    position: relative;
}
.rated-row{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.rated-row p{
    font-size: 20px;
}
.single-service .service-icon{
    height: 90px;
    width: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4fffb;
    margin: 0 auto;
    flex: 0 0 auto;
}
.single-service .service-icon img{
    width: 50px;
}
.single-service h4{
    font-size: 18px;
    color: #333;
    font-weight: 600;
}
.single-service p{
    font-size: 15px;
    color: #999;
}
.services .nav-pills{
	padding: 8px;
	background-color: #fff;
	display: flex;
    gap: 10px;
    justify-content: center;
	margin-top: 35px;
}
.services .nav-item{
	flex: 0 0 auto;
    width: 100%;
}
.services .nav-item .nav-link{
	font-size: 15px;
	color: #333;
	background-color: #f2f0ee;
	padding: 11px 35px;
    width: 100%;
	border-radius: 0px !important;
}
.services .nav-item .nav-link.active{
	font-size: 15px;
	color: #fff !important;
	border-radius: 7px;
	background-color: #00B16A;
	padding: 11px 35px;
	min-width: 225px;
}
.services .tab-content{
    margin-top: 50px;
}
.modal-dialog{
    max-width: 1000px;
    width: 100%;
}
.modal-header{
    border: none;
}
.modal-header .btn-close{
    width: 20px;
    height: 20px;
    background-color: #00B16A;
    border-radius: 50%;
    opacity: 1;
    color: #fff;
    font-size: 12px;
}
.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background-color: #00B16A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.circle img{
    width: 20px;
}
.pulse {
    animation: pulse-animation 1.5s infinite;
}
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}
.services .tab-content h3{
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.services .tab-content h2{
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}
.services .tab-content ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}
.services .tab-content ul li{
    position: relative;
    font-size: 15px;
    color: #999;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.services .tab-content ul li img{
    width: 20px;
}
.common-heading{
    text-align: center;
}
.common-heading h2{
    font-size: 35px;
    font-weight: 900;
    color: #00B16A;
}
.common-heading span{
    width: 100px;
    height: 2px;
    background-color: #00B16A;
    display: inline-block;
    position: relative;
}
.common-heading span:after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #00B16A;
}
.service-tabs{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.service-tabs .nav-pills{
    flex: 0 0 30%;
}
.plans{
    padding: 70px 0;
}
.single-plan{
    padding: 30px 50px;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.5s;
}
.single-plan h4{
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
}
.single-plan h2{
    font-size: 40px;
    color: #333;
    margin: 10px 0;
    font-weight: 900;
}
.single-plan-executive{
    border: 1px solid #00B16A;
}
.single-plan .plan-price{
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #00B16A;
    flex-direction: column;
    margin-bottom: 50px;
    margin-top: 20px;
}
.single-plan .plan-price h3{
    font-size: 35px;
    color: #fff;
    margin: 0;
    font-weight: 800;
}
.single-plan .plan-price span{
    font-size: 18px;
    color: #fff;
}
.single-plan p{
    font-size: 16px;
    color: #999;
}
.single-plan ul{
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 0;
    margin-top: 30px;
}
.single-plan ul li{
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.single-plan ul li p{
    font-size: 15px;
    color: #999;
    text-align: left;
}
.single-plan ul li img{
    width: 20px;
    margin-top: 5px;
}
.single-plan a{
    display: block;
    padding: 10px 30px;
    background-color: #00B16A;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    text-align: center
}
.gallery{
    padding: 70px 0;
}
.gallery a{
    display: block;
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}
.gallery small{
    color: #000;
    margin-top: 50px;
    margin-bottom: 20px;
    display: block;
}
.gallery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lb-outerContainer{
    position: relative;
}
.lb-closeContainer{
    display: none;
}
.lb-details{
    display: none;
}
.lb-nav a.lb-prev, .lb-nav a.lb-next{
    opacity: 1 !important;
}
.single-location{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.location-image{
    flex: 0 0 50%;
    width: 100%;
    height: 300px;
}
.location-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-details {
    padding: 0 20px;
}
.location-details h2{
    font-size: 25px;
    font-weight: bold;
    color: #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.location-details span{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
}
.faqs{
    padding: 70px 0;
}
.accordion-button::after {
    content: '\002B'; 
    font-size: 30px;
    color: #00B16A;
    background-image: none;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-button.collapsed::after {
    content: '\2212'; 
    background-image: none;
    color: #00B16A;
}
#customAccordion{
    margin-top: 50px;
}
.accordion-button:not(.collapsed)::after{
    background-image: none;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    background-color: #fff;
    color: #00B16A;
}
.accordion-button:not(.collapsed){
    box-shadow: none;
}
.accordion-button {
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #414256;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-weight: bold;
    padding: 19px 40px;
}
.accordion-body {
    color: #414256;
    background-color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 0px 40px 19px 40px;

}
.accordion-item:not(:first-of-type){
    border: 1px solid #F1F1FC;
}
.accordion-item{
    box-shadow: 0px 2px 20px 0px #36374705;
    margin-bottom: 15px;
    border: 1px solid #F1F1FC;
}
.accordion-header button{
    font-size: 19px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.02em;
}
.single-contact{
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact{
    padding: 70px 0;
}
.contact-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00B16A;
}
.contact-icon img{
    width: 25px;
}
.single-contact p{
    color: #333 !important;
}
footer{
    padding: 70px 0;
    background-color: #000;
}
footer h4{
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}
footer ul{
    display: flex;
    gap: 15px;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
}
footer ul li a {
    font-size: 15px;
    color: #666;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}
.social-icons a {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons a img{
    width: 20px;
}
footer small{
    color: #999;
}
.office-addresses{
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 30px;
}
.office-addresses span{
    display: flex;
    gap: 10px;
    align-items: center;
}
.office-addresses span b{
    flex: 0 0 40%;
    font-size: 20px;
}
.office-addresses img{
    width: 15px;
}
.map-marker{
    width: 30px;
    height: 30px;
    background-color: #00B16A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 auto;
}