
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

svg {
  width: 350px;
  height: 200px;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #FFF;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/*Container*/

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

/* HEADER */

.header {

    width: 100%;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    z-index: 1000;

}

.header__inner {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    position: relative;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    height: auto;
    max-width: 200px;
    align-items: center;
    margin: 30px;


}

/*Intro*/

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-height: 820px;
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("../images/intro.jpg") center no-repeat;
    -webkit-background-size: cover;
}

.intro__inner {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;

}

.intro_title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.intro_icon {
    display: flex;
    justify-content: center;
    height: 150px;
    width: auto;
    padding: 0 0 20px 0;


}

.intro_subtitle {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;

}

/*BOTTOM*/

.bottom {

    width: 50%;
    max-width: 1000px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;

}

.bottom_img {
    display: flex;
    justify-content: center;
    height: 150px;
    width: auto;
    display: block;

}

@media (max-width: 1230px) {
    .intro_title {
        font-size: 30px;
    }

    .intro_subtitle {
       font-size: 20px;
    }

    .container {
        max-width: 800px;
    }

    .intro_icon {
        height: 50%;

    }

    .intro {

    }

    .header__inner {

    }

    .header__logo {

    }
}

@media (max-width: 480px) {
    .intro {
        height: 50vh;
    }

}

