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

@font-face {
    font-family: 'DM_Sans';
    src: url(fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf);
}


body{
    font-family: 'DM_Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #F1EFEB;
}
.wrapper{
    width: 1200px;
    margin: auto;
}
.sec_outher{
    padding: 96px 0px;
}
.sec_outher_min{
    padding: 48px 0px;
}

p, li{
    font-size: 18px;
    line-height: 150%;
    color: #888279;
    font-weight: 400;
}
p{
    margin: 0px;
    margin-bottom: 24px;
}
p.large{
    font-size: 24px;
}
p strong{
    font-weight: 700;
}
a{
    text-decoration: none;
    color: black;
}
h1{
    color: #1A1918;
    font-size: 96px;
    line-height: 100%;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 48px;
}
h2{
    color: #1A1918;
    font-size: 48px;
    line-height: 100%;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 48px;
}
h3{
    font-size: 24px;
    line-height: 100%;
    color: #1A1918;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 24px;
    letter-spacing: -0.05rem;
}
h4{
    color: #1A1918;
    font-size: 10px;
    line-height: 100%;
    font-weight: 400;
    margin: 0px;
    margin-bottom: 48px;
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(26, 25, 24, 0.15);
    border-radius: 64px;
}
h5{
    line-height: 100%;
    font-size: 12px;
    font-weight: bold;
    color: #AEBDBA;
    margin: 0px;
}

.button_box{
    display: inline-flex;
    color: #fff;
    background-color: #E8C15D;
    font-size: 12px;
    line-height: 100%;
    white-space: nowrap;
    padding: 4px;
    text-decoration: none;
    transition-duration: 0.4s;
    position: relative;
    overflow: hidden;
    border-radius: 64px;
    border: none;
    align-items: center;
}
.button_box>span{
    margin-left: 32px;
    text-align: center;
}
.button_box::after{
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    margin-left: 24px;
    background-image: url('img/button.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.button_box:hover{
    background-color: #edab00;
    cursor: pointer;
}

@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;
 }