@import url("main.inc.css");

/* Styles specific for home.inc.php */

/*
This stylesheet handles styles specific for home.inc.php.
It is included by index.php.


***************************
** Begin Default Styling **
*/

#home .hero {
    padding-bottom: 625px;
}

#home .hero .arrow {
    height: 600px;
    bottom: 0;
    left: 0;
}

#home .content .cta-container {
    text-align: center;
}

#home .contact-form {
    margin-top: 216px;
    position: relative;
}

#home .contact-form .arrow {
    height: 192px;
    top: -192px;
    left: 0;
}

#home .slide-deck-container {
    max-width: 768px;
    margin-top: 96px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 192px;
    padding-bottom: 192px;
    padding-left: 96px;
    padding-right: 96px;
    border: var(--border);
    border-radius: var(--borderRadius);
}

#home #content-2 {
    margin-top: 476px;
    position: relative;
}

#home #content-2 .arrow {
    height: 417px;
    top: -441px;
    right: -10%;
}

#home .reviews {
    margin-top: 384px;
    position: relative;
}

#home .reviews .arrow {
    height: 360px;
    top: -360px;
    left: 0;
}

#home .review {
    background-color: var(--color3);
    padding-top: 192px;
    padding-bottom: 192px;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
    border-radius: var(--borderRadius);
}

#home .review .sig::before {
    content: "-";
    margin-right: 9.6px;
}

#home .review em {
    color: var(--color5);
    font-family: var(--specialFont);
    font-size: 275%;
    position: absolute;
    bottom: -24px;
    right: -24px;
    transform: rotate(-30deg);
}

/* Review carousel control styling */

#home .controls {
    width: 240px;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

#home .prev-btn, #home .next-btn {
    background-color: unset;
    width: 96px;
    height: 37px;
    border: none;
    position: absolute;
    top: 0;
}

#home .prev-btn {
    left: 0;
}

#home .next-btn {
    right: 0;
}

#home .prev-btn img, #home .next-btn img {
    position: absolute;
    top: 0;
    left: 0;
}

#home .prev-btn img:first-child, #home .next-btn img:first-child {
    z-index: 2;
}

#home .prev-btn:hover img:first-child, #home .prev-btn:focus img:first-child, #home .next-btn:hover img:first-child, #home .next-btn:focus img:first-child {
    opacity: 0;
    transition: var(--transition);
}

/* End review carousel control styling */

#home .offer {
    text-align: center;
    margin-top: 384px;
}


/*
** End Default Styling **
*************************
*/

@media screen and (min-width: 900px) {

    #home .contact-form {
        margin-top: 112.5px;
        position: relative;
    }
    
    #home .contact-form .arrow {
        top: -92px;
        left: -138px;
    }

    /* Review carousel control styling */

    #home .controls {
        width: unset;
        margin-top: unset;
        margin-left: unset;
        margin-right: unset;
        position: unset;
    }

    #home .prev-btn, #home .next-btn {
        top: calc(50% + 18.5px);
    }

    #home .prev-btn {
        left: -144px;
    }
    
    #home .next-btn {
        right: -144px;
    }


} /* End 900px */