@import url('https://fonts.googleapis.com/css?family=Amatic+SC:700|Gabriela|Cuprum:400,700|PT+Serif:400,400i|Raleway|Noto+Sans&subset=cyrillic');

@keyframes c {
    0% {height: 40px; width: 40px; border: 1px solid #ffc400; opacity: 1;}
    20% {height: 100px; width: 100px; border: 5px solid #ffc400; opacity: 0;}
    100% {height: 100px; width: 100px; border: 5px solid #ffc400; opacity: 0;}
}

@keyframes r {
    0% {transform: rotateZ(0deg)}
    100% {transform: rotateZ(359deg)}
}

body {
    font-family: sans-serif;
}

h1 {
    font-family: 'Gabriela', Arial;
    display: inline;
    font-size: 60px;
}

h2 {
    font-family: 'Gabriela', Arial;
    display: inline;
    font-weight: normal;
}

h3 {
    font-family: 'Gabriela', Arial;
}

p {
    font-family: 'Noto Sans', sans-serif;
    display: inline;
}

#c {
    position: fixed;
    bottom: calc(25px + 5%);
    right: calc(25px + 5%);
    z-index: 999;
    width: 0;
    height: 0;
}

#c > div {
    transform: translate(-50%,-50%);
    border-radius: 50%;
    box-sizing: border-box;
    animation: c 5s infinite;
}

#c a {
    position: absolute;
    transform: translate(50%,50%);
    transition: bottom .3s, background .5s, opacity .3s;
    transition-timing-function: ease;
    bottom: 0;
    right: 0;
    font-size: 30px;
    padding: 10px 0;
    text-align: center;
    border-radius: 50%;
    width: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px 0px goldenrod;
    background: #ffc400;
    color: white;
    opacity: 0;
}

#c a:hover {
    border: 2px solid white;
}

#c a:nth-child(1) { z-index: 9999; color: #333; opacity: 1; }

#c.top a:nth-child(1) {
    color: white;
    background: none;
    text-shadow: 0px 0px 5px black;
    box-shadow: none;
}

#c a:nth-child(2) {
    background: linear-gradient(#fb955d,#d64141);
    padding-left: 4px;
    width: 46px;
}
#c a:nth-child(3) {
    background: linear-gradient(#fb5dea,#d641c8);
}
#c a:nth-child(4) {
    background: linear-gradient(#29d46e,#09892e);
}
#c a:nth-child(5) {
    background: linear-gradient(#86c6db,#3588e4);
    padding-right: 2px;
    width: 48px;
}
#c a:nth-child(6) {
    background: linear-gradient(#894bca,#5b3187);
}

#c.open a { opacity: 1; }
#c.open a:nth-child(2) { bottom: 60px; }
#c.open a:nth-child(3) { bottom: 120px; }
#c.open a:nth-child(4) { bottom: 180px; }
#c.open a:nth-child(5) { bottom: 240px; }
#c.open a:nth-child(6) { bottom: 300px; }

#header {
    text-align: center;
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6),transparent);
}

#header h2 {
    font-size: 20px;
    white-space: nowrap;
    font-weight: normal;
    text-shadow: 1px 1px 2px black, -1px -1px 1px black;
}

#header .lang span {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    color: #111;
    background: #eee;
    font-weight: bold;
    width: 100px;
    height: 45px;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    cursor: pointer;
    transition: top .3s;
}

#header .mobilelang span {
    background: #eee;
    width: 100%;
    padding: 15px;
    opacity: 0.5;
}

#header .lang span:nth-child(1), #header .mobilelang span:nth-child(1) {
    z-index: 9;
    opacity: 1;
}
#header .lang:hover span:nth-child(2) {
    top: 45px;
}
#header .lang:hover span:nth-child(3) {
    top: 90px;
}

#header .logo {
    width: 200px;
    height: 241px;
    vertical-align: top;
    margin: 10px 20px;
    display: inline-block;
    overflow: hidden;
    transition: all .3s;
}

#header .logo img {
    width: 100%;
    transition: all .3s;
}

/*background: linear-gradient(#ffc400, #ffd200);*/

#header .burger {
    display: none;
}

#header .nav i {
    height: 55px;
    width: 100px;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: 80px;
    background-position-y: -106px;
    background-position-x: center;
    transition: background .3s, height .3s;
}

#header .nav a {
    display: inline-block;
    margin: 0;
    padding: 10px 1%;
    width: 14%;
    max-width: 150px;
    color: white;
    font-family: arial;
    text-decoration: none;
}

#header .nav a:hover i {
    background-position-y: 0px;
}

#header .nav a:hover {
    box-shadow: 0 -2px 0px 0px #ffc400 inset;
    color: #ffc400;
}

#header.scrolled {
    background: rgba(30,30,30,0.8);
    height: 45px;
}

#header.scrolled .logo {
    height: 0;
    width: 0;
    margin: 0;
    opacity: 0;
}

/*
#header.scrolled .logo {
    height: 40px;
    width: 65px;
    margin: 3px 20px;
}
*/

#header.scrolled .logo .full, #header .logo .mini {
    display: none;
}

#header .logo .full, #header.scrolled .logo .mini {
    display: block;
}

#header.scrolled .nav a i {
    height: 0;
}

#header.scrolled .nav a h2 {
    font-size: 20px;
    line-height: 25px;
}

#header .icon-menu1 {
    background-image: url(../img/menu-1.png);
}
#header .icon-menu2 {
    background-image: url(../img/menu-2.png);
}
#header .icon-menu3 {
    background-image: url(../img/menu-3.png);
}
#header .icon-menu4 {
    background-image: url(../img/menu-4.png);
}

#mobilemain {
    display: none;
}

#main {
    background: url(/img/bg4.jpg);
    background-size: cover;
    height: 100vh;
}

#main .play {
    position: absolute;
    top: calc(50vh - 50px);
    left: calc(50vw - 69px);
    width: 120px;
    height: 120px;
    font-size: 50px;
    line-height: 100px;
    border: 10px solid white;
    box-sizing: border-box;
    text-align: center;
    border-radius: 50%;
    color: white;
    box-shadow: 0 0 20px 0 white;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    padding-left: 10px;
}

#main .play:hover {
    background: rgba(0,0,0,0.5);
}

#mobilemain {
    display: none;
}

#video {
    display:none;
}

#video.playvideo {
    display: block;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
}

#video iframe {
    width: calc(80vh * 1.88);
    height: 80vh;
    margin: 10vh auto;
    border: 5px solid white;
    box-sizing: border-box;
    box-shadow: 0 0 50px 0 black;
    display: block;
}

/*

.youtube {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.youtube iframe {
    height: calc(100vh + 200px);
    width: 100%;
    margin-top: -100px;
}

*/

.slidecontent {
    position: absolute;
    bottom: 65px;
    z-index: 99;
}

.slidecontent h2 {
    font-size: 40px;
}

.slidecontent h2, #sub {
    padding: 5px 20px 5px calc(30vw - 150px);
    background: #ffc400;
    display: inline-block;
    margin: 5px 0;
    transition: margin .5s;
    transition-timing-function: ease;
}
.slidecontent h2.init2, #sub.init2 {
    margin-left: -100vw;
}

#sub div {
    display: inline-block;
}

#sub div input {
    width: 150px;
    padding: 7px 10px;
    border: none;
    box-shadow: 0 0 2px 0px black inset;
}

#sub button {
    cursor: pointer;
    padding: 5px 20px;
    font-weight: bold;
    margin: -10px -20px -10px 0;
    height: 42px;
    border: none;
    background: linear-gradient(#a8d8ee,#48b2d1);
}

#sub button .icon-zen-brush-symbol {
    animation: r 1s linear infinite reverse;
    display: inline-block;
    height: 15px;
    width: 25px;
}

#sub button .icon-thumbs-up {
    color: white;
}

#content, #content2, #content3, #content4 {
    width: calc(100% - 40px);
    max-width: 1000px;
    text-align: center;
    padding: 0 20px 0 20px;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
}

#content {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

#content > .txt h2, #content > .txt p {
    display: block;
}

#content > .img {
    min-width: 30%;
}

#content > div img {
    width: 100%;
}

#content .swiper1 {
    margin-bottom: 30px;
}

#content > .title {
    background: white;
    box-shadow: 0px 10px 10px 0px white;
    position: relative;
    z-index: 1;
}

#content > .title, #content2 > .title, #content3 > .title, #content4 > .title {
    padding: 70px 0 20px 0;
    transition: transform .3s, opacity .3s;
}

#content > .title.init, #content2 > .title.init, #content3 > .title.init, #content4 > .title.init {
    opacity: 0;
    transform: translateY(50px);
}

#content > .title h2, #content2 > .title h2, #content3 > .title h2, #content4 > .title h2 {
    display: block;
    margin: 0;
}

#content .choice, #content2 > .title p, #content3 > .title p, #content4 > .title p {
    display: block;
    margin: 0;
    font-family: 'Gabriela', Arial Narrow, cursive;
}

#content > .choice {
    padding: 30px 0 10px 0;
    font-size: 23px;
}

#floater {
    transition: margin-left .5s, opacity .5s;
    transition-timing-function: ease;
    -webkit-margin-collapse: separate separate;
}

#floater.init {
    margin-left: -50px;
    opacity: 0;
}

#floater .img {
    height: 50vh;
    overflow: hidden;
}

#floater h3 {
    font-family: 'Gabriela', Arial Narrow, cursive;
    font-size: 20px;
    display: inline;
}

#floater .txt {
    padding: 10px 0;
}

body > hr {
    margin-top: 50px;
}

#content2 {
    padding-bottom: 50px;
}

#content2 .boxes .box {
    display: inline-block;
    aspect-ratio: 1/1;
    width: calc(50% - 35px);
    box-shadow: 0 0 5px 0 #333;
    margin: 10px;
    transition: margin .5s, opacity .5s, transform .3s;
    transition-timing-function: ease;
    vertical-align: top;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

#content2 .boxes .box:hover {
    transform: scale(1.025,1.025);
}

#content2 .boxes .box h3 {
    font-size: 30px;
    position: absolute;
    top: 5;
    margin: 0;
    width: 100%;
    color: white;
    text-shadow: 2px 0px 10px black, 0px 2px 10px black, -2px 0px 10px black, 0px -2px 10px black;
}

#content2 .boxes .box h4 {
    font-size: 16px;
    position: absolute;
    top: 10%;
    margin: 0;
    width: 100%;
    color: white;
    text-shadow: 2px 0px 5px black, 0px 2px 5px black, -2px 0px 5px black, 0px -2px 5px black;
}

#content2 .boxes .box .icons {
    position: absolute;
    top: 50;
    right: 10;
}

#content2 .boxes .box .icons i {
    margin-top: 10px;
    color: white;
    font-size: 30px;
    display: block;
    text-shadow: 2px 0px 2px black, 0px 2px 2px black, -2px 0px 2px black, 0px -2px 2px black;
    position: relative;
    transition: color .3s;
    cursor: pointer;
}

#content2 .boxes .box .icons i:hover {
    color: #ffc400;
}

#content2 .boxes .box .icons i span {
    position: absolute;
    right: 50px;
    top: 3px;
    font-size: 13px;
    text-shadow: none;
    color: #eee;
    font-weight: bold;
    padding: 5px 10px;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 5px 0px black;
    white-space: nowrap;
    display: none;
}

#content2 .boxes .box .icons i:hover span {
    display: block;
}

#content2 .boxes .box p {
    font-size: 15px;
    display: flex;
    margin: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    position: absolute;
    bottom: 0;
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#content2 .boxes .init {
    opacity: 0;
}

#content2 .boxes .init:nth-child(odd) {
    transform: translateX(-50px);
}

#content2 .boxes .init:nth-child(even) {
    transform: translateX(50px);
}

#content2 .interests {
    display: inline-block;
    text-align: left;
    background: #ffc400;
    aspect-ratio: 1/1;
    width: calc(50% - 35px);
    box-shadow: 0 0 5px 0 #333;
    margin: 10px;
    transition: margin .5s, opacity .5s, transform .3s;
    transition-timing-function: ease;
    vertical-align: top;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

#content2 .interests.open {
    overflow: visible;
}

/*
#interests {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    background: #ffc400;
    border-radius: 5px;
    box-shadow: 0 0 5px 0px;
    float: right;
    margin-left: 25px;
    margin-right: 5px;
    transition: margin .5s, opacity .5s;
    transition-timing-function: ease;
}
*/
/*background: #573325;*/

#content2 .interests form.init {
    margin-right: -50px;
    margin-left: 125px;
    opacity: 0;
}

#content2 .interests form h3 {
    text-align: center;
    margin: 15px 0 5px 0;
    color: #333;
}

#content2 .interests form .select {
    padding: 10px;
}

#content2 .interests form .select div {
    border-bottom: none;
    margin-bottom: 0;
    overflow: hidden;
    height: 0;
    transition: all .3s;
    cursor: pointer;
    height: 26px;
    padding: 5px 0;
    border-bottom: 1px solid #555;
}

#content2 .interests form .select div i {
    display: inline-block;
    font-size: 25px;
    color: #333;
    margin: 5px -5px;
    transform: scale(.8,.8);
    transition: transform .3s;
}

#content2 .interests form .select div:hover i {
    transform: scale(.9,.9) translateY(-5px);
}

#content2 .interests form .select div p {
    font-size: 13px;
    line-height: 18px;
    font-weight: bold;
    display: inline-block;
    margin: 0;
    color: #333;
    overflow: hidden;
    padding-right: 5px;
    max-width: calc(100% - 55px);
    white-space: nowrap;
    text-overflow: ellipsis;
}

#content2 .interests form .select div input {
    width: 20px;
    height: 20px;
    float: right;
    margin-top: 2px;
    cursor: pointer;
}

#content2 .interests form .send {
    text-align: center;
    overflow: hidden;
    transition: all .3s;
    margin-bottom: 55px;
    
}

#content2 .interests form .send input, #content2 .interests form .send textarea {
    display: block;
    padding: 4px 8px;
    margin: 5px auto;
    width: 90%;
    resize: none;
    font-size: 14px;
}

#content2 .interests form .send button {
    border: 1px solid darkorange;
    border-radius: 15px;
    width: 80%;
    font-weight: bold;
    font-size: 14px;
    padding: 5px;
    background: #fda401;
}

#content2 .interests form .send button .icon-zen-brush-symbol {
    animation: r 1s linear infinite reverse;
    display: inline-block;
    height: 15px;
    width: 25px;
}

#content2 .interests form .send button .icon-thumbs-up {
    color: white;
}

#content2 .interests form .extend {
    text-align: center;
    color: #333;
    padding: 20px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #ffc400 75%, transparent);
    border-radius: 0 0 20px 20px;
}

#content3 > div {
    max-width: 700px;
    margin: 0 auto;
}

#content3 > div .swiper-slide > div {
    margin: 50px;
    background: #eee;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 40px 50px;
    position: relative;
    text-align: center;
    font-size: 15px;
}

/*
#content3 > div .swiper-slide > div:before {
    content: "«";
    position: absolute;
    top: -40px;
    left: 0;
    color: #ccc;
    font-size: 100px;
    font-family: serif;
}

#content3 > div .swiper-slide > div:after {
    content: "»";
    position: absolute;
    bottom: -20px;
    right: 0;
    color: #ccc;
    font-size: 100px;
    font-family: serif;
}
*/

#content3 > div .swiper-slide .author {
    margin: 0 0 10px 0;
}

#content3 > div .swiper-slide .author img {
    width: 90px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 5px 0 black;
}

#content3 > div .swiper-slide .author p {
    display: block;
    margin: 5px 0;
    font-weight: bold;
}

#content3 > div .swiper-pagination2 {
    text-align: center;
}

.swiper-container.swiper1 {
    width: 100%;
    height: 100vh;
}

.swiper-container.swiper1 .swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-container.swiper1 .swiper-slide p {
    width: 100%;
    text-align: center;
    bottom: 25px;
    left: 0;
    position: absolute;
    margin: 0;
    font-weight: bold;
    color: white;
    font-style: italic;
    text-shadow: 1px 1px 5px black;
    font-family: 'PT Serif', serif;
}

.swiper-container.swiper1 .swiper-pagination-bullet {
    box-shadow: 0 0 0px 1px black;
    background: white;
}

#content3 .swiper-button-prev {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAmCAMAAADkx9tQAAAAyVBMVEVHcExbJABBGgBBGgA7FwBJHQBOHwBOHwBYJABbJABgJgBoKQBzLgCGNQCQOQCcPgCqRAChQAB6MACePwCVPACaPgCgQACoQwCtRQCxRgC3SQC7SgC+TADETgDIUADKUQDTVADVVQDaVwDcWADfWQDkWwDnXADtXwDsXgDxYAD0YgD3YwD8ZAD9ZQCoRACgQACOOQCKNwB/MgCuRQBvLABwLQCENQCOOADCTgCyRwCZPQA4FgB8MQCQOgA1FQApEAArEQAjDgD/ZgBLR7fkAAAAQnRSTlMADhogKDA3QD1IUUI4RFBHVmFwfImOlZykqK6ytrWvwcrM0tfY3+Lk6Ovu8vj8rKWFfXRwZFtcbIAeEwgYCBUNBAHC8rzUAAABdElEQVR42n2TBbIDIQxA6+7uur6buitw/0N9Mnx2Cu0sY2/ykuCxXyNFYhGjXKBRthVVW7UTEul3l9oyK5EU3pqkBa8dciOt24a3lBWks9fsveF7acmbqd66DaxJBZKe+VDlrQtscBf86AUHqtjnAJid/OcRdNXa1xSYnxd8nYKVUGzaZIy1BKfm4OcUW7S5nd7DzIay3brHrSH6nXwWrlDYFnALol8zYGwRl0psAm0d+d3h7GY+Sm8zhqNDMXPKKSh81J5NQLsmuMAF8oF86OMSUK9wMZk58o4oZzlCDV1sHh9ozTHW9jFYR75fODsZ9UAbAXoRPHKex1VfcbmfvxBp3mHQv6s+teR+KIJJvn79oSRnwGAr+DEFN6355wTC43qMwXjpvgtM3vKzBx3V4gYD6BLJ/oHqCTtgZ/kU2+ZD1+ToOSnJO/0h41twZ/JI6Hb/4wN6rZAPmR9+npVI8+9vX7ITIdNvTUsbLarXF6L9i0j6A63xPZbuBVlzAAAAAElFTkSuQmCC');
}

#content3 .swiper-button-next {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAmCAMAAADkx9tQAAAAulBMVEVHcExVIgBVIQBUIQBBGgBBGgA7FwBJHQBSIQBUIgBSIQBdJQBjJwBqKwB3LwB6MACTOwCbPQCXPACePwCVPACaPgCfPwCnQgCsRQCtRQC3SQC9SwDGTwDIUADOUgDTVADZVwDaVwDbWADfWQDlWwDtXgDsXwDxYAD0YQD4YwD7ZAD9ZQCgQACNOACGNQB+MgB5MABzLwBpKgB9MgCsRQCqRACwRgDCTgCTOgCCNAA1FQArEQAjDgD/ZgALIyBnAAAAPXRSTlMABwsPGiAoMDc9RFJQS0M5SmFsfImOlZqjqq61ssDCy8/S19jf5ejr7/L3/KWDeHNvZl9bW0ZzgBwXFQQBifce/AAAAXlJREFUeF591Nl2gjAQAFASqlLp5gJSLMUiSmGqUu0GZP7/t5oAoRB6yCP3zMIwQZOnGGtDh5l3g64t/3PGJF/tHvpMzUL6NPjo+yRt4q3YZD3/smW8/hKnPafegcpMUZxS1bPQqePZAsFSmb0nTlY5cRFWuhq/gjWpfLRDcInCVyF4PyWzaYzg5YpfR7Cph24BYjhR/NQ8ox4i7pQBUxfw9VJVCrjHM9ZxfYOYLKpKCXdYdt3Yc7d14TPhifPT8RsR5GWcmQ3c0c/aCYp3zrAVTRVvgiGctzkV7BucyWPJwaXFpkjuiuJsBYLXutraNylbizkmVlupz7VKZiRCTw2V1QCj21LzDdeou3dzxGBUKllz3Y47OonwuZ7CERD9UUfzAJ6ySo0I8UlZKBscIr884op0kJ1j+RKFA8mSqqtoyVWcIx67qBHvVKs23sXnQuGvA2tGs78oqBnnvzsafapKp0zq9aZ/RQXKC3w/9Hs4DOqNMaBakf8Hv0reNg1vQgBgAAAAAElFTkSuQmCC');
}

#content4 form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

#content4 form input, #content4 form textarea {
    width: 80%;
    padding: 9px 10px;
    margin: 10px auto;
    display: block;
    resize: none;
    border: none;
    border-bottom: 1px solid #aaa;
}

#content4 form button {
    padding: 9px 10px;
    display: block;
    box-shadow: 0 0 5px 0 #333;
    border: 1px solid white;
    margin: 10px auto;
    width: 50%;
    border-radius: 20px;
    background: #ffc400;
    font-weight: bold;
}

#content4 form button .icon-zen-brush-symbol {
    animation: r 1s linear infinite reverse;
    display: inline-block;
    height: 15px;
    width: 25px;
}

#content4 form button .icon-thumbs-up {
    color: white;
}

.footerbg {
    width: 100%;
    margin-bottom: -1px;
}

#footer {
    background: #353334;
    text-align: center;
    color: white;
}

#footer a {
    text-decoration: none;
}

#footer a img {
    height: 200px;
    display: inline-block;
    margin: 0 5%;
}

#footer p {
    display: block;
    margin: 0;
    padding: 20px 0;
    font-size: 12px;
}


@media (max-width: 768px) {
    #content, #content2, #content3, #content4 {
        width: calc(100% - 20px);
        padding: 0 10px;
        display: block;
    }
    
    .title h2 {
        font-size: 28px !important;
        padding-bottom: 10px !important;
    }
    
    .title p {
        font-size: 25px !important;
    }
    
    #content .title {
        /*background-color: e4d6c8; */
        margin: 0 !important;
        padding: 60px 0 10px 0;
        
    }
    
    #floater {
        margin: 0 !important;
    }
    
    .swiper-container.swiper1 {
        height: 250px;
    }
    
    #mobilemain {
        display: block;
        height: 100vh;
        height: 100svh;
        min-height: 550px;
        background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.3),rgba(0,0,0,0.1)), url(../img/mobilebg.jpg);
        background-size: cover;
        position: relative;
    }
    
    #mobilemain .play {
        margin: 0 auto;
        width: 10vh;
        height: 10vh;
        border: 6px solid white;
        border-radius: 50%;
        box-shadow: 0 0 20px 0 white;
        background: rgba(255,255,255,0.1);
        text-align: center;
    }
    
    #mobilemain .play span {
        font-size: 6vh;
        color: white;
        padding: 1.5vh;
        margin-left: 1vh;
        display: inline-block;
    }
    
    #mobilemain img {
        max-width: 75%;
        max-height: 35vh;
        margin: 0 auto;
        display: block;
        padding: 50px 0 5vh 0;
    }
    
    #mobilemain h2 {
        display: block;
        text-align: center;
        width: 100%;
        color: white;
        text-shadow: 0px 1px 1px black;
        margin-top: 30px;
    }
    
    #mobilemain i {
        color: white;
        border: 1px solid white;
        padding: 15px 12px;
        border-radius: 50%;
        position: absolute;
        bottom: 50px;
        margin: 0 auto;
        left: 0;
        right: 0;
        width: 22px;
    }
    
    #video iframe {
        border: none;
        width: 100vw;
        height: 80vh;
    }
    
    #floater .img {
        height: auto;
        margin-bottom: 10px;
    }
    
    #interests {
        float: none;
        margin: 20px 0;
        width: 100%;
    }
    
    #header.scrolled {
        background: rgba(30,30,30,0.9);
    }
    
    #header.scrolled:not(.burger) {
        background: none;
    }

    #header .nav {
        display: none;
    }
    
    #header .burger {
        display: block;
        height: 25px;
        width: 30px;
        padding: 10px;
        position: absolute;
        right: 0;
    }
    
    #header .burger .burgericon {
        margin-top: -1px;
    }
    
    #header .burger .burgericon div {
        background: white;
        border-radius: 10px;
        width: 100%;
        height: 5px;
        margin: 3px 0;
        box-shadow: 0 0 0px 1px black;
    }
    
    #header.scrolled .burger .burgericon div {
        background: #ffc400;
    }
    
    #header .burger .mobilenav {
        width: 100vw;
        height: calc(100vh - 45px);
        overflow-y: auto;
        position: absolute;
        top: 45px;
        right: 0;
        background: rgba(30,30,30,0.9);
        display: none;
    }
    
    #header .lang {
        display: none;
    }
    
    #header .mobilelang {
        border-top: 1px solid gray;
        display: flex;
    }
    #header .mobilelang img {
        position: initial;
        width: 40px;
    }
    
    #header .mobilenav .phones {
        border-top: 1px solid gray;
        padding: 10px 0;
        text-align: center;
    }
    
    #header .mobilenav .phones p {
        font-size: 20px;
        color: white;
        display: block;
        margin: 5px 0;
    }
    
    #header .burger.hover .mobilenav {
        display: block;
    }
    
    #header .mobilenav a {
        display: block;
        border-top: 1px solid gray;
        text-decoration: none;
        color: white;
        padding: 15px 0 15px calc(50% - 110px);
        text-align: left;
    }
    
    #header .mobilenav a i {
        height: 40px;
        width: 60px;
        margin-right: 20px;
        display: inline-block;
        background-size: 60px;
        background-position-y: 40px;
        vertical-align: middle;
    }
    
    #header .mobilenav a h2 {
        font-size: 25px;
        vertical-align: middle;
    }
    
    #header .mobilenav a:first-of-type {
        padding: 0 0 10px 0;
        border-top: none;
    }
    #header .mobilenav a img {
        height: 100px;
        margin: 0 auto;
        display: block;
    }
    
    #main {
        display:none;
    }
    
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
    
    .swiper-container.swiper1 .slidecontent h2, #sub {
        padding: 5px 0;
        font-size: 20px;
        width: 100%;
        text-align: center;
        font-weight: bold;
    }
    
    #sub div input {
        font-size: 15px;
        padding: 5px 10px;
        width: 90%;
        margin: 0 0 5px 0;
    }
    
    #sub button {
        margin: 0;
        padding: 5px 20px;
        font-size: 15px;
        height: auto;
        border-radius: 50px;
    }
    
    .slidecontent {
        display:none;
    }
    
    #content .title {
        box-shadow: none;
    }
    
    #content2 .boxes .box {
        width: 100%;
        margin: 20px 0;
        overflow: visible;
    }
    
    #img { width: 32vw; }
.unsaturated {
  filter: saturate(0.2);
}
.saturated {
  filter: saturate(200%); 
}
    
    /*
    
    #content2 .boxes .box .buttons {
        background: linear-gradient(to top, black 50px, transparent 100%);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    */
    
    #content2 .boxes .box .icons i {
        font-size: 25px;
        margin-top: 10px;
    }
    
    #content2 .boxes .box .icons {
        top: 25;
        right: 5;
    }
    
    #content2 .boxes .box p {
        font-size: 13px;
        border-radius: 0 0 20px 20px;
    }
    
    #content2 .boxes .box h3 {
        font-size: 20px;
    }
    
    #content2 .boxes .box .icons i span {
        right: 100%;
        font-size: 12px;
        top: calc(50% - 8px);
        padding: 2px 5px;
    }
    #content2 .boxes .box:hover {
        transform: none;
    }
    #content2 .boxes .box:hover .buttons {
        margin-bottom: -50px;
    }
    #content2 .boxes .box .buttons .btn {
        margin: 0px 5px 10px 5px;
        letter-spacing: -1px;
        font-size: 15px;
    }
    #content2 .boxes .interests {
        width: 100%;
        margin: 10px 0 60px 0;
    }
    #content3 > div .swiper-slide > div {
        margin: 10px 0;
    }
    #content3 > div .swiper-slide > div {
        margin: 25px 10px;
        padding: 20px 10px;
    }
    /*
    #content3 > div .swiper-slide > div::before, #content3 > div .swiper-slide > div::after {
        display: none;
    }
    */
    #content4 form input, #content4 form textarea {
        width: 95%;
    }

}

/* 
owuthowe
*/