/* Global Styles for ZNATY */

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Variables */
    --primary-blue: #0061FF;
    --dark-blue: #16419F;
    --light-blue: #E6F0FF;
    --white: #FFFFFF;
    --black: #000000;
    --dark-text: #202020;
    --light-text: #6B6B6B;
    --bg-blue: #0052D9;
}

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: -5%;
    /* line-height: 1.6; */
    color: var(--dark-text);
    background-color: #FDFDFD;
    overflow-x: hidden;
    height: 100%;
}
main{
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4.5vw;
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: -0.063vw;
}

h2 {
    font-size: 2.376vw;
}

h3 {
    font-size: 1.998vw;
}

p {
    font-size: 1.125vw;
}

a {
    text-decoration: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 70.623vw;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 0.999vw; */
}

#body_wrapper{
    overflow: hidden;
}
.wrapper {
    background: var(--dark-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.81vw 2.061vw 0.873vw;
    border-radius: 3.375vw;
    font-weight: 600;
    font-size: 0.936vw;
    line-height: 1.503vw;
    letter-spacing: -0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}

.btn-outline {
    /* background-color: transparent; */
    /* border: 0.126vw solid var(--primary-blue); */
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    /* color: var(--white); */
}

/* Header/Navigation */
.header {
    width: 100%;
    padding: 1.44vw 0;
    /* padding: 0.999vw 0; */
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fdfdfd;
    transition: background .3s;
}
.header.home {
    position: fixed;
}
.header.white {
    background: transparent;
}
.header.fixed {
    position: fixed;
    background: transparent;
} 
.header.scroll{
    background: #FDFDFD;
}
.header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 70.623vw;
    /* max-width: 74.997vw; */
    margin: 0 auto;
    /* padding: 0 0.999vw; */
    background: transparent;
}
.header .wrapper .logo {
    display: flex;
    align-items: center;
    gap: 0.747vw;
    font-weight: 400;
    font-size: 0.873vw;
    line-height: 0.873vw;
    color: var(--black);
    text-decoration: none;
}
.header.white .wrapper .logo {
    color: var(--white);
}
.header .wrapper .logo img {
    width: 8.563vw;
}
.header.white .wrapper .logo img.logo {
    display: none;
}
/* .header .wrapper .logo img.logo_white {
    display: none;
} */
.header .wrapper .nav-links {
    display: flex;
    list-style: none;
    gap: 1.566vw;
}
.header .wrapper .nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.936vw;
}
.header.white .wrapper .nav-links a {
    color: var(--white);
}
.header .wrapper .nav-links a:hover {
    text-decoration: underline;
}
.header .wrapper .actions {
    display: flex;
    align-items: center;
    gap: 0.189vw;
}
.header .wrapper .actions .search-box {
    width: 9.81vw;
    display: flex;
    align-items: center;
    gap: 0.441vw;
    border-radius: 3.123vw;
    padding: 0.567vw 0.684vw;
    backdrop-filter: blur(0.909vw);
    background: rgba(0, 0, 0, 0.07);
}
.header.white .wrapper .actions .search-box {
    background: rgba(255, 255, 255, 0.17);
}
.header .wrapper .actions .search-box button {
    min-width: 2.061vw;
    height: 2.061vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--black);
    border: none;
    cursor: pointer;
}
.header.white .wrapper .actions .search-box button {
    background: var(--white);
}
.header .wrapper .actions .search-box button img,
.header .wrapper .actions .search-box button svg {
    width: 0.75vw;
    height: 0.75vw;
}
.header .wrapper .actions .search-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 0.81vw;
    letter-spacing: -0.05em;
    color: rgba(0, 0, 0, 0.8);
}
.header .wrapper .actions .search-box input::placeholder {
    color: rgba(0, 0, 0, 0.8);
}
.header.white .wrapper .actions .search-box input,
.header.white .wrapper .actions .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.header .wrapper .actions .social-link {
    width: 2.628vw;
    height: 2.628vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #005be3;
    transition: .3s;
}
.header .wrapper .actions .social-link:nth-child(2) img,
.header .wrapper .actions .social-link:nth-child(2) svg {
    width: 1.063vw;
    height: 1.063vw;
}
.header .wrapper .actions .social-link:nth-child(3) img,
.header .wrapper .actions .social-link:nth-child(3) svg {
    width: 1.188vw;
    height: 0.813vw;
}
.header.white .wrapper .actions .social-link {
    background: var(--white);
}
.header.white .wrapper .actions .personal-account > svg > path{
    fill: #fff;
}
.header.white:not(.home) .wrapper .actions .social-link svg path {
    fill: var(--white);
}
.header .wrapper .actions .personal-account {
    display: flex;
    align-items: center;
    margin-left: 0.315vw;
    cursor: pointer;
}
.header .wrapper .actions .personal-account svg {
    width: 1.563vw;
    height: 1.75vw;
}
.header.home.white .logo_black{
    display: none;
}
.header.home:not(.white) .logo_white{
    display: none;
}
.header.home:not(.white) .wrapper .actions .search-box button svg path{
    stroke: var(--white);
}
.header.home:not(.white) .wrapper .actions .social-link svg path{
    fill: var(--white);
}

#header_mobile_nav{
    display: none;
}

/* About us Section */
#about_us {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../img/about_us_bg.png') 0 -1.746vw / cover no-repeat;
}
#about_us > video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}
#about_us .container{
    position: relative;
    z-index: 3;
}

#about_us_content {
    display: flex;
    justify-content: flex-end;
}

#about_us_text h1 {
    font-size: 10.746vw;
    line-height: 1;
    background: linear-gradient(144deg, #005be3 0%, #005be3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#about_us_text h2 {
    color: #005be3;
    margin-top: -0.189vw;
    font-size: 2.502vw;
    letter-spacing: -0.05em;
    line-height: 2.187vw;
}

#about_us_text p {
    width: 19.377vw;
    margin: 0.81vw 0 0.684vw;
    font-size: 1.125vw;
    font-weight: 500;
    line-height: 1.44vw;
    color: rgba(30, 30, 30, 0.8);
}

#about_us_text a {
    display: inline-block;
    border-radius: 5.625vw;
    padding: 1.188vw 2.628vw 1.566vw;
    background: linear-gradient(117deg, #005be3 10%, #00f7fb 100%);
    font-weight: 600;
    font-size: 1.314vw;
    line-height: 2.754vw;
    letter-spacing: -0.05em;
    text-decoration: none;
    color: var(--white);
}

/* Feature Blocks */
.feature-block {
    padding: 3.996vw 0;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 1.251vw;
    margin-bottom: 1.998vw;
    overflow: hidden;
}

.feature-block h2 {
    font-size: 2.997vw;
    margin-bottom: 1.503vw;
}

.feature-block p {
    opacity: 0.9;
    font-size: 1.125vw;
    max-width: 80%;
}

/* Mission Section */
.mission-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 3.501vw;
    margin-bottom: 0.504vw;
}

.subtitle {
    font-size: 1.503vw;
    opacity: 0.9;
}

.mission-image {
    flex: 1;
    text-align: center;
}

.mission-image img {
    max-width: 80%;
    height: auto;
}

/* Founders Section */
#founders {
    max-width: 71.253vw;
    padding: 6.246vw 0 4.5vw;
}
#founders_title {
    font-style: italic;
    font-weight: 400;
    font-size: 5.184vw;
    line-height: 4.311vw;
    letter-spacing: -0.05em;
    color: #1e1e1e;
}
#founders_title span {
    font-weight: 800;
    font-style: normal;
}
#founder_cards {
    display: flex;
    gap: 0.81vw;
    margin-top: 2.187vw;
}
.founder_card {
    width: 50%;
    display: flex;
    /* align-items: center; */
    gap: 1.998vw;
    padding: 0.684vw 0 0.684vw 0.747vw;
    background-color: var(--white);
    border-radius: 0.873vw;
    box-shadow: 0 0.189vw 4.122vw 0 rgba(0, 0, 0, 0.15);
}
.founder_image {
    min-width: 16.56vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--primary-blue);
    border-radius: 0.684vw;
    overflow: hidden;
}
.founder_image img:first-child {
    position: absolute;
    width: 5.31vw;
    margin: 1.188vw auto 0;
}
.founder_image img:last-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder_info {
    position: relative;
    padding-top: 2.565vw;
}
.founder_info a {
    position: absolute;
    right: 1.063vw;
    top: 0.378vw;
    width: 3.123vw;
    height: 3.123vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #005BE3;
}
.founder_info span {
    margin-bottom: 0.315vw;
    padding-right: 0.5vw;
    font-weight: 700;
    font-size: 1.998vw;
    line-height: 1.872vw;
    letter-spacing: -0.05em;
    color: var(--black);
}
.founder_info p {
    margin: 0.441vw 0 0.567vw;
    font-size: 0.873vw;
    font-weight: 300;
    padding-right: 1.375vw;
    color: #000;
}
.founder_info blockquote {
    position: relative;
    padding: 1.125vw 3.438vw 1.251vw 1.251vw;
    margin-right: 2.188vw;
    border-radius: 0.684vw;
    background: #005be3;
    /* font-weight: 500; */
    font-size: 0.81vw;
    line-height: 0.873vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
.founder_info blockquote::before {
    position: absolute;
    content: "";
    top: 1.998vw;
    right: 0.747vw;
    font-size: 4.374vw;
    color: var(--white);
}

/* Categories Section */
#categories {
    /* Delete later */
    margin-top: 3vw;
    /* Delete later */
    max-width: 83.376vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 5.373vw 7.128vw 6.246vw;
    background-color: var(--dark-blue);
    border-radius: 1.251vw;
    color: var(--white);
    margin-bottom: 3.249vw;
}
.wrapper #categories {
    max-width: 74.997vw;
    padding: 4.185vw 0.999vw 10.872vw;
    margin-bottom: 0;
}
#categories > span {
    font-weight: 700;
    font-size: 4.878vw;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 3.816vw;
}
#categories > p {
    font-weight: 500;
    font-size: 1.998vw;
    line-height: 3.312vw;
    letter-spacing: -0.05em;
}
#category_grid {
    margin-top: 1.503vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 0.747vw 0.873vw; 
}
.category_card {
    position: relative;
    background: var(--white);
    border-radius: 0.315vw;
    padding: 2.502vw;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    font-size: 1.314vw;
    font-weight: 500;
    transition: .3s;
}
.category_card:hover {
    background: #001028;
    color: var(--white);
}
.category_card .corner {
    position: absolute;
    width: 5.247vw;
    height: 1.377vw;
    border: 0.072vw solid #005be3;
    transition: .3s;
}
.category_card .top-left {
    top: 0.567vw;
    left: 0.747vw;
    border-right: none;
    border-bottom: none;
}
.category_card .top-right {
    top: 0.567vw;
    right: 0.747vw;
    border-left: none;
    border-bottom: none;
}
.category_card .bottom-left {
    bottom: 0.504vw;
    left: 0.747vw;
    border-right: none;
    border-top: none;
}
.category_card .bottom-right {
    bottom: 0.504vw;
    right: 0.747vw;
    border-left: none;
    border-top: none;
}
.category_card:hover .corner {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Footer */
footer {
    background: #015be3;
    color: var(--white);
    padding: 4.185vw 0 3.996vw;
    /* padding: 3.996vw 0 1.998vw; */
    position: relative;
    box-shadow: 0 -0.378vw 6.498vw 0 rgba(7, 45, 101, 0.57);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.997vw;
    margin-bottom: 2.502vw;
}

.footer-brand {
    flex: 0 0 auto;
    max-width: 18.747vw;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.936vw;
    margin-bottom: 1.314vw;
}

.footer-logo {
    height: 1.063vw;
}

.footer-tagline {
    font-weight: 400;
    font-size: 0.873vw;
    line-height: 0.873vw;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.567vw;
}

.footer-social p {
    font-size: 0.999vw;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.628vw;
    height: 2.628vw;
    border-radius: 50%;
    background: var(--white);
    transition: all .3s ease;
}

.social-icon:hover {
    background-color: var(--light-blue);
}

.social-icon img {
    width: 1.063vw;
}

.footer-links, .footer-nav-links {
    flex: 0 0 auto;
}

.footer-links h4 {
    margin-bottom: 0.621vw;
    font-size: 1.125vw;
    font-weight: 700;
}

.footer-links p, 
.footer-links a, 
.footer-nav-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.621vw;
    font-weight: 400;
    font-size: 0.999vw;
}

.footer-links p {
    font-weight: 600;
}

.footer-links a {
    margin-top: 0.126vw;
}

.footer-links ul, 
.footer-nav-links ul {
    list-style: none;
}

.footer-nav-links {
    margin-top: 1.942vw;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    font-size: 0.999vw;
    letter-spacing: -0.03em;
    flex-wrap: wrap;
    gap: 0.999vw;
}

.privacy-policy a {
    color: var(--white);
    text-decoration: none;
}

.developer {
    display: flex;
    gap: 0.684vw;
    font-weight: 400;
    font-size: 1.125vw;
}

.kykil-link img {
    width: 3.942vw;
    display: block;
}

footer .container .footer-bottom .actions {
    display: flex;
    align-items: center;
    gap: 0.81vw;
}

.btn-light {
    background-color: #fff;
}

.btn-light:hover {
    background-color: #fffd;
    color: var(--primary-blue);
}

.back-to-top {
    width: 3.816vw;
    height: 3.816vw;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--light-blue);
}

.back-to-top img {
    width: 1vw;
}

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(1.872vw);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

#main_hero {
    /* height: 100vh; */
    width: 100vw;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    padding-top: 15vh;
    position: relative;
   /* background: url('../img/main_hero_bg.png') 0 0 / 100% 66vw no-repeat; */
/*    padding: 15.192vw 0 5.625vw;*/
}
#main_hero::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-image: linear-gradient(to bottom, transparent, var(--dark-blue));
    z-index: 2;
}
#main_hero > video{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}
#main_hero_content {
    position: relative;
    padding-bottom: 7.075vw;
    margin-top: 16vw;
    z-index: 5;
}
#main_hero_title span {
    display: block;
    font-size: 6.372vw;
    line-height: 5.247vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#main_hero_title span:nth-child(1) {
    font-weight: 500;
}
#main_hero_title span:nth-child(2) {
    font-weight: 700;
}
#main_hero_title span:nth-child(3) {
    padding-left: 8.748vw;
    font-style: italic;
    font-weight: 400;
}
#main_hero_text {
    max-width: 39.123vw;
}
#main_hero_text div {
    display: flex;
    align-items: center;
    gap: 0.873vw;
    margin-top: 1.125vw;
    padding-right: 5.004vw;
}
#main_hero_text div a {
    border-radius: 5.625vw;
    box-shadow: inset 0 0.252vw 2.124vw 0 rgba(88, 158, 255, 0.7);
    padding: 1.177vw 2.002vw;
    background: var(--white);
    font-weight: 600;
    font-size: 1.44vw;
    line-height: 2.754vw;
    letter-spacing: -0.05em;
    color: #005be3;
    text-decoration: none;
    white-space: nowrap;
}
#main_hero_text div p {
    font-weight: 500;
    font-size: 1.251vw;
    line-height: 1.377vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#main_hero_number_victims {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 16.254vw;
    border-radius: 1.872vw;
    background: url('../img/main_hero_number_victims_bg.png') 0 0 / 100% 100% no-repeat;
    padding: 0.873vw 1.251vw 2.817vw 1.935vw;
    margin-top: 7.875vw;
}
#main_hero_number_victims div {
    display: flex;
    justify-content: space-between;
}
#main_hero_number_victims div span {
    margin-top: 1.125vw;
    font-weight: 600;
    font-size: 2.628vw;
    line-height: 3.816vw;
    letter-spacing: -0.05em;
    color: #24354e;
    opacity: 0.9;
}
#main_hero_number_victims div img {
    width: 3.625vw;
}
#main_hero_number_victims p {
    font-weight: 300;
    font-size: 1.062vw;
    line-height: 1.314vw;
    color: #24354e;
}
#main_hero + .wrapper {
    padding-bottom: 10.251vw;
}

#facts {
    position: relative;
}
#facts_title {
    position: absolute;
    top: 1.872vw;
    left: 2.313vw;
    font-weight: 500;
    font-size: 2.124vw;
    line-height: 2.187vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#facts_container {
    background: url('../img/facts_section_bg.png') 0 0 / 100% 100% no-repeat;
    min-height: 22.5vw;
    display: flex;
}
#facts_container .fact {
    width: 17.496vw;
    display: flex;
    align-items: center;
    gap: 0.621vw;
}
#facts_container .fact:nth-child(1),
#facts_container .fact:nth-child(3) {
    margin-top: 9.378vw;
}
#facts_container .fact:nth-child(2),
#facts_container .fact:nth-child(4) {
    margin-bottom: 12.501vw;
}
#facts_container .fact:nth-child(1) {
    margin-left: 2.313vw;
}
#facts_container .fact:nth-child(2) {
    gap: 1.377vw;
    margin-left: 0.566vw;
}
#facts_container .fact:nth-child(3) {
    margin-left: -2.802vw
}
#facts_container .fact:nth-child(4) {
    margin-left: -0.4vw;
    width: 15.003vw;
    gap: 0.936vw;
    padding-top: 1vw;
}
#facts_container .fact div span {
    font-weight: 500;
    font-size: 4.374vw;
    line-height: 4.374vw;
    letter-spacing: -0.07em;
    color: #1e1e1e;
}
#facts_container .fact div p {
    font-weight: 600;
    font-size: 1.251vw;
    line-height: 1.188vw;
    letter-spacing: -0.05em;
    color: #00f;
    white-space: nowrap;
}
#facts_container .fact > p {
    font-weight: 400;
    font-size: 1.062vw;
    line-height: 1.125vw;
    letter-spacing: -0.05em;
    color: #1e1e1e;
}

#safe_online_learning {
    border-radius: 3.753vw 3.753vw 0 0;
    padding: 4.626vw 0 9.252vw;
    margin-top: -3.753vw;
    background: var(--white);
}
#safe_online_learning_content > span,
#safe_online_learning_content > p {
    font-weight: 500;
    letter-spacing: -0.05em;
    color: #1e1e1e;
}
#safe_online_learning_content > span {
    font-size: 1.692vw;
    line-height: 3.879vw;
}
#safe_online_learning_content > p {
    font-size: 4.878vw;
    line-height: 4.059vw;
}
#safe_online_learning_content > p > span {
    font-style: italic;
    font-weight: 600;
    color: #3780e8;
}
#safe_online_learning_cards {
    display: flex;
    gap: 0.504vw;
    margin-top: 1.872vw;
}
#safe_online_learning_cards .card {
    position: relative;
    width: 25%;
    min-height: 21.249vw;
    border-radius: 1.314vw;
    padding: 2.25vw 1.629vw 0 2.25vw;
    background: linear-gradient(144deg, #005be3 0%, #66c8d6 83.21%);
}
#safe_online_learning_cards .card span,
#safe_online_learning_cards .card p {
    letter-spacing: -0.05em;
    color: var(--white);
}
#safe_online_learning_cards .card span {
    font-weight: 700;
    font-size: 1.377vw;
}
#safe_online_learning_cards .card p {
    font-weight: 500;
    font-size: 0.936vw;
    line-height: 1.125vw;
    margin-top: 0.252vw;
}
#safe_online_learning_cards .card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 13.374vw;
}

#criteria_quality {
    border-radius: 3.753vw 3.753vw 0 0;
    padding: 5.625vw 0 6.246vw;
    margin-top: -3.753vw;
    background: var(--white);
}
#criteria_quality_content_head {
    display: flex;
    align-items: flex-end;
    gap: 3.753vw;
}
#criteria_quality_content_head p:first-child span {
    display: block;
    font-size: 4.626vw;
    line-height: 4.122vw;
    letter-spacing: -0.05em;
    color: #1e1e1e;
    white-space: nowrap;
}
#criteria_quality_content_head p:first-child span:first-child {
    padding-left: 2.502vw;
    font-style: italic;
    font-weight: 400;
}
#criteria_quality_content_head p:first-child span:last-child {
    font-weight: 600;
}
#criteria_quality_content_head p:last-child {
    margin-right: 7.497vw;
    font-weight: 500;
    font-size: 1.188vw;
    line-height: 1.566vw;
    letter-spacing: -0.05em;
    color: rgba(1, 1, 2, 0.6);
}
#criteria_quality_cards {
    display: flex;
    gap: 0.684vw;
    margin: 2.817vw 0 1.44vw;
}
#criteria_quality_cards .card {
    width: 25%;
    min-height: 21.06vw;
    border-radius: 1.125vw;
    padding: 1.746vw 1.125vw 0 2.187vw;
    box-shadow: 0 0.252vw 3.312vw 0 rgba(0, 0, 0, 0.15);
    background: var(--white);
}
#criteria_quality_cards .card > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4.689vw;
}
#criteria_quality_cards .card > div .number_wrapper {
    width: 2.871vw;
    height: 2.871vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.315vw;
    background: #005be3;
}
#criteria_quality_cards .card > div .number_wrapper span {
    font-weight: 700;
    font-size: 1.314vw;
    line-height: 1.566vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#criteria_quality_cards .card > span {
    font-weight: 600;
    font-size: 1.692vw;
    line-height: 1.566vw;
    letter-spacing: -0.05em;
    color: var(--black);
}
#criteria_quality_cards .card > p {
    margin-top: 0.504vw;
    font-weight: 500;
    font-size: 0.936vw;
    line-height: 1.188vw;
    letter-spacing: -0.05em;
    color: #999;
}
#criteria_quality_requirements {
    width: 25.002vw;
    display: flex;
    align-items: center;
    gap: 0.747vw;
    border-radius: 1.125vw;
    padding: 1.062vw 0.81vw 1.125vw 0.936vw;
    box-shadow: 0 0.252vw 3.312vw 0 rgba(0, 0, 0, 0.15);
    background: #005be3;
}
#criteria_quality_requirements div {
    min-width: 2.817vw;
    height: 2.817vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.315vw;
    background: #fefeff;
}
#criteria_quality_requirements div span {
    font-weight: 700;
    font-size: 1.566vw;
    line-height: 1.062vw;
    color: #005be3;
}
#criteria_quality_requirements p {
    font-weight: 500;
    font-size: 0.936vw;
    line-height: 0.999vw;
    letter-spacing: -0.05em;
    color: #fefefe;
}

#faq {
    position: relative;
    border-radius: 3.753vw 3.753vw 0 0;
    padding: 6.498vw 0 5.562vw;
    margin-top: -3.753vw;
    background: var(--white);
}
#faq_content > span {
    font-style: italic;
    font-weight: 700;
    font-size: 5.247vw;
    line-height: 4.122vw;
    letter-spacing: -0.05em;
    color: #1e1e1e;
}
#faq_content > p {
    font-weight: 400;
    font-size: 1.998vw;
    line-height: 4.122vw;
    letter-spacing: -0.05em;
    color: rgba(30, 30, 30, 0.8);
}
#faq_items {
    margin-top: 0.81vw;
}
.faq_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1.251vw;
    padding: 1.629vw 1.746vw 1.809vw 2.817vw;
    margin-bottom: 0.684vw;
    background: rgba(44, 65, 255, 0.04);
    cursor: pointer;
}
.faq_item:last-child {
    margin-bottom: 0;
}
.faq_item.checked {
    background: linear-gradient(320deg, #66c8d6 0%, #005be3 100%);
}
.faq_item div .question {
    font-weight: 600;
    font-size: 1.44vw;
    line-height: 1.935vw;
    letter-spacing: -0.04em;
    color: #1e1e1e;
}
.faq_item.checked div .question {
    color: var(--white);
}
.faq_item div .answer {
    display: none;
    margin-top: 0.441vw;
    font-weight: 500;
    font-size: 1.062vw;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.9);
}
.faq_item.checked div .answer {
    display: block;
}
.faq_item .icon_wrapper {
    min-width: 5.184vw;
    height: 5.184vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.504vw;
    background: #015be3;
}
.faq_item.checked .icon_wrapper {
    background: var(--white);
}
.faq_item .icon_wrapper svg {
    width: 1.375vw;
    height: 1.375vw;
}
.faq_item.checked .icon_wrapper svg {
    transform: rotate(180deg);
}
.faq_item.checked .icon_wrapper svg path {
    fill: #005be3;
}

#how_use_znaty {
    position: relative;
    max-width: 79.623vw;
    top: -3.753vw;
    display: flex;
    align-items: center;
    gap: 3.123vw;
    border-radius: 2.502vw;
    padding: 3.123vw 7.254vw 3.501vw 6.939vw;
    background: url('../img/how_use_znaty_bg.png') 0 0 / 100% 100% no-repeat;
}
#how_use_znaty_cards {
    min-width: 32.004vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(11.871vw, auto));
    gap: 0.621vw 0.747vw;
}
#how_use_znaty_cards .card {
    border-radius: 1.314vw;
    padding: 1.566vw 2.187vw 0 2.502vw;
    backdrop-filter: blur(2.322vw);
    background: radial-gradient(50% 50% at 50% 50%, rgba(217, 217, 217, 0.44) 0%, rgba(241, 241, 241, 0.1) 100%);
}
#how_use_znaty_cards .card span {
    font-weight: 800;
    font-size: 4.626vw;
    line-height: 4.626vw;
    letter-spacing: -0.02em;
    color: var(--white);
}
#how_use_znaty_cards .card p {
    font-weight: 500;
    font-size: 1.062vw;
    line-height: 1.062vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#how_use_znaty_title {
    font-weight: 700;
    font-size: 4.689vw;
    line-height: 3.249vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#how_use_znaty_title span {
    line-height: 5.247vw;
}

#lottery_section {
    position: relative;
    max-width: 80.874vw;
    min-height: 36.378vw;
    background: url('../img/lottery_section_bg.png') 0 0 / 100% 100% no-repeat;
    border-radius: 3.123vw;
    padding: 5.004vw 3.753vw;
    margin-top: 5.004vw;
}
#lottery_image {
    position: absolute;
    left: -5.5%;
    bottom: 0;
    height: 41.877vw;
}
#lottery_image img {
    height: 100%;
}
#lottery_text {
    max-width: 37.503vw;
    margin-left: auto;
}
#lottery_text p:first-child span {
    display: block;
    font-size: 3.996vw;
    letter-spacing: -0.05em;
    color: #1e1e1e;
}
#lottery_text p:first-child span:first-child {
    font-style: italic;
    font-weight: 400;
    line-height: 3.123vw;
    padding-left: 2.124vw;
}
#lottery_text p:first-child span:last-child {
    font-weight: 600;
    line-height: 3.249vw;
}
#lottery_text p:nth-child(2),
#lottery_text p:last-child {
    max-width: 25.938vw;
}
#lottery_text p:nth-child(2) {
    margin: 0.621vw 0;
    font-weight: 500;
    font-size: 1.251vw;
    line-height: 1.566vw;
    letter-spacing: -0.05em;
    color: rgba(1, 1, 2, 0.6);
}
#lottery_text p:last-child {
    padding: 1.503vw 1.503vw 1.692vw 1.746vw;
    border-radius: 0.936vw;
    background: #3780e8;
    font-weight: 500;
    font-size: 1.125vw;
    line-height: 1.377vw;
    letter-spacing: -0.05em;
    color: var(--white);
}

#report_scam {
    position: relative;
    background: linear-gradient(165deg, var(--dark-blue) 40%, #66c8d6 100%);
    z-index: 1;
}
#report_scam_content {
    display: flex;
    gap: 1.872vw;
    padding: 10.998vw 5.751vw 9.81vw;
}
#report_scam_content > p {
    font-weight: 700;
    font-size: 4.248vw;
    line-height: 3.564vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#report_scam_content div p {
    margin-bottom: 1.125vw;
    font-weight: 500;
    font-size: 1.188vw;
    line-height: 1.503vw;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.8);
}
#report_scam_content div button {
    width: calc(100% - 1.062vw);
    border-radius: 5.31vw;
    padding: 1.251vw 0 1.44vw;
    background: #ffba1b;
    border: none;
    cursor: pointer;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 1.503vw;
    line-height: 2.376vw;
    letter-spacing: -0.05em;
    color: var(--black);
}
.report_scam_slide {
    position: absolute;
    height: 6.435vw;
    display: flex;
    align-items: center;
    gap: 3.123vw;
    background: #FFBA1B;
    padding: 0 3.123vw;
    margin-left: -10.629vw;
    transform: rotate(-3deg);
    overflow: hidden;
}
.report_scam_slide:first-child {
    top: -2.997vw;
}
.report_scam_slide:last-child {
    bottom: -3.375vw;
}
.report_scam_slide span {
    font-weight: 700;
    font-size: 3.06vw;
    line-height: 2.565vw;
    letter-spacing: -0.05em;
    color: var(--black);
    white-space: nowrap;
    text-transform: uppercase;
}
.report_scam_slide div {
    min-width: 3.879vw;
    height: 9.999vw;
    background: var(--black);
    transform: rotate(27deg);
}

#expert_registration {
    position: relative;
    background: url('../img/expert_registration_bg.png') 0 0 / 100% 100% no-repeat;
    padding: 15.813vw 0 16.686vw;
}
#expert_registration_content {
    padding-left: 2vw;
}
#expert_registration_content span {
    font-weight: 700;
    font-size: 6.129vw;
    line-height: 4.563vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#expert_registration_content p {
    margin: 0.873vw 0 0.504vw;
    font-weight: 700;
    font-size: 1.629vw;
    line-height: 2.628vw;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--white);
}
#expert_registration_content a {
    display: inline-block;
    border-radius: 5.688vw;
    padding: 1.188vw 1.809vw 1.566vw;
    background: var(--white);
    font-weight: 600;
    font-size: 1.44vw;
    line-height: 2.754vw;
    letter-spacing: -0.05em;
    color: #2f6a73;
    text-decoration: none;
}
#expert_registration_image {
    position: absolute;
    right: -2%;
    bottom: -8%;
    height: 51.75vw;
}
#expert_registration_image img {
    height: 100%;
}

#not_sell_courses {
    max-width: 76.878vw;
    display: flex;
    align-items: center;
    border-radius: 3.123vw;
    padding: 1.377vw 2.934vw 2.124vw 5.436vw;
    margin-bottom: 6.066vw;
    background: linear-gradient(144deg, #005be3 0%, #66c8d6 83.21%);
}
#not_sell_courses_title {
    font-weight: 700 !important;
    font-size: 4.752vw !important;
    line-height: 3.753vw !important;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-top: 0 !important;
}
#not_sell_courses_title span {
    font-style: italic;
    font-weight: 400;
}
#not_sell_courses_text > p {
    margin-top: 1.188vw;
    font-weight: 500;
    font-size: 1.062vw;
    line-height: 1.188vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#not_sell_courses_image {
    height: 34.749vw;
}
#not_sell_courses_image img {
    height: 100%;
}

#mission_znaty {
    max-width: 86.436vw;
    display: flex;
    gap: 3.249vw;
    border-radius: 1.872vw;
    padding: 5.121vw 9.378vw 4.815vw 6.246vw;
    background: #005be3;
}
#mission_znaty_image {
    position: relative;
    min-width: 34.749vw;
    min-height: 29.628vw;
    border-radius: 3.123vw;
    background: #f4f8ff;
}
#mission_znaty_image div {
    display: flex;
    align-items: flex-end;
    gap: 0.621vw;
    margin: 3.123vw 3.501vw 0 4.122vw;
}
#mission_znaty_image div p:first-child {
    font-weight: 700;
    font-size: 4.311vw;
    line-height: 3.438vw;
    letter-spacing: -0.05em;
    color: #005be3;
}
#mission_znaty_image div p:first-child span {
    font-weight: 900;
}
#mission_znaty_image div p:last-child {
    min-width: 14.373vw;
    font-weight: 500;
    font-size: 1.314vw;
    line-height: 1.44vw;
    letter-spacing: -0.05em;
    color: #005be3;
}
#mission_znaty_image img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    display: block;
}
#mission_znaty_text {
    margin-top: 2.502vw;
}
#mission_znaty_text span {
    font-weight: 700;
    font-size: 4.752vw;
    line-height: 3.753vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#mission_znaty_text p {
    margin-top: 1.251vw;
    font-weight: 500;
    font-size: 1.062vw;
    line-height: 1.251vw;
    letter-spacing: -0.05em;
    color: var(--white);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3.996vw);
    background: rgba(255, 255, 255, 0.6);
    overflow-y: auto;
    padding: 5vw 0;
}
.modal.show {
    display: flex;
}
.modal .modal_content {
    position: relative;
    width: 55.935vw;
    margin: auto 0;
    border-radius: 3.123vw;
    padding: 4.185vw 11.061vw 5.499vw;
    background: url('../img/modal_bg.png') 0 0 / 100% 100% no-repeat;
}
.modal .modal_content .modal_close {
    position: absolute;
    top: 1.377vw;
    right: 1.377vw;
    width: 4.5vw;
    height: 4.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
}
.modal .modal_content .modal_close svg {
    width: 2.438vw;
    height: 2.5vw;
}
.modal .modal_content .modal_title {
    font-weight: 700;
    font-size: 3.816vw;
    line-height: 3.249vw;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--white);
}
.modal .modal_content .modal_subtitle {
    margin-bottom: 0.567vw;
    font-weight: 400;
    font-size: 1.314vw;
    line-height: 3.249vw;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--white);
}
.modal .modal_content form .inputs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.567vw 0.441vw;
}
.modal .modal_content form .inputs-wrapper.inputs-wrapper-column {
    grid-template-columns: 1fr;
    margin: 0.567vw 0 0.5vw;
}
.modal .modal_content form .inputs-wrapper input {
    border-radius: 0.936vw;
    box-shadow: 0 0.441vw 5.562vw 0 rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.936vw 1.692vw;
    border: none;
    outline: none;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-size: 1.125vw;
    line-height: 3.249vw;
    letter-spacing: -0.05em;
    color: var(--white);
    width: 100%;
}
.modal .modal_content form .inputs-wrapper input[type="password"] {
    grid-column: span 2;
}
.modal .modal_content form .inputs-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.modal .modal_content form > p {
    font-weight: 600;
    font-size: 1.314vw;
    line-height: 3.249vw;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--white);
}
.modal .modal_content form .radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.378vw 0.504vw;
    margin-bottom: 0.621vw;
}
.modal .modal_content form .radio-group input {
    display: none;
}
.modal .modal_content form .radio-group label {
    border: 0.063vw solid rgba(255, 255, 255, 0.3);
    border-radius: 0.621vw;
    box-shadow: 0 0.315vw 3.816vw 0 rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.125vw 0 1.314vw;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.999vw;
    line-height: 0.999vw;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--white);
}
.modal .modal_content form .radio-group input:checked + label {
    border-color: var(--white);
    background: var(--white);
    color: #005be3;
}
.modal .modal_content form > button {
    width: 100%;
    border-radius: 0.621vw;
    background: var(--white);
    padding: 1.809vw 0 2.187vw;
    border: none;
    cursor: pointer;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 1.314vw;
    letter-spacing: -0.03em;
    color: #005be3;
}
.modal .modal_content form .register_btn {
    display: none;
}
.modal .modal_content form .send_request_btn {
    background: #ffba1b;
    color: #000;
}
.modal .modal_content form .code-group {
    display: none;
    margin-top: 1.062vw;
}
.modal .modal_content form .code-group input {
    width: 100%;
    border-radius: 0.936vw;
    box-shadow: 0 0.441vw 5.562vw 0 rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.1);
    padding: 1.503vw 0 0.441vw;
    border: none;
    outline: none;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 2.124vw;
    line-height: 3.249vw;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--white);
}
.modal .modal_content form .code-group input::placeholder {
    color: var(--white);
}
.modal .modal_content form .code-group p {
    font-weight: 400;
    font-size: 1.062vw;
    line-height: 3.249vw;
    letter-spacing: -0.05em;
    text-align: center;
    color: var(--white);
}
.modal.report_modal .modal_content {
    width: 53.442vw;
    padding: 3.123vw 7.875vw 3.996vw;
}
.modal.report_modal .modal_content .modal_close {
    top: 1.566vw;
    right: 1.872vw;
}
.modal.report_modal .modal_content .modal_title {
    padding: 0 6.246vw;
}
.modal.report_modal .modal_content form .inputs-wrapper {
    margin: 1.314vw 0 0.621vw;
}
.modal.report_modal .modal_content form .inputs-wrapper input {
    padding: 1.746vw 2.061vw 1.998vw;
    font-size: 0.999vw;
    line-height: 1.503vw;
    color: var(--white);
}
.modal.report_modal .modal_content form .inputs-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modal .modal_content_small {
    padding: 5vw;
    overflow: hidden;
}
.modal .modal_content_small .modal_title {
    text-align: left;
    max-width: 60%;
}
.modal .modal_content_small .modal_subtitle {
    text-align: left;
    font-weight: 700;
    font-size: 1.563vw;
    line-height: 2;
}
.modal .modal_content_small .modal_btn {
    margin-top: 0.625vw;
    display: inline-block;
    border-radius: 0.621vw;
    background: var(--white);
    padding: 1.509vw 3.125vw 1.709vw;
    border: none;
    cursor: pointer;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 1.314vw;
    letter-spacing: -0.03em;
    color: #005be3;
}
.modal .modal_content_small > *{
    position: relative;
    z-index: 2;
}
#black_list_modal_img{
    position: absolute;
    top: 2.75vw;
    left: 24.063vw;
    width: 34vw;
    z-index: 1;
    filter: drop-shadow(-10px -10px 20px #65CBEA);
}
#black_list_modal_img img{
    width: 100%;
}
.file-upload {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 0.936vw;
    box-shadow: 0 0.252vw 4.752vw 0 rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.11);
}
.file-upload img{
    margin-right: 1.746vw;
}
.file-upload input {
    display: none;
}
.file-upload label {
    height: 100%;
    /* position: absolute; */
    width: calc(100% - 1.5vw);
    z-index: 2;
    padding: 1.746vw 1.746vw 1.998vw;
    font-weight: 400;
    font-size: 0.999vw;
    line-height: 1.503vw;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    overflow: auto;
    text-overflow: ellipsis;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.file-upload label::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
.file-upload img {
    width: 1.563vw;
}

.file-upload-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5vw;
    gap: 0.5vw;
}

.btn_add_evidence {
    width: 100%;
    border-radius: 0.936vw;
    box-shadow: 0 0.252vw 4.752vw 0 rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.11);
    padding: 1vw 1.5vw;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-family: "Gilroy", sans-serif;
    font-size: 0.999vw;
    text-align: center;
}

.evidence-list {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    /* margin-top: 0.5vw; */
    width: 100%;
    /* max-height: 100px; */
    /* overflow-y: auto; */
}

.evidence-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25vw 0.5vw;
    border-radius: 0.936vw;
    font-size: 0.9vw;
    color: var(--white);
}

.evidence-item span{
    width: 75%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.remove-evidence-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 0.8vw;
    padding: 0;
}

.modal.modal_expert {
    position: initial;
    backdrop-filter: unset;
    background: none;
    padding: 2.313vw 0 3.5vw;
}
.modal.modal_expert .modal_content {
    padding: 3.625vw 9.188vw 5.5vw;
}
.modal.modal_expert .modal_content .modal_subtitle {
    font-weight: 700;
    margin-bottom: -0.8vw;
}
.modal .modal_content .modal_login_btn {
    width: 100%;
    text-align: center;
    line-height: 3.125vw;
    font-size: 1.125vw;
    letter-spacing: -0.05em;
    color: #fff;
}
.modal .modal_content .modal_login_btn span{
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
.modal.modal_expert .modal_content form > p {
    font-weight: 400;
}
.modal.modal_expert .modal_content form .inputs-wrapper {
    margin-bottom: 0.5vw;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.503vw;
    color: var(--primary-blue);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-toggle:hover {
    color: var(--dark-blue);
}

.mobile-nav-toggle.active i::before {
    content: "\f00d"; /* Change to X icon when active */
}

.modal.modal_review .modal_content {
    padding-bottom: 4.25vw;
}
.modal.modal_review .modal_content .modal_title {
    padding: 0 1.563vw;
}
.modal.modal_review .modal_content .modal_subtitle {
    margin-bottom: 0;
}
.modal.modal_review .modal_content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal.modal_review .modal_content form .modal_rating svg {
    cursor: pointer;
}
.modal.modal_review .modal_content form textarea {
    width: 100%;
    height: 9.875vw;
    border-radius: 0.938vw;
    box-shadow: 0 0.438vw 5.563vw 0 rgba(0, 0, 0, 0.25);
    padding: 0.5vw 1.625vw;
    margin: 1.313vw 0 0.5vw;
    resize: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    outline: none;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-size: 1.125vw;
    line-height: 3.25vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
.modal.modal_review .modal_content form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.modal.modal_review .modal_content form input{
    margin: 0 0 0.5vw;
    width:100%;
    border-radius:0.938vw;
    box-shadow:0 0.438vw 5.563vw 0 rgba(0,0,0,0.25);
    padding:0.5vw 1.625vw;
    background:rgba(255,255,255,0.1);
    border:none;
    outline:none;
    font-weight:400;
    font-size:1.125vw;
    line-height:3.25vw;
    letter-spacing:-0.05em;
    color:#fff;
}
.modal.modal_review .modal_content form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.modal.modal_review .modal_content form .file-upload{
    margin-bottom: 0.5vw;
}

/* Personal Account */

#personal_account{
    padding: 3.125vw 0 6.944vw;
}
#personal_account_content{
    display: flex;
    gap: 2.778vw;
}
#personal_account_content_head{
    margin-top: 2.986vw;
}
#personal_account_content_head > span{
    font-weight: 600;
    font-size: 4.306vw;
    line-height: 3.333vw;
    letter-spacing: -0.05em;
    color: #1e1e1e;
}
#personal_account_tabs{
    width: 15.972vw;
    display: flex;
    flex-direction: column;
    gap: 0.278vw;
    margin-top: 0.972vw;
}
#personal_account_tabs a{
    border: 0.069vw solid #005be3;
    border-radius: 4.375vw;
    padding: 0.972vw 0.833vw 1.111vw;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 2.014vw;
    letter-spacing: -0.05em;
    text-align: center;
    color: #005be3;
}
#personal_account_tabs a.active{
    background: #005be3;
    border-color: #005be3;
    color: var(--white);
}
#leave_account_btn{
    margin-top: 1.389vw;
}
#leave_account_btn svg{
    width: 5.313vw;
    height: 2.063vw;
}
#personal_account_card{
    width: 35.417vw;
    border-radius: 1.389vw;
    box-shadow: 0 0.278vw 5.139vw 0 rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 2.778vw 3.125vw 2.778vw 3.611vw;
}
#personal_account_card .info_rows .info_row{
    display: flex;
    align-items: center;
    gap: 0.694vw;
    margin-bottom: 1.181vw;
}
#personal_account_card .info_rows .info_row:last-child{
    margin-bottom: 0;
}
#personal_account_card .info_rows .info_row span{
    font-size: 1.25vw;
    letter-spacing: -0.04em;
    color: #000;
}
#personal_account_card .info_rows .info_row span:first-child{
    font-weight: 600;
}
#personal_account_card .info_rows .info_row span:last-child{
    width: 13.889vw;
    font-weight: 400;
}
#personal_account_card .info_rows .info_row span svg{
    width: 1.063vw;
    height: 1.063vw;
}
#personal_account_card .info_rows .info_row .field-inputs{
    display: flex;
    gap: 0.278vw;
}
#personal_account_card .info_rows .info_row .field-inputs input,
#personal_account_card .info_rows .info_row .field-inputs select{
    width: 100%;
    border-radius: 3.123vw;
    border: none;
    padding: 0.567vw 0.684vw;
    font-size: 1.111vw;
    letter-spacing: -0.05em;
    background: rgb(232, 240, 254);
}
#personal_account_card .info_rows .info_row .line{
    flex-grow: 1;
    height: 0.069vw;
    background: rgba(125, 125, 125, 0.15);
}
#personal_account_card button{
    min-width: 12.639vw;
    border-radius: 4.375vw;
    background: #005be3;
    border: none;
    cursor: pointer;
    padding: 1.042vw 0.694vw 1.181vw;
    margin-top: 1.319vw;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 2.014vw;
    letter-spacing: -0.05em;
    color: var(--white);
}
#personal_account_content_body{
    position: relative;
    width: 100%;
}
#personal_account_experts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.81vw;
}
#personal_account_experts > p{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#page_not_found_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8.333vw;
    padding-bottom: 8.333vw;
}
#page_not_found_content > span{
    font-size: 3.194vw;
    font-weight: 700;
    letter-spacing: -0.05em;
}
#page_not_found_content > img{
    width: 52.986vw;
    margin-top: -2.778vw;
}

.swipe_hint{
    display: none;
}

#social_fixed {
    position: fixed;
    right: 2vw;
    bottom: 2vw;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0.252vw;
}
#social_fixed a {
    width: 4.626vw;
    height: 4.626vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0.621vw 5.436vw 0 rgba(0, 0, 0, 0.25);
}
#social_fixed a img {
    width: 2.125vw;
}

#page{
    padding-bottom: 3vw;
}
#page > h1,
#page > h2,
#page > h3,
#page > h4,
#page > h5,
#page > h6{
    margin-bottom: 1.25vw;
}
#page > p{
    margin-bottom: 1.25vw;
    font-size: 1vw;
}
#page > ol{
    padding-left: 1.25vw;
    margin-bottom: 1.25vw;
    font-size: 1vw;
}
#page > ol li{
    margin-bottom: 0.625vw;
}

@media (max-width: 992px) {
    h1 {
        font-size: 3.501vw;
    }
    
    h2 {
        font-size: 2.502vw;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }

    .feature-block p {
        max-width: 100%;
    }
    
    .founder-card {
        width: 100%;
    }

    .mission-content {
        flex-direction: column;
        text-align: center;
        gap: 1.998vw;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-nav-links {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.997vw;
    }
    
    .founder-card {
        flex-direction: column;
    }
    
    .founder-image {
        width: 100%;
    }
    
    .founder-info {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .actions {
        width: 100%;
        justify-content: space-between;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.502vw;
    }
    
    h2 {
        font-size: 1.998vw;
    }
    
    .feature-block {
        padding: 2.997vw 1.503vw;
    }
    
    .hero {
        padding: 2.997vw 0;
    }
    
    .nav-links {
        display: none;
    }
    
/*    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1.503vw;
        box-shadow: 0 0.315vw 0.621vw rgba(0, 0, 0, 0.1);
    }*/
    
    .mobile-nav-toggle {
        display: block;
    }
}

.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container.span-2 {
    grid-column: span 2;
}

.modal .modal_content form .inputs-wrapper input[type="password"],
.modal .modal_content form .inputs-wrapper input[type="text"] {
    padding-right: 3vw;
}

.toggle-password {
    position: absolute;
    right: 1vw;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2vw;
    height: 2vw;
}

.toggle-password svg {
    width: 1.5vw;
    height: 1.5vw;
}

#cookie_notice{
    position: fixed;
    right: 14.6885vw;
    bottom: 4.167vw;
    width: 100%;
    max-width: 20.139vw;
    padding: 1.736vw 2.431vw;
    background: #FFFFFF;
    border-radius: 0.833vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
    box-shadow: 0 0.621vw 5.436vw 0 rgba(0, 0, 0, 0.25);
}
#cookie_notice > div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.556vw;
}
#cookie_notice.show{
    opacity: 1;
    visibility: visible;
}
.cookie-notice-title{
    font-weight: 700;
    font-size: 1.389vw;
    line-height: 1.25vw;
    letter-spacing: -0.05em;
    color: #1E1E1E;
}

.cookie-notice-text{
    font-weight: 500;
    font-size: 0.972vw;
    line-height: 1.111vw;
    letter-spacing: -0.03em;
    color: #999999;
}
.cookie-accept-btn{
    border-radius: 0.556vw;
    padding: 1.25vw 1.667vw 1.389vw;
    font-weight: 600;
    font-size: 0.972vw;
    letter-spacing: -.03em;
    text-decoration: none;
    background: #005be3;
    color: var(--white);
    outline: none;
    border: none;
}

.review-warning-text {
    width: 70%;
    font-weight: 600;
    font-size: 1.125vw;
    line-height: 1.375vw;
    text-align: center;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    margin: 0.3vw 0 0.625vw 0;
}