html{
    scroll-behavior: smooth;
} 

body {
    margin: 0;
    padding: 0;
    background: #222;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    display: inline-flex;
    flex-direction: column;
}

/* Logo Bar */
.logo_bar {
    background-color: white;
    height: 250px;
    display: inline-flex;
    width: 100%;
}

.logo_item {
    margin-left: 200px;
}

.phone_link {
    float: right;
    height: 200px;
    width: 100%;
    height: 100%;
    display: inline-flex;
    background-image: url('../resources/banner.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.number {
    color: #1a70b6;
    font-size: 80px;
    font-style: oblique;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    float: left;
    margin-right: 25px;
    margin-left: 200px;
}

.phone_item {
    width: 100px;
    height: 100px;
    margin-top: 70px;
}

/* Nav Bar */
.navbar {
    background-color: #00b9ff;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;
}

.navbar_menu {
    padding: 0;
    list-style: none;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 20px 0;
}

.menu_items {
    margin: 0 30px 0 30px;
    color: white;
    text-decoration: none;
    font-size: larger;
}

.menu_items:hover {
    color: #0f44d8;
}

.social_media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 10px 10px;
    height: 50px;
}

.facebook_logo {
    height: 40px;
    width: 40px;
    margin-right: 30px;
    border: 2px solid transparent;
    padding: 2px;
}

.facebook_logo:hover {
    border: 2px solid white;
    padding: 2px;
}

.linkedin_logo {
    height: 40px;
    width: 40px;
    margin-right: 30px;
    border: 2px solid transparent;
    padding: 2px;
}

.linkedin_logo:hover {
    border: 2px solid white;
    padding: 2px;
}

.instagram_logo {
    height: 40px;
    width: 40px;
    margin-right: 30px;
    border: 2px solid transparent;
    padding: 2px;
}

.instagram_logo:hover {
    border: 2px solid white;
    padding: 2px;
}

/* Cazuri */
.gallery {
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.gallery .block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 20px;
    margin-top: 100px;
    margin-bottom: 50px;
}

.gallery .block .text {
    background: #360033;
    background: -webkit-linear-gradient(to right, #0b8793, #360033);
    background: linear-gradient(to right, #0b8793, #360033);
    display: inline-flex;
    justify-content: center;
    width: 40%;
    color: white;
    border-radius: 50px;
}

.gallery .block .container {
    background-color: rgb(14, 144, 196);
    border-radius: 5px;
    box-shadow: 20px 20px 50px black;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.gallery .block #set_1 {
    width: 60%;
}

.gallery .block #set_2 {
    width: 80%;
}

.gallery .block #set_4 {
    width: 60%;
}

.gallery .block .container img {
    width: 300px;
    height: 300px;
    margin: 20px;
    border: 5px outset white;
    border-radius: 10px;
}

.gallery .block .modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.750);
}

.gallery .block .modal .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.gallery .block .modal .close:hover,
.gallery .block .modal .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.gallery .block .modal-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgb(14, 144, 196);
    border: 5px solid white;
    margin: auto;
    padding: 0;
    width: 800px;
    height: 600px;
}

.gallery .block .modal-content .prev,
.gallery .block .modal-content .next {
    cursor: pointer;
    top: 50%;
    width: auto;
    padding: 16px;
    margin: 0 5px 0 5px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    -webkit-user-select: none;
}

.gallery .block .modal-content .prev:hover,
.gallery .block .modal-content .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery .block .modal-content .mySlides_1 .numbertext,
.gallery .block .modal-content .mySlides_2 .numbertext,
.gallery .block .modal-content .mySlides_3 .numbertext,
.gallery .block .modal-content .mySlides_4 .numbertext {
    color: #f2f2f2;
    font-size: 30px;
    padding: 8px 12px;
    position: fixed;
}

.gallery .block .modal-content .mySlides_1 img,
.gallery .block .modal-content .mySlides_2 img,
.gallery .block .modal-content .mySlides_3 img,
.gallery .block .modal-content .mySlides_4 img {
    width: 700px;
    height: 500px;
}

/* Footer */
footer {
    width: 100%;
    border-top: 2px solid blue;
    display: inline-flex;
    flex-direction: column;
    background-color: rgb(40, 50, 60);
}

footer .first_box {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer .first_box .info {
    display: inline-flex;
    flex-direction: column;
    margin-left: 100px;
}

footer .first_box .info div {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

footer .first_box .info div p:hover {
    color: #0f44d8;
}

footer .first_box .info span {
    color: rgb(14, 144, 196);
}

footer .first_box .info a {
    text-decoration: none;
}

footer .first_box .info p {
    color: white;
    margin-left: 10px;
    font-size: 20px;
}

footer .first_box .info .social {
    display: inline-flex;
    flex-direction: row;
    margin-top: 20px;
}

footer .first_box .social .fa {
    padding: 20px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    margin-right: 30px;
}
  
footer .first_box .social .fa:hover {
      opacity: 0.7;
}
  
footer .first_box .social .fa-facebook {
    background: #3B5998;
    color: white;
}

footer .first_box .social .fa-linkedin {
    background: #007bb5;
    color: white;
}

footer .first_box .social .fa-instagram {
    background: #dd4b39;
    color: white;
}

footer .first_box .list {
    display: inline-flex;
    flex-direction: column;
}

footer .first_box .list ul {
    list-style: none;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
}

footer .first_box .list li {
    margin: 10px;
    color: white;
}

footer .first_box .list li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

footer .first_box .list li a:hover {
    color: #0f44d8;
}

footer .first_box .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-right: 100px;
    font-size: 30px;
}

footer .second_box {
    color: white;
    background-color: black;
    width: 100%;
    text-align: center;
}

/* RESPONSIVE */
@media only screen and (max-width: 1351px) {
    
    /* Logo Bar */
    .logo_bar {
        display: inline-flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo_item {
        margin-left: 0;
    }

    .phone_link {
        display: none;
    }

    /* Nav Bar */
    .navbar {
        justify-content: center;
        flex-direction: column;
    }

    .navbar_menu {
        display: none;
    }

    .navbar_menu li {
        margin: 5px 0 5px 0;
    }

    .app_button {
        display: none;
    }

    .social_media {
        display: none;
    }

    .navbar_toggle {
        height: 50px;
    }

    #mobile_menu {
        transform: translate(5%, 20%);
    }

    .navbar_toggle .bar {
        display: block;
        cursor: pointer;
    }

    .navbar_toggle .bar {
        width: 25px;
        height: 2px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    #mobile_menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    
    #mobile_menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    #mobile_menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar_menu.active {
        display: inline-flex;
        flex-direction: column;
    }

    .app_button.active {
        display: inline-flex;
        margin: 25px 0 25px 0;
    }

    .social_media.active {
        display: inline-flex;
        margin: 10px 0 10px 0;
    }

    .navbar_menu li {
        margin: 10px 0 10px 0;
    }

    .instagram_logo {
        margin: 0;
    }

    /* Cazuri */
    .gallery .block {
        width: 100%;
    }

    .gallery .block .text {
        width: auto;
        padding: 5px;
    }

    .gallery .block .container {
        width: 90%;
    }

    .gallery .block #set_1 {
        width: 90%;
    }

    .gallery .block #set_2 {
        width: 90%;
    }

    .gallery .block #set_4 {
        width: 90%;
    }

    .gallery .block .container img {
        width: 90%;
    }

    .gallery .block .modal-content {
        width: 90%;
        height: 40%;
    }

    .gallery .block .modal-content .mySlides_1 img,
    .gallery .block .modal-content .mySlides_2 img,
    .gallery .block .modal-content .mySlides_3 img,
    .gallery .block .modal-content .mySlides_4 img {
        width: 100%;
        height: 100%;
    }

    /* Footer */
    footer .first_box {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    footer .first_box .info {
        margin-top: 50px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }
    
    footer .first_box .info div {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
    }

    footer .first_box .info .social {
        flex-wrap: wrap;
    }
    
    footer .first_box .list {
        display: none;
    }
    
    footer .first_box .logo {
        display: none;
    }
}