:root {
    --darkgray: #1c1c1c;
    --yellow: #ffb80b;
    --green: #198754;
    --text: rgb(51, 51, 51);
}

/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');
body {
    /* font-family: 'Ubuntu', sans-serif !important; */
    font-family: 'Roboto', sans-serif;
    color: var(--text);
}

a {
    text-decoration: none!important;
}

main {
    margin-top: 56px;
    overflow-x: hidden;
}

.section {
    margin: 48px 0;
}

.navbar {
    background-color: var(--darkgray) !important;
    height: 56px;
}
.navbar-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-btn {
    background: white;
    border-radius: 32px;
    display: flex;
    align-items: center;
    color: #2ab5f6;
    gap: 8px;
    justify-content: space-between;
    width: max-content;
    height: 32px;
    padding: 2px;
    font-size: 14px;
}

.social-btn span {
    text-indent: 10px;
}

.social-btn img {
    height: 100%;
}



.navbar-logo a img {
    height: 35px;
}

.nav-link, .navbar-brand {
    color: white !important;
}

.btn-register .btn-register, .btn-login {
    margin: 0 2px;
}

.btn-register {
    background-color: --yellow;
    border: 0;
}

.btn-login {
    color: var(--yellow);
    border: 0;
    font-weight: bold;
}

.btn-login:hover {
    background-color: var(--green);
}

/* START splash screen section */

.splash_screen {
    position: relative;
    height: 90vh;
    width: 100%;
    background-color: gray;
    display: flex;
    background-image: url('../assets/section-splash_screen/bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .splash_screen {
        height: 40vh;
    }
}

@media (max-width: 576px) {
    .splash_screen {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .splash_screen {
        background-image: url('../assets/section-splash_screen/bg-mobile.webp');
    }
}

.splash_screen_wrapper {
    max-width: 50vw;
    align-self: flex-end;
    margin-left: auto;
    padding: 0;
    padding-right: 10vw;
    height: 85%;
}

@media (max-width:991px) {
    .splash_screen_wrapper {
        position: absolute;
        max-width: none;
        padding: 0px;
        margin: 0;
        height: auto;
        width: 100vw;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50px);
    }
}

.splash_screen_promotion {
    width: 100%;
    background-color: #27272700;
    display: flex;
    /* margin: 0 0 32px 0; */
}

.splash_screen_promotion img {
    width: 100%;
    object-fit: contain;
}

@media (max-width:991px) {
    .splash_screen_wrapper {
        max-width: 400px;
    }
}

@media (max-width:576px) {
    .splash_screen_wrapper {
        max-width: 320px;
    }
}

@media (max-width:380px) {
    .splash_screen_wrapper {
        max-width: 95%;
    }
}

.splash-screen_promotion_text {
    align-self: flex-end;
    padding: 16px;
    color: white;
    font-weight: 600;
    letter-spacing: .4px;
}

.splash_screen_content--mobile {
    display: none;
}

.splash_screen_content--mobile h1 {
    font-size: 28px;
    font-weight: 600;
}

.splash_screen_content--mobile a {
    justify-content: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    /* color: white !important; */
    padding: 10px 20px;
}

@media (max-width:768px) {
    .splash_screen_content--mobile h1 {
        font-size: 24px;
    }
    /* .splash_screen_content--mobile a {
        justify-content: left;
        font-size: 14px;
        font-weight: 600;
    } */
}

@media (max-width:991px) {
    .splash_screen_content--mobile {
        display: block;
        margin-top: 3vw;
        margin-bottom: 80px;
    }
    .splash_screen_content {
        display: none;
    }
}

@media (max-width:576px) {
    .splash_screen_content--mobile {
        margin-bottom: 50px;
    }
}

.splash_screen_content h1 {
    color: white;
    font-size: 3.5em;
    letter-spacing: 3px;
    font-weight: 800;
}

.splash_screen_content span {
    color: var(--yellow);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
}


.splash_screen_content .title span {
    color: var(--yellow);
    /* -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255, 255, 255); */
}

.splash_screen_content .subtitle {
    color: white;
}

.splash_screen_content a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    padding: 10px 20px;
    /* border: 2px solid var(--text); */
}

/* END splash screen section */

/* START About Section */

.section_about_content .title {
    font-size: 30px;
    font-weight: 700;
}

.section_about_content p {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width:768px) {
    .section_about_content .title {
        font-size: 22px;
        font-weight: 600;
    }
    .section_about_content p {
        font-size: 16px;
    }
}

.step_container {
    position: relative;
    display: flex;
    height: 100px;
    width: 300px;
    margin: 0 auto;
}

.step_container img {
    position: absolute;
    height: 150px;
    left: 50%;
    transform: translate(-80px, -70px);
    top: 0;
}

@media (max-width:991px) {
    .step_container {
        margin-bottom: 60px;
    }
}

.shape {
    width: 300px;
    height: 100px;
    background-color: rgba(248, 248, 248, 0.692);
    transform: skew(-35deg, 0deg);
    border-radius: 8px;
    position: absolute;
    z-index: -1;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, var(--yellow) 0px 0px 0px 2px;
}

.step_text {
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    width: 100%;
    color: var(--text)
}

@media (max-width:576px) {
    .step_container {
        width: 200px;
        height: 75px;
    }
    .shape {
        width: 200px;
        height: 75px;
    }
    .step_text {
        align-self: flex-end;
        margin: 0;
        font-weight: 600;
        font-size: 16px;
        margin-left: auto;
    }
}

/* END About Section */

/* START Tutorials Section */

.thumbnail {
    width: 100%;
    padding: 8px;
    height: 200px;
}

.thumbnail_video {
    background-color: red;
    height: 150px;
    width: 100%;
    border-radius: 4px;
}

/* END Tutorials Section */

/* START Featured Video Section */

.enviroments_content .caption {
    font-size: 0.8rem;
}

.environments_graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shape-container {
    height: 430px;
    width: 330px;
    background-color: gainsboro;
    border-radius: 8px 100px 8px 100px;
    position: relative;
}

.sal_card {
    position: absolute;
}

.sal_card * {
    margin: 0;
}

[data-card="one"], [data-card="two"] {
    background-color: #5C8D1D;
    border-radius: 4px;
    color: white;
    padding: 4px;
    left: -120px;
    padding: 8px;
}

[data-card="one"] {
    top: 10px;
}

[data-card="two"] {
    top: 60px;
}

[data-card="three"] {
    bottom: 60px;
    left: -120px;
    display: flex;
    flex-direction: column;
    background-color: #410447;
    width: 220px;
    height: 75px;
    padding: 8px;
    border-radius: 4px;
    color: white;
}

[data-card="four"] {
    bottom: 10px;
    background-color: green;
    width: 180px;
    color: white;
    font-size: 0.8rem;
    padding: 8px;
    overflow: hidden;
    border-radius: 4px;
    left: 0;
}

/* END Featured Video Section */