* { box-sizing: border-box; margin: 0; padding: 0;}
a {text-decoration: none; color: inherit; }
button { cursor: pointer; }
ul, li { list-style: none; }

.container {
    width: 1520px;
    margin: 0 auto;
}

@media screen and (min-width: 1600px) and (max-width: 1920px) {
    .container {
        width: calc(100% - 400px);
        margin: 0 auto;
    }
}
@media screen and (min-width: 1440px) and (max-width: 1600px) {
    .container {
        width: calc(100% - 200px);
        margin: 0 auto;
    }
}
@media screen and (min-width: 1366px) and (max-width: 1440px) {
    .container {
        width: calc(100% - 120px);
        margin: 0 auto;
    }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
    .container {
        width: calc(100% - 80px);
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .container {
        width: calc(100% - 48px);
        margin: 0 auto;
    }
}

.general__button {
    display: inline-block;
    padding: 20px 50px;
    background: none;
    transition: .25s;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    border: 3px solid #545454;
}

.general__button:hover {
    background: #545454;
    color: #fff;
    transition: .25s;
}

.general__button-wrapper {
    text-align: center;
}

.general__title {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 120%;
    color: #000000;
    text-align: center;
}

.general__subtitle {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #000000;
}

.general__text-min {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    padding: 10px 0;
    color:     #333;
    opacity: 0.8;
}

.general__text-mid {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 150%;
}

.general__text-min2 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.general__text-min b {
    color:   #000;
    opacity: 1;
}

.general__text {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    padding: 30px 0;
}

.general__text2 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}

.general__text-big {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: #000000;
}

.section {
    padding-top: 180px;
}

.connect__form {
    border: solid 1px #000;
    padding: 40px 40px 20px 40px;
    width: 40%;
    /*margin-top: 40px;*/
}

.connect__form-item input {
    border: none;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.connect__form-item input:first-child {
    margin-bottom: 40px;
}

.order__img {
    width: 50%;
}

.order__img-wrapper {
    width: 100%;
}

.order__wrapper {
    display: flex;
    gap: 6%;
}

.navigation {
    padding-top: 125px;
}

.navigation-item:after {
    position: relative;
    /*top: 4px;*/
    /*left: 12px;*/
    padding-right: 12px;
    padding-left: 12px;
    content: '/';
    transform: rotate(-60deg);
}

@media screen and (max-width: 1024px) {
    .section {
        padding-top: 120px;
    }
    .order__wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    .order__img-wrapper {
        display: none;
    }
    .connect__form {
        width: 60%;
    }
    .main__wrapper {
        padding-top: 60px;
    }
    .navigation {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .general__button {
        padding: 10px 30px;
        background: none;
        transition: .25s;
        font-family: "Inter", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        border: 3px solid #545454;
        display: inline-block;
    }
    .general__title {
        font-size: 46px;
        line-height: 100%;

    }
    .general__subtitle {
        font-size: 28px;
    }
    .general__text {
        font-size: 16px;
        padding: 30px 0;
    }
    .general__text2 {
        font-size: 16px;
    }
    .section {
        padding-top: 60px;
    }
    .connect__form {
        width: 90%;
    }
    .general__text-big {
        font-size: 20px;
    }
}

@media screen and (max-width: 475px) {
    .general__title {
        font-size: 36px;
    }
    .general__subtitle {
        font-size: 22px;
    }
    .general__text {
        font-size: 16px;
        padding: 20px 0;
    }
    .connect__form {
        width: 100%;
        padding: 20px 20px 20px 20px;
    }
    .general__text-big {
        font-size: 18px;
    }
}