@import url(main.css);
body {
    background-color: #161616;
}

.fullscreen {
    background-color: transparent !important;
    /* background-color: #161616; */
}

.hero-container {
    width: 100%;
    height: 100%;
}

.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.hero-main-text {
    color: var(--c-text-inv);
    margin: 0 auto;
    text-align: left;
    max-width: 80vw;
}

.hero-main-text-container {
    max-width: 35%;
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    text-shadow: 2px 2px 32px rgba(0, 0, 0, 1);
}

.hero-main-text-container h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-main-text-container h1 span {
    color: var(--c-theme-lighter);
}

.hero-main-text p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-main-text p span {
    font-weight: 600;
    color: var(--c-theme-lighter);
}

.hero-buttons {
    display: inline-block;
}

.hero-buttons .btn-default-white {
    margin-left: 12px;
}

.home-section-1 {
    position: relative;
    z-index: 3;
    background-color: var(--c-background-section);
}

.home-section-1 .section-content {
    padding-bottom: calc(var(--general-padding) * 2.5);
}

.features-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.features-card {
    width: 30%;
    padding: var(--general-padding);
    border: 2px solid var(--c-background-section-dim);
    border-radius: 4px;
    transition: .3s ease;
}

.features-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

.features-card-themed {
    background-color: var(--c-theme-darker);
    color: var(--c-text-inv);
    border: 2px solid transparent;
}

.features-card-icon {
    font-size: 5.2rem;
}

.features-card-icon:not(.features-card-icon-themed) {
    color: var(--c-theme-main);
}

.features-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.features-card-desc {
    font-size: 1.05rem;
    line-height: 1.25;
}

.home-section-2 {
    position: relative;
    z-index: 3;
    background-color: var(--c-background-section);
}

.home-section-2 .section-content {
    padding-bottom: calc(var(--general-padding) * 2.5);
}

.hiw-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hiw-photo {
    width: 50%;
}

.hiw-photo img {
    width: 90%;
}

.hiw-content {
    width: 48%;
}

.hiw-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--general-padding);
}

.hiw-title span {
    color: var(--c-theme-main);
}

.hiw-desc p {
    font-weight: 500;
}

.hiw-desc ul {
    margin: 20px 0px;
}

.hiw-desc ul li {
    line-height: 1.4rem;
    font-size: 400;
}

.hiw-desc ul li:not(:last-child) {
    margin-bottom: 20px;
}

.hiw-desc ul li strong {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--c-theme-main);
}

.hiw-desc ul li span {
    font-weight: 600;
}

.hiw-cta {
    margin-top: var(--general-padding);
}

.home-section-4 {
    position: relative;
    z-index: 3;
    background-color: var(--c-background-dark);
}

.home-section-4 .section-content {
    padding-bottom: calc(var(--general-padding) * 2.5);
}

.reviews-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews-flex a {
    width: 30%;
    transition: .3s ease;
}

.home-section-5 {
    position: relative;
    z-index: 3;
    background-color: var(--c-background-section);
}

.home-section-5 .section-content {
    padding: calc(var(--general-padding) * 2.5) 0px;
    text-align: center;
    max-width: 70%;
    margin: 0px auto;
}

.cta h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--c-text-main);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c-text-dim);
    line-height: 1.5;
}

.cta .btn-default {
    margin-top: var(--general-padding);
}

@media only screen and (min-width: 1200px) {
    .features-card:hover {
        border: 2px solid transparent;
        box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.1);
        transform: scale(1.02);
    }
    .reviews-flex a:hover {
        transform: scale(1.02);
    }
}

@media only screen and (max-width: 1800px) {
    .hero-main-text-container h1 {
        font-size: 3.6rem;
    }
}

@media only screen and (max-width: 1200px) {
    .hero-main-text {
        max-width: 90vw;
    }
    .hero-main-text-container h1 {
        font-size: 3rem;
    }
    .features-flex {
        padding: 0px var(--general-padding);
        gap: var(--general-padding);
        flex-wrap: wrap;
    }
    .features-card {
        width: calc(100% / 3 - var(--general-padding));
    }
    .features-card-content {
        min-height: 200px;
    }
    .features-card-icon {
        font-size: 3.4rem;
    }
    .features-card-title {
        font-size: 1.4rem;
    }
    .hiw-flex {
        padding: 0px var(--general-padding);
    }
    .hiw-photo {
        width: 40%;
    }
    .hiw-content {
        width: 60%;
    }
    .reviews-flex {
        padding: 0px var(--general-padding);
    }
    .reviews-flex a {
        width: 32%;
    }
    .reviews-flex a img {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .hero-main-text {
        max-width: 100vw;
    }
    .hero-main-text-container {
        max-width: none;
        top: 25%;
        padding: 0px 20px;
    }
    .hero-main-text-container h1 {
        font-size: 2.6rem;
    }
    .hero-buttons {
        text-align: center;
    }
    .hero-buttons .btn-default-white {
        margin-left: 0px;
        margin-top: 12px;
    }
    .features-flex {
        flex-direction: column;
    }
    .features-card {
        width: auto;
    }
    .hiw-flex {
        flex-direction: column;
    }
    .hiw-photo,
    .hiw-photo img,
    .hiw-content {
        width: 100%;
    }
    .hiw-cta {
        text-align: center;
    }
    .reviews-flex {
        flex-direction: column;
        gap: var(--general-padding);
    }
    .reviews-flex a {
        width: 85%;
    }
}