:root{
    --clr-primary: #003366;
    /* --clr-primary: rgb(164 128 114); */
    --clr-primary-hsl: 36, 80%, 45%;
    --clr-primary-rgb: 207, 133, 23;
	--clr-accent: #ffcd39;
	/* --clr-accent: #007C91; */
	/* --clr-accent: #623c23; */
	--clr-accent-hsl: 24, 47%, 26%;
	--clr-accent-rgb: 98 60 35;
    --clr-neutral: #262626;
    --clr-neutral-hsl: 0, 0%, 15%;
    --clr-neutral-rgb: 38, 38, 38;
    --clr-black: #000000;
    --clr-black-hsl: 0, 0%, 0%;
    --clr-black-rgb: 0, 0, 0;
    --clr-light: #F2F4F5;
    --clr-dark-brown : #7A5C38;
    --clr-white: #FFFFFF;
    --clr-white-hsl: 0, 0%, 100%;
    --clr-white-rgb: 255, 255, 255;
    --icon-font: "Font Awesome 6 Free";
	--body-font-family: "Inter", sans-serif;
	--title-font-family: "Outfit", sans-serif;
    --clr-1: #f0f0f0;
    --clr-2: #f9fafb;
    --clr-3: #f3f4f6;
    /* --clr-4: rgb(162 123 111); */
    --clr-5: #d1d5db;
    /* --clr-6: rgb(222 207 192); */
    --clr-7: #6b7280;
    --clr-8: #4b5563;
    --clr-9: #374151;
    --clr-10: #1f2937;
    --clr-11: #111827;
    --clr-12: #6a6a6a;
    --clr-13: #9ca3af;
    /* --clr-14: rgb(254 240 227); */
}
body{
    font-family: var(--body-font-family);
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr-neutral);
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--title-font-family);
}
.container{
    max-width: 79rem;
}
/*|==================================================================================
    Topbar Section
====================================================================================|*/
.topbar-section{
    /* padding: .625rem 0; */
    border-bottom: 1px solid #dee2de;
    background-color: var(--clr-primary);
}
.topbar-section ul{
    display: flex;
    align-items: center;
}
.topbar-section ul li{}
.topbar-section ul li a{
    display: block;
    padding: .75rem 0;
}
.topbar-section ul li,
.topbar-section ul li a{
    color: var(--clr-white);
    font-size: 1rem;
    font-weight: 400;
}
.topbar-section ul li a:hover{
    color: #ffcd39;
}
.topbar-section .topbar-left ul li:not(:first-child){
    position: relative;
    padding-left: 1rem;
    margin-left: 20px;
}
.topbar-section .topbar-left ul li:not(:first-child)::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    /* border-left: 1px solid #dee2de;
    padding-left: 1.25rem;
    margin-left: 1.25rem; */
}
.topbar-section .topbar-left ul li i{
    color: #ffcd39;
}
.topbar-section .topbar-right{
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar-section .topbar-right ul{
    /* padding-right: .5rem;
    margin-right: 1rem;
    border-right: 1px solid #dee2de; */
}
.topbar-section .topbar-right .btn-text{
    color: var(--clr-white);
    padding-left: 1rem;
    margin-left: .5rem;
    border-left: 1px solid #dee2de;
}
.topbar-section .topbar-right .btn-text:hover{
    color: var(--clr-accent);
    text-decoration: none;
}
.topbar-section .topbar-right .btn-text i{
    margin-right: .25rem;
}
.social-list{
    display: flex;
    align-items: center;
}
.social-list li{}
.social-list li .social-link{
    color: #ffcd39;
    font-size: 1rem;
    padding: .75rem .75rem;
}
.social-list li .social-link:hover{
    color: var(--clr-white);
} 
.scroll-top {
    display: none;
    position: fixed;
    bottom: 105%;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s linear;
}
.scroll-top.scrolltopactive {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.scroll-top:hover .scroll-top-inner {
    color: var(--clr-white);
}
.scroll-top::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center,rgba(0,0,0,.25) 0,transparent 80%);
    z-index: -1;
}
.scroll-top-inner {
    color: var(--clr-white);
    font-size: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--clr-accent);
    transition: all .3s linear;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    /* .topbar-section{
        margin-left: 160px;
    } */
    .topbar-section .topbar-right{
        justify-content: flex-end;
    }
    .scroll-top {
        width: 3.5rem;
        height: 3.5rem;
    }
    .scroll-top-inner {
        font-size: 1.25rem;
    }
}
@media (max-width: 991.98px){
    .topbar-section,.scroll-top {
        display: none;
    }
}
/*|==================================================================================
    Header
====================================================================================|*/
.header{
    /* border-bottom: 1px solid #dee2de; */
}
#header.fixed-top{
    box-shadow: 0 9px 54px 0 rgba(32,32,32,.1);
    background-color: #fff;
    animation: fadeInDown .5s running;
    transition: all .5s ease;
}
.header .navbar{
    padding: 0;
}
.header .navbar .navbar-brand{
    margin-right: 0;
    padding: .625rem 0;
}
.header .navbar .navbar-brand img{
    width: 180px;
    height: auto;
}
.header .navbar .navbar-end{}
.header .navbar .navbar-end .btn{
    color: var(--clr-black);
    display: flex;
    align-items: center;
    font-size: .875rem;
    font-weight: 600;
    padding: .375rem .75rem;
    border-radius: 4rem;
    /* border: 1px solid var(--clr-dark-brown); */
    background-color:  #ffcd39;
}
.header .navbar .navbar-end .btn img{
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(7500%) hue-rotate(109deg) brightness(90%) contrast(107%);
}
.header .navbar .navbar-end .btn:hover{
    color: var(--clr-white);
    background-color: var(--clr-primary);
}
.header .navbar .navbar-end .btn:hover img{
    filter: brightness(1) invert(1);
}
/* .header .navbar .navbar-end .btn img{
    width: 18px;
    margin-left: 3px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(1%) saturate(0%) hue-rotate(119deg) brightness(95%) contrast(91%);
}
.header .navbar .navbar-end .btn:hover img{
    filter: brightness(0) saturate(100%) invert(57%) sepia(64%) saturate(423%) hue-rotate(73deg) brightness(91%) contrast(87%);
} */
.header .navbar-nav .nav-item .nav-link{
    position: relative;
    overflow: hidden;
    color: var(--clr-black);
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 0;
}
/* .header .navbar-nav .nav-item .nav-link.active,.header .navbar-nav .nav-item .nav-link:hover{
    color: var(--clr-black);
} */
.header .navbar-nav .dropdown-toggle::after,.header .navbar-nav .dropstart .dropdown-toggle::before {
    border: none;
    font-family: var(--icon-font);
    font-size: .875rem;
    font-weight: 900;
    vertical-align: middle;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
}
.header .navbar-nav .nav-item .dropdown-toggle::after{
    /* border: none; */
    content: '\f107';
    /* font-family: var(--icon-font);
    font-weight: 900;
    font-size: .875rem;
    vertical-align: middle; */
}
.header .navbar-nav .dropstart .dropdown-toggle::before{
    position: absolute;
    right: 1rem;
    content: "\f105";
    margin-right: 0;
}
.header .navbar-nav .dropstart .show.dropdown-toggle::before{
    transform: rotate(90deg);
}
.header .navbar-nav .nav-item .dropdown-menu{
    min-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border-top: 2px solid var(--clr-primary);
}
.header .navbar-nav .dropdown-menu .dropdown-item,
.header .navbar-nav .dropdown-menu .dropstart .dropdown-item,
.header .navbar-nav .dropdown-menu .dropstart .dropdown-menu li a{
    display: block;
    color: #6A6A6A;
    padding: .5rem 1rem;
}
.header .navbar-nav .dropdown-menu .dropdown-item:focus,
.header .navbar-nav .dropdown-menu .dropdown-item:active{
    color: var(--clr-primary);
    background-color: transparent;
}
.header .navbar-nav .dropdown-menu li .dropdown-item:hover{
    color: var(--clr-primary);
    background-color: rgba(var(--clr-primary-rgb), .15);
}
.header .navbar-nav .dropdown-menu li:last-child .dropdown-item:hover{
    border-radius: 0;
}
.header .navbar-nav .nav-item:hover .nav-link,.header .navbar-nav .nav-item .nav-link.active,
.header .navbar-nav .dropdown-menu li:hover .dropdown-item,.header .navbar-nav .dropdown-menu .dropstart:hover .dropdown-item,
.header .navbar-nav .dropdown-menu .dropstart .dropdown-menu li a:hover,.header .navbar-nav .dropdown-menu li .dropdown-item.active,
.header .navbar-nav .dropdown-menu .dropstart:hover .dropdown-item.active,.header .navbar-nav .dropdown-menu .dropstart .dropdown-menu li a.active{
    color: var(--clr-accent);
    /* background-color: var(--clr-primary); */
}
.header .navbar-nav .nav-item:hover .nav-link,.header .navbar-nav .nav-item .nav-link.active{
    border-radius: .25rem;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .header .navbar{
        height: 80px;
    }
    .header .navbar .navbar-brand img{
        width: 250px;
    }
    .header.fixed-top .navbar .navbar-brand{
    }
    /* .header.fixed-top .navbar-nav{
        padding-left: 90px;
    } */
    .header .navbar .navbar-end .btn{
        font-size: .875rem;
        font-weight: 700;
        padding: .875rem 1.75rem;
    }
    .header .navbar .navbar-end .btn img{
        width: 24px;
        margin-left: 6px;
    }
    .header .navbar-nav .dropdown:hover > .dropdown-menu,
    .header .navbar-nav .dropstart:hover > .dropdown-menu{
		display: block;
	}
    .header .navbar-nav .dropdown >.dropdown-toggle:active{
		pointer-events: none;
	}
    .header .navbar-nav .dropstart:hover > .dropdown-menu{
        position: absolute;
        top: 0;
        left: 100%;
    }
    .header .navbar-nav .dropstart .dropdown-menu.show {
        display: none;
    }
    .header .navbar-nav .nav-item .nav-link{
        /* font-size: 1.125rem; */
        padding: 24px 16px;
    }
    /* .header .navbar-nav .nav-item+.nav-item{
        margin-left: 10px;
    } */
    .header .navbar-nav .dropdown-menu.main-dropdown{
        min-width: 280px;
    }
    .header .navbar-nav .dropdown-menu .dropdown-item,
    .header .navbar-nav .dropdown-menu .dropstart .dropdown-item,
    .header .navbar-nav .dropdown-menu .dropstart .dropdown-menu li a{
        padding: .625rem 1.25rem;
        font-size: 1.125rem;
    }
    .header .navbar-nav .dropdown-toggle::after,.header .navbar-nav .dropstart .dropdown-toggle::before {
        font-size: 1rem;
    }
}
@media (max-width: 991.98px){
    .header{
        border-bottom: 1px solid #dee2de; 
    }
    .header .navbar .navbar-brand img{
        height: 50px;
    }
    .header .navbar .navbar-brand .desktop-logo{
        display: none;
    }
    /* .header .navbar-nav .nav-item .nav-link{
        border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    } */
    .header .navbar-nav .nav-item:last-child .nav-link{
        border-bottom: none;
    }
    .header .navbar-nav .nav-item .dropdown-toggle{
        position: relative;
    }
    .header .navbar-nav .nav-item .dropdown-toggle::after{
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    .header .navbar-nav .dropdown-toggle::after,.header .navbar-nav .dropstart .dropdown-toggle::before {
        font-size: 1rem;
    }
}
@media (max-width: 575.98px){
    .header .navbar-nav .nav-item .nav-link{
        font-size: 1.125rem;
    }
    .header .navbar .navbar-end{
        display: none;
    }
}
/*|==================================================================================
    Navbar Toggler
====================================================================================|*/
.navbar-toggler {
    padding: 8px 0;
}
.navbar-toggler,.navbar-toggler:focus,.navbar-toggler:active {
    border: none !important;
    background: 0 0 !important;
    outline: none !important;
    box-shadow: none;
}
.navbar-toggler .icon-bar {
    background-color: var(--clr-accent);
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}
.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    /* background-color: var(--clr-primary) */
}
.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}
.navbar-toggler .icon-bar:nth-child(2) {
    width: 16px;
    transition: ease all .2s;
}
.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}
.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}
/*|==================================================================================
    Featured Section
====================================================================================|*/
.hero-section{}
.hero-section .hero-item{
    height: 250px;
}
.hero-section .hero-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .hero-item .hero-img-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(var(--clr-black-rgb), .35);
}
.hero-section .hero-item .hero-content{
    padding: 1rem;
    text-align: center;
}
.hero-section .hero-item .hero-content .eyebrow-title{
    display: none;
    color: var(--clr-dark-brown );
}
.hero-section .hero-item .hero-content .hero-title{
    margin-bottom: 1rem;
}
.hero-section .hero-item .hero-content p{}
.hero-section .hero-item .hero-content .btn{
    display: inline-block;
    border-radius: 4rem;
    padding: .625rem 1.25rem;
}
.hero-section .hero-item .hero-content .btn img{
    display: inline-block;
    width: 18px;
    height: 18px;
}
.hero-section .hero-item .hero-content .hero-title,
.hero-section .hero-item .hero-content p{
       color: var(--clr-white);
}
.hero-carousel.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    margin-top: 0;
}
.hero-carousel.owl-theme .owl-dots .owl-dot {
    /* position: absolute;
    bottom: 10px; */
}
.hero-carousel.owl-theme .owl-dots .owl-dot.active span, .hero-carousel.owl-theme .owl-dots .owl-dot:hover span {
    opacity: 1;
    box-shadow: 0 0 7px rgba(0, 0, 0, .23);
    background: var(--clr-primary);
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .hero-section .hero-item{
        height: 550px;
    }
    .hero-section .hero-item .hero-img-overlay{}
    .hero-section .hero-item .hero-content{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 5%;
    }
    .hero-section .hero-item .hero-content p{
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    .hero-section .hero-item .hero-content .btn{
        font-size: 1rem;
        padding: .75rem 1.5rem;
    }
}
@media (max-width: 991.98px){
    .hero-section .hero-item .hero-content{
        text-align: center;
    }
    .hero-section .hero-item .hero-content p{
        display: none;
    }
}
@media (max-width: 575.98px){
    .hero-section .hero-item .hero-content .btn{
        padding: .5rem 1.25rem;
    }
    .hero-section .hero-item .hero-content .btn img{
        width: 14px;
        height: 14px;
    }
}
/*|==================================================================================
    Home About Section
====================================================================================|*/
.home-about-section{
    position: relative;
    overflow-x: hidden;
}
.home-about-section .home-about-img{}
.home-about-section .home-about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}
.home-about-section .home-about-content{}
.home-about-section .home-about-content p{}
.home-about-section .home-about-content .btn{
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 1rem;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .home-about-section .home-about-img img{
        border-radius: 1.25rem;
    }
    .home-about-section .home-about-content{
        padding-left: 1.25rem;
    }
    .home-about-section .home-about-content p{
        /* font-size: 1.125rem; */
    }
    .home-about-section .home-about-content .btn{
        padding: .75rem 1.5rem;
        margin-top: 1rem;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    service Section 2
====================================================================================|*/
.service-section-2{
    background-color: #eff6ff;
}
.service-section-2 .section-header .btn{
    color: var(--clr-white);
    background-color: var(--clr-black);
}
.service-section-2 .section-header .btn img{
    filter: brightness(1) invert(1);
    width: 16px;
    height: 16px;
}
.service-section-2 .card{
    overflow: hidden;
    border: none;
    border-radius: 1rem;
}
.service-section-2 .card .img-box{
    height: 280px;
}
.service-section-2 .card .img-box img{
    width: 100%;
    height: 100%;
    /* border-radius: .5rem; */
    object-fit: cover;
}
.service-section-2 .card .card-body{}
.service-section-2 .card .card-body .card-title{
    color: var(--clr-black);
    font-size: 1.25rem;
    font-weight: 500;
}
.service-section-2 .card .card-body .card-title a:hover{
    color: var(--clr-accent);
}
.service-section-2 .card .card-body p{
    color: #555555;
    font-size: 1rem;
}
.service-section-2 .card .card-body .btn{
    display: inline-block;
    font-size: 1rem;
    padding: .5rem 1rem;
    border: 1px solid #d4d4d4;
}
.service-section-2 .card .card-body .btn img{
    display: inline-block;
    width: 16px;
    height: 16px;
}
.service-section-2 .card .card-body .btn:hover{
    color: var(--clr-black);
    border-color: var(--clr-accent);
    background-color: var(--clr-accent);
}
.service-section-2 .card .card-body .btn:hover img{
    /* filter: brightness(1) invert(100); */
}
.service-section-2 .card .card-body .btn i{
    margin-left: .5rem;
}
.service-section-2 .card:hover .card-body p,.service-section-2 .card:hover .card-body .btn{}
.service-section-2 .section-btn .btn{
    padding: .625rem 1.5rem;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .service-section-2 .section-header .btn img{
        width: 22px;
        height: 22px;
    }
    .service-section-2 .card{
        border-radius: 1.5rem;
        overflow: hidden;
    }
    .service-section-2 .card .img-box{
        height: 300px;
    }
    .service-section-2 .card{
        /* border-radius: 1rem; */
    }
    .service-section-2 .card .img-box img{
        /* border-radius: 1rem; */
    }
    .service-section-2 .card .card-body{
        padding: 1.5rem;
        /* border-radius: 1rem; */
    }
    .service-section-2 .card .card-body .card-title{
        font-size: 1.5rem;
        margin-bottom: .75rem;
    }
    .service-section-2 .card .card-body p{
        margin-bottom: 1.375rem;
    }
   .service-section-2 .card .card-body .btn{
        padding: .5rem 1.5rem;
   }
}
@media (max-width: 991.98px){
    .service-section-2 .card .img-box{
        height: 250px;
    }
}
/*|==================================================================================
    Featured Section
====================================================================================|*/
.featured-section{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    How Section
=====================================================================================|*/
.how-section{
    position: relative;
    background-color: var(--clr-primary);
}
.how-section .section-header .section-title{
    color: var(--clr-white);
    font-weight: 500;
}
.how-section .section-header p{
    color: var(--clr-white);
    font-weight: 400;
}
.how-section .btn{
    font-size: 1rem;
    font-weight: 600;
    padding: .5rem 1.25rem;
}
.how-section .btn img{
    width: 24px;
    margin-left: 8px;
}
.how-section .card{
    padding: 1rem; 
    border: none;
    background-color: var(--clr-white);
    /* background-color: rgba(145, 96, 25, .28); */
    /* border: 1px solid rgba(var(--clr-primary-rgb), .15); */
    border-radius: .5rem;
}
.how-section .card .icon-box{
    margin-bottom: 1.25rem;
}
/* .how-section .card .icon-box svg{
    width: 3.5rem;
    height: 3.5rem;
}
.how-section .card .icon-box svg path{
    fill: #ffffff;
    stroke: #ffffff;
} */
.how-section .card .card-body{
    padding: 0;
    /* text-align: center; */
}
.how-section .card .card-body .title{
    color: var(--clr-black);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: .75rem;
}
.how-section .card .card-body p{
    color: var(--clr-black);
    margin-bottom: 0;
}
.section-btn .btn-white{
    color: var(--clr-black);
}
.section-btn .btn-white:hover{
    color: var(--clr-white);
    border-color: var(--clr-black);
    background-color: var(--clr-black);
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .how-section .section-header p{
        /* font-size: 1.125rem; */
    }
    .how-section .card{
        padding: 1.5rem;
        height: 100%;
        border-radius: 1rem;
    }
    .how-section .card .card-body .title{
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .how-section .btn{
        font-size: 1.125rem;
        padding: .625rem 1.5rem;
    }
}
@media (max-width: 991.98px){
    .how-section .card{
        margin-bottom: 1rem;
    } 
}
/*|==================================================================================
    Why Choose Section
====================================================================================|*/
.why-choose-section{
    position: relative;
    overflow-x: hidden;
}
.why-choose-section .why-choose-img{}
.why-choose-section .why-choose-img img{
    border-radius: .625rem;
}
.why-choose-section .why-content{}
.why-choose-section .why-content p{
    line-height: 1.65;
}
.why-choose-section .why-content ul{
    padding-left: 20px;
}
.why-choose-section .why-content ul li{
    list-style-type: disc;
    margin-bottom: 8px;
}
.why-choose-section .why-content ul li::marker{
    color: var(--clr-12);
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .why-choose-section .why-choose-img img{
        border-radius: 1.25rem;
    }
}
@media (max-width: 991.98px){
    .why-choose-section .why-choose-img img{
        margin-bottom: 1.25rem;
    }
}
/*|==================================================================================
    Featured Section
====================================================================================|*/
.featured-section{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    MV Section
====================================================================================|*/
.bottom-line{
    display: inline-block;
    position: relative;
    padding-bottom: .25rem;
}
.bottom-line::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 3px;
    background-color: var(--clr-primary);
}
ul.list-disc li{
    list-style-type: disc;
}
.mv-section{
    position: relative;
    overflow-x: hidden;
    /* background-color: #f9fafb; */
}
.mv-section .card{
    border: none;
    border-radius: 0;
    background-color: #F0EFE9;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
}
.mv-section .card .card-body{}
.mv-section .card .card-body .subtitle{
    font-weight: 500;
    font-size: 18px;
    color: var(--title-color);
    display: inline-block;
    margin-top: -0.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.mv-section .card .card-body .subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clr-dark-brown);
}
.mv-section .card .card-body .title{
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.mv-section .card .card-body .title i{
    color: var(--clr-primary);
}
.mv-section .card .card-body ul{
    margin: auto;
    padding-left: inherit;
}
.mv-section .card .card-body ul li{}
.mv-section .card .card-body ul li:not(:first-child){
    margin-top: .75rem;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .mv-section .card{
        height: 100%;
    }
    .mv-section .card .card-body{
        padding: 2rem;
    }
    .mv-section .card .card-body .subtitle{
        font-weight: 500;
        font-size: 28px;
    }
    .mv-section .card .card-body .title{
        font-size: 1.75rem;
    }
    .mv-section .card .card-body ul li{
        font-size: 1.125rem;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Expert Section
====================================================================================|*/
.expert-section{
    position: relative;
    overflow-x: hidden;
}
.expert-section .card{
    padding: 1rem;
    border-radius: .5rem;
    margin-bottom: 1.25rem;
}
.expert-section .card .icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: .375rem;
    background-color: var(--clr-accent);
    color: var(--clr-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.expert-section .card .card-body{
    padding: 0;
}
.expert-section .card .card-body .title{
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.expert-section .card .card-body p{
    margin-bottom: 0;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .expert-section .card{
        padding: 1.75rem;
        border-radius: 1rem;
        margin-bottom: 1.5rem;
    }
    .expert-section .card .icon-box{
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .expert-section .card .card-body .title{
        font-size: 1.875rem;
    }
    .expert-section .card .card-body p{
        font-size: 1.125rem;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Brand Section
====================================================================================|*/
.brand-section{
    background-color: #f0f0f0;
}
.brand-section .brand-item{
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}
.brand-section .brand-item img{
    width: 100%;
    height: 120px;
    object-fit: contain;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    CTA Section
====================================================================================|*/
.home-cta-section{
    position: relative;
}
.home-cta-section .inner-box{
    position: relative;
    padding: 1.5rem;
    border-radius: .5rem;
    background-color: var(--clr-primary);
}
.home-cta-section .inner-box::before{
    content: '';
    position: absolute;
    /* top: auto; */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20%;
    border-radius: .5rem;
    margin-bottom: -.625rem;
    background-color: var(--clr-accent);
    z-index: -1;
}
.home-cta-section .cta-content{}
.home-cta-section .cta-content .cta-title{
    color: var(--clr-white);
    font-size: 1.5rem;
    font-weight: 600;
}
.home-cta-section .cta-content p{
    color: var(--clr-white);
}
.home-cta-section .cta-content .cta-btns{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.home-cta-section .cta-content .cta-btns .btn-icon{
    display: flex;
    gap: .625rem;
    align-items: center;
    color: var(--clr-white);
}
.home-cta-section .cta-content .cta-btns .btn-icon .icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    background-color: var(--clr-accent);
    border-radius: 50%;
    transition: background-color.2s ease;
}
.home-cta-section .cta-img-box{
    position: relative;
}
.home-cta-section .cta-img-box img{
    width: 100%;
    height: 250px;
    object-fit: contain;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .home-cta-section .inner-box{
        padding: 2rem;
        border-radius: 1.5rem;
    }
    .home-cta-section .inner-box::before{
        border-radius: 1.5rem;
        margin-bottom: -2rem;
    }
    .home-cta-section .cta-content .cta-title{
        font-size: 3.25rem;
        margin-bottom: 1.25rem;
    }
    .home-cta-section .cta-content p{
        font-size: 1.25rem;
    }
    .home-cta-section .cta-content .cta-btns .btn-icon .icon-box{
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.5rem;
    }
    .home-cta-section .cta-content .cta-btns{
        flex-direction: row;
    }
    .home-cta-section .cta-img-box{
        position: absolute;
        right: 0;
    }
    .home-cta-section .cta-img-box img{
        height: 350px;
    }
}
@media (max-width: 991.98px){
    .home-cta-section{
        padding-bottom: 3rem !important;
    }
}
/*|==================================================================================
    Video Section
====================================================================================|*/
.video-section{}
.video-section .video-box{
    position: relative;
    margin-bottom: 1.25rem;
}
.video-section .video-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}
.video-section .video-box .btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--clr-accent);
    color: var(--clr-white);
    font-size: 1.5rem;
}
.video-section .card{
    border: none;
}
.video-section .card .card-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    background-color: transparent;
    border-bottom: none;
}
.video-section .card .icon-box{
    font-size: 1.25rem;
    line-height: 1;
    color: var(--clr-accent);
}
.video-section .card .card-header .title{
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}
.video-section .card .card-body{
    /* padding: 0; */
    text-align: center;
}
.video-section .card .card-body p{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .video-section .video-box{
        margin-bottom: 3rem;
    }
    .video-section .video-box img{
        height: 500px;
        border-radius: 1rem;
    }
    .video-section .video-box .btn{
        width: 7rem;
        height: 7rem;
        font-size: 3rem;
    }
    .video-section .card .icon-box{
        font-size: 1.75rem;
    }
    .video-section .card .card-header .title{
        font-size: 1.375rem;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Featured Section
====================================================================================|*/
.featured-section{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|====================================================================================
    Footer
=======================================================================================|*/
.footer{}
.footer .main-footer{
    position: relative;
    padding: 2rem 0 0;
}
.footer .main-footer::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0E121D;
    z-index: -1;
}
.footer .footer-title{
    position: relative;
    color: var(--clr-white);
    font-size: 1.125rem;
    margin: -0.11em 0 1.5rem 0;
    padding-bottom: 1.125rem;
}
.footer .footer-title::before,.footer .footer-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75px;
    height: 2px;
    background-color: #ffcd39;
}
.footer .footer-title::after {
    width: 16px;
    border: 2px solid #0E121D;
    height: 10px;
    background-color: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: footerLine 7s linear infinite;
    animation: footerLine 7s linear infinite;
}
.footer-about{}
.footer-about p{
    color: #B7BEC8;
    margin-bottom: 0;
}
.footer-about .footer-logo{
    margin-bottom: 1.5rem;
}
.footer-about .social-links{
    margin-top: 1.5rem;
}
.footer-about .social-links ul{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-about .social-links ul li{}
.footer-about .social-links ul li a{
    color: #ffcd39;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    border-radius: 50%;
    background-color: #37393b;
}
.footer-about .social-links ul li a:hover{
    color: var(--clr-black);
    background-color: #ffcd39;
}
.footer-links{}
.footer-links ul{}
.footer-links ul li{}
.footer-links ul li a{
    position: relative;
    display: block;
    color: #B7BEC8;
    padding: .375rem 0;
    padding-left: 1.25rem;
    transition: all 0.4s ease;
}
.footer-links ul li a::before{
    content: '\f061';
    position: absolute;
    top: 50%;
    left: 0;
    color: #ffcd39;
    transform: translateY(-50%) rotate(-45deg);
    font-family: var(--icon-font);
    font-weight: 900;
    transition: all 0.4s ease;
}
.footer-links ul li a:hover{
    color: #ffcd39;
}
.footer-links ul li a:hover::before{
    transform: translateY(-50%) rotate(0deg);
}
.footer-contact{}
.footer-contact .title{
    color: var(--clr-white);
    font-size: 1.125rem;
}
.footer-contact-wrap{}
.footer-contact-wrap .title{
    display: none;
}
.footer-contact-wrap .footer-contact-item{
    display: flex;
}
.footer-contact-wrap .footer-contact-item .icon-box{
    color: #ffcd39;
    width: 2.5rem;
    height: 2.5rem;
}
.footer-contact-wrap .footer-contact-item p{
    color: #B7BEC8;
}
.footer-contact-wrap .footer-contact-item a{
    color: #B7BEC8;
}
.footer-contact-wrap .footer-contact-item a:hover{
    color: var(--clr-white);
}
.copyright-section{
    padding: 1rem 0;
    background-color: var(--clr-neutral);
}
.copyright-section .copyright-content{
    text-align: center;
}
.copyright-section .copyright-content p{
    color: #B7BEC8;
    margin-bottom: 0;
}
.copyright-section .copyright-content p a{
    color: #ffcd39;
}
.copyright-section .copyright-content p a:hover{
    color: var(--clr-white);
}
@keyframes footerLine{
    0% {
        left: 40px;
    }
    50% {
        left: 0;
    }
    100% {
        left: 40px;
    }
}
/*| Media Query |======================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .footer .main-footer{
        padding: 3rem 0 2rem;
    }
    .footer .footer-title{
        font-size: 1.25rem;
    }
    .copyright-section{
        padding: 1.5rem 0;
    }
}
@media (max-width: 991.98px){
    .footer-widget{
        margin-bottom: 1.5rem;
    }
    .copyright-section{
        text-align: center;
    }
}
@media (max-width: 575.98px){}
/*|==================================================================================
    Banner Section
=====================================================================================|*/
.banner-section{
    position: relative;
    padding: 3rem 0 1.25rem;
}
.banner-section.banner-img{
    height: 280px;
    padding: 0;
}
.service-banner{
    background-image: url(../images/banner-2.jpg);
}
.contact-banner{
    background-image: url(../images/banner-bg.jpg);
}
.banner-img{
    position: relative;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.left-overlay::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(45deg, rgb(214, 109, 11) 0%, rgba(0, 0, 0, 0) 40%);
    /* background-color: #66150f; */
    /* opacity: .5; */
    z-index: 1;
}
.left-overlay-secondary::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgb(251, 146, 60);
    background: linear-gradient(90deg, rgba(251, 146, 60, 1) 0%, rgba(0, 0, 0, 0) 45%);
    /* background-color: #66150f; */
    /* opacity: .5; */
    z-index: 1;
}
.banner-section .container{
    height: 100%;
}
.banner-section .container .row{
    height: 100%;
    display: flex;
    align-items: center;
}
.banner-section .banner-content{
    position: relative;
    z-index: 3;
}
.banner-section .banner-content .banner-title{
    color: var(--clr-black);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.banner-section .banner-content .breadcrumb{
    margin-bottom: 0;
    padding: 0;
    align-items: center;
}
.banner-section .banner-content .breadcrumb .breadcrumb-item{
    font-size: 1rem;
    font-weight: 400;
}
.banner-section .banner-content .breadcrumb .breadcrumb-item a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: color 0.4s linear;
}
.banner-section .banner-content .breadcrumb .breadcrumb-item,
.banner-section .banner-content .breadcrumb .breadcrumb-item a{
    color: var(--clr-black);
}
.banner-section .banner-content .breadcrumb .breadcrumb-item a::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--clr-white);
    opacity: 0;
    visibility: hidden;
    transition: width 0.4s linear;
}
.banner-section .banner-content .breadcrumb .breadcrumb-item a:hover::before{
    width: 100%;
    visibility: visible;
    opacity: 1;
}
.banner-section .banner-content .breadcrumb .breadcrumb-item a:hover,
.banner-section .banner-content .breadcrumb .breadcrumb-item.active{
    color: var(--clr-white);
}
.banner-section .banner-content .breadcrumb .breadcrumb-item+.breadcrumb-item{
    padding-left: .625rem;
    line-height: 1rem;
}
.banner-section .banner-content .breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    content: "\f101";
    color: var(--clr-white);
    font-size: 1rem;
    font-family: var(--icon-font);
    font-weight: 900;
    padding-right: 1rem;
}
.banner-section.banner-img .banner-content .banner-title{
    color: var(--clr-white);
}
.banner-section.banner-img .banner-content .breadcrumb .breadcrumb-item,
.banner-section.banner-img .banner-content .breadcrumb .breadcrumb-item a{
    color: var(--clr-white);
}
.banner-section.banner-img .banner-content .breadcrumb .breadcrumb-item a:hover,
.banner-section.banner-img .banner-content .breadcrumb .breadcrumb-item.active{
    color: var(--clr-white);
}
.banner-section.banner-img .banner-content .breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    color: var(--clr-white);
}
.banner-section.banner-img.overlay::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){
    .banner-section{
        padding: 4rem 0 2rem;
    }
    .banner-section.banner-img{
        height: 350px;
    }
    .banner-section .banner-content .banner-title{
        margin-bottom: 2rem;
    }
}
@media (min-width: 992px){
    .banner-section{
        padding: 6rem 0 4rem;
    }
    .banner-section.banner-img{
        height: 380px;
    }
    .banner-section .banner-content .banner-title{
        font-size: 3.5rem;
    }
    .banner-section .banner-content .breadcrumb .breadcrumb-item{
        font-size: 1.25rem;
    }
    .banner-section .banner-content .breadcrumb .breadcrumb-item+.breadcrumb-item{
        padding-left: 1rem;
        line-height: 1.25rem;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Section
=====================================================================================|*/

/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    Section
=====================================================================================|*/

/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    Section
=====================================================================================|*/

/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    Zigzag Section
=====================================================================================|*/
.zigzag-section{
    position: relative;
    overflow-x: hidden;
}
.zigzag-section .zigzag-img{
    height: 280px;
}
.zigzag-section .zigzag-img img{
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}
.zigzag-section .zigzag-content{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){
    .zigzag-section .zigzag-img{
        height: 350px;
    }
}
@media (min-width: 992px){
    .zigzag-section .zigzag-img{
        height: 500px;
    }
}
@media (max-width: 991.98px){
    .zigzag-section .zigzag-img{
        margin-bottom: 1rem;
    }
}
/*|==================================================================================
    Management Section
=====================================================================================|*/
.management-section{
    position: relative;
    overflow-x: hidden;
}
.management-section .management-img{
    position: relative;
    height: 300px;
}
.management-section .management-img img{
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: top;
}
.management-section .management-content{}
.management-section .management-content .title{
    color: var(--clr-primary);
    font-size: 1.5rem;
    margin-bottom: 0;
}
.management-section .management-content .subtitle{
    font-size: 1rem;
    margin-bottom: 1rem;
}
.management-section .management-content p{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .management-section .management-img{
        height: 350px;
    }
    .management-section .management-img img{
        /* border-radius: 1rem; */
    }
    .management-section .management-img::after{
        content: '';
        position: absolute;
        top: 10px;
        left: 10px;
        width: 100%;
        height: 100%;
        /* border: 3px solid var(--clr-primary); */
        background-color: var(--clr-accent);
        /* border-radius: 1rem; */
        z-index: -1;
    }
    .management-section .management-content .title{
        font-size: 2.5rem;
    }
    .management-section .management-content p{
        font-size: 1.125rem;
    }
}
@media (max-width: 991.98px){
    .management-section .management-img{
        margin-bottom: 1.25rem;
    }
    .management-section .management-content .title{
        margin-bottom: .5rem;
    }
}
/*|====================================================================================
    Contact Section
=======================================================================================|*/
.contact-section{
    position: relative;
    overflow-x: hidden;
    /* background-color: #f7f9fa; */
}
.contact-section .map-img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/dot-map.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
}
.contact-section .contact-info{
    position: relative;
    /* background-color: var(--clr-white); */
    z-index: 3;
}
.contact-section .contact-info .contact-info-item{
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
    transition: all 0.5s ease;
}
.contact-section .contact-info .contact-info-item .icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: var(--clr-accent);
    font-size: 1.25rem;
    border-radius: 50%;
    background-color: rgba(var(--clr-primary-rgb), .12);
    transition: all 0.4s ease-in;
}
.contact-section .contact-info .contact-info-item:hover .icon-box{
    color: var(--clr-accent);
    background-color: var(--clr-primary);
}
/* .contact-info .contact-info-item:hover .icon-box{
    transform: rotate(45deg);
} */
.contact-section .contact-info .contact-info-item .icon-box i{}
.contact-section .contact-info .contact-info-item .contact-info-content{
    flex: 1;
}
.contact-section .contact-info .contact-info-item .title{
    /* font-family: var(--title-font-family); */
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .5rem;
}
.contact-section .contact-info :is(p, a){
    font-size: 1rem;
    font-weight: 400;
}
.contact-section .contact-info :is(.title, p, a){
    color: var(--clr-black);
}
.contact-section .contact-info .contact-info-item a:hover{
    color: var(--clr-accent);
}
/*| Contact Form ====================================================================|*/
.contact-section .contact-form {
    position: relative;
    padding: 1rem;
    background-color: var(--clr-accent);
    /* background-color: #c9bdb0; */
    z-index: 3;
}
.contact-section .contact-form .form-group{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.contact-section .contact-form .form-control{
    font-size: 1rem;
    padding: .5rem 1rem;
    border-radius: .25rem;
    border: none;
    border-color: rgba(255, 255, 255, 0);
    background-color: var(--clr-white);
}
.contact-section .contact-form .form-control:focus{
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 .125rem rgba(182, 16, 16, 0.25);
}
.contact-section .contact-form .form-control::placeholder{
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
}
.contact-section .contact-form textarea.form-control{
    min-height: 100px;
}
.contact-section .contact-form .eyebrow-title{
    position: relative;
}
.contact-section .contact-form .eyebrow-title::after{
    content: "";
    position: absolute;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    margin-left: 8px;
    width: 70px;
    height: 1px;
    background-color: var(--clr-primary);
    transition: all 0.5s ease;
}
.contact-section .contact-form .btn{
    font-weight: 600;
    padding: .5rem 1rem;
}
.contact-section .contact-form .btn{}
/*| Media Query |======================================================================|*/
@media (min-width: 768px){
    .contact-section .contact-info .contact-info-item .icon-box{
        font-size: 1.75rem;
        width: 50px;
        height: 50px;
    }
}
@media (min-width: 992px){
    .contact-section .contact-info{}
    .contact-section .contact-info .contact-info-item .title{
        font-size: 1.25rem;
    }
    .contact-section .contact-info :is(p, a){
        font-size: 1.25rem;
    }
    .contact-section .map-img{
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
    }
    .contact-section::before{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background-color: var(--clr-primary);
        transition: all 0.5s ease;
    }
    /* .contact-section::before{
        left: auto;
        right: 0;
        width: 50%;
    }  */
    .contact-section .contact-info .contact-info-item{
        margin-bottom: 1.5rem;
    }
    .contact-section .contact-info .contact-info-item .icon-box{
        font-size: 2rem;
        width: 80px;
        height: 80px;
    }
    .contact-info .contact-info-item .title{
        font-size: 1.25rem;
    }
    /*| Contact Form ==================================|*/
    .contact-section .contact-form {
        padding: 2.5rem;
    }
    .contact-section .contact-form .form-group{
        margin-bottom: 1.75rem;
    }
    .contact-section .contact-form .form-control{
        padding: 1rem;
    }
    .contact-section .contact-form textarea.form-control{
        min-height: 170px;
    }
    .contact-section .contact-form .btn{
        padding: .875rem 2rem;
        font-size: 1rem;
    }
}
@media (max-width: 575.98px){
    .contact-section{
        padding-bottom:  0 !important;
    }
    .contact-section .contact-form{
        background-color: var(--clr-neutral);
    } 
    .contact-section .contact-info .contact-info-item .title{
        font-size: 1rem;
    }
    .contact-section .contact-info :is(p, a){
        font-size: .875rem;
    }
    .contact-section .contact-form{
        padding: 2rem 1rem;
        margin-left: -16px;
        margin-right: -16px;
        outline: none;
    }
    .contact-section .contact-form .form-group{
        margin-bottom: 1.5rem;
    }
    .contact-section .contact-form .btn{
        padding: 10px 1rem;
        width: 100%;
    }
}
/*|==================================================================================
    KeyFrames
=====================================================================================|*/
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}
@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}
@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}
@-webkit-keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}
@keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}