/* Normalize.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');

/* Animate.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Slick Carousel */
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css');

/* AOS (Animation On Scroll) */
@import url('https://unpkg.com/aos@2.3.4/dist/aos.css');

/* Font Awesome 6 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
/* Import Fonts in CSS File */
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');



/* ====== RESET ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px; /* 1rem = 16px */
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ====== SCROLLBAR CUSTOMIZATION ====== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  box-shadow: inset 0 0 5px grey;
}
::-webkit-scrollbar-thumb {
  background: #ed2d39;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #07074e;
}

::selection{
  background-color: #ed2d39;
  color: #000;
}

/* ====== TYPOGRAPHY ====== */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

/* ====== BUTTONS & FORMS ====== */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ====== IMAGES & LISTS ====== */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====== UTILITY CLASSES ====== */
.no-pad {
  padding: 0 !important;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* ====== ACCESSIBILITY ====== */
:focus-visible {
  outline: 2px dashed #333;
  outline-offset: 2px;
}


h1{
  font-size: 60px;
  font-weight: 400;
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
}

h2{
  font-size: 35.5px;
  font-weight: 400;
  line-height: 47.34px;
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
}


h2{
  font-size: 30px;
  font-weight: 400;
  font-family: 'Play', sans-serif;
  text-transform: uppercase;
}

h4{
  font-size: 25px;
  font-weight: 400;
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
}


header .uper-header {
    background: #283891;
    padding-top: 60px;
}

header .down-header {
    background: #fff;
}

header .uper-header .btn-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 23px;
}

header .uper-header .btn-box .t-btn {
    font-size: 14.5px;
    padding: 17px 36px;
    color: #fff;
    letter-spacing: 1px;
    background: #ed2d39;
    font-family: 'play';
    font-weight: bold;
    border-radius: 20px 20px 0px 0px;
    line-height: 1;
}

header .uper-header .btn-box .t-btn:first-child {
    padding: 17px 26px;
    background: #7d7d7d;
}

header .down-header .menu-box ul {
    display: flex;
    gap: 40px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

header .down-header .menu-box {
    height: 100%;
}

header .down-header .menu-box ul li a {font-family: 'Michroma';color: #283891;font-weight: 700;font-size: 18px;letter-spacing: 1px;transition: .3s;    padding: 120px 0 87px;display: inline-block;}

header .down-header .menu-box ul li a:hover {
    transition: .3s;
    color: #ed2d39;
}

header .down-header .logo-box {
    margin-top: -40px;
    position: relative;
    width: fit-content;
}

header .down-header .logo-box::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    width: 90%;
    height: 80%;
    background: #fff;
    z-index: 0;
    border-radius: 100%;
}

header .down-header .logo-box img {
    z-index: 1;
    position: relative;
}

footer .uper-footer {
    background: #283891;
    color: #fff;
    padding: 120px 0 190px;
}

footer .down-footer {
    background: #07074e;
    color: #fff;
    text-align: center;
    padding: 41px 0 44px;
}

footer .down-footer .text {
    text-align: center;
    width: 100%;
}

footer .uper-footer .footer-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

footer .uper-footer .footer-menu ul a {
    font-family: 'Michroma';
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.5px;
    transition: .3s;
}

footer .uper-footer .footer-menu ul a:hover {
    transition: .3s;
    color: #ed2d39;
}

footer .uper-footer .text h4 {font-weight: 700;text-align: center;}

footer .uper-footer .text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.divider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
        display: block;
}

.red-divider {
    background: #ed2d39;
}

footer .uper-footer .text a {
    margin-top: -10px;
}

footer .uper-footer .text a, footer .uper-footer .text p, footer .down-footer .text p {
    display: inline-block;
    line-height: 40px;
    font-size: 22.32px;
    font-family: 'Montserrat';
    font-weight: 500;
}

footer .uper-footer .col-lg-3:nth-child(3) {
    margin-left: -40px;
    margin-right: 40px;
}

footer .uper-footer .col-lg-3:nth-child(3) .text {
    margin-left: -30px;
}

footer .uper-footer .text a {
    transition: .3s;
}

footer .uper-footer .text a:hover {
    transition: .3s;
    color: #ed2d39;
}

footer .uper-footer .text .social-box {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}


header .down-header .menu-box .menu-item-has-children {
    position: relative;
}

header .down-header .menu-box .menu-item-has-children .sub-menu {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0;
    padding: 52px 85px 41px;
    background: #ed2d39;
    z-index: 9;
    top: 100%;
    height: fit-content;
    align-items: center;
    display: none;
}

header .down-header .menu-box .menu-item-has-children .sub-menu a {
    padding: 0px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    width: max-content;
    transition: .3s;
}

header .down-header .menu-box .menu-item-has-children .sub-menu a:hover{
  transition: .3s;
  color:#283891;
}

header .down-header .menu-box .menu-item-has-children::before {
    content: "";
    opacity: 0;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/menu-hover.png);
        height: 57px;
    width: 36px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
}

header .down-header .menu-box .menu-item-has-children:hover::before{
    opacity: 1;

}
header .down-header .menu-box .menu-item-has-children:hover .sub-menu{
  
    display: flex;
}


.hero-banner {
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner .uper-banner {
    padding: 241px 0;
}

.hero-banner .down-banner {
    background: #283891a6;
    padding: 66px 0 74px;
}

.banner-grid {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 50px;
    text-align: center;
        margin: 0 -50px 0 50px;
}

.banner-grid .banner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.banner-grid .banner-box img {
    margin-bottom: 15px;
}

.banner-grid .banner-box h3 {
    font-size: 28px;
    font-family: 'Play';
}

.banner-grid .banner-box p {
    font-family: 'Montserrat';
    line-height: normal;
}

.banner-grid .banner-box .t-btn {
    background: #7d7d7d;
    font-family: 'Play';
    font-weight: 700;
    border-radius: 10px;
    padding: 19px 22px;
    line-height: 1;
    transition: .3s;
}

.banner-grid .banner-box .t-btn:hover {
    transition: .3s;
    color: #ed2d39;
}

.hero-banner .down-banner .text h2 {
    font-size: 35.5px;
    line-height: 47px;
    font-family: 'Michroma';
    margin-bottom: 15px;
}

.hero-banner .down-banner {
    position: relative;
}

.hero-banner .down-banner::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 30%;
    top: 0;
    left: 0;
    bottom: 0;
    background: #07074e;
}

.hero-banner .down-banner .text {
    max-width: 80%;
    margin-left: -50px;
}


.home-sec-02 {
    padding: 161px 0 145px;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.third-sec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    justify-items: center;
    row-gap: 71px;
    column-gap: 80px;
    margin-left: 150px;
}

.third-sec-grid .grid-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
}

.third-sec-grid .grid-boxes h3 {
    font-size: 16.35px;
    line-height: 24px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.home-sec-02 .text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-left: 155px;
}

.home-sec-02 .text h2 {
    font-size: 35.5px;
    font-family: 'Michroma';
    line-height: 47.34px;
}

.white-divider {
    background: #fff;
}

.home-sec-02::before {content: "";position: absolute;background-image: url(../images/home-sec-03-after.png);width: 405px;height: 279px;top: 50%;left: 0;background-position: center;background-size: contain;background-repeat: no-repeat;transform: translateY(-50%);}

.home-sec-03 {
    padding: 154px 0 137px;
}

.home-sec-03 .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
        padding-right: 70px;
}

.home-sec-03 .text h3 {
    font-size: 35.5px;
    line-height: 47.37px;
    font-family: 'Michroma';
    color: #283891;
}

.home-sec-03 .text p {line-height: 25px;color: #283891;font-family: 'Montserrat';font-weight: 500;}

#button > i {
  color: #fff;  
}

#lightbox {
  /* ----- Positioning ----- */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  
  /* The code above makes sure that the
  lightbox covers the entire page*/
  
  /* ----- Visibility ----- */
  display: none;
  
  /* ----- Styling ----- */
  background-color: rgba(0, 0, 0, 0.95);
  
  /* Normally, most lightboxes do not use
  a completely solid black, but with about
  90-95% opacity so that the background is
  somewhat visible */
}

#video-wrapper {
  /* ----- Positioning ----- */
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
  /* The code above makes sure the video is
  both vertically and horizontally centered
  to the screen */
  
  /* ----- Styling ----- */
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  
  /* The code above is used to add a little shadow to the video making blend in better */
}

#close-btn {
  /* ----- Text ----- */
  color: grey;
  font-size: 25px;
  
  /* ----- Positioning ----- */
  position: fixed;
  top: 3%;
  right: 3%;
  z-index: 2;
  
  /* The code above is used to put the button on the upper right corner of the lightbox */
  
  /* ----- Transformations ----- */
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  
   /* The code above is used to initialize the scale for the button so that it can be used in transitions */
  
  /* ----- Transitions ----- */
  -webkit-transition: transform .5s ease, color .5s ease;
  -moz-transition: transform .5s ease, color .5s ease;
  -ms-transition: transform .5s ease, color .5s ease;
  -o-transition: transform .5s ease, color .5s ease;
  transition: transform .5s ease, color .5s ease;
}

#close-btn:hover {
  /* ----- Text ----- */
  color: white;
  
  /* ----- Styling ----- */
  cursor: pointer;
  
  /* ----- Transformations ----- */
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  
    /* ----- Transitions ----- */
  -webkit-transition: transform .5s ease, color .5s ease;
  -moz-transition: transform .5s ease, color .5s ease;
  -ms-transition: transform .5s ease, color .5s ease;
  -o-transition: transform .5s ease, color .5s ease;
  transition: transform .5s ease, color .5s ease;
}

#button {
    background: #ffffff6b;
    height: 106px;
    width: 106px;
    border-radius: 100%;
}

.home-sec-03 .video-sec {
    background: #7d7d7d;
    width: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 10px 0 0 10px;
    height: 538px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-sec-03 {
    position: relative;
}


.subpage-banner {
    color: #fff;
    padding: 137px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.subpage-content {
    padding: 150px 0 125px;
}

.subpage-content p {
    color: #283891;
    line-height: 25px;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-bottom: 30px;
}

.subpage-content p a {
    color: #ed2d39;
    text-decoration: underline;
}

.subpage-content .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.subpage-content h2 {
    color: #283891;
    font-size: 35.5px;
    font-family: 'Michroma';
    line-height: 47.37px;
}

.subpage-content h3 {
    color: #ed2d39;
    font-family: 'Michroma';
    font-size: 25px;
    line-height: 47.37px;
}

.subpage-content .t-btn {
    color: #fff;
    transition: .3s;
    background: #283891;
    padding: 20px 37px;
    line-height: 1;
    font-family: 'Play';
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration:none;
}

.subpage-content .t-btn:hover {
    transition: .3s;
    background: #ed2d39;
}

.subpage-content 
 .divider {
    width: 250px;
}



@media only screen and (max-width: 1500px) {
  header .down-header .menu-box ul {
    gap: 30px;
}

.home-sec-02 .text {
    padding-left: 50px;
}

.third-sec-grid {
    row-gap: 40px;
    column-gap: 40px;
    margin-left: 50px;
}

.home-sec-03 .text {
    padding-right: 0;
}

.home-sec-03 .text h3, .home-sec-02 .text h2, .hero-banner .down-banner .text h2 {
    font-size: 35px;
}

footer .uper-footer .col-lg-3:nth-child(3) {
    margin-left: -20px;
    margin-right: 20px;
}

h4 {
    font-size: 20px;
}

}
@media only screen and (max-width: 1400px) {

  .hero-banner .uper-banner {
    padding: 150px 0;
}

.hero-banner .down-banner .text {
    max-width: 100%;
    margin-left: 0;
}

.banner-grid {
    margin: 0;
        gap: 20px;
}

.hero-banner .down-banner::before {
    width: 25%;
}

.home-sec-02 {
    padding: 100px 0;
}

    .home-sec-02 .text {
        padding-left: 0;
    }
    .home-sec-03 .video-sec {
    width: 55%;
}

footer .uper-footer {
    padding: 100px 0;
}

footer .down-footer {
    padding: 20px 0;
}

.subpage-content {
    padding: 100px 0;
}

    footer .uper-footer .col-lg-3:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }

    footer .uper-footer .text a, footer .uper-footer .text p, footer .down-footer .text p
 {
    line-height: 25px;
    font-size: 18px;
}





}
@media only screen and (max-width: 1199px) {
      header .down-header .menu-box ul {
        gap: 20px;
    }

    header .down-header .menu-box ul li a {
    font-size: 15px;
    padding: 110px 0 100px;
}

h1 {
    font-size: 40px;
}

    .hero-banner .uper-banner {
        padding: 100px 0;
    }

        .home-sec-03 .text h3, .home-sec-02 .text h2, .hero-banner .down-banner .text h2
 {
        font-size: 25px;
    }

        .hero-banner .down-banner .text {
        margin-right: 20px;
    }

    .banner-grid .banner-box {
    gap: 15px;
}

.banner-grid .banner-box .t-btn {
    padding: 15px 20px;
}

    .third-sec-grid {
        margin-left: 0;
    }

    .home-sec-03 {
    padding: 100px 0;
}

footer .uper-footer .footer-menu ul a {
    font-size: 17px;
    line-height: 40px;
}



}
@media only screen and (max-width: 1024px) {
  header {
    display: none;
}

    .home-sec-03 .video-sec {
        height: 350px;
    }

        h4 {
        font-size: 16px;
    }
    footer .uper-footer .col-lg-3:nth-child(3) .text {
    margin-left: 0;
}

.footer-menu {
    justify-items: center;
}



}
@media only screen and (max-width: 991px) {


    h1 {
        text-align: center;
    }
    .home-sec-03 .text h3, .home-sec-02 .text h2, .hero-banner .down-banner .text h2 {
        text-align: center;
    }
        .hero-banner .down-banner .text {
        margin-right: 0;
        margin-bottom: 40px;
    }
        .third-sec-grid {
        row-gap: 20px;
        column-gap: 20px;
                margin-bottom: 40px;
    }
    p {
    text-align: center;
}
.home-sec-03 .video-sec {

    width: 100%;
    position: relative;
    top: 0;
    right: 0;
    transform: translateY(0);
    border-radius: 0;
    margin-top: 40px;
}
    .home-sec-03 {
        padding: 100px 0 0;
    }

    img {
    margin: auto;
}

footer .uper-footer .row{
    row-gap: 40px;
}

footer .uper-footer .text
 {
    width: fit-content;
    margin: auto !important;
}

    footer .uper-footer {
        padding: 50px 0;
    }

 footer .down-footer .text p {
        font-size: 15px;
    }
.subpage-content .text {
    align-items: center;
}
    .subpage-content {
        padding: 50px 0;
    }

    .subpage-banner {
    padding: 100px 0;
}





}
@media only screen and (max-width: 767px) {
        h1 {
        font-size: 30px;
    }

        .banner-grid {
        flex-direction: column;
                gap: 50px;

    }

    .third-sec-grid {
    grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .home-sec-03 {
        padding: 50px 0 0;
    }
        .home-sec-02, .hero-banner .down-banner {
        padding: 50px 0;
    }

    .subpage-content h2, h2, .subpage-content h3, .home-sec-03 .text h3, .home-sec-02 .text h2, .hero-banner .down-banner .text h2 {
    font-size: 25px;
    line-height: 30px;
    text-align:center;
}

.subpage-content h2{
    margin-bottom:20px;
}

}
@media only screen and (max-width: 575px) {
        h1 {
        font-size: 25px;
    }
        .home-sec-03 .text h3, .home-sec-02 .text h2, .hero-banner .down-banner .text h2 {
        font-size: 20px;
        line-height: 30px;
    }

        .third-sec-grid {
        grid-template-columns: 1fr;
    }
        footer .down-footer .text p {
        font-size: 12px;
        padding: 0 10px;
    }

}