body {
    font-family: 'Montserrat', sans-serif;

    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/*font-family: 'Kaushan Script', cursive;*/

*,
*:after,
*:before {
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.intro {
    width: 100%;
    height: 100vh;
    background: url(../images/background1.png) center;
    no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.header {
    width: 100%;
    padding-top: 30px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;


}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 30px;
    font-weight: 700;
    padding-left: 30px;
    color: rgb(63, 49, 49);
}

.nav {
    font-size: 14px;
    text-transform: uppercase;
    padding-right: 30px;

}

.nav__linck {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    color: rgb(63, 49, 49);
    text-decoration: none;
    transition: color .2s linear;
}

.nav__linck::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    display: none;

    background-color: #7d10e4;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
}

.nav__linck:hover {
    color: #7d10e4;
}

.nav__linck:hover::after {
    display: block;
}