/* stylelint-disable */
.brx-animate-inital-opacity:not(.animated) {
    opacity: 0;
}

.gfd-animation-loop-3cols-delay-1,
.gfd-animation-loop-3cols-delay-4,
.gfd-animation-loop-3cols-delay-7,
.gfd-animation-loop-3cols-delay-10,
.gfd-animation-loop-3cols-delay-13,
.gfd-animation-loop-3cols-delay-16,
.gfd-animation-loop-3cols-delay-19 {
    animation-delay: 0.15s;
}

.gfd-animation-loop-3cols-delay-2,
.gfd-animation-loop-3cols-delay-5,
.gfd-animation-loop-3cols-delay-8,
.gfd-animation-loop-3cols-delay-11,
.gfd-animation-loop-3cols-delay-14,
.gfd-animation-loop-3cols-delay-17,
.gfd-animation-loop-3cols-delay-20 {
    animation-delay: 0.3s;
}

.brx-animate-slideInLayers {
    position: relative;
    opacity: 0;
}
.brx-animate-slideInLayers:nth-child(3n+1) {
    z-index: 20;
    animation: slideInLayersFirst 0.3s ease-out;
}
.brx-animate-slideInLayers:nth-child(3n+2) {
    z-index: 10;
    animation-name: slideInLayersSecond;
    animation-delay: 0.5s;
    animation-duration: 0.75s;
    animation-timing-function: cubic-bezier(0.25, 0.75, 0.5, 1);
}
.brx-animate-slideInLayers:nth-child(3n+3) {
    z-index: 5;
    animation-name: slideInLayersThird;
    animation-delay: 0.5s;
    animation-duration: 0.75s;
    animation-timing-function: cubic-bezier(0.25, 0.75, 0.5, 1);
}

@keyframes slideInLayersFirst {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slideInLayersSecond {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    1% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInLayersThird {
    0% {
        opacity: 0;
        transform: translateX(-200%);
    }
    1% {
        opacity: 0;
        transform: translateX(-200%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.brx-animate-zoomFadeIn {
    animation-duration: 0.75s;
    animation-name: zoomFadeIn;
    animation-timing-function: cubic-bezier(0.25, 0.75, 0.5, 1);
}

@keyframes zoomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/*gfd elements animations END*/
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
body .gform-theme {
    width: 100%;
}
body .gform-theme > .gform_anchor {
    margin-top: -120px;
    padding-top: 120px;
}
body .gform-theme .gfield_label_before_complex,
body .gform-theme .gfield_label,
body .gform-theme .gform-field-label,
body .gform-theme .gform_validation_container {
    display: none !important;
}
body .gform-theme .gfd-hidden-field {
    display: none;
}
body .gform-theme input,
body .gform-theme input[type=color],
body .gform-theme input[type=date],
body .gform-theme input[type=datetime-local],
body .gform-theme input[type=file],
body .gform-theme input[type=image],
body .gform-theme input[type=month],
body .gform-theme input[type=number],
body .gform-theme input[type=password],
body .gform-theme input[type=reset],
body .gform-theme input[type=time],
body .gform-theme input[type=url],
body .gform-theme input[type=week],
body .gform-theme input[type=email],
body .gform-theme input[type=search],
body .gform-theme input[type=tel],
body .gform-theme input[type=text],
body .gform-theme textarea,
body .gform-theme select {
    display: block;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: none;
    outline: 0;
    color: #000;
    font-weight: 400;
    line-height: 20px !important;
    height: 20px;
    padding: 0;
    width: 100%;
    font-size: 16px;
    margin-bottom: 4px;
}
body .gform-theme input::-webkit-input-placeholder,
body .gform-theme input[type=color]::-webkit-input-placeholder,
body .gform-theme input[type=date]::-webkit-input-placeholder,
body .gform-theme input[type=datetime-local]::-webkit-input-placeholder,
body .gform-theme input[type=file]::-webkit-input-placeholder,
body .gform-theme input[type=image]::-webkit-input-placeholder,
body .gform-theme input[type=month]::-webkit-input-placeholder,
body .gform-theme input[type=number]::-webkit-input-placeholder,
body .gform-theme input[type=password]::-webkit-input-placeholder,
body .gform-theme input[type=reset]::-webkit-input-placeholder,
body .gform-theme input[type=time]::-webkit-input-placeholder,
body .gform-theme input[type=url]::-webkit-input-placeholder,
body .gform-theme input[type=week]::-webkit-input-placeholder,
body .gform-theme input[type=email]::-webkit-input-placeholder,
body .gform-theme input[type=search]::-webkit-input-placeholder,
body .gform-theme input[type=tel]::-webkit-input-placeholder,
body .gform-theme input[type=text]::-webkit-input-placeholder,
body .gform-theme textarea::-webkit-input-placeholder,
body .gform-theme select::-webkit-input-placeholder {
    opacity: 1;
}
body .gform-theme input::-moz-placeholder,
body .gform-theme input[type=color]::-moz-placeholder,
body .gform-theme input[type=date]::-moz-placeholder,
body .gform-theme input[type=datetime-local]::-moz-placeholder,
body .gform-theme input[type=file]::-moz-placeholder,
body .gform-theme input[type=image]::-moz-placeholder,
body .gform-theme input[type=month]::-moz-placeholder,
body .gform-theme input[type=number]::-moz-placeholder,
body .gform-theme input[type=password]::-moz-placeholder,
body .gform-theme input[type=reset]::-moz-placeholder,
body .gform-theme input[type=time]::-moz-placeholder,
body .gform-theme input[type=url]::-moz-placeholder,
body .gform-theme input[type=week]::-moz-placeholder,
body .gform-theme input[type=email]::-moz-placeholder,
body .gform-theme input[type=search]::-moz-placeholder,
body .gform-theme input[type=tel]::-moz-placeholder,
body .gform-theme input[type=text]::-moz-placeholder,
body .gform-theme textarea::-moz-placeholder,
body .gform-theme select::-moz-placeholder {
    opacity: 1;
}
body .gform-theme input:-moz-placeholder,
body .gform-theme input[type=color]:-moz-placeholder,
body .gform-theme input[type=date]:-moz-placeholder,
body .gform-theme input[type=datetime-local]:-moz-placeholder,
body .gform-theme input[type=file]:-moz-placeholder,
body .gform-theme input[type=image]:-moz-placeholder,
body .gform-theme input[type=month]:-moz-placeholder,
body .gform-theme input[type=number]:-moz-placeholder,
body .gform-theme input[type=password]:-moz-placeholder,
body .gform-theme input[type=reset]:-moz-placeholder,
body .gform-theme input[type=time]:-moz-placeholder,
body .gform-theme input[type=url]:-moz-placeholder,
body .gform-theme input[type=week]:-moz-placeholder,
body .gform-theme input[type=email]:-moz-placeholder,
body .gform-theme input[type=search]:-moz-placeholder,
body .gform-theme input[type=tel]:-moz-placeholder,
body .gform-theme input[type=text]:-moz-placeholder,
body .gform-theme textarea:-moz-placeholder,
body .gform-theme select:-moz-placeholder {
    opacity: 1;
}
body .gform-theme textarea {
    padding: 25px;
    line-height: 21px !important;
    height: 300px;
    min-block-size: 0 !important;
    border: 1px solid #000;
}
body .gform-theme select {
    padding-right: 35px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0;
    text-overflow: "";
}
body .gform-theme select::-ms-expand {
    display: none;
}
body .gform-theme .gform-footer {
    justify-content: flex-end;
}
body .gform-theme input[type=submit] {
    cursor: pointer !important;
    display: block !important;
    width: auto !important;
    background-color: transparent !important;
    color: #000 !important;
    font-size: 16px !important;
    line-height: 100% !important;
    min-height: auto !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    text-align: center !important;
    vertical-align: middle !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1px solid transparent !important;
    transition: all 0.2s ease-out !important;
    outline: none !important;
    --gf-local-outline-color: none !important;
    --gf-local-outline-width: none !important;
}
body .gform-theme input[type=submit]:hover, body .gform-theme input[type=submit]:focus {
    text-decoration: none !important;
    color: #000 !important;
    background-color: transparent;
    border-color: #000 !important;
    box-shadow: none !important;
}
body .gform-theme .gform_validation_errors {
    display: none;
}
body .gform-theme .gform_confirmation_message {
    text-align: center;
}
body .gform-theme .gfield_description,
body .gform-theme .validation_message,
body .gform-theme .gfield_validation_message {
    margin-block-start: 0 !important;
    padding-top: 4px;
}
body .gform-theme .gform_footer {
    margin-block-start: 0;
    width: 100%;
    position: relative;
    flex: 1 1 100% !important;
}
body .gform-theme .gform-loader {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -10px;
    border-block-end-color: #FFF;
    border-block-start-color: transparent;
    border-inline-end-color: transparent;
    border-inline-start-color: #FFF;
}
body .gform-theme.gform-theme--foundation .gform-grid-row {
    margin-inline: 0;
    margin: 0 -15px;
}
body .gform-theme.gform-theme--foundation .gform-grid-col {
    padding: 0 15px;
    display: block;
}
body .gform-theme.gform-theme--foundation .gform_fields {
    grid-row-gap: 0;
}
body .gform-theme.gform-theme--foundation .gform_fields .gfield {
    margin-bottom: 26px;
}
@media screen and (min-width: 992px) {
    body .gform-confirmation-left-desktop .gform-theme .gform_confirmation_message {
        text-align: left;
    }
}
@media screen and (min-width: 992px) and (max-width: 991px) and (min-width: 769px) {
    body .gform-confirmation-left-tab .gform-theme .gform_confirmation_message {
        text-align: left;
    }
}
@media screen and (min-width: 992px) and (max-width: 768px) {
    body .gform-confirmation-left-tab .gform-theme .gform_confirmation_message {
        text-align: left;
    }
}
/*# sourceMappingURL=style.css.map */
