body {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    color: #737373;
}
/* Header */
header .logo-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Content */
.content {
    min-height: 50vh;
    max-width: 100%;
}

/* Form */
.form {
    width: 80vw;
    max-width: 1020px;
}
.form .screen {
    display: none;
}
.form .screen.active {
    display: block;
}
.form h2 {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    color: #000;
}
.form p {
    text-align: center;
    font-size: 14px;
    line-height: 2;
    max-width: 650px;
    margin: 0 auto;
}
.form .rate-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}
.form .rate-wrapper .rate {
    float: left;
    height: 46px;
    padding: 0 10px;
}
.form .rate-wrapper .rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}
.form .rate-wrapper .rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 40px;
    color: #ccc;
}
.form .rate-wrapper .rate:not(:checked) > label:before {
    content: '★ ';
}
.form .rate-wrapper .rate > input:checked ~ label {
    color: #ffc700;
}
.form .rate-wrapper .rate:not(:checked) > label:hover,
.form .rate-wrapper .rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}
.form .rate-wrapper .rate > input:checked + label:hover,
.form .rate-wrapper .rate > input:checked + label:hover ~ label,
.form .rate-wrapper .rate > input:checked ~ label:hover,
.form .rate-wrapper .rate > input:checked ~ label:hover ~ label,
.form .rate-wrapper .rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
.form .btn-wrapper {
    display: flex;
    justify-content: center;
}
.form .btn-wrapper.left {
    justify-content: end;
    margin: 0 15px;
}
.form .btn-wrapper.nm {
    margin: 0;
}
.form .btn-wrapper button {
    cursor: pointer;
    background: #D9B368;
    color: #fff;
    padding: 18px 54px;
    border: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    transition: all .3s ease;
}
.form .btn-wrapper.small button {
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 400;
    margin: 30px 0;
}
.form .btn-wrapper button:hover {
    background: #68c9ca;
}
.inputs-wrapper .row {
    display: flex;
    width: 100%;
}
.inputs-wrapper .row > div {
    margin: 15px;
    width: 50%;
}
.inputs-wrapper label {
    font-size: 18px;
    color: #464A53;
    display: block;
    margin-bottom: 5px;
}
.inputs-wrapper input {
    border: 2px solid #000000;
    padding: 15px;
    width: 100%;
    outline: none;
    transition: all .3s ease-in;
}
.inputs-wrapper .input-err {
    color: #FF5274;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-top: 5px;
}
.inputs-wrapper .row .full {
    width: 100%;
}

.feedback label {
    display: block;
    color: #464A53;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}
.feedback textarea {
    width: 100%;
    height: 260px;
    border: 2px solid #000000;
    outline: none;
    transition: all .3s ease-in;
}

.success-msg {
    font-weight: 700;
    font-size: 24px!important;
    line-height: 54px;
    color: #D9B368;
    margin: 100px 0;
}
.form input:focus,
.form textarea:focus {
    border: 2px solid #D9B368;
}


/* Footer */

footer .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
footer .footer-wrapper .follow,
footer .footer-wrapper .contact-info {
    margin: 0 24px;
}
footer .footer-wrapper .follow {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-wrapper .follow p {
    font-size: 18px;
    font-weight: 700;
    margin-right: 23px;
}
footer .footer-wrapper .follow .social-icons {
    display: flex;
}
footer .footer-wrapper .follow .social-icons a {
    margin: 0 12px;
}

@media screen and (max-width: 800px) {
    body {
        height: auto;
    }
    .logo-wrapper {
        margin-bottom: 30px;
    }

    /* Content */
    .content {
        width: calc(100% - 30px);
        padding: 0 15px;
    }
    .form {
        width: 100%;
    }
    .inputs-wrapper .row > div {
        margin: 10px 15px;
    }
    .inputs-wrapper .row {
        flex-wrap: wrap;
    }
    .form .rate-wrapper {
        margin-bottom: 30px;
    }
    .inputs-wrapper .row .half {
        width: 100%;
    }

    /* Footer */
    footer .footer-wrapper .follow,
    footer .footer-wrapper .contact-info {
        flex: 100%;
    }
    footer .footer-wrapper .follow .social-icons a {
        margin: 0 0 0 12px;
    }
    footer .footer-wrapper .contact-info {
        text-align: center;
    }
}