* {
    box-sizing: border-box;
}


body {
    font-family: 'Roboto Slab', sans-serif;
}

:root {
    --light-blue: #9DD7FF;
    --blue: #1E5C90;
    --custom-black: rgba(0, 0, 0, 0.699);
    --black-text: rgba(0, 0, 0, 0.959);
    --dark-green: #103727;
}

a {
    text-decoration: none !important;
}

p {
    line-height: 2.5rem;
    font-size: 16px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.text-white {
    color: #ffff;
}

.py-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-5 {
    padding-right: 5px;
    padding-left: 5px;
}


.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mb-0 {
    margin-bottom: 0;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}


.btn-text-white {
    color: #ffff;
}

.btn-standard {
    border-radius: 0;
    border: 1px solid white;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 15px;
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.btn-standard > .btn-arrow {
    font-size: 14px;
    padding-left: 5px;
}

.btn-standard:hover {
    color: var(--black-text);
    background-color: #fff;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.btn-standard:focus {
    box-shadow: none;
    outline: none !important;
}

.custom-btn {
    color: #ffff;
    border: 1px solid white;
    background-color: transparent;
    border-radius: 0;
}

h1, .h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 54px;
}

h3 {
    font-size: 22px;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
}

.bg-standard-blue {
    background-image: url('../img/sections_back.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}




/*******************************************
                HEADER
*******************************************/
header {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    /* font-family: 'Roboto Slab', serif; */
    min-height: 100vh;
    background-image: url('../img/cover_photo.jpg');
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    max-width: 100vw;
}

.main-nav {
    background-color: transparent;
    transition: background-color 200ms linear;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.hero-section {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90vw;
}

.hero-section h4 > span {
    padding-top: 5px;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-items li {
    padding: 0;
}

.main-nav a {
    color: white;
}

.main-nav li > a:hover, .nav-list .active a {
    background-color: transparent;
    color: var(--light-blue);
}

.navbar-logo-desk {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 15px;
}

.navbar-logo-desk img {
    max-height: 100px;
}








/**************************************
            BANNER SECTION
**************************************/
.banner-section h3 {
    color: var(--black-text);
}

.banner-pin {
    color: var(--blue);
    padding-bottom: 5px;
}

.address-text {
    padding-top: 5px;
    padding-left: 19px;
    margin-bottom: 0;
}





/**************************************
            FOOTER SECTION
**************************************/
footer {
    background: black;
    color: #ffff
}

footer img {
    vertical-align: middle;
    height: 25px;
}

footer a {
    color: white;
    text-decoration: underline !important;
}

footer a:hover, footer a:active, footer a:focus {
    color: rgb(244, 124, 76);
}






/**************************************
            ABOUT-US SECTION
**************************************/
.about-us button:hover {
    color: var(--dark-green);
}

.text-centered {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.bg-about-left {
    background-image: url('../img/about_us_left.jpg') no-repeat;
    position: relative;
}

.about-us .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide_right, .slide_left {
    visibility: hidden;
}

.slide-right {
    animation-name: slide-right;
}

.slide-left {
    animation-name: slide-left;
}

.slide-right, .slide-left {
    animation-duration: 1s;
    visibility: visible;
}

@keyframes slide-right {
    0% {
        opcaity: 0;
        transform: translateX(-75%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slide-left {
    0% {
        opcaity: 0;
        transform: translateX(75%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}











/**************************************
            RESERVATION SECTION
**************************************/
.reservation-section h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: var(--blue);
}

.reservation-section h2 {
    color: var(--black-text);
}

.reservation-section p {
    margin-bottom: 30px;
    color: var(--black-text);
}

.reservation-section button {
    background-color: #fff;
    border: 1px solid var(--blue);
    color: var(--blue);
    padding-left: 30px;
    padding-right: 10px;
}

.reservation-section .btn-arrow {
    padding-left: 20px;
}

.reservation-section button:hover {
    background-color: var(--blue);
    color: #ffff;
}









/**************************************
            GALLERY SECTION
**************************************/
.gallery-section {
    color: #ffff;
}

.gallery-section h2 {
    margin-top: 0px;
    margin-bottom: 40px;
}

.gallery-section img {
    border: 3px solid #fff;
}

.owl-dots {
    margin-top: 20px !important;
}

.owl-theme .owl-dots .owl-dot span {
    border: 1px solid #fff;
    background-color: transparent;
    width: 13px;
    height: 13px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffff;
}

.owl-prev, .owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border: 0px solid black;
}

.owl-prev {
    left: -25px; 
}

.owl-next {
    right: -25px;
}

@media screen and (min-width:1300px) {
    .owl-prev { left: -60px; }
    .owl-next { right: -60px; }
}

@media (min-width: 768px) and (max-width: 799px) {
    .owl-prev { left: -22px; }
    .owl-next { right: -22px; }
}

.owl-prev i, .owl-next i { 
    transform : scale(3);
    color: rgba(204, 204, 204, 0.562);
}

.owl-prev i:hover, .owl-next i:hover {
    color: white;
} 

.owl-nav button:hover {
    background: transparent !important;
}







/**************************************
            CONTACT SECTION
**************************************/
.contact-section h2,
.contact-section h3,
.contact-section p {
    color: var(--black-text);
}

.soc-icon-contact a {
    margin-left: 0;
    border: none;
    padding: 0 !important;
    text-align: center;
}

.soc-icon-contact a i {
    padding: 8px;
    color: black;
    width: 30px;
}

.soc-icon-contact a i:hover {
    color: #ffff;
    background-color: var(--blue) !important;
}








/*************************************
            RESPONSIVE
*************************************/
@media screen and (min-width: 768px) {
    /* GENERAL */
    .pl-sm-0 {
        padding-left: 0 !important;
    }

    .ml-sm-0 {
        margin-left: 0 !important;
    }

    .centered-content {
        padding: 8rem 4rem;
        text-align: center;
    }

    .d-sm-block {
        display: block;
    }


    /* HEADER */
    .navbar-brand {
        display: none;
    }

    .nav-list a {
        padding: 0 15px !important;
        line-height: 14px !important;
        font-size: 14px;
        border: none;
        border-right: 1px solid #fff;
        background-color: transparent;
    }

    .soc-icon {
        width: 56px;
    }

    .soc-icon a {
        border: none;
        padding: 0 !important;
        margin: 0 16px;
        text-align: center;
    }

    .soc-icon a i {
        padding: 8px;
        width: 30px;
    }

    .soc-icon a i:hover {
        color: #ffff;
        background-color: var(--blue) !important;
    }

    .navbar-fixed-top.scrolled {
        background-color: var(--custom-black) !important;
        transition: background-color 200ms linear;
    }

    .social-icon-mobile {
        display: none;
    }

    .navbar-header button {
        padding: 10px 0;
        margin: 10px 15px;
    }


    /* ABOUT US */
    .about-us .row {
        overflow-y: hidden;
    }

    /* CONTACT */
    .contact-section .address-text {
        padding-left: 12px;
    }

    

}




@media screen and (max-width: 767px) {
    /* GENERAL */
    .d-mobile-block {
        display: block;
    }

    h1 {
        font-size: 37px;
    }

    .h1 {
        font-size: 33px;
    }

    h3 {
        font-size: 18px;
    }

    .centered-content {
        padding: 4rem 0;
        text-align: center;
    }

    .px-xs-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .py-8 {
        padding-top: 4rem;
        padding-bottom: 1.5rem;
    }

    .text-xs-center {
        text-align: center;
    }



    /* HEADER */
    #navbar {
        width: 0;
        position: fixed;
        z-index: 1;
        top: 54px;
        right: 0;
        background-color: var(--custom-black);
        overflow-x: hidden;
        transition: 0.5s;
        margin-right: 0 !important;
        border-bottom: 1px solid #fff;
        display: block;
    }

    .mobile-nav {
        border-top: 1px solid white;
        border-bottom: 1px solid white;
    }

    .main-nav {
        background-color: var(--custom-black);
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #ffff;
    }

    .main-nav-items {
        padding: 0;
        border-bottom: 1px solid white;
    }

    .navbar-brand {
        max-height: 50px;
        max-width: 180px;
    }

    .navbar-logo-desk {
        display: none;
    }

    .navbar-toggle {
        margin-top: 12px;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        margin-top: 0;
        margin-right: 0 !important;
        border-top: 1px solid #ffff;
    }

    .nav-list li {
        width: 100%;
    }

    .main-nav li > a {
        background-color: transparent;
        transition: background-color 300ms linear;
    }

    .main-nav li > a:hover, .main-nav li > a:active, .nav-list .active a {
        background-color: var(--light-blue);
        color: black;
        transition: background-color 300ms linear;
    }

    .toggle-button {
        margin-right: 3px;
    }

    .toggle-button span {
        background-color: white;
    }

    .clicked span{
        background-color: var(--light-blue);
      }

    .navbar-nav {
        margin: 0;
    }

    .social-icon-mobile {
        position: fixed;
        top: 13px;
        right: 10%;
        margin-bottom: 0;
        list-style-type: none;
        line-height: 33px;
        font-size: 1.2em;
        text-align: center;
    }

    .social-icon-mobile a {
        width: 30px;
        margin-right: 10px;
        /* padding-left: 8px; */
    }

    .soc-icon {
        display: none !important;
    }


    /* HERO */
    .hero-section {
        width: 90vw;
    }

    .order-xs-2 {
        order: 2;
    }

    .about-us .row {
        flex-direction: column;
    }


    /* BANNER */
    .address-text {
        font-size: 14px;
        padding-left: 16px;
    }

    
    /* CONTACT */
    .contact-section p {
        line-height: normal;
        font-size: 16px;
    }

    .contact-section .address-text {
        padding-left: 0;
    }


    /* screen <386px  */
    @media screen and (max-width: 385px) {
        h1, .h1 {
            font-size: 30px;
        }

        h3 {
            font-size: 15px;
            word-break: keep-all;
        }

        p {
            font-size: 11px;
            line-height: 1.5rem;
        }

        .address-text {
            padding-left: 14px;
            font-size: 12px;
        }
    }

}