:root {
    --main-color: #BDFF2C;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: normal;

    color: white;
    background: black;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
ul {
    margin: 0;
    padding: 0;
}
header{
    position: sticky;
    top: 0;
    width: 100%;
    background: black;
    z-index: 8;
}
header ul {
    margin-left: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.h1-text ul {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

header ul li,
.h1-text ul li {
    display: block;
}

header ul li a,
.h1-text ul li a {
    color: #A0A0A0;
    font-weight: bold;
    font-size: 14px;
}

header .container {
    display: flex;
    align-items: center;
}

header {
    padding-top: 25px;
    padding-bottom: 25px;
}

.link-contact {
    color: #A0A0A0;
    font-weight: bold;
    font-size: 14px;
}

.right-content {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    background: var(--main-color);
    color: black;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    transform: 0.3s all;
    border: 2px solid var(--main-color);
}

.btn:hover {
    background: none;
    transform: 0.3s all;
    color: var(--main-color);
}

header ul li a:hover,
.link-contact:hover {
    color: #A0A0A0;
}

a:hover {
    text-decoration: none;
}

h1 {
    font-weight: bold;
    font-size: 58px;
    line-height: 100%;
    position: relative;
}

h1 span.img {
    position: absolute;
    right: -15px;
    top: -20%;
}

.box-header {
    background: url('../img/header.svg');
    width: 100%;
    background-size: cover;
    background-position: bottom left;
    height: 560px;
    border-radius: 20px;
    padding: 30px;


}

.box-header p {
    line-height: 110%;
    font-size: 37px;
    font-weight: bold;
    color: black;
}

#main {
    margin-top: 40px;
}

.h1-text {
    align-self: flex-end;
}

section {
    margin-top: 95px;
}

.flex-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-box p {
    font-weight: bold;
    font-size: 40px;
}

.about-box p span {
    color: var(--main-color);
}

.about-box span.disc {
    margin-top: -10px;
    display: block;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

p.about-text {
    font-size: 40px;
    line-height: 110%;
    font-weight: bold;
}

.row-photos {
    margin-top: 80px;
}

.about-photo {
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    background: grey;
    overflow: hidden;
    height: 332px;
    width: 100%;
}

.about-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    object-fit: cover;
}

.about-photo:hover img {
    border-radius: 20px;

    transition: 0.3s all;
    transform: scale(1.2);
}

.row-photos p {
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
}

#steps {
    background: #F5F5F5;
    border-radius: 30px;
    padding-top: 55px;
    padding-bottom: 55px;
}

h2 {
    font-size: 40px;
    font-weight: bold;
    color: black;
}

.box-step {
    cursor: pointer;
    background: white;
    border-radius: 20px;
    padding: 28px;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s all;
}

.box-step:hover {
    transition: 0.3s all;
    background: var(--main-color);
}

.box-step h3 {
    color: black;
    font-size: 22px;
    font-weight: bold;
}

.number-step p {
    color: var(--main-color);
    font-size: 40px;
    font-weight: bold;

}

.number-step {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.number-step img {
    flex-shrink: 0;
    max-width: 18px;
}

.row-step {
    margin-top: 60px;
}

.row-step-2 {
    margin-top: 30px;

}

#steps {
    margin-top: 170px;
    position: relative;
}

.arrow-step {
    position: absolute;
    top: -100px;
    left: 35%;
}

#pluses {
    margin-top: 15px;
    background: var(--main-color);
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 30px;
}

.box-plus {
    border-radius: 20px;
    padding: 20px;
    background: #FFFFFF;
    color: black;
}

.box-plus p {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
}

.box-plus span {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.row-plus {
    margin-top: 80px;
}

#pluses {
    position: relative;
}

.star-plus {
    position: absolute;
    left: -60px;
    top: 10%;
}

#pluses h2 {
    font-size: 60px;
}

#cases h2 {
    color: white;
}

h4 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
}

.row-case p {
    font-weight: 500;
    font-size: 14px;
}

.image-case {
    height: 415px;
    border-radius: 30px;
    width: 100%;
    background: grey;
}

.row-case {
    margin-top: 60px;
}

#plan {
    background: var(--main-color);
    border-radius: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
}

#plan h2 {
    font-size: 60px;
}

#plan {
    position: relative;
}

.circle-image {
    position: absolute;
    left: 0px;
    top: 10%;
}

.row-plan {
    margin-top: 90px;
}

.box-plan {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: #FFFFFF;
    color: black;
}

.box-plan p {
    padding-top: 70px;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
}

.box-plan span {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.circle-step {
    position: absolute;
    top: -15%;
    height: 58px;
    width: 58px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: var(--main-color);
    font-size: 24px;
    font-weight: bold;
}

.box-logo {
    height: 150px;
    background: #141414;
    border-radius: 20px;
    width: 100%;
}

#partner h2 {
    color: white;
}

#partner .row {
    margin-top: 50px;
}

h1 a {
    color: var(--main-color);
}

h1 a:hover {
    color: var(--main-color);
}

.arrow-step {
    animation: rotate 3s ease-in-out infinite;

}


@keyframes rotate {

    10%,
    20%,
    30%,
    40%,
    50% {
        transform: rotate(0deg);
    }

    70% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(0deg);

    }
}

.box-header {
    overflow: hidden;
    position: relative;
}

.box-header svg {
    position: absolute;
    bottom: -15%;
    left: -15%;
}

.box-header svg {

    -webkit-animation: dash 3s ease-in-out;
    -moz-animation: dash 3s ease-in-out;
    -o-animation: dash 3s ease-in-out;
    animation: dash 3s ease-in-out infinite;
    transition: .3s;
}

@keyframes dash {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.box-contact {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.block-content.left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts a {
    width: fit-content;
    display: inline-block;
    font-size: 18px;
    color: black;
    font-weight: bold;
    border-bottom: 5px solid var(--main-color);
}

.policy {
    margin-top: 20px;

}

.policy p {
    color: black;
    opacity: 0.6;
    font-size: 14px;
}

input[type='text'] {
    border: 1px solid #DCDCDC;
    padding: 20px;
    color: black;
    border-radius: 10px;
    background: #F5F5F5;
    width: 100%;
    margin-bottom: 10px;
}

input[type='submit'] {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}

input[type='submit']:hover {
    color: black;
}

.title-form {
    font-size: 21px;
    font-weight: bold;
    color: black;
    margin-bottom: 25px;
}

p.su {
    margin-top: 20px;
    font-size: 12px;
    color: black;
    opacity: 0.6;
}

button,
input {
    outline: none !important;
}

#contact {
    position: relative;
    margin-top: 130px;
}

.bottomform1 {
    position: absolute;
    left: 5%;
    top: -20%;
    z-index: -1;
}

#contact .box-contact {
    position: relative;
    z-index: 1;
}

.bottomform2 {
    z-index: 2;
    position: absolute;
    right: 10%;
    bottom: -10%;
}

p.haos {
    position: relative;
    width: fit-content;
}

p.haos::before {
    height: 2px;
    width: 100%;
    transform: rotate(340deg);
    position: absolute;
    content: '';
    background-color: #bdff2c;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    bottom: 37%;
}

.swiper-container {
    position: relative;
}

.nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -27.5px;
    z-index: 3;
}

.nav.left-nav {
    left: 2%;
}

.nav.right-nav {
    right: 2%;
}

.nav.right-nav img {
    transform: rotate(180deg);
}

.box-logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-logo img {
    max-height: 100px;
    max-width: 100%;
    padding: 20px;
    filter: grayscale(1);
}

.box-logo:hover img {
    filter: grayscale(0);
    transition: 0.3s all;
}

#cases h2 {
    position: relative;
}

#cases h2::after {
    content: '';
    height: 40px;
    width: 40px;
    background: url('../img/logo-green.svg');
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 5%;
    left: -7%;
}

#cases h2 span {
    display: block;
}
.open-menu{
    display: none;
}
.burger-menu{
    transform: translateX(100%);
    transition: 0.3s all;
    position: fixed;
    height: 100%;
    width: 100%;
    background: black;
    
    z-index: 10;
}
.burger-menu.active{
    transition: 0.3s all;
    transform: translateX(0%);
}
.burger-menu .container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.close-menu{
    max-width: 30px;
}
.header-burger{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 25px;
}
.burger-content ul li{
    display: block;
    margin-bottom: 10px;
}
.burger-content ul li a{
    color: #A0A0A0;
    font-weight: bold;
    font-size: 18px;
}
.burger-footer{
    padding-bottom: 25px;
}
.burger-footer .link-contact{
    display: block;
    margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
    .open-menu{
        display: block;
        width: 30px;
    }
    .right-content .btn{
        display: none;
    }
    header ul,
    header .link-contact {
        display: none;
    }

    .h1-text ul {
        display: none;
    }

    .box-header {
        aspect-ratio: 1/1;
        height: unset;
    }

    .box-header p {
        font-size: 26px;
    }

    .box-header svg {
        width: 250px;
        height: 250px;
    }

    h1 {
        font-size: 36px;
        margin-top: 30px;
        padding-right: 30px;
    }

    h1 span.img {
        right: 0px;
    }

    p.about-text {
        margin-top: 20px;
    }

    .about-photo {
        height: 400px;

    }

    .row-photos p {
        margin-bottom: 30px;
    }

    .arrow-step {
        display: none;
    }

    .box-step {
        height: unset;
        aspect-ratio: 1/1;
        margin-bottom: 30px;
    }

    #steps {
        border-radius: 15px;
    }

    #pluses h2 {
        font-size: 36px;
    }

    .box-plus {
        margin-bottom: 30px;
    }

    .box-logo {
        margin-bottom: 30px;
    }

    #pluses {
        margin-top: 50px;
        border-radius: 15px;
    }

    .star-plus {
        left: unset;
        right: 30px;
        top: -3%;
        max-width: 75px;
    }

    h2 {
        font-size: 28px;
    }

    .image-case {
        height: unset;
        aspect-ratio: 16 / 9;
        border-radius: 15px;
    }

    .nav {
        display: none;
    }

    h4 {
        margin-top: 25px;
        font-size: 21px;
        margin-bottom: 15px;
    }

    #steps {
        margin-top: 100px;
    }

    #cases h2 {
        padding-left: 50px;
    }

    #cases h2::after {
        left: 0;
    }

    .box-contact {
        flex-direction: column;
        padding: 0px;
        border-radius: 15px;
    }

    #contact {
        background: #FFFFFF;
        border-radius: 15px 15px 0px 0px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .bottomform1 {
        left: unset;
        right: 10%;
        top: -6%;
        max-width: 95px;
    }
    .bottomform2{
        display: none;
    }
}