* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: #000;
    padding: 0;
    margin: 0;
}

body {
    background: #fff;
}

a {
    text-decoration: none;
}

.colored {
    color: orange;
}

.max-width {
    max-width: 1280px;
    width: 100%;
}

.nav a, .menu-wrapper a {
    margin: 0 10px;
    font-style: italic;
    font-weight: 600;
}

.nav a:hover {
    color: #dedede;
}

.nav-mobile {
    display: none;
    cursor: pointer;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}
.menu-wrapper {
    position: absolute;
    width: 100%;
    background: #fff;
    top: 0;
    padding: 10px;
    display: none;
    border-top: 1px solid grey;
}

.menu-wrapper a {
    margin: 10 0;
    color: #000;
}

.opened {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: menu-open 0.5s forwards;
}

.logo {
    display: flex;
    align-items: center;
}

.logo p {
    font-weight: 700;
    margin: 10px;
    font-size: 1.5em;
}
.logo img {
    width: 50px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: orange;
    border-bottom: 1px solid grey;
}

.header * {
    color: #fff;
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.top-header {
    text-align: center;
    font-weight: 700;
    padding: 1em 0;
}

.menu-wrapper a {
    margin: 5px 0;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
}

.head_info {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.head_info h1 {
    color: #fff;
    text-shadow: 2px 2px 2px black;
}

.head_info h3 {
    color: #fff;
    text-shadow: 2px 2px 2px black;
    font-weight: 700;   
}

.exclusive, .trust {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 1em;
    padding: 1em;
    margin: 6em 0;
}

.exclusive_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    padding: 1em;
    background: rgb(239, 239, 239);
    border-radius: 15px;
    gap: 0.5em;
    min-height: 310px;
}

.exclusive_item:hover {
    transform: scale(1.01);
    transition: 0.5s;
}

.exclusive_item p {
    color: grey;
}

.exclusive_item img {
    width: 100px;
}

.trust {
    background: rgb(239, 239, 239);
}

.trust h2 {
    width: 100%;
    text-align: center;
    color: orange;
    margin: 1em 0;
}

.trust_item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    padding: 1em;
    background: #fff;
    border-radius: 15px;
    gap: 0.5em;
    min-height: 210px;
}

.trust_item p {
    color: grey;
}

.trust_item img {
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    width: 70px;
}

.info {
    background: rgb(26, 30, 42);
    padding: 1em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    padding: 4em 0;
}

.info_about {
    background: rgb(26, 30, 42);
    padding: 1em;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
    padding: 4em 0;
}

.info * {
    color: #fff;
}

.info h2 {
    color: orange;
}

.info_item {
    display: flex;
    flex-direction: column;
    padding: 2em 1em;
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    max-width: 500px;
    align-items: center;
    gap: 1em;
}

.info_item img {
    width: 70px;
}

.info_title, .info_about_title {
    margin-bottom: 2em;
}

.info_about_item {
    
}

.info_about_item h3 {
    color: #fff;
}

.info_about_item p {
    color: grey;
}

.info_about_item {
    width: 100%;
}

.info_about h2 {
    color: orange;
    text-align: center;
    width: 100%;
}
.wr {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2d2c2ce6;
    z-index: 999;
    display: none;
}

.information_container, .faq_container {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 100px;
}

.faq_container {
    flex-direction: column;
    display: flex;
    align-items: center;
}

.faq_header {
    color: orange;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.accordion {
    display: flex;
    gap: 10px;
    flex-direction: column;
    max-width: 860px;
    width: 100%;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
    outline: none;
    border: none;
    color: grey;
    border: 1px solid orange;
}

.accordion-header__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color-main);
    width: 90%;
}

.accordion-content__text {
    color: var(--subtext-color);
    font-size: 18px;
    line-height: 21.8px;
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-content.open .accordion-content__text {
    opacity: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.1s ease-out 0.2s, visibility 0.1s ease-out 0.2s;
    opacity: 0;
    visibility: hidden;
    padding: 0 15px;
}

.accordion-content.open {
    background-color: var(--bg-color-tertiary);
    height: auto;
    padding: 15px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.1s ease-out 0.2s, visibility 0.1s ease-out 0.2s;
}



.popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96%;
    max-width: 450px;
    width: 100%;
    transform: translate(-50%, -50%) scale(1);
    animation: openPopup 0.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    display: flex;
    background: #fff;
    border: 2px solid orange;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 10px 35px 10px;
    gap: 10px;
}

.popup_content * {
    color: #000;
}

.popup_actions {
    width: 100%;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head_info {
    width: 100%;
    background: url("../assets/images/header-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 3em;
    padding: 4em 1em;
}

.head_info-actions {
    display: flex;
    align-items: center;
    gap: 2em;
    width: max-content;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}

.link-btn {
    display: block;
    padding: 1em 2em;
    background: orange;
    color: #fff;
    font-weight: 700;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5em;
}

.link-btn:hover {
    background: #fff;
    color: orange;
    transition: 0.3s;
}

.link-btn-second {
    display: block;
    padding: 1em 2em;
    background: #fff;
    color: orange;
    font-weight: 700;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5em;
}

.link-btn-second:hover {
    background: orange;
    color: #fff;
    transition: 0.3s;
}

.popup_actions button {
    padding: 10px 15px;
    border: none;
    width: 120px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    text-shadow: 1px 1px 1px black;
    font-size: 2em;
    border-radius: 15px;
}

.popup_actions button:first-child {
    background: rgb(0, 218, 0);
}

.popup_actions button:last-child {
    background: red;
}

.popup_content h2 {
    text-align: center;
    margin-bottom: 1em;
}

.opened-popup {
    display: block;
}

.close {
    position: absolute;
    height: 20px;
    width: 20px;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
    outline: none;
}


.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(26, 30, 42);
    width: 100%;
    padding: 3em 1em;
}

.footer_content {
    background: rgb(26, 30, 42);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_content-brands {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
    justify-content: center;
}

.footer_content-brands img {
    height: 50px;
    max-width: 100%;
}

.age {
    background: red;
    border: 2px solid #fff;
    color: #fff;
    display: block;
    border-radius: 50%;
    padding: 1em;
}

.age * {
    color: #fff;
}

.footer_content * {
    text-align: center;
}

.prev_info {
    margin: 1em 0;
}

.prev_info h3 {
    color: #fff;
}

.prev_info p {
    color: grey;
}

.disclaimer {
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    padding: 1em 0;
    margin-bottom: 1em;
}
.disclaimer * {
    color: #fff;
    font-weight: 800;
}

.copyright {
    margin-top: 1em;
    color: grey;
}

.link {
    color: orange;
}

.about_content {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.about_content-item {
    padding: 2em 1em;
    background: rgb(239, 239, 239);
}

.about_content-item h3 {
    margin-bottom: 1em;
}

.about_content-item p {
    color: grey;
}

.contact-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

/* Heading */
.contact-form h2 {
    text-align: center;
    color: #007bff;
}

/* Form elements styling */
.contact-form label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
}

/* Button styling */
.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.contact-form input.invalid, .contact-form textarea.invalid {
    border-color: #e74c3c;
    background-color: #f9d6d6;
}

.contacts_container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contacts_info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2em 0;
    flex-wrap: wrap;
    gap: 1em;
    
}

.contacts_info-item {
    background: rgb(239, 239, 239);
    padding: 1em;
    border-radius: 15px;
    width: 30%;
    height: 100px;
    min-width: 350px;
    text-align: center;
}

.contacts_info-item p {
    color: grey;
}

.sended {
    display: none;
    width: 100%;
    background: rgb(126, 230, 126);
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    width: 100%;
    text-align: center;
}

.technical {
    padding: 3em 1em;
}

ul {
    margin-left: 1em;
    
}

li {
    color: grey;
}

.technical p {
    color: grey;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin: 1em 0;
    text-align: center;
}

.footer-links a {
    color: orange;
}

.footer-links a:hover {
    text-decoration: underline;
}

.contacts_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.contacts_section-bottom {
    color: orange;
    text-align: center;
}

.contacts_container-header {
    color: orange;
    text-align: center;
    margin: 1em 0;
}

.contacts_main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacts_main .btn {
    text-align: center;
}

@media screen and (max-width: 765px) {
    .nav {
        display: none;
    }

    .header {
        justify-content: space-between;
    }

    .nav-mobile {
        display: block;
    }
}

@keyframes menu-open {
    from {
        top: -100%;
    }

    to {
        top: 60px;
    }
}