:root {
    --primary-color: #213c2e;
    --bg-color: var(--primary-color);
    --text-color: #fff;
    --padding-y: 50px;
    --padding-x: 100px;
    --margin-top-5: 10rem;
    --swiper-navigation-color: #DEDEDE7F;
    --swiper-pagination-color: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: var(--padding-y) var(--padding-x);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: large;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    z-index: 99;
}

.header-content {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

main {
    width: 100%;
}

section {
    width: 100%;
}

.nav {
    height: 100%;
    width: 100%;
}

.footer {
    width: 100%;
    height: 100px;
    padding: var(--padding-y) var(--padding-x);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    z-index: 99;
}

.h1 {
    font-size: x-large;
}

.h2 {
    font-size: x-large;
    text-align: center;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: var(--margin-top-5);
}

.mb-0 {
    margin-bottom: 0;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

.button {
    outline: none;
    border: none;
    padding: .8rem 1.6rem;
    cursor: pointer;
    box-sizing: border-box;
    background-color: #eeeeee;
}

.button--primary {
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: bold;
    font-size: medium;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    transition: 0.5s ease all;
}

.button--primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid #fff;
}

.h-100 {
    height: 100%;
}

.relative {
    position: relative;
}

section {
    max-width: 1440px;
    margin: auto;
}

.w-100 {
    width: 100%;
}

.w-30 {
    width: 30%;
}

.footer-nav-list {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.link {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
}

.link:hover {
    color: #dcdcdc;
}

.input {
    min-width: 250px;
    padding: 0.4rem 0.8rem;
    box-sizing: border-box;
    font-size: 2rem;
    text-align: center;
    align-content: center;
}

details{
    display:block;
    padding: 1rem;
    box-sizing: border-box;
    outline:0;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
summary::-webkit-details-marker{display:none;}
summary::-moz-list-bullet{list-style-type:none;}
summary::marker{display:none;}
summary {
    display:block;
    padding: 1rem;
    padding-right: 3rem;
    box-sizing: border-box;
    font-size:1.4em;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    outline:0;
}
summary:before {
    top: calc(50% - 1rem);
    right: 1rem;
    color: transparent;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI0ZGRkZGRiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBkPSJtMTIuMTQgOC43NTMtNS40ODIgNC43OTZjLS42NDYuNTY2LTEuNjU4LjEwNi0xLjY1OC0uNzUzVjMuMjA0YTEgMSAwIDAgMSAxLjY1OS0uNzUzbDUuNDggNC43OTZhMSAxIDAgMCAxIDAgMS41MDZ6Ii8+Cjwvc3ZnPg==") no-repeat 50% 50% / 1em 1em;
    width: 1em;
    height: 1em;
    content: "";
    position: absolute;
    transition: transform .5s;
}
details[open] > summary:before {
    transform: rotateZ(90deg);
}
summary ~ * {
    padding-left: 1rem;
}

.accordion_content {
    overflow: hidden;
    margin-top: 1rem;
}
