
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-display: swap;
    /* You can add more src with other formats if available, like woff2, woff, eot, svg */
}

* {
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h3 {
    font-size: 24px;
}

ul {
    padding: 0 20px;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-size: 18px;
    line-height: 1.5;
}

body {
    font-family: 'Open Sans', sans-serif;
}

.spacing {
    height: 77px;
}

.header {
    transition: 0.3s;
    background-color: var(--color-transparent);
    box-shadow: 5px 5px 25px rgba(0,0,0,0.3);
    color: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    overflow: hidden;
}

.header .header-logo {
    margin: 0;
    font-size: 21px;
    text-transform: uppercase;
    line-height: 47px;
    font-weight: bold;
}

.header-menu {
}

.header-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu ul li {
    display: inline;
}

.header-menu ul li a {
    transition: 0.3s;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.header-menu ul li a:hover {
    background-color: var(--color-dark);
}

.header .header-phone {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 5px;
    padding: 10px 15px;
    display: inline-block;
}

.header .header-phone:hover {
    background-color: var(--color-dark);
}

.header .header-phone svg {
    position: relative;
    top: 3px;
    margin-right: 5px;
}




.banner {
    background-position: 0 70%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 350px;
    padding-bottom: 25px;
}

.banner .banner-body {
    background-color: rgba(0,0,0,0.3);
    box-shadow: 0px 0px 25px rgba(0,0,0,0.3);
    display: inline-block;
    padding: 15px;
    border-radius: 25px;
}

.banner h1 {
    font-size: 36px;
    color: #fff;
    margin: 0;
}

.banner p {
    color: #fff;
    margin: 0;
}



.product-grid .product {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
}

.product-grid .product .product-title {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 0;
}
.product-grid .product .product-image {
    max-height: 200px;
}

.product-grid .product-body {
    display: inline-block;
    background-color: #fafafa;
    min-width: 320px;
    padding: 25px;
    box-sizing: border-box;
    border-radius: 25px;
}

.section .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.button {
    background-color: var(--color);
    padding: 15px 25px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
    text-align: center;
}

.button:hover {
    background-color: var(--color-dark);
}





.category-grid {
}

.category-grid .category .category-image {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.category-grid .category .category-title {
    font-size: 32px;
    margin-bottom: 25px;
}


.category-body {
    position: relative;
    display: table;
}

.category-content {
    display: table-cell;
    vertical-align: middle;
}






.section.faq {
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transition: 0.3s;
}


.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    font-size: 24px;
    padding-right: 24px;
}

.faq-question:before {
    content: "\25bc";
    color: #000;
    float: right;
    font-size: 18px;
}

.faq-question h3 {
    margin: 0;
    margin-bottom: 15px;
}

.faq-item.open .faq-question:before {
    content: "\25B2";
}

.faq-answer {
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-container {
}

.faq-content {
    background-color: var(--color-light);
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 25px;
    margin-bottom: 25px;
}


.footer {
    color: #fff;
    background-color: var(--color-transparent);
    padding: 25px 0;
}


.text img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.text-green {
    color: var(--color-dark);
}

.text-bold {
    font-weight: bold;
}

.footer .footer-logo {
    margin: 0;
    font-size: 21px;
    text-transform: uppercase;
}

.footer .footer-phone svg {
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.footer .footer-phone {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}










.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; */
    background-color: rgba(0,0,0,0.7);
}

.modal__content {
    /*
    margin: 15% auto;
    padding: 20px;

    width: 80%; */
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;

    /* border: 1px solid #888; */
}

.modal__body{
    background-color: #fefefe;
    padding: 30px;
    position: relative;
    border-radius: 25px;
}

.modal__close {
    transition: 0.3s;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
    line-height: 1;
}

.modal__close:hover {
    color: #ccc;
}

.modal .form {
    box-shadow: none;
    padding: 0;
}

.form {
    display: inline-block;
    padding: 25px;
    background-color: #fff;
    border-radius: 25px;
    text-align: left;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

.form .button {
    display: block;
}

.form__title {
    margin: 0;
    margin-bottom: 25px;
}

.form__item {
    margin-bottom: 25px;
}

.form__input {
    border: 1px solid var(--color);
    padding: 10px 15px;
    font-size: 18px;
    outline: none;
}


.form__input.error {
    border: 1px solid #f77171;
}

.form__input:focus {
    border: 1px solid var(--color);
    background-color: #607b660d;
}

.form__label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
}

.form__contact_information {
    text-align: center;
    margin: 15px 0 0 0;
}

.form__contact_information a {
    color: var(--color-dark);
    font-weight: bold;
    text-decoration: none;
}





.header-burger {
    display: none;
}

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 3px;
}

#nav-icon1 span:nth-child(2) {
    top: 13px;
}

#nav-icon1 span:nth-child(3) {
    top: 23px;
}

#nav-icon1.open span:nth-child(1) {
    top: 14px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 14px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}







.testimonials {
    padding: 25px 0;
    background-color: var(--color-light);
}


.testimonials h2 {
    margin-top: 0;
}

.testimonials .testimonial {
    margin-bottom: 25px;
}


.testimonials .testimonial .testimonial-body svg {
    float: left;
    width: 36px;
    height: 36px;
    margin-right: 15px;
}

.testimonials .testimonial .testimonial-body {
    display: inline-block;
    padding: 25px;
    background-color: #fff;
    border-radius: 25px;
    text-align: left;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonials .testimonial-body .name {
    margin: 0;
    margin-bottom: 15px;
}



.copyright {
    border-top: 1px solid #fff;
    padding-top: 25px;
}

.copyright p {
    text-align: center;
    margin: 0;
}









.location-list {
    margin: 0;
    padding: 0;
}

.location-list li {
    list-style-type: none;
    margin-bottom: 15px;
}

.location-list li a {
    text-decoration: none;
}





.section.cta h2 {
    margin: 0;
    margin-bottom: 25px;
}
.section.cta {
    text-align: center;
    padding: 25px 0;
    background-color: var(--color-light);
}





@media (max-width: 767px) {



    .banner {
        padding-top: 150px;
    }

    .header {
        height: 68px;
    }

    .spacing {
        height: 68px;
    }

    .header .header-logo {
        line-height: 36px;
    }

    .header-menu ul li {
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }
    .header-menu ul li a {
        width: 100%;
        font-size: 18px;
    }
    .header-menu {
        margin-top: 15px;
    }

    .header .header-phone {
        text-align: center;
        background-color: #fff;
        color: #000;
        display: block;
        font-size: 18px;
    }


    .header-burger {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        margin: 20px;
        height: 28px;
        width: 28px;
        overflow: hidden;
    }

    .mobile-open {
        background-color: var(--color);
        height: 100%;
    }

    .header .header-phone svg {
        fill: #000000;
    }

    .category-body {
        margin-bottom: 25px;
    }

}
