.about-section{
    padding:100px 0;
    
}

/* Left */

.sub-title{
    color:var(--bs-primery-color);
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    display:block;
    margin-bottom:20px;
}

.main-title{
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    color:var(--bs-primery-color);
    margin-bottom:30px;
}

.about-section p{
    color:var(--bs-primery-color);
    font-size:14px;
    line-height:1.8;
    margin-bottom:25px;
    font-weight: 400;
}

/* Button */

.theme-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 42px;
    background:#3557d8;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.theme-btn:hover{

    background:#1f46ca;
    color:#fff;
}

.theme-btn i{

    transition:.35s;
}

.theme-btn:hover i{

    transform:translateX(6px);
}

/* Right */

.image-wrapper{

    position:relative;
    min-height:520px;
}

.img-main{

    width:82%;
    margin-left:auto;
    display:block;
    height:420px;
    object-fit:cover;
}

.img-small{

    position:absolute;
    left:0;
    bottom:0;
    width:55%;
    height:250px;
    object-fit:cover;
    border:10px solid #fff;
}

/* Responsive */

@media(max-width:992px){

.image-wrapper{

    min-height:450px;
}

.img-main{

    width:100%;
    height:350px;
}

.img-small{

    width:55%;
    height:180px;
}

.main-title{

    font-size:40px;
}

}

@media(max-width:768px){

.about-section{

    padding:70px 0;
}

.main-title{

    font-size:24px;
}

.about-section p{

    font-size:16px;
}

.image-wrapper{

    min-height:auto;
}

.img-main{

    width:100%;
    height:auto;
}

.img-small{

    position:relative;
    width:70%;
    margin-top:-70px;
    left:20px;
    height:auto;
}

.theme-btn{

    padding:15px 35px;
}

}

.partner-section{
    background:#fff;
    padding:90px 0;
}

/* Heading */

.section-heading{
    max-width:850px;
    margin:auto;
}

.title-line{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;
}

.title-line span{
    flex:1;
    max-width:110px;
    height:1px;
    background:#dcdcdc;
}

.title-line h2{
    margin:0;
    color:var(--bs-second-color);
    font-size:20px;
    font-weight:700;
}

.section-heading p{
    font-size:15px;
    color:#4f5d73;
    line-height:1.7;
}

/* Logos */

.partner-logo{
    max-width:180px;
    width:100%;
    opacity:.35;
    transition:.35s ease;
    filter:grayscale(100%);
}

.partner-logo:hover{
    opacity:1;
    filter:grayscale(0%);
    transform:translateY(-5px);
}

/* Responsive */

@media (max-width:991px){

.title-line h2{
    font-size:36px;
}

.section-heading p{
    font-size:18px;
}

.partner-logo{
    max-width:150px;
}

}

@media (max-width:767px){

.partner-section{
    padding:70px 0;
}

.title-line{
    gap:10px;
}

.title-line span{
    max-width:50px;
}

.title-line h2{
    font-size:28px;
}

.section-heading p{
    font-size:16px;
}

.partner-logo{
    max-width:130px;
}

}

.team-section{
    padding:100px 0;
    background:#fff;
}

/* Heading */

.title-line{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:15px;
}

.title-line span{
    width:180px;
    height:1px;
    background:#dcdcdc;
}

.title-line h2{
    margin:0;
    color:#022b63;
    font-size:52px;
    font-weight:700;
}

.section-title p{
    color:#59657a;
    font-size:18px;
    margin:0;
}

/* Team Card */

.team-card{
    border:1px solid #e6e6e6;
    background:#fff;
    transition:.3s;
}

.team-card:hover{
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.team-image{
    position:relative;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.team-card:hover .team-image img{
    transform:scale(1.08);
}

/* Overlay */

.team-overlay{
    position:absolute;
    inset:25px;
    background:rgba(255,255,255,.92);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.team-card:hover .team-overlay{
    opacity:1;
    visibility:visible;
}

.team-overlay h4{
    font-size:20px;
    font-weight:700;
    color:#022b63;
    margin-bottom:15px;
}

.team-overlay p{
    font: size 16px;px;
    color:#555;
    margin-bottom:30px;
}

.profile-btn{
    background:var(--bs-primery-color);
    color:var(--bs-yellow);
    text-decoration:none;
    padding:16px 40px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.profile-btn:hover{
    background:var(--bs-second-color); 
    color:var(--bs-primery-color);
}

/* Content */

.team-content{
    padding:25px;
    text-align:center;
}

.team-content h3{
    font-size:18px;
    color:var(--bs-primery-color);
    margin-bottom:5px;
    font-weight:700;
}

.team-content span{
    display:block;
    font-size:16px;
    color:#555;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    color:var(--bs-second-color);
    margin:0 10px;
    font-size:18px;
    transition:.3s;
}

.social-links a:hover{
    color:var(--bs-second-color);
}

/* Responsive */

@media(max-width:991px){

.title-line h2{
    font-size:20px;
}

.team-content h3{
    font-size:20px;
}

.team-overlay h4{
    font-size:18x;
}

}

@media(max-width:767px){

.team-section{
    padding:70px 0;
}

.title-line span{
    width:60px;
}

.title-line h2{
    font-size:20px;
}

.section-title p{
    font-size:16px;
}

.team-image img{
    height:350px;
}

.team-content h3{
    font-size:20px;
}

.team-content span{
    font-size:16px;
}

.team-overlay h4{
    font-size:18px;
}

.team-overlay p{
    font-size:16px;
}

.profile-btn{
    padding:12px 25px;
    font-size:15px;
}

}

.contact-section{
    background:#fff;
}

.contact-section h3 {
    font-size: 20px;
}

.contact-section label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:700;
    color:#1c1c1c;
}

.contact-section .form-control{
    height:40px;
    border:1px solid #e3e3e3;
    border-radius:0;
    box-shadow:none;
    padding:12px 15px;
}

.contact-section textarea.form-control{
    height:270px;
    resize:none;
}

.contact-section .form-control:focus{
    border-color:var(--bs-primery-color);
    box-shadow:none;
}

.theme-btn{
    background:var(--bs-primery-color);
    color:var(--bs-second-color);
    border:none;
    padding:14px 45px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.theme-btn:hover{
    background:var(--bs-second-color);
    color:var(--bs-primery-color);
}

/* Sidebar */

.sidebar-box h3{
    font-size:20px;
    color:var(--bs-primery-color);
    font-weight:700;
    margin-bottom:30px;
}

.hours-list{
    padding:0;
    margin:0;
    list-style:none;
}

.hours-list li{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #ececec;
    font-size:14px;
}

/* Contact */

.contact-item{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.contact-item .icon{
    width:55px;
    height:55px;
    border:1px solid #ddd;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:20px;
    font-size:24px;
    color:var(--bs-primery-color);
}

.contact-item p{
    margin:0;
    font-size:14px;
    color:var(--bs-primery-color);
}

/* Social */

.social-links{
    display:flex;
    gap:10px;
}

.social-links a{
    width:36px;
    height:36px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    transition:.3s;
}

.facebook{background:#3b5998;}
.twitter{background:#55acee;}
.whatsapp{background:#25d366;}
.telegram{background:#2ca5e0;}
.linkedin{background:#0077b5;}
.instagram{background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);}
.youtube{background:#ff0000;}

.social-links a:hover{
    transform:translateY(-4px);
    opacity:.9;
}

/* Responsive */

@media(max-width:991px){

.section-title,
.sidebar-box h3{
    font-size:30px;
}

.contact-section .form-control{
    height:52px;
}

.contact-section textarea.form-control{
    height:220px;
}

.theme-btn{
    width:100%;
}

}

@media(max-width:767px){

.hours-list li{
    flex-direction:column;
    gap:5px;
}

.contact-item{
    align-items:flex-start;
}

.social-links{
    flex-wrap:wrap;
}

}

.visit-section{
    position:relative;
    background:var(--bs-primery-color);
    padding:0px 0;
    overflow:hidden;
}

/* Right Image */

.visit-image{
    height:520px;
}

.visit-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Left Box */

.visit-content{



    background:var(--bs-second-color);

    padding:60px;

    color:var(--bs-primery-color);

    z-index:5;

    overflow:hidden;

}

/* Decorative Shape */

.visit-content::after{

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:45%;
    height:100%;

    background:rgba(255,255,255,.08);

    clip-path:polygon(100% 0,100% 100%,0 30%);

}

.visit-content>*{
    position:relative;
    z-index:2;
}

.number{

    display:block;

    font-size:56px;

    font-weight:700;

    color:rgba(255,255,255,.35);

    margin-bottom:20px;

}

.visit-content h4{


    font-size:24px;

    font-weight:400;

    margin-bottom:25px;

}

.visit-content h2{

    font-size:24px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:30px;

}

.visit-content h2 span{

    display:block;

}

.visit-content p{

    font-size:15px;

    line-height:1.8;

    margin-bottom:40px;

}

/* Button */

.visit-btn{

    display:inline-flex;

    align-items:center;

    gap:18px;

    background:#23262f;

    color:#fff;

    text-decoration:none;

    padding:18px 36px;

    font-weight:700;

    letter-spacing:.5px;

    transition:.3s;

}

.visit-btn:hover{

    background:#26145c;

    color:#fff;

}

.visit-btn i{

    font-size:14px;

}

/* Responsive */

@media(max-width:1199px){

.visit-content{

    width:470px;
    padding:45px;

}

.visit-content h2{

    font-size:42px;

}

.visit-content h4{

    font-size:34px;

}

.visit-content p{

    font-size:18px;

}

}

@media(max-width:991px){

.visit-section{

    padding:60px 15px;

}

.visit-content{

    position:relative;

    left:auto;
    top:auto;

    transform:none;

    width:100%;

    margin-bottom:30px;

}

.visit-image{

    height:420px;

}

}

@media(max-width:767px){

.visit-content{

    padding:35px 25px;

}

.number{

    font-size:42px;

}

.visit-content h4{

    font-size:28px;

}

.visit-content h2{

    font-size:34px;

}

.visit-content p{

    font-size:17px;

}

.visit-btn{

    width:100%;
    justify-content:center;

}

.visit-image{

    height:300px;

}

}



.hero-banner .overlay{

    position:absolute;

    inset:0;
    z-index: 10000000;


}


.hero-subtitle{

    color:#d6b15a;

    font-size:18px;

    font-weight:700;

    letter-spacing:1px;

    display:block;

    margin-bottom:20px;

}
.abthero-content {
    position: relative;
    z-index: 10000;
}
.abthero-content h1{

    font-size:24px;

    font-weight:800;

    line-height:1.15;
color: var(--bs-white);
    margin-bottom:30px;

}

.abthero-content h1 span{

    color:#d6b15a;

}

.line{

    width:70px;

    height:4px;

    background:#d6b15a;

    margin-bottom:35px;

}

.abthero-content p{

    font-size:14px;

    line-height:1.8;

    color: var(--bs-white)!important;

    margin-bottom:45px;

}

/* Features */

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:0;

    margin-bottom:45px;

}

.feature{

    display:flex;

    align-items:center;

    padding:0 28px;
    color: var(--bs-white)!important;
    border-right:1px solid rgba(255,255,255,.35);

}

.feature:first-child{

    padding-left:0;

}

.feature i{

    color:#d6b15a;

    font-size:26px;

    margin-right:15px;

}

.feature strong{

    display:block;

    font-size:14px;

    font-weight:700;

}

.feature span{

    font-size:14px;

}

/* Button */

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:18px 42px;

    background:#d6b15a;

    color:#1d1d1d;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.hero-btn:hover{

    background:#fff;

    color:#26145c;

}

.hero-btn i{

    transition:.3s;

}

.hero-btn:hover i{

    transform:translateX(5px);

}

/* Responsive */

@media(max-width:1199px){

.hero-content h1{

    font-size:56px;

}

.hero-content p{

    font-size:22px;

}

.feature{

    width:50%;

    border:none;

    padding:15px 0;

}

}

@media(max-width:991px){

.hero-banner{

    min-height:auto;

    padding:100px 0 80px;

}

.hero-content{

    text-align:center;

}

.line{

    margin:0 auto 30px;

}

.hero-content h1{

    font-size:48px;

}

.hero-content p{

    font-size:20px;

}

.hero-features{

    justify-content:center;

}

.feature{

    justify-content:center;

    width:50%;

}

}

@media(max-width:767px){

.hero-content h1{

    font-size:34px;

}

.hero-subtitle{

    font-size:16px;

}

.hero-content p{

    font-size:17px;

}

.feature{

    width:100%;

    justify-content:flex-start;

}

.feature strong{

    font-size:18px;

}

.feature span{

    font-size:16px;

}

.hero-btn{

    width:100%;

    justify-content:center;

}

}