#section-hero {
    padding-top: 150px;
    position: relative;
    padding-bottom: 120px;
    /* overflow: hidden; */
    margin-bottom: 100px;
}

#section-hero h2 {
    font-size: 70px;
    line-height: 80px;
    margin: 0;
}

#section-hero::before {
    content: '';
    border-radius: 100%;
    position: absolute;
    background-color: var(--color-secondary);
    left: -50vw;
    right: -50vw;
    top: -100px;
    bottom: 150px;
}
@media only screen and (max-width: 1200px) {
    #section-hero::before {
        left: -75vw;
        right: -75vw;
    }
}
@media only screen and (max-width: 900px) {
    #section-hero::before {
        left: -100vw;
        right: -100vw;
    }
}
@media only screen and (max-width: 600px) {
    #section-hero::before {
        left: -150vw;
        right: -150vw;
    }
}

#section-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0 0;
    grid-template-areas:
        "content side"
        "form side"
    ;
}

#section-hero-content {
    grid-area: content;
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

#section-hero-logo-3d {
    position: relative;
    grid-area: side;
    margin: -80px 0 -120px 0;
    pointer-events: none;
}

#section-hero-logo-3d div {
    position: absolute;
    width: calc(100% + 400px);
    height: 100%;
    margin-left: -200px;
}

#section-hero-logo-3d div canvas {
    position: absolute;
}

#section-hero-quicksearch {
    grid-area: form;
    align-self: flex-end;
}

#section-hero-quicksearch-title {
    font-family: var(--font-text);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 30px;
}

#section-hero-quicksearch-form {
    margin: 0;
    background-color: var(--color-white);
    border-radius: 90px;
    box-shadow: var(--shadow);
    padding: 0 20px 0 50px;
    display: flex;
    align-items: center;
}

#section-hero-quicksearch-form .form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#section-hero-quicksearch-form .form-col:not(:last-of-type){
    flex-grow: 1;
}

#section-hero-quicksearch-form .form-col + .form-col {
    margin-left: 30px;
}

#section-hero-quicksearch-form label {
    font-size: 14px;
    font-family: var(--font-text);
    font-weight: 700;
}

#section-hero-quicksearch-form input {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    border-bottom: 2px solid var(--color-primary);
    padding: 10px 10px 10px 0;
    font-size: 16px;
    font-family: var(--font-text);
    outline: none;
    border-radius: 0;
}
#section-hero-quicksearch-form button {
    margin: 20px 0;
}

#section-hero-quicksearch-form input::-webkit-input-placeholder {
    color: var(--color-text);
    font-family: var(--font-text);
    font-weight: 300;
}

#section-hero-quicksearch-form input:-ms-input-placeholder {
    color: var(--color-text);
}

#section-hero-quicksearch-form input::placeholder {
    color: var(--color-text);
}

@media only screen and (max-width: 1280px) {
    #section-hero-inner {
        grid-template-columns: 100%;
        grid-template-areas:
            "side"
            "content"
            "form"
        ;
    }

    #section-hero-logo-3d {
        margin: -20px 0 0 0;
        min-height: 100px;
        max-height: 300px;
        height: 65vh;
        width: 100%;
    }

    #section-hero {
        padding-top: 50px;
    }

    #section-hero h2 {
        font-size: 26px;
        line-height: 30px;
    }

    #section-hero-content {
        font-size: 16px;
        line-height: 26px;
        padding-bottom: 30px;
    }

    #section-hero-quicksearch-title {
        font-size: 18px;
        line-height: 30px;
    }

    #section-hero-quicksearch-form {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 25px;
        margin-right: 20px;
    }

    #section-hero-quicksearch-form .form-col {
        width: calc(100% - 20px);
    }

    #section-hero-quicksearch-form .form-col + .form-col {
        margin-left: 0;
        margin-top: 20px;
    }

    #section-hero-quicksearch-form .form-col:last-of-type {
        position: absolute;
        right: -25px;
        top: 50%;
        width: auto;
        transform: translateY(-50%);
        margin-top: 0;
    }

    #section-hero-quicksearch-form button {
        margin: 0;
    }
}


#section-hero-ctas {
    position: relative;
    display: flex;
    z-index: 2;
    margin-bottom: -100px;
}

.section-hero-ctas-item {
    width: 33.33%;

    background: rgba(202, 181, 255, 0.3);
    box-shadow: 30px 33px 40px #02144C26;

    border-radius: 20px;
    backdrop-filter: blur(18px);

    padding: 40px;
    display: flex;
    flex-direction: column;
}

.section-hero-ctas-item:not(:last-of-type){
    margin-right: 30px;
}

.section-hero-ctas-item-title {
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 20px;
}

.section-hero-ctas-item-text {
    font-size: 16px;
    list-style-image: 30px;
    flex-grow: 1;
}

.section-hero-ctas-item-button {
    display: flex;
    margin-top: 40px;
}

.section-hero-ctas-item-button a {
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    #section-hero {
        margin-bottom: 50px;
    }
    #section-hero-ctas {
        flex-direction: column;
    }
    .section-hero-ctas-item {
        width: 100%;
        margin-bottom: 30px;
        padding: 20px;
    }
    .section-hero-ctas-item-text {
        font-size: 14px;
    }
}

p.subtitle {
    font-size: 24px;
    margin: 10px 0 10px 0;
    font-weight: bold;
}
.title-container.lightning-places h2 {
    font-family: var(--font-light);
    font-weight: 300;
}

h2.lightning-places strong {
    font-weight: 600;
}

#section-hero .title-container-inner {
    display: inline-flex;
    flex-direction: column;
}

#section-hero .title-container {
    display: flex;
    align-items: center;
}

#section-hero .title-container.lightning-places::before {
    content: '';
    display: block;
    background-image: url(../../images/logo.svg);
    background-repeat: no-repeat;
    height: 96px;
    width: 96px;
    transform: translateY(-25%);
}