@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    box-sizing: border-box;
}

.main-container {
    margin: 1.6rem 0.8rem;
    margin-top: 120px;
}

.grid-container {
    margin: auto;
    display: grid;
    grid-gap: 1rem !important;
    grid-template-columns: repeat(auto-fit, 12.8rem);
    grid-auto-rows: 12.8rem;
    grid-auto-flow: dense;
    justify-content: center;
    max-width: 75em;
}

.page_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #18181b;
    overflow: hidden;
}

.card_bg_color {
    background-image: linear-gradient(163deg, #ff90e8 0%, #7f0054 100%);
    border-radius: 20px;
    transition: all 0.3s;
}

.main_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    border-radius: 20px;
    transition: all 0.2s;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.main_card:hover {
    transform: scale(0.98);
    border-radius: 20px;
}

.card_bg_color:hover {
    box-shadow: 0px 0px 30px 1px #e100ff53;
}

.card_1 {
    width: 210px;
    height: 300px;
}

#scroll_below_icon {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;

    &::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 14px;
        width: 16px;
        height: 16px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg);
    }
}

@keyframes down {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

.card_home_page {
    grid-row: auto/span 1;
    grid-column: auto/span 1;
    background-color: white;
    box-shadow: 1px 3px 3px rgba(0, 10, 20, 0.06);
    border-radius: 25px;
}

.card_home_page h1,
.card_home_page h2,
.card_home_page h3,
.card_home_page h4,
.card_home_page p {
    margin-top: 0;
    font-weight: normal;
}

.card__image_home_page {
    height: 100%;
    max-height: 100%;
    width: 100%;
    display: flex;
    border-radius: 25px;
}

.card__image_home_page img {
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 25px;
}

.card__side-by-side {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
}

.card__side-by-side--m {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.card__side-by-side--m img {
    min-height: auto;
}

.card__content_home_page {
    padding: 1.6rem;
}

.card--featured {
    grid-row: auto/span 3;
    grid-column: auto/span 2;
}

.card--2x {
    grid-row: auto/span 2;
    grid-column: auto/span 2;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #2e2c2c;
}

.card--2x-header-text{
    text-align: center;
    font-family: "Ubuntu", serif;
    font-weight: 400;
    font-size: 50px;
    animation: fadeInX 0.5s ease-in-out;
    margin-bottom: 40px;
}

.card--2x-body-text {
    color: lightgray;
    font-family: "Ubuntu", serif;
    font-size: 17px;
}

.gradient_text {
    font-size: 50px;
    font-weight: 700;
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    background-clip: text;
    color: transparent;
}

@keyframes fadeInY {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card--vertical {
    grid-row: auto/span 2;
}

.card--horizontal {
    grid-column: auto/span 2;
    background-color: #2e2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 25px;
    padding: 30px;
}

.card--frameless {
    background-color: transparent;
    box-shadow: none;
}

.padding-large {
    padding: 3.2rem;
}

.padding-large--l {
    padding: 1.6rem;
}

.scroll_icon_container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #2e2c2c;
}

.scroll_icon_container p {
    margin: 20px;
    text-align: center;
    font-family: "Ubuntu", serif;
    color: lightgray;
    font-size: 15px;
}

.text_container_home_page {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2e2c2c;
    padding: 35px;
}

.text_container_home_page p{
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    text-align: center;
    animation: fadeInY 0.5s ease-in-out;
}

@keyframes fadeInX {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 836px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
    }

    .card {
        min-height: 10.8rem;
    }
}

@media (min-width: 627px) {
    .grid-container {
        grid-gap: 0.7rem;
    }
}

@media (min-width: 836px) {
    .padding-large--l {
        padding: 3.2rem;
    }
}

@media (max-width: 500px) {
    .page_1 {
        height: 110vh;
    }
    .card--2x-header-text {
        font-size: 34px;
    }
    .card--2x-body-text {
        font-size: 16card--2xpx;
    }
}

.scroller_images_icon{
    width: 80px;
    height: auto;
}