@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Regular.ttf");
    font-display: swap;
    font-weight: normal;
}

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Bold.ttf");
    font-display: swap;
    font-weight: bold;
}

:root {
    --main_color: #00674f;
    /*--main_color: #50cb7b;*/
    --red_color: #e74c3c;
    --green_color: #2cb4b3;

    /*--d: 6em;*/
    /*--r: calc(0.5 * var(--d));*/
    /*--g: calc(var(--d) * (sqrt(2) - 1));*/
    /*--s: calc(var(--d) + var(--g));*/
    /*--p: calc(var(--r) / 3);*/
    /*--q: calc(2 * var(--p));*/
    /*--sl: calc(var(--q) + 1px) calc(var(--r) + -0.5px),*/
    /*transparent calc(var(--r) + 0.5px);*/
}

* {
    box-sizing: border-box;
}

body {
    background-color: #333333;
    font-family: Heebo, Sans-serif, serif;
    min-width: 320px;
    min-height: 100dvh;
    display: flex;
    font-size: 16px;
    flex-direction: column;
    justify-content: space-between;
    /*padding: 0;*/
    /*margin: 0;*/
}

b {
    font-weight: bold;
}

li {
    border-bottom: 1px solid rgba(211, 211, 211, 0.5);
    padding: 8px 0;
}

li:last-child {
    border-bottom: unset;
}

main {
    max-width: 768px;
    width: 100%;
    margin: auto;
    background-color: #F9F8F8;
    position: relative;
    flex: 1 1 auto;
}

footer {
    max-width: 768px;
    width: 100%;
    margin: auto;
    background-color: #F9F8F8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.atmospheric_picture {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #cccccc;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover {
    background-color: white;
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    box-shadow: 0px -9px 21px 8px rgba(87, 87, 87, 0.26) inset;
    -webkit-box-shadow: 0px -9px 21px 8px rgba(87, 87, 87, 0.26) inset;
    -moz-box-shadow: 0px -9px 21px 8px rgba(87, 87, 87, 0.26) inset;
}

.cover p {
    position: relative;
    z-index: 3;
    font-size: 40px;
    font-weight: bold;
    text-shadow: #FFF 1px 0 10px;
    text-align: center;
    background-color: white;
    color: #5f9fff;
}

.cover span {
    color: #59cc5b;
}

.confetti {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    overflow: hidden;
    opacity: .6;
    /*transition: 3s;*/
}

.confetti img {
    width: 100%;
}

.bg {
    opacity: .05;
    --s: 20px;
    --_g: radial-gradient(#4d4d4d 45%, #0000 46%);
    --_l: radial-gradient(#ffffff 15%, #0000 16%);
    background: var(--_l), var(--_l), var(--_g), var(--_g);
    background-position: 0 0, var(--s) var(--s);
    background-size: calc(2 * var(--s)) calc(2 * var(--s));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 10;
    z-index: 10;
}

.atmospheric_picture img {
    object-fit: cover;
    min-height: 100%;
    width: 100%;
}

.logo {
    background-color: white;
    box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .1);
    border: 8px solid white;
    width: 200px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: -100px auto 0;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.logo img {
    width: 100%;
}

.name, .form_title {
    color: #333333;
    text-align: center;
    font-weight: bold;
    padding-top: 30px;
    margin: auto;
    font-size: 2em;
    display: block;
}

.company {
    padding-top: 32px;
    text-align: center;
    font-weight: bold;
}

.position {
    color: #333333;
    text-align: center;
    margin: 8px;
}

.social_media {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.social_media__item {
    width: 72px;
    margin: 16px calc(15% - 36px);
    height: 72px;
    border-radius: 50%;
    background-color: var(--main_color);
    box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.social_media__item svg {
    fill: white;
    width: 36px;
}

.examples {
    height: auto !important;
}

.examples a {
    width: 180px;
    padding: 10px;
}

.examples a img {
    width: 100%;
    filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.5));
}

.swiper {
    width: 100%;
    height: 200px;
    padding: 10px;
    background-color: white;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    /*width: 100%;*/
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    width: fit-content;
}

.form_row {
    width: 100%;
    padding: 8px 0;
}

.form_row_title {
    padding: 16px 16px 4px;
    font-weight: bold;
    font-size: 1.2em;
}

.form_row input, .form_row textarea, .form_row select {
    width: 100%;
    font-family: Heebo, Sans-serif, serif;
    padding: 8px 16px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: white;
}

.form_row select {
    background-image: linear-gradient(45deg, transparent 50%, var(--main_color) 50%), linear-gradient(135deg, var(--main_color) 50%, transparent 50%);
    background-position: left 15px top 16px, left 20px top 16px, left 0 top 0;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
}

.form_row input.ltr {
    direction: ltr;
}

.form_row img {
    height: 80px;
}

.input.rtl {
    direction: ltr;
}

.form_row label {
    color: #999999;
    font-size: .8em;
    padding: 0 16px 4px;
    display: block;
}

form button {
    background-color: var(--main_color);
    color: white;
    border: none;
    font-weight: bold;
    margin: 20px auto;
    display: block;
    padding: 16px;
    width: 100%;
    border-radius: 4px;
}

.powered {
    text-align: center;
    display: inline-block;
    padding: 16px 8px;
    color: #999999;
    font-size: .8em;
    transition: .3s;
    width: fit-content;
    text-decoration: none;
}

.powered:hover {
    color: var(--main_color);
    text-decoration: underline;
}

.color_select {
    position: relative;
}

.color_select span {
    height: 24px;
    width: 120px;
    position: absolute;
    bottom: 16px;
    left: 10px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link {
    color: var(--main_color);
    text-align: center;
    display: block;
}

.terms_link {
    color: var(--main_color);
    transition: .3s;
}

.terms_link:hover {
    opacity: .6;
}

/* START MSG */

.msg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.msg span {
    background-color: white;
    padding: 24px;
    max-width: 320px;
    width: calc(100% - 40px);
    box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .1);
    border-radius: 24px;
}

.msg svg {
    width: 80px;
    height: 80px;
    margin: auto;
    display: block;
}

.msg.success span svg {
    fill: var(--green_color);
}

.msg.error span svg {
    fill: var(--red_color);
}

.msg p {
    text-align: center;
    margin: 20px auto;
}

.msg .btn {
    width: fit-content;
    margin: auto;
}

.btn {
    background-color: var(--main_color);
    color: white;
    border: none;
    font-weight: bold;
    margin: 20px auto;
    display: block;
    padding: 16px;
    width: calc(100% - 24px);
    border-radius: 4px;
    cursor: pointer;
}

.msg.welcome_msg span {
    max-width: 992px;
    max-height: 90vh;
    overflow-y: auto;
}

.msg.welcome_msg b {
    font-size: 1.2em;
}

/* END MSG */

/* FILE UPLOAD */
.file-select {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    border: 1px solid #ccc;
    color: #222;
    cursor: pointer;
    height: 41px;
    line-height: 45px;
    text-align: left;
    background: white;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    width: 100%;
    direction: ltr;
    /*margin: 8px 0;*/
}

.file-select-name {
    line-height: 41px;
    display: inline-block;
    padding: 0 16px;
    color: #878787;
}

.file-select-button {
    background-color: var(--main_color);
    padding: 0 10px;
    display: inline-block;
    height: 41px;
    line-height: 41px;
    font-weight: bold;
    font-size: 1em;
    width: 22%;
    text-align: center;
    float: right;
    color: white;
    min-width: 106px;
}

.file-select input {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    margin: auto !important;
}

/* END FILE UPLOAD */

/* START CHECKBOX */

.checkbox_container {
    display: block;
    position: relative;
    padding-left: 16px !important;
    padding-right: 35px !important;
    margin-bottom: 12px;
    padding-top: 5px !important;
    cursor: pointer;
    user-select: none;
}

.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 23px;
    width: 23px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox_container:hover input ~ .checkmark {
    border: 1px solid var(--main_color);
}

.checkbox_container input:checked ~ .checkmark {
    border: 1px solid var(--main_color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox_container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--main_color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* END CHECKBOX */

/* START ACCORDION */

.accordion {
    background-color: white;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    margin: 8px 0;
    text-align: right;
    outline: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.4s;
    border: 1px solid var(--main_color);
    border-radius: 4px;

}

.accordion.active {
    border: 1px solid #ccc;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: left;
    margin-right: 5px;
}

.accordion.active:after {
    content: "\2212";
    color: var(--main_color);
}

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* END ACCORDION */

.content {
    padding: 20px 0 0;
    text-align: center;
    line-height: initial;
    color: #333;
}

.content h1 {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--main_color);
    line-height: 1em;
    margin-bottom: 4px;
    padding: 0 20px;
}

.content h2 {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--main_color);
}

.content label {
    opacity: .8;
    font-size: 0.8em;
    margin-bottom: 10px;
    display: block;
    padding: 0 20px;
}

.row {
    background-color: white;
    padding: 20px 20px;
    margin: 20px;
    box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .1);
    border-radius: 16px;
}

.eco_icons {
    display: flex;
    justify-content: space-between;
}

.eco_icons img {
    width: 30%;
    border-radius: 16px;
    box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .1);
}

.fullScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 80px;
    opacity: 0;
    z-index: 50;
}

.vcard_link {
    border: 2px solid var(--main_color);
    text-decoration: none;
    text-align: center;
    color: var(--main_color);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 10px;
    width: fit-content;
    padding: 12px 16px;
    border-radius: 30px;
    background-color: white !important;
    box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .1);
}

.vcard_link_row {
    display: flex;
    justify-content: center;
}

.main_cover {
    background: rgb(16, 166, 131);
    background: linear-gradient(0deg, rgba(16, 166, 131, 1) 0%, rgba(0, 103, 79, 1) 100%);
}

.main_title {
    width: calc(100% - 24px);
    padding: 16px 40px 16px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 0 36px;
    text-align: center;
}

.main_title h1 {
    font-size: clamp(1.375rem, 0.751rem + 3.12vw, 2.25rem);
    font-weight: bold;
    color: white;
    line-height: normal;
}

.main_bottom_icons {
    width: calc(100% - 24px);
    margin-right: 24px;
    padding: 16px 16px 16px 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 36px 0 0;
    text-align: center;
}

.main_cover h2 {
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 20px;
}

.main_cover label {
    opacity: .8;
    font-size: 0.8em;
    margin-bottom: 10px;
    display: block;
    padding: 0 20px;
    color: white;
    text-align: center;
    margin-top: 6px;
}

.main_cover p {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
    line-height: normal;
}


@media (min-width: 480px) {
    .main_title {
        width: calc(100% - 40px);
        padding: 16px 56px 16px 16px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0 0 0 36px;
        text-align: center;
    }

    .main_bottom_icons {
        width: calc(100% - 40px);
        margin-right: 40px;
        padding: 16px 16px 16px 56px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0 36px 0 0;
        text-align: center;
    }
}

@media (min-width: 600px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}