@font-face {
    font-family: "GealovaItalic";
    src: url("/fonts/GealovaItalic/font.woff") format("woff"),
        url("/fonts/GealovaItalic/font.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "GealovaRegular";
    src: url("/fonts/GealovaRegular/font.woff") format("woff"),
        url("/fonts/GealovaRegular/font.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: sans-serif;
    background: #FFEFDE;
    min-height: 100vh;
    position: relative;
    overflow: auto;
}

a {
    -webkit-text-decoration-skip: objects;
    text-decoration: none;
    color: #000000;
}

hr {
    border: 0;
    border-top: 2px solid #000000;
    margin: 0;
    opacity: 1;
}

.head {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.footer {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 1rem;
    border-top: 2px solid #FF8F1C;
}

.footer div {
    align-items: center;
}

.footer-section div {
    display: flex;
    justify-content: center;
    align-content: center;
}

.footer-links {
    padding: 20px;
}

.footer-links a {
    color: #FF8F1C;
}

.footer-technical div {
    display: flex;
    gap: 8px;
    align-items: start;
    font-size: 12px;
}

.footer-technical a {
    color: #FF8F1C;
}

.footer-technical li {
    list-style-image: url(img/triangle.svg);
}

.social {
    display: flex;
    flex-flow: row;
    gap: 1rem;
}

.social a {
    align-items: center;
    border: 1px solid #FF8F1C;
    border-radius: 8px;
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px;
    /* background: #EFFBF8; */
}

.container {
    margin-inline-end: auto;
    margin-inline-start: auto;
    max-width: 1156px;
    padding: 1rem;
    width: 100%;
}

img {
    max-width: 100%;
}

.section-title {
    font-family: "GealovaRegular", sans-serif;
    font-size: 28px;
    font-weight: 600;
}

.title {
    font-family: "GealovaRegular", sans-serif;
    font-size: 30px;
    line-height: 40px;
    color: #FF8F1C;
}

.card {
    display: flex;
    flex-flow: column;
    background: #FFF6ED;
    padding: 2rem;
    border: 2px solid #FF8F1C;
    border-radius: 10px;
    height: 100%;
}

.card img {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

.card .text {
    /* display: flex;
    margin-top: auto;
    min-height: 70px; */
    font-weight: 600;
}

.card .text2 {
    font-style: italic;
    font-size: 14px;
}

.card .link-icon {
    display: flex;
    justify-content: end;
    margin-top: auto;
}

.card .link-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    color: #3CD3BA;
    font-size: 22px;
    border: 2px solid #3CD3BA;
    border-radius: 50%;
}

.divider-16 {
    padding-bottom: 16px;
}

.divider-32 {
    padding-bottom: 32px;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.modal.is-active {
    display: flex;
}

.modal.modal--small .modal__container {
    width: 580px;
}

.modal.modal--big .modal__container {
    width: 1000px;
}

.modal .modal__container {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 50px 80px #8999a166;
    border-radius: 10px;
    overflow: visible;
    width: 780px;
    max-width: 90%;
    margin: 1rem;
    z-index: 2;
}

.modal .modal__container .modal__container__body {
    padding: 2rem;
    overflow: auto;
    max-height: calc(90vh - 90px);
}

.modal .modal-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(8px);
    background-color: rgb(0 0 0 / 20%);
    z-index: 1;
}

.modal .modal-close {
    display: flex;
    justify-content: end;
}

.modal img {
    width: 250px;
}

.modal .title {
    font-size: 48px;
    color: #3CD3BA;
}

.modal .modal-buttons {
    display: flex;
    gap: 16px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.video-container iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

button {
    margin: 0;
    overflow: hidden;
    padding: .6rem 1.2rem;
    border: none;
    border-radius: 100px;
}

button.button-accept {
    background: #FFFFFF;
    border: 2px solid #FF8F1C;
    color: #FF8F1C;
}

button.button-decline {
    background: #FFFFFF;
}

.form-group {
    display: flex;
    flex-flow: column;
    position: relative;
}

.form-group input {
    width: 100%;
    min-height: 36px;
    background: transparent;
    padding: 0px 14px;
    border-radius: 4px;
}

.form-group .error-message {
    color: red;
    font-size: small;
}