/* =====Fonts Resources===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* =====Scrollbar Style===== */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #55AD9B50;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 60px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #55AD9B;
}

/* =====Variable CSS===== */
:root {
    --header-height: 5rem;

    /* =====Colors Resources===== */
    --accent: #55AD9B;
    --background-light: #F1F8E8;
    --background-neutral: #95D2B350;
    --text-color: #55AD9B;

    /* =====Fonts Stuff===== */
    --header-font: 48px;
    --list-font: 24px;
    --desc-font: 24px;

    --size: 75px;

}

/* =====Animations===== */
.reveal {
    opacity: 0;
    transition: 1s all ease;
    transform: translateY(150px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0px);
}

.float {
    background-color: var(--background-light);
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.selected {
    background-color: var(--accent);
    border-radius: 100px;
    color: white;
}

.spinner {
    position: fixed;
    display: flex;
    width: 100%;
    z-index: 9999;
    background-color: var(--background-light);
    height: 100vh;
    justify-content: center;
    align-items: center;
}

#loading {
    width: 50px;
    height: 50px;
    border: 6px solid var(--background-neutral);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}


@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =====BASE FRAMEWORK===== */
* {
    user-select: none;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
    background-color: var(--background-light);
}

/* FRAMEWORK */
.container {
    width: 100%;
    height: 100vh;
}

.heading {
    width: 100%;
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    padding-inline: 6%;
}

.heading h2 {
    font-size: 64px;
}

.heading h3 {
    margin-top: -15px;
    font-size: 56px;
}

.heading p {
    font-size: 20px;
}

.heading span {
    color: var(--accent);
}

.social {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social img {
    width: 50px;
    transition: .2s;
}

.social img:hover {
    transform: translateY(-30%);
    width: 50px;
}

.product-content .content p {
    margin-top: 10px;
}

/* Home Container */
.home-content {
    background-color: var(--background-light);
    padding-top: 3%;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile */
@media only screen and (max-width:480px) {

    /* FRAMEWORK */
    .container {
        width: 100%;
        height: 100vh;
    }

    .heading {
        display: flex;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-inline: 8%;
    }

    .heading h2 {
        font-size: 40px;
    }

    .heading h3 {
        margin-top: -15px;
        font-size: 40px;
    }

    .heading p {
        font-size: 16px;
    }

    .heading span {
        color: var(--accent);
    }

    .social {
        margin-top: 20px;
        display: flex;
        gap: 20px;
    }

    .social img {
        width: 50px;
        transition: .2s;
    }

    .social img:hover {
        transform: translateY(-20%);
        width: 50px;
    }

    .product-content h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    /* Home Container */
    .home-content {
        padding-top: 10%;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Tablet Users */
@media (min-width:600px) {
    .heading h2 {
        font-size: 56px;
    }

    .heading h3 {
        width: 100%;
        line-height: 55px;
        margin-top: -5px;
        font-size: 52px;
    }

    .heading p {
        margin-top: 10px;
        font-size: 20px;
    }

    .product-content {
        margin-top: 5%;
    }
}