/*********************** NAVIGATOR ************************/

.nav-bar__responsive {
    display: none;
}

.nav-bar {
    display: block;
}

.nav-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 768px;
    margin: 0 auto;
    padding: 0 10px;
}

.nav-bar__logo {
    padding: 10px 0;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}

.nav-bar__li {
    display: inline-block;
    padding-left: 30px;
}

.nav-bar__li a {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8rem;
    color: #fff;
}

.nav-bar__li a:hover {
    padding-bottom: 7px;
    border-bottom: 2px solid #fff;
    transition: all 0.5s;
}

/********************* HEADER SLIDER *********************/

.header-slider__container {
    background-image: url("../images/header-background-desktop.jpg");
}

/********************* SECTION TOP *********************/

.section-top__container {
    display: flex;
    width: 768px;
    margin: 0 auto;
}

.section-top__text {
    width: 50%;
    padding-right: 20px;
}

.section-top__img {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    padding-top: 75px;
}

.section-top__img--01, .section-top__img--02 {
    width: 50%;
    height: auto;
    padding: 0 10px;
    
}

/********************* SECTION MIDDLE *********************/

.section-middle__container {
    width: 768px;
    margin: 0 auto;
}

.section-middle__galery--item-1 {
    background-image: url("../images/galery-img-3-desktop.jpg");
}

.section-middle__galery--item-2 {
    background-image: url("../images/galery-img-2-desktop.jpg");
}

.section-middle__galery--item-3 {
    background-image: url("../images/galery-img-1-desktop.jpg");
    background-position: center;
    background-size: cover;
}

/********************* SECTION BOTTOM *********************/

.section-bottom__container {
    width: 768px;
    margin: 0 auto;
}

.section-bottom__article {
    display: flex;    
}

.section-bottom__article--card:first-child {
    padding-right: 20px;
}

.section-bottom__article--card:last-child {
    padding-left: 20px;
}

/************************** FOOTER **************************/

/* FOOTER TOP */
.footer-top {
    display: flex;
    width: 768px;
    margin: 0 auto;
}

.footer-top__element-1, .footer-top__element-3 {
    width: 25%;
}

.footer-top__element-2 {
    width: 50%;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
}

.footer-top__element-3 {
    padding-top: 100px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 768px;
    margin: 0 auto;
}




