/* montserrat-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/montserrat-v25-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v25-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('assets/img/shape-image.png'), #292d4a;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 900px;
}

.wrapper {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 60px;
    box-sizing: border-box;
}

nav a img {
    width: 100%;
    max-width: 200px;
}

h1 {
    font-size: 40px;
    color: #90cea0;
}

h1 span {
    color: #fff;
    font-weight: 300;
}

h3 {
    color: #90cea0;
    font-weight: 700;
    font-size: 20px;
}

p {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}

p a {
    font-size: 16px;
    color: #f78b67;
    font-weight: 700;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

.text__alt {
    color: #f78b67;
    font-weight: 700;
    font-size: 20px;
}

.button {
    display: block;
    max-width: 240px;
    background: #f78b67;
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.4s ease-in-out;
    -moz-transition: background-color 0.4s ease-in-out;
    -webkit-transition: background-color 0.4s ease-in-out;
}

.button:hover {
    background: #fff;
    color: #f78b67;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.contact-details li {
    margin-bottom: 20px;
}

.contact-details li img {
    width: 20px;
    vertical-align: middle;
    margin-right: 20px;
}

.contact-details li a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
}

.contact-details li a:hover {
    color: #90cea0;
}

.social-links {
    display: flex;
    column-gap: 10px;
}

.social-links li a {
    text-decoration: none;
}

.social-links li a img {
    width: 100%;
    max-width: 30px;
}

footer {
    margin-top: 40px;
}

@media only screen and (max-width: 1420px) {
    body {
        background-size: 700px;
    }
}

@media only screen and (max-width: 1280px) {
    body {
        background-size: 500px;
    }
}

@media only screen and (max-width: 1024px) {
    body {
        background: url('assets/img/shape-image.png'), #292d4a;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 500px;
    }

    .wrapper {
        padding: 150px 20px 40px;
    }

    p br {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    body {
        background: url('assets/img/shape-image.png'), #292d4a;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 70%;
    }

    h1 {font-size: 30px;}

    .wrapper {
        padding: 180px 20px 40px;
    }

    nav a img {
        max-width: 150px;
    }
}