@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

.logo-image {
    width: 200px;
}

a {
    text-decoration: none;
}

p{
    color: #5A5A5A;
}

.color-1 {
    color: #064296;
}

.color-2 {
    color: #351E76;
}

.bg-1 {
    background-color: #064296;
}

.bg-2 {
    background-color: #351E76;
}

header {
    left: 0;
    right: 0;
}

.nav-item>button{
    border: none;
    background-color: transparent;
    font-weight: 500;
}

.scroll-heaader {
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 2;
}

.scrolled {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.banner {
    position: relative;
    overflow: hidden;
}

.banner-image-animation{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: zoomInBackground 10s ease-in-out infinite;
}

@keyframes zoomInBackground {
    0% {
      transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
  }



.banner-video {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* toggler button */


.navbar-toggler{
    border: none !important;
    padding: 0 !important;    
}

.toggler-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .toggler-container {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
  }
  
  .checkmark-toggler {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 40px;
  }
  
  .checkmark-toggler span {
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }

  
  .checkmark-toggler span:nth-child(1) {
    top: 10%;
    right: 2.5px;
    left: 2.5px;
  }
  
  .checkmark-toggler span:nth-child(2) {
    top: 50%;
    right: 2.5px;
    left: 2.5px;
  }
  
  .checkmark-toggler span:nth-child(3) {
    top: 90%;
    right: 2.5px;
    left: 2.5px;
  }
  
  .toggler-container input:checked + .checkmark-toggler span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
  }
  
  .toggler-container input:checked + .checkmark-toggler span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);
  }
  
  .toggler-container input:checked + .checkmark-toggler span:nth-child(3) {
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    opacity: 0;
  }

/* toggler button */

.login-button {
    border: 0;
    padding: 14px 22px;
    border-radius: 30px;
    background-color: #064296;
    color: white;
    cursor: pointer;
    transition: ease .8s;
}

.login-button:hover {
    background-color: #003681;
    box-shadow: #5C5E5E 1px 2px 4px;
}

.element-link {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: ease .4s;
}

.element-link:hover {
    color: #e4e4e4;
    text-shadow: #161616 1px 2px 4px;
}

.header-navlinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-navlinks ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element-button {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}


.drop-down-content {
    padding: 20px !important;
    background-color: #111111c9;
    border-radius: 0;
}

.drop-down-content li{
    color: white;
}


.headline {
    font-family: "Libre Baskerville", serif;
    font-size: 43px;
    font-weight: 500;
    color: white;
}

.banner-headline {
    min-height: 600px;
}


.line {
    display: block;
    width: 80px;
    height: 1px;
    background-color: #351E76;
}

.section-padding {
    padding: 96px 0px;
}

.headline-line {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    color: #064296;
}

.sub-headline {
    font-size: 46px;
    font-weight: 500;
}

.paragraph-text {
    font-size: 18px;
}

.action-button {
    color: white;
    background-color: #064296;
    padding: 20px 10px;
    border-radius: 30px;
    display: block;
    text-align: center;
    width: 280px;
}

.action-button-white {
    color: #064296;
    background-color: #ffffff;
    padding: 20px 10px;
    border-radius: 30px;
    display: block;
    text-align: center;
    width: 280px;
}



/* Carousel Style */

.operate-swiper-section {
    position: relative;
}

.swiper {
    width: 100%;
    overflow: visible;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.swiper-slide {
    width: 80%;
}


.swiper-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.integrity-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    width: 60%;
    padding: 16px 28px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    right: 20px;
    overflow-x: scroll;
}

.integrity-content::-webkit-scrollbar {
    display: none;
}

.integrity-headline {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: bold;
}

.content {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.explore-button {
    width: fit-content;
    display: block;
    padding: 10px 22px;
    color: white;
    border-radius: 20px;
}

.swiper-button-container {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center
}

.swiper-button {
    background-color: white;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
    left: auto !important;
    right: auto !important;
}

.swiper-button-next {
    transform: translateX(50px);
}

.swiper-button-prev {
    transform: translateX(-50px);
}

.swiper-button::after {
    font-size: 20px !important;
    color: #351E76;
    font-weight: 900;
}



.location-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    width: 32%;
    padding: 16px 36px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    right: 40px;
}


/* values section */


.values-section {
    background-image: url("../assets/backgrouund-1.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.values-text {
    font-family: "Libre Baskerville", serif;
    font-size: 38px;
    color: white;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.5;
    transform: scale(0.8);
}

.center-slide {
    opacity: 1;
    transform: scale(1.1) !important;
}

.side-slide {
    opacity: 0.6;
    transform: scale(0.9) !important;
}



/* cta section */

.call-to-action {
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-headline {
    font-size: 48px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}


/* footer section */


.footer-column {
    border-right: 1px solid #351e7652;
    padding-right: 16px;
}

.footer-links,
.footer-links li {
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: #5C5E5E;
    display: block;
    margin-bottom: 16px;
    transition: ease .6s;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

.footer-links a:hover {
    color: #351E76;
}

.bottom-links a {
    font-size: 14px;
    color: #5C5E5E;

}




/* login form */


.login-form {
    background-color: #000000b3;
    padding: 100px;
    border-radius: 20px;
}


.login-section {
    background-image: url("../assets/login-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.forgot-password {
    font-size: 14px;
    color: white;
}

.login-form label {
    font-size: 12px;
    color: white;
    margin-bottom: 12px;
}

.login-form input {
    width: 100%;
    height: 45px;
    border: 1px solid #003681;
    border-radius: 10px;
    background-color: #00000099;
    color: white;
    padding: 0 16px;
    font-size: 14px;
}



.card-headline {
    font-size: 28px;

}

.card-paragraph {
    font-size: 14px;
}

.card-link {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}

.contact-card {
    padding: 16px;
    box-shadow: 0px 4px 4px #00000040;
    border-radius: 5px;
}

/* about */

.story-years h3{
    font-size: 40px;
    font-weight: bold;
}

.story-years p{
    font-size: 18px;
}

.numbers-text{
    font-size: 64px;
    font-weight: 500;
}

.blue-box{
    background-color: #003681;
    width: 25px;
    height: 20px;
}

.banner-links{
    color: white;
    font-size: 18px;
    border-radius: 8px;
}

.banner-links:hover{
    background-color: #0e448f;
}

.value-second-column{
    transform: translateY(-40px)
}


/* team page */

.select-team{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 34px;
    row-gap: 10px;
    text-decoration: underline;
    padding: 0;
}

.select-team li{
    cursor: pointer;
}

.select-team  button{
    border: none;
    background-color: transparent;
}

.sub-team-headline{
    font-size: 18px;
    font-weight: 500;
    list-style: none;
    display: flex ;
    flex-wrap: wrap;
    padding: 0;
    gap: 24px;
}


.sub-team-headline li button{
    cursor: pointer;
    color: #11111199;
    transition: ease .2s;
}

.select-team-headline{
    color: #5c5e5e9c;
    text-decoration: underline;
    
}

.team-headline-active{
    color: #064296;
    font-weight: 500;
}

.sub-team-headline-active{
    color: #111111 !important;
    text-decoration: underline ;
    font-weight: 600;
    text-shadow: 1px 0px 1px #11111199;
}


.team-section-container{
    background-color: #F0F0F0;
    border-radius: 10px;
    display: flex;
}

.tab-content>.sub-active{
    display: block;
}


/* scroll animation */

@keyframes appear {
    from{
        transform: translateX(-500px);
        opacity: 0;
    }
    to{
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes rightAppear {
    from{
        transform: translateX(500px);
        opacity: 0;
    }
    to{
        transform: translateX(0px);
        opacity: 1;
    }
}


@keyframes downFade1 {
    from{
        transform: translateY(500px);
        opacity: 0;
    }
    to{
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes bannerFade {
    from{
        transform: translateY(-500px);
        opacity: 1;
    }
    to{
        transform: translateY(0px);
        opacity: 1;
    }
}


.banner-fade{
    animation: fadeInUp 1.5s ease-out forwards;
}


.left-fade1{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    transition: ease .4s;
}


.right-fade1{
    animation: rightAppear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    transition: ease .4s;
}

.down-fade1{
    animation: downFade linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    transition: ease 1s;
}




/* Mega menu */

.mega-menu{
    position: absolute;
    width: 100vw;
    top: 83.4px;;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: #ffffff;
    min-height: 20vh;
    color: black;
    text-shadow: none;
    box-shadow: 1px 2px 4px #11111120;
    display: none;
    overflow-y: auto;
}

.mega-links{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    transition: ease .4s;
    display: block;
}

.mega-links[href]:hover{
    color: #0e448f;
}

.social-media-icons{
    width: 32px;
    height: 32px;
}

.i-icon{
    fill: #919191;
}

.i-icon:hover{
    fill: #064296;
}


.city-button{
    background-color: #064296;
    color: white;
    width: 100px;
}

.city-button:hover{
    border: 1px solid #064296;
}

.banner-subheadline{
    font-size: 0.9em;
    color: white;
    font-family: "Montserrat", sans-serif;
}

.hr{
    width: 80px;
    height: 1.2px;
    background-color: white;
}