@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
    min-height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* font-family: Poppins, sans-serif; */
    font-weight: 500;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
   
}

input, button, textarea {
    font-family: Poppins;
}
.wrapper {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}
@media(max-width: 1300px) {
    .wrapper {
        overflow-x: hidden;
        overflow-y: hidden;
    }
}
@media(max-width: 900.99px) {
    .wrapper {
        padding: 0 20px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    max-width: 1340px;
    width: 100%;
}
header {
    width: 100vw;
    position: fixed;
    top: 0;
    color: white; 
    box-sizing: border-box; 
    /* left: 50%; 
    margin-left: -50vw; */
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #FFFFFFCC; */
    /* box-shadow: 0px 4px 19px 0px #0000001A; */
    z-index: 999;
}
.mobile-header {
    position: fixed;
    z-index: 99;
    width: 100vw;
    padding: 20px 20px;
    box-sizing: border-box; 
    left: 50%; 
    margin-left: -50vw;
}
.navbar {
    padding: 20px 20px;
}
.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 19px 0px rgba(0, 0, 0, 0.10);
     transition: background 0.3s ease, padding 0.3s ease;
     opacity: 1;
}


.logo_white {
    display: none;
}
.mobile-header {
    display: none;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 170px;
    height: 51px;
}

.logo span {
    font-weight: bold;
    margin-left: 10px;
    font-size: 18px;
    color: #333;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: #141414;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn img.flag-icon {
    margin-right: 8px;
}

.dropbtn .arrow {
    margin-left: 8px;
    height: 20px;

}
.dropbtn .arrow img {
    width: 100%;
}
.email-input-input::placeholder {
    font-size: 9px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    padding: 10px 10px;
}

.dropdown-content a {
    color: black;
    background: rgba(243, 243, 243, 1);
    width: 208px;
    height: 44px;
    padding-left: 10px;
    border-radius: 10px;
    margin-top: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}
.dropdown-content a:last-child {
    margin-bottom: 10px;
}
.dropdown-content a:hover {
    background: #ECECEC;
}
.dropdown-content a:focus {
background: rgba(3, 114, 244, 0.25);
}

.dropdown-content a img.flag-icon {
    margin-right: 8px;
}
.active-link {
    background: rgba(3, 114, 244, 0.25) !important;
}
.active-link:hover {
background: rgba(3, 114, 244, 0.30) !important;
}
@media(max-width: 940px) {
    .languages-container a img {
        margin-right: 10px;
    }
}
.search-container {
    display: flex;
    align-items: center;
    background: rgba(243, 243, 243, 1); 
    width: 208px;
    height: 44px;
    border-radius:10px;
    opacity: 0px;
    padding-left: 10px;
    
}

.search-icon {
    width: 18px; 
    height: 18px;
    margin-right: 10px; 
    cursor: pointer;
}

.search-input {
    border: none;
    outline: none;
    background: none;
    width: 100%;
    font-size: 16px;
    opacity: 1;
    font-weight: 500;
    color: #141414;
}
.search-input::placeholder {
    opacity: 0.5;
}
/* .search-cont:focus {
    opacity: 0.8;
} */
.search-container:focus-within {
    background: #F3F3F3;
}
.search-container:hover {
    background: #ECECEC;
}
/* .dropdown:hover .dropdown-content {
    display: block;
} */

/* .dropdown:focus-within .dropdown-content {
    display: block;
} */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links li a {
    text-decoration: none;
    /* Home */
    font-weight: 500;
    font-size: 16px;
    /* identical to box height, or 175% */

    /* Landing/Dark */
    color: #141414;

}
.nav-links li a:hover {
    opacity: 0.8;
}
.nav-links li a .dropbtn:hover {
    opacity: 0.8;
}
.actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
}
@media(max-width: 1324.99px) {
    .nav-links {
        gap: 10px;
    }
    .nav-links li a {
        font-size: 12px;
    }
    .dropbtn {
        font-size: 12px;
    }
    .notify-btn {
        width: 100px !important;
        font-size: 12px !important;
        height: 40px !important;
    }
    .dropdown-content a {
        font-size: 12px;
    }
}
@media(max-width: 948px) {
    header {
        display: none;
    }
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 20px;
        top: 0;
     
    }
    .dropdown-content a {
        font-size: 16px;
    }
}


    
.notify-btn {
    gap: 10px;
    width: 141px;
    height: 46px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

    /* Landing/Primary */
    background: #0372F4;

    box-shadow: 0px 2px 14px 0px #0372F480;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    
    border-radius: 12px;
    transition: background-color 0.3s ease;
    /* Notify Me */
    font-size: 16px;

}

.notify-btn:hover {
    background: #0372F4;

    opacity: 85%;box-shadow: 0px 2px 14px 0px #0372F480;



}
div.error {
    border: 2px solid #FF5A5A;
    color: #FF5A5A;
}
div.focus {
    border: 2px solid #0372F4;
}
input.error::placeholder {
    color: #FF5A5A;
    font-family: Poppins;
}
input.error {
    color: #FF5A5A !important;
}
input.focus::placeholder {
    color: #0372F4;
    font-family: Poppins;
    opacity: 0.5;
font-family: Poppins;
font-size: 10px;
font-style: normal;
font-weight: 500;
line-height: 18px; /* 150% */
}
input.submit::placeholder {
    color: #0372F4;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 18px; /* 150% */
}
.email-input-input:focus .email-input-input::placeholder {
    color: #0372F4;
}
.email-input:focus {
    border: 2px solid  #0372F4;
}

footer {
    height: 374px;
    width: 100vw;
    background: #141414;
}




footer {
    background-color: #111111;
    padding: 50px 0;
    width: 100vw;
    position: relative;
    bottom: 0;
    color: white; 
    padding: 50px;
    box-sizing: border-box; 
    left: 50%; 
    margin-left: -50vw;
    min-height: 400px;
    height: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 32px;
}

.footer-logo p {
    opacity: 0.4;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links div h4 {
    margin-bottom: 20px;
    color:#FFF;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 175% */
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #FFF;
    text-decoration: none;
    opacity: 0.4;
    /* Landing/Menu text */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 175% */
}

.footer-links ul li a:hover {
    color: #ffffff !important;
    opacity: 0.7;
}

@media(max-width: 940px) {
footer {
    min-height: 500px;
    height: 100%;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}
.footer-logo img {
    margin-bottom: 10px;
}
.footer-container {
    justify-content: center;
    flex-wrap: wrap;
}
.footer-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
}
@media(max-width: 505px) {
footer {
    min-height: 800px;
    height: 100%;
    padding: 20px;
}
.footer-links ul li a {
    font-size: 12px;
}
.footer-links div h4 {
    font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 18px
}
.footer-logo p {
    text-align: center;
    font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 18px;
}
}

.modal {
    display: none;
    position: fixed;
    width: 202px;
    height: 302px;
    background-color: white;
    z-index: 999;
    top: 60px;
    right: 30px;
}
.modal .modal-controls {
    position: absolute;
    right: 20px;
    top: 10px;
    display: flex;
    align-items: center;
    display: none;
    gap: 10px;
}
.modal-controls button {
    background-color: transparent;
    border: none;
    }
.modal body {
    padding: 0;
}

.burger-white {
    display: none;
}

.logo_white_modal {
    display: none;
}

.modal {
    display: none;
    padding: 10px;
    box-shadow: 0px 2px 31.6px 4px #00000026;
    border-radius: 20px;
}
.modal .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.modal .nav-links li {
    height: 34px;
    background: #F1F1F1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 10px;
    font-size: 12px !important;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    


}
.theme-toggle-modal img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.modal .nav-links li:nth-child(odd) {
    flex-direction: row;
}
.modal .nav-links a {
    font-size: 12px !important;
}
.modal .nav-links .dropbtn {
    padding: 0 !important;
    display: flex;
    justify-content: center;
}
.modal .nav-links .dropbtn .arrow {
    width: 10px;
    height: 10px;
    margin-top: -7px;    
}
.modal .nav-links li:hover {
    background: #0372F440;

}
.modal .dropdown {
    position: static;
}
.close-modal-icon-white {
    display: none;
}
@media(max-width: 1300px) {
    .navbar {
        max-width: 1200px;
    }
}
.dropdown-content-modal {
    display: none;
        position: absolute;
        background-color: #ffffff;
        width: 240px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        border-radius: 16px;
        overflow: hidden;
        padding: 10px 10px;
        left: -150px;
}
@media(max-width: 390px) {
    .dropdown-content-modal {
        left: -100px;
    }
}
@media(max-width: 340px) {
    .dropdown-content-modal {
        left: -50px;
    }
}
.dropdown-content-modal a {
    width: auto;
    font-size: 12px !important;
}
.dropdown-content-modal .search-container {
    width: auto;
}

#noResults {
    display: none;
    background-color: none !important;
    padding: 20px;
    line-height: 28px;
}

@-webkit-keyframes autofill {
    to {
      color: inherit;
      background: transparent;
    }
  }
  
  input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
  }


.languages-container {
    overflow-y: auto;
    height: 220px;
    padding: 0 4px;
}
.search-container {
    margin: 0 4px;
}
.languages-container::-webkit-scrollbar {
    width: 2px; /* Ширина вертикального скроллбара */
  }
  
  /* Стилизуем ползунок скроллбара */
 .dark-mode .languages-container::-webkit-scrollbar-thumb {
    background-color: #888; /* Цвет ползунка */
    border-radius: 10px; /* Скругление углов ползунка */
  }
  
  /* Стилизуем дорожку скроллбара */
.dark-mode .languages-container::-webkit-scrollbar-track {
    background-color: #575757; /* Цвет дорожки скроллбара */
    border-radius: 10px; /* Скругление углов дорожки */
  }

.dark-mode .contact-us-block h3 {
    color: #141414 !important;
}
.dark-mode .contact-us-block p {
    color: #141414 !important;
}