@media all { /* Обнуление css для всех типов браузеров*/
    * {
        padding: 0;
        margin: 0;
        border: 0;
    }
    *,*:before,*:after{
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    :focus,:active{outline: none;}
    a:focus,a:active{outline: none;}
    nav,footer,header,aside{display: block;}
    html,body{
        height: 100%;
        width: 100%;
        font-size: 100%;
        line-height: 1;
        font-size: 14px;
        -ms-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
    }
    input,button,textarea{font-family:inherit;}
    input::-ms-clear{display: none;}
    button{cursor: pointer;}
    button::-moz-focus-inner {padding:0;border:0;}
    a, a:visited{text-decoration: none;}
    a:hover{text-decoration: none;}
    ul li{list-style: none;}
    img{vertical-align: top;}
    h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400; display: none;}
}

:root {
    --body-background: black; /* Цвет заднего фона*/
    --body-color: rgb(235, 235, 235); /* Цвет текста по умолчанию */

    --content-width: 1850px; /*Ширина блока с контентом */
    --content-width-mobile: 768px; /* Ширина блока с контентом для мобильных версий */
    --center-width: 1600px; 

    --font-size-name-block: 70px;
}

@media all { /* Шрифты */
    @font-face {
        font-family: 'general';
        src: url('./fonts/TikTokSans.ttf');
    }
    @font-face {
        font-family: 'general-1';
        src: url('./fonts/LozungCapsBlack.otf');
    }
}

@media all { /* general body */
    body * {
        font-family: general;
        color: var(--body-color);
    }

    body {background: var(--body-background);}
}

@media all { /* Настройки контента */
    .content {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        
    }
    .content .background {
        /*
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./background.jpg) center no-repeat;
        filter: blur(5px);
        */
        background: url(./background.jpg) center no-repeat;
        background-size: cover;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        z-index: -1;
        overflow: hidden;
    }

    .fix-content .flowers {
        position: absolute;
        width: var(--content-width);
        top: 0px;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }

    .fix-content .flowers img {
        position: absolute;
    }

    .fix-content .flowers img:nth-child(1) {
        transform: rotate(-36deg);
        top: 1600px;
        right: -50px;
    }

    .fix-content .flowers img:nth-child(2) {
        transform: rotate(-36deg);
        top: 3500px;
        right: -50px;
    }

    .fix-content {
        width: var(--content-width);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media all { /* Все что связанно с генеральным блоком */

    .general-top {
        width: 100%;
        height: 900px;
        border-radius: 50px;
        margin-top: 10px;
        background: url(./general-top.jpg) center no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .general-top .general-content {
        padding-left: 100px;
    }

    .general-top .text-content {
        display: inline-block;
        font-size: 60px;
        font-family: general-1;
        color: rgba(255, 255, 255, 0.10);
        -webkit-text-stroke: 2px white;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .general-top .button-content {
        margin-top: 50px;
        display: flex;
    }
    .general-top button {
        padding: 7px 25px 7px 25px;
        border-radius: 13px;
        display: flex;
        align-items: center;
        font-size: 27px;
        margin-right: 50px;
        transition: 0.25s;
    }

    .general-top button:hover {
        transform: scale(1.05);
    }

    .general-top button img {
        height: 28px;
        margin-right: 20px;
    }
}

@media all { /* Все что связанно с меню */
    .menu {
        z-index: 5;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%; 
        display: flex;
        justify-content: center;
        transform: translateY(-100%);
        transition: 1s;
        opacity: 0;
    }
    .menu::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 200%;
        background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0, 0));
        z-index: -1;
        opacity: 0.6;
        pointer-events: none;
    }
    .menu .center {
        padding: 0px 50px 0px 50px;
        width: 1700px;
        display: flex;
        height: 100px;    
    }

    .menu .l {
        height: 100%;
        width: 20%;
        display: flex;
        align-items: center;
    }
    .menu .l img {
        height: 40px;
    }

    .menu .r {
        height: 100%;
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: right;
    }

    .menu .r button {
        background: rgb(0, 0, 0, 0);
        font-size: 22px;
        margin: 0px 50px 0px 50px;
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 0px 10px 0px 10px;
    }
    .menu .r button p {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 0%;
        height: 2px;
        background: white;
        transform: translateY(3px);
        border-radius: 2px;
        transition: 0.5s;
    }
    .menu .r button:hover p {
        width: 100%;
    }

    .menu .r .color-button::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgb(0, 82, 150, 1), rgb(0, 144, 234, 1));
        opacity: 0.5;
        border-radius: 12px;
        z-index: -1;
        transition: 0.5s;
    }

    .menu .r .color-button {
        padding: 12px 25px 12px 25px;
        margin-right: 0px;
    }

    .menu .r .color-button:hover:before {
        opacity: 0.8;
    }

    .menu .mobile {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

}

@media all { /* Все что с информацией о компании */

    .information {
        max-width: var(--center-width);
        margin-top: 150px;
    }

    .information .n {
        display: inline-block;
        font-family: general-1;
        font-size: var(--font-size-name-block);
        color: rgba(255, 255, 255, 0.10);
        -webkit-text-stroke: 2px white;
    }

    .information .information-content {
        margin-top: 75px;
        display: flex;
    }

    .information .information-left {
        min-width: 70%;
        display: flex;
        align-items: center;
    }

    .information .information-left ._img_ {
        height: 100%;
        flex-grow: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 50px;
    }

    .information .information-left ._img_ img {
        width: 400px;
    }

    .information .information-right {
        width: 50%;
    }

    .information .information-text {
        width: 50%;
    }

    .information .information-text .information-text-1 {
        font-size: 40px;
        font-family: general-1;
        line-height: 55px;
        letter-spacing: 2px;
    }

    .information .information-text .information-text-2 {
        font-size: 25px;
        margin-top: 50px;
        width: 400px;
        line-height: 30px;
    }

    .information .information-text .information-text-2 p {
        margin-bottom: 25px;
    }

    .information .information-text .information-text-2 p:last-child {
        margin-bottom: 0px;
    }

    .information .information-right-text {
        border: 1px solid white;
        font-size: 30px;
        padding: 20px;
        background: rgb(255, 255, 255, 0.05);
        border-radius: 25px;
    }

    .information .information-right-block {
        margin-top: 25px;
        border: 1px solid white;
        background: rgb(255, 255, 255, 0.05);
        border-radius: 25px;
        padding: 20px;
    }

    .information .information-right-block .information-right-text-max {
        font-size: 40px;
        font-family: general-1;
    }

    .information .information-right-block p {
        font-size: 30px;
        line-height: 35px;
        margin: 25px 0px 25px 0px;
    }

    .information .information-right-block button {
        padding: 10px 40px 10px 40px;
        font-size: 25px;
        background: rgb(0, 0, 0, 0.3);
        border-radius: 100px;
        border: 1px solid white;
    }

}

@media all { /* Блок новости */
    .news {
        margin-top: 150px;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .news .n {
        width: var(--center-width);
        display: inline-block;
        font-family: general-1;
        font-size: var(--font-size-name-block);
        color: rgba(255, 255, 255, 0.10);
        -webkit-text-stroke: 2px white;
    }

    .news .news-content {
        margin-top: 100px;
        width: var(--content-width);
        max-width: var(--content-width);
        position: relative;
    }
    .news .news-scroll {
        display: flex;
        overflow-x: scroll;
        touch-action: none;
    }

    .news .news-button {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
    }

    .news .news-button button {
        width: 35%;
        height: 100%;
        background: rgb(0, 0, 0, 0);
        z-index: 2;
        transition: 1s;
    }

    .news .news-button button:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .news .news-scroll::-webkit-scrollbar {
        width: 0;      /* Для вертикали */
        height: 0;     /* Для горизонтали */
    }
    /*
    1384px  =  1200
    779px       ?
    */ 

    .news .news-content .news-block {
        min-width: 1250px;
        min-height: 703.576px;
        border-radius: 50px;
        margin: 0px 70px 0px 70px;
        background: rgb(138, 138, 138);
        opacity: 0.5;
        transform: scale(0.90);
        transition: 0.5s;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items:end;
        position: relative;
    }

    .news .news-content .news-block-general {
        opacity: 1;
        transform: scale(1);
    }

    .news .news-content .news-block img {
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: -1;
    }

    .news .news-content .news-block .news-block-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .news .news-content .news-block .news-block-content div {
        text-shadow: 0px 0px 100px black;
    }

    .news .news-content .news-block .news-block-content-name {
        font-size: 40px;
        font-family: general-1;
        text-align: center;
    }

    .news .news-content .news-block .news-block-content-info {
        font-size: 25px;
        width: 300px;
        margin: 30px 0px 30px 0px;
        text-align: center;
        line-height: 30px;
    }

    .news .news-content .news-block button {
        font-size: 20px;
        border-radius: 50px;
        border: 1px solid white;
        padding: 8px 35px 8px 35px;
        background: rgb(0, 0, 0, 0.6);
        box-shadow: 0px 0px 100px black;
        transition: 0.25s;
    }

    .news .news-content .news-block button:hover {
        padding: 8px 42px 8px 42px;
        transform: scale(1.05);
    }

    .news-content .news-block:first-child{
        margin-left: 1000px;
    }

    .news .news-content .news-block:last-child {
        margin-right: 1000px;
    }

    .news .news-navigator {
        margin-top: 20px;
        width: var(--content-width);
        display: flex;
        justify-content: center;
    }

    .news .news-navigator p {
        width: 15px;
        height: 15px;
        border-radius: 10px;
        margin: 0px 10px 0px 10px;
        background: rgb(255, 255, 255, 0.5);
        transition: 0.5s;
    }

    .news .news-navigator .news-general-navigator {
        width: 60px;
        background: rgb(255, 255, 255);
    }
}

@media all { /* Блок проекты */

    .projects {
        margin-top: 150px;
        width: var(--center-width);
    }

    .projects .n {
        display: inline-block;
        font-family: general-1;
        font-size: var(--font-size-name-block);
        color: rgba(255, 255, 255, 0.10);
        -webkit-text-stroke: 2px white;
    }

    .projects .projects-content {
        display: flex;
        justify-content: center;
        margin-top: 150px;
    }

    .projects .projects-content .projects-line {
        display: flex;

    }

    .projects .projects-content .projects-line .projects-block {
        width: 363px;
        height: 310px;
        background: rgb(217, 217, 217, 0.25);
        border-radius: 30px;
    }

    .projects .projects-content .projects-line .projects-block:nth-child(1) {
        margin-right: 50px;
    }

    .projects .projects-content .projects-line:nth-child(1) {
        margin-right: 50px;
    }

    .projects .projects-content .projects-line .projects-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: end;
        position: relative;
    }

    .projects .projects-content .projects-line .projects-block .projects-ava {
        position: absolute;
        border-radius: 100%;
        top: -80px;
        width: 220px;
        height: 220px;
        background: rgb(217, 217, 217, 0.75);
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .projects .projects-content .projects-line .projects-block .projects-ava img {
        height: 100%;
    }

    .projects .projects-content .projects-line .projects-block .projects-text {
        text-align: center;
        width: 80%;
        font-family: general-1;
        font-size: 25px;
        line-height: 30px;
        letter-spacing: 1px;
    }

    .projects .projects-content .projects-line .projects-block button {
        font-size: 22px;
        background: rgb(0, 0, 0, 0.5);
        padding: 8px 30px 8px 30px;
        border-radius: 30px;
        margin: 20px 0px 20px 0px;
        transition: 0.5s;
        border: 1px solid rgb(0, 0, 0, 0);
    }

    .projects .projects-content .projects-line .projects-block button:hover {
        padding: 8px 40px 8px 40px;
        transform: scale(1.05);
        border: 1px solid white;
    }
}

@media all { /* Блок услуги */
    .services {
        margin-top: 150px;
        width: var(--center-width);
    }
    .services .n {
        display: inline-block;
        font-family: general-1;
        font-size: var(--font-size-name-block);
        color: rgba(255, 255, 255, 0.10);
        -webkit-text-stroke: 2px white;
        margin-bottom: 100px;
    }
    .services .services-category {
        font-family: general-1;
        font-size: 30px;
        letter-spacing: 1px;
        padding-top: 70px;
    }
    .services .services-category:nth-child(2) {
        padding-top: 0px;
    }
    .services .services-subcategory {
        padding: 25px 0px 25px 0px;
        font-size: 28px;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        padding-left: 50px;
    }
    .services .services-subcategory p {
        width: 10px;
        height: 10px;
        border: 1px solid white;
        border-radius: 100%;
        margin-right: 15px;
    }
    .services .services-prices {
        margin-bottom: 15px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding-left: 100px;
    }
    .services .services-prices .l {
        display: flex;
        align-items: center;
        font-size: 25px;
    }
    .services .services-prices .l p {
        width: 10px;
        height: 10px;
        border-radius: 100%;
        margin-right: 15px;
        background: white;
    }
    .services .services-prices .r {
        min-width: 190px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 28px;
        letter-spacing: 1px;
    }
    .services .services-prices .r p {
        margin-right: 20px;
    }
}

@media all { /* Официальная информация */
    .official-information {
        padding: 25px;
        margin-top: 400px;
        margin-bottom: 35px;
        width: var(--content-width);
        border: 1px solid rgb(45, 45, 45);
        border-radius: 25px;
        background: rgb(15, 15, 15, 0.80);
        display: flex;
    }

    .official-information * {
        color: rgb(215, 215, 215);
    }

    .official-information .l {
        width: 70%;
        height: 100%;
    }

    .official-information .l .number {
        font-size: 20px;
        letter-spacing: 5px;
        font-family: general-1;
        margin-bottom: 50px;
    }

    .official-information .l p:nth-child(1) {
        margin-top: 0px;
    }

    .official-information .l p {
        margin-top: 25px;
        font-size: 20px;
    }

    .official-information .r {
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .official-information .r button {
        background: rgb(0, 0, 0, 0);
        font-size: 20px;
        padding: 5px 0px 5px 0px;
        text-align: right;
    }
}


