body{
    font-family: "Alata", sans-serif;
    margin: 0;
    padding: 0;
}
p{
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
}
.text-blue{
    color: #2c82c9;
}
.background-blue{
    background-color: #2c82c9;
}
header{
    position: sticky;
    right: 0;
    left: 0;
    top: 0;
    z-index: 10000;
}
.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: #fff;
	transition: 0.4s;
}
.navbar-nav{
	gap: 25px;
}
.navbar-nav .nav-item .nav-link{
	font-size: 20px;
	font-weight: 500;
}
 .navbar-nav .nav-item .nav-link.active, .navbar-nav .nav-item .nav-link:hover{
	color: #2c82c9 !important;
	position: relative;
}
.banner{
    background: url(../images/banner-img.jpeg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    height: calc(100vh - 102px);
}
.banner-content{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 100;
}
.banner-content-wrap{
    height: calc(100vh - 102px);
    position: relative;
}
.banner-content h1{
    font-size: 70px;
    font-weight: bold;
    color: #fff;
}
.banner-content b{
    color: #2c82c9;
    display: block;
}
.banner-content p{
    font-size: 17px;
    color: #fff;
    line-height: 28px;
    margin-top: 30px;
    width: 70%;
}
.banner-content .banner-btns{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}
.banner-content .banner-btns a{
    min-width: 170px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #2c82c9;
    text-decoration: none;
    padding: 0 30px;
    text-align: center;
    border-radius: 5px;
}
.banner-content .banner-btns a img{
    transition: 0.3s;
}
.banner-content .banner-btns a:nth-last-child(1){
    background-color: transparent;
}
.banner-content .banner-btns a:nth-last-child(1):hover img{
    transform: translateX(10px);
}
.banner-content .banner-btns a p{
    font-size: 16px;
    color: #fff;
    margin: 0;
    width: 100%;
}
.banner-content .banner-btns a img{
    width: 20px;
}
.overlay{
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(90deg, #000004 5%, #00000465 50%);
}
.banner-about{
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 30px 50px;
    background-color: #2c82c9;
    max-width: 500px;
    z-index: 100;
}
.banner-about h4{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.banner-about p, .banner-about .total-clients p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}
.banner-about .total-clients{
    display: flex;
    gap: 20px;
    align-items: center;
}
.clients-avatar{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
.clients-avatar img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.banner-about .total-clients p{
    margin: 0;
}
.about-us{
    padding: 70px 0;
}
.about-image{
    width: 100%;
    height: 600px;
    position: relative;
    border-radius: 10px;
}
.dots-bg{
    position: absolute;
    left: -50px;
    top: -50px;
    width: 120px;
    z-index: -10;
}
.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1000;
    position: relative;
    border-radius: 10px;
}
.about-content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 50px;
}
.about-content h3{
    color: #2c82c9;
    font-size: 15px;
    text-transform: uppercase;
}
.about-content h2{
    color: #333;
    font-size: 28px;
    text-transform: capitalize;
    margin: 20px 0;
}
.about-content p{
    color: #999;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 30px;
}
.about-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: #2c82c9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-icon img{
    width: 40px;
}
.about-us hr{
    background-color: #eee;
    opacity: 0.1;
    margin: 30px 0;
}
.about-content h4{
    font-size: 20px;
    color: #666;
}
.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);
    }
}
.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;
}
.services{
    padding: 70px 0;
    background-color: #f7f7f7;
}
.common-heading{
    text-align: center;
    margin-bottom: 50px;
}
.common-heading span{
    font-size: 15px;
    text-transform: uppercase;
    color: #2c82c9;
    margin-bottom: 10px;
    display: block;
}
.common-heading h2{
    font-size: 30px;
    color: #333;
    font-weight: bold;
}
.single-service{
    padding: 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
    min-height: 500px;
    border: 1px solid #fff;
}
.single-service:hover{
    border-color: #2c82c9;
}
.single-service img{
    transition: 0.3s;
}
.single-service:hover img{
    transform: rotate(360deg);
}
.single-service h3{
    font-size: 20px;
    margin: 20px 0;
    color: #333;
}
.single-service p{
    font-size: 16px;
    color: #999;
}
.plans{
    padding: 70px 0;
}
.single-plan{
    padding: 30px 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.5s;
}
.single-plan:hover{
    transform: translateY(-10px);
}
.single-plan h4{
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    text-align: center;
}
.single-plan h2{
    font-size: 40px;
    color: #2c82c9;
    margin: 10px 0;
    text-align: center;
    font-weight: 900;
}
.single-plan-executive{
    background-color: #2c82c9;
}
.single-plan-executive .plan-price h3, .single-plan-executive .plan-price span, .single-plan-executive h2, .single-plan-executive h4, .single-plan-executive p, .single-plan-executive ul li{ 
    color: #fff !important;
}
.single-plan-executive a{
    background-color: #fff !important;
    color: #2c82c9 !important;
}
.single-plan .plan-price{
    display: flex;
    align-items: flex-end;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.single-plan .plan-price h3{
    font-size: 25px;
    color: #666;
    margin: 0;
    font-weight: 600;
}
.single-plan .plan-price span{
    font-size: 18px;
    color: #aaa;
}
.single-plan p{
    font-size: 16px;
    color: #999;
    text-align: center;
}
.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;
}
.single-plan a{
    display: block;
    padding: 10px 30px;
    background-color: #2c82c9;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    text-align: center
}
.gallery, .contact-us{
    padding: 70px 0;
    background-color: #f7f7f7;
}

.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 250px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}
.locations{
    padding: 70px 0;
}
.single-location{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    margin-bottom: 20px;
}
.location-image{
    width: 100%;
    height: 400px;
}
.location-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-details{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 20px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}
.location-details h4{
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}
.location-details h6{
    font-size: 16px;
    color: #999;
}
.location-details a{
    font-size: 15px;
    color: #2c82c9;
    text-decoration: none;
}   
.contact-form .form-group{
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 30px;
}
.send-btn{
    padding: 10px 30px;
    color: #fff;
    background-color: #2c82c9;
    border-radius: 5px;
    border: none;
}
.contact-form .form-group label{
    font-size: 15px;
    color: #666;
}
.contact-form .form-group .form-control, .contact-form .form-group textarea{
    height: 50px;
    background-color: #fff;
    border-radius: 5px;
    border: none;
    border: 1px solid #eee;
}
.contact-form .form-group .form-control:focus, .contact-form .form-group textarea:focus-visible{
    box-shadow: none;
    border-color: #2c82c9;
}
.contact-form .form-group textarea{
    height: 200px !important;
    resize: none;
    padding: 10px;
}
.faqs{
    padding: 70px 0;
}

.accordion-item{
	background-color: #f7f7f7;
	margin-bottom: 20px;
}
.accordion-item{
	border: 0px;
}
.accordion-button:not(.collapsed){
    background-color: #f7f7f7;
    color: #2c82c9;
    box-shadow: none;
}
.accordion-button:focus{
	box-shadow: none;
}
.accordion-header{
	padding: 0;
	border: 0;
}
.accordion-button{
	color: rgb(74, 74, 74);
	padding: 1.5rem;
	border: 0px;
	font-weight: 500;
	background-color: #f7f7f7;
	color: rgb(74, 74, 74);
	font-size: 1.5rem;
    line-height: 2rem;
}
.accordion-body{
	font-size: 16px;
    line-height: 25px;
	color: rgb(44, 44, 44);
	padding-bottom: 20px;
	padding-top: 0px;
}
footer{
    padding: 20px 0;
    background-color: #333;
}
footer small{
    color: #fff;
    font-size: 15px;
}
.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;
}
.offices-info{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.offices-info span{
    display: flex;
    gap: 10px;
}
.offices-info span b{
    font-size: 20px;
}
.offices-info span a{
    font-size: 17px;
    text-decoration: none;
    color: #2c82c9;

}
.office-addresses{
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}
.office-addresses span{
    display: flex;
    gap: 10px;
    align-items: center;
}
.office-addresses span b{
    flex: 0 0 40%;
}
.office-addresses img{
    width: 15px;
}
.map-marker{
    width: 30px;
    height: 30px;
    background-color: #2c82c9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 auto;
}
.single-gallery-image{
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden;
}
.single-gallery-image:hover img{
    transform: scale(1.1);
}
.single-gallery-image img{
    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
}