@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-Thin.ttf");
    font-weight: 100;
}
@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-ExtraBold.ttf");
    font-weight: 800;
}
@font-face {
    font-family: 'Cygre';
    src: url("../fonts/Cygre/Cygre-Black.ttf");
    font-weight: 900;
}
@font-face {
    font-family: 'Aire';
    src: url("../fonts/Aire/AireBoldItalicStd.ttf");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Felidae';
    src: url("../fonts/Felidae/Felidae.ttf");
    font-weight: 400;
}
@font-face {
    font-family: 'Cormorant';
    src: url("../fonts/Cormorant/Cormorant-Regular.ttf");
    font-weight: 400;
}
:root {
    --index: calc(1vw + 1vh);
    --transition: transform .75s cubic-bezier(.075, .5, 0, 1);
    --color-black: #000000;
    --color-white: #ffffff;
    --color-blue: #11293E;
    --color-gray: #A1B5C4;
    --color-green: #65A45E;
    --color-green-h: #4d9546;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.wow, .fadeIn, .fadeInDown, .fadeInRight, .fadeInLeft {
    visibility: hidden;
}
/*Parallax*/
/* will-change */
.scrollsmoother, .banner h1, .banner .seagull-texture {
    will-change: transform;
}
.banner h1 {
    transform: translate3d(0, calc(var(--scrollTop) / 10), 0);
    transition: var(--transition);
}
.banner .seagull-texture {
    transform: translate3d(0, calc(var(--scrollTop) / 4), 0);
    transition: var(--transition);
    z-index: 100;
}
/**/
.container .row {
    position: relative;
}
.mobile-only {
    display: none;
}
.desctop-only {
    display: block;
}
.body-scroll {
    overflow: hidden;
}
.float-right {
    float: right;
}
.align-center {
    text-align: center;
}
::selection {
    background: var(--color-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
}
::-moz-selection {
    background: var(--color-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    border-radius: 0px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--color-green);
}
form {
    position: relative;
}
form input {
    position: relative;
}
body {
    font-family: 'Cygre', sans-serif;
    display: block;
    overflow-x: hidden;
    position: relative;
}
a, button {
    display: inline-block;
    text-decoration: none;
    color: var(--color-blue);
    transition: .2s;
}
span {
    display: inline-block;
}
h1 {
    font-size: 480px;
    line-height: 270px;
    font-weight: 700;
    font-family: 'Aire', sans-serif;
    font-style: italic;
    color: var(--color-blue);
}
h2 {
    font-family: 'Felidae', sans-serif;
    font-size: 90px;
    line-height: 90px;
    font-weight: 400;
    color: var(--color-blue);
}
.btn {
    position: relative;
    overflow: hidden;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 6px;
    text-align: center;
}
.btn-texture:before {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 200px;
    background: #fff;
    top: -50px;
    transform: rotate(30deg);
    opacity: 0.5;
    left: -70px;
    animation: animate-btn-fon 3s ease-in-out infinite;
}
@keyframes animate-btn-fon {
    0% {
        left: -70px;
    }
    30% {
        left: 400px;
    }
    100% {
        left: 400px;
    }
}
.btn-blue {
    color: var(--color-white);
    background-color: var(--color-blue);
}
.btn-blue:hover {
    color: var(--color-white);
    background-color: var(--color-green-h);
}
.btn-white {
    color: var(--color-blue);
    background-color: var(--color-white);
}
.btn-white:hover {
    color: #FFFFFF;
    background-color: var(--color-green-h);
}
.btn-green {
    border: 1px solid var(--color-green);
    margin-right: 20px;
}
.btn-green:hover {
    background: var(--color-green-h);
    color: var(--color-white);
}
.link-item h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    color: var(--color-blue);
}
.link-item h3:hover a {
    text-decoration: underline;
}
.link-img {
    width: 100%;
    height: 234px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}
form {
    position: relative;
}
button {
    border: none;
}
a:hover, button:hover, input:hover, select:hover {
    cursor: pointer;
}
form input, form select, form textarea {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-blue);
    padding: 15px 20px;
    border-radius: 6px;
    background-color: #F6F7F7;
    border: none;
    outline: none;
    font-family: 'Cygre', sans-serif;
}
/*HEADER*/
header {
    margin-bottom: 25px;
    position: relative;
    z-index: 200;
}
.header-top {
    background-color: #F5F9FC;
    padding: 16px 0;
}
.header-top a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--color-gray);
    margin-right: 30px;
}
.header-top a:last-child {
    margin-right: 0;
}
.header-top a:hover {
    text-decoration: underline;
}
.header-top a img {
    width: 16px;
    float: left;
    margin-right: 8px;
}
.lang-page a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--color-gray);
    margin-right: 9px;
    padding: 4px 5px 2px 5px;
    background: transparent;
}
.lang-page .active, .lang-page a:hover, .lang-page .gt-current-lang {
    color: var(--color-blue);
    background-color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
}
.lang-page {
    text-align: right;
}
.logo {
    margin-top: 30px;
}
.logo img {
    width: 152px;
}
nav {
    margin-top: 45px;
    display: inline-block;
}
nav ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    list-style-position: inside;
    font-family: 'Cygre', sans-serif;
    margin-right: 50px;
}
nav a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: var(--color-blue);
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}
nav a:hover {
    color: var(--color-green);
}
nav ul li.sub-menu a:after {
    content: '';
    width: 10px;
    height: 8px;
    background-image: url(/wp-content/themes/chaika/images/arrow_nav.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    float: right;
    margin-left: 5px;
    margin-top: 5px;
    transition: .2s ease-in-out;
    transform: rotate(-90deg);
    position: relative;
}
nav ul li.sub-menu:hover a:after {
    transform: rotate(0deg);
    transition: .2s ease-in-out;
}
.sub-menu {
    transition: .2s ease-in-out;
    position: relative;
    z-index: 100;
}
.sub-menu ul {
    display: none;
}
.sub-menu:hover ul {
    display: block;
    position: absolute;
    background: var(--color-white);
    padding: 10px 10px 10px 10px;
    min-width: 240px;
    left: -10px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 20px 20px #2d2d2d1c;
}
.sub-menu ul li{
    display: block;
}
.sub-menu:hover ul li {
    margin-right: 0;
}
.sub-menu:hover ul li a {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 10px;
}
.sub-menu:hover ul li a:after {
    display: none;
}
header a.btn {
    position: relative;
    top: 15px;
}
/*BANNER*/
.banner {
    max-width: 1888px;
    margin: 0 auto 200px auto;
    padding-top: 130px;
    border-radius: 20px;
    background-image: url("/wp-content/themes/chaika/images/banner_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #7299AB;
    margin-left: 20px;
}
.content-line {
    content: '';
    width: 40px;
    height: 1px;
    display: inline-block;
    background-color: #7299AB;
}
.num-item span {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 20px 0 15px 0;
}
.num-item .number {
    font-size: 120px;
    line-height: 120px;
    font-weight: 700;
    font-family: 'Aire', sans-serif;
    margin: 0;
}
.num-item a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: underline;
}
.num-item a:hover {
    text-decoration: none;
}
.banner .btn {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 22px 80px;
}
.banner-item {
    width: 286px;
    height: 280px;
    background-color: #EDF7FF;
    border: 4px solid #FFFFFF;
    border-radius: 10px;
    padding: 124px 0 30px 24px;
    background-repeat: no-repeat;
    background-position: -30px -100px;
    position: relative;
    display: inline-block;
}
.banner-item span {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--color-blue);
    margin-bottom: 15px;
}
.banner-item .arrow {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 14px;
}
.item2 {
    margin-left: -20px;
}
.seagull-texture {
    position: absolute;
    right: 140px;
    top: -90px;
}
.banner-texture {
    position: absolute;
    left: -944px;
    top: -852px;
}
.banner-texture img {
    border-radius: 20px;
}
.banner h4, .num-item, .banner-item, .banner .btn {
    position: relative;
    z-index: 1;
}
.banner .btn, .banner-item {
    bottom: -130px;
}
.num-item {
    bottom: -50px;
}
/*RESERVE*/
.reserve {
    margin-bottom: 150px;
}
.reserve h2 {
    font-family: 'Cygre', sans-serif;
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 30px;
}
.form-item {
    display: inline-block;
    margin-right: 6px;
}
.form-item .field-name {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-gray);
    display: block;
    margin-bottom: 14px;
}
.form-item select,
.form-item input,
.form-item .guests {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-blue);
    padding: 15px 20px;
    border-radius: 6px;
    background-color: var(--color-white);
    border: none;
    outline: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("/wp-content/themes/chaika/images/calendar.png");
    background-size: 15px 17px;
}
.guests img {
    width: 17px;
    height: 15px;
    float: right;
    margin-left: 12px;
}
.form-item input::placeholder {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-blue);
}
.reserve .btn {
    padding: 16px 40px;
    top: 18px;
    position: relative;
}
/*ABOUT*/
.about {
    margin-bottom: 150px;
}
.about h3 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: var(--color-blue);
    margin-bottom: 40px;
}
.about h2 {
    text-align: center;
    margin-bottom: 30px;
}
.about-top {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #7299AB;
    text-align: center;
    margin-bottom: 70px;
}
.text-about {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--color-blue);
}
.text-about:first-child {
    margin-bottom: 35px;
}
.text-right {
    margin-left: 86px;
    margin-top: 30px;
}
.about-block {
    margin-bottom: 100px;
}
.about-img {
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pic1 {
    width: 636px;
    height: 600px;
    background-image: url("/wp-content/themes/chaika/images/about_pic1.png");
}
.pic2 {
    width: 770px;
    height: 288px;
    background-image: url("/wp-content/themes/chaika/images/about_pic2.png");
}
.about .num-block {
    margin-left: 80px;
}
.about .num-item {
    display: inline-block;
    border: 1px solid var(--color-green);
    border-radius: 50%;
    padding: 40px 48px;
    bottom: -70px;
}
.about .num-item:last-child {
    left: -20px;
}
.about .num-item span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--color-blue);
    display: block;
    margin: 0;
    text-align: center;
}
.about .num-item span:first-child {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 14px;
    margin: 0 0 15px 0;
}
.about .num-item .number {
    font-family: 'Felidae', sans-serif;
    font-size: 70px;
    line-height: 70px;
}
.btn-block {
    margin-left: 70px;
}
.about .btn-block .btn {
    font-size: 16px;
    line-height: 18px;
    padding: 16px 40px;
}
.about .btn-block .btn img {
    width: 17px;
    margin-left: 12px;
    float: right;
}
/*FEATURES*/
.features {
    margin-bottom: 150px;
}
.features h2 {
    margin-bottom: 60px;
}
.feature-item {
    border-top: 1px solid var(--color-gray);
    padding-top: 40px;
    margin-bottom: 100px;
}
.feature-item span {
    display: block;
    font-size: 18px;
    line-height: 18px;
    color: var(--color-blue);
    font-weight: 400;
}
.feature-item .number {
    font-family: 'Felidae', sans-serif;
    font-size: 90px;
    line-height: 90px;
    color: var(--color-green);
}
.feature-img img {
    display: block;
    margin: 0 auto;
}
.img-mobile {
    width: 110%;
    height: 310px;
    margin: 0 auto;
    background-image: url("/wp-content/themes/chaika/images/features_pic.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: none;
}
/*SERVICES*/
.services h2 {
    margin-bottom: 80px;
}
.list-all {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    float: right;
    margin-top: 35px;
}
.list-all img {
    width: 17px;
    margin-left: 12px;
}
.list-all:hover {
    text-decoration: underline;
    color: var(--color-green-h);
}
.item-img {
    height: 250px;
}
.arrow-service {
    width: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: .2s ease-in-out;
}
.link-img:hover .arrow-service {
    transform: rotate(45deg);
}
.service-item {
    margin-bottom: 135px;
}
.page-content .service-item{
    margin-bottom: 30px;
}
.caption-img {
    width: 1888px;
    margin: 0 auto 150px auto;
    padding: 50px 0;
    background-image: url("/wp-content/themes/chaika/images/caption_pic.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.caption-img h3 {
    font-family: 'Felidae', sans-serif;
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    position: relative;
    margin-left: 80px;
}
.page-content .link-item h3{
    margin-top: 5px;
    font-size: 22px;
    line-height: 110%;
}
.page-content .item-img{
    height: 180px;
    margin-bottom: 0;
}
.caption-img h3 img {
    width: 30px;
    position: absolute;
    left: -80px;
    top: 0;
}
.caption-img .seagull-texture {
    right: -160px;
    top: -100px;
}
/*CAROUSEL*/
.carousel {
    margin-bottom: 150px;
}
.carousel-item {
    width: 100%;
    height: 180px;
    background-color: #F5F9FC;
}
.carousel-block {
    margin-bottom: 24px;
}
.carousel-block:last-child {
    margin-bottom: 0;
}
/*NEWS*/
.news {
    margin-bottom: 150px;
}
.news h2 {
    margin-bottom: 70px;
}
.news-item {
    background-color: #F6F7F7;
    border-radius: 10px;
    padding: 16px 16px 44px 16px;
}
.news-stat {
    position: absolute;
    left: 10px;
    bottom: 10px;
}
.news-stat span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--color-blue);
    padding: 6px 12px;
    background-color: #FFFFFF;
    border-radius: 6px;
    margin-right: 10px;
}
.news-stat span:last-child {
    margin-right: 0;
}
.news-stat span img {
    margin-right: 10px;
    width: 13px;
}
.news-item h3 {
    margin-bottom: 18px;
}
.news-item p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--color-blue);
    margin-bottom: 18px;
}
.link-underline {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: var(--color-green);
    text-decoration: underline;
}
.link-underline:hover {
    text-decoration: none;
}
/*PHOTOS*/
.photos {
    margin-bottom: 150px;
}
.photos h2 {
    margin-bottom: 70px;
}
.photos-item {
}
/*INSTAGRAM*/
.instagram {
    max-width: 1888px;
    margin: 0 auto 60px auto;
    padding: 70px 0 45px 0;
    background-image: url("/wp-content/themes/chaika/images/instagram_pic.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.instagram-headline {
    font-size: 50px;
    line-height: 54px;
    font-weight: 400;
    color: var(--color-blue);
    margin-bottom: 30px;
    display: inline-block;
    font-family: 'Felidae', sans-serif;
}
.instagram-headline span {
    color: var(--color-green);
}
.instagram-headline .font-char {
    font-family: 'Cormorant', sans-serif;
}
.inst-item {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--color-blue);
    position: relative;
    margin: 0 0 50px 35px;
}
.inst-item img {
    width: 20px;
    position: absolute;
    left: -35px;
    top: 7px;
}
.instagram .btn img {
    width: 15px;
    margin-left: 10px;
}
.inst-circle {
    padding: 40px 55px 50px 55px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 60px;
}
.inst-circle img, .inst-circle span {
    display: block;
}
.inst-circle img {
    width: 20px;
    margin: 0 auto 15px auto;
}
.inst-circle span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--color-blue);
    text-align: center;
}
.inst-circle span:nth-child(2) {
    color: var(--color-gray);
    margin-bottom: 10px;
}
.inst-circle .number {
    font-family: 'Felidae', sans-serif;
    font-size: 50px;
    line-height: 50px;
}
.phone-texture {
    position: absolute;
    right: 250px;
    top: -36px;
    z-index: 1;
}
/*QUEST*/
.quest {
    margin-bottom: 40px;
}
.quest h3 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 25px;
}
.quest span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #7299AB;
    margin-bottom: 15px;
    display: block;
}
.quest-link, span.quest-link {
    font-size: 26px;
    line-height: 26px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 25px;
}
span.address {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: var(--color-blue);
}
a.quest-link:hover {
    color: var(--color-green);
}
.quest .link-underline {
    font-size: 18px;
    line-height: 18px;
}
.quest .btn {
    padding: 16px 60px;
}
.messenger-link {
    height: 46px;
    padding: 15px 14px;
    background-color: var(--color-green);
    border-radius: 6px;
    margin-right: 10px;
}
.messenger-link img {
    width: 18px;
    display: block;
    margin: auto;
}
.messenger-link:hover {
    background-color: var(--color-blue);
}
/*FOOTER*/
footer .btn {
    float: right;
    margin-top: 45px;
}
footer nav ul li:last-child {
    margin-right: 0;
}
.dev-block {
    padding: 17px 0;
    margin-top: 40px;
    background-color: #F5F9FC;
}
.dev-block span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #7299AB;
}
.developer {
    float: right;
}
/**/
.popup-modal-style {
    width: 420px;
    position: relative;
    margin: auto;
    padding: 60px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 14px;
    border-bottom: 5px solid var(--color-blue);
    box-shadow: 0px 0px 80px #ebebeb;
}
.popup-modal-style h2 {
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 40px;
}
.popup-modal-style p {
    margin-bottom: 30px;
}
.popup-modal-style input {
    margin-bottom: 15px;
}
.popup-texture {
    position: absolute;
    left: -130px;
    bottom: -60px;
}
.block-reserve {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: #F6F7F7;
}
.carusel-item-1 {
    position: relative;
}
.carusel-item-texture {
    position: relative;
    height: 150px;
    background-repeat: repeat-x;
    background-position: 0%;
    margin-bottom: 15px;
}
.block-carusel .btn {
    margin-top: 45px;
    margin-bottom: 130px;
}
.carusel-item-1 {
    z-index: 10;
    animation: carusel-item-texture 80s linear infinite;
    background-repeat: repeat-x;
    width: 100%;
}
@keyframes carusel-item-texture {
    0% {
        background-position: -100%;
    }
    50% {
        background-position: 100%;
    }
    100% {
        background-position: -100%;
    }
}
.carusel-item-2 {
    z-index: 10;
    animation: carusel-item-texture2 60s linear infinite;
    background-repeat: repeat-x;
    width: 100%;
}
@keyframes carusel-item-texture2 {
    0% {
        background-position: 100%;
    }
    50% {
        background-position: -100%;
    }
    100% {
        background-position: 100%;
    }
}
.block-carusel {
    position: relative;
    margin-bottom: 120px;
}
/*Разработка & дизайн: weba.by*/
.weba-dev {
    font-family: Roboto, sans-serif;
    float: right;
    position: relative;
    margin-top: 0px;
}
.weba-dev > span {
    font-size: 10px;
    margin-bottom: 0;
}
.weba-dev a {
    font-family: Roboto, sans-serif;
    text-decoration: none;
    display: block;
    line-height: 33px;
    color: #000000;
}
.weba-dev a:hover {
    color: #313131;
}
.weba-logo, .weba-logo span {
    font-family: Roboto, sans-serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 48px;
    color: #313131;
}
.weba-logo span {
    font-family: Roboto, sans-serif;
    color: #ffea00;
    font-weight: bold;
}
.weba-href {
    text-align: right;
}
.webapico {
    position: absolute;
    right: -12px;
    top: -21px;
    width: 50px;
    height: 52px;
    animation: webapico-anime 2s linear infinite;
    transform-origin: 47% 100%;
}
@keyframes webapico-anime {
    0% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    15% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        transform: rotate(-60deg);
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    20% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        transform: rotate(-45deg);
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    25% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        transform: rotate(-60deg);
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    30% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        transform: rotate(-45deg);
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    50% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        transform: rotate(0deg);
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    70% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    73% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico2.png");
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    76% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    81% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico2.png");
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    83% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    100% {
        background-image: url("/wp-content/themes/chaika/images/weba/webapico.png");
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
}
.about {
    position: relative;
}
.texture-01 {
    position: absolute;
    left: -140px;
    top: 200px;
}
.texture-02 {
    position: absolute;
    right: -140px;
    bottom: 0px;
}
.breadcrumb {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 200;
}
.breadcrumb a, .breadcrumb span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
}
.breadcrumb a {
    color: var(--color-blue);
}
.page-content {
    position: relative;
    margin-bottom: 100px;
}
.page-content p {
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 15px;
    font-weight: 300;
}
.page-content ul {
    margin-bottom: 15px;
}
.page-content ul li, .page-content ol li {
    font-size: 16px;
    line-height: 120%;
    font-weight: 300;
}
.page-content ul > br {
    display: none;
}
.page-content h1 {
    font-size: 60px;
    line-height: 110%;
    margin-bottom: 20px;
}
.page-content h2 {
    font-size: 30px;
    line-height: 110%;
    margin-bottom: 20px;
}
.page-content .block-head h2 {
    font-size: 46px;
    line-height: 110%;
}
.page-content h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}
ul li, ol li{
    list-style-position: inside;
}
.page-content ul, .page-content ol {
    margin-bottom: 20px;
}
.page-content h4 {
    margin-bottom: 5px;
}
.page-content .block-catalog-item {
    margin-bottom: 100px;
}
.page-content p, .page-content ul li, .page-content ol li {
    color: var(--color-black);
    margin-bottom: 10px;
}
p strong {
    font-weight: 800;
}
.pagination {
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
}
.pagination span, .pagination a {
    text-decoration: none;
    padding: 14px 20px;
    font-size: 20px;
    line-height: 20px;
    border-radius: 50px;
    color: var(--color-black);
    display: inline-block;
    transition: .2s ease-in-out;
    background: linear-gradient(45deg, transparent, transparent);
}
.pagination span, .pagination a:hover, .page-numbers.active {
    color: #FFFFFF;
    background: var(--color-blue);
}
.post-thumb {
    background: #F5F8FB;
    position: relative;
    margin-bottom: 40px;
    display: block;
    border-radius: 10px;
    height: 440px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.content-thumb {
    position: relative;
    margin-bottom: 30px;
    height: 340px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}
img.alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
}
img.aligncenter {
    float: none;
    display: block;
    margin: 20px auto 20px;
}
.mail_send-sacsses {
    font-size: 32px;
    line-height: 110%;
    font-weight: 600;
}
.btn-toup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.btn-toup a img {
    width: 55px;
    height: 55px;
    transition: .2s ease-in-out;
}
/**/
.block-cookie {
    position: fixed;
    display: inline-block;
    right: 120px;
    bottom: 0%;
    background: #FFFFFF;
    padding: 15px 15px 10px 15px;
    border-radius: 5px 5px 0px 0px;
    z-index: 1000;
    box-shadow: 0px 0px 20px #dbdbdb;
    transition: 1s ease-in-out;
}
.block-cookie img {
    float: left;
    margin-right: 15px;
    width: 48px;
    height: 48px;
    display: inline-block;
}
.block-cookie p {
    max-width: 390px;
    float: left;
    margin-top: 6px;
    font-size: 14px;
    line-height: 18px;
    margin-right: 15px;
}
.block-cookie p a {
    color: #1b1e21;
    display: inline-block;
    text-decoration: underline;
}
.block-cookie .btn {
    float: left;
    margin-top: 4px;
    padding: 10px;
}
.block-cookie.block-cookie-none {
    bottom: -100%;
}
.block-cookie .btn:hover {
    cursor: pointer;
}
/**/
.category-img{
    position: relative;
    height: 200px;
    display: block;
    margin-bottom: 5px;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    background-repeat: no-repeat;
}
.category-block{
    position: relative;
    display: block;
    margin-bottom: 30px;
}
table {
    width: 100%;
    position: relative;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-top: 1px solid #A1B5C4;
}
table thead tr {
    font-weight: 700;
    background: #A1B5C4;
}
table tr {
    border-bottom: 1px solid #A1B5C4;
}
table tr td {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0px;
    padding-right: 0px;
    vertical-align: top;
}
table tr td:nth-child(2), table tr td:nth-child(2) {
    text-align: left;
}
.page-error{
    position: relative;
    margin-bottom: 100px;
}
.page-error p{
    margin-bottom: 30px;
}