/* global */

body {
    margin: 0;
    padding: 0;
    color: #000;
    background: #fff;
    font-family: dunbar-tall, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: dunbar-tall, sans-serif;
}

p {
    font-family: dunbar-tall, serif;
}

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

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

/* end of global */

@media(min-width: 1366px) {
    .first-fold {
        position: relative;
        margin: 60px 0 0 0;
        width: 100%;
        height: 600px;
        background-image: url('../../assets/contact-background.jpg');
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .first-fold-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        max-width: 60%;
        background-color: rgba(255, 255, 255, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
    }
    .first-fold-text img {
        width: 250px;
        height: auto;
        margin: 0 0 10px 0;
    }
    .first-fold-text h1 {
        color: #000000;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h2 {
        color: #222222;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h3 {
        color: #444444;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        margin: 10px 0;
    }
    .review-a,
    .show-more {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 0 auto;
        background: #236E77;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        font-family: 'dunbar-tall', sans-serif;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 20px 40px;
        border: none;
    }
    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
    }
    #contact-form {
        width: calc(40% - 25px);
        align-self: flex-start;
        background-color: #f9f9f9;
        border: 0.5px solid #999999;
        padding: 25px;
        border-radius: 10px;
    }
    .contact-right {
        width: calc(60% - 25px);
    }
    .contact-right h3 {
        color: #236E77;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        margin: 0;
    }
    .contact-right a {
        font-weight: 500;
        text-decoration: none;
        color: #236E77;
        background: #e5f1ec;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #236E77;
        color: #fff;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .first-fold {
        position: relative;
        margin: 60px 0 0 0;
        width: 100%;
        height: 600px;
        background-image: url('../../assets/contact-background.jpg');
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .first-fold-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        max-width: 60%;
        background-color: rgba(255, 255, 255, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
    }
    .first-fold-text img {
        width: 250px;
        height: auto;
        margin: 0 0 10px 0;
    }
    .first-fold-text h1 {
        color: #000000;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h2 {
        color: #222222;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h3 {
        color: #444444;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        margin: 10px 0;
    }
    .review-a,
    .show-more {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 0 auto;
        background: #236E77;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        font-family: 'dunbar-tall', sans-serif;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 20px 40px;
        border: none;
    }
    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
    }
    #contact-form {
        width: calc(45% - 25px);
        align-self: flex-start;
        background-color: #f9f9f9;
        border: 0.5px solid #999999;
        padding: 25px;
        border-radius: 10px;
    }
    .contact-right {
        width: calc(55% - 25px);
    }
    .contact-right h3 {
        color: #236E77;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        margin: 0;
    }
    .contact-right a {
        font-weight: 500;
        text-decoration: none;
        color: #236E77;
        background: #e5f1ec;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #236E77;
        color: #fff;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .first-fold {
        position: relative;
        margin: 60px 0 0 0;
        width: 100%;
        height: 600px;
        background-image: url('../../assets/contact-background.jpg');
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .first-fold-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        max-width: 60%;
        background-color: rgba(255, 255, 255, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
    }
    .first-fold-text img {
        width: 250px;
        height: auto;
        margin: 0 0 10px 0;
    }
    .first-fold-text h1 {
        color: #000000;
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h2 {
        color: #222222;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h3 {
        color: #444444;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        margin: 10px 0;
    }
    .review-a,
    .show-more {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 0 auto;
        background: #236E77;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        font-family: 'dunbar-tall', sans-serif;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 20px 40px;
        border: none;
    }
    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
    }
    #contact-form {
        width: calc(50% - 25px);
        align-self: flex-start;
        background-color: #f9f9f9;
        border: 0.5px solid #999999;
        padding: 25px;
        border-radius: 10px;
    }
    .contact-right {
        width: calc(50% - 25px);
    }
    .contact-right h3 {
        color: #236E77;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        margin: 0;
    }
    .contact-right a {
        font-weight: 500;
        text-decoration: none;
        color: #236E77;
        background: #e5f1ec;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #236E77;
        color: #fff;
    }
}

@media(max-width: 769px) {
    .first-fold {
        position: relative;
        margin: 50px 0 0 0;
        width: 100%;
        height: 600px;
        background-image: url('../../assets/contact-background.jpg');
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .first-fold-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        max-width: 90%;
        background-color: rgba(255, 255, 255, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
    }
    .first-fold-text img {
        width: 250px;
        height: auto;
        margin: 0 0 10px 0;
    }
    .first-fold-text h1 {
        color: #000000;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h2 {
        color: #222222;
        text-align: center;
        font-size: 17px;
        font-weight: 500;
        margin: 10px 0;
    }
    .first-fold-text h3 {
        color: #444444;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        margin: 10px 0;
    }
    .review-a,
    .show-more {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 0 auto;
        background: #236E77;
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        font-family: 'dunbar-tall', sans-serif;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 20px 40px;
        border: none;
    }
    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
    }
    #contact-form {
        width: 100%;
        margin: 0 0 50px 0;
        background-color: #f9f9f9;
        border: 0.5px solid #999999;
        padding: 25px 15px;
        border-radius: 10px;
    }
    .contact-right {
        width: 100%;
    }
    .contact-right h3 {
        color: #236E77;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        margin: 0;
    }
    .contact-right a {
        font-weight: 500;
        text-decoration: none;
        color: #236E77;
        background: #e5f1ec;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #236E77;
        color: #fff;
    }
}
