@import url("https://fonts.googleapis.com/css2?family=Asap:wght@400;500;700;800;900&display=swap");

html,
body {
    height: 100%;
}

html {
    font-size: 62.5%;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

body {
    color: #4a4a4a;
    font-family: "Asap", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.5;
}

.contact-wrap {
    color: #fff;
    padding: 0px;
}

.contact-wrap.flexnone {
    display: block;
}

.contact-wrap h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-wrap .content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

#post .content {
    display: block;
}

.contact-wrap .content p {
    line-height: 1.8;
}

.contact-wrap .content.center {
    text-align: center;
}

.contact-wrap .form-content {
    padding: 0;
}

.contact-wrap .form-wrapper {
    width: 100%;
    /* padding: 24px; */
}

.loopify-form {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.form-wrapper .loopify-form .form-group {
    position: relative;
    flex: 0 0 calc(50% - 12px);
}

.form-wrapper .loopify-form .form-group.wid100 {
    flex: 0 0 100%;
}

.form-wrapper .loopify-form .button-wrap {
    width: 100%;
    display: block;
}

.form-wrapper .form-group.mrg0 {
    margin-bottom: 0px;
}

.form-wrapper .info {
    display: block;
    position: absolute;
    font-size: 1rem;
    color: #FF0000;
    padding-left: 5px;
}

form h2 {
    color: #121212;
    font-size: 2.2rem;
    padding-bottom: 30px;
    line-height: 26px;
}

form input,
form textarea,
form select {
    width: 100%;
    border: 0px;
    border-radius: 14px;
    padding: 14px 12px;
    font-family: "Asap", sans-serif;
    background: #f0f4f3;
    color: #101828;
    font-size: 1.4rem;
    line-height: 1.4;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
}

form textarea {
    display: block;
}

form select {
    padding: 14px 12px;
    background: #f0f4f3;
    color: #101828;
    font-family: "Asap", sans-serif;
    appearance: none;
    background-image: url("../images/dw-arrow-bl.svg");
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    background-size: 10px auto;
}

#userGift:focus option:checked {
    color: green;
}

form label {
    color: #101828;
    font-size: 1.4rem;
    font-family: 500;
    pointer-events: none;
}

form .select label {
    color: #121212;
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
    padding-bottom: 4px;
}

form button {
    font-family: "Asap";
    width: 100%;
    border: none;
    outline: none;
    padding: 19px 16px;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
    background: #288051;
    border-radius: 28px;
    cursor: pointer;
}

form .infotxt {
    display: flex;
    color: #121212;
    font-size: 1rem;
    padding-top: 10px;
}

.infotxt a {
    padding-left: 5px;
    color: #121212;
    text-decoration: underline;
}

.success-msg {
    color: #121212;
    min-height: 125px;
    display: none;
    text-align: center;
}

.success-msg h2 {
    font-size: 2.4rem;
}

.success-msg p {
    font-size: 1.4rem;
}

.iti {
    display: block;
}

.iti__selected-dial-code,
.iti__country-name {
    color: #121212;
    font-size: 1.2rem;
}

.loader {
    color: #121212;
    font-size: 1.2rem;
}

.d-none {
    display: none;
}


/* Responsive */

@media only screen and (max-width : 400px) {
    .form-wrapper .loopify-form .form-group {
        flex: 0 0 100%;
    }
}