/* 
 Theme Name: Hotel Orle
 Theme URI: noveo.pl
 Author: noveo.pl
 Author URI: noveo.pl
 Description: Custom theme
 Version: 1.0 
*/

@font-face {
    font-family: 'GILROY';
    src: url(fonts/GILROY/Gilroy-Medium.ttf);
    font-weight: 400;
}
@font-face {
    font-family: 'GILROY';
    src: url(fonts/GILROY/Gilroy-Semibold.ttf);
    font-weight: 500;
}

body{
    font-family: 'GILROY', sans-serif;
    margin: 0px;
    padding: 0px;
    /*letter-spacing: 0.05rem;*/
}
.wrapper{
    width: 1248px;
    margin: auto;
}
.wrapper-full{
    width: 1640px;
    max-width: 100%;
    margin: auto;
}
.sec_outher{
    padding: 96px 0px;
}
.sec_outher_min{
    padding: 48px 0px;
}

p, li{
    font-size: 18px;
    line-height: 150%;
    color: #959A9F;
    font-weight: 400;
}
p{
    margin: 0px;
    margin-bottom: 24px;
}
p.large{
    font-size: 24px;
}
p strong{
    font-weight: 600;
}
a{
    text-decoration: none;
    color: black;
}
h1{
    color: #2A334A;
    font-size: 48px;
    line-height: 115%;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 48px;
}
h2{
    color: #2A334A;
    font-size: 48px;
    line-height: 115%;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 48px;
}
h3{
    font-size: 12px;
    line-height: 100%;
    color: #B4B9BE;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 48px;
}
h4{
    color: #2A334A;
    font-size: 32px;
    line-height: 115%;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 24px;
}
h5{
    line-height: 100%;
    font-size: 24px;
    font-weight: 400;
    color: #2A334A;
    margin: 0px;
    margin-bottom: 24px;
}

.button_box{
    display: inline-flex;
    color: #FFF;
    background-color: #2A334A;
    font-size: 14px;
    line-height: 100%;
    white-space: nowrap;
    padding: 24px 32px;
    text-decoration: none;
    transition-duration: 0.4s;
    position: relative;
    overflow: hidden;
    border: none;
    align-items: center;
    font-weight: 500;
    border: 0px;
}
.button_box>span{
    text-align: center;
    z-index: 2;
}
.button_box:hover{
    /*background-color: #111e41;*/
    /*color: #2A334A;*/
    cursor: pointer;
}

.front_hero_section>div>video{
	filter: saturate(1.2);
}

.button_box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 2px solid #FFF;
    box-sizing: border-box;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.button_box::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease; 
}
.button_box:hover::after,
.button_box:hover::before{
    transform: scaleX(1);
}

@keyframes fade-in {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-5%, 0, 0);
      transform: translate3d(-5%, 0, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
 }
 .fade-in-element {
    animation: fade-in 0.8s;
 }
 .hidden {
    opacity: 0;
 }