@font-face {
    font-family: "Aestetico Regular";
    src: url('../font/Aestetico-Regular.woff') format('woff'),
        url('../font/Aestetico-Regular.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
}

@font-face {
    font-family: "Aestetico SemiBold";
    src: url('../font/Aestetico-SemiBold.woff') format('woff'),
        url('../font/Aestetico-SemiBold.woff2') format('woff2');
        font-weight: 600;
        font-style: normal;
        font-display: swap;
}

@font-face {
    font-family: "Aestetico Bold";
    src: url('../font/Aestetico-Bold.woff') format('woff'),
        url('../font/Aestetico-Bold.woff2') format('woff2');
        font-weight: bold;
        font-style: normal;
        font-display: swap;
}

* {
    box-sizing: border-box;
    font-family: 'Aestetico Regular', sans-serif;
}

.mauto {
    margin: 0 auto;
}

body {
    margin: 0;
    background-image: url(../images/background.png);
    background-position: right top;
    background-size: cover;
}

header {
    min-height: 80vh;
}

header .container-fluid {
    padding-left: 200px;
    padding-right: 300px;
}
header .content {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

header h1 {
    color: white;
    font-size: 6rem;
    line-height: 0.9;
    font-family: "Aestetico SemiBold";
    font-weight: 300;
    overflow: hidden;
}
header h1 span {
    color: #fd7f23;
    font-family: "Aestetico Bold"
}

header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    line-height: 1.2;
    overflow: hidden;
}
header h3 {
    font-size: 2.2rem;
    color: white;
    font-weight: 300;
    margin-bottom: 0.5em;
}
header h4 {
    font-size: 2.4rem;
    color: white;
    font-weight: 300;
    line-height: 1.1;
    overflow: hidden;
}
header h4 strong {
    font-size: 2.8rem;
}

header .form {
    max-width: 380px;
}
header form input {
    width: 100%;
    text-align: center;
    min-height: 40px;
    border: none; 
    margin-bottom: 0.5em;
    border-radius: 3px;
}
header form button {
    width: 100%;
    font-size: 1.2rem;
    background-color: #09c611;
    color: white;
    min-height: 40px;
    border: none;
    margin-top: 0;
    border-radius: 3px;
}

.about {
    padding-top: 2em;
    padding-bottom: 2em;
}
.about .container-fluid { 
    padding-left: 200px;
    padding-right: 200px;
}
.about h1 {
    text-align: center;
    font-size: 4rem;
    line-height: 1;
    overflow: hidden;
    font-family: "Aestetico Bold";
    font-weight: 800;
    color: white;
    margin-bottom: 1em;
}
.about .icons {
    margin-bottom: 3em;
}
.about h1 span {
    color: #fd7f23;
}
.about img {
    max-width: 300px;
    margin: 0 auto;
}

/* Mobile */
@media screen and (max-width: 978px) {
    body {
        background-image: url(../images/background-obg.png);
    }
    header {
        min-height: auto;
    }
    header .content {
        min-height: auto;
        flex-wrap: wrap;
    }
    header .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    header br, .about br {
        display: none;
    }
    header h1 {
        font-size: 4.2rem;
        text-align: center;
    }
    header h2 {
        text-align: center;
    }
    header h3 {
        text-align: center;
        font-size: 1.8rem;
    }
    header h4 {
        font-size: 1.8rem;
        text-align: center;
    }
    header h4 strong {
        font-size: 2.2rem;
    }
    .about .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .about h1 {
        margin-top: 0;
        font-size: 3rem;
    }
}
  
/* Small Query */
@media only screen and (min-width: 980px) and (max-width: 1024px)  {
    header .content {
        min-height: 100vh;
    }
    header .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
    header h1 {
        font-size: 4rem;
    }
    header h2 {
        font-size: 2.4rem;
    }
    header h3 {
        font-size: 1.8rem;
    }
    header h4 {
        font-size: 1.8rem;
    }
    .about .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Medium Query */
@media only screen and (min-width: 1025px) and (max-width: 1700px)  {
    header .content {
        min-height: 100vh;
    }
    header .container-fluid {
        padding-left: 100px;
        padding-right: 100px;
    }
    header h1 {
        font-size: 5rem;
    }
    header h2 {
        font-size: 2.8rem;
    }
    header h3 {
        font-size: 2rem;
    }
    header h4 {
        font-size: 1.8rem;
    }
    .about .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* High Query */
@media only screen and (min-width: 1710px) and (max-width: 4000px)  {
}

@media only screen and (min-width: 2050px) and (max-width: 4000px)  {
    header .container-fluid {
        padding-left: 200px;
        padding-right: 600px;
    }
    header h1 {
        font-size: 10rem;
    }
    header h2 {
        font-size: 5rem;
    }
}