* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* font-family: 'Gilda Display', serif; */
/* font-family: 'Open Sans', sans-serif; */

.flex {
    display: flex !important;
}

.wrapper {
    max-width: 1000px;
    padding: 0 2em;
    display: block;
    margin: 0 auto;
}

/* .heading__image {
    max-width: ;
} */

.heading-1 {
    font-family: 'Gilda Display', serif;
    font-size: 2rem;
    font-weight: normal;
    line-height: 140%;
}

.heading__image img {
    width: 100%;
}

header .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

nav {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 999;
}

nav .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 1em;
    padding-bottom: 1em;
}

.nav_link--item {
    text-decoration: none;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: .7rem;
    margin-left: 50px;
}

.logo img {
    width: 100%;
}

.logo {
    max-width: 200px;
}

.heading {
    display: flex;
    align-items: center;
}

.section-about {
    background-color: #F4F4F4;
    padding: 60px 0;
}

.heading-2 {
    font-family: 'Gilda Display', serif;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 180%;
    max-width: 800px;
}

.section-services {
    padding: 100px 0;
}

.section-heading {
    font-family: 'Gilda Display', serif;
    font-size: 2rem;
    font-weight: normal;

}

.services__items {
    margin-top: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services__single {
    max-width: 28%;
}

.services__single img {
    max-width: 20px;
    margin-right: 10px;
}

.align-center {
    align-items: center;
}

.services-title {
    font-family: 'Gilda Display', serif;
    font-size: 1.2rem;
    font-weight: normal;
}

.services-p {
    font-family: 'Open Sans', sans-serif;
    font-size: .8rem;
    margin-top: 20px;
    opacity: .4;
    line-height: 160%;
}

.section-about__img {
    min-width: 47%;
}

.section-about__img img {
    width: 100%;
}

.paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: .8rem;
    line-height: 160%;
    opacity: .6;
    margin-top: 10px;
}

.quote {
    background-color: #ECEDEB;
    border-left: 5px solid #3D4F34;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: .8rem;
    line-height: 160%;
    margin-right: 20px;
    margin-top: 20px;
}

.section-default {
    padding: 60px 0;
}

.ml-50 {
    margin-left: 50px;
}

.mr-50 {
    margin-right: 50px;
}

.btn {
    background-color: #3D4F34;
    color: #fff;
    padding: 10px 20px;
    font-size: .8rem;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    margin-top: 20px;
    border: none;
}

.form-left {
    width: 40%;
}

.section-contact {
    padding: 100px 0;
}

.subheading {
    text-transform: uppercase;
    font-size: .7rem;
    opacity: .6;
    font-family: 'Open Sans', sans-serif;
}

input {
    width: 47%;
    border: none;
    border-bottom: 1px solid #0000002a;
    margin-top: 50px;
}

textarea {
    width: 100%;
    margin-top: 40px;
    border: none;
    border-bottom: 1px solid #0000002a;
}

.space-between {
    justify-content: space-between;
}

.terms {
    padding-top: 150px;
}

@media (max-width: 600px) {
    .flex {
        flex-direction: column;
    }

    header .wrapper {
        height: auto;
    }

    header {
        padding-top: 20px;
        padding-bottom: 150px;
        margin-top: -50px;
    }

    nav {
        top: 650px;
        position: relative;
    }

    .services__items {
        flex-direction: column;
    }

    .services__single {
        max-width: 100%;
    }

    input {
        width: 100%;
    }

    .heading-1 {
        font-size: 1.6rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .ml-50 {
        margin-left: 0;
    }

    .mr-50 {
        margin-right: 0;
    }

    .nav_links a:first-child {
        display: none;
    }

    nav .wrapper {
        flex-direction: column;
        align-items: center;
    }

    .nav_link--item {
        margin-left: 0;
    }

    .heading-2 {
        font-size: .9rem;
    }

    .heading__image {
        /* margin-top: 50px; */
        margin-bottom: 30px;
    }

    .services__single {
        margin-bottom: 50px;
    }

    .services__single img {
        margin-bottom: 10px;
    }

    .section-services {
        padding: 60px 0 0 0;
    }

    .subheading {
        margin-bottom: 20px;
    }

    .form-right {
        width: 100% !important;
    }

    .m-m-b-50 {
        margin-bottom: 30px;
    }

    .m-m-t-50 {
        margin-top: 30px;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    .heading__content {
        margin-bottom: 50px;
    }
}



.form-right {
    width: 60%;
}

/* Animations */

.hidden {
    opacity: 0;
    transition: all 1s;
    transform: translateX(-40px);
}

.delay-1 {
    transition-delay: .5s;
}

.delay-2 {
    transition-delay: 1s;
}

.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-top {
    animation-name: fadeTop;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;

    opacity: 0;
}

@keyframes fadeTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-right {
    animation-name: fadeRight;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;

    opacity: 0;
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}