@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --foreground-color: #0369a1;
    --second-color: #0891b2;
    --background-color: #fff;
    --text-color: rgb(30 41 59);
}

* {
    box-sizing: border-box;
}

html, body {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--background-color);
    font-family: 'Open sans', sans-serif;
    overflow-x: hidden;
    font-size: 16px;
}

.navbar {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: .5s;
    background-color: rgba(255, 255, 255, .25);
    backdrop-filter: blur(25px);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25); 
}

.navbar .container {
    position: relative;
    height: 100%;
}

.navbar a {
    float: left;
    font-size: 16px!important;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    line-height: 40px;
    text-transform: uppercase;
}

.navbar-logo {
    font-size: 20px!important;
    font-weight: 600!important;
}

.navbar a img {
    height: 52px;
    opacity: .85;
    position: absolute;
    top: 8px;
}

.navbar-button {
    position: absolute;
    right: 0;
    font-size: 16px;
    padding: 10px 20px;
    color: var(--background-color)!important;
    font-weight: 600!important;
    background-color: var(--foreground-color);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25); 
    border-radius: 6px;
    transition: .2s;
    top: 50%;
    transform: translateY(-50%);
    line-height: unset!important;
    text-transform: none!important;
}

.navbar-button:hover {
    background-color: var(--text-color);
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-center a {
    margin: 0 20px;
    font-size: 18px;
    line-height: 74px;
}

.navbar-responsive-button {
    position: absolute;
    right: 0;
    opacity: .85;
    display: none;
    top: 50%;
    transform: translate(-100%, -50%);
}

.navbar-responsive {
    visibility: hidden;
    display: block;
    position: absolute;
    top: 0;
    background-color: var(--background-color);
    height: 100vh;
    width: 300px;
    left: -300px;
    transition: .3s;
    z-index: 99;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, .1);
    padding: 20px;
}

.navbar-responsive img {
    height: 80px;
    margin: 0 auto;
    display: block;
}

.navbar-responsive .links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navbar-responsive a {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
    transition: all .4s;
}

.navbar-responsive  a:hover {
    color: var(--foreground-color);
}

.navbar-responsive a.close-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar.responsive .navbar-responsive {
    visibility: visible;
    left: 0;
}


/* ------- Header ------- */

header {
    width: 100%;
    padding-top: 80;
    position: relative;
}

header:before {
    position: absolute;
    content: '';
    z-index: 0;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-image: url('../images/background-3.jpg');
    background-position: 50% 20%;
    background-size: cover;
    background-repeat: no-repeat;
}

header::after {
    position: absolute;
    content: '';
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, .25); 
}

header .container {
    position: relative;
    width: 100%;
    height: 100%;
}

header .header-title {
    position: relative;
    padding-top: 150px;
    padding-bottom: 80px;
    z-index: 99;
}

header .header-title h1 {
    font-family: 'Raleway', sans-serif;
    color: var(--background-color);
    font-size: 52px;
    font-weight: 800;
    width: 100%;
    margin: 0;
    line-height: 72px;
    text-align: center;
}


header .header-title h1 .header-backlight {
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(15px);
    color: var(--text-color);
    padding: 0 10px;
    padding: 0 20px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    font-size: 44px;
}
header .header-title .header-brightness {
    color: var(--foreground-color);
    font-weight: 900;
}

header .header-img {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 40px;
}

header .header-img img {
    filter: saturate(.5);
    opacity: .75;
}

header .header-subtitle {
    position: absolute;
    bottom: 20px;
    transform: translateX(-50%);
    left: 50%;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    z-index: 1;
    font-size: 22px;
}

header .header-subtitle i {
    color: var(--foreground-color);
}

/* ------- Form ------- */

.form {
    padding-top: 80px;
    width: 100%;
    position: relative;
    padding-bottom: 60px;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('../images/background-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 40%;
    z-index: 0;
}

.form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0369a1;
    opacity: .25;
    z-index: 0;
}

.form .container {
    position: relative;
    min-height: 60vh;
    z-index: 1;
}

.form .form-title {
    padding: 60px 0;
    text-align: center;
    margin: 0 auto;
    font-size: 48px;
    max-width: 700px;
    font-weight: 1000;
    color: var(--foreground-color);
    font-family: 'Raleway', sans-serif;
}

.form .form-title span {
    display: inline;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(32px);
    box-decoration-break: clone;
    padding: 0 10px;
    border-radius: 6px;
    color: var(--text-color);
    font-weight: 700;
}

.form .form-title span > b {
    color: var(--foreground-color);
    font-weight: 700;
}

.form-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(32px);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    border-radius: 6px;
    overflow: hidden;
}

.form form {
    z-index: 99;
    position: relative;
    width: 100%;
    transition: all .4s;
    overflow: hidden;
}

.form #formResponse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
    backdrop-filter: blur(32px);
    transition: all .4s;
    visibility: hidden;
    opacity: 0;
}

.form #formResponse.active {
    visibility: visible;
    opacity: 1;
}

.form #formResponse i {
    padding: 14px;
    border-radius: 6px;
    background-color: var(--foreground-color);
    color: var(--background-color);
    font-size: 38px;
}

.form #formResponse h4 {
    color: var(--text-color);
    max-width: 400px;
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
    font-size: 28px;
    font-family: 'Raleway', sans-serif;
}

.form #formError {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9;
    backdrop-filter: blur(32px);
    transition: all .4s;
    visibility: hidden;
    opacity: 0;
}

.form #formError.active {
    visibility: visible;
    opacity: 1;
}

.form #formError i {
    padding: 14px;
    border-radius: 6px;
    background-color: var(--foreground-color);
    color: var(--background-color);
    font-size: 38px;
}

.form #formError h4 {
    color: var(--text-color);
    max-width: 400px;
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
    font-size: 28px;
    font-family: 'Raleway', sans-serif;
}

.form .tabs {
    transition: all .5s;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.form .tabs .tab {
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    transition: all .4s;
    width: 100%;
}

.form .tab h1 {
    color: var(--text-color);
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 800;
    margin-top: 60px;
    padding: 0 60px;
}

.tab.hidden {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: -100px!important;
}

.form-choices {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.form .form-check {
    padding-left: 0;
    margin: 0;
}

.form .form-tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 40px;
}

.form .form-table {
    display: block;
}

.form .form-table img {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.form .form-table label {
    height: unset!important;
    width: 100%!important;
    padding: 18px!important;
}

.form .form-table label span {
    all: unset!important;
    position: relative;
    font-size: 16px;
}

.form-input {
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
}

.form-text {
    position: relative;
    margin: 30px 0;
}

.form-input input {
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(32px);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    color: var(--text-color);
    border: none;
    outline: none;
    transition: all .4s;
}

.form-input label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    transition: all .4s;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}
/*
.form-input input:focus + label {
    top: -16px;
    font-size: 16px;
    color: #fff;
}*/

.form-input input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.form input[type="radio"] {
    display: none;
}

.form input[type="radio"] + label {
    position: relative;
    padding: 30px;
    width: 100%;
    height: 230px;
    width: 220px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(32px);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    transition: all .5s;
}

.form input[type="radio"]:hover + label {
    transition: all .5s;
    transform: scale(1.075);
    opacity: .8;
    cursor: pointer;
}

.form input[type="radio"]:checked + label {
    transition: all .5s;
    background-position: top right;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]{
    -webkit-moz-appearance: textfield;
}

.form-check {
    position: relative;
}

.form-check img {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-check span {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.form-checkbox {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: baseline;
}

.form-checkbox input {
    position: relative;
}

.form-checkbox label {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
}

.form-checkbox label a {
    color: var(--foreground-color);
    text-decoration: none;
}

.form-buttons {
    position: absolute;
    bottom: 50px;
    left: 0;
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
    transition: all 1s;
}

.form-buttons button {
    background-color: transparent;
    border: 2px solid var(--text-color);
    padding: 15px 0;
    border-radius: 6px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    transition: all .4s;
    flex: 1 0 auto;
    max-width: 200px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    transition: all .4s;
    animation: slideBtn 200ms both;
}

.form-buttons button i {
    margin-left: -10px;
    margin-right: 10px;
}

.form-buttons button:hover {
    background-color: var(--foreground-color);
    color: var(--background-color);
    border-color: var(--foreground-color);
}

.form-buttons button.hidden {
    opacity: 0;
    flex: 0 0 auto;
    width: 0;
    transform: translateY(40px);
    display: none;
}

@keyframes slideBtn {
    from { transform: translateY(40px) }
    to { transform: translateY(0px); }
}

form .form-invalid {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
    background-color: var(--text-color);
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    z-index: 999;
}

form.invalid .form-invalid {
    visibility: visible;
    opacity: 1;
    bottom: 50%;
    transform: translate(-50%, 50%);
}

form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    backdrop-filter: blur(7px);
    z-index: 9;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

form.invalid::before {
    visibility: visible;
    opacity: 1;
    opacity: 20px;
}



/* Form Taxes */

.form-taxes {
    flex-wrap: wrap;
}

.form-taxes .form-check label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: unset!important;
    padding: 0 14px!important;
    gap: 10px;
    border-radius: 6px!important;
    height: 50px!important;
}

.form-taxes .form-check img {
    position: relative;
    top: unset!important;
    left: unset!important;
    transform: none!important;
}

.form-taxes .form-check span {
    all: unset!important;
    position: relative;
    font-size: 18px!important;
}


/* Form Suggestion */


#suggestions {
    z-index: 9999999;
    position: relative;
    margin: 0;
    font-size: 18px;
    color: var(--text-color);
    top: 8px;
    max-height: 180px;
    overflow-y: scroll;
    border-radius: 6px;
}

#suggestions li {
    padding: 10px;
    background-color: #d3d7dd;
    transition: all .4s;
    text-align: left;
    line-height: 16px;
    font-size: 16px;
}

#suggestions li:hover {
    background-color: var(--background-color);
    cursor: pointer;
}


/* ------- Form Info ------- */

.form-infos {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.form-infos ul,
.form-infos li {
    margin: 0;
    padding: 0;
    max-width: 500px;
    padding: 0 30px;
}

.form-infos li {
    color: var(--text-color);
    margin: 30px 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.form-infos li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 20px;
    color: rgba(30, 41, 59, .85);
    text-align: center;
}


/* --- Certifications ----*/

.certifications .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
}


/* ------- Infos -------- */

.infos {
    padding-top: 120px;
    padding-bottom: 60px;
}

.infos-title {
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 36px;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.infos-title::after {
  position: absolute;
  content: '';
  bottom: -35px;
  width: 100px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--foreground-color);
  left: 50%;
  transform: translateX(-50%);
}

.infos .infos-items {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    grid-template-areas: 
        "a b e"
        "c d e";
    grid-auto-rows: 1fr;
}

.infos-item {
    width: 100%;
    border-radius: 6px;
    padding: 20px;
    background-color: #e0f2fe;
    backdrop-filter: blur(32px);
    display: flex;
    flex-direction: column;
}

.infos-item h3 {
    color: var(--text-color);
    font-weight: 600;
    font-size: 22px;
    position: relative;
    font-family: 'Raleway', sans-serif;
    padding-left: 70px;
}


.infos-item p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding-left: 70px;
}

.infos-item img {
    position: absolute;
    top: 24px;
    height: 50px;
    width: 50px;
}

.infos-item:nth-child(1) { grid-area: a; }
.infos-item:nth-child(2) { grid-area: b; }
.infos-item:nth-child(3) { grid-area: c; }
.infos-item:nth-child(4) { grid-area: d; }
.infos-image { grid-area: e; }

.infos-image {
    width: 100%;
    background-image: url('/assets/images/background-2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
}


/* ------- Banner ------- */

.banner {
    padding-bottom: 60px;
}

.banner-items {
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    display: flex;
    gap: 20px;
}

.banner-item {
    flex: 1 1 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.banner-item img {
    height: 60px;
}

.banner-item p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
}


/* ------- About ------- */

.about {
    padding: 60px 0;
}

.about-content {
    padding-top: 60px;
}

.about h3 {
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 36px;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.about h3::after {
    position: absolute;
    content: '';
    bottom: -35px;
    width: 100px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--foreground-color);
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-image {
    background-image: url('/assets/images/background-3.jpg');
    background-position: 8% bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 800px;
    width: 500px;
    flex-shrink: 0;
    border-radius: 6px;
}

.about-text ul, li {
    margin: 0;
    padding: 0;
}

.about-text ul, li {
    list-style: none;
}

.about-text li {
    padding: 20px 30px 20px 60px;
    border-radius: 6px;
    transition: all .4s;
}

.about-text li:hover {
    background-color: var(--background-color);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
}

.about-text h4 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
}

.about-text h4 i {
    position: absolute;
    top: 2px;
    left: -35px;
    color: var(--foreground-color);
    font-size: 24px;
}

.about-text p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    margin: 0;
}


/* ----- Feeds ----- */

.feeds {
    padding-bottom: 60px;
}

.feeds-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    width: 100%;
    gap: 20px;
}

.feed {
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    padding: 20px;
    border-radius: 6px;
}

.feed a {
    text-decoration: none;
    transition: all .4s;
    color: var(--text-color);
    display: inline-block;
}

.feed a:hover {
    color: var(--foreground-color);
}

.feed a i {
    margin-right: 8px;
}


/* --- Feed Main --- */

.feed-main {
    width: 100%;
}

.feed-main .feed {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.feed-main .feed img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.feed-main .feed h3 {
    margin-top: 260px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.feed-main .feed p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
            line-clamp: 4; 
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.feed-main a {
    margin-top: 15px;
}


/* --- Feeds List --- */

.feeds-list {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: space-between;
}

.feeds-list .feed {
    display: flex;
    max-height: 190px;
    overflow: hidden;
    position: relative;
    align-items: center;
}

.feeds-list img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    object-fit: cover;
}

.feeds-list h3 {
    margin-left: 200px;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
            line-clamp: 3; 
    -webkit-box-orient: vertical;
}

.feeds-list .feed p {
    display: none;
}

.feeds-list .feed a {
    position: absolute;
    left: 220px;
    bottom: 20px;
}

.feeds-list .feed a i {
    margin-right: 8px;
}


/* ---- About US ---- */

.about-us {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    opacity: 1;
    transition: all .4s;
}

.about-us::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-color: rgba(81, 96, 121, .75);
}

.about-us-content {
    position: relative;
    top: 0;
    max-width: 800px;
    padding: 20px;
    border-radius: 6px;
    background-color: var(--background-color);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    z-index: 99999;
    transition: all .4s;
}

.about-us-hidden .about-us-content {
    top: 50%;
}

.about-us-content img {
    margin: 20px auto;
    display: block;
    height: 40px;
    opacity: .5;
}

.about-us-content h2 {
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 36px;
    padding-top: 20px;
    position: relative;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 70px;
}

.about-us-content h2::after {
    position: absolute;
    content: '';
    bottom: -35px;
    width: 100px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--foreground-color);
    left: 50%;
    transform: translateX(-50%);
}

.about-us-content p {
    text-align: justify;
    margin: 0;
    color: var(--text-color);
    font-size: 18px;
}

.about-us-content button {
    padding: 10px;
    color: var(--background-color);
    background-color: var(--foreground-color);
    border-radius: 6px;
    display: block;
    border: none;
    box-shadow: none;
    width: 100%;
    transition: all .4s;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.about-us-content button:hover {
    background-color: var(--text-color);
}

.about-us-hidden {
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}


/* ----- Footer ----- */

footer {
    padding: 40px 0;
}


footer .container {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

footer .container:first-child {
    margin-bottom: 20px;
}

footer .footer-links {
    display: flex;
    gap: 20px;
}

footer a,
footer .footer-copyright {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin: 0;
}

footer img {
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .footer-info {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    margin: 0;
}


/* ----- Legal ----- */

.legal {
    padding-top: 120px;
}

.legal-title h1 {
    text-align: center;
    color: var(--text-color);
    font-weight: 700;
    font-size: 36px;
    padding-top: 20px;
    position: relative;
}

.legal-title h1::after {
    position: absolute;
    content: '';
    bottom: -35px;
    width: 100px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--foreground-color);
    left: 50%;
    transform: translateX(-50%);
}

.legal-content {
    padding-top: 60px;
}

.legal-content p,
.legal-content ul,
.legal-content li {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}

.legal-content ul,
.legal-content li {
    list-style-type: disc;
}

.legal-content h2,
.legal-content h3 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
}

.legal-content a {
    color: var(--foreground-color);
    text-decoration: none;
}

.legal-content a.link {
    color: var(--text-color);
    text-decoration: underline;
}


/* ----- Cookies ------ */
#cookies {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all .4s;
    backdrop-filter: blur(16px);
}

#cookies::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--foreground-color);
    opacity: .5;
}

#cookies .cookies-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    backdrop-filter: blur(16px);
    background-color: rgba(255, 255, 255, .75);
    padding: 30px;
    border-radius: 6px;
    max-width: 800px;
    width: calc(100% - 30px);
}

#cookies h2 {
    color: var(--text-color);
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
}

#cookies h3 {
    color: var(--text-color);
    font-weight: 600;
    font-size: 22px;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

#cookies li {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

#cookies li span {
    font-weight: 600;
    color: var(--foreground-color);
}

#cookies p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
}

#cookies p a {
    color: var(--foreground-color);
    text-decoration: none;
}

#closeCookiesBtn {
    position: absolute;
    top: 30px;
    right: 30px;
    border: none;
    background-color: transparent;
    outline: none;
}

.cookies-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookies-buttons button {
    outline: none;
    font-weight: 600;
    font-size: 18px;
    flex: 1 0 auto;
    transition: all .4s;
    max-width: 200px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .25);
    background-color: transparent;
    border: 2px solid var(--text-color);
    padding: 15px 0;
    border-radius: 6px;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

#acceptCookiesBtn {
    background-color: var(--foreground-color);
    border-color: var(--foreground-color);
    color: var(--background-color);
}

#closeCookiesBtn {
    font-size: 24px;
}

.cookies-buttons button:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}



/* ----- Responsive ----- */

@media screen and (max-width: 1400px) {
    header .header-title h1 {
        font-size: 42px;
    }

    header .header-title .header-brightness {
        font-size: 52px;
    }

    .form-infos ul {
        max-width: 340px;
    }

    .form-infos li {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    header .header-title h1 {
        font-size: 32px;
    }

    header .header-title .header-brightness {
        font-size: 42px;
    }

    .form-content {
        display: block;
    }

    .form-content ul {
        display: flex;
        justify-content: center;
        max-width: none;
        width: 100%;
    }

    .form-content li {
        text-align: center;
    }

    .form-content li i {
        top: -30px;
        left: 50%;
    }

    .about-content{
        flex-wrap: wrap;
        justify-content: center;
    }

    .infos .infos-items {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: 
            "a b e"
            "c d e";
    }

    .infos-image {
        background-position: 70% center;
    }

    footer img {
        display: none;
    }
}

@media screen and (max-width: 990px) {
    header .header-title h1 {
        font-size: 28px;
    }

    header .header-title .header-brightness {
        font-size: 38px;
    }

    .navbar a {
        font-size: 16px!important;
        margin: 0 5;
    }

    .navbar-center a {
        margin: 0 10px;
    }

    .navbar-button {
        padding: 10px;
    }

    .form .tabs {
        height: auto;
        padding-bottom: 30px;
        display: block;
    }

    .form .tabs .tab:not([class*="hidden"]) {
        position: relative;
    }

    .form-content {
        position: relative;
        transform: none!important;
        left: 0;
        top: 0;
        margin: 60px 0;
    }

    .form-content ul {
        flex-wrap: wrap;
    }

    .form-images img:nth-child(1) {
        height: 40px!important;
    }

    .form-images img:nth-child(3) {
        height: 60px!important;
    }

    .form-choices {
        flex-wrap: wrap;
    }

    .form-tables {
        display: block!important;
    }

    .form-table {
        margin: 20px 0!important;
    }

    .form-input {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto;
    }
    
    .form-buttons {
        position: relative;
        margin-bottom: 30px;
        bottom: 0;
        left: 0;
        padding: 0 20px;
    }

    .form-infos {
        margin-top: 60px;
    }

    .form input[type="radio"] + label {
        width: 180px;
    }

    .banner-items {
        flex-wrap: wrap;
    }

    .banner-item {
        flex-basis: calc(50% - 20px);
    }

    .infos .infos-items {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 
            "a b"
            "c d";
    }

    .infos-image {
        display: none;
    }

    .feeds-container {
        display: block;
    }

    .feed-main {
        margin-bottom: 20px;
    }

    .feed {
        margin-bottom: 20px;
    }

    .certifications .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px;
    }
}

@media screen and (max-width: 780px) {
    .navbar-center,
    .navbar-button {
        display: none;
    }

    .navbar-responsive-button {
        display: block;
    }

    header .header-title h1 {
        font-size: unset;
        line-height: unset;
        background-color: rgba(255, 255, 255, .5);
        backdrop-filter: blur(15px);
        border-radius: 40px 8px 40px 8px;
        padding: 20px;
    }

    header .header-title h1 .header-backlight {
        font-size: 32px;
        line-height: unset;
        background-color: transparent;
        backdrop-filter: unset;
        color: var(--text-color);
        margin: 0;
    }

    header .header-subtitle {
        color: var(--foreground-color);
        width: 100%;
    }

    .form-title {
        font-size: 32px!important;
        padding-top: 20px;
        padding-bottom: 0!important;
    }

    .form .tab {
        padding: 0 40px;
    }

    .form .tab h1 {
        font-size: 30px;
        padding: 0!important;
    }

    .form .form-check {
        width: 100%;
    }

    .form input[type="radio"] + label {
        width: 100%;
    }

    .form-input {
        width: 100%;
    }

    .form-choices {
        flex-direction: column;
        align-items: center;
    }

    .banner-items {
        display: block;
    }
    
    .banner-item {
        display: block;
        text-align: center;
        margin: 40px 0;
    }

    footer {
        padding: 0 20px;
    }

    footer .footer-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #cookies h2 {
        font-size: 24px;
    }

    #cookies h3 {
        font-size: 18px;
    }

    #cookies ul {
        padding-left: 0;
    }
}

@media screen and (max-width: 540px) {
    .form-table img {
        display: none!important;
    }

    .form-images {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .infos .infos-items {
        display: block;
        border-radius: 0;
    }

    .infos .infos-item {
        margin: 20px 0;
    }

    #cookies h2 {
        text-align: left;
        padding-right: 30px;
        margin-bottom: 0;
    }

    #cookies h3 {
        margin-bottom: 0;
    }
}
