@import url(main.css);

body {
    background-color: var(--c-background-main);
}

.fullscreen {
    background-color: transparent !important;
    padding-top: var(--header-height);
}

.hero-container {
    width: 100%;
    height: var(--hero-section-height);
    position: relative;
}

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

.hero-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--hero-section-height);
    background-color: rgba(141, 53, 4, 1);
    background: linear-gradient(90deg, rgba(141, 53, 4, 1) 0%, rgba(243, 110, 34, 0.05) 100%);
}

.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(-50%);
    text-shadow: 2px 2px 32px rgba(0, 0, 0, 1);
}

.hero-main-text-container h1 {
    font-size: var(--fs-header);
    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;
    font-size: 1.25rem;
    font-weight: 500;
}

.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);
}

.featured-flex .featured-list-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(var(--general-padding) / 2);
}

.featured-card {
    background: var(--c-background-light);
    border: 1px solid var(--c-border-accent);
    border-radius: var(--general-border-radius);
    padding: var(--general-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--general-padding) / 2);
    transition: .2s ease;
}

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

.featured-card-title {
    font-weight: 700;
    font-size: var(--fs-content);
    line-height: 1.15;
    margin-bottom: 6px;
    color: var(--c-text-main);
}

.featured-card-desc {
    font-size: 0.9rem;
    line-height: 1.35;
    color: var(--c-text-dim);
}

.featured-card-see-more {
    margin-top: var(--general-padding);
    font-weight: 600;
    color: var(--c-theme-main);
}

.featured-see-all {
    margin: 24px auto 0px;
    display: table;
}

.featured-card-image {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--c-border-accent);
    background: #eee;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.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);
}

.scta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--general-padding);
}

.scta-photo {
    width: 50%;
}

.scta-photo img {
    width: 100%;
}

.scta-content {
    width: 50%;
}

.scta-title {
    font-size: var(--fs-section-title);
    font-weight: 700;
    margin-bottom: var(--general-padding);
}

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

.scta-desc p {
    font-size: var(--fs-content);
    font-weight: 500;
}

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

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

.center-image img {
    display: block;
    margin: 0px auto;
    width: 40%;
    transform: translateX(-5%);
}

.floating-space {
    position: relative;
}

.floating-element {
    position: absolute;
    max-width: 320px;
}

.floating-element i {
    font-size: var(--fs-content-strong);
    font-weight: 100;
    color: var(--c-text-inv);
    margin-bottom: 10px;
    background: var(--c-theme-main);
    border-radius: 50%;
    padding: 8px;
}

.floating-element-title {
    font-size: var(--fs-content-strong);
    font-weight: 700;
    margin-bottom: 10px;
}

.floating-element-desc {
    font-size: var(--fs-content);
    font-weight: 500;
}

.floating-element-1 {
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.floating-element-2 {
    top: 5%;
    left: 65%;
}

.floating-element-3 {
    top: 70%;
    left: 70%;
}

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

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

.info-block {
    width: 50%;
    font-weight: 500;
    font-size: var(--fs-content);
}

.info-block a {
    color: var(--c-theme-main);
}

@media only screen and (min-width: 1200px) {
    .featured-card:hover {
        border-bottom: 1px solid var(--c-theme-main);
        box-shadow: var(--small-shadow);
    }
}

@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 {
        max-width: 60%;
    }

    .hero-main-text-container h1 {
        font-size: 3rem;
    }

    .info-block {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .fullscreen {
        padding-top: var(--header-height) !important;
    }

    .hero-container {
        height: 500px !important;
    }

    .hero-container img {
        height: 500px !important;
    }

    .hero-container::before {
        height: 500px !important;
    }

    .hero-main-text {
        max-width: 100vw;
    }

    .hero-main-text-container {
        max-width: none;
        top: 50%;
        padding: 0px 20px;
    }

    .hero-main-text-container h1 {
        font-size: 2.6rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-buttons .btn-default {
        text-align: center;
    }

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

    .featured-flex .featured-list-content {
        grid-template-columns: 1fr;
    }

    .featured-card {
        width: auto;
    }

    .scta-flex {
        flex-direction: column;
    }

    .scta-photo,
    .scta-photo img,
    .scta-content {
        width: 100%;
    }

    .scta-cta {
        text-align: center;
    }

    .home-section-3 .container {
        padding: 0px;
    }

    .home-section-3 .floating-space {
        height: 70vh;
    }

    .home-section-3 .center-image {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

    .home-section-3 .center-image img {
        position: absolute;
        width: 70%;
        top: 50%;
        left: 55%;
        transform: translateY(-50%);
        overflow: hidden;
    }

    .floating-elements-wrap {
        padding: 0px 12px;
        width: 100%;
        height: 100%;
        transform: translateY(-100%);
    }

    .floating-elements {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .floating-element-1 {
        top: 10%;
        left: 15%;
        transform: translateY(-50%);
    }

    .floating-element-2 {
        top: 32%;
        left: 0%;
    }

    .floating-element-3 {
        top: 70%;
        left: 10%;
    }

    .home-section-4 .section-content {
        flex-direction: column;
        margin-bottom: calc(var(--general-padding) * 1.5);
    }
}