@font-face {
    font-family: 'Gotham Pro';
    src: url(fonts/GothamPro-Black.woff) format("woff");
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url(fonts/GothamPro.woff) format("woff");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url(fonts/GothamPro-Medium.woff) format("woff");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'e-UkraineHead';
    src: url(fonts/e-UkraineHead-Bold.woff) format("woff");
    font-weight: 700;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: rgb(92, 92, 92);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

li {
    list-style: none;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
    border: none;
    font-family: var(--font-family);
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

input,
textarea {
    font-family: var(--font-family);
}

.no-scroll {
    overflow: hidden;
}

body {
    background-color: rgba(10, 10, 17, 0.986);
    font-family: var(--font-family);
    overflow-x: hidden;
}

:root {
    --primary: #FFFBEF;
    --font-family: 'Gotham Pro', sans-serif;
    --yellow: #fed500;
    --main-dark-color: #3536435b;
    --main-darklight-color: #48495b5b;
    --main-ui-opacity: 0.05;
    --accent: #007bff;
    --muted: #e6e6e6;
    --nav-bg: rgba(0, 0, 0, 0.35);
}

.section {
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    height: 100vh;
    width: 100%;
}

.section__index {
    background-image: url(../images/backgrounds/1.png);
}

.section__about {
    background-image: url(4.png);
}

.section__rules {
    background-image: url(5.png);
}

.section__index-second {
    background-image: url(2.png);
}

.section__index-third {
    background-image: url(3.png);
}

header {
    background: rgba(0, 0, 0, 0.372);
    position: fixed;
    padding: 24px 0;
    box-shadow: 0;
    top: 0;
    left: 0;
    padding: 1.5rem 2rem;
    transition: 0.2s ease;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9998;
    transition: all 0.5s ease;
    backdrop-filter: blur(0);
    animation: fadeInDown 1.5s;
}

header.scroll {
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.9);
}

.logo__header {
    width: 96px;
    height: 96px;
}

.header__navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__link {
    position: relative;
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: 0.2s;
}

.header__link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1a6dfc 0%, #0d47a1 100%);
    transition: 0.2s;
}

.header__link:hover {
    color: #1a6dfc;
}

.header__link:hover::before {
    width: 100%;
}

.header__link-active {
    color: #1a9efc;
}

.header__link-active::before {
    width: 100%;
    transition: 0.2s;
}

.header__link-active:hover::before {
    width: 90%;
}

.letters__big-hort {
    color: var(--primary);
    -webkit-text-stroke: 1px rgb(0, 0, 0);
}

.letters__big-ua {
    color: var(--primary);
    -webkit-text-stroke: 1px rgb(0, 0, 0);
}

.main__container {
    display: flex;
    flex-direction: column;
    margin-top: 400px;
    margin-left: 100px;
    position: absolute;
    color: var(--primary);
    animation: fadeInLeftBig 1.5s;
}

.welcome__span-main {
    font-size: 30px;
    font-weight: 300;
}

.name__span-main {
    font-size: 68px;
    font-weight: 900;
    color: var(--primary);
}

.name__ourCompany {
    margin-top: 45px;
    color: var(--primary);
    font-size: 32px;
    font-weight: 500;
}

.block__command {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 35px;
    border-radius: 3px;
    border: 2px solid rgb(95, 95, 95);
    transition: 0.2s all ease;
}

.block__command:hover {
    border: 2px solid var(--primary);
    backdrop-filter: blur(5px);
}

.container__ourCommand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nickname__commandAvatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-top: 20px;
    object-fit: cover;
    object-position: center top;
}

.nickname__command {
    color: var(--primary);
    font-size: 23px;
    font-weight: 700;
}

.container__socials-main {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn__social-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    color: var(--primary);
    background: linear-gradient(135deg, #1a6dfc93 0%, #0d48a18e 100%);
    border: 1px solid #0d47a1;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn__social-main:hover {
    background: linear-gradient(135deg, #1a6dfc 0%, #0d47a1 100%);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #0d47a1;
}

.btn__social-main svg {
    fill: var(--primary);
}

.popup__recruitment {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.216);
    z-index: 100;
    display: none;
}

.popup__title {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.popup__content-recruitment {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 540px;
    width: 100%;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .05);
    background: #0f0f16;
    border-radius: 8px;
    color: var(--primary);
}

.btn__close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all ease;
    border-radius: 4px;
    outline: none;
    background: rgba(255, 251, 239, .03);
    z-index: 2;
}

.btn__close-popup:hover {
    background: rgba(255, 251, 239, 0.1);
    cursor: pointer;
}

.container__input-apply {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #e0e6ed;
}

.input {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.input__apply {
    color: #e0e6ed;
    padding: 20px 10px;
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, var(--main-ui-opacity));
    border-radius: 3px;
    border: 1px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    transition: 0.2s;
}

.input-error {
    border: 1px solid #e74c3c;
    outline: none;
    transition: border 0.3s ease;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-2px);
    outline: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.error-message.visible {
    opacity: 1;
    transform: translateY(0);
}


.input__apply:focus {
    border: 1px solid rgba(255, 251, 239, .1)
}

.input__apply:hover {
    background: #2c2c36;
    transition: 0.2s;
}

.main__applyes {
    margin-left: 200px;
    margin-right: 200px;
    margin-top: 200px;
}

.block__text-applyes {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background:
        radial-gradient(ellipse at top right, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(148, 85, 211, 0.1) 0%, transparent 50%),
        linear-gradient(145deg, rgba(22, 22, 32, 0.95) 0%, rgba(18, 18, 26, 0.98) 100%);
    padding: 32px 28px;
    font-weight: 450;
    color: #f8fafc;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px) saturate(200%);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 50px;
}

.block__text-applyes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.4) 70%,
            transparent 100%);
    z-index: 2;
}

.block__text-applyes::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            rgba(74, 144, 226, 0.7) 0%,
            rgba(148, 85, 211, 0.5) 50%,
            rgba(100, 220, 255, 0.3) 100%);
    border-radius: 0 20px 0 80px;
    filter: blur(12px);
    opacity: 0.8;
    z-index: 1;
}

.block__text-applyes:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(74, 144, 226, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.block__text-applyes.neon {
    border: 1px solid rgba(74, 144, 226, 0.25);
    background:
        radial-gradient(ellipse at top right, rgba(74, 144, 226, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(100, 220, 255, 0.2) 0%, transparent 60%),
        linear-gradient(145deg, rgba(26, 32, 54, 0.92) 0%, rgba(21, 27, 43, 0.96) 100%);
}

.block__text-applyes.neon::after {
    background: linear-gradient(135deg,
            rgba(74, 144, 226, 0.9) 0%,
            rgba(100, 220, 255, 0.7) 50%,
            rgba(148, 85, 211, 0.4) 100%);
    opacity: 0.9;
    filter: blur(14px);
}

.text__400 {
    font-weight: 400;
}

.btn__send-recruitment {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a90e2 0%, #9455d3 100%);
    color: white;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(74, 144, 226, 0.3),
        0 0 15px rgba(148, 85, 211, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn__send-recruitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn__send-recruitment::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn__send-recruitment:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 35px rgba(74, 144, 226, 0.4),
        0 0 25px rgba(148, 85, 211, 0.3),
        0 0 40px rgba(100, 220, 255, 0.2);
    background: linear-gradient(135deg, #9455d3 0%, #4a90e2 100%);
}

.btn__send-recruitment:hover::before {
    left: 100%;
}

.btn__send-recruitment:hover::after {
    width: 300px;
    height: 300px;
}

.btn__send-recruitment:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow:
        0 5px 15px rgba(74, 144, 226, 0.4),
        0 0 10px rgba(148, 85, 211, 0.3);
    transition: all 0.1s ease;
}

.btn__send-recruitment .btn-icon {
    transition: transform 0.3s ease;
}

.btn__send-recruitment:hover .btn-icon {
    transform: translateX(3px) scale(1.1);
}

.btn__send-recruitment:focus {
    outline: none;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(74, 144, 226, 0.4),
            0 0 0 0 rgba(148, 85, 211, 0.3);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(74, 144, 226, 0),
            0 0 0 8px rgba(148, 85, 211, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(74, 144, 226, 0),
            0 0 0 0 rgba(148, 85, 211, 0);
    }
}

.btn__send-recruitment.loading {
    pointer-events: none;
}

.btn__send-recruitment.loading::before {
    animation: loading-shine 1.5s infinite;
}

@keyframes loading-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.container__form-sended {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(50px);
    z-index: 9998;
    display: none;
}

.block__form-sended {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 456px;
    padding: 30px;
    border: 1px solid rgb(85, 85, 85);
    border-radius: 8px;
    color: var(--primary);
    overflow: hidden;
}

.block__form-sended::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.558);
    backdrop-filter: blur(1.8px);
    z-index: 0;
}

.block__form-sended>* {
    position: relative;
    z-index: 1;
}

.back__toIndex-btn {
    margin-top: 20px;
}

.btn__close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 28px;
    border-radius: 5px;
    background: rgba(255, 251, 239, .03);
    transition: 0.2s all ease;
    margin-top: 15px;
}

.btn__close:hover {
    background: rgba(255, 251, 239, 0.072);
    cursor: pointer;
}

.container__join-toOurCompany {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background: #090b108c;
    margin-top: 50px;
    margin-left: 200px;
    margin-right: 200px;
    transition: 0.2s all ease;
}

.container__join-toOurCompany:hover {
    backdrop-filter: blur(5px);
}

.title__join {
    font-size: 46px;
    font-weight: 900;
    color: var(--primary);
}

.btn__size-join {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100px;
}

.container__recruitment-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}

.title__recruitment {
    color: var(--primary);
    font-size: 48px;
    font-weight: 700;
}

.img__container__join-toOurCompany {
    width: 356px;
    border-radius: 20px;
    margin: 60px;
    transition: 0.2s all ease;
}

.img__container__join-toOurCompany:hover {
    transform: scale(1.1);
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    border-top: 1px solid var(--primary);
    margin-top: 20px;
}

.footer__columns {
    display: flex;
    gap: 30px;
    margin-left: 96px;
}

.name__column {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
}

.footer__column-links {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 5px;
}

.footer__column-link {
    color: rgb(91, 91, 91);
    font-size: 16px;
    transition: 0.2s all ease;
}

.footer__column-link:hover {
    color: var(--primary);
}

.container__rules {
    margin-top: 150px;
    margin-left: 200px;
    margin-right: 200px;
    user-select: none;
    -webkit-user-drag: none;
}

.title__rules {
    color: var(--primary);
    font-weight: 400;
}

.container__span-rules {
    display: flex;
    flex-direction: column;
    color: var(--primary);
}


.text__li-rules {
    color: rgb(107, 107, 107);
}

.text__li-rules {
    list-style: disc;
}

.container__copyright {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(100, 100, 100);
    margin-top: 14px;
}

.container__copyright img {
    width: 23px;
    height: 23px;
    border-radius: 50%;
}

.section__aboutName {
    color: var(--primary);
    font-size: 56px;
    font-weight: 700;
    position: absolute;
    margin-top: 350px;
}

.carousel {
    width: min(1500px, 100%);
    max-width: 1300px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.carousel__track {
    display: flex;
    height: 100%;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
    touch-action: pan-y;
}

.carousel__slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-bg);
    color: #fff;
    cursor: pointer;
    border: none;
    opacity: 0;
    transition: opacity .2s, transform .12s;
    z-index: 4;
}

.nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.nav:active {
    transform: translateY(-50%) scale(.98);
}

.carousel:hover .nav {
    opacity: 1;
}

.nav--prev {
    left: 12px;
}

.nav--next {
    right: 12px;
}

.nav svg {
    width: 18px;
    height: 18px;
    display: block;
}

.indicators {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.indicator {
    width: 34px;
    height: 8px;
    border-radius: 4px;
    background: var(--muted);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .18s, transform .12s;
}

.indicator[aria-current="true"] {
    background: var(--accent);
    transform: scaleX(1.06) scaleY(1.02);
}

@media (hover: none) {
    .nav {
        opacity: 1;
        background: rgba(0, 0, 0, 0.45)
    }
}

.nav:focus,
.indicator:focus {
    outline: 2px solid rgba(0, 123, 255, 0.25);
    outline-offset: 2px;
}

.slide-counter {
    position: absolute;
    right: 12px;
    top: 12px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    z-index: 4;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        height: 60px;
    }

    .logo__header {
        width: 60px;
        height: 60px;
    }

    .header__navigation {
        gap: 15px;
    }

    .header__link {
        font-size: 0.9rem;
    }

    .main__container {
        margin-top: 200px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

    .welcome__span-main {
        font-size: 20px;
    }

    .name__span-main {
        font-size: 42px;
    }

    .main__container span:last-of-type {
        width: 100% !important;
        max-width: 100%;
    }

    .container__socials-main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .btn__social-main {
        padding: 10px 16px;
        font-size: 12px;
    }

    .name__ourCompany {
        font-size: 24px;
        text-align: center;
    }

    .container__ourCommand {
        padding: 0 20px;
    }

    .block__command {
        padding: 20px;
        width: 100%;
        max-width: 280px;
    }

    .container__join-toOurCompany {
        flex-direction: column;
        margin: 50px 20px;
        padding: 20px;
        text-align: center;
    }

    .container__join-toOurCompany>div {
        margin-left: 0 !important;
    }

    .title__join {
        font-size: 32px;
        text-align: center;
    }

    .img__container__join-toOurCompany {
        width: 280px;
        margin: 30px 0 0 0;
    }

    footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer__columns {
        margin-left: 0;
        flex-direction: column;
        gap: 20px;
    }

    .footer__column-links {
        align-items: center;
    }

    .main__applyes,
    .container__rules {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 100px;
    }

    .container__recruitment-main {
        margin-top: 100px;
    }

    .title__recruitment {
        font-size: 36px;
        text-align: center;
    }

    .section__aboutName {
        font-size: 36px;
        margin-top: 230px;
        text-align: center;
        width: 100%;
        left: 0;
    }

    .popup__content-recruitment {
        margin: 20px;
        padding: 24px;
        max-width: calc(100% - 40px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .main__container {
        margin-top: 300px;
        margin-left: 50px;
    }

    .container__join-toOurCompany {
        margin-left: 50px;
        margin-right: 50px;
    }

    .main__applyes,
    .container__rules {
        margin-left: 50px;
        margin-right: 50px;
    }

    .footer__columns {
        margin-left: 50px;
    }

    .img__container__join-toOurCompany {
        width: 300px;
        margin: 40px;
    }
}

@media (max-width: 480px) {
    .header__navigation {
        gap: 10px;
    }

    .header__link {
        font-size: 0.8rem;
    }

    .name__span-main {
        font-size: 32px;
    }

    .welcome__span-main {
        font-size: 18px;
    }

    .btn__social-main {
        padding: 8px 12px;
        font-size: 11px;
    }

    .title__join {
        font-size: 28px;
    }

    .img__container__join-toOurCompany {
        width: 240px;
    }

    .btn__send-recruitment {
        padding: 12px 24px;
        font-size: 14px;
    }

    .popup__content-recruitment {
        padding: 20px;
    }

    .popup__title {
        font-size: 22px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .main__container {
        margin-top: 150px;
    }

    .section {
        height: auto;
        min-height: 100vh;
    }

    .container__join-toOurCompany {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    header {
        padding: 0.5rem 1rem;
        height: 50px;
    }

    .logo__header {
        width: 45px;
        height: 45px;
    }
}

@media (min-height: 1000px) {
    .main__container {
        margin-top: 500px;
    }
}