@import url("../css/font-face.css");
:root{
    --clr-primary: #E28153;
	--clr-accent: #753CB1;
    --clr-neutral: #262626;
    --clr-black: #000000;
    --clr-white: #FFFFFF;
    --icon-font: "Font Awesome 6 Free";
	/* --body-font-family: 'Open Sans', sans-serif;
	--title-font-family: 'Poppins', sans-serif; */
    --body-font-family: 'Louis George Cafe';
	--title-font-family: 'VAG Rounded Std';
}
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;
}
/* .section-header p{
    font-weight: 700;
} */
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .section-header p{
        font-size: 1.5rem;
    }
    .line-lg-break{
        display: block;
    }
}
@media (min-width: 1400px){
    section p{
        font-size: 1.25rem;
    }
}
@media (max-width: 575.98px){
    .section-header h2{
        font-size: 2.5rem !important;
    }
}
/*|==================================================================================
    Topbar Section
====================================================================================|*/
.scroll-top {
    position: fixed;
    bottom: 105%;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: .5rem;
    cursor: pointer;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s linear;
}
.scroll-top.scrolltopactive {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.scroll-top:hover .scroll-top-inner {
    color: #fff
}
.scroll-top:after {
    position: absolute;
    z-index: -1;
    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%);
}
.scroll-top-inner {
    transition: all .3s linear;
    color: #fff;
    background: var(--clr-accent);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
}
.logo-wrapper {
    /* position: fixed;
    top: 10px;
    left: 0; 
    width: 180px;*/
    z-index: 1000;
}
.logo-wrapper #logo {
      width: 100%;
      height: auto;
      /* filter: invert(1);  */
      transition: filter 0.3s ease;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
.topNavbar-Overlay{
    position:fixed;
    width:100vw;
    height:100vh;
    mix-blend-mode:lighten;
    z-index:875;
    background-color:#fff;
    display:flex;
    transition:0.5s all;
    padding: .5rem 1.25rem;
    align-content:center;
    flex-direction:column;
}
.topNavbar-Container.active .topNavbar-Overlay{
    height: 60px;
    align-content:flex-start;
    mix-blend-mode:normal;
}
.topNavbar-OverlayImage{
    width:100%;
    height:100%;
    transition:0.5s all;
    pointer-events:none;
    cursor:none;
    transform:scale(1.0);
}
.topNavbar-Container.active .topNavbar-OverlayImage{
    width: 146px;
    /* width: 204px; */
    pointer-events:all;
    cursor:pointer;
}
.topNavbar-Container.active .topNavbar-OverlayImage:hover{
    transform: scale(1.1);
}
.topNavbar-Container{
    width:100%;
    height:100vh;
}
.topNavbar-Background{
    position:absolute;
    width:100%;
    height:100vh;
    z-index:700;
    overflow:hidden;
    background-size:cover;
}
.topNavbar-TopBackground{
    position:absolute;
    background-color:rgba(0,0,0,0.0);
    width: 100vw;
    height: 60px;
    transition:0.5s all;
}
.topNavbar-Container.active .topNavbar-TopBackground{
    background-color:rgba(0,0,0,1.0);
}
.topNavbar-Container.active{
    height: 60px;
}
.topNavbar-VideoLayer{
    width:100%;
    height:100%;
    position:absolute;
    background-color:black;
}
.topNavbar-VideoLayer video{
    width:100%;
    height:100%;
    object-fit:cover;
}
.topNavbar-Container.active .topNavbar-Background{
    display: none;
}
.noscroll{overflow:hidden;}
.overflowX{overflow-x:hidden;}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){
    /* .topNavbar-Container.active{
        height: 80px;
    }
    .topNavbar-Overlay{
        padding-top: 9px;
        padding-left: 1.25rem;
    }
    .topNavbar-Container.active .topNavbar-Overlay{
        height: 80px;
    }
    .topNavbar-Container.active .topNavbar-OverlayImage{
        height: 65px;
        width: 180px;
    } */
}
@media (min-width: 992px){
    .topNavbar-Container.active{
        height: 74px;
    }
    .topNavbar-Container.active .topNavbar-Overlay{
        height: 74px;
    }
    .topNavbar-Overlay{
        padding: 10px 4rem;
    }
    .topNavbar-TopBackground{
        height: 74px;
    }
}
@media (min-width: 1600px){
    .topNavbar-Overlay{
        padding: .5rem 4rem;
    }
    .topNavbar-Container.active{
        height: 80px;
    }
    .topNavbar-Container.active .topNavbar-Overlay{
        height: 80px;
    }
    .topNavbar-TopBackground{
        height: 80px;
    }
}
@media (max-width: 991.98px){
    .topNavbar-Container.active .topNavbar-Overlay{
        padding-left: 0;
    }
}
@media (max-width: 767.98px){}
/*|==================================================================================
    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{
    position: relative;
    padding: 0;
    z-index: 1050;
    margin-left: auto;
}
.header .navbar .navbar-brand{
    padding: 0;
    margin-right: 0;
}
.header .navbar .navbar-brand img{
    width: 100%;
    /* height: 50px; */
}
.header .navbar .navbar-end{}
.header .navbar .navbar-end .btn{
    font-size: .875rem;
    font-weight: 600;
    padding: .375rem .75rem;
    border-radius: .5rem;
}
.header .navbar-nav .nav-item .nav-link{
    position: relative;
    overflow: hidden;
    color: var(--clr-black);
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 0;
    border-bottom: 4px solid transparent;
}
.header .navbar-nav .nav-item .nav-link.active,.header .navbar-nav .nav-item .nav-link:hover{
    color: var(--clr-black);
    border-bottom: 4px solid #4850B8;
}
.header .navbar-nav .nav-item .nav-link.active{
    font-weight: 700;
}
.header .navbar .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-item .dropdown-menu{
    margin: 0;
    padding: 0;
    border-radius: 0 0 12px 12px;
    border-top: 2px solid var(--clr-accent);
}
.header .navbar .nav-item .dropdown-menu .dropdown-item{
    padding: .5rem 1rem;
}
.header .navbar .nav-item .dropdown-menu .dropdown-item:focus,
.header .navbar .nav-item .dropdown-menu .dropdown-item:active{
    color: var(--clr-accent);
    background-color: transparent;
}
.header .navbar .nav-item .dropdown-menu li .dropdown-item:hover{
    color: var(--clr-white);
    background-color: var(--clr-accent);
}
.header .navbar .nav-item .dropdown-menu li:last-child .dropdown-item:hover{
    border-radius: 0 0 12px 12px;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .topNavbar-Container .navbar{
        position: fixed;
        top: 0;
        left: 50%;
        width: 100%;
        height: 74px;
        transform: translateX(-50%);
        opacity: 0;
        z-index: 1050;
        transition: all .5s ease;
    }
    .topNavbar-Container.active .navbar{
        opacity: 1;
    }
    .inner-header .navbar-nav{
        padding-right: 146px;
    }
    .header .navbar .navbar-end .btn{
        font-size: 1rem;
        padding: .625rem 1.5rem;
        border-radius: 4rem;
    }
    .header .navbar-nav .dropdown:hover > .dropdown-menu{
		display: block;
	}
	.header .navbar-nav .dropdown >.dropdown-toggle:active{
		pointer-events: none;
	}
    .header .navbar-nav .nav-item:not(:first-child) .nav-link{
        margin-left: 1.5rem;
    }
    .header .navbar-nav .nav-item .nav-link{
        font-size: 1.25rem;
        padding: 20px 0;
    }
    .header .navbar .nav-item .dropdown-menu .dropdown-item{
        padding: .625rem 1.25rem;
    }
}
@media (max-width: 991.98px){
    .header .navbar .navbar-toggler{
        position: absolute;
        top: 0;
        right: 0;
        padding-top: 24px;
        padding-right: 20px;
        padding-bottom: 24px;
    }
    .header .navbar .navbar-brand{
        margin: .5rem 0;
    }
    .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-item .dropdown-toggle{
        position: relative;
    }
    .header .navbar .nav-item .dropdown-toggle::after{
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}
/*|==================================================================================
    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;
}
/*|==================================================================================
    Page Loader Section
====================================================================================|*/
.page-loader-section{
    position: relative;
    height: 50vh;
    overflow: hidden;
     transition: all 1s ease; /* smooth animation for slide & fade */
}
.page-loader-section.hidden {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
    margin: 0;
    padding: 0;
}
#preloadVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-loader-section .video-container{}
.page-loader-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url(../images/homepage-logo.svg);
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
    z-index: 2;
}
/* .loader-logo h1{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    font-size: 380px;
    font-weight: 700;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: screen;
    margin-bottom: 0;
} */
#circularProgressBar {
    position: absolute;
    top: 20px; 
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* background: radial-gradient(closest-side, white 80%, transparent 82%), 
                conic-gradient(#4CAF50 var(--progress, 0%), #ccc var(--progress, 0%)); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s, box-shadow 0.1s; */
}
#circularProgressBar:hover {
    transform: scale(1.05);
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); */
}
#toggleIcon {
    color: #B6B9BB; 
    font-size: 1.5em;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .page-loader-section{
        height: 90vh;
    }
    /* .loader-logo h1{
        font-size: 380px;
    } */
}
@media (max-width: 991.98px){
    .page-loader-section .video-container{
        height: 100%;
    }
}
@media (max-width: 575.98px){
    .page-loader-section{
        height: 28vh;
    }
    #circularProgressBar {
        position: absolute;
        top: 20px; 
        right: 20px;
        width: 20px;
        height: 20px;
    }
}
/*|==================================================================================
    Hero Section
====================================================================================|*/
.hero-section{
    position: relative;
    height: 60vh;
    overflow: hidden;
    /* background: url(../images/hero-bg.webp) no-repeat center center/cover; */
}
#autoplayVideo{
    width: 100%;
    height: 100%;
}
.hero-video::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(23,62,48); */
    background: linear-gradient(0deg, rgb(46, 23, 62) 0%, rgba(23, 27, 62, 0.451) 45%, rgba(255,255,255,0) 100%);
    z-index: 2;
}
.video-caption-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 90%;
    margin: 0 auto;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.8); */
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.video-caption-overlay h2{
    font-family: var(--title-font-family);
}
.hero-section .text-wrap{
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section .text-wrap h1{
    color: var(--clr-white);
    font-size: 3rem;
    font-weight: 700;
}
.hero-section .text-wrap h1 span{
    position: relative;
    color: var(--clr-white);
}
.hero-section .text-wrap h1 span::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-45%);
    width: 2px;
    height: 70%;
    background-color: var(--clr-white);
    animation: blink 0.6s infinite;
}
.hero-section .text-wrap h1 span.stop-blinking::before{
    animation: none;
}
@keyframes blink{
    50%{
        opacity: 0;
    }
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .hero-section{
        height: 100vh;
    }
    .video-caption-overlay{
        width: 60%;
    }
    .hero-section .text-wrap{
        height: 100vh;
    }
    .hero-section .text-wrap h1{
        font-size: 4rem;
    }
}
@media (max-width: 991.98px){
    .hero-section{
        height: 33vh;
    }
}
@media (max-width: 575.98px){
    .hero-section{
        height: 28vh;
    }
    .hero-section .text-wrap{
        height: 28vh;
    }
    .hero-section .text-wrap h1{
        font-size: 1.875rem;
    }
}
/*|==================================================================================
    Home Content Section
====================================================================================|*/
.home-content-section{}
.home-content h2 .line-lg-break{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){
    .home-content h2 .line-lg-break{
        display: block;
    }
}
@media (max-width: 575.98px){
    .home-content h2 .line-lg-break{
        display: inline;
    }
}
/*|==================================================================================
    Home Gallery Section
====================================================================================|*/
.home-gallery-section{
    position: relative;
    padding: 4rem 0;
    background-color: var(--clr-black);
}
.home-gallery-section .home-gallery-content{
    position: relative;
    display: flex;
    flex-direction: column;
}
.home-gallery-section .home-gallery-content .left{
    text-align: center;
}
.home-gallery-section .home-gallery-content .left span{
    color: var(--clr-white);
    display: block;
    font-size: 1rem;
    margin-bottom: .375rem;
}
.home-gallery-section .home-gallery-content .left span:last-of-type{
    font-weight: 700;
}
.home-gallery-section .home-gallery-content .right{
    text-align: center;
}
.home-gallery-section .home-gallery-content .right :is(h3,h5){
    color: var(--clr-white);
}
.gallery-container{
    columns: 1;
    column-gap: 1rem;
}
.gallery-container .gallery-item{
    position: relative;
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: .5rem;
}
.gallery-container .gallery-item a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.gallery-container .gallery-item .gallery-img{
    width: 100%;
    height: 100%;
    display: block;
    transition: all .3s ease;
}
.gallery-container .gallery-item .gallery-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-container .gallery-item .gallery-img:hover{
    transform: scale(1.1);
}
.gallery-container .gallery-item .gallery-caption{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.gallery-container .gallery-item .gallery-caption .text{
    color: var(--clr-white);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
}
.gallery-container .gallery-item:hover .gallery-caption{
    opacity: 1;
}
/* .home-gallery-section .gallery-item:last-child img{
    height: 540px;
} */
.section-btn{}
.section-btn .text-link{
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--clr-white);
    transition: all .3s ease;
}
.section-btn .text-link a{
    color: #10A4F2;
    text-decoration: underline;
}
.section-btn .text-link a:hover{
    color: var(--clr-accent);
}
.single-project-section .section-header p{
    font-weight: 400;
}
.single-project-section .gallery-container{
    /* display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); */
    columns: 1;
    column-gap: 1rem;
} 
.single-project-section .gallery-container .gallery-item .gallery-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: top; */
}
.single-project-section .gallery-container .gallery-item.full-span{
    -webkit-column-span: all; 
    column-span: all;      
    width:100%;
    /* height: 380px; */
    /* grid-column: span 2 / span 2; */
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){
    .gallery-container{
        columns: 2;
        column-gap: 1rem;
    }
}
@media (min-width: 992px){
    .home-gallery-section .home-gallery-content{
        flex-direction: row;
        gap: 6rem;
        padding-bottom: 120px;
    }
    .home-gallery-section .home-gallery-content .left{
        position: relative;
        text-align: end;
        width: 50%;
    }
    .home-gallery-section .home-gallery-content .left span{
        font-size: 1.2rem;
    }
    .home-gallery-section .home-gallery-content .right{
        position: relative;
        text-align: left;
        width: 50%;
    }
    .home-gallery-section .home-gallery-content .left::before{
        content: '';
        position: absolute;
        top: 0;
        right: -3rem;
        width: 2px;
        height: 100%;
        background-color: #dee2de;
    }
    .gallery-container{
        columns: 2;
        column-gap: 1rem;
    }
    .gallery-container .gallery-item{
        border-radius: 1.5rem;
    }
    .gallery-container .gallery-item .gallery-caption .text{
        font-size: 1.5rem;
    }
    .section-btn .text-link{
        font-size: 3rem;
    }
    .single-project-section .gallery-container{
        columns: 2;
    }
    .single-project-section .section-header p{
        font-size: 1.25rem;
    }
    /* .single-project-section .gallery-container .gallery-item:nth-child(1){
        height: 350px;
    }
    .single-project-section .gallery-container .gallery-item:nth-child(3){
        height: 300px;
    }
    .single-project-section .gallery-container .gallery-item:nth-child(2){
        height: 800px;
    }
    .single-project-section .gallery-container .gallery-item:nth-child(4){
        height: 850px;
    }
    .single-project-section .gallery-container .gallery-item:nth-child(5){
        height: 450px;
    } */
    /* .single-project-section .gallery-container{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .single-project-section .gallery-container .gallery-item:last-child{
        height: 380px;
        grid-column: span 2 / span 2;
    } */
}
@media (min-width: 1600px){
    .home-gallery-section .home-gallery-content .left span{
        font-size: 1.5rem;
    }
}
@media (max-width: 767.98px){
    .home-gallery-section .home-gallery-content .left span{
        font-size: 1.125rem;
    }
}
/*|==================================================================================
    Testimonial Section
====================================================================================|*/
.testimonial-section{}
.testimonial_Swiper{}
.testimonial_Swiper .testimonial-item{
    padding: 1.5rem;
}
.testimonial_Swiper .testimonial-item p{}
.testimonial_Swiper .testimonial-item .img-box{
    margin-top: 1.5rem;
}
.testimonial_Swiper .testimonial-item .img-box img{
    /* height: 50px; */
    width: 150px;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    border: 0.5px solid #B8B1B1;
    /* box-shadow: 12px 12px 25px 0px #75747440; */
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}
.swiper-button-next::after{
    font: var(--fa-font-solid);
    content: "\f105" !important;
    font-weight: 900;
    font-size: 1.5rem !important;
}
.swiper-button-prev::after{
    font: var(--fa-font-solid);
    content: "\f104" !important;
    font-weight: 900;
    font-size: 1.5rem !important;
    /* transform: rotate(180deg); */
}
.swiper-button-next:hover,.swiper-button-prev:hover{
    color: var(--clr-white);
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
}
.testimonial_Swiper .swiper-button-next,.testimonial_Swiper  .swiper-button-prev{
    border: 0.5px solid #B8B1B1;
    box-shadow: 12px 12px 25px 0px #75747440;
} 
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .testimonial_Swiper{
        width: 92%;
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }
    .testimonial_Swiper .testimonial-item{
        padding: 3rem;
    }
    .testimonial_Swiper .testimonial-item p{
        font-size: 1.125rem;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 3rem;
        height: 3rem;
    }
    .testimonial_Swiper .swiper-button-next{
        right: 25px;
        left: auto;
    }
    .testimonial_Swiper .swiper-button-prev{
        left: 25px;
        right: auto;
    }
}
@media (max-width: 991.98px){
    .testimonial_Swiper{
        padding: 1rem;
    }
    .testimonial_Swiper .testimonial-item{
        padding: 1rem;
        text-align: center;
        border-radius: 1rem;
        margin-bottom: 20px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
    .testimonial_Swiper .swiper-button-next,.testimonial_Swiper .swiper-button-prev{
        display: none;
    }
}
/*|==================================================================================
    Branding Section
====================================================================================|*/
.branding-section{
    position: relative;
    /* width: 100%;
    height: 100%;
    background-image: url(../images/branding.webp);
    background-position: bottom center;
    background-size: 100%;
    background-repeat: no-repeat; */
}

/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .branding-section{
        /* padding: 0 0 80px; */
        width: 100%;
        height: 100%;
        background-image: url(../images/BBA-image-box.webp);
        background-position: bottom center;
        background-size: 100%;
        background-repeat: no-repeat;
    }
    .branding-section{
        height: 680px;
    }
    .branding-section .container{
        padding-left: 80px;
        padding-right: 80px;
        padding-bottom: 150px;
    }
}
@media (min-width: 1200px){
    .branding-section{
        height: 850px;
    }
}
@media (min-width: 1300px){
    .branding-section{
        height: 900px;
    }
}
@media (min-width: 1400px){
    .branding-section{
        height: 960px;
    }
}
@media (min-width: 1600px){
    .branding-section{
        height: 1120px;
    }
}
@media (min-width: 1900px){
    .branding-section{
        height: 1280px;
    }
}
@media (min-width: 2500px){
    .branding-section{
        height: 1700px;
    }
}
@media (max-width: 991.98px){
    .branding-section{
        padding: 20px 0;
    }
    .branding-section .row{
        display: none;
    }
}
/*|==================================================================================
    Home Brnad Section
====================================================================================|*/
.brand-container{
    position: relative;
}
.brand-inner {
    /* padding-block: 1rem; */
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.brand[data-animated="true"] {
    overflow: hidden;
    /* -webkit-mask: linear-gradient(90deg, transparent,white 20%,white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); */
}
.brand[data-animated="true"] .brand-inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
.brand[data-direction="right"] {
    --_animation-direction: reverse;
}
.brand[data-direction="left"] {
    --_animation-direction: forwards;
}
.brand[data-speed="fast"] {
    --_animation-duration: 20s;
}
.brand[data-speed="medium"] {
    --_animation-duration: 40s;
}
.brand[data-speed="slow"] {
    --_animation-duration: 60s;
}
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}
.brand-container .box-item{
    display: flex;
    justify-content: center;
    padding: 12px;
    /* border: 1px solid #ddd; */
    margin-top: -1px;
    margin-right: -1px;
    background-color: transparent;
    border-radius: 8px;
}
.brand-container .box-item img{
    width: 180px;
    height: 60px;
    object-fit: contain;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .brand-marqee{
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Home Team Section
====================================================================================|*/
.home-team-section{}
.home-team-section .section-header p{
    font-weight: 700;
}
/* .home-team-section .home-team-list{
    columns: 2;
    column-gap: 1rem;
}
.home-team-section .home-team-list .team-list-item{
    margin-bottom: 1rem;
}
.home-team-section .home-team-list .team-list-item .img-box{}
.home-team-section .home-team-list .team-list-item .img-box img{}
.home-team-section .home-team-list .team-list-item .team-caption{
    position: absolute;
    display: none;
} */
.home-team-section .grid {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-auto-rows: 90px;
    gap: 6px;
}
.home-team-section .grid .cell {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.home-team-section .grid .cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}
.home-team-section .grid .cell.color-1 { background: #E2A03B; }
.home-team-section .grid .cell.color-2 { background: #6EACAA; }
.home-team-section .grid .cell.color-3 { background: #515151; }
.home-team-section .grid .cell.color-4 { background: #3D4174; }
.home-team-section .grid .cell.color-5 { background: #9F4856; }
.home-team-section .grid .cell.color-6 { background: #4C8FB2; }
.home-team-section .mobile-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 110px;
    gap: 6px;
}
.home-team-section .mobile-grid .cell {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.home-team-section .mobile-grid .cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}
.mobile-grid .color-1 { background: #E2A03B; }
.mobile-grid .color-2 { background: #6EACAA; }
.mobile-grid .color-3 { background: #515151; }
.mobile-grid .color-4 { background: #3D4174; }
.mobile-grid .color-5 { background: #9F4856; }
.mobile-grid .color-6 { background: #4C8FB2; }
.mobile-grid .cell.big { grid-column: span 2; grid-row: span 2; }
.mobile-grid .cell.medium { grid-column: span 2; grid-row: span 1; }
.mobile-grid .cell.small { grid-column: span 1; grid-row: span 1; }
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    /* .home-team-section .home-team-list{
        columns: 12;
    } */
}
@media (min-width: 1200px){
    .home-team-section .grid{
        grid-auto-rows: 110px;
    }
}
@media (min-width: 1600px){
    .home-team-section .grid{
        grid-auto-rows: 150px;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Home CTA Section
====================================================================================|*/
.home-cta-section{}
.home-cta-section .section-header p{
    font-weight: 700;
}
.home-cta-section .cta-content{}
.home-cta-section .cta-content form{}
.home-cta-section .cta-content form .form-control{
    font-size: 1rem;
    text-transform: uppercase;
    padding: .75rem 1rem;
    padding-left: 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #dee2de;
    box-shadow: none;
}
.home-cta-section .cta-content form .form-control:active{
    width: 0;
    border-bottom: 1px solid #4850B8;
}
.home-cta-section .cta-content form .form-control:focus{
    width: 100%;
    border-bottom: 1px solid #4850B8;
    transition: width 0.4s ease;
}
.home-cta-section .cta-content form .form-check-label{
    font-size: 1rem;
}
.home-cta-section .cta-content form .btn{
    font-size: 1rem;
    font-weight: 700;
}
.home-cta-section .cta-content form .btn-ol{
    color: #4850B8;
    border: 1px solid #4850B8;
    transition: all 0.3s ease-in-out;
}
.home-cta-section .cta-content form .btn-ol:hover{
    color: var(--clr-white);
    background-color: #4850B8;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){
    .home-cta-section .cta-content form .form-check-input{
        float: none;
        margin-right: .5rem;
        margin-top: .5rem;
    }
    .home-cta-section .cta-content form .btn{
        width: 220px;
        font-size: 1rem;
    }
    .home-cta-section  .form-check .form-check-label a{
         font-size: 1.25rem;
    }
    .home-cta-section  .form-check .form-check-label a:hover{
         color: #1C51B9;
         font-size: 1.25rem;
    }
}
@media (min-width: 992px){}
@media (max-width: 767.98px){
    .home-cta-section .cta-content form .form-check-label{
        font-size: 1.25rem;
    }
    
    .home-cta-section .cta-content form .form-check{
        /* padding-left: 0; 
        padding-left: 1.125rem;*/
    } 
    .home-cta-section .cta-content form .form-check-input{
        /* margin-left: -1.125rem; */
    }
    .home-cta-section .cta-content form .btn{
        width: 100%;
        padding: 0;
        height: 48px;
    }
}
/*|==================================================================================
    Footer
=====================================================================================|*/
.footer{
    position: relative;
    background-color: var(--clr-black);
}
.footer-widget{
    margin-bottom: 1.25rem;
}
.footer-widget .footer-title{
    font-size: 1.125rem;
    margin-bottom: .75rem;
}
.footer-links{}
.footer-links ul li a{
    display: block;
    color: var(--clr-white);
    /* font-family: var(--title-font-family); */
    font-size: 1.125rem;
    font-weight: 400;
    padding: .375rem 0;
}
.footer-links ul li:first-child a{
    padding-top: 0;
}
.footer-links ul li a:hover{
    color: var(--clr-primary);
}
.footer-contact{}
.footer-contact .footer-contact-item{
    margin-bottom: 1rem;
}
.footer-contact .footer-contact-item .title{
    color: var(--clr-white);
    font-family: var(--body-font-family);
    font-size: 1.125rem;
    font-weight: 700;
}
.footer-contact .footer-contact-item span,.footer-contact .footer-contact-item p{
    display: block;
    color: var(--clr-white);
    font-size: 1.125rem;
    font-weight: 400;
}
.footer-social{}
.footer-social .title{
    color: var(--clr-white);
    font-family: var(--body-font-family);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .75rem;
}
.footer-social ul{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-social ul li{}
.footer-social ul li a{
    color: var(--clr-white);
    font-size: 1.25rem;
}
.copyright{
    position: relative;
    padding: 1.25rem 0 0;
    width: 100%;
    background-color: var(--clr-black);
}
/* .copyright .img-box{
    width: 100%;
    height: 100px;
    overflow: hidden;
} */
.copyright img{
    width: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7427%) hue-rotate(23deg) brightness(118%) contrast(118%);
}
/*| Media Query ====================================================================|*/
@media (min-width: 992px){
    .footer-widget .footer-title{
        font-size: 1.25rem;
    }
    /* .copyright .img-box{
        width: 100%;
        height: 365px;
    } */
    .footer-links ul li a{
        font-size: 1.375rem;
    }
    .footer-social .title,.footer-contact .footer-contact-item .title{
        font-size: 1.375rem;
    }
    .footer-contact .footer-contact-item span,.footer-contact .footer-contact-item p{
        font-size: 1.375rem;
    }
    .footer-social ul li a{
        font-size: 1.625rem;
    }
}

@media (min-width: 1600px){
    /* .copyright .img-box{
        width: 100%;
        height: 515px;
    } */
    .footer-links ul li a{
        font-size: 1.75rem;
    }
    .footer-social .title,.footer-contact .footer-contact-item .title{
        font-size: 1.75rem;
    }
    .footer-contact .footer-contact-item span,.footer-contact .footer-contact-item p{
        font-size: 1.75rem;
    }
    .footer-social ul li a{
        font-size: 2.75rem;
    }
}
@media (max-width: 991.98px){
    .copyright p{
        text-align: center;
    }
}
@media (max-width: 575.98px){
    .footer-widget {
        margin-bottom: 2rem;
    }
    .footer-contact .footer-contact-item .title,
    .footer-links ul li a,.footer-social .title{
        font-size: 1.375rem;
    }
    .footer-social ul li a{
        font-size: 2.75rem;
    }
}
/*|==================================================================================
    About Section ( About Page )
====================================================================================|*/
.about-section{}
.about-section .about-img{}
.about-section .about-img img{
    border-radius: 1rem;
}
.about-section .about-content p{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .about-section .about-img img{
        border-radius: 2rem;
    }
    .about-section .about-content{
        padding-right: 2rem;
    }
    .about-section .about-content p{
        font-size: 1.25rem;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    About Section ( About Page )
====================================================================================|*/
.about-section-2{
    position: relative;
    /* height: 250px;
    background-image: url(../images/about-event.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat; */
}
.about-section-2 .about-section-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section-2 .about-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--clr-white);
    text-align: center;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){
    /* .about-section-2{
        height: 350px;
    } */
}
@media (min-width: 992px){
    /* .about-section-2{
        height: 600px;
    } */
}
@media (max-width: 991.98px){}
/*|==================================================================================
    About Featured Section ( About Page )
====================================================================================|*/
.about-featured-section{
    position: relative;
    height: 100%;
}
.about-featured-section .about-featured{
    position: relative;
}
.about-featured-section .about-featured .circle-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100px;
    height: 100px;
    border: 1.5px solid transparent;
    border-radius: 50%;
    background-color: var(--clr-white);
    transition: all 0.4s ease-in-out;
}
.about-featured-section .about-featured .circle-item:hover{
    cursor: pointer;
}
.about-featured-section .about-featured .circle-item h3{
    font-size: .875rem;
    margin-bottom: 0;
}
.about-featured-section .about-featured .circle-item:nth-child(1),
.about-featured-section .about-featured .circle-item:nth-child(6){
    border-color: #AA5865;
}
.about-featured-section .about-featured .circle-item:nth-child(1) h3,
.about-featured-section .about-featured .circle-item:nth-child(6) h3{
    color: #AA5865;
}
.about-featured-section .about-featured .circle-item:nth-child(1):hover,
.about-featured-section .about-featured .circle-item:nth-child(6):hover{
    border-color: #AA5865;
    background-color: #AA5865;
}
.about-featured-section .about-featured .circle-item:nth-child(1):hover h3,
.about-featured-section .about-featured .circle-item:nth-child(6):hover h3{
    color: #ffffff;
}
.about-featured-section .about-featured .circle-item:nth-child(2){
    border-color: #FF9900;
}
.about-featured-section .about-featured .circle-item:nth-child(2) h3{
    color: #FF9900;
}
.about-featured-section .about-featured .circle-item:nth-child(2):hover{
    border-color: #FF9900;
    background-color: #FF9900;
}
.about-featured-section .about-featured .circle-item:nth-child(2):hover h3{
    color: #ffffff;
}
.about-featured-section .about-featured .circle-item:nth-child(3){
    border-color: #4850B8;
}
.about-featured-section .about-featured .circle-item:nth-child(3) h3{
    color: #4850B8;
}
.about-featured-section .about-featured .circle-item:nth-child(3):hover{
    border-color: #4850B8;
    background-color: #4850B8;
}
.about-featured-section .about-featured .circle-item:nth-child(3):hover h3{
    color: #ffffff;
}
.about-featured-section .about-featured .circle-item:nth-child(4){
    border-color: #D93D43;
}
.about-featured-section .about-featured .circle-item:nth-child(4) h3{
    color: #D93D43;
}
.about-featured-section .about-featured .circle-item:nth-child(4):hover{
    border-color: #D93D43;
    background-color: #D93D43;
}
.about-featured-section .about-featured .circle-item:nth-child(4):hover h3{
    color: #ffffff;
}
.about-featured-section .about-featured .circle-item:nth-child(5),
.about-featured-section .about-featured .circle-item:nth-child(8){
    border-color: #21A29E;
}
.about-featured-section .about-featured .circle-item:nth-child(5) h3,
.about-featured-section .about-featured .circle-item:nth-child(8) h3{
    color: #21A29E;
}
.about-featured-section .about-featured .circle-item:nth-child(5):hover,
.about-featured-section .about-featured .circle-item:nth-child(8):hover{
    border-color: #21A29E;
    background-color: #21A29E;
}
.about-featured-section .about-featured .circle-item:nth-child(5):hover h3,
.about-featured-section .about-featured .circle-item:nth-child(8):hover h3{
    color: #ffffff;
}
.about-featured-section .about-featured .circle-item:nth-child(7){
    border-color: #753CB1;
}
.about-featured-section .about-featured .circle-item:nth-child(7) h3{
    color: #753CB1;
}
.about-featured-section .about-featured .circle-item:nth-child(7):hover{
    border-color: #753CB1;
    background-color: #753CB1;
}
.about-featured-section .about-featured .circle-item:nth-child(7):hover h3{
    color: #ffffff;
}
.about-featured-section .about-featured .circle-item:nth-child(9){
    border-color: #1C51B9;
}
.about-featured-section .about-featured .circle-item:nth-child(9) h3{
    color: #1C51B9;
}
.about-featured-section .about-featured .circle-item:nth-child(9):hover{
    border-color: #1C51B9;
    background-color: #1C51B9;
}
.about-featured-section .about-featured .circle-item:nth-child(9):hover h3{
    color: #ffffff;
}
.about-featured-section .about-featured .circle-item:nth-child(10){
    border-color: #E28153;
}
.about-featured-section .about-featured .circle-item:nth-child(10) h3{
    color: #E28153;
}
.about-featured-section .about-featured .circle-item:nth-child(10):hover{
    border-color: #E28153;
    background-color: #E28153;
}
.about-featured-section .about-featured .circle-item:nth-child(10):hover h3{
    color: #ffffff;
}
/* .about-featured-section .about-featured-img{
    position: relative;
}
.about-featured-section .about-featured-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
 .about-featured-section .about-featured .circle-item::before{
    animation: dashline 0.5s linear infinite;
 }
 /* @keyframes dashline {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
} */
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px) {
    .about-featured-section .about-featured-img{
       margin-left: -150px;
    }
    /* .about-featured-section .about-featured-img::before{
        content: '';
        position: absolute;
        top: 50%;
        right: 88%;
        bottom: 0;
        width: 1px;
        height: 100%;
        background-color: #bfb8b8;
        transform: rotate(45deg);
    } */
    .about-featured-section .about-featured{
        height: 750px;
    }
    .about-featured-section .about-featured::before{
        content: '';
        position: absolute;
        top: 38%;
        right: 100%;
        bottom: 0;
        width: 1px;
        height: 114%;
        background-color: #bfb8b8;
        transform: rotate(45deg);
        z-index: 2;
    }
    .about-featured-section .about-featured  .circle-center{
        position: absolute;
        top: 30%;
        right: 42%;
        z-index: 3;
    }
    .about-featured-section .about-featured  .circle-center img{
        height: 250px;
    }
    .about-featured-section .about-featured .circle-item{
        width: 120px;
        height: 120px;
    }
    .about-featured-section .about-featured .circle-item h3{
        font-size: 1rem;
        margin-top: 8px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1),
    .about-featured-section .about-featured .circle-item:nth-child(3),
    .about-featured-section .about-featured .circle-item:nth-child(5),
    .about-featured-section .about-featured .circle-item:nth-child(7),
    .about-featured-section .about-featured .circle-item:nth-child(8),
    .about-featured-section .about-featured .circle-item:nth-child(10){
        position: absolute;
        padding: 10px;
        width: 120px;
        height: 120px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2),
    .about-featured-section .about-featured .circle-item:nth-child(4),
    .about-featured-section .about-featured .circle-item:nth-child(6),
    .about-featured-section .about-featured .circle-item:nth-child(9){
        position: absolute;
        padding: 16px;
        width: 150px;
        height: 150px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1){
        top: 0;
        left: 18%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2){
        top: 0;
        left: 42%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(3){
        top: 22%;
        right: 24%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(4){
        top: 35%;
        right: 0;
        /* transform: translateY(-50%); */
    }
    .about-featured-section .about-featured .circle-item:nth-child(5){
        top: 55%;
        right: 20%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(6){
        top: 80%;
        right: 17%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(7){
        top: 67%;
        right: 48%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(8){
        top: 51%;
        left: 8%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(9){
        top: 35%;
        left: -17%;
        /* transform: translateY(-50%); */
    }
    .about-featured-section .about-featured .circle-item:nth-child(10){
        top: 20%;
        left: 6%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1)::before{
        content: '';
        position: absolute;
        top: 85%;
        left: 105%;
        width: 1px;
        height: 117%;
        border-left: 1px dashed #AA5865;
        transform: rotate(-30deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(2)::before{
        content: '';
        position: absolute;
        top: 99%;
        left: 30%;
        width: 1px;
        height: 59%;
        border-left: 1px dashed #FF9900;
        transform: rotate(14deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(3)::before{
        content: '';
        position: absolute;
        top: 65%;
        right: 114%;
        width: 1px;
        height: 53%;
        border-left: 1px dashed #4850B8;
        transform: rotate(55deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(4)::before{
        content: '';
        position: absolute;
        top: 55%;
        right: 102%;
        width: 126%;
        height: 1px;
        border-top: 1px dashed #D93D43;
        transform: rotate(0deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(5)::before{
        content: '';
        position: absolute;
        top: -30%;
        right: 131%;
        width: 1px;
        height: 79%;
        border-left: 1px dashed #21A29E;
        transform: rotate(-60deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(6)::before{
        content: '';
        position: absolute;
        top: -129%;
        left: -40%;
        width: 1px;
        height: 162%;
        border-left: 1px dashed #AA5865;
        transform: rotate(-42deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(7)::before{
        content: '';
        position: absolute;
        top: -40%;
        left: 43%;
        width: 1px;
        height: 40%;
        border-left: 1px dashed #753CB1;
        transform: rotate(-5deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(8)::before{
        content: '';
        position: absolute;
        top: 0%;
        left: 120%;
        width: 1px;
        height: 50%;
        border-left: 1px dashed #21A29E;
        transform: rotate(65deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(9)::before{
        content: '';
        position: absolute;
        top: 55%;
        left: 100%;
        width: 142%;
        height: 1px;
        border-top: 1px dashed #1C51B9;
        transform: rotate(0deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(10)::before{
        content: '';
        position: absolute;
        top: 65%;
        left: 121%;
        width: 1px;
        height: 77%;
        border-left: 1px dashed #E28153;
        transform: rotate(-55deg);
    }
}
@media (min-width: 1200px) and (max-width: 1919.98px) {
    .about-featured-section .about-featured-img{
       margin-left: -150px;
    }
    .about-featured-section .about-featured{
        height: 750px;
    }
    .about-featured-section .about-featured::before{
        top: 38%;
        right: 100%;
        height: 115%;
        transform: rotate(45deg);
    }
    .about-featured-section .about-featured  .circle-center{
        top: 30%;
        right: 42%;
    }
    .about-featured-section .about-featured  .circle-center img{
        height: 250px;
    }
    .about-featured-section .about-featured .circle-item{
        position: absolute;
        width: 120px;
        height: 120px;
    }
    .about-featured-section .about-featured .circle-item h3{
        font-size: 1rem;
        margin-top: 8px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1),
    .about-featured-section .about-featured .circle-item:nth-child(3),
    .about-featured-section .about-featured .circle-item:nth-child(5),
    .about-featured-section .about-featured .circle-item:nth-child(7),
    .about-featured-section .about-featured .circle-item:nth-child(8),
    .about-featured-section .about-featured .circle-item:nth-child(10){
        padding: 10px;
        width: 120px;
        height: 120px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2),
    .about-featured-section .about-featured .circle-item:nth-child(4),
    .about-featured-section .about-featured .circle-item:nth-child(6),
    .about-featured-section .about-featured .circle-item:nth-child(9){
        padding: 16px;
        width: 150px;
        height: 150px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1){
        top: 0;
        left: 18%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2){
        top: 0;
        left: 42%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(3){
        top: 22%;
        right: 24%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(4){
        top: 35%;
        right: 0;
    }
    .about-featured-section .about-featured .circle-item:nth-child(5){
        top: 55%;
        right: 20%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(6){
        top: 80%;
        right: 17%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(7){
        top: 67%;
        right: 48%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(8){
        top: 51%;
        left: 8%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(9){
        top: 35%;
        left: -17%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(10){
        top: 20%;
        left: 6%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1)::before{
        top: 85%;
        left: 105%;
        height: 139%;
        transform: rotate(-30deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(2)::before{
        top: 99%;
        left: 30%;
        height: 59%;
        transform: rotate(14deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(3)::before{
        top: 63%;
        right: 118%;
        height: 70%;
        transform: rotate(55deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(4)::before{
        top: 55%;
        right: 102%;
        width: 165%;
        transform: rotate(0deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(5)::before{
        top: -43%;
        right: 136%;
        height: 96%;
        transform: rotate(-60deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(6)::before{
        top: -129%;
        left: -40%;
        height: 162%;
        transform: rotate(-42deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(7)::before{
        top: -40%;
        left: 43%;
        height: 40%;
        transform: rotate(-5deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(8)::before{
        top: -35%;
        left: 138%;
        height: 92%;
        transform: rotate(67deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(9)::before{
        top: 52%;
        left: 100%;
        width: 200%;
        transform: rotate(0deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(10)::before{
        top: 36%;
        left: 161%;
        height: 147%;
        transform: rotate(-62deg);
    }
}
@media (min-width: 1920px) and (max-width: 2559.98px){
    .about-featured-section .about-featured-img {
        margin-left: -250px;
    }
    .about-featured-section .about-featured {
        height: 950px;
    }
    .about-featured-section .about-featured::before {
        top: 37%;
        right: 96%;
        bottom: 0;
        width: 1px;
        height: 115%;
        transform: rotate(45deg);
    }
    .about-featured-section .about-featured .circle-center {
        top: 24%;
        right: 41%;
    }
    .about-featured-section .about-featured .circle-center img {
        height: 356px;
    }
    .about-featured-section .about-featured .circle-item {
        width: 140px !important;
        height: 140px !important;
    }
    .about-featured-section .about-featured .circle-item h3 {
        font-size: 1.1rem;
        margin-top: 10px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2),
    .about-featured-section .about-featured .circle-item:nth-child(4),
    .about-featured-section .about-featured .circle-item:nth-child(6),
    .about-featured-section .about-featured .circle-item:nth-child(9) {
        width: 180px !important;
        height: 180px !important;
        padding: 20px;
    }
    /* Adjusted item placements for large layout */
    .about-featured-section .about-featured .circle-item:nth-child(1) { top: 0; left: 22%; }
    .about-featured-section .about-featured .circle-item:nth-child(2) { top: 0; left: 46%; }
    .about-featured-section .about-featured .circle-item:nth-child(3) { top: 20%; right: 26%; }
    .about-featured-section .about-featured .circle-item:nth-child(4) { top: 33%; right: -2%; }
    .about-featured-section .about-featured .circle-item:nth-child(5) { top: 52%; right: 18%; }
    .about-featured-section .about-featured .circle-item:nth-child(6) { top: 78%; right: 16%; }
    .about-featured-section .about-featured .circle-item:nth-child(7) { top: 65%; right: 49%; }
    .about-featured-section .about-featured .circle-item:nth-child(8) { top: 50%; left: 10%; }
    .about-featured-section .about-featured .circle-item:nth-child(9) { top: 33%; left: -15%; }
    .about-featured-section .about-featured .circle-item:nth-child(10) { top: 18%; left: 8%; }
    /* Connector line adjustments */
    .about-featured-section .about-featured .circle-item:nth-child(1)::before {
        top: 78%;
        left: 117%;
        height: 172%;
        transform: rotate(-35deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(2)::before {
        top: 93%;
        left: 15%;
        height: 105%;
        transform: rotate(19deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(3)::before {
        top: 37%;
        right: 180%;
        height: 225%;
        transform: rotate(53deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(4)::before {
        top: 55%;
        right: 100%;
        width: 244%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(5)::before {
        top: -128%;
        right: 218%;
        height: 251%;
        transform: rotate(-70deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(6)::before {
        top: -165%;
        left: -54%;
        height: 205%;
        transform: rotate(-45deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(7)::before {
        top: -38%;
        left: 45%;
        height: 42%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(8)::before {
        top: -87%;
        left: 177%;
        height: 170%;
        transform: rotate(68deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(9)::before {
        top: 55%;
        left: 100%;
        width: 225%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(10)::before {
        top: 29%;
        left: 177%;
        height: 197%;
        transform: rotate(-59deg);
    }
}
@media (max-width: 991.98px){
    .about-featured-section .about-featured{
        height: 550px;
    }
    .about-featured-section .about-featured::before{
        content: '';
        position: absolute;
        top: 38%;
        right: 100%;
        bottom: 0;
        width: 1px;
        height: 114%;
        background-color: #bfb8b8;
        transform: rotate(45deg);
        z-index: 3;
    }
    .about-featured-section .about-featured  .circle-center{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .about-featured-section .about-featured  .circle-center img{
        height: 150px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1){
        top: 0;
        left: 18%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2){
        top: 0;
        left: 42%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(3){
        top: 22%;
        right: 24%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(4){
        top: 35%;
        right: 0;
        /* transform: translateY(-50%); */
    }
    .about-featured-section .about-featured .circle-item:nth-child(5){
        top: 55%;
        right: 20%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(6){
        top: 80%;
        right: 17%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(7){
        top: 67%;
        right: 48%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(8){
        top: 51%;
        left: 8%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(9){
        top: 35%;
        left: -17%;
        /* transform: translateY(-50%); */
    }
    .about-featured-section .about-featured .circle-item:nth-child(10){
        top: 20%;
        left: 6%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1)::before{
        content: '';
        position: absolute;
        top: 85%;
        left: 105%;
        width: 1px;
        height: 117%;
        border-left: 1px dashed #AA5865;
        transform: rotate(-30deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(2)::before{
        content: '';
        position: absolute;
        top: 99%;
        left: 30%;
        width: 1px;
        height: 59%;
        border-left: 1px dashed #FF9900;
        transform: rotate(14deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(3)::before{
        content: '';
        position: absolute;
        top: 65%;
        right: 114%;
        width: 1px;
        height: 53%;
        border-left: 1px dashed #4850B8;
        transform: rotate(55deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(4)::before{
        content: '';
        position: absolute;
        top: 55%;
        right: 102%;
        width: 126%;
        height: 1px;
        border-top: 1px dashed #D93D43;
        transform: rotate(0deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(5)::before{
        content: '';
        position: absolute;
        top: -30%;
        right: 131%;
        width: 1px;
        height: 79%;
        border-left: 1px dashed #21A29E;
        transform: rotate(-60deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(6)::before{
        content: '';
        position: absolute;
        top: -129%;
        left: -40%;
        width: 1px;
        height: 162%;
        border-left: 1px dashed #AA5865;
        transform: rotate(-42deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(7)::before{
        content: '';
        position: absolute;
        top: -40%;
        left: 43%;
        width: 1px;
        height: 40%;
        border-left: 1px dashed #753CB1;
        transform: rotate(-5deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(8)::before{
        content: '';
        position: absolute;
        top: 0%;
        left: 120%;
        width: 1px;
        height: 50%;
        border-left: 1px dashed #21A29E;
        transform: rotate(65deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(9)::before{
        content: '';
        position: absolute;
        top: 55%;
        left: 100%;
        width: 142%;
        height: 1px;
        border-top: 1px dashed #1C51B9;
        transform: rotate(0deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(10)::before{
        content: '';
        position: absolute;
        top: 65%;
        left: 121%;
        width: 1px;
        height: 77%;
        border-left: 1px dashed #E28153;
        transform: rotate(-55deg);
    }
}
@media (max-width: 575.98px){
    .about-featured-section .about-featured{
        height: 350px;
    }
    .about-featured-section .about-featured::before{
        content: '';
        position: absolute;
        top: 63%;
        right: 70%;
        bottom: 0;
        width: 1px;
        height: 105%;
        transform: rotate(17deg);
    }
    .about-featured-section .about-featured  .circle-center{
        z-index: 4;
    }
    .about-featured-section .about-featured  .circle-center img{
        height: 130px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1),
    .about-featured-section .about-featured .circle-item:nth-child(3),
    .about-featured-section .about-featured .circle-item:nth-child(5),
    .about-featured-section .about-featured .circle-item:nth-child(7),
    .about-featured-section .about-featured .circle-item:nth-child(8),
    .about-featured-section .about-featured .circle-item:nth-child(10){
        position: absolute;
        padding: 10px;
        width: 80px;
        height: 80px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2),
    .about-featured-section .about-featured .circle-item:nth-child(4),
    .about-featured-section .about-featured .circle-item:nth-child(6),
    .about-featured-section .about-featured .circle-item:nth-child(9){
        position: absolute;
        padding: 10px;
        width: 100px;
        height: 100px;
    }
    .about-featured-section .about-featured .circle-item:nth-child(3),
    .about-featured-section .about-featured .circle-item:nth-child(5),
    .about-featured-section .about-featured .circle-item:nth-child(7),
    .about-featured-section .about-featured .circle-item:nth-child(8),
    .about-featured-section .about-featured .circle-item:nth-child(10){
        display: none;
    }
    .about-featured-section .about-featured .circle-item:nth-child(1){
        top: 0;
        left: 10%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(2){
        top: 0;
        left: auto;
        right: 5%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(4){
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    .about-featured-section .about-featured .circle-item:nth-child(6){
        top: 72%;
        right: 10%;
    }
    .about-featured-section .about-featured .circle-item:nth-child(9){
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .about-featured-section .about-featured .circle-item:nth-child(1)::before{
        content: '';
        position: absolute;
        top: 80%;
        left: 107%;
        width: 1px;
        height: 105%;
        border-left: 1px dashed #AA5865;
        transform: rotate(-41deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(2)::before{
        content: '';
        position: absolute;
        top: 80%;
        right: 103%;
        left: auto;
        width: 1px;
        height: 58%;
        border-left: 1px dashed #FF9900;
        transform: rotate(41deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(4)::before{
        content: '';
        position: absolute;
        top: 55%;
        right: 102%;
        width: 126%;
        height: 1px;
        border-top: 1px dashed #D93D43;
        transform: rotate(0deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(6)::before{
        content: '';
        position: absolute;
        top: -129%;
        left: -40%;
        width: 1px;
        height: 162%;
        border-left: 1px dashed #AA5865;
        transform: rotate(-42deg);
    }
    .about-featured-section .about-featured .circle-item:nth-child(9)::before{
        content: '';
        position: absolute;
        top: 55%;
        left: 100%;
        width: 142%;
        height: 1px;
        border-top: 1px dashed #1C51B9;
        transform: rotate(0deg);
    }
}
/*|==================================================================================
    How We Do Section ( About Page )
====================================================================================|*/
.how-we-do-section{
    position: relative;
    background-color: var(--clr-black);
}
.how-we-do-section .hw-featured{
    position: relative;
}
.hw-featured-group{
    position: relative;
}
.how-we-do-section .hw-featured p{
    color: var(--clr-white);
    font-size: 1rem;
    font-weight: 400;
}
.how-we-do-section .hw-featured .top-text{
    margin-bottom: 2rem;
    text-align: center;
}
.how-we-do-section .hw-featured .bottom-text{
    text-align: center;
}
.how-we-do-section .hw-featured .hw-featured-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-family: var(--title-font-family);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: .5rem;
    text-align: center;
    background-color: var(--clr-white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.how-we-do-section .hw-featured .hw-featured-item:nth-child(1):hover{
    background-color: #21A29E;;
    color: var(--clr-white);
}
.how-we-do-section .hw-featured .hw-featured-item:nth-child(2):hover{
    background-color: #D93D43;
    color: var(--clr-white);
}
.how-we-do-section .hw-featured .hw-featured-item:nth-child(3):hover{
    background-color: #4850B8;
    color: var(--clr-white);
}
/* .how-we-do-section .hw-featured .hw-featured-item:nth-child(2){
    position: absolute;
    top: 60%;
    left: 25%;
}
.how-we-do-section .hw-featured .hw-featured-item:nth-child(3){
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */
.how-we-do-section .hw-content p{
    color: var(--clr-white);
    font-size: 1.125rem;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .how-we-do-section .container-fluid,
    .how-we-do-section .row{
        height: 100%;
    }
    .how-we-do-section{
        height: 500px;
        padding-bottom: 12rem !important;
    }
    /* .how-we-do-section .hw-featured{
        margin-left: 100px;
    } */
    /* .how-we-do-section .hw-featured::before{
        content: '';
        position: absolute;
        top: -107%;
        left: 185px;
        width: 1px;
        height: 145%;
        background-color: #b8b8b8;
        transform: rotate(45deg);
    } */
    .how-we-do-section .hw-featured .top-text,
    .how-we-do-section .hw-featured .bottom-text{
        font-size: 1.125rem;
    }
    .how-we-do-section .hw-featured .top-text{
        position: absolute;
        top: -20px;
        width: 40%;
        text-align: left;
        margin-left: 200px;
    }
    .how-we-do-section .hw-featured .bottom-text{
        position: absolute;
        top: auto;
        bottom: -125%;
        right: 0;
        width: 32%;
        text-align: left;
        margin-left: auto;
        /* margin-right: 50px; */
    }
    .how-we-do-section .hw-featured .hw-featured-item{
        padding: 16px;
        font-size: 1.125rem;
        width: 140px;
        height: 140px;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2){
        position: absolute;
        top: 115%;
        left: 35%;
        z-index: 3;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(3){
        position: absolute;
        top: 55%;
        right: 6%;
        z-index: 3;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::before{
        content: '';
        position: absolute;
        top: 5px;
        left: -125%;
        width: 193px;
        height: 1px;
        background-color: #b8b8b8;
        transform: rotate(32deg);
        z-index: -1;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::after{
        content: '';
        position: absolute;
        top: 36px;
        right: -239px;
        width: 247px;
        height: 1px;
        background-color: #b8b8b8;
        transform: rotate(-19deg);
        z-index: -1;
    }
}
@media (min-width: 1200px) and (max-width: 1919.98px){
    .how-we-do-section{
        height: 550px;
    }
    .hw-featured-group{
        height: 400px;
    } 
    .how-we-do-section .hw-featured::before{
        display: none;
    }
    .how-we-do-section .hw-featured .top-text {
        top: -20px;
        width: 40%;
        margin-left: 280px;
        font-size: 20px;
    }
    .how-we-do-section .hw-featured .bottom-text{
        font-size: 20px;
    }
    .how-we-do-section .hw-featured .bottom-text{
        bottom: 50px;
        right: 0;
        width: 32%;
        text-align: left;
        margin-left: auto;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(1){
        position: absolute;
        top: 0;
        left: 50px;
        z-index: 3;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2){
        top: 55%;
        left: 40%;
        z-index: 3;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(3){
        top: 25%;
        right: 6%;
        z-index: 3;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::before{
        top: -26px;
        left: -134%;
        width: 220px;
        transform: rotate(39deg);
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::after{
        top: 25px;
        right: -208px;
        width: 218px;
        transform: rotate(-23deg);
    }
}
@media (min-width: 1920px) and (max-width: 2559.98px){
    .how-we-do-section{
        height: 650px;
    }
    .hw-featured-group{
        height: 480px;
    } 
    .how-we-do-section .hw-featured .hw-featured-item{
        padding: 24px;
        font-size: 1.25rem;
        width: 180px;
        height: 180px;
    } 
    .how-we-do-section .hw-featured .top-text {
        top: -20px;
        width: 30%;
        margin-left: 40%;
    }
    .how-we-do-section .hw-featured .top-text,
    .how-we-do-section .hw-featured .bottom-text{
        font-size: 1.25rem;
    }
    .how-we-do-section .hw-featured .bottom-text {
        bottom: 91px;
        right: 0;
        width: 33%;
        text-align: left;
        margin-left: 56px;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(1){
        top: 0;
        left: 180px;
        z-index: 4;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2) {
        top: 46%;
        left: 46%;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::before{
        top: -22px;
        left: -262px;
        width: 163%;
        transform: rotate(30deg);
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::after{
        top: 25px;
        right: -243px;
        width: 141%;
        transform: rotate(-22deg);
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(3){
        top: 18%;
        right: 5%;
    }
}
@media (max-width: 991.98px){
    .how-we-do-section .hw-featured-group .hw-featured-item:nth-child(1){
        position: absolute;
        top: 0;
        left: 0;
    }
    .how-we-do-section .hw-featured-group .hw-featured-item:nth-child(2){
        position: absolute;
        top: 60px;
        right: 20px;
    }
    .how-we-do-section .hw-featured-group .hw-featured-item:nth-child(3){
        position: absolute;
        top: 250px;
        left: 20px;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::before{
        content: '';
        position: absolute;
        top: 25px;
        left: -182px;
        width: 190px;
        height: 1px;
        background-color: #b8b8b8;
        transform: rotate(22deg);
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::after{
        content: '';
        position: absolute;
        top: 25px;
        right: -182px;
        width: 190px;
        height: 1px;
        background-color: #b8b8b8;
        transform: rotate(-22deg);
    }
    .how-we-do-section .hw-featured .top-text{
        margin-top: -30px;
        margin-left: 100px;
    }
    .how-we-do-section .hw-featured .bottom-text{
        position: absolute;
        top: auto;
        bottom: -25px;
        width: 100%;
        margin-top: auto;
        margin-bottom: 24px;
    }
    .how-we-do-section .hw-content{
        margin-top: 2rem;
    }
}
@media (max-width: 575.98px){
    .how-we-do-section .hw-featured{
        height: 400px;
    }
    /* .how-we-do-section .hw-featured::before{
        content: '';
        position: absolute;
        top: -28px;
        left: 66px;
        width: 1px;
        height: 100px;
        background-color: #b8b8b8;
        transform: rotate(17deg);
    } */
     .how-we-do-section .hw-featured .top-text{
        margin-top: -50px;
     }
    .how-we-do-section .hw-featured .top-text,
    .how-we-do-section .hw-featured .bottom-text{
        font-size: 1.25rem;
    }
    .how-we-do-section .hw-featured-group .hw-featured-item:nth-child(1){
        position: absolute;
        top: -40px;
        left: 0;
        z-index: 5;
    }
    .how-we-do-section .hw-featured-group .hw-featured-item:nth-child(2){
        position: absolute;
        top: 35px;
        right: 0px;
        z-index: 5;
    }
    .how-we-do-section .hw-featured-group .hw-featured-item:nth-child(3){
        position: absolute;
        top: 100px;
        left: 80px;
        z-index: 5;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::before,
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::after{
        content: '';
        position: absolute;
        width: 80px;
        height: 1px;
        background-color: #b8b8b8;
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::before{
        top: 65px;
        left: -180px;
        width: 65px;
        transform: rotate(60deg);
    }
    .how-we-do-section .hw-featured .hw-featured-item:nth-child(2)::after{
        top: 103px;
        right: 110px;
        transform: rotate(-30deg);
    }
    .how-we-do-section .hw-content h2{
        font-size: 2.5rem;
    }
    .how-we-do-section .hw-content p{
        font-size: 1.375rem;
    }
}
/*|==================================================================================
    Banner Section
====================================================================================|*/
.banner-section{
    position: relative;
}
.banner-section:hover::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.25);
}
.project-banner{}
.project-banner{}
/* .single-project-banner-img{
    overflow: hidden;
    width: 100%;
    height: 280px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
} */
.banner-section .banner-content{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-section .banner-content .banner-title{
    visibility: hidden;
    opacity: 0;
}
.banner-section:hover .banner-content .banner-title{
    color: var(--clr-white);
    visibility: visible;
    opacity: 1;
}
.single-project-banner .banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.single-project-banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    /* .single-project-banner-img{
        height: 600px;
    } */
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Vibgyor Section
=====================================================================================|*/
.vibgyor-section{
    position: relative;
    background-color: var(--clr-white);
}
.vibgyor-section .panorama-slider{}
.vibgyor-section .panorama-slider{}
.vibgyor-section .panorama-slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .vibgyor-section .panorama-slider img{
        height: 300px;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Connect Section ( Connect Page )
====================================================================================|*/
.connect-section{}
.connect-section .connect-box{
    position: relative;
}
.connect-section .connect-box .nav-tabs{
    border-bottom: none;
}
.connect-section .connect-box .nav-tabs .nav-item{}
.connect-section .connect-box .nav-tabs .nav-item .nav-link{
    color: var(--clr-black);
    font-size: 1rem;
    font-weight: 400;
    padding: .5rem;
    border: none;
    border-radius: 0rem;
    margin-right: 1rem;
    opacity: .5;
    transition: all .3s ease;
}
.connect-section .connect-box .nav-tabs .nav-item .nav-link.active{
    opacity: 1;
    color: var(--clr-black);
    font-weight: 600;
}
.connect-section .connect-box .tab-content{}
.connect-section .connect-box .tab-content .contact-info{
    margin-bottom: 1.25rem;
}
.connect-section .connect-box .tab-content .contact-info .title{}
.connect-section .connect-box .tab-content .contact-info a{
    display: block;
    color: var(--clr-black);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .5rem;
    transition: all .3s ease;
}
.connect-section .connect-box .tab-content .form-control{
    border: none;
    border-bottom: 1px solid #dee2de;
    border-radius: 0;
    padding: .75rem 1rem;
    padding-left: 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr-black);
    margin-bottom: 1rem;
    box-shadow: none;
}
.connect-section .connect-box .tab-content .form-select{
    border: none;
    border-bottom: 1px solid #dee2de;
    border-radius: 0;
    padding: .75rem 1rem;
    padding-left: 0;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: none;
}
.connect-section .connect-box .tab-content textarea.form-control{
    max-height: 100px;
}
.connect-section .connect-box .tab-content .form-check-label{
    font-size: .875rem;
    font-weight: 400;
    color: var(--clr-black);
}
.connect-section .connect-box .tab-content .form-check-label a,
.connect-section .connect-box .tab-content .form-check a{
    color: #0056FC;
}
.connect-section .connect-box .tab-content .form-check-label a:hover{
    color: var(--clr-accent);
}
.connect-section .connect-box .tab-content form .btn-ol{
    border: 1.5px solid #4850B8;
    color: #4850B8;
}
.connect-section .connect-box .tab-content form .btn-ol:hover{
    background-color: #4850B8;
    color: var(--clr-white);
    border: 1.5px solid #4850B8;
}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .connect-section .connect-box .tab-content .contact-info{
        position: absolute;
        top: 0;
        margin-bottom: 2rem;
    }
    .connect-section .connect-box .tab-content{
        padding-top: 9rem;
    }
    .connect-section .connect-box .tab-content .form-control{
        padding: .75rem 1rem;
        padding-left: 0;
    }
    .connect-section .connect-box .tab-content textarea.form-control{
        max-height: 150px;
    }
    .connect-section .connect-box .tab-content .form-check{
        padding-left: 0 !important;
    }
    .connect-section .connect-box .tab-content form .btn-ol{
        margin-top: 2rem;
        padding-left: 2.75rem !important;
        padding-right: 2.75rem !important;
    }
}
@media (max-width: 991.98px){}
/*|==================================================================================
    Connect Section ( Connect Page )
====================================================================================|*/
.featured-section{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    Project Section ( Projects Page )
====================================================================================|*/
.project-section{}
.project-section .card{
    border: none;
    margin-bottom: 1.25rem;
}
/* .project-section .card .img-box{
    height: 250px;
} */
.project-section .card .img-box{
    /* overflow: hidden; */
    transition: all 0.4s ease;
}
.project-section .card .img-box img{
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
    transition: all 0.4s ease;
}
.project-section .card .img-box:hover img{
    transform: scale(1.03);
}
.project-section .card .card-body{
    text-align: center;
    padding-bottom: 0;
}
.project-section .card .card-body .title{
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.project_Swiper .card{
    margin-bottom: 0 !important;
}
.project_Swiper .card .img-box{}
.project_Swiper .card .img-box img{
    border-radius: 0;
}
.project_Swiper .card .card-body{
    padding: 1rem 0;
    text-align: left;
}
.project-section .swiper-button-next{}
.project-section .swiper-button-prev{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){
    .project-section .card{
        margin-bottom: 2rem;
    }
    .project_Swiper .card{
        margin-bottom: 0 !important;
    }
    .project-section .card .img-box img{
        border-radius: 1.5rem;
    }
    .project_Swiper .card .img-box img{
        border-radius: 0;
    }
    .project-section .card .card-body{
        padding-top: 1.5rem;
    } 
    .project-section .card .card-body .title{
        font-size: 1.75rem;
    }
    .project-section .swiper-button-prev{
        left: auto;
        right: 4rem;
    }
}
@media (min-width: 1600px){
    .project-section .card{
        margin-bottom: 5rem;
    }
    .project-section .card .card-body{
        padding-top: 2rem;
    } 
    .project-section .card .card-body .title{
        font-size: 2.25rem;
    }
    .project-section .card .img-box img{
        border-radius: 2rem;
    }
}
@media (max-width: 991.98px){
    .project-section .swiper-button-next,
    .project-section .swiper-button-prev{
        display: none;
    }
}
/*|==================================================================================
    Connect Section ( Connect Page )
====================================================================================|*/
.featured-section{}
/*| Media Query ====================================================================|*/
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (max-width: 991.98px){}
/*|==================================================================================
    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;
    }
}