@media (min-width: 650px) {}

@media (min-width: 768px) {
    .hero__video-media {
        width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero__box-link {
        bottom: 50px;
    }

    .about__items {
        display: flex;
        flex-wrap: wrap;
        padding: 5px;
        margin: 0 -10px;
    }

    .about__item {
        width: calc(100%/3 - 10px);
        margin: 5px;
    }

    .about__box-img {
        width: calc(100%/3 - 10px);
        padding-top: 50%;
        position: relative;
        order: 2;
    }

    .about__box-link {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about__text {
        order: 1;
    }

    .about__name {
        order: 4;
        margin-bottom: 0;
    }

    @keyframes text {
        0% {
            transform: translate(0, -35%);
            -webkit-transform: translate(0, -35%);
            -moz-transform: translate(0, -35%);
            -ms-transform: translate(0, -35%);
            -o-transform: translate(0, -35%);
        }

        100% {
            transform: translate(-350%, -35%);
            -webkit-transform: translate(-350%, -35%);
            -moz-transform: translate(-350%, -35%);
            -ms-transform: translate(-350%, -35%);
            -o-transform: translate(-350%, -35%);
        }
    }

    .projects__top-text {
        margin-bottom: 0px;
    }

    .projects__top {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        padding: 5px;
        margin: 0 -10px;
    }

    .projects__top-box {
        width: calc(100%/2 - 10px);
        margin: 5px;
    }

    .projects__card-box-img {
        width: 100%;
        padding-top: 100%;
        position: relative;
    }

    .employees__columns {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        padding: 15px;
        margin: 0 -30px;
    }

    .employees__column {
        width: calc(100%/2 - 30px);
        margin: 15px;
        position: relative;
        min-height: 100%;
    }

    .employees__text {
        position: sticky;
        top: 50px;
    }

    .choice__slide-box-img {
        width: 90%;
        position: relative;
        padding-top: 50%;
        margin: 0 auto;
    }

    .intro__box-img_long {
        padding-top: 60%;
    }

    .content__info {
        display: flex;
        flex-wrap: wrap;
        padding: 15px;
        margin: 0 -30px;
    }

    .content__info-item {
        width: calc(100%/2 - 30px);
        margin: 15px;
        position: relative;
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: 130px;
        line-height: 110%;
    }

    .projects__card {
        width: calc(100%/3 - 10px);
        margin: 5px;
    }

    .projects__card-box-img {
        padding-top: 140%;
    }

    .choice__swiper {
        max-width: 90%;
    }

    .choice__slide-title {
        top: 50%;
        position: absolute;
        z-index: 2;
        font-size: 130px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        max-width: 80%;
    }

    .choice__slide-info {
        display: flex;
        justify-content: center;
        gap: 50px;
        padding: 20px 0;
    }

    .swiper-slide-next>.choice__slide-info>.choice__slide-text {
        opacity: 0.1;
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }

    .swiper-slide-prev>.choice__slide-info>.choice__slide-text {
        opacity: 0.1;
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }

    .swiper-slide-next>.choice__slide-info>.choice__slide-adress>.choice__slide-adress-item {
        opacity: 0.1;
        transform: translateY(33px);
        -webkit-transform: translateY(33px);
        -moz-transform: translateY(33px);
        -ms-transform: translateY(33px);
        -o-transform: translateY(33px);
    }

    .swiper-slide-prev>.choice__slide-info>.choice__slide-adress>.choice__slide-adress-item {
        opacity: 0.1;
        transform: translateY(33px);
        -webkit-transform: translateY(33px);
        -moz-transform: translateY(33px);
        -ms-transform: translateY(33px);
        -o-transform: translateY(33px);
    }
}

@media (min-width: 1200px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        overflow: hidden;
        margin: 0 auto;
        position: relative;
        background: var(--main-bg);
        background-size: 200% 200%;
        animation: gradient 6s ease infinite;
        -webkit-animation: gradient 6s ease infinite;
    }

    @keyframes gradient {
        0% {
            background-position: 50% 0%;
        }

        50% {
            background-position: 50% 100%;
        }

        100% {
            background-position: 50% 0%;
        }
    }

    .text {
        font-size: 20px;
    }

    .call__title {
        font-size: 100px;
    }

    .btn {
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn:hover {
        border-color: var(--main-color);
    }

    .burger {
        display: none;
    }

    .header__body {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .header__menu {
        order: 1;
        flex: none;
        padding: 0px;
        height: auto;
        visibility: visible;
        z-index: 4;
    }

    .header__list {
        display: flex;
        gap: 23px;
    }

    .header__list-item {
        display: block;
        font-size: 11px;
        padding: 0;
        position: relative;
        padding-bottom: 3px;
        transition: all 0.3s;
    }

    .header__list-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--main-color);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
    }

    .header__list-item:hover::after {
        width: 100%;
    }

    .header__form {
        position: relative;
        z-index: 20;
        background-color: rgba(35, 35, 35, 0.6);
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 12px 35px;
        border: 1px solid #4a4a4a;
        font-size: 16px;
        background-color: transparent;
        transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }
    .header__form:hover{
        border-color: var(--main-color);
    }

    .hero {
        height: 100vh;
        overflow: hidden;
    }


    .hero__video-media {
        min-height: 100vh;
    }

    .hero__box-link {
        bottom: 50px;
    }

    .hero__link-img {
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.4s;
    }

    .hero__link:hover {
        border-color: #ffffff30;
        background: #ffffff10;
    }

    .hero__link:hover>.hero__link-img {
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
    }

    .about__items {
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        margin: 0 -20px;
    }

    .about__item {
        width: calc(100%/3 - 20px);
        margin: 10px;
    }

    .about__name {
        font-size: 130px;
        position: relative;
        top: -10px;
    }

    .about__box-img {
        width: calc(100%/3 - 20px);
        padding-top: 50%;
        position: relative;
        order: 2;
    }

    .choice {
        padding: 70px 0 50px;
    }

    .choice__swiper {
        max-width: 65%;
    }

    .choice__slide-box-img {
        width: 90%;
        position: relative;
        padding-top: 50%;
        margin: 0 auto;
    }

    .content__title {
        font-size: 20px;
    }

    .intro__box-img_long {
        padding-top: 70%;
    }

    .projects__card-info {
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
    }

    .projects__card:hover>.projects__card-box-img>.projects__card-info {
        opacity: 1;
        visibility: visible;
    }

    .projects__card-box-img {
        position: relative;
        overflow: hidden;
        padding-top: 130%;
    }

    .projects__card-box-img::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #11111190;
        z-index: 2;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

    .projects__card:hover>.projects__card-box-img::before {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@media (min-width: 1900px) {
    .container {
        padding: 0 15px;
        margin: 0 auto;
        max-width: 1600px;
    }

}