.hero {
    font-size: 1.1rem;
    min-height: 80vh !important;
    max-height: 80vh !important;
}

.hero > div {
    width: 100%;
}

.hero.template-1 {
    gap: 4rem;
}
.hero.template-1 > div {
    min-width: 50%;
    max-width: 50%;
}

.template-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 5rem;
}

.template-1 > div {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.template-1 > div > .btn-1 {
    margin-top: 3rem;
}

.template-1 .descr {
    margin-top: .5rem;
}

.hero .template-1__img {
    max-height: 100%;
    aspect-ratio: 9 / 13;
}

.template-1__equal > * {
    justify-content: space-between;
    min-width: 44%;
    max-width: 44%;
    gap: 5rem;
}

.template-1__equal > .template-1__img {
    max-height: 80vh !important;
    min-width: auto;

    margin-right: auto;
    margin-left: auto;
}

.template-2 {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 3rem;
}

.template-2__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: .4rem;
}

.template-2__head > * {
    text-align: center;
}

.template-2__list {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}

.quote__list {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.template-2__card, .quote {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: white;

    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;

    font-size: 1rem;
    height: 100%;

    box-shadow: var(--shadow);
}

.quote {
    width: 100%;

    font-size: .85rem;
    padding: 1.25rem 1.25rem;

    gap: 1.5rem;
}

.quote__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;

    gap: 1rem;
}

.quote > p {
    font-weight: 600;
    color: rgba(0,0,0, 60%);
}

.quote__symbol {
    width: 3.25rem;
}

.quote__stars {
    height: 1.1rem;
}

.quote__who {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;

    margin-top: auto;
}

.quote__who > img {
    width: 2.75rem;
}

.quote__who > div {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    font-size: .9rem;
}

.quote__who p {
    color: gray;
    font-weight: 500;
}

.quote__who h3 {
    font-weight: bold;
}

.template-2__card {
    gap: 1rem;
    width: 100%;

    padding-bottom: 2rem;
}

.template-2__card > div {
    display: flex;
    align-items: center;
    height: 100%;
    width: 95%;
    font-size: .9em;
}

.template-2__card > * {
    text-align: center;
}

.template-2__card > img {
    width: 70%;
    aspect-ratio: 1/1;
}

.template-3 {
    display: flex;
    max-height: 80vh !important;

    align-self: center;

    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;

    background-color: var(--clr-1);
    background-image: url("../assets/images/background.svg");
    background-size: 15rem;

    color: white;

    box-shadow: var(--shadow);
    font-size: 2rem;
}

.template-3 > img {
    flex: 9;
    height: auto;

    border-radius: var(--border-radius);
    object-fit: cover;
}

.template-3__main, .template-3__head, .template-3__buttons, .template-3__buttons__head {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
}

.template-3__main, .template-3__head {
    text-align: center;
}

.template-3__main {
    flex: 6;
    justify-content: space-between;
    height: 100%;
    font-size: 1rem;
    padding: 2rem 2%;
}
.template-3__head {
    gap: .25rem;
    padding-top: 1rem;
}
.template-3__head .title-1 {
    font-size: 1.8rem;
}
.template-3__head .title-special {
    color: inherit;
    font-weight: 400;
    font-size: 1.1rem;
}

.template-3__buttons__head, .template-3__buttons {
    display: flex;
    flex-direction: column;
}

.template-3__buttons {
    gap: 2rem;
    padding: 0 .25rem;
}

.template-3__buttons__head {
    gap: .5rem;
}

.template-3__buttons a {
    border: 2px solid white;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: .8rem;
    width: 100%;
}

.template-3__buttons > a {
    background-color: white;

    color: black;
}

@media screen and (max-width: 836px) {
    .main {
        gap: 8rem !important;
    }
    .body {
        gap: 1rem !important;
    }
    .btn-1 {
        width: 100% !important;
        text-align: center;
    }
    .template-1 > .title-1, .template-1 >.title-special {
        align-self: flex-start;
    }
    .template-1 {
        flex-direction: column;
        align-items: center;
    }
    .template-1 .btn-1 {
        margin-top: 1rem !important;
        align-self: center;
    }
    .template-1__img {
        width: auto;
    }
    .hero {
        flex-direction: column-reverse;
        justify-content: center;
    }
    .hero.template-1 {
        gap: .5rem;
        min-height: initial !important;
        max-height: initial !important;
    }
    .hero.template-1 > div {
        min-width: initial;
        max-width: initial;
    }

    .hero .template-1__img {
        height: 40vh;
        max-height: initial;
        aspect-ratio: initial;
    }

    .template-1__equal {
        gap: 2rem;
    }

    .template-1__equal > * {
        min-width: initial;
        max-width: initial;
    }

    .template-1__equal > div {
        align-items: center;
    }

    .template-1__equal > div > .btn-1 {
        margin-top: 1rem;
    }


    .template-1__equal > .template-1__img {
        max-height: 40vh !important;
    }

    .template-2__list, .quote__list {
        flex-direction: column;
        align-items: center;
    }

    .template-2 {
        gap: 2rem
    }

    .template-2__list {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .template-2__card {
        box-shadow: none;
        border: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .template-2__card > img {
        width: 30%;
    }

    .template-2__card > .title-3, .template-2__card > div {
        width: 70%;
    }

    .quote {
        box-shadow: none;
    }

    .template-3 {
        padding: 1.25rem .75rem;
        width: 100%;
        background-image: none;
    }

    .template-3 > img {
        display: none;
    }

    .template-3__main {
        padding: 0;
    }

    .template-3__head {
        padding: 0;
    }
}