.templateOne {
    @include flex-direction(column-reverse);
    @include flex-align(center, space-between);
    gap: 2.4rem;
    padding: 1rem 1.6rem;
    max-width: var(--main-container-max);
    margin: 0 auto;

    @include min(tablet) {
        @include flex-direction(row);
        gap: 5rem;
    }

    @include min(desktop) {
        gap: 15.2rem;
    }
}

.image {
    border-radius: 1.6rem;
    height: 343px;
        object-fit: cover;

    @include min(tablet) {
        max-width: 50%;
        height: auto;
        object-fit: none;
    }

    @include min(laptop) {
        min-width: 35.6rem;
        max-width: 35.6rem;
    }
        
    
}

.headerContainer {
    justify-content: center;
    @include flex-direction(column);

    @include min(tablet) {
        align-items: flex-start;
    }

    h1 {
        font-weight: 700;
        font-size: 2.8rem;
        line-height: 3.8rem;
        text-transform: capitalize;
        color: #1c1a28;
        margin: 0 0 2.4rem;

        @include min(tablet) {
            font-size: 3.2rem;
            line-height: 4.2rem;
        }
    }

    > a {
        display: flex !important;
        gap: 1.1rem;
        background-color: #1C1A28 !important;
        color: #ffffff !important;
        font-size: 18px;
        line-height: 20px;
        padding: 2rem 2.4rem !important;
        border-radius: 12px !important;
        border: none !important;
    }
}

.description {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2.7rem;
    text-align: justify;
    color: #3e3c47;
    padding-bottom: 2.4rem;
}

.cta {
    display: flex;
    gap: 1.1rem;
}

.templateOneContainer {
    @include flex-direction(column);  
    gap: 6.4rem;
}