body {
    /*убираем стандарт отступы*/
    margin: 0; 
    /*основные настройки*/
    bakground: white;
    color: white;
    font-size: 13px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
    /*Автоматический подсчёт отсупов относительно материнского тега*/
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}
p{
    margin: 0 0 10px;
}
/*========> [ Container ] <========*/
.container {
    /* устанавливаем максимальную ширину и растягиваем на весь экран */
    width: 100%;
    max-width: 1170px;
    /* убираем отсутпы сверху и снизу */
    margin: 0 auto;
}
/*========> [ Header ] <========*/
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000px;
}
.header__logo_one {
    font-size: 30px;
    
}
.header__logo_two {
    font-size: 30px;
    margin-left: 5px;
    opacity: 0.65;
}
.header__iner {
    display: flex; /*убирает отступ между элементами*/
    justify-content: space-between;/*Раскидывает элементы по разынм сторонам*/
    align-items: center;/*выравнивание разделения по центру*/

    border-bottom: 3px solid rgb(143, 143, 143);
    padding: 20px 0;
}
/* ===> [ Nav ] <=== */
.nav {
    display: flex;
    font-size: 15px;
    text-transform: uppercase;
}

.nav__link {
    text-decoration: none;
    margin-left: 30px;
    color: white;
    font-weight: 600;
    opacity: 0.75;
    transition: opacity .1s;
}
.nav__link:first-child{
    margin-left: 0px;
}
.nav__link:hover {
    /*text-decoration: underline; установить линию под текстом при наведении*/
    opacity: 1;
}
/*========> [ Intro ] <========*/
.intro {
    height: 1800px;
    display: flex;
    flex-direction: column; /*каждый новый элемент с новой строки*/
    justify-content: center;
    text-align: center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

    background: #38284d url("D:/Microsoft VS Code/black/Косяк/normals/assets/intro3.jpg") center no-repeat;
}
.intro__iner {
    width: 100%;
    max-width: 2600px;
    margin: 0 auto;
}

.intro__title {
    font-size: 60px;
    line-height: 1.1;
    color:white;
    font-weight: 300;
}

.intro__subtitle {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1;
    opacity: 0.75;
    margin-bottom: 70px;
}
.left {
  float: left;
  width: 350px;
  font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
  background: rgb(81, 78, 128);
}
.right {
    float:right;
    width: 350px;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
  background: rgb(81, 78, 128);
}