* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box; 
}

:root {
    font-size: 10px;
}

html, body {
    margin: 0;
    scroll-behavior: smooth;
    position: relative;
}

@font-face {
    font-family: HK-Grotesk;
    src: url('../fonts/Hanken_Grotesk/HankenGrotesk-VariableFont_wght.ttf');
}

/* splash screen style starts here */
.splash-screen {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 110;
    background-color: #FFFFFF;
}

.splash-screen-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    background-color: rgb(125, 0, 66, 0.2);
}

.splash-screen-contents .logo {
    /* height: 12.4rem; */
    width: auto;
    margin-bottom: 2rem;
}

.splash-screen-contents .title-text {
    color: #252525;
    text-align: center;
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 3.6rem */
    margin-bottom: 0.5rem;
}

.splash-screen-contents .sub-title {
    color: #6A6A6A;
    text-align: center;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
/* splash screen style ends here */

/* navbar style starts here */
.navbar {
    font-family: 'HK-Grotesk', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    z-index: 99;

}

.navbar-items {
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 6rem;
    align-items: center;
    padding: 1.2rem 2rem 1rem 2rem;
    display: flex;
    gap: 1rem;
    overflow-x: scroll;
}

.navbar-items::-webkit-scrollbar {
    display: none;
}

.navbar .navbar-items a {
    text-decoration: none;
    color: #252525;
    padding-bottom: 0.7rem;
}

.navbar a.active {
    color: #7D0042;
    border-bottom: 2px solid #7D0042;
}
/* navbar style ends here */

/* header logo */
.header {
    display: flex;
    gap: 1rem;
    padding: 2rem 2rem 1.4rem 2rem;
}

.header .logo {
    width: 8.2rem;
    height: 8.2rem;
}

.header .logo img {
    width: 8.2rem;
    height: 8.2rem;
    border-radius: 0.6rem;
}

.header .header-title {
    font-size: 2.4rem;
    font-weight: 600;
}

.header .sub-title {
    color: #6A6A6A;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-3 {
    display: flex;
    background-color: #FFFFFF;
    z-index: 9;
    width: 100%;
    justify-content: space-evenly;
    padding: 1rem 0;
    height: 6rem;
    align-items: center;
}
/* header styles ends here */

/* lang button styles starts here */
.lang-btn {
    position: fixed;
    top: 1.7rem;
    right: 2rem;
    float: right;
    z-index: 100;
}

.lang-btn .dropbtn {
    position: relative;
    border: none;
    padding: 0.5rem 0.6rem;
    border-radius: 0.4rem;
    color: #252525;
    text-align: center;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #FFFFFF;
    background-image: url("../images/globe.png");
    background-position: center;
    background-size: 2rem;
    width: 2rem;
    height: 2rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    right: 0;
    border-radius: 1rem;
}

.dropdown-content a {
    color: #252525;
    padding: 1.2rem 1.6rem;
    text-decoration: none;
    display: block;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.4rem;
}

.show {display:block;}
/* lang buttton styles ends here */

main {
    position: relative;
    top: 22rem;
    margin-bottom: 20rem;
}

/* divider styles starts here */
.divider-center-with-line {
    text-align: center;
    font-family: 'HK-Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: normal;
    letter-spacing: 0.13rem;
    color: #5F627A;
    align-items: center;
    display: flex;
    text-transform: uppercase;
    padding: 2rem 0 1.4rem 0;
}

.divider-center-with-line::before,
.divider-center-with-line::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #EBEAEF;
}

.divider-center-with-line:not(:empty)::before {
  margin-right: 1rem;
  margin-left: 2rem;
}

.divider-center-with-line:not(:empty)::after {
  margin-left: 1rem;
  margin-right: 2rem;
}

/* divider with text left right line style starts here */
.divider-left-with-line {
    text-align: left;
    font-family: 'HK-Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: normal;
    letter-spacing: 0.13rem;
    color: #5F627A;
    align-items: center;
    display: flex;
    text-transform: uppercase;
    padding: 2rem 0 1.4rem 2rem;
}

.divider-left-with-line::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #EBEAEF;
}

.divider-left-with-line:not(:empty)::after {
  margin-left: 1rem;
  margin-right: 2rem;
}
/* divider with text left right line style ends here */

/* divider text left no line style starts here */
.divider-without-line-left {
    text-align: left;
    font-family: 'HK-Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: normal;
    letter-spacing: 0.13rem;
    color: #5F627A;
    align-items: center;
    display: flex;
    text-transform: uppercase;
    padding: 2rem 0 1.4rem 2rem;
}
/* divider text left no line style ends here */

/* divider text left no line style starts here */
.divider-without-line-center {
    text-align: center;
    font-family: 'HK-Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: normal;
    letter-spacing: 0.13rem;
    color: #5F627A;
    align-items: center;
    display: flex;
    text-transform: uppercase;
    padding: 2rem 2rem 1.4rem 2rem;
    justify-content: center;
}
/* divider text left no line style ends here */

/* divider style ends here */

/* primary button style starts here */
.primary-button {
    background-color: #FFFFFF;
    border-radius: 0.6rem;
    border: none;
    width: 9.4rem;
    height: 3.6rem;
    font-size: 1.4rem;
    color: #7D0042;
    /* text-transform: capitalize; */
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}
/* primary button style ends here */

/* banner styles starts here */
.banner {
    position: relative;
    height: 18rem;
    width: 100%;
}

.banner .overlay {
    width: -webkit-fill-available;
    z-index: 2;
    position: absolute;
    top: 0;
    background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    height: 100%;
    opacity: 0.5;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    max-width: 24.1rem;
    padding: 2rem;
    position: absolute;
    top: 0;
    z-index: 9;
}

.banner-content .banner-title {
    color: #FFFFFF;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.5rem;
}

.banner-content .banner-subtext {
    color: #FFFFFF;
    font-family: 'HK-Grotesk', sans-serif;
    /* opacity: 0.7; */
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1rem;
}
/* banner styles ends here */

/* banner with margin styles starts here */
.banner-with-margin {
    position: relative;
    height: 18rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.banner-with-margin .overlay {
    width: -webkit-fill-available;
    z-index: 2;
    position: absolute;
    top: 0;
    background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    height: 100%;
    opacity: 0.5;
    border-radius: 1rem;
}

.banner-with-margin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.banner-with-margin .banner-content {
    max-width: 24.1rem;
    padding: 2rem;
    position: absolute;
    top: 0;
    z-index: 9;
}

.banner-with-margin .banner-content .banner-title {
    color: #FFFFFF;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.5rem;
}

.banner-with-margin .banner-content .banner-subtext {
    color: #FFFFFF;
    font-family: 'HK-Grotesk', sans-serif;
    /* opacity: 0.7; */
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1rem;
}
/* banner with margin styles ends here */

/* grid container style starts here */
.grid-container {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 1rem;
    padding: 0 2rem
}

.grid-container .grid-item {
    display: flex;
    align-items: center;
    background: rgb(172, 61, 72, 0.1);
    height: 5rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: 1rem;
    
}

.grid-container .grid-item .grid-icon {
    background-color: rgb(172, 61, 72, 0.1);
    border-radius: 1rem 0 0 1rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-container .grid-item .grid-text {
    text-transform: capitalize;
    color: #252525;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    width: 7rem;
}
/* grid container style ends here */

/* small carousal with icon and label style starts here */
.small-carousal-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    max-width: 100%;
    margin-bottom: 2rem;
}

.small-carousal-wrapper::-webkit-scrollbar {
    display: none;
}

.small-carousal-wrapper .carousal-item:first-child {
    margin-left: 2rem;
    margin-right: 1rem;
}

.small-carousal-wrapper .carousal-item:last-child {
    margin-left: 1rem;
    margin-right: 2rem;
}

.small-carousal-wrapper .carousal-item {
    margin-left: 1rem;
    margin-right: 1rem;
    width: 8.4rem;
}

.small-carousal-wrapper .carousal-item .carousal-image {
    object-fit: cover;
    border-radius: 1rem;
    height: 8.4rem;
    width: 8.4rem;
    background-color: rgb(172, 61, 72, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-carousal-wrapper .carousal-item .carousal-image:hover {
    background-color: rgb(172, 61, 72);
}

.small-carousal-wrapper .carousal-item .carousal-image img {
    object-fit: cover;
    height: 4rem;
    width: 4rem;
}

.small-carousal-wrapper .carousal-item .carousal-image:hover img {
    filter: invert(99%) sepia(2%) saturate(0%) hue-rotate(242deg) brightness(112%) contrast(100%);
}

.small-carousal-wrapper .carousal-item .carousal-label {
    color: #252525;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 1rem;
}
/* small carousal with icon and label ends here */

/* slider styles starts here */
.slide-wrapper .overlay {
    width: 95%;
    z-index: 2;
    position: absolute;
    top: 0;
    border-radius: 1rem;
    background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    height: 87%;
    opacity: 0.5;
}

.carousal-subtxt {
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #252525;
}

.slider-content {
    max-width: 24.1rem;
    padding: 2rem;
    position: absolute;
    top: 0;
    z-index: 9
}

.slider-content .slider-title {
    color: #FFFFFF;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.5rem;
}

.slider-content .slider-subtext {
    color: #FFFFFF;
    font-family: 'HK-Grotesk', sans-serif;
    /* opacity: 0.7; */
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1rem;
}

.flickity-page-dots {
    bottom: 0px !important;
}

.slider-2 .flickity-page-dots {
    bottom: -12px !important;
}

.flickity-page-dots .dot {
    background-color: #BBBDCF !important;
}

.flickity-page-dots .dot.is-selected {
    -webkit-animation: check 0.4s linear forwards;
    animation: check 0.2s linear forwards;
}

.slider {
    height: 18rem;
}

.slide {
    height: 100%;
    width: 30rem;
}

.slide-wrapper {
    border-radius: 10px;
    width: 95%;
    margin: auto;
    height: 156px;
}

.slide:first-child {
    z-index: 5;
}
    
.slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

@-webkit-keyframes check {
    25% {
        width: 8px;
        border-radius: 10px;
    }
    50% {
        width: 12px;
        border-radius: 10px;
    }
    75% {
        width: 16px;
        border-radius: 10px;
    }
    100% {
        width: 20px;
        border-radius: 10px;
    }
}
  
@keyframes check {
    25% {
        width: 8px;
        border-radius: 10px;
    }
    50% {
        width: 12px;
        border-radius: 10px;
    }
    75% {
        width: 16px;
        border-radius: 10px;
    }
    100% {
        width: 20px;
        border-radius: 10px;
    }
}
/* slider style ends here */

/* carousal with label style starts here */
.carousal-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    max-width: 100%;
}

.carousal-wrapper::-webkit-scrollbar {
    display: none;
}

.carousal-wrapper .carousal-item:first-child {
    margin-left: 2rem;
    margin-right: 1rem;
}

.carousal-wrapper .carousal-item:last-child {
    margin-left: 1rem;
    margin-right: 2rem;
}

.carousal-wrapper .carousal-item {
    margin-left: 1rem;
    margin-right: 1rem;
    width: 14rem
}

.carousal-wrapper .carousal-item .carousal-image img {
    object-fit: cover;
    border-radius: 1rem;
    height: 18rem;
    width: 14rem;
}

.carousal-wrapper .carousal-item .carousal-label {
    color: #252525;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
/* carousal with label style ends here */

/* medium carousal with label style starts here */
.medium-carousal-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    max-width: 100%;
}

.medium-carousal-wrapper::-webkit-scrollbar {
    display: none;
}

.medium-carousal-wrapper .carousal-item:first-child {
    margin-left: 2rem;
    margin-right: 1rem;
}

.medium-carousal-wrapper .carousal-item:last-child {
    margin-left: 1rem;
    margin-right: 2rem;
}

.medium-carousal-wrapper .carousal-item {
    margin-left: 1rem;
    margin-right: 1rem;
    width: 8.4rem
}

.medium-carousal-wrapper .carousal-item .carousal-image img {
    object-fit: cover;
    border-radius: 1rem;
    height: 8.4rem;
    width: 8.4rem;
}

.medium-carousal-wrapper .carousal-item .carousal-label {
    color: #252525;
    font-family: 'HK-Grotesk', sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
/* medium carousal with label style ends here */

/* sticky footer style starts here */
.vl {
    height: 4rem;
    border-left: 1px solid #DDDCE2;
    border-radius: 0.05rem;
}

.sticky-footer-2 {
    display: flex;
    background-color: #FFFFFF;
    z-index: 9;
    width: 100%;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    height: 6rem;
    align-items: center;
}

.sticky-footer-3 {
    display: flex;
    background-color: #FFFFFF;
    z-index: 9;
    width: 100%;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    height: 6rem;
    align-items: center;
}

.sticky-footer-4 {
    display: flex;
    background-color: #FFFFFF;
    z-index: 9;
    width: 100%;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    height: 6rem;
    align-items: center;
}

.sticky-footer-4 img {
    width: 9rem;
}
/* sticky footer style ends here */

/* Login Page style starts here  */
.login-screen{
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 110;
    background-color: #FFFFFF;
}
.login-screen-design-img-top{
    position: absolute;
    left: calc(100% - 114px);
}
.login-screen-design-img-bottom{
    position: absolute;
    top: calc(100% - 142px);
}
.login-screen-contents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.login-screen-main-text{
    color: #252525;
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 30px;
    line-height: 36px;
}
.login-screen-form form{
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    width: 330px;
}
.login-screen-form label {
    color: #252525;
    display: block; 
    margin-bottom: 5px; 
    text-align: left;
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

.login-screen-form input {
    padding: 15px;
    margin-bottom: 10px; 
    width: 100%;
    height: 48px;
    border-radius: 6px;
    border: 1px solid #EDEDED;
}
.login-screen-form input:focus-visible {
    outline-color: #005596;
}
.login-screen-form input::placeholder {
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    opacity: 50%;
}
.login-screen-form button {
    width: 100%;
    height: 48px;
    border: 1px solid #005596;
    border-radius: 6px;
    background: #005596;
    color: #FFFFFF;
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;

}
.login-screen-text span,
.login-screen-text a{
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #252525;
}
.login-screen-text .link{
    color: #005596;
}
.login-screen-text .link:hover{
    font-weight: 600;
    cursor: pointer;
}
/* Login Page style ends here  */

/* Modal style starts here*/
.modal {
    display: none; 
    position: fixed;
    z-index: 100; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto;
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    max-width: 350px;
}
.modal-content-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 15px;
}
.modal-content-heading{
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #252525;
    margin-bottom: 5px;
}
.modal-content-description{
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    color: #252525;
    margin-top: 5px;
}
.modal-content-button{
    width: 100%;
    height: 48px;
    border-radius: 6px;
    background-color : #FFFFFF;
    border: 1px solid #005596; 
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #005596;
}
.modal-content-button-main{
    background-color : #005596;
    color: #FFFFFF;
}.modal-footer{
    display: flex;
    gap: 10px; 
    width: 100%; 
}
.close {
    font-weight: 600;
    font-size: 24px;
    color: #6A6A6A;
    cursor: pointer;
}
.details-form{
    width: 100%;
    margin-bottom: 15px;
}
.details-form label{
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 16px;
    margin-bottom: 5px; 
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #252525;
}
.details-form textarea{
    width: 100%;
    padding: 15px;
    height: 144px;
    border-radius: 6px;
    border: 1px solid #EDEDED;
} 
.details-form textarea:focus-visible{
    outline-color: #005596;
} 
.details-form textarea::placeholder {
    font-family: 'HK-Grotesk',sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    opacity: 50%;
}
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none; 
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Modal style ends here*/