@font-face {
    font-family: 'Helvetica Thin Ext';
    src: url('../fonts/HelveticaNeueLT-ThinExt.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


/* ------------------------------- 
Specification
------------------------------- */

body {
    font-family: 'Helvetica', sans-serif;
    color: #0e0e0e;
    font-size: 14px;
    margin: 0;
    padding: 0;
    position: relative;
}

body,
html {
    height: 100%;
}

div,
p,
form,
input,
a,
span,
button,
textarea,
input {
    box-sizing: border-box;
}

ul,
li {
    display: block;
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
    font-weight: 400;
    margin: 18px 0 27px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a,
a:hover,
a:active {
    text-decoration: none;
}

a,
button,
input {
    transition: all 0.5s ease;
}

input {
    font-family: inherit;
    border-radius: 0;
    -webkit-appearance: button;
}

input,
input:hover,
input:focus,
input:active,
button,
button:hover,
button:focus,
button:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
}

textarea {
    outline: none;
    resize: none;
    font-family: inherit;
    border: none;
    display: block;
}

main {
    flex: 1 1 auto;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    margin: 0 auto;
    max-width: 1160px;
    padding-left: 20px;
    padding-right: 20px;
}

.d-flex {
    display: flex;
}

.text-center {
    text-align: center;
}

.ibg {
    position: relative;
}

.ibg img,
.ibg iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ibg img {
    object-fit: cover;
}

.btn {
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-black {
    font-family: "Helvetica", Sans-serif;
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    background-color: #000000;
    border-radius: 20px;
    padding: 12px 24px;
    color: #ffffff;
    display: block;
    width: fit-content;
}

.btn-black:hover {
    background-color: #252525;
}

@keyframes moveLeft {
    0%,
    100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-30%);
    }
}

@keyframes moveRight {
    0%,
    100% {
        transform: translateX(100%) translateY(-100%);
    }
    50% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes moveBottom {
    0%,
    100% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(-2%);
    }
}

.circle-animate {
    width: 2000px;
    position: fixed;
    z-index: -6;
    left: 50%;
    transform: translateY(-50%);
}

.circle-animate img {
    width: 100%;
}

.circle-animate_left {
    animation: moveLeft 20s linear infinite;
}

.circle-animate_right {
    animation: moveRight 22s linear infinite;
}

.circle-animate_bottom {
    animation: moveBottom 27s linear infinite;
}


/* ------------------------------- 
Menu mobile button
------------------------------- */

.menu-btn {
    background-color: transparent;
    border: none;
    width: 45px;
    cursor: pointer;
    padding: 0;
    margin: -4px 0;
    z-index: 99999;
    transition: all 0.5s ease;
    display: block;
    position: relative;
}

.menu-btn .line {
    width: 100%;
    height: 5px;
    background-color: #000000;
    display: block;
    margin: 4px 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.menu-btn.active .line:first-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: 12px;
}

.menu-btn.active .line:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 8px;
    position: relative;
}

.menu-btn.active .line:nth-child(3) {
    opacity: 0;
}


/* ------------------------------- 
Header section
------------------------------- */

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.5s ease;
}

.header.fixed {
    position: fixed;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -10px 20px rgb(170, 170, 170);
}

.header-wrapper {
    padding: 10px 20px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.header.fixed .header-wrapper {
    height: 90px;
}

.header-logo {
    width: 300px;
    display: block;
    transition: all 0.5s ease;
}

.header-logo img {
    width: 100%;
}

.header-right,
.header-menu ul {
    display: flex;
    align-items: center;
}

.header-right {
    gap: 20px;
}

.header-menu ul li a {
    padding: 13px 20px;
    margin: 0 5px;
    border-radius: 20px;
    color: #000000;
    font-weight: 100;
    line-height: 1.43;
    display: block;
}

.header-menu ul li:first-child a {
    margin-left: 0;
}

.header-menu ul li:last-child a {
    margin-right: 0;
}

.header-menu ul li a:hover {
    background-color: #F0F0F0;
}

.btn-gradient {
    font-weight: 100;
    line-height: 1.43;
    color: #FFFFFF;
    background: linear-gradient(239deg, #DD9938 0%, #9145FA 100%);
    border-radius: 20px;
    padding: 12px 24px;
    text-transform: uppercase;
}

.btn-gradient:hover {
    background: linear-gradient(239deg, #F3A940 0%, #9145FA 100%);
}

.btn-border {
    font-weight: 100;
    line-height: 1.43;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 12px 24px;
    font-weight: 700;
    display: inline-block;
}

.btn-border:hover {
    color: #000000BF;
}

.section {
    padding: 20px 0;
}

.section .container {
    min-height: 70vh;
    display: flex;
    justify-content: center;
}

.section-title {
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-size: 27px;
    font-weight: 100;
    margin-bottom: 38px;
}

.text {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-size: 18px;
    font-weight: 100;
    line-height: 1.5;
}


/* ------------------------------- 
Hero section
------------------------------- */

.hero {
    padding: 140px 0 30px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-video {
    max-width: 600px;
    width: 100%;
    position: relative;
    right: -102px;
}

.hero-video__box {
    position: relative;
    z-index: 1;
}

.hero-video__box:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: -20px;
    bottom: -20px;
    border: 1px solid #000000;
    border-radius: 20px;
    z-index: -1;
}

.hero-video__box video {
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-content {
    max-width: 521px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 57px;
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 47px;
}


/* ------------------------------- 
Steps section
------------------------------- */

.steps-body {
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    border: 1px solid #000000;
}

.steps-left {
    max-width: 255px;
    width: 100%;
    border-right: 1px solid #000000;
}

.steps-left__subtitle {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-size: 18px;
}

.steps-about {
    display: flex;
    gap: 20px;
}

.steps-about__item {
    flex: 1 1 31.33%;
}

.steps-left__arrow {
    width: 150px;
    margin-top: 71px;
    margin-left: auto;
    transform: rotate(90deg);
    transition: all 0.5s ease;
}

.steps-left__arrow img {
    width: 100%;
}

.steps-left__arrow:hover {
    transform: rotate(-270deg);
}

.steps-about__num {
    font-size: 84px;
    font-weight: 700;
    line-height: 1.19;
    margin-bottom: 20px;
}

.steps-about__info h3 {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-size: 27px;
    font-weight: 100;
    margin-bottom: 38px;
}

.steps-about__info p {
    font-family: 'Helvetica Thin Ext', sans-serif;
    margin: 18px 0 27px;
    font-size: 18px;
    font-weight: 100;
    line-height: 1.5;
}


/* ------------------------------- 
Info Section
------------------------------- */

.approach-section .info-body {
    align-items: center;
}

.info-body {
    display: flex;
    gap: 20px;
}

.info-block {
    padding: 20px;
    max-width: 555px;
}

.services-section .info-block {
    padding: 10px;
    position: relative;
    margin-top: 200px;
}

.services-section .info-block__wrapper {
    position: sticky;
    top: 200px;
    left: 0;
}

.info-block__subtitle {
    line-height: 1;
    margin-bottom: 38px;
}

.info-image {
    max-width: 527px;
}

.services-section .info-image {
    max-width: 544px;
}

.info-image__wrapper {
    position: relative;
    height: auto;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.info-image__wrapper-inner {
    position: absolute;
    width: calc(100% - 20px);
    background-color: #ffffff;
    border-radius: 20px;
    bottom: 15px;
    left: 10px;
    display: flex;
    align-items: center;
    padding: 5px 20px 20px;
    justify-content: space-between;
    min-height: 83px;
}

.info-image__wrapper-link {
    width: 50px;
    height: 50px;
    background-color: #F0F0F0;
    text-align: center;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-image__wrapper-link img {
    width: 25px;
    height: 25px;
}

.info-image__wrapper-description {
    padding-top: 15px;
}

.info-image__wrapper-description h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-image__wrapper-description p {
    margin: 0;
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-weight: 100;
}


/* ------------------------------- 
Why Section
------------------------------- */

.why {
    padding-top: 120px;
}

.why-subtitle p {
    margin-bottom: 20px;
}

.why-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px 20px;
    padding: 0 10px;
}

.why-body__item {
    border-radius: 20px;
    border: 1px solid #000000;
    padding: 20px;
    min-height: 300px;
}

.why-body__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 7px;
    border-bottom: 1px solid #000000;
    margin-bottom: 38px;
}

.why-body__icon {
    width: 50px;
    height: 50px;
}

.why-body__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-body__title {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-weight: 100;
    font-size: 27px;
}


/* ------------------------------- 
Develop Section
------------------------------- */

.develop {
    padding-top: 70px;
}

.develop .container {
    flex-direction: column;
}

.develop-inner__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.develop-inner__subtitle {
    margin-bottom: 0;
}

.swiper {
    width: 100%;
    padding: 0 30px;
}

.develop-item {
    position: relative;
}

.develop-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.develop-item__desc {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-weight: 100;
    font-size: 18px;
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 0 0 20px 20px;
    background-color: #ffffff;
    width: 100%;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    padding: 0;
    width: 25px;
    height: 25px;
    background-color: transparent;
}

.swiper-button-next img,
.swiper-button-prev img {
    width: 100%;
    height: 100%;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}


/* ------------------------------- 
Customers Section
------------------------------- */

.customers .container {
    flex-direction: column;
}

.customers-item {
    display: flex;
    align-items: center;
}

.customers-item__image {
    max-width: 200px;
    width: 100%;
    height: 200px;
    margin-right: 20px;
}

.customers-item__image img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
}

.customers-item__content {
    max-width: 785px;
}

.customers-item__review {
    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    font-style: italic;
}

.customers-item__cite {
    margin-top: 25px;
    font-style: italic;
    line-height: 20px;
}

.customer-item__cite-name {
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.customer-item__cite-position {
    font-family: 'Helvetica Thin Ext';
    font-weight: 100;
}


/* ------------------------------- 
Articles Section
------------------------------- */

.aticles-section__head {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.articles-section__title {
    width: 100%;
}

.articles-section__subtitle {
    width: 50%;
    margin-bottom: 0;
}

.articles-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px 45px;
}

.articles-post {
    padding: 20px 50px;
    border: 1px solid #000000;
    border-radius: 20px;
    min-height: 247px;
}

.articles-post h3 {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 25px;
    letter-spacing: -0.68px;
    margin-bottom: 15px;
}

.articles-post__content {
    margin-bottom: 10px;
}

.articles-post__more {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #000000;
    text-decoration: underline;
}


/* ------------------------------- 
Discuss Section
------------------------------- */

.steps .container,
.discuss .container {
    align-items: center;
}

.discuss-block {
    width: 100%;
    padding: 40px;
    display: flex;
    border-radius: 20px;
    border: 1px solid #000000;
    gap: 30px;
}

.discuss-block__left {
    max-width: 509px;
    padding: 10px;
    border-right: 1px solid #000000;
}

.discuss-block__title {
    font-size: 57px;
    text-transform: uppercase;
}

.discuss-block__subtitle {
    margin-bottom: 20px;
}

.discuss-block__arrow {
    width: 150px;
    height: 106px;
    position: absolute;
    bottom: 40px;
    right: 0;
    transform: rotate(-90deg);
    transition: all 0.5s ease;
}

.discuss-block__arrow:hover {
    transform: rotate(-270deg);
}

.discuss-block__arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discuss-block__right {
    position: relative;
    padding: 10px 0;
    max-width: 488px;
    width: 100%;
}


/* ------------------------------- 
Footer Section
------------------------------- */

.footer {
    padding: 10px;
    background-color: #ffffff;
    backdrop-filter: blur(6px);
    box-shadow: 0 -7px 7px -1px rgba(45, 55, 68, .1);
}

.footer-wrapper {
    padding: 20px;
    display: flex;
    gap: 20px;
}

.footer-column {
    flex: 0 1 25%;
}

.footer-column h2 {
    font-size: 27px;
    font-family: "Helvetica", Sans-serif;
    font-weight: 100;
    margin-bottom: 38px;
}

.footer-menu li:not(:last-child) {
    margin-bottom: 35px;
}

.footer-menu li a {
    font-family: 'Helvetica Thin Ext', sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: #000000;
    text-decoration: underline;
}

.footer-menu li a:hover {
    color: #3c3c3c;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact__link {
    width: 28px;
    height: 28px;
    border-radius: 100px;
    border: 1px solid #69727d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact__link:hover {
    border: 1px solid #000000;
}

.mob-menu,
.open-menu {
    display: none;
}