.container {
    max-width: calc(100% - (160px * 2));
    margin-inline: auto;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: calc(100% - (30px * 2));
        width: 100%;
    }
}

@media screen and (min-width: 1921px) {
    .container {
        max-width: 1440px;
        width: 100%;
    }
}

*,
*:before,
*:after {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

body {
    background: #F9F9F9;
}

.section__title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 78px;
    letter-spacing: -0.02em;
    font-feature-settings: 'liga' off;
    text-transform: capitalize  ;
    color: #000000;
    text-align: center;
    margin-bottom: 70px;
}

.section__subtitle {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    font-feature-settings: 'liga' off;
    color: #656565;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.no-border {
    border: none;
}

.request__inner .close {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
}

.modal .request__inner .form__input {
    margin-bottom: 16px;
}

.modal .request__inner {
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -45%;
    max-height: min(80%, 760px);
    overflow-y: auto;
    background: #fff;
    width: min(100% - (20px * 2), 550px);
    margin-inline: auto;
    padding: 60px 50px 50px;
    z-index: 1000;
    scale: 0;
    transition: scale 0.5s ease;
    transition-delay: 0.1s;
}

.modal .request__inner .form__textarea textarea {
    min-height: 132px;
}

.modal .request__inner .form__input input {
    padding: 12px;
}

.modal.active:after {
    width: 100%;
    position: fixed;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: block;
    content: "";
    z-index: 100;
}

.modal.active .request__inner {
    scale: 1;
}

.modal .request__inner .section__title {
    font-size: 32px;
}
.modal .request__inner .section__subtitle {
    font-size: 14px;
}

.request__form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.form__input {
    width: 100%;
    margin-bottom: 20px;
}

.form__input input {
    width: 100%;
    background: rgba(0, 0, 0, 0.04);
    padding: 12px 16px;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #000;
}

.form__input input::placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #A5A5A5;
}


.form__textarea {
    margin-bottom: 20px;
}

.form__textarea textarea {
    border: none !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.04) !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
    all: revert;
    resize: vertical;
    min-height: 130px;
    font-family: 'Poppins' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-feature-settings: 'liga' off !important;
    color: #000 !important;
}

.success {
    display: none;
}

.success > div {
    padding: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10000;
    translate: -50% -50%;
    width: min(100%, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    scale: 0;
    transition: scale 0.5s ease;
}

.success.active > div {
    scale: 1;
}
.success.active:after {
    width: 100%;
    position: fixed;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: block;
    content: "";
    z-index: 100;
}

.success  img {
    position: absolute;
    width: 13px;
    height: 13px;
    top: 22px;
    right: 25px;
    cursor: pointer;
}

.success p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.success button {
    width: 100%;
    padding: 12px 0;
    background: #00C050;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
}

.success button:hover {
    filter: brightness(85%);
}

.success button:active {
    transform: translateY(-1px);
}

.form__textarea textarea::placeholder {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #A5A5A5;
}

.form__btn  button {
    cursor: pointer;
    width: 100%;
    background: #00C050;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 12px 0;
    transition: filter 0.2s ease-in-out;
    text-align: center;
}


.form__btn  button:hover {
    filter: brightness(85%);
}

.form__btn  button:active {
    transform: translateY(-1px);
}


.modal .request__inner .request__title {
    line-height: 1.2;
}

.modal .request__inner .request__subtitle {
    margin-bottom: 32px;
}

.modal .section__title {
    margin-bottom: 16px;
}



.error {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #e61212;
}

*:focus {
    outline: none !important;
}

@media screen and (max-width: 1440px){
    .container {
        max-width: calc(100% - (120px * 2))
    }
}

@media screen and (max-width: 1201px) and (min-height: 800px) {
    .modal .request__inner {
        padding: 40px 30px 30px;
    }

    .modal .request__inner .form__textarea textarea {
        min-height: calc((132px / 3) * 2);
    }
}

@media screen and (max-width: 768px) {

    .container {
        max-width: calc(100% - (20px * 2));
    }

    .section__title {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 48px;
        letter-spacing: -1px;
        color: #000000;
    }

    .section__subtitle {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        text-align: center;
        font-feature-settings: 'liga' off;
        color: #A5A5A5;
    }
}

@media screen and (max-width: 480px){
    .logo{
        max-width: 125px    !important;
    }
    .request__inner .close {
        top: 25px;
        right: 25px;
    }


    .modal .request__inner {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: calc(100% - 90px);
        top: 90px;
        translate: 0;
        left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
}