/* --------------------------------- Basics --------------------------------- */

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color: #4d546f;
}

body {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    transition: .3s;
}

.btn {
    text-transform: capitalize;
    padding: 15px 30px;
    text-decoration: none;
    border: 0;
    border-radius: 5px;
    background-image: linear-gradient(310deg, #2152ff, #21d4fd);
    color: white;
    margin: 0 10px;
    text-wrap: nowrap;
    text-align: center;
}

.btn.special {
    padding: 13px 30px;
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to right, #2152ff, #21d4fd) 1;
    color: #2152ff;
}

.alert {
    position: absolute;
    width: 100%;
    max-width: 500px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 20px 20px 55px;
    border-radius: 10px;
    color: #091337;
    font-weight: 500;
    background-size: 25px;
    background-position: 15px center;
    background-repeat: no-repeat;
    text-align: left;
    transition: .5s;
}

.alert.success {
    background-image: url("/static/auth/success.png");
    background-color: #82E0AA;
}

.alert.error {
    background-image: url("/static/auth/error.png");
    background-color: #F1948A
}

.alert.info {
    background-image: url("/static/auth/info.png");
    background-color: #85C1E9;
}

body img.background {
    position: absolute;
    z-index: -1;
}

body img.background.bg1 {
    width: 110vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #091337;
}

p {
    color: #4d546f;
}

big {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 64px;
    height: 64px;
    background-image: url('/static/website/images/whatsapp.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s;
    z-index: 3;
    border-radius: 50%;
    box-shadow: 0 1px 4px -2px #25D366, 0 8px 20px rgba(0, 0, 0, 0.16);
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    background-image: url("/static/website/images/loader.svg");
    background-size: 100px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 4;
}

/* ---------------------------------- header --------------------------------------- */

body header {
    position: fixed;
    width: 100%;
    max-width: 1400px;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    transition: 0.3s;
    z-index: 2;
}

body header img {
    width: 200px;
}

body header nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

body header nav ul {
    list-style: none;
    display: inline-flex;
}

body header nav ul li a {
    margin: 0 20px;
    text-decoration: none;
}

body header nav ul li a:hover{
    color: #007bff;
}

body header nav figure {
    position: relative;
    width: 90px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(211, 211, 211);
    background-color: white;
    background-size: 20px;
    background-position: 10px 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0 0 0 10px;
    padding-left: 40px;
    text-align: left;
}

body header nav figure:hover form {
    visibility: visible;
    opacity: 1;
}

body header nav figure::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("/static/website/images/down.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

body header nav figure form {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgb(211, 211, 211);
    background-color: white;
    overflow: hidden;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
}

body header nav figure form button {
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    background-size: 20px;
    background-position: 10px 50%;
    background-repeat: no-repeat;
    border: none;
    text-align: left;
    padding-left: 40px;
    background-color: transparent;
    cursor: pointer;
}

body header nav figure form button:hover {
    background-color: rgb(231, 231, 231);
}

body header div {
    display: none;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    margin-left: auto;
}

body header div em {
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    background-color: grey;
    transition: .3s;
}

body header div:hover em {
    background-color: #0593fe;
}

@media(max-width: 1300px) {
    body header nav {
        display: none;
        background-color: white;
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        max-width: 500px;
        padding-bottom: 20px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    }

    body header nav ul {
        width: 100%;
        flex-direction: column;
        padding: 20px 40px;
    }

    body header nav ul li a {
        margin: 0;
    }

    body header nav ul li {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(128, 128, 128, 0.2);
    }

    body header nav ul li:first-child {
        border-top: 1px solid rgba(128, 128, 128, 0.2);
    }

    body header nav a.btn {
        width: 200px;
        margin: 10px 0;
    }

    body header div {
        display: flex;
    }
}

/* ------------------------------------ cookies ---------------------------------- */

#cookies {
    display: block;
    position: fixed;
    transform: translateY(-100%);
    top: calc(100% - 20px);
    left: 20px;
    width: 400px;
    max-height: calc(100vh - 40px);
    background-color: white;
    border-radius: 10px;
    overflow: hidden scroll;
    padding: 50px 20px 20px 20px;
    margin: 0;
    z-index: 10000;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

#cookies img {
    position: absolute;
    transform: translateX(-100%);
    top: 20px;
    left: calc(100% - 20px);
    width: 50px;
    height: 50px;
}

#cookies::-webkit-scrollbar {
    width: 10px;
}

#cookies::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: grey;
}

#cookies::-webkit-scrollbar-thumb:active {
    background: rgb(87, 87, 87);
}

#cookies strong {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    margin: 0;
    text-align: left;
    color: #091337;
}

#cookies p {
    padding: 10px 0;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
}

#cookies p a {
    text-decoration: underline;
}

#cookies em {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #555555;
    cursor: pointer;
    text-decoration: underline;
    margin: 0;
    align-self: flex-start;
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
}

#cookies em i {
    width: 13px;
    height: 13px;
    background-image: url("/static/website/images/down.png");
    background-size: cover;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    margin-left: 10px;
}

#cookies button {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .2);
    outline: none;
    cursor: pointer;
    margin-top: 15px;
    background: #0072CC;
    color: white;
    font-size: 14px;
}

#cookies button:active {
    background: #00A6BC;
}

#cookies main {
    height: 0px;
    transition: 1s;
    overflow: hidden;
}

#cookies main hr {
    background: #00bfd8;
    border: none;
    height: 1px;
    margin-bottom: 20px;
}

#cookies main aside div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cookies main aside div b {
    font-size: 14px;
}

#cookies main aside div figure {
    position: relative;
    width: 45px;
    height: 24px;
    border-radius: 12px;
    background: grey;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
}

#cookies main aside.necessary-cookies div figure {
    cursor: not-allowed;
    background: #0072CC;
}

#cookies main aside div figure span {
    position: absolute;
    transform: translate(0%, -50%);
    top: 50%;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    transition: .3s;
}

#cookies main aside.necessary-cookies div figure span {
    transform: translate(-100%, -50%);
    left: calc(100% - 2px);
}

#cookies main aside div figure input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

#cookies main button {
    background: #E0E0E0;
    color: #393939;
}

#cookies main button:active {
    background: #CCCCCC;
}

@media(max-width: 480px) {
    #cookies {
        width: 300px;
        margin: 0 !important;
    }

    #cookies img {
        width: 40px;
        height: 40px;
    }

    #cookies strong {
        font-size: 14px;
    }

    #cookies em {
        font-size: 14px;
    }

    #cookies em i {
        width: 12px;
        height: 12px;
    }

    #cookies p {
        font-size: 11px;
    }

    #cookies::-webkit-scrollbar {
        width: 2px;
    }
}

/* ---------------------------------- footer --------------------------------------- */

body footer {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1300px;
    margin-top: 250px;
    padding: 0 20px;
}

body footer div {
    margin-bottom: 30px;
}

body footer div.f1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body footer div.f1 img {
    width: 280px;
}

body footer div.f1 ul {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}

body footer div.f1 ul li{
    margin: 0 20px;
}
body footer div.f1 ul li a {
    text-decoration: none;
}

body footer div.f1 ul li:hover a {
    color: #007bff;
}

body footer div.f2 {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px #e2e2e2;
}

body footer div.f2 b {
    margin: 10px 0;
    background-size: 20px;
    background-position: 0 center;
    background-repeat: no-repeat;
    padding-left: 40px;
}

body footer div.f2 b:nth-child(1) {
    background-image: url('/static/website/images/phone.png');
}

body footer div.f2 b:nth-child(2) {
    background-image: url('/static/website/images/mail.png');
}

body footer div.f2 b:nth-child(3) {
    background-image: url('/static/website/images/location.png');
}

body footer div.f2 b a {
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 500;
}

body footer div.f2 b a:hover {
    color: #007bff;
}

body footer div.f3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

body footer div.f3 a em {
    display: block;
    width: 45px;
    height: 45px;
    background-color: white;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    transition: .3s;
    border: 2px solid white;
    margin: 0 20px;
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.2);
}

body footer div.f3 a em:hover {
    background-color: transparent;
}

body footer div.f3 a.facebook em {
    background-image: url('/static/website/images/socials/facebook.png');
}

body footer div.f3 a.instagram em {
    background-image: url('/static/website/images/socials/instagram.png');
}

body footer div.f3 a.youtube em {
    background-image: url('/static/website/images/socials/youtube.png');
}

body footer div.f3 a.linkedin em {
    background-image: url('/static/website/images/socials/linkedin.png');
}

body footer div.f3 a.tiktok em {
    background-image: url('/static/website/images/socials/tiktok.png');
}

body footer div.f3 a.twitter em {
    background-image: url('/static/website/images/socials/twitter.png');
}

body footer div.f4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

body footer div.f4 a {
    text-decoration: none;
    margin: 0 20px;
}

body footer div.f4 a:hover {
    color: #091337;
}

body footer div.f5 {
    display: flex;
    align-items: center;
    justify-content: center;
}

body footer div.f5 button {
    font-size: 16px;
    background: none;
    border: none;
    outline: none;
    margin: 0 20px;
    cursor: pointer;
}

body footer div.f5 button:hover {
    color: #091337;
}

body footer div.f6 {
    display: flex;
    align-items: center;
    justify-content: center;
}

body footer div.f6 p {
    text-align: center;
    color: #091337;
}

body footer div.f6 p a {
    color: #007bff;
    text-decoration: none;
}

body footer img.bg {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 2000px;
    z-index: -1;
}

@media(max-width: 780px) {
    body footer div.f1 {
        flex-direction: column;
    }

    body footer div.f1 img {
        margin-bottom: 20px;
    }

    body footer div.f3 a em {
        margin: 10px;
    }

    body footer div.f2 {
        padding: 20px;
    }

    body footer div.f2 b {
        padding-left: 30px;
        background-size: 15px;
    }
}

.errorlist {
    display: none;
}

/* ---------------------------------- mobile --------------------------------------- */
@media(max-width: 480px) {
    body header {
        width: 90% !important;
        height: 80px !important;
    }

    body header img {
        width: 150px !important;
    }

    body section {
        margin-top: 150px !important;
        overflow-x: hidden !important;
    }

    body section h1 {
        font-size: 48px !important;
    }

    body section h2 {
        font-size: 38px !important;
    }

    body section p {
        margin: 20px 0 50px 0 !important;
    }

    body section#s1 a {
        padding: 15px 50px !important;
    }

    body section#s1 img {
        width: 100% !important;
        margin-top: 50px !important;
    }

    body section#s2 main aside em {
        width: 50px !important;
        min-width: 50px !important;
        height: 50px !important;
    }

    body section#s2 main aside div h3 {
        margin: 8.5px 0 30px 0 !important;
    }

    body section#s2 main aside div p {
        position: relative !important;
        left: -70px !important;
        width: calc(100% + 70px) !important;
    }

    body section#s3 main aside h2 {
        font-size: 22px !important;
    }

    body section#s3 main figure {
        width: 350px !important;
        height: 350px !important;
    }

    body section#s4 main aside {
        width: 100% !important;
        height: 100px !important;
        margin: 20px 0 !important;
    }

    body section#s4 main aside h1 {
        font-size: 22px !important;
    }

    body section#s5 figure {
        height: 100px !important;
        border-radius: 10px !important;
        transform: scale(.55) !important;
    }

    body section#s5 figure em {
        border-radius: 10px !important;
    }

    body section#s5 main {
        margin-top: 0 !important;
    }

    body section#s5 main aside {
        width: 100% !important;
        margin: 20px 0 !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        padding: 20px !important;
    }

    body section#s5 main aside title {
        font-size: 28px !important;
        text-align: left !important;
        padding-left: 30px !important;
        width: calc(100% - 50px) !important;
    }

    body section#s5 main aside strong {
        width: 100% !important;
        font-size: 48px !important;
        margin: 10px 0 !important;
    }

    body section#s5 main aside p {
        width: 100% !important;
        margin: 10px 0 !important;
    }

    body section#s5 main aside i,
    body section#s5 main aside b {
        width: 100% !important;
    }

    body section#s5 main aside a {
        font-size: 18px !important;
        padding: 10px 20px !important;
        margin: 0 auto !important;
        margin-top: 15px !important;
    }

    body section#s5 main aside img {
        top: -20px !important;
        left: unset !important;
        right: 0 !important;
    }

    body section#s6 main img:first-child {
        height: 100px !important;
    }

    body section#s6 main img:last-child {
        height: 85px !important;
    }

    body section#s7 main form {
        flex-direction: column !important;
    }

    body section#s7 main form input[type='email'] {
        border-radius: 10px !important;
        border: 1px solid grey !important;

    }

    body section#s7 main form input[type='submit'] {
        width: 150px !important;
        border-radius: 10px !important;
        margin: 10px auto !important;
    }

    body section#s8 main form {
        padding: 20px 10px !important;
    }

    body section#s8 main form input[type='submit'] {
        align-self: center !important;
    }

    body section#s8 main aside div {
        margin: 20px 0 !important;
    }

    body section#s9 {
        margin-top: 50px !important;
        margin-bottom: -50px !important;
    }

    body section#s9 iframe {
        border-radius: 8px !important;
    }

    body footer {
        margin-top: 150px !important;
        overflow-x: clip !important;
    }

    body blockquote {
        overflow-x: hidden !important;
    }

    body footer div.f1 img {
        width: 150px !important;
    }

    body footer div.f1 ul {
        margin: 10px 0 !important;
    }
    body footer div.f1 ul li{
        margin: 0 10px;
    }
    body footer div.f1 ul li a {
        font-size: 14px !important;
    }

    body footer div.f2 {
        padding: 10px !important;
    }

    body footer div.f2 b {
        padding-left: 25px !important;
        font-size: 13px !important;
    }

    body footer div.f3 {
        width: 195px !important;
        align-self: center !important;
    }

    body footer div.f4 a {
        margin-bottom: 10px !important;
    }

}