/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: "montserrat", sans-serif;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.come-in {
    transform: translateY(150px);
    animation: come-in 0.8s ease forwards;
}

.come-in:nth-child(odd) {
    animation-duration: 0.6s;
    /* So they look staggered */
}

@keyframes come-in {
    to {
        transform: translateY(0);
    }
}

/* end of global */

@media(min-width: 1366px) {
    .faq-container {
        width: 100%;
        margin: 50px 0;
    }
    .faq-item {
        position: relative;
        width: 30%;
        background: #eef8e9;
        padding: 25px;
        margin: 0 0 5% 0;
        transition: 0.2s ease-in-out;
    }
    .faq-item:hover {
        background: #555555;
    }        
    .faq-item:hover h3,
    .faq-item:hover p {
        color: #fff;
    }
    .faq-item h3 {
        font-size: 20px;
        font-weight: 700;
        color: #2fd815;
        margin: 0 0 10px 0;
    }
    .faq-item p {
        font-size: 15px;
        font-weight: 500;
        color: #555555;
        margin: 0;
        line-height: 1.5;
    }
    .gutter-sizer {
        width: 5%;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .faq-container {
        width: 100%;
        margin: 50px 0;
    }
    .faq-item {
        position: relative;
        width: 30%;
        background: #eef8e9;
        padding: 25px;
        margin: 0 0 5% 0;
        transition: 0.2s ease-in-out;
    }
    .faq-item:hover {
        background: #555555;
    }        
    .faq-item:hover h3,
    .faq-item:hover p {
        color: #fff;
    }
    .faq-item h3 {
        font-size: 20px;
        font-weight: 700;
        color: #2fd815;
        margin: 0 0 10px 0;
    }
    .faq-item p {
        font-size: 15px;
        font-weight: 500;
        color: #555555;
        margin: 0;
        line-height: 1.5;
    }
    .gutter-sizer {
        width: 5%;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .faq-container {
        width: 100%;
        margin: 50px 0;
    }
    .faq-item {
        position: relative;
        width: 30%;
        background: #eef8e9;
        padding: 25px;
        margin: 0 0 5% 0;
        transition: 0.2s ease-in-out;
    }
    .faq-item:hover {
        background: #555555;
    }        
    .faq-item:hover h3,
    .faq-item:hover p {
        color: #fff;
    }
    .faq-item h3 {
        font-size: 20px;
        font-weight: 700;
        color: #2fd815;
        margin: 0 0 10px 0;
    }
    .faq-item p {
        font-size: 15px;
        font-weight: 500;
        color: #555555;
        margin: 0;
        line-height: 1.5;
    }
    .gutter-sizer {
        width: 5%;
    }
}

@media(max-width: 769px) {
    .faq-container {
        width: 100%;
        margin: 50px 0;
    }
    .faq-item {
        position: relative;
        width: 100%;
        background: #eef8e9;
        padding: 25px;
        margin: 0 0 10% 0;
        transition: 0.2s ease-in-out;
    }
    .faq-item:hover {
        background: #555555;
    }        
    .faq-item:hover h3,
    .faq-item:hover p {
        color: #fff;
    }
    .faq-item h3 {
        font-size: 20px;
        font-weight: 700;
        color: #2fd815;
        margin: 0 0 10px 0;
    }
    .faq-item p {
        font-size: 15px;
        font-weight: 500;
        color: #555555;
        margin: 0;
        line-height: 1.5;
    }
    .gutter-sizer {
        width: 10%;
    }
}
