/* Slider */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  font-size: 1.2vw;
}

.clear {
  clear: both;
}

.hidden {
  display: none;
}

body {
  background-color: #F9F9F9;
  font-weight: 500;
}

img {
  max-width: 100%;
}

.tab {
  font-size: 1.5625rem;
  line-height: 1.71875rem;
  font-weight: 600;
}
.tab a {
  font-size: 1.5625rem;
  line-height: 1.71875rem;
}

h1 {
  font-size: 1.5625rem;
  line-height: 1.71875rem;
}
h1 a {
  font-family: "Raleway", sans-serif;
  font-size: 1.5625rem;
  line-height: 1.71875rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 500;
}
h2 a {
  font-size: 1.25rem;
  line-height: 1.625rem;
}

h3 {
  font-size: 0.9375rem;
}
h3 a {
  font-family: "Raleway", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.125rem;
}

h4 {
  font-size: 0.8333333333rem;
  font-weight: 500;
}
h4 a {
  font-size: 0.8333333333rem;
  line-height: 1.0833333333rem;
}

q {
  font-family: "Merriweather", serif;
}

.quote {
  background-color: #ffffff;
  padding: 0.78125rem;
  margin-top: 1.0416666667rem;
}
.quote q {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  font-family: "Merriweather", serif;
  font-weight: 500;
}
.quote q p {
  font-family: "Merriweather", serif;
  margin: 0;
  font-weight: 500;
}
.quote q::before {
  content: url(./../images/icons/quote.svg);
  padding-right: 1.0416666667rem;
}

em {
  font-size: 0.8333333333rem;
  line-height: 1.25rem;
  font-family: "Manrope", sans-serif;
  margin: 0;
  padding: 0;
}

p {
  font-size: 0.8333333333rem;
  line-height: 1.25rem;
  font-family: "Manrope", sans-serif;
  margin: 0;
  padding: 0;
}
p a {
  font-size: 0.8333333333rem;
  line-height: 1.25rem;
  text-decoration: none;
}
p a:hover {
  color: #FF6656 !important;
}

a {
  color: #242424;
  font-size: 0.625rem;
  text-decoration: none;
}
a:hover {
  transition: 0.3s;
  color: #FF6656 !important;
}

li {
  font-size: 0.8333333333rem;
  font-family: "Manrope", sans-serif;
  margin: 0;
  padding: 0;
}
li a {
  color: #242424;
  font-size: 0.625rem;
  text-decoration: none;
}
li a:hover {
  color: #FF6656;
}

.container {
  width: 75rem;
  margin: 0 auto;
  padding: 0 8.59375rem;
}

.advert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6.9270833333rem 5.3645833333rem;
  background-color: #DBDBDB;
  margin-top: 2.6041666667rem;
}
.advert.withoutspace {
  margin: 0;
}
.advert.subadvert {
  padding: 3.90625rem 0;
  margin-top: 0;
}

.burger {
  width: 20px;
  height: 18px;
  display: none;
  position: relative;
}
.burger span {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}
.burger span:nth-child(2) {
  width: 60%;
  margin: 5px 0;
}
.burger.active {
  transition: 0.3s;
}
.burger.active span {
  position: absolute;
  top: 50%;
  width: 22px;
  border-radius: 2px;
}
.burger.active span:first-child {
  transform: rotate(130deg);
}
.burger.active span:nth-child(2) {
  display: none;
}
.burger.active span:last-child {
  transform: rotate(45deg);
}

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 0.5208333333rem;
  width: 9.6354166667rem;
  height: auto;
  color: #ffffff;
  text-decoration: none;
}
.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Times New Roman", Times, serif;
}

.search_btn {
  background: unset;
  border: none;
  width: 1.0416666667rem;
  cursor: pointer;
}
.search_btn img {
  display: inline-block;
  width: 100%;
}

.section_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.section_title .tab {
  padding-right: 0.5208333333rem;
  position: relative;
  background-color: #ffffff;
  z-index: 10;
  padding-left: 0.0520833333rem;
}
.section_title_border {
  display: inline-block;
  width: 100%;
  border: 0.0520833333rem solid #F8786B;
  position: absolute;
}
.section_title_enter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 0.5208333333rem;
  font-size: 0.7291666667rem;
  padding-left: 0.5208333333rem;
  font-weight: 600;
  position: relative;
  background-color: #ffffff;
  z-index: 10;
}
.section_title_enter img {
  display: inline-block;
  width: 0.46875rem;
  height: 0.7291666667rem;
}

.main_block {
  text-decoration: none;
}
.main_block_image {
  width: 100%;
  height: 16.9270833333rem;
  display: block;
  overflow: hidden;
}
.main_block_image img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .main_block_image img:hover {
    transform: scale(1.1);
  }
}
.main_block_title {
  margin-top: 0.78125rem;
  color: #242424;
  text-decoration: none;
}
.main_block:hover {
  color: #F8786B;
}

.root_semi_item {
  width: 13.6458333333rem;
  margin-top: 0.78125rem;
}
.root_semi_item_image {
  width: 100%;
  height: 8.3333333333rem;
  display: block;
  overflow: hidden;
}
.root_semi_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .root_semi_item_image img:hover {
    transform: scale(1.1);
  }
}
.root_semi_item_title {
  width: 100%;
  margin-top: 0.78125rem;
}
.root_semi_item_title a {
  font-weight: 500;
}

.root_small_item {
  width: 8.75rem;
  width: 13.9rem;
}
.root_small_item_image {
  width: 100%;
  height: 5.2083333333rem;
  height: 7.5rem;
  display: block;
  overflow: hidden;
}
.root_small_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .root_small_item_image img:hover {
    transform: scale(1.1);
  }
}
.root_small_item_title {
  width: 100%;
  margin-top: 0.78125rem;
}
.root_small_item_title a {
  font-weight: 500;
  font-size: 0.8333333333rem;
}

.root_ribbon {
  width: 13.6979166667rem;
  height: auto;
  position: relative;
}
.root_ribbon h2 {
  font-size: 1.3541666667rem;
  color: #F8786B;
}
.root_ribbon_wrapper {
  height: auto;
  width: 100%;
  position: relative;
  margin-bottom: 4.1666666667rem;
}
.root_ribbon_wrapper_item {
  padding-bottom: 0.5208333333rem;
  border-bottom: 0.5px solid #DBDBDB;
  margin-top: 0.5208333333rem;
}
.root_ribbon_wrapper_item h4 {
  font-size: 1rem;
}
.root_ribbon_wrapper_item h4.fill a {
  font-weight: 600;
}
.root_ribbon_wrapper_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.root_ribbon_wrapper_item .content_utility {
  margin-top: 0.2604166667rem;
}
.root_ribbon_wrapper_enter {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  gap: 0.5208333333rem;
  align-items: center;
  background-color: #F8786B;
  width: 100%;
  padding: 0.5208333333rem 0;
  font-size: 1.0416666667rem;
  text-align: center;
  font-size: 0.8333333333rem;
  bottom: -2.6041666667rem;
  color: #ffffff;
}
.root_ribbon_wrapper_enter:hover {
  color: #ffffff !important;
  background-color: #FF6656;
}
.root_ribbon_wrapper_enter img {
  display: inline-block;
  width: 0.46875rem;
  height: 0.7291666667rem;
}
.root_ribbon .advert {
  height: 26.0416666667rem;
  padding: 0;
  margin-top: 1.5625rem;
}

.content_utility {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.78125rem;
}
.content_utility_date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: #A2A8B0;
  text-decoration: none;
}
.content_utility_date p {
  font-size: 0.625rem;
}
.content_utility_view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0.5208333333rem;
  color: #A2A8B0;
  text-decoration: none;
}
.content_utility_view p {
  font-size: 0.625rem;
}
.content_utility_view img {
  width: 0.7291666667rem;
  height: auto;
  margin-right: 0.3645833333rem;
}
.content_utility_comments {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: #A2A8B0;
  text-decoration: none;
}
.content_utility_comments p {
  font-size: 0.625rem;
}
.content_utility_comments img {
  width: 0.6770833333rem;
  height: auto;
  margin-right: 0.3645833333rem;
}

.social_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0416666667rem;
  margin-top: 1.0416666667rem;
}
.social_list li {
  display: inline-block;
  width: 1.25rem;
  height: auto;
  list-style-type: none;
}
.social_list li a {
  display: inline-block;
  width: 100%;
}
.social_list li a img {
  display: inline-block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  background-color: #333333;
  padding: 0.78125rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
header .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
header .container .logo img {
  display: inline-block;
  width: 7.2916666667rem;
  height: auto;
}
header .container nav .nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  color: #ffffff;
}
header .container nav .nav_list .mobile_li {
  display: none;
}
header .container nav .nav_list .social_list {
  display: none;
}
header .container nav .nav_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin-right: 0.5208333333rem;
}
header .container nav .nav_list li span {
  margin-bottom: auto;
  display: inline-block;
  height: 80%;
  margin-top: auto;
  width: 1px;
  background-color: #DBDBDB;
  margin-left: 0.5208333333rem;
}
header .container nav .nav_list li:first-child {
  padding-left: 0;
  border-left: none;
}
header .container nav .nav_list li:last-child {
  margin-right: 0;
}
header .container nav .nav_list li .border {
  display: none;
}
header .container nav .nav_list li a {
  text-decoration: unset;
  color: #ffffff;
  font-size: 0.8333333333rem;
}
header .container nav .nav_list li a:hover {
  color: #FF6656;
}
header .container nav .social_list {
  display: none;
}
header .search {
  top: -100%;
  position: absolute;
  background-color: #333333;
  border-top: 1px solid #A2A8B0;
  padding: 0.9375rem 0 1.4583333333rem 0;
  width: 100%;
  visibility: hidden;
  transition: 0.3s all;
  z-index: 10;
}
header .search form {
  width: 100%;
}
header .search form input {
  width: 100%;
  height: 1.7708333333rem;
  background: unset;
  border: none;
  border-bottom: 1px solid #DBDBDB;
  color: #ffffff;
  font-size: 0.8333333333rem;
}
header .search form input::placeholder {
  color: #ffffff;
}
header .search.active {
  transition: 0.3s all;
  visibility: visible;
  top: 100%;
}

.main_root {
  padding-top: 1.5625rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.main_root .left_root {
  width: 28.3854166667rem;
  height: auto;
}
.main_root .left_root_semi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.09375rem;
}
.main_root .ribbon_root {
  width: 13.6979166667rem;
  height: 53.8541666667rem;
  position: relative;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.main_root .ribbon_root_tabs .tab:last-child {
  display: none;
}
.main_root .ribbon_root_wrapper {
  overflow: scroll;
  height: 100%;
}
.main_root .ribbon_root_wrapper_item {
  padding-bottom: 0.5208333333rem;
  border-bottom: 0.5px solid #DBDBDB;
  margin-top: 0.5208333333rem;
}
.main_root .ribbon_root_wrapper_item h4 a {
  font-size: 0.8333333333rem;
}
.main_root .ribbon_root_wrapper_item h4.fill a {
  font-weight: 600;
}
.main_root .ribbon_root_wrapper_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.main_root .ribbon_root_wrapper_item .content_utility {
  margin-top: 0.2604166667rem;
}
.main_root .ribbon_root .week_popular_wrapper {
  display: none;
}
.main_root .ribbon_root_enter {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  gap: 0.5208333333rem;
  align-items: center;
  background-color: #F8786B;
  width: 100%;
  padding: 0.5208333333rem 0;
  font-size: 1.0416666667rem;
  text-align: center;
  font-size: 0.8333333333rem;
  bottom: -3.125rem;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
}
.main_root .ribbon_root_enter:hover {
  color: #ffffff !important;
  background-color: #FF6656;
}
.main_root .ribbon_root_enter img {
  display: inline-block;
  width: 0.46875rem;
  height: 0.7291666667rem;
}
.main_root .ribbon_root_wrapper::-webkit-scrollbar {
  width: 0.2083333333rem;
  display: block;
}
.main_root .ribbon_root_wrapper::-webkit-scrollbar-track {
  display: none;
}
.main_root .ribbon_root_wrapper::-webkit-scrollbar-thumb {
  background: #F8786B;
}
.main_root .ribbon_root_wrapper::-webkit-scrollbar-thumb:hover {
  background: #F8786B;
}
.main_root .ribbon_root_static {
  position: static;
  margin-top: 1.3020833333rem;
}
.main_root .right_root {
  width: 13.6979166667rem;
}
.main_root .right_root .tab {
  color: #F8786B;
}
.main_root .right_root_wrapper {
  width: 100%;
  margin-top: 0.5208333333rem;
}
.main_root .right_root_wrapper_item {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  cursor: pointer;
  gap: 0.5208333333rem;
  margin-top: 1.0416666667rem;
}
.main_root .right_root_wrapper_item:first-child {
  margin-top: 0;
}
.main_root .right_root_wrapper_item_image {
  width: 5.2083333333rem;
  height: 2.6041666667rem;
  display: block;
  overflow: hidden;
}
.main_root .right_root_wrapper_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .main_root .right_root_wrapper_item_image img:hover {
    transform: scale(1.1);
  }
}
.main_root .right_root_wrapper_item_info {
  width: 10.4166666667rem;
}
.main_root .right_root_wrapper_item_info_title a {
  display: inline-block;
  font-size: 0.8333333333rem;
}
.main_root .right_root_wrapper_item_info_descr a {
  display: inline-block;
  font-size: 0.8333333333rem;
}

.category {
  margin-top: 4.1666666667rem;
}
.category_content {
  margin-top: 1.0416666667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0416666667rem;
  align-items: flex-start;
}
.category_content .main_block {
  width: 28.3854166667rem;
}
.category_content .main_block_image {
  height: 17.2916666667rem;
}
.category_content .main_block_title {
  margin-top: 0.5208333333rem;
}
.category_content .main_block .content_utility {
  margin-top: 0.2604166667rem;
}
.category_content .root_small {
  width: 29.4270833333rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 1.0416666667rem;
}
.category_content .root_small .content_utility {
  margin-top: 0.2604166667rem;
}
.category.lowmargin {
  margin-top: 2.6041666667rem;
}

.right_root_mobile {
  display: none;
}

.week_popular {
  background-color: #333333;
  padding: 2.6041666667rem 0;
  margin-top: 4.1666666667rem;
}
.week_popular .section_title .tab {
  color: #ffffff;
  background-color: #333333;
}
.week_popular .section_title_enter {
  color: #ffffff;
  background-color: #333333;
}
.week_popular_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0416666667rem;
  margin-top: 1.09375rem;
}
.week_popular_wrapper .root_semi_item_title a {
  color: #ffffff;
}

.column_root {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding-top: 1.5625rem;
}
.column_root_main {
  width: 38.1770833333rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
.column_root_main .column_hidden_title {
  color: #F8786B;
}
.column_root_main_authorbox {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5625rem;
}
.column_root_main_authorbox_image {
  width: 13.75rem;
  width: 5rem;
  height: auto;
  overflow: hidden;
}
.column_root_main_authorbox_image img {
  display: inline-block;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .column_root_main_authorbox_image img:hover {
    transform: scale(1.1);
  }
}
.column_root_main_authorbox_info {
  width: 23.4375rem;
  margin-left: 1.0416666667rem;
}
.column_root_main_authorbox_info .tab {
  color: #F8786B;
}
.column_root_main_authorbox_info p {
  margin-top: 0.78125rem;
}
.column_root_main .main_block {
  width: 38.1770833333rem;
  margin-top: 2.0833333333rem;
}
.column_root_main .main_block_image {
  height: 20.8333333333rem;
}
.column_root_main_semiblock {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.0833333333rem;
}
.column_root_main_semiblock_image {
  width: 13.6979166667rem;
  height: 8.4375rem;
  overflow: hidden;
}
.column_root_main_semiblock_image img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .column_root_main_semiblock_image img:hover {
    transform: scale(1.1);
  }
}
.column_root_main_semiblock_info {
  width: 23.4375rem;
  margin-left: 1.0416666667rem;
}
.column_root_main_semiblock_info_title a {
  font-weight: 600;
  font-size: 1.1458333333rem;
  line-height: 1.25rem;
}
.column_root_main_semiblock_info .content_utility {
  margin-top: 0.2604166667rem;
}
.column_root_main_show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8333333333rem;
  font-weight: 600;
  border: 0.5px solid #242424;
  width: 100%;
  padding: 0.5208333333rem;
  margin-top: 2.0833333333rem;
}
.column_root_main_show:hover {
  color: #ffffff !important;
  background-color: #FF6656;
}
.column_root_main_show img {
  width: 0.8072916667rem;
  height: 0.8072916667rem;
  object-fit: cover;
}

.news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding-top: 1.5625rem;
}
.news .subtitle_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news_main {
  width: 38.1770833333rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
.news_main_subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  gap: 1.0416666667rem;
  margin-top: 0.5208333333rem;
}
.news_main_subtitle_category {
  font-size: 0.7291666667rem;
  line-height: 0.8020833333rem;
  color: #F8786B;
  font-weight: 600;
}
.news_main_subtitle .content_utility {
  margin-top: 0;
}
.news_main_image {
  width: auto;
  margin: 0.78125rem 0 2.0833333333rem 0;
  overflow: hidden;
}
.news_main_image_author {
  font-size: 0.625rem;
  color: #A2A8B0;
  font-family: "Manrope", sans-serif;
}
.news_main_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .news_main_image img:hover {
    transform: scale(1.1);
  }
}
.news_main_content {
  width: 100%;
}
.news_main_content .paragraph {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0416666667rem;
  align-items: flex-start;
  margin-top: 1.0416666667rem;
}
.news_main_content .paragraph .image {
  display: inline-block;
  width: 50%;
  transition: all 0.3s;
  overflow: hidden;
}
.news_main_content .paragraph .image img {
  display: inline-block;
  width: 100%;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .news_main_content .paragraph .image img:hover {
    transform: scale(1.1);
  }
}
.news_main_content .paragraph p {
  width: 50%;
  margin-top: 0;
}
.news_main_content p {
  margin-top: 1.0416666667rem;
}
.news_main_content a {
  color: #F8786B;
}
.news_main_content h2 {
  margin-top: 1.0416666667rem;
}
.news_main_content ul {
  margin-top: 1.0416666667rem;
}
.news_main_content ul li {
  list-style: inside;
}
.news_main_content ul li::marker {
  font-size: 0.9375rem;
  margin: 0;
  padding: 0;
}
.news_main_content ol {
  margin-top: 1.0416666667rem;
  padding-left: 1.0416666667rem;
}
.news_main_content ol li::marker {
  font-size: 0.7291666667rem;
  margin: 0;
  padding: 0;
}
.news_main_content_recommend {
  padding: 0.78125rem 0;
  border-top: 0.5px solid #A2A8B0;
  border-bottom: 0.5px solid #A2A8B0;
  margin-top: 1.5625rem;
}
.news_main_content_recommend h3 a {
  font-weight: 500;
  color: #242424;
}
.news_main_content_recommend p {
  margin: 0;
  color: #F8786B;
  font-weight: 600;
}
.news_main_author {
  width: 16.6666666667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.78125rem 0.8333333333rem;
  background-color: #ffffff;
  margin-top: 2.6041666667rem;
}
.news_main_author_name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5208333333rem;
  width: 80%;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  text-transform: uppercase;
}
.news_main_author_link {
  width: 1.25rem;
  height: 1.25rem;
}
.news_main_author_link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_main_similar {
  margin-top: 1.5625rem;
}
.news_main_similar h3 {
  font-weight: 500;
}
.news_main_similar .root_small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0416666667rem;
  padding-bottom: 2.0833333333rem;
  margin-top: 1.0416666667rem;
}
.news_main_similar .root_small .content_utility {
  margin-top: 0;
}
.news_main_similar .root_small p {
  margin-top: 0;
}
.news_main_comments {
  padding: 1.5625rem;
  background-color: #ffffff;
  border: 0.5px solid #DBDBDB;
  margin-top: 1.5625rem;
}
.news_main_comments h3 {
  color: #F8786B;
  font-weight: 500;
}
.news_main_comments .comments_form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0416666667rem;
  flex-direction: column;
  margin-top: 1.0416666667rem;
}
.news_main_comments .comments_form textarea {
  border-radius: 0.2604166667rem;
  border: 0.5px solid #DBDBDB;
}
.news_main_comments .comments_form input {
  font-family: "Manrope", sans-serif;
  font-size: 0.8333333333rem;
  padding: 0.5208333333rem 0.78125rem;
  font-weight: 500;
  height: 2.2916666667rem;
  border-radius: 0.2604166667rem;
  border: 0.5px solid #DBDBDB;
}
.news_main_comments .comments_form input::placeholder {
  color: #A2A8B0;
}
.news_main_comments .comments_form button {
  background-color: #A2A8B0;
  padding: 0.5208333333rem 0;
  border: none;
  transition: 0.3s;
  color: #ffffff;
}
.news_main_comments .comments_form button:hover {
  background-color: #FF6656;
  cursor: pointer;
}
.news_main_comments_list {
  padding-top: 1.5625rem;
}
.news_main_comments_list_item {
  margin-top: 1.5625rem;
}
.news_main_comments_list_item:first-child {
  margin-top: 0;
}
.news_main_comments_list_item_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.news_main_comments_list_item_title_likes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 0.3645833333rem;
}
.news_main_comments_list_item_title_likes .like {
  stroke: #A2A8B0;
  cursor: pointer;
}
.news_main_comments_list_item_title_likes .like.active {
  stroke: #00DB16;
}
.news_main_comments_list_item_title_likes .dislike {
  stroke: #A2A8B0;
  cursor: pointer;
}
.news_main_comments_list_item_title_likes .dislike.active {
  stroke: #DB2700;
}
.news_main_comments_list_item_title_likes .count {
  color: #A2A8B0;
  font-weight: 500;
  padding-bottom: 0.2604166667rem;
}
.news_main_comments_list_item_title_likes .count.less {
  color: #DB2700;
}
.news_main_comments_list_item_title_likes .count.more {
  color: #00DB16;
}
.news_main_comments_list_item h4 {
  font-weight: 500;
  color: #242424;
}
.news_main_comments_list_item_date {
  font-family: "Manrope", sans-serif;
  color: #A2A8B0;
  font-size: 0.7291666667rem;
  font-weight: 600;
}
.news_main_comments_list_item_comment {
  margin-top: 1.0416666667rem;
}
.news_main_comments_list_item_quote {
  margin-top: 0.5208333333rem;
}
.news_main_comments_list_item_quote h4 {
  padding-left: 0.78125rem;
}
.news_main_comments_list_item_quote_legacy {
  border-left: 2px solid #F8786B;
  margin-top: 0.5208333333rem;
  padding-left: 0.5208333333rem;
}
.news_main_comments_list_item_answer {
  display: inline-block;
  font-size: 0.7291666667rem;
  margin-top: 0.5208333333rem;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: #A2A8B0;
  cursor: pointer;
}
.news_main_comments_list_show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  align-items: center;
  font-size: 0.8333333333rem;
  padding: 0.5208333333rem 0;
  gap: 0.78125rem;
  border: 0.5px solid #242424;
  margin-top: 1.5625rem;
}
.news_main_comments_list_show:hover {
  color: #ffffff !important;
  background-color: #FF6656;
}
.news_main_comments_list_show img {
  transform: rotate(90deg);
  display: inline-block;
  width: 0.46875rem;
  height: 0.7291666667rem;
}

.policy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-top: 2.6041666667rem;
}
.policy h2 {
  margin-top: 1.5625rem;
}
.policy_main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 38.28125rem;
}
.policy_main_content p {
  margin-top: 0.78125rem;
}
.policy_main_content ul {
  margin-top: 0.78125rem;
}
.policy_main_content ul li {
  margin-top: 0.78125rem;
}
.policy_main_content ul li::marker {
  font-size: 1.0416666667rem;
  color: #F8786B;
}

footer {
  padding: 1.5625rem 0 2.6041666667rem 0;
  background-color: #333333;
  margin-top: 5.2083333333rem;
}
footer .container {
  padding: 0 7.03125rem;
}
footer .container .footer_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6.25rem;
}
footer .container .footer_wrapper_item {
  width: 14.5833333333rem;
}
footer .container .footer_wrapper_item_title {
  color: #A2A8B0;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}
footer .container .footer_wrapper_item .mobile_footer_copyright {
  display: none;
}
footer .container .footer_wrapper_item_list {
  margin-top: 1.0416666667rem;
}
footer .container .footer_wrapper_item_list li {
  margin-bottom: 0.78125rem;
  list-style-type: none;
}
footer .container .footer_wrapper_item_list .email {
  color: #F8786B;
}
footer .container .footer_wrapper_item_notify {
  margin-top: 0.78125rem;
  font-size: 0.7291666667rem;
  font-weight: 500;
}
footer .container .footer_wrapper_item:nth-child(1) {
  width: 19.7916666667rem;
}
footer .container .footer_wrapper_item:nth-child(1) .logo {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.25rem;
  font-weight: 700;
}
footer .container .footer_wrapper_item p {
  color: #ffffff;
  font-weight: 500;
}
footer .container .footer_wrapper_item a {
  color: #ffffff;
  font-size: 0.7291666667rem;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}
footer .container .footer_wrapper_item_warning {
  margin-top: 1.0416666667rem;
  font-size: 0.7291666667rem;
  font-weight: 500;
}
footer .container .footer_wrapper_item_copyright {
  margin-top: 1.0416666667rem;
  font-size: 0.7291666667rem;
  font-weight: 500;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 24px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.61803399;
  text-decoration: none;
  color: #f8786b;
  background-color: transparent;
  border: 1px solid #ddd;
  margin-left: -1px;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #919191;
  background-color: transparent;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #f8786b;
  border-color: #f8786b;
  cursor: default;
}

.flex_row {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border: 1px solid gray;
  border-radius: 10px;
  flex-wrap: wrap;
  background: #f1776c;
}

.flex_row .column {
  width: 50%;
}

.flex_row .column .flex_box select {
  width: 182px;
}

.flex_row .row {
  margin: 0;
  display: flex;
  width: 100%;
}

.flex_row .row .calc_box {
  width: 50%;
}

.flex_row .row .calc_box .button_calc {
  height: 34px;
  width: 100px;
}

.flex_row .row .row_column {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.flex_row .row .row_column .can {
  display: flex;
}

.flex_row .row .row_column .can .yes {
  margin-left: 10px;
  font-weight: 600;
}

.flex_row .row .row_column .can .no {
  margin-left: 10px;
  font-weight: 600;
}

.flex_row .row .row_column .help .help_text span {
  margin-left: 10px;
  font-weight: 600;
}

.calc_2 {
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}

.calc_2 .flex_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc_2 .flex_box input {
  width: 200px;
  margin-bottom: 12px;
}

.calc_2 .flex_box p {
  text-align: center;
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0;
  }

  h1 {
    font-size: 24px;
    line-height: 26.4px;
  }
  h1 a {
    font-size: 24px;
    line-height: 26.4px;
  }

  h2 {
    font-size: 22px;
    line-height: 24.2px;
  }
  h2 a {
    font-size: 22px;
    line-height: 24.2px;
  }

  h3 {
    font-size: 18px;
  }
  h3 a {
    font-size: 18px;
    line-height: 21.6px;
  }

  h4 {
    font-size: 16px;
  }
  h4 a {
    font-size: 16px !important;
    line-height: 20.8px;
  }

  p {
    font-size: 16px;
    line-height: 24px;
  }
  p a {
    font-size: 16px;
    line-height: 24px;
  }

  strong {
    font-size: 16px;
    line-height: 24px;
  }
  strong a {
    font-size: 16px;
    line-height: 24px;
  }

  em {
    font-size: 16px;
    line-height: 24px;
  }
  em a {
    font-size: 16px;
    line-height: 24px;
  }

  a {
    font-size: 12px;
  }
  a:hover {
    transition: unset;
    color: unset;
  }

  .tab {
    font-size: 30px;
    line-height: 33px;
  }
  .tab a {
    font-size: 30px;
    line-height: 33px;
  }

  .advert {
    padding: 133px 103px;
    margin-top: 30px;
  }
  .advert.subadvert {
    padding: 75px 0;
  }

  .search_btn {
    width: 20px;
  }

  .section_title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    position: unset;
    padding: 0 16px;
  }
  .section_title .tab {
    padding-right: 10px;
    padding-left: 0;
  }
  .section_title_border {
    display: none;
    position: unset;
  }
  .section_title_enter {
    gap: 10px;
    font-size: 14px;
    padding-left: 0;
    position: unset;
  }
  .section_title_enter img {
    display: inline-block;
    width: 9px;
    height: 14px;
  }

  .main_block {
    text-decoration: none;
  }
  .main_block_image {
    height: 200px;
  }
  .main_block_title {
    margin-top: 10px;
    padding: 0 16px;
  }
  .main_block .content_utility {
    padding: 0 16px;
  }

  .root_semi_item {
    width: 100%;
    margin-top: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    gap: 8px;
    align-items: flex-start;
    border-top: 1px solid #DBDBDB;
    padding-top: 15px;
  }
  .root_semi_item:last-child {
    padding-bottom: 15px;
    border-bottom: 1px solid #DBDBDB;
  }
  .root_semi_item_image {
    height: auto;
    max-width: 110px;
    order: 2;
  }
  .root_semi_item_title {
    order: 1;
    margin-top: 0;
    width: 80%;
  }
  .root_semi_item_title a {
    font-size: 18px;
    line-height: 21.6px;
  }

  .root_small_item {
    width: 150px;
  }
  .root_small_item_image {
    height: 100px;
  }
  .root_small_item_title {
    width: 100%;
    margin-top: 10px;
  }
  .root_small_item_title a {
    font-weight: 500;
    font-size: 16px;
  }

  .content_utility {
    margin-top: 10px;
    align-items: center;
  }
  .content_utility_date p {
    font-size: 12px;
  }
  .content_utility_view {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 10px;
    align-items: center;
  }
  .content_utility_view p {
    font-size: 12px;
  }
  .content_utility_view img {
    width: 14px;
    margin-right: 7px;
  }
  .content_utility_comments {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    color: #A2A8B0;
    text-decoration: none;
    align-items: center;
  }
  .content_utility_comments p {
    font-size: 12px;
  }
  .content_utility_comments img {
    width: 13px;
    margin-right: 7px;
  }

  .social_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  .social_list li {
    width: 24px;
  }

  header {
    padding: 0;
  }
  header .container {
    padding: 7px 20px;
    width: 100%;
  }
  header .container .burger {
    display: block;
  }
  header .container .logo {
    width: 140px;
  }
  header .container .logo span {
    display: none;
  }
  header .container .logo img {
    width: 100%;
  }
  header .container nav {
    border-top: 0.5px solid #DBDBDB;
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #333333;
    padding: 0 16px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    left: -100%;
  }
  header .container nav .nav_list {
    flex-direction: column;
  }
  header .container nav .nav_list .mobile_li {
    display: inline;
  }
  header .container nav .nav_list .mobile_li_email {
    color: #F8786B;
  }
  header .container nav .nav_list li {
    margin-right: 0;
    margin-top: 20px;
    display: inline;
  }
  header .container nav .nav_list li span {
    display: none;
  }
  header .container nav .nav_list li:first-child {
    padding-left: 0;
    border-left: none;
  }
  header .container nav .nav_list li:last-child {
    margin-right: 0;
  }
  header .container nav .nav_list li a {
    font-size: 16px;
  }
  header .container nav .nav_list li.active a {
    position: relative;
    display: inline;
    color: #F8786B;
  }
  header .container nav .nav_list li.active a .border {
    top: 27px;
    left: -1px;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #F8786B;
  }
  header .container nav .social_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    gap: 20px;
  }
  header .container nav .social_list li {
    width: 24px;
  }
  header .container nav.active {
    left: 0;
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
  }
  header .search {
    top: -100%;
    padding: 10px 0 16px 0;
  }
  header .search form {
    width: 100%;
  }
  header .search form input {
    height: 29px;
    font-size: 16px;
  }

  .main_root {
    padding-top: 0;
    flex-direction: column;
  }
  .main_root .left_root {
    width: 100%;
  }
  .main_root .left_root_semi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-top: 1.09375rem;
    padding: 0 16px;
  }
  .main_root .ribbon_root {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 97px;
    padding: 0 16px;
  }
  .main_root .ribbon_root_tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    color: #A2A8B0;
  }
  .main_root .ribbon_root_tabs .tab {
    padding-bottom: 5px;
  }
  .main_root .ribbon_root_tabs .tab:last-child {
    display: inline-block;
  }
  .main_root .ribbon_root_tabs .tab.active {
    color: #242424;
    border-bottom: 2px solid #F8786B;
  }
  .main_root .ribbon_root_wrapper {
    overflow: scroll;
    height: 100%;
    margin-top: 10px;
  }
  .main_root .ribbon_root_wrapper_item {
    padding-bottom: 15px;
    border-bottom: 0.5px solid #DBDBDB;
    margin-top: 10px;
  }
  .main_root .ribbon_root_wrapper_item:last-child {
    padding-bottom: 15px;
    border-bottom: none;
  }
  .main_root .ribbon_root_wrapper_item .content_utility {
    margin-top: 10px;
  }
  .main_root .ribbon_root .week_popular_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 21px;
  }
  .main_root .ribbon_root .week_popular_wrapper .root_semi_item {
    flex-direction: column;
  }
  .main_root .ribbon_root .week_popular_wrapper .root_semi_item_image {
    width: 100%;
    max-width: 100%;
    order: 1;
  }
  .main_root .ribbon_root .week_popular_wrapper .root_semi_item_title {
    order: 2;
    width: 100%;
  }
  .main_root .ribbon_root .week_popular_wrapper .root_semi_item_title a {
    color: #242424;
  }
  .main_root .ribbon_root .week_popular_wrapper .root_semi_item .content_utility {
    order: 3;
  }
  .main_root .ribbon_root_enter {
    gap: 10px;
    width: 90%;
    padding: 10px 0;
    font-size: 16px;
    top: -80px;
    height: 42px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .main_root .ribbon_root_enter img {
    display: inline-block;
    width: 9px;
    height: 14px;
  }
  .main_root .ribbon_root_wrapper::-webkit-scrollbar {
    display: none;
  }
  .main_root .right_root {
    width: 13.6979166667rem;
    display: block;
  }
  .main_root .right_root .tab {
    color: #F8786B;
  }
  .main_root .right_root_wrapper {
    width: 100%;
    margin-top: 0.5208333333rem;
    display: none;
  }
  .main_root .right_root_wrapper_item {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    cursor: pointer;
    gap: 0.5208333333rem;
    margin-top: 1.0416666667rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main_root .right_root_wrapper_item:first-child {
    margin-top: 0;
  }
  .main_root .right_root_wrapper_item_image {
    width: 2.6041666667rem;
    height: 2.6041666667rem;
    display: block;
  }
  .main_root .right_root_wrapper_item_info {
    width: 10.4166666667rem;
  }
  .main_root .right_root_wrapper_item_info_title a {
    color: #F8786B;
    text-transform: uppercase;
    font-size: 0.8333333333rem;
  }
  .main_root .right_root_wrapper_item_info_descr a {
    display: inline-block;
    font-size: 0.8333333333rem;
    margin-top: 0.2604166667rem;
  }

  .category {
    margin-top: 30px !important;
  }
  .category:first-child {
    margin-top: 40px !important;
  }
  .category_content {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
  }
  .category_content .main_block {
    width: 100%;
  }
  .category_content .main_block_image {
    padding: 0 16px;
    height: 183px;
  }
  .category_content .main_block_title {
    margin-top: 10px;
  }
  .category_content .main_block .content_utility {
    margin-top: 5px;
  }
  .category_content .root_small {
    width: 100%;
    flex-wrap: unset;
    padding: 0 0 0 16px;
  }
  .category_content .root_small_item {
    margin-right: 15px;
  }
  .category_content .root_small .content_utility {
    margin-top: 5px;
  }
  .category.lowmargin {
    margin-top: 30px;
  }

  .right_root_mobile {
    display: block;
  }
  .right_root_mobile .right_root {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    border-top: 1px solid #DBDBDB;
    margin-top: 31px;
  }
  .right_root_mobile .right_root .tab {
    color: #F8786B;
  }
  .right_root_mobile .right_root_wrapper {
    margin-top: 20px;
  }
  .right_root_mobile .right_root_wrapper_item_mobile img {
    width: 100%;
    height: 183px;
    object-fit: cover;
  }
  .right_root_mobile .right_root_wrapper_item {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    -webkit-justify-content: unset;
    -moz-justify-content: unset;
    justify-content: unset;
    cursor: pointer;
    gap: 10px;
    margin-top: 20px;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .right_root_mobile .right_root_wrapper_item:first-child {
    margin-top: 0;
    flex-direction: column;
    justify-content: unset;
  }
  .right_root_mobile .right_root_wrapper_item_image {
    width: 100%;
    height: auto;
    display: inline-block;
  }
  .right_root_mobile .right_root_wrapper_item_info_title a {
    color: #F8786B;
    color: #242424;
    text-transform: uppercase;
    font-size: 16px;
  }
  .right_root_mobile .right_root_wrapper_item_info_descr a {
    display: inline-block;
    font-size: 16px;
    margin-top: 5px;
  }
  .right_root_mobile .right_root_show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    border: 0.5px solid #242424;
    width: 100%;
    padding: 10px;
    margin-top: 40px;
    font-family: "Manrope", sans-serif;
  }
  .right_root_mobile .right_root_show:hover {
    color: #ffffff !important;
    background-color: #FF6656;
  }
  .right_root_mobile .right_root_show img {
    width: 9px;
    height: 15px;
    object-fit: cover;
    transform: rotate(90deg);
  }

  .week_popular {
    display: none;
  }

  .column_root {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding-top: 20px;
    flex-direction: column;
  }
  .column_root .root_ribbon {
    display: none;
  }
  .column_root_main {
    width: 100%;
  }
  .column_root_main_authorbox {
    width: 100%;
    margin-bottom: 30px;
    flex-direction: row;
    padding: 0 16px;
  }
  .column_root_main_authorbox_image {
    width: 25%;
    height: auto;
    margin-right: 10px;
  }
  .column_root_main_authorbox_info {
    width: 100%;
    margin-left: 0;
    margin-top: 0px;
  }
  .column_root_main_authorbox_info .tab {
    color: #F8786B;
  }
  .column_root_main_authorbox_info p {
    margin-top: 15px;
  }
  .column_root_main .column_hidden_title {
    padding: 0 16px;
  }
  .column_root_main .main_block {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 10px;
  }
  .column_root_main .main_block_image {
    height: 200px;
  }
  .column_root_main_semiblock {
    width: 90%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-top: 0;
    margin: 0 auto;
    padding: 20px 0;
    gap: 10px;
    border-bottom: 1px solid #DBDBDB;
  }
  .column_root_main_semiblock:first-child {
    border-top: 1px solid #DBDBDB;
  }
  .column_root_main_semiblock_image {
    height: auto;
    max-height: 75px;
    width: 100%;
    max-width: 110px;
    order: 2;
  }
  .column_root_main_semiblock_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .column_root_main_semiblock_info {
    width: 80%;
    margin-left: 0;
  }
  .column_root_main_semiblock_info_title a {
    font-weight: 500;
    font-size: 18px;
    line-height: 21.6px;
  }
  .column_root_main_semiblock_info_descr {
    display: none;
  }
  .column_root_main_semiblock_info .content_utility {
    margin-top: 5px;
  }
  .column_root_main_show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    border: 0.5px solid #242424;
    width: 90%;
    padding: 10px 16px;
    margin: 0 auto;
    margin-top: 40px;
    font-family: "Manrope", sans-serif;
  }
  .column_root_main_show:hover {
    color: #ffffff !important;
    background-color: #FF6656;
  }
  .column_root_main_show img {
    width: 15.5px;
    height: 15.5px;
    object-fit: cover;
    transform: rotate(90deg);
  }

  .news {
    justify-content: unset;
    padding-top: 20px;
  }
  .news .advert {
    height: 288px;
    margin: 20px 16px 0 16px;
  }
  .news_main {
    width: 100%;
  }
  .news_main h1 {
    padding: 0 16px;
  }
  .news_main_subtitle {
    gap: 0;
    margin-top: 0;
    align-items: unset;
    flex-direction: column;
    padding: 0 16px;
    margin-top: 10px;
  }
  .news_main_subtitle_category {
    font-size: 14px;
    line-height: 15.4px;
  }
  .news_main_subtitle .content_utility {
    margin-top: 10px;
  }
  .news_main_image {
    width: auto;
    margin: 7px 0 40px 0;
  }
  .news_main_image_author {
    font-size: 12px;
    margin-top: 10px;
    display: inline-block;
    padding: 0 16px;
  }
  .news_main_content {
    width: 100%;
    padding: 0 16px;
  }
  .news_main_content .wp-block-image {
    margin-bottom: 10px;
  }
  .news_main_content .paragraph {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: unset;
    margin-top: 20px;
  }
  .news_main_content .paragraph .image {
    display: block;
    width: 100%;
  }
  .news_main_content .paragraph .image img {
    display: block;
    width: 100%;
  }
  .news_main_content .paragraph p {
    width: 100%;
    margin-top: 0;
  }
  .news_main_content .quote {
    margin: 30px;
    background-color: unset;
  }
  .news_main_content .quote q {
    background-color: unset;
  }
  .news_main_content_articletitle {
    padding: 0 16px;
  }
  .news_main_content p {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .news_main_content h2 {
    margin-top: 20px;
  }
  .news_main_content ul {
    margin-top: 20px;
    padding: 0 16px;
  }
  .news_main_content ul li {
    font-size: 16px;
    text-align: start;
  }
  .news_main_content ul li::marker {
    font-size: 22px;
  }
  .news_main_content ol {
    margin-top: 20px;
    padding: 0 16px;
    padding-left: 32px;
  }
  .news_main_content ol li {
    font-size: 16px;
  }
  .news_main_content ol li::marker {
    font-size: 16px;
  }
  .news_main_content_recommend {
    padding: 15px 0;
    margin: 0 auto;
    margin-top: 30px;
    width: 92%;
  }
  .news_main_content_recommend h3 {
    padding: 0 16px;
  }
  .news_main_content_recommend h3 a {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
  }
  .news_main_content_recommend p {
    margin-top: 0;
    padding: 0;
  }
  .news_main_author {
    width: 100%;
    align-items: unset;
    padding: 15px 16px;
    margin-top: 15px;
    background: unset;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding-left: 0;
  }
  .news_main_author_name {
    gap: 10px;
    width: 80%;
    font-size: 18px;
    line-height: 21.6px;
  }
  .news_main_author_link {
    width: 24px;
    height: 24px;
  }
  .news_main_similar {
    margin-top: 15px;
    padding: 0 16px;
  }
  .news_main_similar .root_small {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: unset;
    padding-bottom: 0;
    margin-top: 15px;
  }
  .news_main_similar .root_small .root_small_item {
    width: 150px;
    margin-right: 15px;
  }
  .news_main_similar .root_small .root_small_item_image {
    height: 100px;
  }
  .news_main_similar .root_small .root_small_item_title {
    width: 100%;
    margin-top: 10px;
  }
  .news_main_similar .root_small .root_small_item_title a {
    font-weight: 500;
    font-size: 16px;
  }
  .news_main_similar .root_small .content_utility {
    margin-top: 0;
  }
  .news_main_similar .root_small p {
    margin-top: 0;
  }
  .news_main_comments {
    padding: 20px 16px;
    background-color: #ffffff;
    border: 0.5px solid #DBDBDB;
    margin-top: 20px;
  }
  .news_main_comments .comments_form {
    gap: 15px;
    margin-top: 20px;
  }
  .news_main_comments .comments_form textarea {
    min-height: 44px;
    border-radius: 5px;
  }
  .news_main_comments .comments_form input {
    font-size: 16px;
    padding: 10px 15px;
    height: 44px;
    border-radius: 5px;
  }
  .news_main_comments .comments_form .code {
    display: none;
  }
  .news_main_comments .comments_form .code.active {
    display: inline-block;
  }
  .news_main_comments .comments_form button {
    padding: 10px 0;
    font-size: 16px;
  }
  .news_main_comments .comments_form button:hover {
    background-color: unset;
    cursor: unset;
  }
  .news_main_comments_list {
    padding-top: 30px;
  }
  .news_main_comments_list_item {
    margin-top: 15px;
  }
  .news_main_comments_list_item:first-child {
    margin-top: 0;
  }
  .news_main_comments_list_item_title_likes {
    gap: 7px;
  }
  .news_main_comments_list_item_title_likes .count {
    padding-bottom: 5px;
  }
  .news_main_comments_list_item_date {
    font-size: 14px;
  }
  .news_main_comments_list_item_comment {
    margin-top: 10px;
  }
  .news_main_comments_list_item_quote {
    margin-top: 10px;
  }
  .news_main_comments_list_item_quote h4 {
    padding-left: 15px;
  }
  .news_main_comments_list_item_quote_legacy {
    border-left: 2px solid #F8786B;
    margin-top: 10px;
    padding-left: 10px;
  }
  .news_main_comments_list_item_answer {
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    color: #A2A8B0;
    cursor: pointer;
  }
  .news_main_comments_list_show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    border: 0.5px solid #242424;
    width: 100%;
    padding: 10px;
    margin-top: 40px;
    font-family: "Manrope", sans-serif;
  }
  .news_main_comments_list_show:hover {
    color: #ffffff !important;
    background-color: #FF6656;
  }
  .news_main_comments_list_show img {
    width: 9px;
    height: 15px;
    object-fit: cover;
    transform: rotate(90deg);
  }
  .news .root_ribbon {
    display: none;
  }

  .policy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    -webkit-justify-content: unset;
    -moz-justify-content: unset;
    justify-content: unset;
    margin-top: 30px;
    flex-direction: column;
    padding: 0 16px;
  }
  .policy h2 {
    margin-top: 20px;
  }
  .policy_main {
    flex-direction: column;
    width: 100%;
  }
  .policy_main_content p {
    margin-top: 15px;
  }
  .policy_main_content ul {
    margin-top: 15px;
    padding-left: 22px;
  }
  .policy_main_content ul li {
    margin-top: 15px;
    font-size: 16px;
  }
  .policy_main_content ul li::marker {
    font-size: 20px;
    color: #F8786B;
  }
  .policy .root_ribbon {
    display: none;
  }

  footer {
    padding: 30px 0 50px 0;
    margin-top: 80px;
  }
  footer .container {
    padding: 0 16px;
  }
  footer .container .footer_wrapper {
    gap: unset;
    flex-direction: column;
  }
  footer .container .footer_wrapper_item {
    width: 100%;
  }
  footer .container .footer_wrapper_item_title {
    margin-top: 26px;
  }
  footer .container .footer_wrapper_item .mobile_footer_copyright {
    display: inline-block;
    margin-top: 30px;
  }
  footer .container .footer_wrapper_item_list {
    margin-top: 20px;
  }
  footer .container .footer_wrapper_item_list li {
    margin-bottom: 15px;
  }
  footer .container .footer_wrapper_item_list li a {
    font-size: 14px;
  }
  footer .container .footer_wrapper_item_notify {
    margin-top: 15px;
    font-size: 14px;
  }
  footer .container .footer_wrapper_item:nth-child(1) {
    width: 100%;
  }
  footer .container .footer_wrapper_item:nth-child(1) .logo {
    font-size: 24px;
  }
  footer .container .footer_wrapper_item p {
    font-size: 16px;
  }
  footer .container .footer_wrapper_item a {
    color: #ffffff;
    font-size: 0.7291666667rem;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
  }
  footer .container .footer_wrapper_item_warning {
    margin-top: 20px;
    font-size: 14px;
  }
  footer .container .footer_wrapper_item_copyright {
    margin-top: 1.0416666667rem;
    font-size: 0.7291666667rem;
    font-weight: 500;
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
