@font-face {
    font-family: "Neometric";
    src: url("../fonts/Neometric-Regular.otf") format("otf");
    font-weight: 400;
}

@font-face {
    font-family: "Neometric Alt Bold";
    src: url("../fonts/Neometric Alt Bold (Regular).otf") format("otf");
}

@font-face {
    font-family: "Astro Space";
    src: url("../fonts/AstroSpace-0Wl3o.otf") format("otf");
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Neometric", sans-serif;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 0 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    transition: background-color .3s ease-in;
}

.header.active {
    background: rgba(0,0,0,.7);
}

.header__menu-button {
    display: none;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

.header__menu-item {
    font-size: 18px;
    color: #fff;
    line-height: 48px;
    text-decoration: none;
    transition: .3s all ease;
    text-transform: uppercase;
}

.header__menu-item:hover {
    color: #5bf1ff;
}


.header__switch {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}


.header__switch a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    position: relative;

}

.header__switch a:first-child:after {
    content: '|';
    position: absolute;
    right: -13px;
    top: -1px;
}

.header__switch a.active {
    font-weight: bold;
}

.hero {
    background: url('../images/dots.svg') no-repeat calc(100% - 100px) 100px, url('../images/dots.svg') 100px calc(100% - 100px) no-repeat, radial-gradient(1051px 1051px at 51.25% 36.85%, #143f60 0%, #143f60 10.696500000000002%, #090a15 100%);
    height: 100vh;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.hero__link {
    display: inline-flex;
    flex-direction: column;
    z-index: 2;
    text-decoration: none;
    color: #fff;
    font-size: 37px;
    font-family: "Neometric Alt Bold", sans-serif;
    font-weight: bold;
}

.hero__link span {
    text-transform: uppercase;
    margin-top: 10px;
}

.hero__logo {
    height: 152px;
    width: 152px;
    font-family: "Astro Space", sans-serif;
    text-transform: uppercase;
}

.hero__wrap,
.hero__globe {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}

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


.hero__wrap {
    z-index: 1;
    padding: 100px;
}

.hero__description {
    position: absolute;
    bottom: 100px;
    right: 100px;
    font-size: 25px;
    color: #fff;
    text-align: right;
    line-height: 1.25;
    max-width: 600px;
}

.hero__description p {
    margin: 0;
}

.globe-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -80px;
    transition: opacity .3s ease-in;
    opacity: 0;
}

.globe-item {
    background-color: rgba(12, 23, 39, .5);
    padding: 30px 40px 30px 60px;
    color: #fff;
    font-size: 22px;
    position: relative;
    display: block;
}

.globe-item:before {
    content: '';
    width: 46px;
    height: 46px;
    background-color: #5bf1ff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.hero__globe.active .globe-wrap {
    opacity: 1;
}


.approach,
.values,
.about {
    background: url("../images/about_bg.png") no-repeat 90% 50% / 25%, #0a0a16;
    padding: 100px;
    color: #fff;
}

.contacts__title,
.references__title,
.skills__title,
.approach__title,
.values__title,
.about__title {
    font-size: 60px;
    font-family: "Neometric Alt Bold", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 80px;
}

.contacts__title,
.references__title,
.skills__title,
.approach__title,
.values__title {
    font-size: 45px;
    margin-bottom: 75px;
}

.about__content {
    width: 900px;
    max-width: 100%;
    font-size: 25px;
}

.values {
    background: url("../images/values_bg.png") no-repeat 100% 100%, #0a0a16;
}

.values__content {
    padding: 0;
    margin: 0;
}

.values__item {
    display: flex;
    list-style-type: none;
    align-items: center;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.values__item img {
    height: 84px;
    margin-right: 50px;
}

.approach {
    background: url("../images/dots.svg") no-repeat calc(100% - 100px) 100px, #0a0a16;
    padding-top: 200px;
}

.approach__item {
    background-color: #ffffff;
    border-radius: 50px;
    opacity: .4;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
    align-items: center;
    transition: opacity .3s ease-in-out;
    height: 560px;
    box-sizing: border-box;
    margin-bottom: 40px;
    cursor: pointer;
}

.approach__img {
    height: 91px;
    width: auto;
    margin-bottom: 60px;
    display: block;
}

.approach__description {
    font-size: 18px;
}

.swiper-slide:hover .approach__item {
    opacity: 1;
}

.swiper-slide .approach__img.active,
.swiper-slide:hover .approach__img.not-active {
    display: none;
}

.swiper-slide:hover .approach__img.active {
    display: block;
}


.skills {
    background: url("../images/skills_bg.png") no-repeat 0 100% / 24%, url("../images/dots.svg") no-repeat 100px 100px, #0a0a16;
    padding: 100px;
    color: #fff;
}

.skills__content {
    width: 930px;
    max-width: 100%;
    margin: 100px 0 0 auto;
}

.skills__list {
    padding: 0;
    margin: 0;
}

.skills__item {
    margin-bottom: 75px;
    font-size: 25px;
    color: #00ffff;
}

.skills__item-title {
    text-transform: uppercase;
}

.skills__item-text p {
    margin: 0;
    color: #fff;
}

.references {
    background: #0a0a16;
    padding: 100px;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.references:before {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    opacity: .1;
    background-image: radial-gradient(1387px 1387px at 34.68% 41.29%, #7ba1b4 0%, #000000 100%);
}

.references__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    max-width: 100%;
    width: 1300px;
    padding: 0 30px;
    margin: 0 auto;
    box-sizing: border-box;
    display: none;
}

.references__grid img {
    max-height: 60px;
}

.references__list {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    position: relative;
}

.references__center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.references__list > a {
    position: absolute;
    top: 0;
    left: 0;
}

.references__list > a > img {
    height: 40px;
    display: block;
}

.references__center img {
    height: 120px;
}

.references__center a:last-child img {
    height: 132px;
    position: relative;
    top: 40px;
    width: 215px;
}


.references__list > a:nth-child(2) {
    left: 16%;
    top: 12%;
}

.references__list > a:nth-child(3) {
    left: 50%;
    top: 8%;
}

.references__list > a:nth-child(4) {
    left: 70%;
    top: 15%;
}

.references__list > a:nth-child(5) {
    top: 42%;
    left: 20%;
}

.references__list > a:nth-child(6) {
    top: 64%;
    left: 9%;
}


.references__list > a:nth-child(7) {
    top: 80%;
    left: 50%;
}

.references__list > a:nth-child(8) {
    top: 70%;
    left: 70%;
}

.references__list > a:nth-child(9) {
    top: 45%;
    left: 75%;
}

.references__list > a:nth-child(10) {
    top: 75%;
    left: 25%;
}

.references__list > a:nth-child(11) {
    left: 25%;
}


.contacts {
    background: url("../images/contacts_bg.png") no-repeat 0 113%  / 120%, #0a0a16;
    padding: 100px 100px 280px 100px;
    color: #fff;
}

.contacts__wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.contacts__left {
    width: 216px;
    text-align: center;
}

.contacts__photo {
    pointer-events: none;
    height: 216px;
}

.contacts__name {
    font-size: 24px;
    font-family: "Neometric Alt Bold", sans-serif;
    font-weight: bold;
    margin: 25px 0 6px;
}

.contacts__pos {
    font-size: 25px;
    letter-spacing: -1.03px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contacts__phone,
.contacts__address {
    font-size: 15px;
    color: #fff;
    margin: 1px 0;
    text-decoration: none;
    font-style: normal;
}

.contacts__phone:hover {
    text-decoration: underline;
}

.contacts__address p {
    margin: 0;
}

.form {
    display: flex;
    flex-direction: column;
    width: 900px;
    max-width: 100%;
}

.form-field {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.form-field span {
    font-size: 25px;
    letter-spacing: -0.33px;
    width: calc(100% - 500px);
    text-transform: uppercase;
}

.form-field textarea,
.form-field input {
    width: 500px;
    max-width: 100%;
    background: rgba(255, 255, 255, .4);
    color: #ffffff;
    padding: 0 15px;
    line-height: 38px;
    border-radius: 10px;
    transition: background-color .3s ease-in-out, color .3s ease-in;
    box-sizing: border-box;
    border: none;
}

.form-field button:hover,
.form-field textarea:focus,
.form-field input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    color: #000;
}

.form-field textarea {
    resize: none;
    height: 173px;
}

.form-field button {
    margin-right: auto;
    border: none;
    font-size: 25px;
    color: #fff;
    line-height: 38px;
    padding: 0 10px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .4);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color .3s ease-in-out, color .3s ease-in;
}

.form-field button:active {
    transform: translateY(1px);
}

.grecaptcha-badge {
    display: none;
}


@media (min-width: 1100px) {

    .section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
        overflow-x: hidden;
        width: 100%;
    }

    * {
        min-width: 0px;
        min-height: 0px;
    }

    .approach__content {
        width: 100%;
    }

}

@media (max-width: 2000px) {
    .globe-wrap svg {
        height: 80px;
    }

    .globe-wrap {
        top: -80px;
    }

    .globe-item {
        padding: 15px 30px 15px;
    }

    .globe-item:before {
        width: 30px;
        height: 30px;
    }

    .skills {
        background: url("../images/skills_bg.png") no-repeat 0 100% / 30%, url("../images/dots.svg") no-repeat 100px 100px, #0a0a16;
    }

    .header__menu-item {
        font-size: 15px;
    }

}

@media (max-width: 1700px) {
    .hero__wrap {
        padding: 50px;
    }

    .hero__logo {
        width: 100px;
        height: 100px;
    }

    .hero__link {
        font-size: 28px;
    }

    .hero {
        background: url('../images/dots.svg') no-repeat calc(100% - 50px) 50px / 10%, url('../images/dots.svg') no-repeat 50px calc(100% - 50px) / 10%, radial-gradient(1051px 1051px at 51.25% 36.85%, #143f60 0%, #143f60 10.696500000000002%, #090a15 100%);
    }

    .hero__description {
        right: 50px;
        bottom: 50px;
        font-size: 20px;
        max-width: 500px;
    }

    .globe-item {
        padding: 8px 18px 8px;
        font-size: 16px;
    }

    .globe-item:before {
        width: 20px;
        height: 20px;
    }

    .skills {
        background: url(../images/skills_bg.png) no-repeat 0 100% / 40%, url(../images/dots.svg) no-repeat 50px 50px / 10%, #0a0a16;
    }

    .form {
        width: 700px;
    }

    .globe-wrap svg {
        height: 40px;
    }

    .references,
    .approach,
    .values,
    .about,
    .skills,
    .contacts {
        padding: 50px;
    }


    .approach {
        background: url("../images/dots.svg") no-repeat calc(100% - 50px) 50px / 10%, #0a0a16;
        padding-top: 100px;
    }

    .approach__item {
        height: 435px;
    }

    .skills__content {
        width: 700px;
    }

    .contacts {
        padding-bottom: 140px;
    }

    .references__list {
        transform: scale(0.8);
        width: 1920px;
        left: -10%;
        height: 700px;
        top: -20%;
    }

    .header {
        padding: 0 50px;
    }

    .header__menu {
        gap: 15px;
    }

    .header__menu-item {
        font-size: 13px;
    }
}

@media (max-width: 1400px) {
    .references__list {
        transform: scale(0.7);
        width: 1920px;
        left: -25%;
        height: 700px;
        top: -20%;
    }

    .header {
        height: 50px;
    }

    .references__title {
        margin-bottom: 0;
    }
}


@media (max-width: 1100px) {
    .references__list {
        display: none;
    }

    .references__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .header__menu-item {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .hero__link {
        font-size: 22px;
    }

    .hero__description {
        font-size: 18px;
    }

    .contacts__title, .references__title, .skills__title, .approach__title, .values__title, .about__title {
        font-size: 40px;
    }

    .about__content {
        font-size: 22px;
    }

    .values {
        padding-bottom: 400px;
        background: url("../images/values_bg.png") no-repeat 0 100%  / 80%, #0a0a16;
    }

    .about {
        padding-bottom: 572px;
        background: url(../images/about_bg.png) no-repeat 50% 100% / 40%, #0a0a16;
    }

    .skills {
        padding-bottom: 400px;
        background: url(../images/skills_bg.png) no-repeat 0 100% / 40%, url(../images/dots.svg) no-repeat 50px 50px / 10%, #0a0a16;
    }

    .skills__list {
        padding-left: 15px;
    }


    .contacts__wrap {
        flex-direction: column;
        align-items: center;
    }

    .contacts__left {
        margin-bottom: 40px;
    }

    .form-field span {
        font-size: 18px;
    }

    .swiper-slide .approach__img.active {
        display: block;
    }


    .swiper-slide-active .approach__item {
        opacity: 1;
    }

    .swiper-slide-active .approach__img.not-active {
        display: none;
    }

    .swiper-slide:not(.swiper-slide-active) .approach__img.active {
        display: none;
    }


    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, .9);
        flex-direction: column;
        gap: 0;
        transform: translateY(-100%);
        transition: transform .3s ease;
    }

    body.active .header__menu {
        transform: translateY(0);
    }

    .header__menu-item {
        font-size: 22px;
    }


    .header__menu-button {
        width: 25px;
        height: 25px;
        background: none;
        border: none;
        outline: none;
        transition: .3s all ease;
        padding: 0;
        cursor: pointer;
        position: relative;
        color: #fff;
        display: block;
    }

    .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before,
    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        background: #fff;
    }

    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        height: 3px;
    }


    body.active {
        overflow: hidden;
    }

    body.active .header__menu-button {
        z-index: 2;
    }

}

@media (max-width: 767px) {
    .hero__globe {
        padding: 350px 0;
    }

    .contacts__wrap {
        display: block;
        padding: 0;
    }

    .form-field {
        flex-direction: column;
    }

    .form-field textarea, .form-field input,
    .form-field span {
        width: 100%;
    }

    .references, .approach, .contacts {
        padding: 50px 15px;
    }

    .skills,
    .values,
    .about {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contacts__left {
        margin: 0 auto 40px;
    }

    .form-field button {
        margin: 0 auto;
    }

    .references__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach {
        background: #0a0a16;
    }


    .skills {
        padding-bottom: 400px;
        background: url(../images/skills_bg.png) no-repeat 0 100% / 48%, url(../images/dots.svg) no-repeat 15px 15px / 20%, #0a0a16;
        position: relative;
    }

    .skills:before {
        content: '';
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .4);
        position: absolute;
    }

    .skills__item {
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {

    .globe-wrap svg {
        height: 50px;
    }

    .globe-wrap {
        top: -50px;
    }

    .hero__description {
        right: 15px;
        bottom: 75px;
    }

    .hero__wrap {
        padding: 75px 15px;
    }

    .hero {
        background: url('../images/dots.svg') no-repeat calc(100% - 15px) 75px / 30%, url('../images/dots.svg') no-repeat 15px calc(100% - 15px) / 30%, radial-gradient(1051px 1051px at 51.25% 36.85%, #143f60 0%, #143f60 10.696500000000002%, #090a15 100%)
    }

    .hero__globe {
        top: 75px;
        bottom: 75px;
    }

    .skills__content {
        margin-top: 20px;
    }

    .skills,
    .values,
    .about {
        background-position: center center;
        background-size: 100%;
        padding-bottom: 50px;
    }

    .skills {
        background: url(../images/skills_bg.png) no-repeat 0 100% / 100%, #0a0a16;
    }

    .globe-item {
        padding: 6px 10px 6px;
        font-size: 12px;
    }

    .globe-item:before {
        width: 10px;
        height: 10px;
    }

    .values__item {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .values__item img {
        height: 54px;
    }

    .approach__item {
        height: 430px;
    }

    .references__grid img {
        max-width: 100%;
    }

    .approach__img {
        margin-bottom: 20px;
    }

    .contacts {
        background: url("../images/contacts_bg.png") no-repeat 0 105%  / 300%, #0a0a16;
    }

    .header {
        padding: 0 15px;
    }
}
