* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "TASA Explorer", sans-serif;
}

body {
    background-color: var(--main-background);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.first {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.first video {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.first_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 15%;
    z-index: 2;
    height: 80vh;
    justify-content: center;
}

.first_overlay h1 {
    font-size: 6rem;
    color: var(--second-text);
}

.first_overlay p {
    font-size: 1.5rem;
    color: var(--second-text);
}

.first_overlay span {
    margin-top: 4rem;
    display: flex;
    gap: 1rem;
}

.first_overlay button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--second-text);
    background-color: transparent;
    border: 2px solid var(--second-text);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.first_overlay button:hover {
    background-color: var(--accent-washed);
    border-color: var(--accent-2);
    transition: all 0.3s ease;
    cursor: pointer;
}

/*second section*/
.second {
    display: flex;
    flex-direction: column;
    overflow-x: visible;
    margin: 5% 0;
}

.second h1 {
    font-size: 3rem;
    color: var(--main-text);
    margin-left: 15%;
}

#second_options {
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-top: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; /* the problem */
    box-sizing: border-box;
    scroll-padding-left: 15%;
}

#second_options::-webkit-scrollbar {
    display: none;
}

#second_options {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#second_1 {
    margin-left: 15%;
}

#second_3 {
    margin-right: 100vw;
}

.second_option {
    background-color: var(--third-background);
    width: 40%;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.second_option h2 {
    font-size: 2rem;
    color: var(--main-text);
}

.second_option p {
    font-size: 1rem;
    color: var(--main-text);
}

.second_option img {
    height: 40vh;
    margin: 0 auto;
    margin-top: 2rem;
}

.second_option_2 {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
}

.second_option_2_buttons {
    display: flex;
    gap: 1rem;
}

.second_option_2 button {
    padding: 0.5rem 1rem;
    background-color: var(--accent-2);
    font-size: 1rem;
    color: var(--main-text);
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#koop {
    background-color: transparent;
    border: 1px solid var(--accent-2);
    transition: all 0.3s ease;
}

#koop:hover {
    background-color: var(--accent-2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.second_option_2 button:hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-controls {
    display: flex;
    gap: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 1rem;
    justify-content: right;
}

.scroll-controls button {
    background-color: transparent;
    border-radius: 100%;
    border: none;
}

.scroll-controls img {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 1px solid var(--accent-2);
    padding: 1rem;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.scroll-controls img:hover {
    background-color: var(--accent-2);
    cursor: pointer;
    transition: all 0.3s ease;
}

/*third section*/
.third {
    display: flex;
    flex-direction: column;
    padding: 5% 15%;
}

.third h1 {
    font-size: 3rem;
    color: var(--main-text);
}

.third p {
    font-size: 1rem;
    color: var(--main-text);
}

/*footer section*/
.footer {
    display: flex;
    padding: 5% 15%;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--accent-2);
}

.footer_section {
    display: flex;
    flex-direction: column;
    width: inherit;
}

.footer h2 {
    font-size: 2rem;
    color: var(--main-text);
}

.footer p {
    font-size: 1rem;
    color: var(--main-text);
}

.footer a {
    text-decoration: none;
    color: var(--main-text);
    display: flex;
    align-items: center;
}

.footer a img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}