@font-face {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    /* Обычный шрифт */
    font-display: swap;
    src: url(../fonts/ProximaNova-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    /* Жирный шрифт */
    font-display: swap;
    src: url(../fonts/ProximaNova-Bold.woff2) format('woff2');
}

:root {
    /* background */
    --color-bg-white: #FAFAFA;
    --color-bg-blue: #2B2171;
    --color-bg-light-blue: #C6EAFF;

    /* text */
    --color-text-white: #FAFAFA;
    --color-text-blue: #2B2171;

    /* butons */
    --color-btn-blue: #2B2171;
    --color-btn-blue-hover: #3E338C;
    --color-btn-blue-pressed: #0C015A;

    --color-btn-wb: #CA11AB;
    --color-btn-wb-hover: #E82FC9;
    --color-btn-wb-pressed: #AC008D;

    --color-btn-oz: #005BFF;
    --color-btn-oz-hover: #1E79FF;
    --color-btn-oz-pressed: #0029CD;

    --color-btn-disabled: #D9D9D9;

    /* links */
    --color-link: #2B2171;
    --color-link-hover: #3E338C;
    --color-link-pressed: #0C015A;
    --color-link-disabled: #D9D9D9;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 136px;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 98px;
    }
}

@media (min-width: 1440px) {
    html {
        scroll-padding-top: 104px;
    }
}

.lock {
    overflow: hidden;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

img {
    max-width: 100%;
    height: auto;
}

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="ratio"].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: insert(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* body */

body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-style: normal;
    font-family: 'Proxima Nova';
    font-optical-sizing: auto;
    font-style: normal;
    background-color: var(--color-bg-white);
    color: var(--color-text-blue);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    width: 100%;
    min-width: 360px;
}

/* H1 */

h1 {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    padding-bottom: 8px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 40px;
    }
}

@media (min-width: 1440px) {
    h1 {
        font-size: 48px;
    }
}

/* H2 */

h2,
.section__title {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    padding-bottom: 16px;
}

@media (min-width: 768px) {

    h2,
    .section__title {
        font-size: 40px;
        padding-bottom: 24px;
    }
}

@media (min-width: 1440px) {

    h2,
    .section__title {
        font-size: 48px;
        padding-bottom: 32px;
    }
}

/* H3 */

h3 {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    /* padding-bottom: 16px; */
}

@media (min-width: 768px) {
    h3 {
        padding-bottom: 0;
    }
}

/* text */

.text {
    font-family: 'Proxima Nova Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

/* button */

.button {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--color-text-white);
    background-color: var(--color-btn-blue);
    width: 239px;
    height: 48px;
    border-radius: 32px;
    border: none;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .button {
        width: 210px;
    }
}

.button:hover {
    background-color: var(--color-btn-blue-hover);
}

.button:active {
    background-color: var(--color-btn-blue-pressed);
}

/* button--wildberries */

.button--wildberries {
    background-color: var(--color-btn-wb);
}

.button--wildberries:hover {
    background-color: var(--color-btn-wb-hover);
}

.button--wildberries:hover {
    background-color: var(--color-btn-wb-pressed);
}

/* button--ozon */

.button--ozon {
    background-color: var(--color-btn-oz);
}

.button--ozon:hover {
    background-color: var(--color-btn-oz-hover);
}

.button--ozon:active {
    background-color: var(--color-btn-oz-pressed);
}

.button:disabled {
    background-color: var(--color-btn-disabled);
}

a.button {
    text-decoration: none;
}

.section__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

@media (min-width: 768px) {
    .section__content {
        gap: 16px;
    }
}

/* header */

header {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 136px;
    background: var(--color-bg-white);
    z-index: 1000;
}

@media (min-width: 768px) {
    header {
        height: unset;
        padding: 24px 32px;
    }
}

@media (min-width: 1440px) {
    header {
        box-shadow: 2px 4px 10px rgba(142, 142, 142, 0.1);
    }
}

.section__block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width: 768px) {
    .section__block {
        width: calc(100% - 72px);
    }
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 1224px;
        padding: 0;
    }
}

header .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    z-index: 1;
    padding: 0;
}

@media (min-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        z-index: 1;
        padding: 0;
    }
}

.logo--header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
}

.logo--header img {
    height: 56px;
}

@media (min-width: 768px) {
    .logo--header {
        padding-top: 0;
    }

    .logo--header img {
        height: 50px;
    }
}

@media (min-width: 1440px) {

    .logo--header img {
        height: 56px;
    }
}

/* navigation */

.nav__wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 100;
    background-color: var(--color-bg-white);
    padding: 16px;
}

@media (min-width: 768px) {
    .nav__wrap {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
    }
}

.main__nav {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding-left: 0;
    overflow: auto;
}

@media (min-width: 768px) {
    .main__nav {
        justify-content: flex-end;
        gap: 32px;
    }
}

.menu__item {
    flex-shrink: 0;
}

.menu__item a {
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-link);
}

.menu__item a:hover {
    color: var(--color-link-hover) !important;
}

.menu__item:active a {
    color: var(--color-link-hover) !important;
}

.menu__item:disabled a {
    color: var(--color-link-disabled) !important;
}

/* main */

main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 40px;
}

@media (min-width: 768px) {
    main {
        gap: 56px;
    }
}

@media (min-width: 1440px) {
    main {
        gap: 96px;
    }
}

/* first-screen section */

.first-screen {
    margin-top: 136px;
    width: 100%;
}

@media (min-width: 768px) {
    .first-screen {
        margin-top: 98px;
    }
}

@media (min-width: 1440px) {
    .first-screen {
        margin-top: 104px;
    }
}

.first-screen .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 535px;
    background: #C6EAFF;
    border-radius: 8px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 16px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .first-screen .container {
        height: 500px;
        padding: 40px;
        width: calc(100% - 64px);
    }
}

@media (min-width: 1440px) {
    .first-screen .container {
        height: 680px;
        padding: 72px;
    }
}

.first-screen__img-yetti {
    position: absolute;
    bottom: -160px;
    left: 57%;
    width: 450px;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .first-screen__img-yetti {
        position: absolute;
        bottom: -380px;
        left: 58%;
        width: 640px;
        transform: translateX(-50%);
    }
}

@media (min-width: 1440px) {
    .first-screen__img-yetti {
        position: absolute;
        bottom: -580px;
        left: 61%;
        width: 935px;
        transform: translateX(-50%);
    }
}

.first-screen__img-products {
    position: absolute;
    bottom: 0;
    left: 43%;
    width: 250px;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .first-screen__img-products {
        position: absolute;
        bottom: 0;
        left: 36%;
        width: 430px;
        transform: translateX(-50%);
    }
}

@media (min-width: 1440px) {
    .first-screen__img-products {
        position: absolute;
        bottom: 0;
        left: 35%;
        width: 730px;
        transform: translateX(-50%);
    }
}

.text--first-screen {
    position: relative;
    display: flex;
    padding-bottom: 16px;
    width: 100%;
    max-width: 424px;
}

@media (min-width: 1440px) {
    .text--first-screen {
        max-width: 500px;
    }
}

/* about */

.about__subtitle {
    width: 100%;
    max-width: 400px;
}

.about-wrapper {
    align-self: center;
    width: 100%;
}

.about-wrapper img {
    width: 100%;
}

@media (min-width: 768px) {
    .about-wrapper {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
        max-width: 360px;
    }

    .about__subtitle {
        width: 50%;
    }

    .text--about1 {
        width: 600px;
    }

    .text--about2 {
        width: calc(50% - 8px);
    }
}

@media (min-width: 1440px) {
    .about {
        height: 454px;
    }

    .about__subtitle {
        width: 30%;
    }

    .about-wrapper {
        max-width: 50%;
        top: 0;
    }
}

/* products */

@media (min-width: 1440px) {
    .products {
        width: 100%;
    }
}

.products__list-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin: auto;
    width: 100%;
}

.products__list {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .products__list-mobile {
        display: none;
    }

    .products__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
        margin: auto;
        width: 100%;
    }
}

@media (min-width: 1440px) {
    .products__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 24px;
        margin: auto;
        width: 100%;
    }
}

.products__item {
    line-height: 0;
}

.products__item img {
    filter: drop-shadow(2px 4px 10px rgba(142, 142, 142, 0.1));
    width: 100%;
}

/* shop */

.shop {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}

.shop .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 535px;
    border-radius: 8px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 24px;
    overflow: hidden;
    padding-top: 32px;
    background-color: var(--color-bg-blue);
    color: var(--color-text-white);
}

@media (min-width: 768px) {
    .shop .container {
        align-items: flex-start;
        height: 415px;
        width: calc(100% - 64px);
    }
}

.shop__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    width: 100%;
    z-index: 1;
}

.text--shop {
    text-align: center;
    max-width: 400px;
}

@media (min-width: 768px) {
    .text--shop {
        text-align: left;
    }

    .shop__wrapper {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        padding-top: auto;
        margin-top: auto;
        width: 100%;
    }
}

.shop__img {
    position: absolute;
    bottom: -325px;
    left: 74%;
    width: 560px;
    transform: translateX(-50%);
    max-width: unset;
    z-index: 0;
}

@media (min-width: 768px) {
    .shop__img {
        bottom: -610px;
        left: 80%;
        width: 950px;
        transform: translateX(-50%);
        max-width: unset;
        z-index: 0;
    }
}

@media (min-width: 1440px) {
    .shop__img {
        bottom: -953px;
        left: 84%;
        width: 1425px;
        transform: translateX(-50%);
        max-width: unset;
        z-index: 0;
    }
}

/* advantages */

.advantages {
    width: 100%;
}

.advantages .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
}

.advantages__title {
    text-align: center;
}

.advantages__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin: auto;
}

@media (min-width: 768px) {
    .advantages__wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
        margin: auto;
    }
}

@media (min-width: 1440px) {
    .advantages__wrapper {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 56px;
        margin: auto;
    }
}

.advantages__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.advantages__item img {
    height: 64px;
}

@media (min-width: 768px) {
    .advantages__item {
        max-width: 165px;
    }

    .advantages__item img {
        height: 100px;
    }
}

@media (min-width: 1440px) {
    .advantages__item {
        max-width: 185px;
    }

    .advantages__item img {
        height: 115px;
    }
}

.text--advantages {
    text-align: center;
}

/* footer */

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 24px 0;
    overflow: hidden;
    background-color: var(--color-bg-light-blue);
    margin-top: 40px;
}

@media (min-width: 768px) {
    footer {
        margin-top: 40px;
        padding: 32px;
    }
}

@media (min-width: 1440px) {
    footer {
        margin-top: 96px;
        padding: 32px 0;
        height: 176px;
    }
}

.footer__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
}

@media (min-width: 1440px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.logo--footer {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo--footer img {
    height: 76px;
}

@media (min-width: 768px) {

    .logo--footer img {
        height: 110px;
    }
}

@media (min-width: 1440px) {

    .logo--footer img {
        height: 90px;
    }
}

.footer__contacts {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.footer__phone,
.footer__email {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: var(--color-link);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer__phone a,
.footer__email a {
    font-family: 'Proxima Nova';
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--color-link-hover);
    border-color: var(--color-link-hover);
}

.footer__phone:active,
.footer__email:active {
    color: var(--color-link-active);
    border-color: transparent;
}

.footer__phone:disabled,
.footer__email:disabled {
    color: var(--color-link-disabled);
}

.footer__wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 54px;
}

@media (min-width: 768px) {
    .footer__wrapper {
        position: absolute;
        right: 0;
        display: flex;
        justify-content: flex-start;
        gap: 68px;
    }
}

@media (min-width: 1440px) {
    .footer__wrapper {
        position: absolute;
        left: 57%;
        transform: translateX(-50%);
        display: flex;
        justify-content: flex-start;
        gap: 90px
    }
}

.footer__navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.footer__navigation .text {
    white-space: nowrap;
}

.footer__requisites {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer__requisites {
        max-width: 160px;
    }
}

@media (min-width: 1440px) {
    .footer__requisites {
        max-width: 300px;
    }
}