@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap');

:root {
    --font-body: 'Open Sans', 'Open Sans';
    --color-primary: #181E36;
    --color-secodary: #A3875F;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    transition: all 0.6s;
}

h1, h2, h3, h4 {
    margin: 0;
}

h1 {
    font-size: 20px;
    line-height: normal;
    text-transform: capitalize;
}

h4 {
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: normal;
}

p {
    margin: 0;
}

a:hover {
    color: var(--color-secodary);
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    list-style: none;
}

::-moz-selection {
    background-color: var(--color-secodary);
    color: #fff;
}
::selection {
    background-color: var(--color-secodary);
    color: #fff;
}

/***************************/
/* SLIDERS */
/***************************/
.slideshow {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;

}
.overlay_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(24 30 54 / 90%);
}

.text_slider {
    position: absolute;
    /* top: 0; */
    /* bottom: 0; */
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 2;
    padding: 0 50px;
}
.text_slider img {
    height: 100px;
    margin-bottom: 10px;
}
.text_slider div:nth-child(2){
    padding-top: 15px;
}
.copyright {
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
    text-align: center;
    padding: 15px 50px;
    border-top: 1px solid rgb(255 255 255 / 10%);
}
.hotel {
    color: var(--color-secodary);
}
.copyright a:hover {
    opacity: .8;
}
