html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Roboto;
}

span {
    display: inline-block;
}

a {
    text-decoration: none;
}

.header-container {
    width: 100%;
    height: 8vh;
    position: fixed;
    z-index: 5;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
}

.header-navbar {
    height: 100%;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-icon {
    height: 8vh;
}

.navbar-titles {
    width: 480px;
    display: flex;
    justify-content: space-around;
}
.navbar-links {
    color: #000000;
    opacity: 0.65;
    font-size: 17px;
    transition: linear .2s;
}

.navbar-links:hover {
    opacity: 1;
}

@media (max-width: 650px) {
    .header-container {
        height: 15vh;
    } 

    .navbar-icon {
        height: 10vh;
    }

    .header-navbar {
        flex-direction: column;
        justify-content: space-around;
    }

    .navbar-links {
        font-weight: bolder;
        margin-bottom: 15px;
    }
}

@media (max-width: 490px) {
    .header-container {
        height: 45vh;
        position: static;
    }     
    
    .navbar-icon {
        height: 15vh;
    }

    .navbar-titles {
        width: 300px;
        height: 30vh;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .navbar-links {
        font-size: 25px;
    }
}

@media (max-width: 420px) {
    .header-container {
        height: 50vh;
    }  

    .navbar-titles {
        margin-bottom: 5vh;
    }
}

@media (max-width: 420px) {
    .header-container {
        height: 55vh;
    }  
    
    .navbar-titles {
        margin-bottom: 2vh;
    }
}


.greeting-container {
    height: 100vh;
    background: url("../images/greeting.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #000000;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
 
.greeting-text {
    height: 55vh;
    margin-top: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.greeting-description {
    width: 900px;
}

.greeting-title-text, .greeting-description-text, .greeting-more-text {
    text-align: center;
    color: #ffffff;
} 

.greeting-title-text {
    font-weight: bold;
    font-size: 75px;
}

.greeting-description-text {
    font-size: 20px;
    margin-bottom: 12vh;
}

@media (max-width: 910px) {
    .greeting-description {
        width: 750px;
    }  
}

@media (max-width: 760px) {
    .greeting-text {
        height: 65vh;
        margin-top: 20vh;
    }

    .greeting-description {
        width: 640px;
    }  
}

@media (max-width: 480px) {
    .greeting-text {
        margin-top: 10vh;
    }
}

@media (max-width: 380px) {
    .greeting-text {
        height: 80vh;
        margin-top: 2vh;
    }
}

.greeting-more {
    height: 60px;
    width: 250px;
    border-radius: 35px;
    background-color: #0050fc;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: linear .4s;
}

.greeting-more-text {
    font-weight: bolder;
    font-size: 16px;
    height: 100%;
    width: 100%;
    border-radius: 35px;
    line-height: 60px;
    transition: linear .4s;
}

.greeting-more-text:hover {
    color: #0050fc;
    background-color: #ffffff;
}

@media (max-width: 650px) {
    
    .greeting-text {
        width: 90%;
    }

    .greeting-title {
        width: 90%;
    }

    .greeting-description{
        width: 95%;
    }
}

@media (max-width: 490px) {
    .greeting-text {
        width: 90%;
    }

    .greeting-title {
        width: 100%;
    }

    .greeting-description{
        width: 100%;
    }

    .greeting-title-text {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .greeting-description-text {
        font-size: 15px;
    }

    .greeting-more {
        margin-top: 20px;
    }
}


.about-container {
    height: 95vh;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-element {
    height: 70vh;
    width: 70%;
    border-top: 1px solid rgba(110, 110, 110, 0.5);
    border-bottom: 1px solid rgba(110, 110, 110, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    width: 40%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.about-image {
    width: 70%;
    height: 300px;
    background: url("../images/BelPark.png") no-repeat center;
    background-size: cover;
}

.about-title {
    width: 15%;
    height: 8vh;
    border-bottom: 4px solid #000000;
}

.about-title-text {
    font-size: 50px;
    font-weight: bolder;
}

.about-description-text {
    width: 80%;
    font-size: 20px;
    font-weight: 100;
    line-height: 25px;
}


@media (max-width: 1600px) {
    .about-text {
        width: 40%;
        height: 420px;
    }
}

@media (max-width: 1450px) {
    .about-text {
        width: 40%;
        height: 350px;
    }

    .about-description-text  {
        font-size: 15px;
        line-height: 20px;
    }

    .about-image {
        width: 80%;
        height: 250px;
    }
}

@media (max-width: 1270px) {
    .about-element {
        width: 85%;
    }

    .about-text {
        width: 60%;
        height: 270px;
    }

    .about-image {
        width: 80%;
    }
}

@media (max-width: 1270px) {
    .about-image {
        width: 45%;
        height: 20vh;
    }
}

@media (max-width: 1080px) {
    .about-text {
        width: 45%;
        height: 320px;
    }

    .about-image {
        width: 55%;
        height: 20vh;
    }
}

@media (max-width: 925px) {
    .about-text {
        width: 45%;
        height: 380px;
    }  
}

@media (max-width: 820px) {
    .about-image {
        width: 65%;
        height: 17vh;
    } 

    .about-text {
        width: 55%;
        height: 380px;
    } 
}

@media (max-width: 750px) {
    .about-text {
        width: 60%;
    }
}

@media (max-width: 700px) {
    .about-element {
        flex-direction: column;
        justify-content: center;
    }    
    
    .about-text {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .about-title {
        border: 0px;
        width: 300px;
        height: 15vh;
    }

    .about-title, .about-description-text {
        width: 100%;
        text-align: center;
    }

    .about-image {
        width: 320px;
        height: 150px;
        margin-right: 30px;
    } 
}

@media (max-width: 550px) {
    .about-element {
        height: 65vh;
        width: 90%;
    }
}

@media (max-width: 450px) {
    .about-element {
        height: 75vh;
    }

    .about-text {
        margin-top: 15px;
    }
}

@media (max-width: 350px) {
    .about-element {
        height: 85vh;
    }
}

.objects-container {
    width: 100%;
    height: 270vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.object-element {
    width: 70%;
    height: 95%;   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.object-title {
    margin-top: 2vh;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.object-title-description-text {
    width: 800px;
    margin-top: 25px;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
}

.object-title-text {
    font-size: 40px;
    font-weight: bolder;
}

@media (max-width: 810px) {
    .object-title-description-text {
        width: 600px;
    }   
}

@media (max-width: 610px) {
    .object-title-description-text {
        width: 500px;
    }   
}

@media (max-width: 510px) {
    .object-title-description-text {
        width: 300px;
        font-size: 18px;
    }

    .object-title-text {
        font-size: 35px;
    }
}

.object-dana, .object-arena, .object-nemiga-3, .object-nemiga-5, .object-zdanovichi {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: space-between;
}

.object-arena, .object-nemiga-5 {
    flex-direction: row-reverse;
}

.object-dana-image, .object-arena-image, .object-nemiga-3-image, .object-nemiga-5-image, .object-zdanovichi-image {
    width: 48%;
    height: 100%;
}

.object-dana-description, .object-arena-description, .object-nemiga-3-description, .object-nemiga-5-description, .object-zdanovichi-description{
    margin-top: 80px;
    width: 45%; 
}

.object-dana-image {
    background: url("../images/dana.jpg") no-repeat center;
    background-size: cover;
}

.object-arena-image {
    background: url("../images/arena-city-rasprodagi-1600x-df51.jpg") no-repeat center;
    background-size: cover;
}

.object-nemiga-3-image {
    background: url("../images/nemiga3.png") no-repeat center;
    background-size: cover;    
}

.object-nemiga-5-image {
    background: url("../images/nemiga5.png") no-repeat center;
    background-size: cover;
}

.object-zdanovichi-image {
    background: url("../images/zdanovichi.png") no-repeat center;
    background-size: cover;
}

.object-dana-image, .object-arena-image, .object-nemiga-3-image, .object-nemiga-5-image, .object-zdanovichi-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.object-dana-description-title, .object-arena-description-title, 
.object-nemiga-3-description-title, .object-nemiga-5-description-title, .object-zdanovichi-description-title {
    font-size: 25px;
    font-weight: bold;
}

.object-dana-description-text, .object-arena-description-text,
.object-nemiga-3-description-text, .object-nemiga-5-description-text, .object-zdanovichi-description-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

@media (max-width: 1000px) {
    .objects-container {
        height: 530vh;
    }

    .object-element {
        width: 90%;
    }
    
    .object-dana, .object-arena, .object-nemiga-3, .object-nemiga-5, .object-zdanovichi {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 90vh;
        margin-top: 10vh;
    } 

    .object-dana-image, .object-arena-image, .object-nemiga-3-image, .object-nemiga-5-image, .object-zdanovichi-image, 
    .object-dana-description, .object-arena-description, .object-nemiga-3-description, .object-nemiga-5-description, .object-zdanovichi-description {
        width: 85%;
        margin-top: 40px;
    }
}


.commercial-container {
    height: 55vh;
    width: 100%;
    background-color: #ffffff;
}

.commercial-header {
    height: 20vh;
    width: 100%;
}

.commercial-main {
    height: 25vh;
    width: 100%;
    background: url("../images/commerse.png") no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.commercial-text {
    color: #ffffff;
    margin-left: 25px;
    font-size: 18px;
}

.commercial-footer {
    height: 10vh;
    width: 100%;
    background-color: #ebebeb;
    display: flex;
    justify-content: center;
}

.commercial-footer-line {
    width: 70%;
    height: 100%;
    border-bottom: 1px solid rgba(110, 110, 110, 0.5);
}


@media (max-width: 1270px) {
    .commercial-footer-line {
        width: 85%;
    }
}

.advantages-container {
    width: 100%;
    height: 95vh;
    background-color: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.advantages-element {
    width: 70%;
    margin-top: 5%;
    height: 80%;   
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.advantages-title {
    margin-top: 2vh;
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.advantages-title-description-text {
    width: 530px;
    text-align: center;
    font-size: 22px;
    line-height: 35px;
}

.advantages-title-text {
    font-size: 40px;
    font-weight: bolder;
}

.advantages-list {
    margin-bottom: 10vh;
    width: 750px;
}

.list-container > li {
    font-size: 22px;
    padding-top: 20px;
}

@media (max-width: 1550px) {
    .advantages-element {
        margin-top: 0%;
    }
}

@media (max-width: 760px) {
    .advantages-container {
        height: 105vh;
    }

    .advantages-element {
        margin-bottom: 10%;
    }

    .advantages-title {
        margin-top: 15vh;
    }

    .advantages-list {
        width: 130%;
    }
    .advantages-title-description-text {
        width: 430px;
    }
}

@media (max-width: 650px) {
    .advantages-container {
        height: 110vh;
    }

    .advantages-element {
        margin-bottom: 20%;
    }

    .advantages-title {
        margin-top: 25vh;
    }

    .advantages-list {
        width: 120%;
    }
}

@media (max-width: 560px) {
    .advantages-list {
        width: 450px;
    }
    .advantages-title-description-text {
        width: 350px;
    }
}

@media (max-width: 540px) {
    .advantages-title-description-text {
        width: 300px;
    }

    .list-container > li {
        padding-top: 20px;
    }

    .advantages-title-description-text, .list-container > li {
        font-size: 18px;
    }

    .advantages-title-text {
        font-size: 35px;
    }
}

@media (max-width: 460px) {
    .advantages-list {
        width: 310px;
    }
    .advantages-title-description-text {
        width: 300px;
    }

    .advantages-list {
        width: 95vw;
    }
}

@media (max-width: 400px) {
    .advantages-container {
        height: 120vh;
    }

    .advantages-element {
        margin-bottom: 30%;
    }
}

@media (max-width: 370px) {
    .advantages-container {
        height: 150vh;
    }

    .advantages-element {
        margin-bottom: 25%;
    }
}


.map-container {
    height: 85vh;
    width: 100%;
    background-color: #262626;
    display: flex;
}

.map-element-description, #map-element-source {
    width: 50%;
    height: 100%;
}

.map-element-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    padding-left: 50px;
}

.map-element-description-title {
    font-weight: bold;
    font-size: 60px;  
}

.map-element-addres {
    color: #0069e0;
    font-size: 22px;
}

.map-element-name {
    font-size: 28px;
    line-height: 35px;
}

@media (max-width: 1140px) {
    .map-element-description-title {
        font-size: 50px;  
    }
    
    .map-element-addres {
        font-size: 18px;
    }
    
    .map-element-name {
        line-height: 30px;
    }
}

@media (max-width: 1000px) {
    .map-container {
        height: 150vh;
        flex-direction: column;
    }

    .map-element-description {
        padding-left: 0%;
    }

    .map-element-description-title, .map-element-name, .map-element-addres {
        width: 85%;
        margin-left: 40px;
    }

    .map-element-description, #map-element-source {
        width: 100%;
        height: 50%;
    }  
}

@media (max-width: 400px) {
    .map-container {
        height: 220vh;
    }

    .map-element-description {
        height: 50%;  
    }

    #map-element-source {
        height: 50%;
    }

    .map-element-addres {
        font-size: 17px;
    }
}


.contact-container {
    height: 80vh;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-element-title {
    height: 80%;
    width: 70%;
    border-bottom: 1px solid rgba(110, 110, 110, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-title-text {
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 50px;
}

.contact-title-info {
    margin-top: 25px;
    font-size: 25px;
    line-height: 35px;
}

.contact-location-container {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
}

.contact-location-element {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

@media (max-width: 1270px) {
    .contact-element-title {
        width: 85%;
    }
}

@media (max-width: 420px) {
    .contact-container {
        height: 100vh;
    }
}



.footer-container {
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.footer-description {
    font-weight: bold;
}