@font-face {
  font-family: 'Moderat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/css/Moderat-Regular.woff2) format('woff2'),url(/css/Moderat-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Moderat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/css/Moderat-Medium.woff2) format('woff2'),url(/css/Moderat-Medium.woff) format('woff');

}
@font-face {
  font-family: 'Moderat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/css/Moderat-Bold.woff2) format('woff2'),url(/css/Moderat-Bold.woff) format('woff');

}

/*//////////////////////////////////////////////////////////////////*/
body{
	font-family: 'Moderat',sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: .2px;
	font-weight: 400;
	margin: 0;
}
a{text-decoration: none}

/*//////////////////////////////////////////////////////////////////*/

.green{
	background-color: #245745;
}
.green2{
	background-color: #1F824A;
}
.pink{
	background-color: #E37873;
}
.sand{
	background-color: #E8D9C4;
}
.blue{
	background-color: #3D5C9C;
}
.coral{
	background-color: #E08545;
}
/*//////////////////////////////////////////////////////////////////*/
body{
	background-color: #245745;
}
.page{
    min-height: 100vh;
}

.logo{
    position: absolute;
    left: 20px;
    top: 20px;
}
.logo>a{
}
.logo>a>img{
    width: 200px;
    display: block;
}

.logo2{
    position: absolute;
    top: 0;
    right: 0;
}
.logo2>a{}
.logo2>a>img{
    width: 300px;
    display: block;
}

.btn{
    border-radius: 40px;
    color: white;
    text-align: center;
    padding: 10px 20px;
}

.box_centered{
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.box_centered>.text{
    text-align: center;
    color: white;
    font-size: 100px;
    max-width: 100%;
    width: 900px;
    margin: 0 auto 40px;
    line-height: 110%;
    font-weight: 600;
    font-weight: 800;
    /* font-weight: normal; */
}
.box_centered>.btns{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 20px;
}
.box_centered>.btns>.btn{
    width: 200px;
    font-size: 24px;
    transition: all .2s linear;
}
.box_centered>.btns>.btn:nth-of-type(1){
    background-color: #E37873;
}
.box_centered>.btns>.btn:nth-of-type(2){
    background-color: #1F824A;
}
.box_centered>.btns>.btn:nth-of-type(1):hover{
    color: #E37873;
    background-color: #fff;
}
.box_centered>.btns>.btn:nth-of-type(2):hover{
    color: #1F824A;
    background-color: #fff;
}

.social_bar{
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.social_bar>a{
    width: calc(33.33% - 60px);
    display: block;
    width: 60px;
}
.social_bar>a>img{
    width: 60px;
    display: block;
}

.zvirata{
    background-image: url(/img/hrosi.svg);
    background-size: 60% auto;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 800px)
{
    .logo>a>img
    {
        width: 100px;
    }
    .logo2>a>img
    {
        width: 200px;
    }
    .box_centered
    {
        transform: initial;
        left: 0;
        right: 0;
        top: 0;
        margin: auto;
        padding: 20px;
        /* margin-top: calc(110px + 0px); */
        transform: translateY(-50%);
        top: 50%;
        max-width: calc(100% - 40px);
        width: 400px;
    }
    .box_centered>.text{
        font-size: 50px;
    }
    .box_centered>.btns>.btn{
        width: 140px;
        font-size: 20px;
    }
    .social_bar{width: calc(100% - 40px);}
    .social_bar>a{
        width: calc(33.33% - 60px);
    }
    .social_bar>a>img{
        margin: auto;
    }
    .zvirata{
        background-size: 140%;
    }

}

@media only screen and (max-width: 400px){

    .box_centered>.text{
        font-size: 35px;
    }
}
@media only screen and (max-height: 400px){
    .box_centered{
        transform: initial;
        position: initial;
        margin: 100px auto;
    }
    .social_bar{
    position: initial;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    }
}

/*cookies*/
.cookiebar{
    background-color: white;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
    min-height: 0;
    bottom: -150px;
    transition: 0.2s all linear;
    letter-spacing: initial;
    line-height: 120%;
}
.cookiebar>.content{
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}
.cookiebar>.content>.left{
    padding-right: 50px;
    max-width: 100%;
    box-sizing: border-box;
    width: 700px;
}
.cookiebar>.content>.left .header{margin-bottom: 10px}
.cookiebar>.content>.left .text{
}
.cookiebar>.content>.btns{
    gap: 0 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    font-size: 20px;
}
.cookiebar>.content>.btns .btn{
    cursor: pointer;
    display: block;
    background-color: black;
    color: #fff;
    padding: 15px 20px;
    border: initial;
    width: 120px;
    text-align: center;
    float: left;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 0%);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 11px 0px;
    background-color: #E37873;
}
.cookiebar>.content>.btns .btn:hover{
    background-color: black;
    color: white;
}
.cookiebar>.content>.btns .btn.ne{
    /* margin-left: 10px; */
}
.cookiebar.active{
    bottom: 0;
}
@media only screen and (max-width: 1000px){
    .cookiebar{
        bottom: -300px;
    }
    .cookiebar>.content>.btns
    {
        margin-top: 25px;
        font-size: 16px;
    }
    .cookiebar>.content>.left{
        padding-right: 0;
    }
}
/*cookies*/