/**************************\
Headline class
\**************************/
.h1, .h2, .h3, .h4 {
    margin: 0;
}

.h1 {
    font-size: 36px;
    font-weight: 700;
}

.h2 {
    font-size: 26px;
    font-weight: 700;
}

.h3 {
    font-size: 22px;
    font-weight: 700;
}

.h4 {
    font-size: 20px;
    font-weight: 700;
}

/**************************\
Font weight class
\**************************/
.fw100 {
    font-weight: 100;
}

.fw500 {
    font-weight: 500;
}

.fw700 {
    font-weight: 700;
}

.fw900 {
    font-weight: 900;
}

/**************************\
Text align class
\**************************/
.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

/**************************\
Links
\**************************/
.link {
    color: #55ab33;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.link--default:hover,
.link--default:focus {
    text-decoration: underline;
}

.link--default:active {
    color: #33910E;
    text-decoration: underline;
}

.link--inner:after,
.link--spoiler:after {
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgNiAxMCI+PGc+PGc+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjc4MmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1taXRlcmxpbWl0PSI1MCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0xLjA1IDEuNDY1djBMNC41ODYgNXYwUzEuOTM0IDcuNTg1IDEuMDUgOC41MzYiLz48L2c+PC9nPjwvc3ZnPg==");
    background-repeat: no-repeat;
    width: 5px;
    height: 8px;
    top: 60%;
    transform: translateY(-50%);
    right: -11px;
    background-position: center;
}

.link--external:after {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE0IDE0Ij48Zz48Zz48cGF0aCBmaWxsPSIjMjc4MmZmIiBkPSJNOC4zOTkuNzA2djEuMzk4aDIuNTFMNC4wMzYgOC45OGwuOTg2Ljk4NiA2Ljg3NS02Ljg3NXYyLjUxMWgxLjM5OFYuNzA2em0zLjQ5NyAxMS4xOUgyLjEwNFYyLjEwNEg3Vi43MDZIMi4xMDRjLS43NzYgMC0xLjM5OC42MjktMS4zOTggMS4zOTh2OS43OTJjMCAuNzY5LjYyMiAxLjM5OCAxLjM5OCAxLjM5OGg5Ljc5MmMuNzY5IDAgMS4zOTgtLjYyOSAxLjM5OC0xLjM5OFY3aC0xLjM5OHoiLz48L2c+PC9nPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
    right: -19px;
}

.link--spoiler:after {
    transform: translateY(-50%) rotate(-270deg);
    width: 8px;
    right: -16px;
}

/**************************\
Grid
\**************************/
.contact-us .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1344px;
    margin: auto;
}

/**************************\
Button
\**************************/

.btn {
    display: inline-block;
    text-align: center;
    padding: 10px 34px;
    outline: none;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border-radius: 30px;
}

.btn--classic {
    border: 2px solid transparent;
    background-color: #55ab33;
    color: #ffffff;
}

.btn--classic:hover {
    background-color: #33910E;
}

.btn--classic:focus {
    background-color: #55ab33;
    border-color: rgba(39, 130, 255, 0.36);
}

.btn--classic:active {
    background-color: #0d4796;
}

.btn--classic:disabled {
    background-color: #b5c2d1;
    cursor: default;
}

.btn--auxiliary {
    background-color: #ffffff;
    color: #55ab33;
    border: 1px solid #d9e1eb;
}

.btn--auxiliary:hover {
    color: #33910E;
    border: 1px solid #33910E;
}

.btn--auxiliary:focus {
    border-color: rgba(39, 130, 255, 0.36);
}

.btn--auxiliary:active {
    border: 1px solid #33910E;
    color: #33910E;
}

.btn--auxiliary:disabled {
    background-color: #b5c2d1;
    cursor: default;
    color: #ffffff;
}

.btn--auxiliary:disabled:hover {
    border: 1px solid transparent;
}

.btn--mimic {
    box-shadow: 0 4px 8px rgba(90, 190, 170, 0.56);
    color: #ffffff;
    background-color: #5abeaa;
}

.btn--mimic:hover {
    box-shadow: 0 8px 16px rgba(58, 222, 190, 0.42);
    background-color: #3adebe;
}

.btn--mimic:focus {
    background-color: #5abeaa;
    box-shadow: 0 8px 16px rgba(58, 222, 190, 0.42);
}

.btn--mimic:active {
    box-shadow: 0 2px 3px rgba(90, 190, 170, 0.56);
}

.btn--mimic:disabled {
    background-color: #b5c2d1;
    cursor: default;
    box-shadow: none;
}

/**************************\
Label
\**************************/
.contact-us .label {
    display: block;
    color: #333;
    font-size: 13px;
    font-size: 10px;
    font-weight: 500;
    line-height: 22px;
    /*	*/
    white-space: unset;
    text-align: left;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.contact-us .label.hidden {
    display: none !important;
}

.contact-us .label--req {
    position: relative;
}

.contact-us .label--req:after {
    content: "*";
}

.contact-us .label--checkbox,
.contact-us .label--radio {
    padding-left: 30px;
    position: relative;
    transition: all 0.2s;
}

.contact-us .label--checkbox:hover,
.contact-us .label--radio:hover {
    color: #000;
}

/**************************\
INPUTS
\**************************/
.contact-us .input {
    width: 100%;
    padding-right: 26px;
    padding-left: 17px;
    background-color: #fff;
    border: 1px solid #c0c7d1;
    color: #333;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    transition: all 0.3s;
    outline: none;
    padding-top: 5px;
    padding-bottom: 5px;
    /*	*/
    box-shadow: none;
    margin: 0;
    height: auto;
}

.input:hover {
    border: 1px solid #676e84;
}

.input:focus {
    border: 1px solid #33910E;
}

.input:disabled {
    background-color: #f3f5f8;
    border: 1px solid transparent;
    cursor: default;
}

.input.error {
    border: 1px solid #f23b3b;
}

/**************************\
TEXTAREA
\**************************/
.textarea {
    min-height: 110px;
    padding: 13px 17px;
}

/**************************\
CHECKBOX
\**************************/
.checkbox-box {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #c0c7d1;
    background-color: #ffffff;
    transition: all 0.2s;
}

.checkbox-box:after {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDEzIDEyIj48Zz48Zz48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiMyNzgyZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjUwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0xLjMzIDQuNDV2MGw0LjU5NCA2LjM3djBsNS44OC05LjE0djAiLz48L2c+PC9nPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: center;
}

.checkbox-box:hover {
    border-color: #676e84;
}

.checkbox:checked + .label {
    color: #55ab33;
}

.checkbox:checked + .label .checkbox-box:after {
    display: block;
}

.checkbox:disabled + .label {
    color: #8696ac;
    cursor: default;
}

.checkbox:disabled + .label .checkbox-box {
    border: 1px solid #c0c7d1;
    background-color: #f3f5f8;
    cursor: default;
}

.checkbox:disabled + .label .checkbox-box:after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDEzIDEyIj48Zz48Zz48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNiNWMyZDEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjUwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0xLjMzIDQuNDV2MGw0LjU5NCA2LjM3djBsNS44OC05LjE0djAiLz48L2c+PC9nPjwvc3ZnPg==");
}

/* RADIO */
.radio-box {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #c0c7d1;
    background-color: #ffffff;
    transition: all 0.2s;
    border-radius: 50%;
}

.radio-box:after {
    position: absolute;
    content: "";
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 12px;
    background-color: #55ab33;
    display: none;
}

.radio-box:hover {
    border-color: #676e84;
}

.radio:checked + .label {
    color: #55ab33;
}

.radio:checked + .label .radio-box:after {
    display: block;
}

.radio:disabled + .label {
    color: #8696ac;
    cursor: default;
}

.radio:disabled + .label .radio-box {
    border: 1px solid #c0c7d1;
    background-color: #f3f5f8;
    cursor: default;
}

.radio:disabled + .label .radio-box:after {
    background-color: #d9e1eb;
}

/**************************\
SELECT
\**************************/
.select-box {
    position: relative;
}

.select-box:after,
.select-box:before {
    bottom: 0;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
}

.select-box:after {
    border-bottom: 2px solid #8696ac;
    border-right: 2px solid #8696ac;
    height: 8px;
    margin: auto;
    right: 12px;
    transform-origin: center right;
    transform: rotate(45deg);
    width: 8px;
    z-index: 2;
}

.select-box:focus-within:before {
    background-color: #015f9f;
}

.select-box select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #c0c7d1;
    line-height: normal;
    max-width: 100%;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding-right: 32px;
    padding-left: 17px;
    padding-top: 7px;
    padding-bottom: 7px;
}

/*.select-box select:focus-visible*/
.select-box select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #fff;
}

.select-box select:focus {
    border-color: #015f9f;
    outline: none;
    background-color: #f5f5f7;
}

.select-box select:disabled {
    color: rgba(255, 255, 255, 0.75);
    cursor: not-allowed;
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

.select-box select:invalid {
    background: darkred;
}

.select-box select:invalid option {
    background: lightgrey;
}

.select-box select::-ms-value {
    background: transparent;
}

.select-box select::-ms-expand {
    display: none;
}

.select-box select:focus option:not(:disabled),
.select-box select:focus optgroup:not(:disabled) {
    color: #111;
    text-shadow: none;
}

.select-box option:disabled,
.select-box optgroup:disabled {
    color: rgba(50, 50, 50, 0.75);
}

[dir="rtl"] .select-box:before,
:root:lang(ar) .select-box:before,
:root:lang(iw) .select-box:before {
    left: 0;
    right: auto;
}

[dir="rtl"] .select-box:after,
:root:lang(ar) .select-box:after,
:root:lang(iw) .select-box:after {
    left: 8px;
    right: auto;
}

[dir="rtl"] .select-box select,
:root:lang(ar) .select-box select,
:root:lang(iw) .select-box select {
    padding: 0.75em 0.75em 0.75em 2em;
}

/**************************\
Contact
\**************************/
.contact-us {
    background-color: #f3f5f8;
    padding-top: 24px;
    padding-bottom: 80px;
}

.contact-us__item {
    width: 100%;
    margin: auto;
}

.contact-us__item:nth-child(1) {
    position: relative;
}

.contact-us__inner {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;
}

.contact-us__item-form {
    max-width: 660px;
    padding-top: 22px;
    padding-bottom: 22px;
}

/**************************\
Map
\**************************/

.contact-us .b-map .map {
    z-index: 10;
    position: absolute !important;
    top: 0;
    width: 100%;
    height: 100%;
}

.contact-us .b-map {
    background: #E1EDFB;
    display: block;
    z-index: 20;
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.contact-us .map-location {
    z-index: 10;
    margin-bottom: 0;
    bottom: 0;
    max-width: 250px;
}

.b-map .map .googleWindowInfo__header {
    font-size: 16px;
    font-weight: 500;
}

.b-map .map .googleWindowInfo__content {
    font-size: 14px;
}

@media (min-width: 992px) {
    .contact-us .b-map {
        padding: 0;
    }

    .contact-us .b-map .map {
        position: relative;
    }

    .contact-us .map-location {
        position: absolute;
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
        max-width: 370px;
    }

    .b-map .map .googleWindowInfo__header {
        font-size: 24px;
        font-weight: 300;
    }

    .b-map .map .googleWindowInfo__content {
        font-size: 16px;
    }
}

/**************************\
Spinner
\**************************/
@keyframes spinner-line-fade-more {
    0%,
    100% {
        opacity: 0; /* minimum opacity */
    }
    1% {
        opacity: 1;
    }
}

@keyframes spinner-line-fade-quick {
    0%,
    39%,
    100% {
        opacity: 0.25; /* minimum opacity */
    }
    40% {
        opacity: 1;
    }
}

@keyframes spinner-line-fade-default {
    0%,
    100% {
        opacity: 0.22; /* minimum opacity */
    }
    1% {
        opacity: 1;
    }
}

@keyframes spinner-line-shrink {
    0%,
    25%,
    100% {
        /* minimum scale and opacity */
        transform: scale(0.5);
        opacity: 0.25;
    }
    26% {
        transform: scale(1);
        opacity: 1;
    }
}

/**************************\
Headline
\**************************/
.contact-us__h3 {
    margin-bottom: 15px;
}

/**************************\
Form row
\**************************/

.contact-us__form .form-group {
    margin-bottom: 16px;
}

.contact-us__form .form-row.form-row--agree {
    margin: 24px 0;
}

.contact-us__form .form-row.form-row--myaxxon {
    max-width: 400px;
    width: 100%;
    margin-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: #33910E;
    border-radius: 40px;
}

.contact-us__form .form-row--myaxxon .label--checkbox {
    padding-left: 48px;
}

.contact-us__form .form-row--myaxxon .label__text {
    color: #fff;
    font-weight: 500;
}

.contact-us__form .form-row--myaxxon .checkbox-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #004b99;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(39, 130, 255, 0.6);
}

.contact-us__form .form-row--myaxxon .checkbox-box:after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNiAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgNS4wMzE0TDcuMjYyODEgMTJMMTQgMiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}

.contact-us__form .btn {
    margin-bottom: 20px;
    max-width: 154px;
    width: 100%;
}

.form-row.form-row--send {
    margin-bottom: 0;
}

.form-row--send .form-text,
.form-row--send .link {
    font-size: 13px;
}

.form-text a {
    color: #55ab33;
    text-decoration: none;
    font-weight: 400;
}

/**************************\
Form group
\**************************/

@media (min-width: 320px) {
    .h1 {
        font-size: 36px;
        font-size: calc(0.03516 * 100vw + 24.75px);
    }

    .h2 {
        font-size: 26px;
        font-size: calc(0.02539 * 100vw + 17.875px);
    }

    .h3 {
        font-size: 32px;
        font-size: calc(0.00977 * 100vw + 18.875px);
    }

    .h4 {
        font-size: 24px;
        font-size: calc(0.00391 * 100vw + 18.75px);
    }

    .btn {
        font-size: 16px;
        font-size: calc(0.00195 * 100vw + 13.375px);
    }

    .contact-us .label {
        font-size: 13px;
        font-size: calc(0.00293 * 100vw + 9.0625px);
    }

    .input {
        font-size: 16px;
        font-size: calc(0.00195 * 100vw + 13.375px);
        padding-top: calc(0.48828vw + 3.4375px);
        padding-bottom: calc(0.48828vw + 3.4375px);
    }

    .select-box select {
        font-size: 16px;
        font-size: calc(0.00195 * 100vw + 13.375px);
        padding-top: calc(0.48828vw + 5.4375px);
        padding-bottom: calc(0.48828vw + 5.4375px);
    }

    .contact-us__h3 {
        margin-bottom: calc(1.66016vw + 9.6875px);
    }

    .contact-us__form .form-row--myaxxon {
        padding-top: calc(0.68359vw + 11.8125px);
        padding-bottom: calc(0.68359vw + 11.8125px);
    }

    .form-row--send .form-text,
    .form-row--send .link {
        font-size: 16px;
        font-size: calc(0.00293 * 100vw + 12.0625px);
    }
}

@media (min-width: 768px) {
    .contact-us__item-form {
        padding: 22px;
    }

    .form-row--df {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .contact-us__form form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .c6 {
        width: calc(100% / 2 - 12.5px);
    }

    .c12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .contact-us .container {
        padding-left: 0;
        padding-right: 0;
    }

    .contact-us__item {
        margin: 0;
    }

    .contact-us__inner {
        flex-direction: row;
    }

    .contact-us__form .form-row {
        /* margin-bottom: 16px; */
    }

    .contact-us__form .form-group {
        /* margin-bottom: 0; */
    }

    .contact-us__form .btn {
        margin-bottom: 0;
        margin-right: 24px;
    }

    .form-row--send {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .contact-us .b-map {
        height: 100%;
    }
}

@media (min-width: 1200px) {

    .contact-us__item-form {
        padding: 42px;
    }
}

@media (min-width: 1344px) {
    .h1 {
        font-size: 72px;
    }

    .h2 {
        font-size: 52px;
    }

    .h3 {
        font-size: 32px;
    }

    .h4 {
        font-size: 24px;
    }

    .btn {
        font-size: 16px;
    }

    .contact-us .label {
        font-size: 13px;
    }

    .input {
        font-size: 16px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .select-box select {
        font-size: 16px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .contact-us__h3 {
        margin-bottom: 32px;
    }

    .contact-us__form .form-row--myaxxon {
        padding-top: 21px;
        padding-bottom: 21px;
    }

    .form-row--send .form-text,
    .form-row--send .link {
        font-size: 16px;
    }
}

form[name='contact_us'] label.error {
    font-size: 11px;
    color: #f23b3b;
}