@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Condiment&display=swap');

/* @font-face {
    font-family: 'aero', sans-serif;
    src: url(../fonts/aero.ttf);
    src: url(../fonts/aero.eot);
    src: url(../fonts/aero.woff);
    src: url(../fonts/aero.woff2);
    src: url(../fonts/aero.svg);
} */
@font-face {
    font-family: 'Aero';
    src: url('../fonts/aero.ttf');
    src: url('../fonts/aero.eot');
    src: url('../fonts/aero.eot?#iefix') format('embedded-opentype'),
        url('../fonts/aero.woff2') format('woff2'),
        url('../fonts/aero.woff') format('woff'),
        url('../fonts/aero.svg') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'GoldieSans Bold';
    src: url('../fonts/goldie-sans-bold.ttf');
    src: url('../fonts/goldie-sans-bold.eot');
    src: url('../fonts/goldie-sans-bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/goldie-sans-bold.woff2') format('woff2'),
        url('../fonts/goldie-sans-bold.woff') format('woff'),
        url('../fonts/goldie-sans-bold.svg#GoldieSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GoldieSans Light';
    src: url('../fonts/goldie-sans-light.ttf');
    src: url('../fonts/goldie-sans-light.eot');
    src: url('../fonts/goldie-sans-light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/goldie-sans-light.woff2') format('woff2'),
        url('../fonts/goldie-sans-light.woff') format('woff'),
        url('../fonts/goldie-sans-light.svg#GoldieSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


:root{
    --primary-color: #2A2F7A;
    --secondary-color: #F26522;
}



body{
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

p:last-child{
    margin-bottom: 0;
}

button:focus{
    border-color: transparent;
}
.btn.show,
:not(.btn-check) + button.btn:active,
button.btn:active,
button.btn:first-child:active{
    border-color: transparent;
}

a,
.btn-link{
    text-decoration: none;
}

.bg-primary{
    background-color: var(--primary-color)!important;
}
.bg-light{
    background-color: #F1F2FF!important;
}
.bg-secondary{
    background-color: var(--secondary-color)!important;
}

.text-primary{
    color: var(--primary-color)!important;
}
.text-secondary{
    color: var(--secondary-color)!important;
}

figure{
    margin-bottom: 0;
}


/* -- global class -- */
.fw-medium{
    font-weight: 500!important;
}
.fw-semibold{
    font-weight: 600!important;
}
.fw-bolder{
    font-weight: 800!important;
}

.heading{
    position: relative;
    font-size: 36px;
    color: var(--primary-color);
    text-transform: uppercase;
    padding-bottom: 25px;
    z-index: 1;
}
.heading::after{
    content: "";
    width: 130px;
    height: 6px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 13px;
    z-index: -1;
}
.heading.no-decor::after{
    display: none;
}
.heading.no-decor{
    padding-bottom: 0;
}

.sub-title{
    display: inline-block;
    position: relative;
    font-size: 20px;
    /* padding: 0 4px; */
    z-index: 1;
}
/* .sub-title::after{
    content: "";
    width: 100%;
    height: 7px;
    background-color: rgba(255, 228, 0, 0.9);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    z-index: -1;
} */

/* title-style */
.title-style{
    font-size: 28px;
    font-weight: 700;
}

.section-space{
    padding-top: 50px;
    padding-bottom: 50px;
}

/* text-btn */
.text-btn{
    font-size: 22px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bg-yellow{
    background-color: var(--secondary-color);
}

.bg-img{
    background-repeat: no-repeat; 
    background-position: right bottom;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-justify{
    text-align: justify;
}


/* btn */
.btn{
    padding: 8px 18px;
    border-radius: 0;
}
.btn.rounded{
    border-radius: 100px!important;
}

.btn.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.btn-secondary{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* form */
form .form-control{
    border-radius: 0;
}
form .form-control:focus{
    border-color: var(--primary-color);
    box-shadow: none;
}
form .form-group{
    margin-bottom: 20px;
}
form .form-group label.required{
    position: relative;
}
form .form-group label.required::after{
    content: "*";
    color: #FF0000;
    position: absolute;
    top: 0;
}
/* bootstrap-select - multiple */
form .form-group .bootstrap-select:hover .btn.dropdown-toggle,
form .form-group .bootstrap-select .btn.show{
    background-color: transparent;
    border-color: transparent;
}
form .form-group .bootstrap-select .dropdown-toggle .filter-option-inner-inner{
    text-overflow: ellipsis;
}
form .form-group .bootstrap-select .dropdown-menu.show{
    padding: 5px 0;
    border-radius: 0;
}
form .form-group .bootstrap-select .dropdown-menu.show .dropdown-menu.inner li{
    margin-bottom: 5px;
}
form .form-group .bootstrap-select .dropdown-item.active,
form .form-group .bootstrap-select .dropdown-item:active{
    background-color: var(--primary-color);
}
/* form .form-group .bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{} */
form .form-group .bootstrap-select.show-tick .dropdown-menu .selected .bs-ok-default::after{
    border-width: 0 .15em .15em 0;
}

/* nav-tabs */
.nav-tabs{
    border: 0;
    gap: 10px;
}
.nav-tabs .nav-link{
    position: relative;
    color: #414141;
    background-color: transparent;
    border-color: #F6FAFD;
    margin-bottom: 0;
    border-radius: 4px;
}
.nav-tabs .nav-link i,
.nav-tabs .nav-link svg{
    /* color: var(--primary-color); */
    margin-right: 5px;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.nav-tabs .nav-link.active i,
.nav-tabs .nav-link.active svg{
    color: #fff;
}
.nav-tabs .nav-link:hover{
    color: var(--primary-color);
    background-color: #f1f0fc;
    border-color: #f1f0fc;
}
@media only screen and (min-width: 992px){
    .nav-tabs .nav-link{
        width: 100%;
    }
}

/* location-block */
.location-block{
    background-color: #F6FAFD;
    position: relative;
    border-bottom-width: 2px;
    padding: 30px 35px 40px 25px;
    border-color: transparent;
    border-bottom-color: #f1f0fc;
    transition: all 0.3s ease-in-out;
}
.location-block *{
    transition: all 0.3s ease-in-out;
}
.location-block .office-type{
    background-color: #fff;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    margin-bottom: 0;
}
.location-block .card-title{
    padding-block: 5px;
}
.location-block .card-title .title{
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.location-block .card-body{
    padding: 0 0;
    border-bottom: 0;
}
.location-block .card-body ul li{
    font-size: 15px;
    position: relative;
    margin-bottom: 10px;
}
.location-block .card-body ul li:last-child{
    margin-bottom: 0;
}
/* .location-block .card-body ul li .icon-box{
    color: #333;
    font-size: 14px;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 100%;
    background-color: #f3f3f3;
    position: absolute;
    top: 2px;
    left: 0;
} */
.location-block .card-body .text-btn{
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #333;
    font-size: 24px;
    width: 30px;
    height: 12px;
    text-align: center;
    border-radius: 100%;
    background-color: #dddddd;
    padding: 0 5px;
    transition-timing-function: cubic-bezier(0.23, 1, 0.320, 1);
}
.location-block .card-body .text-btn i,
.location-block .card-body .text-btn svg{
    position: relative;
    top: -27px;
}
.location-block:hover{
    border-color: #f1f0fc;
    border-bottom-color: #cdcbdd;
}
.location-block .card-body .text-btn:hover{
    color: var(--secondary-color);
    background-color: #e9e9e9;
}
.location-block .card-body .text-btn:hover i,
.location-block .card-body .text-btn:hover svg{
    top: -31px;
}




/* -- header -- */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    z-index: 10;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header .navbar{
    background-color: rgba(255, 255, 255, 0.75);
    padding: 10px 40px;
    border-radius: 0 0 100px 100px;
}
header.fixed{
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
header .navbar-brand img{
    width: 350px;
}
header .navbar-nav .nav-link{
    color: #222;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 15px!important;
}
header .navbar-nav .nav-link.active{
    color: var(--primary-color);
    font-weight: 600;
    /* background-color: var(--secondary-color); */
}
header .navbar .navbar-toggler{
    border: 0;
    margin-right: -10px;
}
header .navbar .navbar-toggler:focus{
    box-shadow: none;
}
header .excellence-logo-img{
    width: 110px;
    position: absolute;
    top: 0;
    left: -50px;
}
header .excellence-logo-img img{
    width: 100%;
}

/* -- Banner Slider -- */
.banner-slider{
    width: 100%;
    background-color: #f3f3f3;
}
.banner-slider .swiper-slide{
    height: 100vh;
}
.banner-slider .swiper-slide img{
    width:100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: 100%;
}
.banner-slider .swiper-slide .caption{
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 0;
    bottom: 20px;
    padding: 15px 35px 20px 60px;
}
.banner-slider .swiper-slide .caption .title{
    color: var(--primary-color);
    font-family: 'GoldieSans Bold', sans-serif;
    font-size: 30px;
    margin-bottom: 0;
}
.banner-slider .swiper-slide.swiper-slide-active .caption{
    animation-duration: 1.2s;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1.2s;
}
.banner-slider .swiper-slide.swiper-slide-active .caption .title{
    animation-duration: 1.2s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 2.2s;
}
.banner-slider .swiper-slide.swiper-slide-active .caption .title .highlight-words{
    color: var(--primary-color);
    position: relative;
    top: -6px;
}
.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev{
    width: 48px;
    height: 48px;
    color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 100%;
}
.banner-slider .swiper-button-next::after,
.banner-slider .swiper-button-prev::after{
    font-size: 21px;
}
.banner-slider .swiper-button-prev{
    left: 25px;
}
.banner-slider .swiper-button-next{
    right: 25px;
}


/* -- column-block-1 -- */
.column-block-1{
    height: 520px;
    position: relative;
    z-index: 1;
    padding: 30px 30px 70px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.column-block-1 > *{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.column-block-1::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 47, 122, 0);
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.column-block-1 .img-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -2;
}
.column-block-1 .title{
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 30px;
    margin-bottom: 20px;
    text-shadow: 0px 2px 3px rgba(46, 46, 46, 0.8), 0px 2px 4px rgba(46, 46, 46, 0.8), 0px 3px 100px rgba(15, 15, 15, 0.8);
}
.column-block-1 .content{
    color: #fff;
    font-size: 16px;
    opacity: 0;
    max-height: 350px;
    transform: translateY(50px);
    overflow-y: auto;
}
.column-block-1 .btn-link{
    color: #fff;
    font-size: 65px;
    font-weight: 200;
    line-height: 1;
    position: absolute;
    left: 30px;
    bottom: 10px;
    text-shadow: 0px 3px 24px rgba(0, 0, 0, 0.5);
}
.column-block-1.active .content{
    opacity: 1;
    transform: translateY(0px);
}
.column-block-1.active::before{
    background-color: rgba(42, 47, 122, 0.95);
}
.column-block-1.active .title{
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.column-block-1.active .btn-link{
    transform: rotate(-45deg);
    transform-origin: 50% 50%;
}
/* .column-block-1:hover::before{
    background-color: rgba(42, 47, 122, 0.95);
} */
/* .column-block-1:hover .title{
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
} */
/* .column-block-1:hover .content{
    opacity: 1;
    transform: translateY(0px);
} */

/* column-block-2 */
.column-block-2{
    width: 96%;
    height: 98%;
    position: relative;
    padding: 26px 0px 26px 26px;
    margin: 20px auto 0;
}
.column-block-2 *{
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.column-block-2::before{
    content: "";
    width: calc(92%);
    height: calc(85%);
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #c2c2c2;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.column-block-2 .content{
    font-size: 15px;
    text-align: center;
    background-color: #F1F2FF;
    padding: 40px 30px 38px;
    height: 98%;
}
.column-block-2 .content img{
    margin-bottom: 25px;
}
.column-block-2 .content .title{
    font-size: 25px;
}
.column-block-2:hover::before{
    border-color: var(--primary-color);
}
.column-block-2:hover .content .title{
    color: var(--secondary-color);
}

/* column-block-3 */
.column-block-3{
    display: flex;
    padding: 20px;
    border: 1px solid #cbdbeb;
    margin-top: 70px;
    border-radius: 5px;
}
.column-block-3 figure{
    width: 75%;
    height: 400px;
    margin-top: -50px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.column-block-3 figure img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.column-block-3 .content-box{
    width: 45%;
}
.column-block-3 .content-box .title{
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.column-block-3 .content-box ul li{
    font-size: 15px;
    margin-bottom: 10px;
}
.column-block-3 .content-box ul li:last-child{
    margin-bottom: 0;
}
.column-block-3:hover figure img{
    transform: scale(1.02);
}


/* -- about us section -- */
.about-section{
    position: relative;
    z-index: 1;
}
.about-section .bg-img{
    z-index: -1;    
}
.about-section blockquote p{
    font-size: 18px;
}
.about-section blockquote p::before,
.about-section blockquote p::after{
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/icon/quote-icon-1.svg) no-repeat center / contain;
    display: inline-block;
    position: relative;
}
.about-section blockquote p::after{
    background: url(../img/icon/quote-icon-2.svg) no-repeat center / contain;
}
.about-section blockquote p::before{
    top: -6px;
    margin-right: 3px;
}
.about-section blockquote p::after{
    top: 6px;
    margin-left: 2px;
}

.about-section .caption{
    color: var(--primary-color);
    font-family: 'Condiment', sans-serif;
    font-size: 45px;
}

/* -- project-section -- */
.project-slider .swiper-slide{
    position: relative;
    height: 440px;
    padding-bottom: 75px;
}
.project-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.project-slider .swiper-slide .project-caption{
    color: #fff;
    opacity: 0;
    font-weight: 300;
    position: absolute;
    width: 86%;
    left: 7%;
    bottom: -15px;
    padding: 14px 20px 15px;
    background-color: rgba(242, 99, 33, 0.9);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.project-slider .swiper-slide .project-caption .project-name{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}
.project-slider .swiper-slide .project-caption .txt{
    margin-bottom: 0;
}
.project-slider .swiper-slide .project-caption::after{
    content: "";
    display: block;
    width: 100px;
    height: 40px;
    background: url(../img/bg/dotted-patter-img-1.svg) no-repeat center / contain;
    position: absolute;
    right: -25px;
    bottom: -20px;
}
/* .project-slider .swiper-slide:hover img{
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
.project-slider .swiper-slide:hover .project-caption{
    opacity: 1;
    bottom: 0;
} */
/* swiper-slide swiper-slide-active */
.project-slider .swiper-slide.swiper-slide-active img{
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
.project-slider .swiper-slide.swiper-slide-active .project-caption{
    opacity: 1;
    bottom: 0;
}
/*  */
.project-slider .swiper-pagination{
    /* background-color: #ebebeb; */
    bottom: 0;
    height: auto;
}
.project-slider .swiper-pagination .swiper-pagination-bullet{
    background-color: #D9D9D9;
    width: 40px;
    height: 5px;
    border-radius: 0;
}
.project-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}

/* -- featured-products-section -- */
.product-block{
    position: relative;
    text-align: center;
}
.product-block .img-tag{
    position: absolute;
    top: 4px;
    right: 4px;
}
/* .product-block figure{
    height: 290px;
} */
.product-block figure img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.product-block figcaption{
    background-color: var(--secondary-color);
    padding: 4px 15px;
    border-radius: 0 0 10px 10px;
}
.product-block .title{
    color: #fff;
    font-size: 23px;
    font-weight: 400;
    text-transform: uppercase;
}
.featured-products-section .swiper-button-next,
.featured-products-section .swiper-button-prev{
    width: 33px;
    height: 33px;
    color: var(--primary-color);
    text-align: center;
    background-color:#fff;
    border-radius: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.featured-products-section .swiper-button-prev{
    left: -45px;
}
.featured-products-section .swiper-button-next{
    right: -45px;
}
.featured-products-section .swiper-button-next:hover svg path,
.featured-products-section .swiper-button-prev:hover svg path{
    fill: #fff;
}
.featured-products-section .swiper-button-next svg,
.featured-products-section .swiper-button-prev svg{
    width: 16px;
}
.featured-products-section .swiper-button-next::after,
.featured-products-section .swiper-button-prev::after{
    display: none;
}
.featured-products-section .swiper-button-next:hover,
.featured-products-section .swiper-button-prev:hover{
    color: #fff;
    background-color: var(--primary-color);
}

/* -- clients-slider -- */
.clients-slider .swiper-slide figure{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    border-right: 1px dashed #7B7B7B;
}
.clients-slider .swiper-slide:last-child figure{
    border-right: 0;
}
.clients-slider .swiper-slide figure img{
    max-width: 100%;
    max-height: 100%;
}
.clients-slider div[class*="swiper-button"]{
    width: 60px;
    position: relative;
    left: auto;
    right: auto;
    top: 0;
    bottom: 0;
    margin: 0 10px;
    z-index: 1;
}
.clients-slider div[class*="swiper-button"] img{
    width: 100%;
}
.clients-slider .swiper-button-next::after,
.clients-slider .swiper-button-prev::after{
    display: none;
}
/* clients-list */
.clients-section .clients-list{
    display: flex;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-bottom: -3px;
}
.clients-section .clients-list figure{
    flex: 0 0 calc(100% / 6);
    border-bottom: 2px solid #E6E6E6;
}
.clients-section .clients-list figure img{
    border-right: 2px solid #E6E6E6;
    margin: 15px 0;
}
.clients-section .clients-list figure:last-child img{
    border-right: 0;
}

.clients-section .clients-list figure img{
    max-width: 100%;
}

/* -- cta-sectio -- */
.cta-section{
    background-color: #fdfdfd;
    font-family: 'Aero';
    font-size: 38px;
    font-style: italic;
    line-height: normal;
    border-bottom: 6px solid var(--secondary-color);
}
.cta-section p{
    display: inline-block;
    position: relative;
}
.cta-section p::before,
.cta-section p::after{
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/icon/quote-left.svg) no-repeat center / contain;
    position: absolute;
    top: -5px;
    left: -30px;
}
.cta-section p::after{
    background: url(../img/icon/quote-right.svg) no-repeat center / contain;
    position: absolute;
    top: -4px;
    left: auto;
    right: -30px;
}

/* -- footer -- */
footer{
    position: relative;
    background-color: #333333;
    z-index: 1;
}
/* footer::before{
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/bg/wave-pattern-img.svg) no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: -1;
} */
footer .widget-box{
    position: relative;
    color: #fff;
    margin-bottom: 50px;
}
footer .widget-box:not(:last-child){
    border-right: 1px dashed var(--secondary-color);
}
footer .widget-title{
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    gap: 10px;
}
footer .widget-title .icon-box{
    display: block;
    width: 42px;
    height: 42px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    background-color: #585656;
}
footer .widget-list li{
    /* font-size: 14px; */
    line-height: 24px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}
footer .widget-list li::before{
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    top: 1px;
    left: 0;
    border-radius: 100%;
}
footer .widget-list.widget-links li i,
footer .widget-list.widget-links li svg{
    position: absolute;
    top: 6px;
    left: 0;
}
footer .widget-list.widget-links li{
    padding-left: 22px;
}
footer .widget-list.widget-links li a{
    color: #333;
}
footer .widget-list.widget-links li::before{
    display: none;
}
/* footer-bottom */
footer .footer-bottom{
    /* font-size: 14px; */
    padding: 16px 0;
}
footer .footer-bottom p img{
    width: 18px;
    position: relative;
    top: -2px;
}
footer .inline-links{
    display: inline-flex;
    justify-content: center;
}
footer .inline-links li{
    position: relative;
    padding: 0 3px;
    margin: 0 5px;
}
footer .inline-links li:first-child{
    padding-left: 0;
    margin-left: 0;
}
footer .inline-links li:last-child{
    padding-right: 0;
    margin-right: 0;
}
footer .inline-links li::after{
    content: "|";
    position: absolute;
    top: -1px;
    right: -7px;
}
footer .inline-links li a{
    display: block;
    color: initial;
}
footer .inline-links li:last-child::after{
    display: none;
}
/* social-media */
footer .social-media{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
footer .social-media li{
    margin-right: 10px;
}
footer .social-media li a{
    color: var(--secondary-color);
    display: block;
    text-align: center;
    line-height: normal;
    border-radius: 100%;
}
footer .social-media li img{
    max-width: 100%;
    width: 27px;
}
footer .social-media li:last-child{
    margin-right: 0;
}

/* -- scroll-top -- */
.scroll-top{
    display: none;
    cursor: pointer;
    position: fixed;
    right: 35px;
    bottom: 70px;
    text-align: center;
    width: 46px;
    height: 46px;
    line-height: 43px;
    background-color: var(--secondary-color);
    border-radius: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 18;
}
.scroll-top img{
    width: 20px;
}


/* -- page-banner -- */
.page-banner{
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 520px;
}
/* breadcrumb */
.breadcrumb{
    margin-bottom: 0;
}
.breadcrumb li{
    position: relative;
    padding: 0 10px;
}
.breadcrumb li:not(:last-child)::after{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 2px;
    right: -4px;
}
.breadcrumb li:first-child{
    padding-left: 0;
}
.breadcrumb li a{
    color: #333333;
}


/* -- About us page -- */
@-webkit-keyframes scale-x {
    0%{
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@keyframes scale-x {
    0%{
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes visible-box {
    0%{
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes visible-box {
    0%{
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.scale-x{
    -webkit-animation-name: scale-x;
    animation-name: scale-x;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
/* history-section */
.history-section{
    position: relative;
    background: url(../img/bg/journey-bg-img.jpg) no-repeat center / cover;
    background-attachment: fixed;
}
.history-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(92, 119, 217, 0.92);
    width: 100%;
    height: 100%;
}

.timeline-wrapper{
    position: relative;
}
.timeline-wrapper ul{
    position: relative;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.timeline-wrapper > hr{
    display: none;
    position: absolute;
    background-color: transparent;
    top: 50%;
    left: 0;
    width: 0%;
    transform: translateY(-50%);
    border-top: 1px dashed #F6FAFD;
    opacity: 1;
    margin: 0 0;
}
.timeline-wrapper ul li{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    text-align: center;
}
.timeline-wrapper ul li,
.timeline-wrapper ul li *{
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.timeline-wrapper ul li > hr.line{
    display: block;
    position: absolute;
    background-color: transparent;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    border-top: 1px dashed #F6FAFD;
    opacity: 1;
    margin: 0 0;
    animation-delay: 1s;
}
.timeline-wrapper ul li::after{
    content: "";
    width: 12px;
    height: 12px;
    background-color: #f18a5c;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 0 ;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: -25px;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 1.8s;
}
.timeline-wrapper ul li h3{
    position: relative;
    transform: translateY(0);
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 1px 3px 1px rgb(170, 56, 3);
    text-shadow: 1px 3px 1px rgb(29, 50, 129);
    height: 85px;
    padding: 15px 20px 20px;
    background-color: var(--secondary-color);
    background-color: rgb(45, 75, 182);
    /* clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%); */
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
    margin-bottom: 25px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.timeline-wrapper ul li p{
    height: 100%;
    font-size: 1.1rem;
    font-weight: 300;
}
.timeline-wrapper ul li:first-child h3{
    color: var(--secondary-color);
    background-color: #fcefe9;
    text-shadow: 1px 3px 1px #ffc0a3;
}
.timeline-wrapper ul li:hover::after{
    background-color: #fcefe9;
}
.timeline-wrapper ul li:hover h3{
    color: var(--secondary-color);
    background-color: #fcefe9;
    text-shadow: 1px 3px 1px #ffc0a3;
    transform: translateY(5px);
}
/* ul li - even */
.timeline-wrapper ul li:nth-child(even){
    flex-direction: column-reverse;
}
.timeline-wrapper ul li:nth-child(even) h3{
    padding: 25px 20px 15px;
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    margin-bottom: 0;
}
.timeline-wrapper ul li:nth-child(even):hover h3{
    transform: translateY(-5px);    
}






/* -- products page -- */
.products-grid .itemBox{
    display: none;
}
.filter-list{
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    justify-content: space-between;
    border-radius: 40px 40px;
    border: 1px solid var(--primary-color);
}
.filter-list .btn{
    color: var(--primary-color);
}
.filter-list > *:not(:last-child){
    border-right: 1px solid var(--primary-color);
}
.filter-list > *:not(span){
    flex: 1 0 auto;
}
.filter-list span{
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    padding: 5px 20px;
}
.filter-list .dropdown{
    background-color: transparent;
}
.filter-list .dropdown .btn{
    color: var(--primary-color);
    font-weight: 500;
    padding-right: 40px;
}
.filter-list .dropdown .btn.dropdown-toggle::after{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.filter-list .dropdown .dropdown-menu{
    padding: 5px 8px;
    border-radius: 5px 5px;
    border-color: var(--primary-color);
    z-index: 5;
}
.filter-list .dropdown .dropdown-menu .dropdown-item{
    cursor: pointer;
    color: var(--primary-color);
}
.filter-list .dropdown .dropdown-menu .dropdown-item:hover{
    background-color: transparent;
}
.filter-list .dropdown .dropdown-menu .dropdown-item:not(:last-child){
    border-bottom: 1px solid var(--primary-color);
}
.filter-list .dropdown .dropdown-menu .dropdown-item.active{
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
}
/* product-box */
.product-box{
    position: relative;
    overflow: hidden;
    background-color: #F6FAFD;
    background-color: #fff;
    padding: 0 0 80px;
    margin: 0 10px;
    border-radius: 20px 20px 0 0;
    /* box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1); */
}
.product-box *{
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.product-box .img-tag{
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 1;
}
.product-box .caption{
    color: #fff;
    width: 100%;
    background-color: rgba(42, 47, 122, 0.9);
    padding: 15px 20px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
}
.product-box .caption .content{
    padding-left: 10px;
    border-left: 2px solid var(--secondary-color);
}
.product-box .caption .title{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.product-box .caption p{
    font-size: 15px;
    margin-bottom: 0;
}
.product-box figure{
    width: 100%;
}
.product-box figure img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
}
.product-box .product-description{
    color: #fff;
    line-height: 25px;
    padding: 0 0 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(81, 89, 197, 0.9);
    background: rgba(42, 47, 122, 0.9);
    transform: translateY(50px);
    opacity: 0;
    overflow-y: auto;
    z-index: 1;
}
.product-box .product-description ul li + li{
    margin-top: 6px;
}
.product-box .product-description ul li.title{
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
}
.product-box .product-description ul li figure{
    width: 40%;
    margin: 0 auto 15px;
}
.product-box .product-description ul li span{
    font-weight: 700;
}
.product-box .product-description .btn{
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    background-color: #fff;
    border: 0;
    padding: 5px 20px;
    border-radius: 50px;
}
.product-box .product-description .btn:hover{
    background-color: var(--secondary-color);
    color: #fff;
}
.product-box:hover .caption{
    opacity: 0;
}
.product-box:hover figure img{
    transform: scale(1.02);
}
.product-box:hover .product-description{
    transform: translateY(0px);
    opacity: 1;
}
/* quote-form-wrapper */
.quote-form-wrapper form .form-control{
    background-color: transparent;
    height: 100%;
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 10px;
}
.quote-form-wrapper form .form-control:focus{
    border-color: rgba(51, 51, 51, 0.5);
}
.quote-form-wrapper form .form-group{
    position: relative;
    margin-bottom: 25px;
}
.quote-form-wrapper form .form-group label{
    position: absolute;
    left: 22px;
    top: -10px;
    background-color: #F1F2FF;
    padding: 0 14px 0 8px;
    z-index: 1;
}
.quote-form-wrapper form .form-group .form-control{
    padding: 12px 15px 15px;
}
.quote-form-wrapper form .form-group .bootstrap-select{
    padding: 12px 0 0;
    text-transform: uppercase;
}
.quote-form-wrapper form .form-group .selectpicker + .dropdown-toggle{
    background-color: transparent;
    border: 0;
    border-radius: 10px;
    z-index: 1;
}
/* .quote-form-wrapper form .form-group .bootstrap-select .dropdown-menu{} */


/* cta-wrap */
.cta-wrap .column{
    color: #2a5e97;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    background-color: #ffe400;
    padding: 20px 35px 25px;
    border-radius: 10px;
}
.cta-wrap .column h4{
    font-family: 'GoldieSans Bold';
    font-size: 30px;
    font-weight: 600;
}
.cta-wrap .column p{
    font-family: 'GoldieSans Light';
    font-size: 22px;
    font-weight: 500;
}
.cta-wrap .column::after{
    content: "";
    position: absolute;
    width: 98%;
    height: 100%;
    left: 1%;
    bottom: -10px;
    background-color: rgb(248, 248, 248);
    background-color: #fff8bc;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.cta-wrap .column .btn{
    background-color: #2a5e97;
    border-color: #2a5e97;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-right: 45px;
    box-shadow: 0 0 10px -5px rgba(207, 202, 150, 0);
}
.cta-wrap .column .btn .icon{
    font-size: 16px;
    position: absolute;
    top: 5px;
    right: 5px;
    display: inline-block;
    color: #2a5e97;
    background-color: #f0f0f0;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
}
.cta-wrap .column .btn:hover{
    color: #2a5e97;
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 2px 25px -5px rgb(175, 168, 94);
}
.cta-wrap .column .btn:hover .icon{
    color: #fff;
    background-color: #2a5e97;
}
.cta-wrap .column:hover::after{
    background-color: #fcf4b4;
    bottom: -7px;
}


/* --  achivements page -- */
.achivements-section{}

.gallery-slider .swiper-slide{
    overflow: hidden;
    position: relative;
    width: auto;
    /* height: 400px; */
    border-radius: 5px;
}
.gallery-slider .swiper-slide .button{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5%;
    bottom: 5%;
    font-size: 1.4rem;
    background-color: rgba(24, 25, 48, 0.6);
    color: #fff;
    text-align: center;
    width: 90%;
    height: 90%;
    line-height: 40px;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(50%);
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* box-shadow: 0 0 30px 5px  rgba(24, 25, 48, 0.8); */
}
.gallery-slider .swiper-slide:hover .button{
    transform: translateX(0);
    opacity: 1;
}
.gallery-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s ease;
}
.gallery-slider .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev{
    width: 33px;
    height: 33px;
    color: var(--primary-color);
    text-align: center;
    background-color:#fff;
    border-radius: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 1;
}
/* .gallery-slider .swiper-button-prev{
    left: -45px;
}
.gallery-slider .swiper-button-next{
    right: -45px;
} */
.gallery-slider .swiper-button-next:hover svg path,
.gallery-slider .swiper-button-prev:hover svg path{
    fill: #fff;
}
.gallery-slider .swiper-button-next svg,
.gallery-slider .swiper-button-prev svg{
    width: 16px;
}
.gallery-slider .swiper-button-next::after,
.gallery-slider .swiper-button-prev::after{
    display: none;
}
.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover{
    color: #fff;
    background-color: var(--primary-color);
}

/* gallery */
.gallery-section{
    position: relative;
}
/* .gallery-section::before,
.gallery-section::after{
    content: "";
    width: 200px;
    height: 225px;
    background-color: var(--secondary-color);
    position: absolute;
    top: -20px;
    right: -13px;
    z-index: -1;
}
.gallery-section::after{
    top: auto;
    right: auto;
    left: -13px;
    bottom: 0px;
} */

.gallery-wrapper {
    columns: 4;
    column-gap: 1.5rem;
    width: 100%;
}
@media (max-width: 768px) {
    .gallery-wrapper {
        columns: 3;
    }
}

@media (max-width: 480px) {
    .gallery-wrapper {
        columns: 2;
    }
}
.gallery-wrapper .image-box {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}
.gallery-wrapper .image-box img{
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-wrapper .image-box:hover img {
    transform: scale(1.05);
}

.gallery-wrapper .image-box a{
    display: block;
}

/* @media only screen and (min-width: 768px){
    .gallery-section .image-box img.vertical-img{
        height: calc(100% - 25px);
    }
} */


/* -- blogs page -- */
.blogs-wrapper{}
/* blog-img */
.blog-post{
    /* margin-bottom: 40px; */
}
.blog-post .blog-img{
    height: 100%;
}
.blog-post .blog-img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
/* blog-content */
.blog-post .blog-content{
    padding-top: 26px;
}
.blog-post .blog-content .blog-title,
.blog-post .blog-content .blog-title a{
    color: #222;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.blog-post .blog-content .user-info{
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.blog-post .blog-content .user-info figure{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 15px;
    overflow: hidden;
}
.blog-post .blog-content .user-info figure img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.blog-post .blog-content .user-info .user-name{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.blog-post .blog-content .user-info .blog-post-date{
    font-size: 13px;
}


/* -- contact us page -- */
.contact-information .contact-info-list li{
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
}
.contact-information .contact-info-list li i,
.contact-information .contact-info-list li svg{
    position: absolute;
    top: 7px;
    left: 0;
}
.contact-information iframe{
    height: 547px;
}
.map-wrapper figure{
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}
.map-wrapper:hover figure{
    transform: scale(1.01);
}

/* user-information */
.user-information ul{
    position: relative;
    padding: 10px 20px 10px;
    border: 1px solid #cdcbdd;
    border-bottom-width: 2px;
    border-radius: 6px;
    margin-bottom: 25px;
}
.user-information ul *{
    transition: all 0.3s ease-in-out;
}
.user-information ul:hover{
    box-shadow: 0 5px 10px -6px rgba(51, 51, 51, 0.3);
}
.user-information ul li{
    position: relative;
    padding-left: 25px;
}
.user-information ul li .icon{
    display: block;
    color: rgba(242, 101, 34, 0.9);
    position: absolute;
    top: 6px;
    left: 0px;
}
.user-information ul .title{
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}
.user-information ul .title span{
    display: block;
    color: #414141;
}

/* contact-form */
.contact-form{
    padding: 25px 25px;
    border: 1px solid #adadad;
}
.contact-form .form-group{
    margin-bottom: 25px;
}
.contact-form .form-control{
    background-color: #F2F2F2;
    padding: 12px 20px;
    border-color: #adadad;
}



/* ---- responsive ---- */
@media only screen and (min-width: 768px){
    .blog-post.blog-post-column{
        display: flex;
    }
    .blog-post.blog-post-column .blog-img{
        width: 80%;
        height: 360px;
        margin-right: 50px;
    }
    .blog-post.blog-post-column .blog-content{
        font-size: 18px;
    }
    .blog-post.blog-post-column .blog-content .blog-title,
    .blog-post.blog-post-column .blog-content .blog-title a{
        font-size: 28px;
        margin-bottom: 20px;
    }
    .blog-post.blog-post-column .blog-content{
        width: 40%;
    }
}

@media only screen and (min-width: 992px){
    .timeline-wrapper > hr{
        display: block;
    }
    .timeline-wrapper ul li > hr.line{
        display: none;
    }
}

@media only screen and (max-width: 1399px){
    header .navbar{
        padding: 5px 10px;
        margin: 0 40px!important;
        border-radius: 0 0 70px 70px;
    }
    header .navbar-nav .nav-link{
        font-size: 14px;
        padding: 5px 10px!important;
    }
    header .excellence-logo-img {
        width: 100px;
        left: -30px;
    }
    
    .contact-information iframe{
        height: 430px;
    }
}

@media only screen and (max-width: 1199px){
    header .navbar-brand img{
        width: 290px;
    }
    header .navbar {
        padding: 10px 5px;
        margin: 0 20px !important;
        border-radius: 0 0 50px 50px;
    }
    header .excellence-logo-img{
        width: 85px;
        left: -25px;
    }

    .product-box .product-description{
        padding: 0 0 18px;
    }

    .column-block-3 figure {
        width: 60%;
    }

    .timeline-wrapper ul{
        gap: 0;
    }
    .timeline-wrapper ul li p{
        font-size: 1rem;
        line-height: 25px;
    }
    
    .contact-information iframe{
        height: 330px;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px){
    .cta-section p::before,
    .cta-section p::after{
        width: 22px;
        height: 22px;
        left: -5px;
    }
    .cta-section p::after{
        left: auto;
        right: -5px;
    }
}


@media only screen and (max-width: 991px){
    header .navbar-brand img {
        width: 220px;
    }
    header .navbar{
        padding: 10px 5px;
        border-radius: 0 0 50px 50px;
    }
    header .navbar .navbar-collapse .navbar-nav{
        margin-top: 20px;
    }

    .heading{
        font-size: 30px;
    }
    .sub-title{
        font-size: 18px;
    }
    .title-style{
        font-size: 25px;
    }

    .banner-slider .swiper-button-next, .banner-slider .swiper-button-prev{
        width: 40px;
        height: 40px;
    }
    .banner-slider .swiper-button-next::after, .banner-slider .swiper-button-prev::after {
        font-size: 16px;
    }
    .banner-slider .swiper-slide .caption{
        width: 80%;
        padding: 10px 25px 15px 50px;
    }
    .banner-slider .swiper-slide .caption .title{
        font-size: 25px;
        line-height: normal;
    }

    .column-block-1{
        padding: 25px 25px 80px;
    }
    .column-block-1 .title{
        font-size: 28px;
    }
    .column-block-1 .btn-link{
        left: 25px;
    }

    .project-slider .swiper-slide .project-caption{
        font-size: 15px;
        width: 84%;
        left: 6%;
        padding: 12px 20px 16px;
    }
    .project-slider .swiper-slide .project-caption .project-name{
        font-size: 18px;
    }
    .project-slider .swiper-pagination .swiper-pagination-bullet{
        width: 55px;
    }
    
    .product-block .title{
        font-size: 18px;
    }

    .cta-section{
        font-size: 30px;
        line-height: normal;
    }
    .cta-section svg{
        width: 50px;
    }

    .page-banner{
        height: 320px;
    }

    .product-box{
        /* border: 1px solid #f8f8f8; */
    }
    
    .column-block-3{
        flex-wrap: wrap;
    }
    .column-block-3 figure {
        width: 96%;
        height: 320px;
        margin-bottom: 20px;
    }
    .column-block-3 .content-box{
        width: 100%;
    }
    
    .clients-section .clients-list figure{
        flex: 0 0 calc(100% / 4);
        border-bottom: 2px solid #E6E6E6;
    }
    
    .products-page .heading{
        font-size: 28px;
    }

    .timeline-wrapper ul{
        flex-wrap: wrap;
    }
    .timeline-wrapper ul li{
        flex: 0 0 calc(100% / 3);
        margin-bottom: 50px;
        animation-name: fadeInUp!important;
    }
}

@media only screen and (max-width: 767px){
    .heading {
        font-size: 28px;
        padding-bottom: 18px;
        margin-bottom: 20px;
    }
    .heading::after{
        height: 4px;
    }

    .sub-title {
        font-size: 16px;
    }
    .title-style{
        font-size: 22px;
    }

    header .navbar{
        background-color: rgba(255, 255, 255, 0.85);
    }
    header .excellence-logo-img {
        width: 70px;
        left: -5px;
    }
    header .navbar-brand img {
        width: 180px;
    }

    .banner-slider .swiper-slide{
        height: 84vh;
    }
    .banner-slider .swiper-slide .caption{
        width: 90%;
        padding: 10px 15px 15px 40px;
    }
    .banner-slider .swiper-slide .caption .title{
        font-size: 22px;
        line-height: 28px;
    }

    .column-block-1{
        height: auto;
    }

    .featured-products-section .swiper-button-next, .featured-products-section .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    .featured-products-section .swiper-button-prev {
        left: 10px;
    }
    .featured-products-section .swiper-button-next{
        right: 10px;
    }

    .clients-slider .swiper-slide figure{
        height: 80px;
    }

    .column-block-2{
        padding: 20px 0px 20px 20px;
    }
    .column-block-2::before{
        width: calc(94%);
    }
    .column-block-2 .content{
        padding: 30px 24px 28px;
    }
    .column-block-2 .content img{
        margin-bottom: 20px;
    }
    .column-block-2 .content .title{
        font-size: 20px;
    }

    .column-block-3 .content-box .title{
        font-size: 21px;
    }

    .gallery-section .image-box img{
        height: 250px;
    }
    .gallery-section .image-box .image-box:last-child{
        margin-bottom: 0;
    }
    .gallery-section::before{
        top: -15px;
        right: -4px;
    }
    .gallery-section::after{
        left: -4px;
        bottom: 9px;
    }

    .blog-post .blog-content .blog-title, .blog-post .blog-content .blog-title a{
        font-size: 20px;
        margin-bottom: 7px;
    }
    .blog-post .blog-content .user-info {
        margin-top: 18px;
    }
    .blog-post .blog-content .user-info figure{
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .contact-form{
        padding: 18px 18px;
    }
    .user-information ul{
        padding: 10px 15px 10px;
    }
    .user-information ul .title{
        font-size: 1.2rem;
    }

    .cta-section {
        font-size: 25px;
    }
    .cta-section p::before,
    .cta-section p::after{
        width: 22px;
        height: 22px;
        left: -18px;
    }
    .cta-section p::after{
        left: auto;
        right: -18px;
    }
    
    footer .widget-box:not(:last-child){
        border-right: 0;
        border-bottom: 1px dashed var(--secondary-color);
    }
    
    .products-page .heading {
        font-size: 24px;
    }

    .filter-list{
        font-size: 15px;
    }
    .filter-list .dropdown .btn{
        padding: 4px 10px;
        padding-right: 30px;
    }
    .filter-list .dropdown .btn.dropdown-toggle::after{
        right: 13px;
    }
    .filter-list span{
        padding: 3px 15px;
    }
    
    .timeline-wrapper ul li{
        flex: 0 0 calc(100% / 2);
    }
}

@media only screen and (max-width: 640px){
    .section-space {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .heading.with-decor::after {
        width: 96%;
        left: 2%;
    }
    
    header .navbar-brand img{
        width: 240px;
    }
    
    .banner-slider .swiper-slide{
        height: 66vh;
    }
    .banner-slider .swiper-slide .caption{
        width: 90%;
        padding: 10px 10px 15px 30px;
    }
    .banner-slider .swiper-slide .caption .title{
        font-size: 19px;
        line-height: 25px;
    }

    footer .footer-bottom .logo img{
        width: 200px;
    }
    
    .scroll-top{
        bottom: 20px;
        right: 26px;
    }

    .page-banner {
        height: 200px;
    }
}

@media only screen and (max-width: 575px){
    .heading{
        font-size: 25px;
    }
    
    header .navbar {
        padding: 5px 5px;
        border-radius: 0 0 25px 25px;
    }
    header .excellence-logo-img{
        top: 60px;
        left: 10px;
    }
    header.fixed .excellence-logo-img{
        display: none;
    }

    
    .banner-slider .swiper-slide{
        height: 73vh;
    }
    
    .cta-section {
        font-size: 19px;
    }
    .cta-section p::before,
    .cta-section p::after{
        width: 16px;
        height: 16px;
        left: -16px;
    }
    .cta-section p::after{
        left: auto;
        right: -16px;
    }
    
    .products-page .heading {
        font-size: 20px;
    }

    .timeline-wrapper ul li h3{
        font-size: 2.2rem;
        margin-bottom: 5px;
    }
    .timeline-wrapper ul li p{
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 480px){
    header .navbar-brand img{
        width: 230px;
    }
    header .navbar {
        padding: 5px 5px;
        margin: 0 auto !important;
        border-radius: 0 0 25px 25px;
    }
}

@media only screen and (max-width: 320px){
    header .navbar-brand{
        margin-right: 0;
    }
    header .navbar-brand img{
        width: 205px;
    }
}


