* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px;
}

.mainBg {
    background: #062968 url("./imgs/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
}

.prBg {
    background: #062968 url("./imgs/bg2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
}

.contBg {
    background: #062968 url("./imgs/bg3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
}

header {
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 10;
    position: fixed;
    background: transparent;

    .containerHeader {
        gap: 64px;
        width: 100%;
        display: flex;
        padding: 12px 10px;
        max-width: 1300px;
        align-items: center;
        justify-content: space-between;

        .header__content {
            gap: 64px;
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;

            .header__logo {
                img {
                    max-width: 200px;
                }
            }

            .header__nav {
                gap: 32px;
                display: flex;
                align-items: center;

                a {
                    color: #fff;
                    font-family: Montserrat;
                    font-size: 15px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: normal;
                    text-transform: uppercase;
                    &:hover {
                        color: #4a5568;
                    }
                }
            }
        }

        .header__btn {
            gap: 10px;
            display: flex;
            align-items: center;

            .sign__in {
                color: #fff;
                font-size: 18px;
                font-weight: 500;
                padding: 12px 40px;
                border-radius: 8px;
                border: 1px solid #36c3ff;

                &:hover {
                    border: 1px solid #5fcfff;
                }
            }

            .sign__up {
                color: #fff;
                font-size: 18px;
                font-weight: 500;
                border-radius: 8px;
                padding: 12px 40px;
                background: #04b200;
                border: 1px solid #36ff32;

                &:hover {
                    background: #19c915;
                    border: 1px solid #90ff8e;
                }
            }
        }

        .header__bar {
            width: 40px;
            height: 40px;
            display: none;
            cursor: pointer;
            border-radius: 8px;
            align-items: center;
            background: #000;
            flex-direction: column;
            justify-content: center;

            .bar {
                width: 50%;
                height: 3px;
                display: block;
                border-radius: 5px;
                transition: 0.3s ease;
                background-color: #fff;

                &:nth-child(1) {
                    transform: translateY(-4px);
                }

                &:nth-child(3) {
                    transform: translateY(4px);
                }
            }

            &.change {
                .bar {
                    background-color: #fff;
                }

                .bar:nth-child(1) {
                    transform: translateY(2px) rotateZ(-45deg);
                }

                .bar:nth-child(2) {
                    opacity: 0;
                }

                .bar:nth-child(3) {
                    transform: translateY(-4px) rotateZ(45deg);
                }
            }
        }
    }
}

@media (max-width: 1020px) {
    header {
        .containerHeader {
            gap: 32px;
            padding: 16px 16px;

            .header__content {
                gap: 32px;

                .header__logo {
                    img {
                        max-width: 165px;
                    }
                }

                .header__nav {
                    left: 0;
                    gap: 24px;
                    top: 67px;
                    width: 100%;
                    display: none;
                    position: fixed;
                    padding: 48px 16px;
                    background: #000;
                    flex-direction: column;
                    border-bottom: 1px solid #000;

                    a {
                        width: 100%;
                        text-align: start;
                    }

                    &.change {
                        display: flex !important;
                    }
                }
            }

            .header__btn {
                left: 0;
                bottom: 0;
                width: 100%;
                position: fixed;
                background: #1a1b21;
                justify-content: center;
                padding: 10px 16px 14px 16px;
                border-radius: 16px 16px 0 0;

                .sign__in,
                .sign__up {
                    width: 100%;
                    text-align: center;
                }
            }

            .header__bar {
                display: flex !important;
            }
        }
    }
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #fff;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

h1 span {
    color: #ec2325;
}

.subText {
    color: #fff;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0 30px 0;
}

.main {
    max-width: 895px;
    margin-top: 80px;
}

.btn {
    border-radius: 50px;
    background: #ec2325;
    color: #fff;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 15px 40px;
    max-width: 227px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    color: #1d1d1d;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

h2 span {
    color: #ec2325;
}

.secText {
    color: #1d1d1d;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

.text {
    color: #ec2325;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.secText span {
    font-weight: 800;
}

.secBlock {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 80px;
}

.ft {
    display: flex;
    justify-content: space-between;
}

.footer {
    background: #1d1d1d;
}

.footerText {
    color: #fff;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.footerLink {
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-right: 20px;
}

.blRight {
    display: flex;
}

.prBlock {
    color: #1d1d1d;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

h3 {
    color: #fff;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

.cookText {
    color: #1d1d1d;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cookTitle {
    color: #1d1d1d;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

@media (max-width: 800px) {
    .mobNone {
        display: none;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 30px;
    }
    .ft {
        flex-direction: column;
    }
    .container {
        padding: 10px;
    }
    .blRight {
        margin-top: 20px;
        flex-direction: column;
        gap: 20px;
    }
    .btn {
        max-width: 100%;
    }
    .secBlock {
        margin-top: 40px;
    }
    h3 {
        font-size: 24px;
    }
}
