body{
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
}
p{
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0;
}
.text-blue{
    color: #0b7fab;
}
.background-blue{
    background-color: #0b7fab;
}
.navbar-brand h3{
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}
.navbar-brand h3 b{
    color: #0b7fab;
}
header{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
.navbar{
	padding: 10px 0;
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 0 rgba(0,0,0,.1);
	background-color: transparent;
	transition: 0.4s;
    z-index: 1000;
}
.navbar-nav{
	gap: 25px;
}
.navbar-nav .nav-item .nav-link{
	font-size: 20px;
	font-weight: 500;
    color: #fff;
}
 .navbar-nav .nav-item .nav-link.active, .navbar-nav .nav-item .nav-link:hover{
	color: #0b7fab !important;
}
.banner {
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
}
.banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 70%;
}
.banner-content h6{
    font-size: 20px;
    text-transform: uppercase;
    color: #0b7fab;
    font-weight: 600;
}
.banner-content h1{
    font-size: 80px;
    line-height: 100px;
    color: #fff;
    font-weight: 900;
    margin: 0 auto;
}
.banner-content a, .about-content a{
    padding: 12px 40px;
    background-color: #0b7fab;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
}
.about-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.about-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50%;
}
.about-content-absolute{
    width: 50%;
}
.about-content small{
    font-size: 18px;
    color: #0b7fab;
}
.about-content h3{
    font-size: 35px;
    color: #333;
    font-weight: 900;
    margin: 20px 0;
}
.about-content p{
    font-size: 16px;
    color: #999;
}
.about-image{
    height: 700px;
    width: 100%;
    position: relative;
    flex: 0 0 50%;
}
.about-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about-content a{
    margin-top: 30px;
}
.signup-circle{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -150px;
    background-color: #0b7fab;
    color: #fff;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeingColor 2s infinite;
    padding: 20px;
}
@keyframes fadeingColor {
    0%{
        background-color: #0b7fab;
    }
    50%{
        background-color: #1e91be;
    }
    75%{
        background-color: #188bb9;
    }
    100%{
        background-color: #0b7fab;
    }
}
.signup-circle span{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
}
.signup-circle span b{
    font-weight: 900;
    font-size: 25px;
}
.services{
    padding: 70px 0;
}
.common-heading{
    text-align: center;
}
.common-heading h2{
    font-size: 35px;
    font-weight: 900;
    color: #0b7fab;
}
.common-heading span{
    width: 100px;
    height: 2px;
    background-color: #0b7fab;
    display: inline-block;
}
.single-service{
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    min-height: 335px;
}
.single-service:hover{
    background-color: #0b7fab;
}
.single-service:hover p{
    visibility: visible;
}
.single-service:hover h4{
    color: #fff;
}
.single-service:hover .service-icon{
    background-color: #fff;
}
.single-service .service-icon{
    height: 90px;
    width: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b7fab;
    margin: 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: #fff;
    visibility: hidden;
}
.pricing-plans{
    padding-bottom: 70px;
}
.single-plan{
    padding: 30px;
    position: relative;
    height: 100%;
}
.plan-bg-image{
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.plan-bg-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.plan-overlay{
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    inset: 0;
}
.plan-content{
    position: relative;
    z-index: 100;
    margin-bottom: 70px;
}
.plan-content span{
    font-size: 16px;
    text-transform: uppercase;
    color: #0b7fab;
    font-weight: 500;
}
.plan-content h2{
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.plan-content em{
    display: block;
    margin: 20px 0;
    background-color: #fff;
    height: 1px;
    width: 100%;
}
.plan-content ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    list-style-type: none;
    padding-left: 20px;
}
.plan-content ul li{
    font-size: 15px;
    color: #fff;
    position: relative;
}
.plan-content ul li:before{
    content: '';
    width: 10px;
    height: 10px;
    background-color: #0b7fab;
    display: inline-block;
    position: absolute;
    top: 6px;
    left: -20px;
}
.plan-content h4{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.single-plan a{
    padding: 8px 25px;
    color: #fff;
    background-color: #0b7fab;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.testimonials .owl-carousel{
    margin-top: 50px;
}
.single-feeback{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 20px;
    transition: 0.3s;
    border: 1px solid #fff;
}
.single-feeback:hover{
    border-color: #0b7fab;
}
.single-feeback h3{
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #333;
    text-align: center;
}
.single-feeback img{
    width: 50px !important;
}
.single-feeback h6{
    font-size: 15px;
    color: #0b7fab;
}
.testimonials{
    padding: 70px 0;
}
.locations{
    padding-bottom: 70px;
}
.location-img{
    width: 100%;
    height: 400px;
}
.single-location{
    margin-bottom: 30px;
    text-decoration: none;
    display: block;
}
.location-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-location h4{
    font-size: 25px;
    color: #333;
    font-weight: 700;
    margin: 20px 0;
}
.single-location span{
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.single-location span img{
    width: 20px;
}
.single-location span p{
    font-size: 16px;
    color: #999;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-item{
    margin-bottom: 10px;
    border: none;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button::after {
    transition: all 0.5s;
}
.accordion-button, .accordion-button:not(.collapsed){
    background-color: #fff;
    color: #0b7fab;
    border: none;
    font-size: 18px;
    font-weight: 600;
}
.contact{
    padding: 70px 0;
}
.contact-details h6{
    font-size: 18px;
    text-transform: uppercase;
    color: #0b7fab;
}
.contact-details{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.contact-details h2{
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
}
.contact-details p{
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
}
.contact-details a{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 10px;
}
.contact-details a p{
    margin: 0;
}
.contact-details a img{
    width: 20px;
}

.bg-scrolling{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 100000;
}
.single-location-contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
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;
}
.faqs{
    padding-bottom: 70px;
}
.video-section{
    background: url(../images/video-image.png) no-repeat center top;
    background-size: cover;
    padding: 70px 0;
    height: 600px;
    position: relative;
    background-attachment: fixed;
}
.video-content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
.video-content h3{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
}
.overlay-full{
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    inset: 0;
}
.modal-dialog{
    max-width: 1000px;
    width: 100%;
}
.modal-header{
    border: none;
}
.modal-header .btn-close{
    width: 20px;
    height: 20px;
    background-color: #2c82c9;
    border-radius: 50%;
    opacity: 1;
    color: #fff;
    font-size: 12px;
}
.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background-color: #2c82c9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.circle img{
    width: 40px;
}
.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 .nav-pills{
	padding: 8px;
	background-color: #fff;
	border-radius: 7px;
	display: flex;
    gap: 10px;
    justify-content: center;
	margin-top: 35px;
}
.services .nav-item{
	flex: 0 0 auto;
}
.services .nav-item .nav-link{
	font-size: 15px;
	color: #333;
	border-radius: 7px;
	background-color: #f2f0ee;
	padding: 11px 35px;
	min-width: 225px;
}
.services .nav-item .nav-link.active{
	font-size: 15px;
	color: #fff !important;
	border-radius: 7px;
	background-color: #0b7fab;
	padding: 11px 35px;
	min-width: 225px;
}
.services .tab-content{
    margin-top: 50px;
}
.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-left: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.services .tab-content ul li{
    position: relative;
    font-size: 15px;
    color: #999;
}
.services .tab-content ul li:before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0b7fab;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}