body{
    overflow-y: scroll;
    border:none;
    padding:0px;
    margin:0px;
    -webkit-tap-highlight-color: transparent;
}

.page_cont{
    width: 100%;
    height: auto;
    float: left;
    overflow-x: hidden;
    position: relative;
}

.pageup{
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 100px;
    right: 50px;
    background: #FEBD11;
    opacity: 0;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.pageup:hover{
    background: #373838;
}

.pageup .icon{
    width: 28px;
    height: 28px;
    float: left;
}

.pageup .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #373838;
    stroke-width: 2.5px;
    transform: rotate(-90deg);
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.pageup:hover .icon svg{
    stroke: #FEBD11;
}

.menu{
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    background: #373838;
    z-index: 1000;
    transition: ease-out 350ms;
    -webkit-transition: ease-out 350ms;
    -moz-transition: ease-out 350ms;
}

.menu .inner{
    width: calc(100% - 100px);
    height: auto;
    float: left;
    margin-top: 120px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.menu .inner .line{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 30px;
    text-decoration: none;
}

.menu .inner .line:nth-child(1){
    margin-top: 0;
}

.menu .inner .contact_box{
    width: auto;
    height: auto;
    float: left;
    border-top: 1px solid #FEBD11;
    margin-top: 20px;
    padding-top: 20px;
    display: none;
}

.menu .inner .contact_box .contact{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    clear: left;
    margin-bottom: 15px;
    text-decoration: none;
}

.menu .inner .contact_box .contact:last-child{
    margin-bottom: 0;
}

.menu .inner .contact_box .phone .icon,
.menu .inner .contact_box .email .icon{
    width: 26px;
    height: 26px;
    float: left;
}

.menu .inner .contact_box .phone .icon svg,
.menu .inner .contact_box .email .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #FEBD11;
    stroke-width: 2px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.menu .inner .contact_box .phone .text,
.menu .inner .contact_box .email .text{
    width: calc(100% - 26px - 20px);
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 20px;
    color: #FFFFFF;
    margin-left: 20px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    white-space: nowrap;
}

.menu .inner .contact_box .phone:hover .text,
.menu .inner .contact_box .email:hover .text{
    color: #FEBD11;
}

.menu .inner .line .icon{
    width: 30px;
    height: 30px;
    float: left;
}

.menu .inner .line .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #FEBD11;
    stroke-width: 2.5px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.menu .inner .line:hover .icon svg{
    transform: translateX(10px);
}

.menu .inner .line .text{
    width: calc(100% - 30px - 20px);
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 30px;
    color: #FFFFFF;
    margin-left: 20px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.menu .inner .line:hover .text{
    color: #FEBD11;
}

.header{
    width: 100%;
    height: 120px;
    float: left;
    background: #FEFEFF;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1100;
}

.header .inner{
    width: calc(1600px - 100px);
    height: inherit;
    float: left;
    display: flex;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}

.header .inner .logo{
    width: auto;
    height: calc(100% - 50px);
    float: left;
}

.header .inner .logo svg{
    width: auto;
    height: 100%;
    float: left;
}

.header .inner .box{
    width: auto;
    height: auto;
    float: left;
    margin-right: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header .inner .box .button{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 18px;
    color: #FFFFFF;
    background: #FEBD11;
    border: 2px solid #FEBD11;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    margin-right: 40px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.header .inner .box .button:hover{
    background: #373837;
    border: 2px solid #373837;
}

.header .inner .box .button:last-child{
    margin-right: 0;
}

.header .inner .box .button.light{
    background: none;
    border: 2px solid #FEBD11;
    color: #FEBD11;
}

.header .inner .box .button.light:hover{
    border: 2px solid #373837;
    color: #373837;
}

.header .inner .box .burger{
    width: 46px;
    height: auto;
    float: left;
    cursor: pointer;
}

.header .inner .box .burger .item{
    width: 100%;
    height: 3px;
    float: left;
    background: #FEBD11;
    margin-bottom: 12px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.header .inner .box .burger .item:last-child{
    margin-bottom: 0;
}

.header .inner .box .burger .item:nth-child(2){
    width: calc(100% - 10px);
    margin-left: 5px;
}

.header .inner .box .burger.open .item:nth-child(1),
.header .inner .box .burger.open .item:nth-child(3){
    width: calc(100% - 20px);
    margin-left: 10px;
}

.header .inner .box .burger.open .item:nth-child(2){
    width: 100%;
    margin-left: 0;
}

.block1{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.block1 .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.block1 .inner .panel{
    width: calc(100% /2);
    height: auto;
    float: left;
}

.block1 .inner .panel:nth-child(1){
    display: flex;
    align-items: center;
    flex-direction: column;
}

.block1 .inner .panel:nth-child(2){
    width: calc((100% / 2) - 100px);
    margin-left: 100px;
}

.block1 .inner .panel .photo1,
.block1 .inner .panel .photo2{
    width: calc(100% - 200px);
    height: auto;
    float: left;
    padding-top: calc(((100% - 200px) / 16) * 10);
    position: relative;
    -webkit-box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    -moz-box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    margin-left: -50px;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.block1 .inner .panel .photo2{
    margin-top: -50px;
    margin-left: 50px;
    transform: rotate(2deg);
}

.block1 .inner .panel .photo1 img,
.block1 .inner .panel .photo2 img{
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.block1 .inner .panel .divider{
    width: 80px;
    height: 12px;
    float: left;
    background: #f2f2f2;
    clear: left;
    margin-top: 30px;
}

.block1 .inner .panel .divider:nth-child(4){
    margin-top: 20px;
}

.block1 .inner .panel .head{
    width: auto;
    height: auto;
    float: left;
    font-family: interblack;
    font-size: 80px;
    color: #FEBD11;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: normal;
}

.block1 .inner .panel .text{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: intersemibold;
    font-size: 20px;
    color: #636969;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px;
}

.block1 .inner .panel .box{
    width: auto;
    height: auto;
    float: left;
    margin-top: 30px;
    clear: left;
}

.block1 .inner .panel .box .button{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 20px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 30px;
    text-decoration: none;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block1 .inner .panel .box .button:last-child{
    margin-right: 0;
}

.block1 .inner .panel .box .button:nth-child(1){
    background: #FEBD11;
    border: 2px solid #FEBD11;
    color: #373838;
}

.block1 .inner .panel .box .button:nth-child(2){
    border: 2px solid #373838;
    color: #373838;
}

.block1 .inner .panel .box .button:nth-child(1):hover{
    background: #373838;
    border: 2px solid #373838;
    color:#FEBD11;
}

.block1 .inner .panel .box .button:nth-child(2):hover{
    background: #373838;
    border: 2px solid #373838;
    color:#FFFFFF;
}

.block2{
    width: 100%;
    height: auto;
    float: left;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
}

.block2 .inner{
    width: calc(1400px - 100px);
    height: auto;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block2 .inner .panels{
    width: 100%;
    height: auto;
    float: left;
}

.block2 .inner .panels .panel{
    width: calc((100% - 100px) / 2);
    height: auto;
    float: left;
    margin-left: 100px;
}

.block2 .inner .panels .panel:nth-child(1){
    margin-left: 0;
}

.block2 .inner .panels .panel h2{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 36px;
    color: #373838;
    margin: 0;
    font-weight: normal;
}

.block2 .inner .panels .panel .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 18px;
    color: #636969;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px;
}

.block2 .inner .panels .panel .text strong{
    font-family: interbold;
    color: #373838;
    font-weight: normal;
}

.block2 .inner .panels .panel .box{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 50px;
}

.block2 .inner .panels .panel .box:nth-child(1){
    margin-top: 0;
}

.block2 .inner .panels .panel .box h2{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 36px;
    color: #373838;
    margin: 0;
    line-height: 1.3;
}

.block2 .inner .panels .panel .box .items{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 20px;
}

.block2 .inner .panels .panel .box .items .item{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.block2 .inner .panels .panel .box .items .item:nth-child(1){
    margin-top: 0;
}

.block2 .inner .panels .panel .box .items .item .icon{
    width: 24px;
    height: 24px;
    float: left;
}

.block2 .inner .panels .panel .box .items .item .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke-width: 2.5px;
    stroke: #FEBD11;
}

.block2 .inner .panels .panel .box .items .item .text{
    width: calc(100% - 24px - 20px);
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 18px;
    color: #636969;
    margin: 0;
    margin-left: 20px;
}

.block2 .inner .button{
    width: auto;
    height: auto;
    float: left;
    background: #FEBD11;
    color: #373838;
    border: 2px solid #FEBD11;
    font-family: interbold;
    font-size: 20px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 100px;
    text-decoration: none;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block2 .inner .button:hover{
    background: #373838;
    color: #FEBD11;
    border: 2px solid #373838;
}

.block3{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.block3 .inner{
    width: calc(1000px - 100px);
    height: auto;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.block3 .inner h2{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 36px;
    color: #373838;
    margin: 0;
    font-weight: normal;
}

.block3 .inner .faqs{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 30px;
}

.block3 .inner .faqs .faq{
    width: 100%;
    height: auto;
    float: left;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
}

.block3 .inner .faqs .faq:nth-child(1){
    padding-top: 0;
}

.block3 .inner .faqs .faq:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.block3 .inner .faqs .faq .question{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
}

.block3 .inner .faqs .faq .question .icon{
    width: 28px;
    height: 28px;
    float: left;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block3 .inner .faqs .faq .question .icon svg{
    width: 24px;
    height: 24px;
    float: left;
    stroke: #FEBD11;
    stroke-width: 2.5px;
    transform: rotate(90deg);
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block3 .inner .faqs .faq .question .icon.rotate svg{
    transform: rotate(180deg);
    stroke: #373838;
}

.block3 .inner .faqs .faq .question .text{
    width: calc(100% - 28px - 2px - 15px);
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 20px;
    color: #FEBD11;
    margin-left: 15px;
    line-height: 1.3;
}

.block3 .inner .faqs .faq .answer{
    width: calc(100% - 30px - 15px);
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 18px;
    color: #636969;
    display: none;
    margin-top: 15px;
    margin-left: 45px;
    line-height: 1.5;
}

.block3 .inner .faqs .faq .answer strong{
    font-family: interbold;
    color: #373838;
    font-weight: normal;
}

.block3 .inner .faqs .faq.open .answer{
    display: block;
}

.block4{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.block4 .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.block4 .inner .panel{
    width: calc(100% /2);
    height: auto;
    float: left;
}

.block4 .inner .panel:nth-child(1){
    display: flex;
    align-items: center;
    flex-direction: column;
}

.block4 .inner .panel:nth-child(2){
    width: calc((100% / 2) - 100px);
    margin-left: 100px;
}

.block4 .inner .panel .photo1,
.block4 .inner .panel .photo2{
    width: calc(100% - 200px);
    height: auto;
    float: left;
    padding-top: calc(((100% - 200px) / 16) * 10);
    position: relative;
    -webkit-box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    -moz-box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    box-shadow: 0px 0px 100px -30px rgba(55, 56, 55, 0.5);
    margin-left: -50px;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.block4 .inner .panel .photo2{
    margin-top: -50px;
    margin-left: 50px;
    transform: rotate(2deg);
}

.block4 .inner .panel .photo1 img,
.block4 .inner .panel .photo2 img{
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.block4 .inner .panel .divider{
    width: 80px;
    height: 12px;
    float: left;
    background: #f2f2f2;
    clear: left;
    margin-top: 30px;
}

.block4 .inner .panel .divider:nth-child(4){
    margin-top: 30px;
}

.block4 .inner .panel .head{
    width: auto;
    height: auto;
    float: left;
    font-family: interblack;
    font-size: 80px;
    color: #FEBD11;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: normal;
}

.block4 .inner .panel .head span{
    font-size: 50px;
    clear: left;
    float: left;
}

.block4 .inner .panel .box{
    width: auto;
    height: auto;
    float: left;
    margin-top: 30px;
    clear: left;
}

.block4 .inner .panel .box .item{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    text-decoration: none;
    clear: left;
    margin-top: 20px;
}

.block4 .inner .panel .box .item:first-child{
    margin-top: 0;
}

.block4 .inner .panel .box .item .icon{
    width: 24px;
    height: 24px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 24px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block4 .inner .panel .box .item:hover .icon{
    transform: translateX(5px);
}

.block4 .inner .panel .box .item .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #FEBD11;
    stroke-width: 2.5px;
}

.block4 .inner .panel .box .item .text{
    width: auto;
    height: auto;
    font-family: interbold;
    font-size: 20px;
    color: #636969;
    margin-left: 20px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.block4 .inner .panel .box .item:hover .text{
    color: #373837;
}

.section{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.section.no1,
.section.no3,
.section.no5{
    background: #f2f2f2;
}

.section .inner{
    width: calc(1400px - 100px);
    height: auto;
    float: left;
    padding: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section .inner .head2{
    width: auto;
    height: auto;
    float: left;
    font-family: interblack;
    font-size: 50px;
    color: #FEBD11;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: normal;
    text-align: center;
}

.section .inner .content{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.section.no3 .inner .content,
.section.no4 .inner .content{
    align-items: flex-start;
}

.section .inner .content .images{
    width: calc((100% - 100px) / 2);
    height: auto;
    float: left;
    border-radius: 15px;
    overflow: hidden;
}

.section .inner .content .images .image{
    width: calc(100% / 2);
    height: auto;
    float: left;
    padding-top: calc(100% / 2);
    position: relative;
}

.section .inner .content .images .image img{
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.section .inner .content .block{
    width: calc((100% - 100px) / 2);
    height: auto;
    float: left;
    margin-left: 100px;
}

.section.no2 .inner .content .block:first-child,
.section.no3 .inner .content .block:first-child,
.section.no4 .inner .content .block:first-child,
.section.no5 .inner .content .block:first-child{
    margin-left: 0;
}

.section .inner .content .block .part{
    width: auto;
    height: auto;
    float: left;
    margin-top: 50px;
}

.section .inner .content .block .part:first-child{
    margin-top: 0;
}

.section .inner .content .block .part .head3{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 36px;
    color: #373838;
    margin: 0;
    font-weight: normal;
}

.section .inner .content .block .part .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 18px;
    color: #636969;
    line-height: 1.5;
    clear: left;
    margin: 0;
    margin-top: 20px;
}

.section.no5 .inner .content .block .part .text{
    margin-top: 0;
}

.section .inner .content .block .part .text strong{
    font-family: interbold;
    color: #373838;
    font-weight: normal;
}

.section.no2 .inner .content .block:first-child .part .text{
    margin-top: 0;
}

.section .inner .content .block .item{
    width: auto;
    height: auto;
    float: left;
    margin-top: 10px;
    clear: left;
    display: flex;
    align-items: center;
}

.section .inner .content .block .item:first-child{
    margin-top: 0;
}

.section .inner .content .block .item .icon{
    width: 24px;
    height: 24px;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 24px;
}

.section .inner .content .block .item .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #FEBD11;
    stroke-width: 2.5px;
}

.section .inner .content .block .item .text{
    width: auto;
    height: auto;
    font-family: interregular;
    font-size: 18px;
    color: #636969;
    margin-left: 20px;
    line-height: 1.3;
}

.section .inner .content .block .item .text strong{
    font-family: interbold;
    color: #373838;
    font-weight: normal;
}

.section .inner .button{
    width: auto;
    height: auto;
    float: left;
    background: #FEBD11;
    color: #373838;
    border: 2px solid #FEBD11;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 100px;
    text-decoration: none;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    display: flex;
    align-items: center;
}

.section .inner .button:hover{
    background: #373838;
    border: 2px solid #373838;
}

.section .inner .button .icon{
    width: 22px;
    height: 22px;
    float: left;
}

.section .inner .button .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #373838;
    stroke-width: 2.5px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.section .inner .button:hover .icon svg{
    stroke: #FEBD11;
}

.section .inner .button .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 20px;
    margin-left: 10px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.section .inner .button:hover .text{
    color: #FEBD11;
}

.gallery{
    width: 100%;
    height: auto;
    float: left;
}

.gallery{
    width: 100%;
    height: auto;
    float: left;
}

.gallery .item{
    width: calc(100% / 6);
    height: auto;
    float: left;
    padding-top: calc(100% / 6);
    position: relative;
    background: #636969;
}

.gallery .item img{
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 700;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(100%);
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.gallery .item:hover img{
    filter: grayscale(0%);
}

.gallery .item .overlay{
    width: 100%;
    height: 100%;
    float: left;
    background: rgba(254, 189, 17, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 800;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .item:hover .overlay{
    background: rgba(254, 189, 17, 0.25);
}

.gallery .item .overlay .zoom{
    width: 50px;
    height: 50px;
    float: left;
    background: #FEBD11;
    opacity: 0;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .item:hover .overlay .zoom{
    opacity: 1;
}

.gallery .item .overlay .zoom:hover{
    background: #373838;
}

.gallery .item .overlay .zoom svg{
    width: 26px;
    height: 26px;
    float: left;
    stroke-width: 2.5px;
    stroke: #373838;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.gallery .item .overlay .zoom:hover svg{
    stroke: #FEBD11;
}





.contact{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.contact .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
}

.contact .inner .part:nth-child(1){
    width: calc((100% / 2) - 100px);
    height: auto;
    float: left;
    margin-left: 100px;
    margin-bottom: 100px;
    padding-top: 50px; /* padding and margin - because of position after smooth scroll */
    margin-top: 50px;
}

.contact .inner .part:nth-child(2){
    width: calc((100% / 2) - 200px - 100px);
    height: auto;
    float: left;
    background: #f2f2f2;
    margin-left: 100px;
    margin-bottom: 100px;
    margin-top: 100px;
    padding: 50px;
}

.contact .inner .part .head{
    width: 100%;
    height: auto;
    float: left;
    margin: 0;
    font-family: interextrabold;
    font-size: 50px;
    color: #FEBD11;
    font-weight: normal;
}

.contact .inner .part .text{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: intersemibold;
    font-size: 20px;
    color: #636969;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px;
}

.contact .inner .part .form{
    width: 100%;
    max-width: 300px;
    height: auto;
    float: left;
    clear: left;
    margin: 0;
    margin-top: 50px;
}

.contact .inner .part .form .line{
    width: 100%;
    height: auto;
    float: left;
    clear: left;
    margin-top: 30px;
}

.contact .inner .part .form .line:first-child{
    margin-top: 0;
}

.contact .inner .part .form .line:nth-child(2){
    display: none;
}

.contact .inner .part .form .line .label{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: intermedium;
    font-size: 16px;
    color: #636969;
    margin-left: 16px;
}

.contact .inner .part .form .line .label.error{
    color: #E54545;
}

.contact .inner .part .form .line .input{
    width: 100%;
    height: 40px;
    float: left;
    clear: left;
    margin-top: 5px;
    border: 1px solid #cecece;
    outline: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-family: interregular;
    font-size: 16px;
    color: #373838;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    border-radius: 0;
}

.contact .inner .part .form .line .input:-webkit-autofill,
.contact .inner .part .form .line .input:-webkit-autofill:hover, 
.contact .inner .part .form .line .input:-webkit-autofill:focus, 
.contact .inner .part .form .line .input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.contact .inner .part .form .line .input::placeholder{
    color: #cecece;
}

.contact .inner .part .form .line .input.error{
    border: 1px solid #E54545;
}

.contact .inner .part .form .line .textarea{
    width: 100%;
    height: 200px;
    float: left;
    clear: left;
    margin-top: 5px;
    border: 1px solid #cecece;
    outline: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-family: interregular;
    font-size: 16px;
    color: #373838;
    line-height: 1.5;
    border-radius: 0px;
}

.contact .inner .part .form .button_wrapper{
    width: 300px;
    max-width: 100%;
    float: left;
    height: auto;
    position: relative;
    margin-top: 30px;
}

.contact .inner .part .form .button_wrapper .button{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    background: #FEBD11;
    color: #373838;
    font-family: interbold;
    font-size: 18px;
    border: 1px solid #FEBD11;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    outline: none;
    cursor: pointer;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    z-index: 1100;
    position: relative;
    font-weight: normal;
}

.contact .inner .part .form .button:hover{
    background: #373838;
    color: #FEBD11;
    border:1px solid #373838;
}

.contact .inner .part .form .button_wrapper .button.hidden{
    opacity: 0;
    z-index: 1000;
}

.contact .inner .part .form .button_wrapper .loading{
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    float: left;
    background: rgba(55, 56, 56, 0.75);
    border: 1px solid #373838;
    position: absolute;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .inner .part .form .button_wrapper .loading.hidden{
    display:none
}

.contact .inner .part .form .button_wrapper .loading .round{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform-origin: center center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact .inner .part .form .button_wrapper .message_alert{
    width: calc(100% - 12px - 2px);
    height: auto;
    opacity: 1;
    float: left;
    clear: both;
    text-align: center;
    padding: 10px;
    padding-left: 6px;
    padding-right: 6px;
    font-family: interbold;
    font-size: 18px;
    color: #28a745;
    background: #d4edd9;
    border: 1px solid #a9dbb4;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1100;
}

.contact .inner .part .form .message_alert.hidden{
    opacity: 0;
    z-index: 1000;
}

.contact .inner .part .form .gdpr{
    width: 100%;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 14px;
    color: #a1a5a5;
    margin-top: 20px;
}

.contact .inner .part .form .gdpr a{
    font-family: interbold;
    text-decoration: none;
    color: inherit;
}

.contact .inner .part .form .gdpr a:hover{
    text-decoration: underline;
}

.contact .inner .part:nth-child(2) .block{
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 50px;
}

.contact .inner .part:nth-child(2) .block:last-child{
    margin-bottom: 0;
}

.contact .inner .part:nth-child(2) .block .head{
    width: 100%;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 30px;
    color: #FEBD11;
    margin: 0;
    font-weight: normal;
}

.contact .inner .part:nth-child(2) .block .item{
    width: auto;
    height: auto;
    float: left;
    margin: 0;
    font-family: interregular;
    font-size: 20px;
    color: #636969;
    margin-bottom: 5px;
    clear: left;
    text-decoration: none;
    line-height: 1.3;
}

.contact .inner .part:nth-child(2) .block .item:last-child{
    margin-bottom: 0;
}

.contact .inner .part:nth-child(2) .block .item.main{
    font-family: interbold;
    color: #373838;
}

.contact .inner .part:nth-child(2) .block .item:nth-child(2){
    margin-top: 10px;
}

.terms{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.terms .inner{
    width: calc(1000px - 100px);
    height: auto;
    float: left;
    padding: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.terms .inner .head{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 50px;
    color: #FEBD11;
    margin: 0;
    font-weight: normal;
}

.terms .inner .part{
    width: auto;
    height: auto;
    float: left;
    margin-top: 50px;
    clear: left;
}

.terms .inner .part .parthead{
    width: auto;
    height: auto;
    float: left;
    font-family: interextrabold;
    font-size: 20px;
    color: #373838;
    margin: 0;
    font-weight: normal;
}

.terms .inner .part .line{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    margin-top: 15px;
}

.terms .inner .part .line .no{
    width: 30px;
    height: auto;
    float: left;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30px;
    font-family: interregular;
    font-size: 16px;
    color: #636969;
    text-align: right;
    line-height: 1.5;
}

.terms .inner .part .line .content{
    width: auto;
    height: auto;
    float: left;
    margin-left: 20px;
}

.terms .inner .part .line .content .main{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interregular;
    font-size: 16px;
    color: #636969;
    line-height: 1.5;
    margin: 0;
}

.terms .inner .part .line .content .sub{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    margin-left: 20px;
}

.terms .inner .part .line .content .sub .line2{
    width: auto;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 5px;
    clear: left;
}

.terms .inner .part .line .content .sub .line2 .no{
    width: 5px;
    height: 5px;
    float: left;
    flex-basis: 5px;
    flex-grow: 0;
    flex-shrink: 0;
    background: #636969;
}

.terms .inner .part .line .content .sub .line2 .content2{
    width: auto;
    height: auto;
    float: left;
    clear: left;
    font-family: interregular;
    font-size: 16px;
    color: #636969;
    line-height: 1.5;
    margin: 0;
    margin-left: 15px;
}




.footer{
    width: 100%;
    height: auto;
    float: left;
    background: #373837;
    display: flex;
    justify-content: center;
}

.footer .inner{
    width: calc(1600px - 100px);
    height: auto;
    float: left;
    padding: 50px;
}

.footer .inner .logo{
    width: auto;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
}

.footer .inner .logo svg{
    width: 250px;
    height: auto;
    float: left;
    fill: #636969;
}

.footer .inner .logo svg .color{
    fill:#F49CC3
}

.footer .inner .box{
    width: calc(((100% - 250px) / 2) - 100px);
    height: 100%;
    float: left;
    margin-left: 100px;
    display: flex;
    align-items: center;
}

.footer .inner .box:nth-child(3){
    width: calc(((100% - 250px) / 2) - 100px);
    margin-left: 100px;
}

.footer .inner .box .col{
    width: calc(((100% - 100px) / 3) + 100px);
    height: auto;
    float: left;
    margin-left: 50px;
}

.footer .inner .box:nth-child(2) .col{
    width: 100%;
    margin-left: 0px;
    display: flex;
}

.footer .inner .box:nth-child(3) .col{
    width: calc((100% - 50px) / 2);
    margin-left: 50px;
}

.footer .inner .box:nth-child(3) .col:nth-child(1){
    margin-left: 0;
}

.footer .inner .box .col .text{
    width: 100%;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 16px;
    color: #a1a5a5;
    line-height: 1.5;
}

.footer .inner .box .col .part{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 25px;
}

.footer .inner .box .col .part:first-child{
    margin-top: 0;
}

.footer .inner .box .col .part .head{
    width: 100%;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 20px;
    color: #636969;
    font-weight: normal;
}

.footer .inner .box .col .part .line{
    width: 100%;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 16px;
    color: #a1a5a5;
    margin-top: 0;
    text-decoration: none;
}

.footer .inner .box .col .part .line:nth-child(2){
    margin-top: 5px;
}

.footer .inner .box .col .part .item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.footer .inner .box .col .part .item:nth-child(2){
    margin-top: 5px;
}

.footer .inner .box .col .part .item .icon{
    width: 24px;
    height: 24px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .inner .box .col .part .item .icon svg{
    width: 22px;
    height: 22px;
    float: left;
    stroke: #F49CC3;
    stroke-width: 2px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.footer .inner .box .col .part .item:hover .icon svg{
    transform: translateX(5px);
}

.footer .inner .box .col .part .item .text{
    width: calc(100% - 30px - 10px);
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 18px;
    color: #a1a5a5;
    margin-left: 10px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.footer .inner .box .col .part .item:hover .text{
    color: #FFFFFF;
}

.foot{
    width: 100%;
    height: 100px;
    float: left;
    background: #212121;
    display: flex;
    justify-content: center;
}

.foot .inner{
    width: calc(1600px - 100px);
    height: 100%;
    float: left;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    align-items: center;
}

.foot .inner .copy{
    width: auto;
    height: auto;
    float: left;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.foot .inner .copy .head{
    width: auto;
    height: auto;
    float: left;
    font-family: interbold;
    font-size: 16px;
    color: #636969;
}

.foot .inner .copy .line{
    width: auto;
    height: auto;
    float: left;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.foot .inner .copy .line .text{
    width: auto;
    height: auto;
    float: left;
    font-family: interregular;
    font-size: 14px;
    color: #636969;
}

.foot .inner .copy .line .text:nth-child(2){
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #636969;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.foot .inner .copy .line .logo{
    width: auto;
    height: 11px;
    float: left;
    margin-left: 7px;
}

.foot .inner .copy .line .logo svg{
    width: auto;
    height: 100%;
    float: left;
    fill: #636969;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.foot .inner .copy .line .logo:hover svg{
    fill: #ffe163;
}

.foot .inner .cookies{
    width: auto;
    height: auto;
    float: left;
    margin-left: auto;
    margin-right: 0;
    outline: none;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.foot .inner .cookies .icon{
    width: 24px;
    height: 24px;
    float: left;
}

.foot .inner .cookies .icon svg{
    width: 100%;
    height: 100%;
    float: left;
    stroke: #636969;
    stroke-width: 2px;
    transition: ease-out 150ms;
    -webkit-transition: ease-out 150ms;
    -moz-transition: ease-out 150ms;
}

.foot .inner .cookies:hover .icon svg{
    stroke: #FEBD11;
    animation: spin 4s linear infinite;
}
