:root {
    --green-10: #00e5d2;
    --green-20: #00c8b8;
    --green-30: #00ac9e;
    --green-40: #008f83;
    --green-50: #007269;
    --green-60: #00564f;
    --green-70: #003935;
    --green-80: #001d1a;
    --gold: #e6b567;
    --pink: #ffbdbd;
}

p {
    margin-bottom: 0;
}

.styled-text {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.container-padding {
    margin-top: 64px;
    margin-bottom: 64px;
}

body {
    background-color: var(--green-70);
    color: #fff;
    font-family: 'Inter', sans-serif;


}

.btn {
    border-radius: 50px;
}

.btn-lg {
    padding: 8px 24px;
}

.main-hero {
    height: 85vh;
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero {
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero .row {
    height: 100%;
}

.hero .hero-col {
    display: flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--green-40);
    border-color: var(--green-40);
}

.btn-primary:hover {
    background-color: var(--green-50);
    border-color: var(--green-50);
}

.btn-outline-primary {
    color: var(--green-10);
    border-color: var(--green-10);
}

.btn-outline-primary:hover {
    background-color: var(--green-50);
    border-color: var(--green-50);
}

.feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 16px;
    text-align: center;
}

.feature img {
    width: 40px;
}

.feature .feature-title {
    margin-top: 16px;
    font-size: 22px;
}

.feature .feature-desc {
    margin-top: 8px;
    font-size: 16px;
    opacity: 0.6;
    font-weight: 300;
}

.form-hero {
    background-color: var(--green-60);
    padding: 64px;
    margin-top: 96px;
    margin-bottom: 96px;
}

.form-hero li,
.free-list li {
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 8px;
}



.form-hero a {
    font-size: 26px;
}

footer {
    text-align: center;
    margin-top: 76px;
    background-color: var(--green-80);
}

.navbar-brand {
    font-size: 22px;
}

.nav-item {
    padding-right: 16px;
}

.hero-image {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0px 0px 24px -10px rgba(211, 221, 220, 0.3);
}

.hero-col .btn {
    font-size: 20px;
}

/* start tabs */
.tabs {
    padding: 64px 0px;
}

.tab-title {
    cursor: pointer;
    border-left: 4px solid rgba(86, 86, 86, 0.3);
}

.tab-title.active {
    border-left: 4px solid var(--green-10);
}

.tab-title p:first-child {
    font-size: 20px;
}

.tab-title p:last-child {
    font-weight: 100;
    font-size: 16px;
}

.tab-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tab-content {
    opacity: 0;
    height: 0;
    transition: opacity 0.4s;
}

.tab-content.active {
    opacity: 1;
    height: auto;
}

.tab-content img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0px 0px 24px -10px rgba(211, 221, 220, 0.3);
}

/* end tabs */



.pro-hero .pro-btn-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Medium devices (landscape tablets, 767px and down) */
@media only screen and (max-width: 767px) {
    .font-h1 {
        font-size: 30px;
    }

    .container-padding {
        margin-top: 30px;
    }



    .form-hero li,
    .free-list li {
        font-size: 14px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */


@media only screen and (min-width: 992px) {
    .font-h1 {
        font-size: 52px;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .font-h1 {
        font-size: 62px;
    }
}

@media only screen and (max-width: 992px) {
    .secondary-hero .secondary-hero-desc {
        margin-top: 16px;
    }

    .form-hero {
        margin-top: 96px;
        margin-bottom: 96px;
    }

    .form-hero a {
        font-size: 26px;
    }

    .tabs {
        padding-bottom: 0;
    }

    .tab-content {
        padding: 16px;
    }

    .tabs>.row {
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 576px) {
    .hero {
        padding-top: 16px;
        padding-bottom: 32px;
    }



    .hero:not(.secondary-hero)>.row {
        flex-direction: column-reverse;
    }

    .hero-desc>div {
        width: 100%;
    }

    .hero-desc {
        margin-top: 32px;
        text-align: center;
    }

    .feature {
        padding: 32px;
    }

    .form-hero a {
        font-size: 22px;
    }
}