body {
    margin: 0;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}





/* Header */

.header {
    padding-top: 10px;
    padding-bottom: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    box-shadow: 1px 1px 10px 1px #d0e2ef;

    background-color: #fafafa;


}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */

.header__logo {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    text-decoration: none;
    opacity: .7;
}


.logo {
    height: 45px;
    width: auto;

}

.logo__contain {
    display: flex;
    flex-direction: column;
}

.logo__text {
    padding-top: 10px;
    padding-left: 10px;

}

/*.logo__line {

    display: block;
    position: relative;
    top: 10px;
    left: 13px;
    height: 2px;
    width: 270px;
    background-color: rgba(33, 31, 31, 0.61);
    border-radius: 35%;
}

.logo__underline {
    display: block;
    position: relative;
    top: 3px;
    left: 48px;
    height: 2px;
    width: 180px;
    background-color: rgba(33, 31, 31, 0.61);
    border-radius: 35%;
}*/

/* Nav */

.nav {
    font-size: 14px;
    text-transform: uppercase;

}

.nav__link {
    background-color: rgba(255, 255, 255, 0);
    padding: 6px 5px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin: 0 15px;
    color: rgba(33, 31, 31, 0.92);
    text-decoration: none;
    transition: .2s color background linear;
}

.nav__enter {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin: 0 15px;
    color: rgba(33, 31, 31, 0.92);
    text-decoration: none;
    padding: 5px 25px;
    background-color: rgba(255, 255, 255, 0.56);
    border: 1px solid;
    border-color: rgba(190, 185, 185, 0.45);
    border-radius: 4px;
    transition: .2s background linear;

}

.nav__enter.show {
    display: none;
}

/*

.nav__link:after {
    content: "";

    display: block;
    width: 100%;
    height: 1px;
    opacity: 0;

    background-color: #292e2f;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;


}
*/

.nav__link:hover {
    color: #b966a9;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 1px 1px 8px rgba(117, 148, 180, 0.53);

}

.nav__enter:hover {
    background-color: rgba(126, 159, 146, 0.25);
    color: #b966a9;
}

.nav__link:hover:after {
    opacity: 0;
}

/* Intro */

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    margin-top: 65px;
    background-image: linear-gradient(to top, #fafafa 0%, #ecf4ff 100%);
}

.intro__inner {
    margin-top: 100px;
    display: block;

}


.intro__tittleContain {
    position: relative;
    top: -30px;

}

.intro__tittle {
    margin: 0;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    color: rgb(41, 43, 44);
}

.intro__subinner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.subinner__maps {
    overflow: hidden;
    width: 50%;

}



.intro__components {

    width: 40%;


}

/*BLOCK___COMPONENTS-----------------------------------------------------------------------------------*/

.componentsBlock {
    display: block;
    position: absolute;
    top: -10px;
    left: 120px;
    z-index: 100;
    height: 200px;
    width: 650px;
}

.componentsBlock.show {
    display: none;
}


.components {
    margin: 5px;
    padding: 10px;
    width: 40%;
    box-shadow: 2px 2px 2px rgba(142, 130, 130, 0.1);
    border-radius: 10px;
    border: 1px solid;
    border-color: rgba(181, 170, 170, 0.33);
    transition: .2s box-shadow linear;
    background-image: linear-gradient(to top, rgba(199, 215, 234, 0.76) 0%, rgba(237, 245, 255, 0.24) 100%);
    text-decoration: none;
    color: #222222;


}

.components:hover {
    box-shadow: 2px 2px 12px rgba(119, 106, 106, 0.61);
    color: #b966a9;


}

.component__tittle {
    padding: 2px;
    font-size: 15px;
    font-weight: 500;

}

/*UNDERFOOTER*/

.underfooter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    height: auto;
    border-top: 1px solid #edf2ff;

    background-color: #edf2ff;
    width: 100%;

}


.underfooter__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    padding: 10px 0;

}

.underfooter__logo {
    font-size: 17px;
    font-weight: 600;
    color: rgba(100, 86, 86, 0.92);
}

.underfooter__sign {

    height: auto;
    width: 100%;
    font-weight: 500;
    font-size: 11px;

}
