html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
img,
form,
fieldset,
input,
textarea,
label,
table,
tr,
th,
td,
article,
aside,
footer,
header,
nav,
section,
time,
figure,
figcaption,
audio,
video {
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    overflow-x: hidden;
    font-family: 'Aboreto', sans-serif;
}

h1,
h2,
h3 {
    line-height: 1.5;
    word-spacing: 0.05vw;
}

h1 {
    font-size: 1.5vw;
    font-weight: 300;
}

h2 {
    font-size: 2.2vw;
}

h3 {
    font-size: 2.8vw;
    letter-spacing: 0.1vw;
    color: #fff;
}

p,
a {
    font-size: 1.4vw;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    word-spacing: 0.1vw;
    text-decoration: none;
}

.phone {
    font-size: 3vw;
    font-family: 'Aboreto', sans-serif;
    text-decoration: none;
    color: #313131;
    display: block;
}
.br-mobile {
    display: none;
}


@media only screen and (max-width: 600px) {
    h1 {
        font-size: 5vw;
    }

    h2 {
        font-size: 5.8vw;
    }

    h3 {
        font-size: 6vw;
    }

    p,
    a {
        font-size: 5vw;
    }

    .br-desktop {
        display: none;
    }
    .br-mobile {
        display: block;
    }

    .phone {
        font-size: 8vw;
    }
}

.center {
    text-align: center;
}

.absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.relative {
    position: relative;
}

img.responsive {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    
}

section {
    margin-top: 5vw;
    width: 100%;
}

.filter {
    filter: brightness(0.7);
}

.underline {
    position: relative;

}

.underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.1vw;
    bottom: 0vw;
    left: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.underline:hover::after {
    width: 100%;
}

@media screen and (max-width: 600px) {
    .no-display-mobile {
        display: none;
    }
}

/************* NAVIGATION BAR *************/

/* Style the navigation bar */
nav {
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10vw;
    
    /*box-shadow: 0 0.2vw 0.4vw rgba(0, 0, 0, 0.9);*/
    
    z-index: 6;
    overflow: hidden;
}

/* Style the navigation bar links */
nav a {
    font-size: 1.2vw;
    float: left;
    display: block;
    color: #000;
    text-align: center;
    padding: 1vw 1vw;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: 'Aboreto', sans-serif;
    position: relative;
}

nav a:nth-child(2) {
    margin-left: 2vw;
}

nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.1vw;
    bottom: 0.6vw;
    left: 7.5%;
    background-color: #323232;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

nav li a:hover::after {
    visibility: visible;
    width: 85%;
}

/* Style the logo */
nav a img {
    float: left;
    margin-right: 0.83vw;
    width: 15vw;
    height: auto;
}

/* Style the list */
nav ul {
    list-style-type: none;
    margin: 2vw 3vw 0 0;
    padding: 0;
    overflow: hidden;
    float: right;
    display: flex;
    /* Add this line */
    align-items: center;
    /* Add this line */
}

/* Style the list items */
nav li {
    float: left;
}

/* Style the active link */
nav li a.active {
    font-weight: 700;
}

/* Style the mobile menu button */
#mobile-menu-button,
.icon-container {
    display: none;
}

@media screen and (max-width: 600px) {
    nav {
        height: 22vw;
        justify-content: center;
    }

    #mobile-menu-button {
        display: block;
        position: absolute;
        top: 11vw;
        left: 8vw;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
    }

    #mobile-menu-button .bar {
        width: 10vw;
        height: 0.5vw;
        background-color: #323232;
        margin: 1.8vw 0;
        border-radius: 5px;
    }

    nav ul {
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 20vw;
        left: 0;
        width: 100vw;
        background-color: #323232ed;
        padding: 21.1vw 0;
        z-index: 5;
        transform: translateX(-100%);
        transition: all 0.3s ease-in-out;
    }
    

    nav .nav-pipe {
        display: none;
    }

    nav li {
        display: block;
        margin: 2vw 0 2vw 10vw;
        z-index: 10;
    }

    nav a {
        font-size: 5vw;
        color: #fff;
        z-index: 10;
    }

    nav a img {
        float: center;
        margin-right: 0;
        width: 35vw;
    }
}

/************* Section HERO *************/
.hero {
    position: relative;
    display: block;
    width: 100%;
    height: 62.3vw;
    z-index: 1;
}
.hero picture {
    position: relative;
    z-index: 1;
}
.hero picture img {
    margin: 0 auto;
}

.hero .black-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #212121;
    height: 7vw;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 600px) {
    .hero {
        height: 147vw;
    }
    .hero .black-bar {
        height: 22vw;
    }

}

/************* SLIDESHOW *************/
.slideshow-container {
    position: relative;
    width: 100vw;
    height: 42.55vw;
    margin: 0 auto;
    display: block;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mySlides {
    max-width: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0);
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}


.mySlides img {
    width: 100%;
    height: auto;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1vw;
    color: #fff;
    font-weight: bold;
    font-size: 4vw;
    transition: 0.4s ease;
    user-select: none;
    z-index: 4;
}

.prev {
    left: 0.5vw;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 2vw;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    transform: scale3d(1.5, 1.5, 1.5);

}

.mySlides.active {
    transform: translateX(0);
}

.mySlides.left {
    transform: translateX(-100%);
}

.mySlides.right {
    transform: translateX(100%);
}

/************* FORM *************/
form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: #e2e2e2;
    border: 1px solid #000;
    text-transform: none;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 200;
    letter-spacing: 0.2vw;
    margin: 1vw auto;
    padding-left: 2vw;
}
form input:focus,
form textarea:focus {
    outline: none; /* Remove default outline */
    box-shadow: none; /* Remove default box shadow */
    border: 2px solid #000;
}

form input {
    height: 4vw;
    font-weight: 400;
}

form textarea {
    padding-top: 1vw;
    height: 15vw;
    resize: none;
}

form input::placeholder,
form textarea::placeholder {
    color: #000;
    text-transform: none;
}

form input[type=submit] {
    margin-top: 0;
    width: 25%;
    background-color: #212121;
    color: #fff;
    border: 1px solid #212121;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    padding-left: 0;
    font-family: 'Aboreto', sans-serif;
    text-transform: uppercase;
    text-decoration: underline;
}

form input[type=submit]:hover {
    background-color: #fff;
    color: #212121;
}

@media screen and (max-width: 600px) {

    form input {
        height: 10vw;
        margin-bottom: 3vw;
    }

    form textarea {
        height: 40vw;
    }

    form input[type=submit] {
        width: 40%;
        height: 10vw;
        margin-top: 2vw;
    }
}


/************* FOOTER *************/
footer a {
    position: relative;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.2vw;
    margin-bottom: 1vw;
    font-size: 1.2vw;
}
footer p {
    font-size:1.3vw;
}
footer .phone {
    font-size: 2.2vw;
}

footer a.underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.05vw;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

footer a.underline:hover::after {
    width: 100%;
}

footer .f-bar {
    background-color: #212121;
    height: 7vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .dwn {
    cursor: pointer;
    height: 4vw;
    background-color: #797979;
}

footer .dwn img {
    display: inline-flex;
    width: 10vw;
    margin-right: 1vw;
}

footer .f-bar p {
    color: #fff;
    font-family: 'Aboreto', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.03vw;
    text-align: center;

}

footer .f-main {
    display: flex;
    align-items: flex-end;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 3vw 0vw;
}

footer .f-main img {
    width: 40%;
    margin: 0 auto;

}

footer .f-main div {
    display: block;
    width: 25%;
    padding: 0 3vw;
}

footer .f-main .f-sx {
    padding-left: 4vw;
    text-align: left;
}

footer .f-main .f-sx ul {
    list-style-type: none;
    padding: 0;
}

footer .f-main .f-title {
    font-family: 'Aboreto', sans-serif;
    margin-bottom: 3vw;
}

footer .f-main .f-center {
    width: 50%;
    text-align: center;
}

footer .f-main .f-center .Aboreto {
    font-family: 'Aboreto', sans-serif;
    margin-top: 3vw;
    line-height: 2.5vw;
}

footer .f-main .f-center .phone {
    display: block;
    color: #fff;
    margin-top: 3vw;
}

footer .f-main .f-dx {
    text-align: right;
}

footer .f-main .f-dx .f-icons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

footer .f-icons .icon-circle {
    border-radius: 50%;
    padding: 0.6vw 0.5vw 0.6vw 0.7vw;
    background: #ffffff;
    color: #212121;
    margin-right: 1.5vw;
    font-size: 2vw;
    text-align: center;
}

footer .f-icons a:last-child {
    margin-right: 2vw;
}

footer .footer-pipe {
    display: none;
}

@media screen and (max-width: 600px) {
    footer p {
        font-size: 4vw;
    }
    footer a {
        font-size: 4vw;
    }
    footer .phone {
        font-size: 6vw;
    }
    footer .f-bar {
        height: 15vw;
    }

    footer .f-bar p {
        font-size: 3.5vw;
    }

    footer .f-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .f-main .f-sx {
        order: 5;
        width: 80%;
        padding-bottom: 0;
    }

    footer .f-main .f-center {
        order: 1;
        width: 80%;
        text-align: center;
    }

    footer .f-main .f-dx {
        order: 3;
        width: 80%;
        text-align: center;
    }

    footer .f-main .mobile-line {
        display: block;
        width: 80%;
        background-color: #fff;
        height: 1px;
        margin: 10vw auto;
        padding: 0;
    }

    footer .f-main .f-center .Aboreto {
        font-family: 'Aboreto', sans-serif;
        margin-top: 6vw;
        line-height: 6vw;
        font-size: 4vw;
    }

    footer .f-main img {
        width: 60%;
        margin: 5vw auto;
    }

    footer .f-main .f-center .phone {
        margin: 6vw auto 3vw auto;
    }

    footer .f-main .f-dx .f-icons {
        justify-content: center;
    }

    footer .f-icons a {
        letter-spacing: 0;
    }

    footer .f-icons a:first-child {
        margin-right: 1.5vw;
    }

    footer .f-icons a:last-child {
        margin-left: 1.5vw;
    }

    footer .f-icons .icon-circle {
        border-radius: 50%;
        padding: 2vw 2.2vw 2vw 2.2vw;
        background: #ffffff;
        color: #212121;
        margin-right: 0;
        font-size: 8vw;
        text-align: center;
    }

    footer .f-main .f-sx {
        text-align: center;
    }

    footer .f-main .f-sx ul li {
        display: inline;
    }

    footer .footer-pipe {
        display: inline;
    }

    footer .dwn img {
        width: 20vw;
    }
    footer .dwn {
        height: 20vw;
    }
}