* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    color: white;
}

html{
    width:100%;
    overflow-x:; hidden;
}

body {
    width:100%;
    overflow-x: hidden;
    background-color: black;
}

#header {
    position: fixed;
    margin-top: 0;
    z-index: 1000;
}

#header-nav-menu li.nav-item > .nav-link {
    color: rgb(242, 236, 201);
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 120%;
    display: inline-block;
}


#header li.nav-item:not(:last-child)::after {
    /*content: "\2022";*/
    content: "";
    display: inline-block;
    margin-left: 3px;
    margin-right: 5px;
    color: rgb(242, 236, 201);
}

#header .logo{
    display: block;
    max-height: 64px;
}

#footer{
    z-index: 1000;
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: black;
    font-weight: 300;
}

.language{
    margin-bottom: 4px;
}

.language li{
    display: inline-block;
    text-align: center;
}

.language li > a {
    color: rgb(242, 236, 201);;
    text-transform: uppercase;
}

.language li:not(:last-child)::after{
    /*content: "\2022";*/
    content: "";
    display: inline-block;
    color: rgb(242, 236, 201);;
    margin-left: 8px;
    margin-right: 6px;
}

.social-links{
    margin-bottom: 0;
}

.social-links li{
    display: inline-block;
    text-align: center;
}

.social-links li > a {
    color: white;
    text-transform: uppercase;
}

.social-links li > a > img {
    max-width: 32px;
}

.social-links li:not(:last-child)::after{
    content: "";
    display: inline-block;
    color: white;
    margin-left: 8px;
    margin-right: 6px;
}

.section-box {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    font-weight: 300;
    overflow: hidden;
}

.section-box strong {
    font-weight: 700;
}

/* home */
.section-box.home {
    background-image: url("../images/background-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-box.home .logo-wrapper{
    background: rgba(0,0,0,0.7);
}

/* about */
.section-box.about {
    background-image: url("../images/background-2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* services */
.section-box.services {
    background-image: url("../images/background-3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.service-wrapper{
    background-color: rgba(0,0,0,0.7);
    height: 100%;
    padding: 15px;
}

.service-wrapper h3{
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-size: 115%;
    font-weight: 300;
    letter-spacing: 2px;
}

.service-wrapper img{
    margin-top: 4px;
    margin-bottom: 16px;
}

.service-wrapper p{
    text-align: left;
    font-size: 14px;
}

#service-slider .slick-track{
    display: flex;
}

#service-slider .slick-slide {
    margin-right: 30px;
    height: auto;
}

#service-slider .slick-list {
    margin-right: -30px;
}

#service-slider-bullets li > button{
    display: none;
}

#service-slider-bullets ul{
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

#service-slider-bullets li{
    list-style: none;
    height: 3px;
    width: 30px;
    background-color: white;
    margin-left: 4px;
    margin-right: 4px;
    border-radius: 0;
    cursor: pointer;
}

#service-slider-bullets li.slick-active{
    background-color: rgb(242, 236, 201);
}

/* gallery */
.section-box.gallery {
    background-image: url("../images/background-4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


/* contacts */
.section-box.contacts {
    background-image: url("../images/background-5.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#contact-form input, #contact-form textarea{
    background-color: rgba(0,0,0,0.6);
    border-radius: 0;
    border-width: 1px;
    color: white;
    text-transform: uppercase;
}

#contact-form-response *{
    color: #155724 !important;
}



/* util */
h2.title {
    font-size: 360%;
    letter-spacing: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(242, 236, 201);
    text-align: center;
    margin-bottom: 32px;
}


.btn.btn-primary{
    text-transform: uppercase;
    color: black;
    background-color: white;
    border-radius: 0;
    border: none;
    font-size: 110%;
    font-weight: 300;
    padding: 8px 24px;
}

.underline{
    text-decoration: underline;
}


.carousel-item {
    height: 100vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


@media (max-width: 1200px) {
    #header {
        position: absolute;
    }

    #header .navbar{
        position: relative;
        /*top: -24px;*/
    }

    #header li.nav-item:not(:last-child)::after {
        display: none;
    }

    #header li {
        text-align: center;
    }

    #header-nav-menu{
        background: rgba(0,0,0,0.9);
        margin-top: 12px;
        position: fixed;
        left: 0px;
        width: 100%;
        top: 64px;
    }

    #header .logo{
        display: block;
        max-height: 64px;
    }


          
    #footer{
        position: static;
        /*background-color: black;*/
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .section-box{
        min-height: 100vh;
        height: auto; !important;
    }

    /* aos transition delay */
    [data-aos-delay] {
        transition-delay: 0s !important;
    }

}

@media (max-width: 767.98px) {
    h2.title {
        font-size: 240%;
    }
}