:root {
    --BodyColor:#333F48;
    --PrimaryColor:#B13A50;
    --SecondaryColor: #333F48;
    --TertiaryColor: #1E3369;
    --WhiteColor: #FFFFFF;
    --gray:#EBEBEB;
    --ff-primary:"Poppins", sans-serif;
    --fs-h1:80px;
    --fs-h2:55px;
    --fs-h3:34px;
    --fs-h4:28px;
    --fs-h5:22px;
    --fs-h6:18px;
}

body {
    font-family:var(--ff-primary) !important;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 187%;
    color: var(--BodyColor);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body a {
    color: inherit;
}
p{
    margin-bottom: 0;
    font-family: var(--ff-primary);
    font-size: 16px !important;
}

@media(min-width:1400px){
    .container{
        max-width:1350px;
    }
}

body .thumbnail-container{
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* background-color: rgba(var(--BlackColorRGBA), .025); */
    border-radius: 0;
}

body .thumbnail-container .thumbnail {
    margin: 0;
    display: block;
    padding: 0;
    border: none;
    height: 100%;
    width: 100%;
    position: absolute;
    background: 0 0;
}

body .thumbnail-container .thumbnail a,
body .thumbnail-container .thumbnail img {
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
}
.thumbnail-container.object-fit img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
h1,h2,h3,h4,h5,h6{
    font-family:var(--ff-primary);
    margin-bottom: 0;
    font-weight: 900;
}
.title{
    letter-spacing: 0 !important;
    font-family:var(--ff-primary);
}
.main-title{
    font-family:var(--ff-primary);
    line-height: 120%;
    color: var(--BodyColor);
    font-weight: 900;
    font-size: var(--fs-h1);
    letter-spacing: -1px;
}
@media(max-width:1599px){
    .main-title{
        font-size: 70px;
    }
}
@media(max-width:1399px){
    .main-title{
        font-size: var(--fs-h2);
    }
}
@media(max-width:991px){
    .main-title{
        font-size: var(--fs-h3);
    }
}


.section-gap {
    padding: 50px 0;
}
.section-gap-t{
    padding-top: 50px;
}
.section-gap-b{
    padding-bottom: 50px;
}
.section-gap.double-gap{
    padding: 100px 0;
}
.section-gap.double-gap-t {
    padding-top: 100px;
}
.section-gap.double-gap-b {
    padding-bottom: 100px;
}

@media (max-width: 1399px) {
    .section-gap {
        padding: 40px 0;
    }
    .section-gap-t{
        padding-top: 40px;
    }
    .section-gap-b{
        padding-bottom: 40px;
    }
    .section-gap.double-gap{
        padding: 80px 0;
    }
    .section-gap.double-gap-t {
        padding-top: 80px;
    }
    .section-gap.double-gap-b {
        padding-bottom: 80px;
    }
}
@media (max-width: 1199px){
    .section-gap {
        padding: 35px 0;
    }
    .section-gap-t{
        padding-top: 35px;
    }
    .section-gap-b{
        padding-bottom: 35px;
    }
    .section-gap.double-gap{
        padding: 70px 0;
    }
    .section-gap.double-gap-t {
        padding-top: 70px;
    }
    .section-gap.double-gap-b {
        padding-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .section-gap {
        padding: 25px 0;
    }
    .section-gap-t{
        padding-top: 25px;
    }
    .section-gap-b{
        padding-bottom: 25px;
    }
    .section-gap.double-gap{
        padding: 50px 0;
    }
    .section-gap.double-gap-t {
        padding-top: 50px;
    }
    .section-gap.double-gap-b {
        padding-bottom: 50px;
    }
}

.btn {
    position: relative;
    font-family:var(--ff-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: .16px;
    padding:10px 20px;
    border: none;
    box-shadow: none;
    display: inline-block;
    z-index: 1;
    border-radius:0px;
    text-align: center;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.btn:active,
.btn:focus,
.btn:hover,
.btn:visited {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn.btn-primary{
    color: var(--WhiteColor);
    background-color: var(--PrimaryColor);
}
.btn.btn-primary:hover{
    background-color: var(--TertiaryColor);
}
.btn-round{
    background-color: var(--PrimaryColor);
    height: 56px;
    width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}
.btn-round:hover{
    background-color: var(--TertiaryColor);
}
@media(max-width:767px){
    .btn-round{
        height: 40px;
        width: 40px;
    }
}
.swiper .swiper-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background-color: transparent !important;
    border: 2px solid #fff;
    opacity: 1;
    transition: 0.3s ease-in-out;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    border-color: var(--PrimaryColor);
}
.swiper .swiper-pagination .swiper-pagination-bullet:hover{
    border-color: var(--PrimaryColor);
}

.addmition-btn{
    background-color: var(--PrimaryColor);
    color: var(--WhiteColor);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px 0 0 50px;
    position: fixed;
    text-align:center;
    padding: 7px 17px;
    z-index: 99;
    top: 32%;
    right: 0;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.addmition-btn:hover{
    background-color: var(--TertiaryColor);
    color: var(--WhiteColor);
}
.addmition-btn-2{
        background-color: var(--TertiaryColor);
     top: 40%;
}
.addmition-btn-2:hover{
    background-color: var(--PrimaryColor);
}
@media(min-width:768px){
    .addmition-btn{
        min-width:148px;
    }
}
@media(max-width:991px){
    .addmition-btn{
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* header section start */
.header-section{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 999;
    padding-top: 10px;
}
.header-section.scrolled{
    background:rgb(30 51 105 / 80%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
body:not(.home) .header-section{
    background:rgb(30 51 105 / 80%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
	position: sticky;
}
body:not(.home) .header-section.scrolled{
	    position: fixed;
}

.header-section .logo{
    display: inline-block;
}
.header-section .logo img{
    max-width: 147px;
}
.header-section .header-content{
    width: calc(100% - 347px);
}
.header-section .link-option{
    display: flex;
    gap: 33px;
    padding:7px 61px 10px 0;
    margin-left: 0;
    padding-left: 0;
}
.header-section .link-option li{
    list-style: none;
}
.header-section .link-option li svg{
    width: 10px;
}
.header-section .link-option li .is-open svg{
	width:25px !important;
}
.header-section .link-option li a{
    display: flex;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: var(--WhiteColor);
    align-items: center;
    transition: all 0.5s ease-in-out;
}
.header-section .link-option li a svg path{
    transition: all 0.5s ease-in-out;
}
.header-section .link-option li a:hover{
    color: var(--SecondaryColor);
}
.header-section.scrolled .link-option li a:hover{
    color: var(--PrimaryColor);
}
.header-section .link-option li a:hover svg path{
    fill: var(--SecondaryColor);
}
.header-section.scrolled .link-option li a:hover svg path{
    fill: var(--PrimaryColor);
}
.header-section .search{
    height: 61px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.header-section .search:hover{
    background-color: var(--TertiaryColor);
}

.header-section .bar{
    width: 145px;
    height: 61px;
    background-color: var(--PrimaryColor);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.header-section .bar:hover{
    background-color: var(--TertiaryColor);
}
.header-section .bar-box{
    width: 40px;
    height: 13px;
    display: flex;
    justify-content: space-between;
    margin-left: 40px;
    flex-direction: column;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.header-section .bar-box .line{
    display: inline-block;
    height: 2px;
    width: 100%;
    background-color: var(--WhiteColor);
    transition: all 0.5s ease-in-out;
}
.header-section .nav{
    position: fixed;
    height: 100%;
    top: 0;
    right:-390px;
    padding-left: 35px;
    width: 380px;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}
.header-section .nav.active{
    right: 0;
}
.header-section .nav ul{
    background-color: var(--TertiaryColor);
    
    list-style: none;
    width: 100%;
}

.header-section .nav ul li .menu-logo{
    background-color: var(--TertiaryColor) !important;
}
.header-section .nav ul li .menu-logo img{
   max-width: 260px;
   padding: 10px 0;
}
.header-section .nav ul li{
    padding: 12px 25px 12px 25px;
    position: relative;
}

.header-section .nav ul li{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.header-section .nav ul li .is-open{
    position: absolute;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    top: 14px;
    right: 20px;
    transition:all 0.5s ease-in-out;
}
.header-section .nav ul li .is-open.is-close{
    transform: rotate(-45deg);
}
.header-section .nav ul li .is-open.is-close ~ .dropdown{
    display: block;
}
.header-section .nav ul li > .dropdown .is-open{
   right: -6px;
   top: 3px;
}
.header-section .nav ul li a{
    color: var(--WhiteColor);
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.header-section .nav ul li .nav-link{
    padding: 0;
}
.header-section .nav ul li a:hover{
    color: var(--PrimaryColor);
}

.header-section .nav ul li > .dropdown{
    padding-left: 20px;
    margin-left: 0;
    margin-bottom: 0;
    display: none;
}
.header-section .nav ul li > .dropdown li{
    border: none;
    padding:0px;
}

.header-section .nav ul li > .dropdown li a{
    font-size: 15px;
    font-weight: 400;
    position: relative;
}
.header-section .nav ul li > .dropdown li a:hover::after{
    background-color: var(--PrimaryColor);
}
.header-section .nav ul li > .dropdown li a::after{
    content: "";
    height: 6px;
    width: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    background-color: var(--WhiteColor);
    transition: all 0.5s ease-in-out;
    border-radius: 50%;
}

.header-section .nav .close-icon{
    height: 35px;
    width: 35px;
    background-color: var(--TertiaryColor);
    top: 15px;
    z-index: 99;
    border-radius: 12px 0 0 12px;
    right:calc(100% - 36px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
}
.header-section .nav .menu-image{
    background-color: var(--TertiaryColor);
    width: 100%;
    padding: 12px 25px;
}
.header-section .nav .menu-image a{
    display: inline-block;
}
.header-section .nav .menu-wrap{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: var(--TertiaryColor);
}
.header-section .nav .menu-image img{
    max-width: 260px;
    padding: 10px 0;
    
}

.header-section .overlay{
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: -100%;
    transition: all 0.5s ease-in-out;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 999;
}
.header-section .overlay.active{
    left: 0%;
}
.header-section .modal {
    background-color: rgba(255, 255, 255, 0.4);
    padding-right:0 !important;
}
.header-section #searchModal .btn-close {
    width: auto;
    font-size: 18px;
    background: 0 0;
    margin-right: 0;
    opacity: 1;
    border: none !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.header-section #searchModal .modal-content{
    background-color: var(--TertiaryColor);
    min-height: 200px !important;
    height: auto !important;
    max-width:100% !important;
}
.header-section #searchModal .modal-body{
    overflow-y: visible !important;
}
.header-section #searchModal #ajaxSearchResults{
padding: 20px;
margin-top: 20px;
position: static !important;
border: 1px solid rgba(255, 255, 255, 0.6);
border-radius: 20px;
box-shadow: none !important;
width: 100%;
}
.header-section #searchModal #ajaxSearchResults ul{
    margin-bottom: 0 !important;
}
.header-section #searchModal #ajaxSearchResults li a,.header-section #searchModal #ajaxSearchResults p{
    color: var(--WhiteColor) !important;
}
.header-section #searchModal .modal-dialog{
    min-height: 300px;
    height: auto;
}
.header-section #searchModal .btn-close path, .header-section #searchModal .btn-close svg {
    fill: var(--WhiteColor);
}
.header-section #searchModal .container {
    max-width: 1000px;
}
.header-section #searchModal .form-control  {
    height: 55px;
    border-radius: 0 !important;
    border-color:var(--WhiteColor);
    transition: all .5s ease-in-out;
    padding: 0 50px 0 0 !important;
    font-size: 22px;
    background: transparent;
    box-shadow: none;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    color: var(--WhiteColor);
}
.header-section #searchModal .form-control::placeholder{
    color: var(--WhiteColor);
}
.header-section #searchModal .searchBtn {
    position: absolute;
    top: 15px;
    right: 0;
    background: 0 0;
    border: 0;
    z-index: 3;
    
}
.header-section #searchModal .searchBtn path, .header-section #searchModal .searchBtn svg {
    fill: var(--PrimaryColor);
    transition: .3s ease-in-out;
}
.modal-backdrop{
    z-index: -1;
}
.header-section #searchModal .details .input-group .search-area{
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}

.header-section #searchModal .details .input-group .search-area input:-webkit-autofill,
.header-section #searchModal .details .input-group .search-area input:-webkit-autofill:focus,.header-section #searchModal .details .input-group .search-area input:-webkit-autofill:hover,.header-section #searchModal .details .input-group .search-area input:-webkit-autofill:active {
    background-color: transparent !important;

    
}
@media(max-width:1199px){
    .header-section #searchModal .container {
        max-width: 80%;
    }
    .header-section .logo img{
        max-width: 270px;
    }
    .header-section .header-content{
        width: calc(100% - 270px);
    }
    .header-section .link-option{
        gap: 20px;
    }
}
@media(max-width:991px){
    .header-section{
        padding-top: 0;
    }
   .header-section .nav .menu-image img{
       max-width:210px;
   }
    .header-section .nav{
        width: 300px;
    }
    .header-section .nav ul li .menu-logo img{
        max-width: 200px;
    }
    .header-section .link-option{
        gap: 15px;
        padding: 12px 61px 12px 0;
    }
    .header-section .link-option li a .icon{
        background-color: var(--WhiteColor);
        border-radius: 50%;
        height: 22px;
        width: 22px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        
    }
    .header-section .link-option li a .icon svg{
        height: 12px;
        width: 12px;
    }
    .header-section .link-option li a .icon svg path{
        fill: var(--TertiaryColor);
    }
}
@media(max-width:767px){
    .header-section .logo img {
        max-width: 200px;
    }
    .header-section .bar-box{
        margin:0 auto;
        width: 30px;

    }
    .header-section .search{
        width: 60px;
        height: 50px;
    }
    .header-section .bar{
        width: 60px;
        height: 50px;
    }
    .header-section .link-option {
        padding: 12px 16px 12px 0;
    }
    .header-section .header-content {
        width: calc(100% - 200px);
    }
}
@media(max-width:575px){
    .header-section #searchModal .container {
        max-width: 90%;
    }
    .header-section .link-option {
        padding: 0px 0px 0px 0;
    }
    .header-section .header-content {
        width:100%;
    }
}
/* header section end */

.footer-section{
    background-color: var(--PrimaryColor);
    position: relative;
    z-index: 0;
}
.footer-section::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/footer-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.5;
}
.footer-section::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, #B13A50 0%, #1E3369 68.01%);
z-index: -1;
}
.footer-section .f-link{
    margin-bottom: 0;
    margin-left: 0;
    list-style: none;
    padding-left: 0;
}
.footer-section .f-link li{
    position: relative;
}
.footer-section .f-link li::after{
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #E1FF00;
    opacity: 0;
    transition: all .5s ease;
}

.footer-section .f-link li a{
    font-size: 14px;
    font-weight: 400;
    color: var(--WhiteColor);
    text-decoration: none;
    line-height: 26px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}
.footer-section .f-link li .nav-link{
    padding: 0;
}
.footer-section .f-link li a:hover{
    color:#E1FF00;
    transform: translateX(15px);
}
.footer-section .f-link li:has(>a:hover)::after{
    opacity: 1;
}

.footer-section .f-link .name{
    font-size: 14px;
    font-weight: 700;
    color: #E1FF00;
    display: block;
    line-height: 20px;
}
.footer-section .f-link .designation{
    font-size: 14px;
    font-weight: 400;
    color:var(--WhiteColor);
    display: block;
    line-height: 20px;
}
.footer-section .f-link.contact li:first-child{
    padding-top: 0;
}
.footer-section .f-link.contact li{
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-section .address-contact .title{
    font-weight: 500;
    font-size: 16px;
}
.footer-section .address-contact .text{
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}
.footer-section .address-contact .text p{
    color: var(--WhiteColor) !important;
}
.footer-section .address-contact .tel-email{
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-section .address-contact .tel-email li{
    color: var(--WhiteColor);
    font-size: 14px;
}
.footer-section .address-contact .tel-email li a{
    text-decoration: none;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
    color: var(--WhiteColor);
}
.footer-section .address-contact .tel-email li a:hover{
    color:#E1FF00;
}
.footer-section .main-title{
    font-weight: 700;
    font-size:136px;
    letter-spacing: -1px;
    text-align: center;
    color:rgba(255, 255, 255, 0.1);
}
.footer-section .copyrights,.footer-section .crafted-by{
    font-size: 14px;
    line-height: 130%;
}
.footer-section .crafted-by a{
    transition: all 0.5s ease-in-out;
}
.footer-section .crafted-by a:hover{
    color:#E1FF00 !important;
}
.footer-section .dot-shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 100%;
    background: url(../images/footer-dots.svg);
    background-repeat: repeat-x;
    background-size: auto 100%;
    animation: moveDots 5s linear infinite;
}
.f-link span.name, span.designation {
    font-size: 16px !important;
}
@keyframes moveDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@media(min-width:1500px){
    .footer-section .dot-shape{
        animation: moveDots 20s linear infinite;
    }
}
@media(min-width:1600px){
    .footer-section .dot-shape{
        animation: moveDots 30s linear infinite;
    }
}

@media(max-width:1399px){
    .footer-section .dot-shape{
        animation: moveDots 10s linear infinite;
    }
    .footer-section .main-title{
        font-size: 115px;
    }
}
@media(max-width:1199px){
    .footer-section .dot-shape{
        animation: moveDots 15s linear infinite;
    }
    .footer-section .main-title{
        font-size: 95px;
    }
}
@media(max-width:991px){
    .footer-section .dot-shape{
        animation: moveDots 25s linear infinite;
    }
    .footer-section .main-title{
        font-size: 70px;
    }
}
@media(max-width:767px){
    .footer-section .dot-shape{
        animation: moveDots 45s linear infinite;
    }
    .footer-section .main-title{
        font-size: 53px;
    }
}
@media(max-width:575px){
    .footer-section .dot-shape{
        animation: moveDots 70s linear infinite;
    }
}
