:root {
    --PrimaryColor: #217fff;
    --PrimaryColorRGBA: 33, 127, 255;
    --SecondaryColor: #1e1d28;
    --SecondaryColorRGBA: 33, 32, 40;
    --BodyColor: #1E1D28;
    --BodyColorRGBA: 30, 29, 40;
    --TitleColor: #1E1D28;
    --WhiteColor: #FFFFFF;
    --WhiteColorRGBA: 255, 255, 255;
    --BlackColor: #000000;
    --BlackColorRGBA: 0, 0, 0;
    --YellowColor: #ffa117;
    --YellowColorRGBA: 255, 161, 23;
    --RedColor: #ff4230;
    --RedColorRGBA: 255, 66, 48;
    --OrangeColor: #FF5438;
    --PurpleColor: #9374FC;
    --GreenColor: #009875;
    --ParrotColor: #8EC64E;
    --CyanColor: #07E5E5;
    --bgColor: #f0f3f7;
    --bgColorRGBA: 240, 243, 247;
    --FooterbgColor: #0E0D1F
}

h1 {
    font-size: 60px
}

h2 {
    font-size: 45px
}

.header-main {
    position: relative;
    width: 100%;
    z-index: 10;
    background-color: #fcfcfc;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.header-main .bottom-part {
    background-color: #fff
}

.header-main__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    width: 100%
}

.header-main__bar-spacer {
    min-height: 1px;
    pointer-events: none
}

.header-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 14px;
    margin: 0;
    padding: 0;
    -ms-grid-column-align: start;
    justify-self: start
}

.header-main__bar .logo {
    -ms-grid-column-align: center;
    justify-self: center;
    text-align: center
}

.header-social__link {
    position: relative;
    color: #523528;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 0;
    -webkit-transition: color .2s ease, -webkit-transform .2s ease;
    transition: color .2s ease, transform .2s ease;
    border-radius: 8px;
    padding: 4px
}

.header-social__link:hover {
    color: #647343
}

.header-social__link:focus-visible {
    color: #647343;
    outline: 2px solid #647343;
    outline-offset: 3px
}

.header-social__icon {
    display: block;
    width: 22px;
    height: 22px
}

.header-social__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.header-main .bottom-part::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--BlackColorRGBA), .5);
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

@media (min-width:1200px) {
    .header-main .bottom-part .container {
        max-width: calc(100% - 20px - 20px)
    }
}

@media (min-width:1400px) {
    .header-main .bottom-part .container {
        max-width: calc(100% - 40px - 40px)
    }
}

@media (min-width:1680px) {
    .header-main .bottom-part .container {
        max-width: calc(100% - 77px - 77px)
    }
}

@-webkit-keyframes fadeDown {
    0% {
        opacity: 0;
        top: -100%
    }

    100% {
        top: 0;
        opacity: 1
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        top: -100%
    }

    100% {
        top: 0;
        opacity: 1
    }
}