.hero-section {
    margin-top: 34px;
}
.hero-section img {
    max-width: 100%;
    display: inline-block;
}
.hero-section .container-fluid {
    position: relative;
}
.hero-section .mobile-title {
    display: none;
}
.hero-section .mobile-title h1 {
    margin: 14px 0 32px;
}
.hero-section .hero-container {
    display: flex;
    gap: 20px;
}
.hero-section .hero-container > div:first-child {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}
.hero-section .hero-container > div:last-child {
    flex: 2;
}
.hero-section .hero-container > div > div {
    margin-bottom: 20px;
}
.hero-section .hero-container > div > div:last-child {
    margin-bottom: 0;
}
.hero-section .hero-container .img {
    text-align: right;
}
.hero-section .hero-container .img img {
    width: 100%;
    object-fit: cover;
}
.hero-section .img-sm {
    padding-left: 30%;
}

.hero-section .hero-container .mascot-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: auto;
    margin-bottom: -5px !important;
}

.hero-section .caption-green {
    font-family: var(--f-looped);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: var(--c-bkg);
}
.hero-section .caption-green a {
    font-family: var(--f-montserrat);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    background: linear-gradient(0deg, rgba(14, 156, 81, 0.8), rgba(14, 156, 81, 0.8)),
        linear-gradient(273.08deg, rgba(14, 156, 81, 0.2) 0%, rgba(148, 213, 36, 0.2) 98.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.hero-section .caption-green a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    /* background-color: rgba(14, 156, 81, 0.8);  */
    background: linear-gradient(0deg, rgba(14, 156, 81, 0.8), rgba(14, 156, 81, 0.8)),
        linear-gradient(273.08deg, rgba(14, 156, 81, 0.2) 0%, rgba(148, 213, 36, 0.2) 98.18%);
}
.hero-section .hero-container .form-container {
    display: flex;
    gap: 20px;
}
.hero-section .hero-container .form-container > div {
    /* flex: 1; */
}
.hero-section .hero-container .form-container .form-calculator {
    /* margin-bottom: 60px; */
}
.hero-section .hero-container .desktop-title {
    display: block;
}
.hero-section .hero-container h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-section {
        margin-bottom: 20px;
    }
    .hero-section .mobile-title {
        display: block;
    }
    .hero-section .hero-container {
        gap: 8px;
    }
    .hero-section .hero-container > div > div {
        margin-bottom: 8px;
    }
    .hero-section .hero-container > div:last-child {
        flex: 1.3;
    }
    .hero-section .hero-container .form-container {
        display: block;
    }
    .hero-section .caption-green {
        max-width: 280px;
        margin-top: 8px;
    }
}
@media (max-width: 576px) {
    .hero-section .hero-container .img-1 {
        min-height: 115px;
    }
    .hero-section .hero-container .img-2 {
        min-height: 153px;
    }
    .hero-section .hero-container .img-3 {
        min-height: 200px;
    }
    .hero-section .hero-container .form-container > div:first-child {
        min-height: 258px;
        position: relative;
    }
    .hero-section .hero-container .form-calculator {
        position: absolute;
        right: 0;
    }
}
/********************************
******** FORM Calculator ********
*********************************/
.form-calculator {
    width: 313px;
    box-shadow: 0px 4px 8px 0px #00000026;
    background: linear-gradient(273.08deg, rgba(218, 158, 11, 0.2) 0%, rgba(255, 207, 88, 0.2) 98.18%),
        linear-gradient(0deg, var(--c-bkg), var(--c-bkg));
    /* background: linear-gradient(0deg, rgba(14, 156, 81, 0.8), rgba(14, 156, 81, 0.8)),
        linear-gradient(273.08deg, rgba(218, 158, 11, 0.2) 0%, rgba(255, 207, 88, 0.2) 98.18%); */

    border-radius: 2px 32px 2px 32px;
    padding: 16px 24px;
}
.form-calculator .form > div {
    margin-bottom: 12px;
}
.form-calculator .title {
    color: #fff;
    font-family: var(--f-montserrat);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

@media (max-width: 768px) {
    .form-calculator {
        width: 280px;
    }
}
