:root {
  --whitecolor: #fff;
  --primarycolor: #4D4E5B;
  --secondarycolor: #7FC241;
}

.white-color {
  color: var(--whitecolor);
}

.primary-color {
  color: var(--primarycolor);
}

.secondary-color {
  color: var(--secondarycolor);
}



/*==================================:: WOW CSS Start ::==================================*/
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both
}

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

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

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

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0)
  }

  40%,
  43% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)
  }

  90% {
    transform: translate3d(0, -4px, 0)
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom
}

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

.flash {
  animation-name: flash
}

@keyframes pulse {
  0% {
    transform: scaleX(1)
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    transform: scaleX(1)
  }
}

.pulse {
  animation-name: pulse
}

@keyframes rubberBand {
  0% {
    transform: scaleX(1)
  }

  30% {
    transform: scale3d(1.25, .75, 1)
  }

  40% {
    transform: scale3d(.75, 1.25, 1)
  }

  50% {
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    transform: scale3d(1.05, .95, 1)
  }

  to {
    transform: scaleX(1)
  }
}

.rubberBand {
  animation-name: rubberBand
}

@keyframes shake {

  0%,
  to {
    transform: translateZ(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: rotate(15deg)
  }

  40% {
    transform: rotate(-10deg)
  }

  60% {
    transform: rotate(5deg)
  }

  80% {
    transform: rotate(-5deg)
  }

  to {
    transform: rotate(0deg)
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing
}

@keyframes tada {
  0% {
    transform: scaleX(1)
  }

  10%,
  20% {
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }

  to {
    transform: scaleX(1)
  }
}

.tada {
  animation-name: tada
}

@keyframes wobble {
  0% {
    transform: none
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }

  to {
    transform: none
  }
}

.wobble {
  animation-name: wobble
}

@keyframes jello {

  0%,
  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(-.78125deg) skewY(-.78125deg)
  }

  77.7% {
    transform: skewX(.390625deg) skewY(.390625deg)
  }

  88.8% {
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }
}

.jello {
  animation-name: jello;
  transform-origin: center
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1)
  }

  40% {
    transform: scale3d(.9, .9, .9)
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03)
  }

  80% {
    transform: scale3d(.97, .97, .97)
  }

  to {
    opacity: 1;
    transform: scaleX(1)
  }
}

.bounceIn {
  animation-name: bounceIn
}

@keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .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 {

  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .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 {

  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .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
  }
}

.bounceInRight {
  animation-name: bounceInRight
}

@keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    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: translateZ(0)
  }
}

.bounceInUp {
  animation-name: bounceInUp
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9)
  }

  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1)
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .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 {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.fadeIn {
  animation-name: fadeIn
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -10%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInDown {
  animation-name: fadeInDown
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInLeft {
  animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(10%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInRight {
  animation-name: fadeInRight
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInUp {
  animation-name: fadeInUp
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.fadeOut {
  animation-name: fadeOut
}

@keyframes fadeOutDown {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(0, 10%, 0)
  }
}

.fadeOutDown {
  animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(-10%, 0, 0)
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(10%, 0, 0)
  }
}

.fadeOutRight {
  animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(0, -10%, 0)
  }
}

.fadeOutUp {
  animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(-1turn);
    animation-timing-function: ease-out
  }

  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out
  }

  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .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 {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in
  }

  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }

  80% {
    transform: perspective(400px) rotateX(-5deg)
  }

  to {
    transform: perspective(400px)
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in
  }

  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    transform: perspective(400px) rotateY(-5deg)
  }

  to {
    transform: perspective(400px)
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px)
  }

  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }

  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px)
  }

  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }

  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(10%, 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 {
  0% {
    opacity: 1
  }

  to {
    transform: translate3d(10%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1
  }
}

.rotateIn {
  animation-name: rotateIn
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1
  }

  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0
  }
}

.rotateOut {
  animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out
  }

  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out
  }

  40%,
  80% {
    transform: rotate(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 {
  0% {
    opacity: 0;
    transform: scale(.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
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0) rotate(-120deg)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.rollIn {
  animation-name: rollIn
}

@keyframes rollOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    transform: translate3d(10%, 0, 0) rotate(120deg)
  }
}

.rollOut {
  animation-name: rollOut
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

.zoomIn {
  animation-name: zoomIn
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInDown {
  animation-name: zoomInDown
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInLeft {
  animation-name: zoomInLeft
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInRight {
  animation-name: zoomInRight
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInUp {
  animation-name: zoomInUp
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }

  to {
    opacity: 0
  }
}

.zoomOut {
  animation-name: zoomOut
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutDown {
  animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center
  }
}

.zoomOutRight {
  animation-name: zoomOutRight
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutUp {
  animation-name: zoomOutUp
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -10%, 0);
    visibility: visible
  }

  to {
    transform: translateZ(0)
  }
}

.slideInDown {
  animation-name: slideInDown
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-10%, 0, 0);
    visibility: visible
  }

  to {
    transform: translateZ(0)
  }
}

.slideInLeft {
  animation-name: slideInLeft
}

@keyframes slideInRight {
  0% {
    transform: translate3d(10%, 0, 0);
    visibility: visible
  }

  to {
    transform: translateZ(0)
  }
}

.slideInRight {
  animation-name: slideInRight
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 10%, 0);
    visibility: visible
  }

  to {
    transform: translateZ(0)
  }
}

.slideInUp {
  animation-name: slideInUp
}

@keyframes slideOutDown {
  0% {
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 10%, 0)
  }
}

.slideOutDown {
  animation-name: slideOutDown
}

@keyframes slideOutLeft {
  0% {
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    transform: translate3d(-10%, 0, 0)
  }
}

.slideOutLeft {
  animation-name: slideOutLeft
}

@keyframes slideOutRight {
  0% {
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    transform: translate3d(10%, 0, 0)
  }
}

.slideOutRight {
  animation-name: slideOutRight
}

@keyframes slideOutUp {
  0% {
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -10%, 0)
  }
}

.slideOutUp {
  animation-name: slideOutUp
}

/*==================================:: WOW CSS End ::==================================*/
/*Slick Slider Css Start*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  min-width: 100%;
}

.slick-list.dragging {
  cursor: pointer;
}

.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;
  top: 0;
  left: 0;
  display: block;
  min-width: 100%;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-initialized .slick-slide {
  display: block;
  list-style: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 2;
  padding: 0;
  width: 36px;
  height: 36px;
  text-align: center;
  font-size: 0;
  color: var(--whitecolor);
  background: #EB1E4A;
  border: 0;
  cursor: pointer;
  opacity: 1;
  outline: none;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.slick-arrow.slick-prev {
  left: 20px;
}

.slick-arrow.slick-next {
  right: 20px;
}

.slick-arrow:after {
  display: block;
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 14px;
  line-height: 36px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.slick-arrow.slick-prev:after {
  content: "\f104";
}

.slick-arrow.slick-next:after {
  content: "\f105";
}

.slick-arrow:hover:after {
  color: var(--whitecolor);
}

.slick-arrow:focus,
.slick-arrow:hover {
  opacity: 1;
  outline: none;
  background: #003B82;
}

.slick-dots {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 20px auto 0 auto;
  padding: 0;
  text-align: center;
}

.slick-dots li {
  margin: 0 4px;
  padding: 0;
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.slick-dots li button {
  display: block;
  width: 30px;
  height: 2px;
  font-size: 0;
  padding: 0;
  background: #CECECE;
  position: relative;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
}

.slick-dots li.slick-active button:focus,
.slick-dots li.slick-active button:hover,
.slick-dots li.slick-active button,
.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
  box-shadow: none;
  background: #7BBA5A;
}

/*Slick Slider Css End*/

/* popup css */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-iframe-holder iframe {
  width: 800px;
  height: 500px;
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: var(--whitecolor);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  font-size: 0;
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: var(--whitecolor);
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button.mfp-arrow {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #a6a7ab;
  font-weight: 900;
  font-family: 'Line Awesome Free';
  color: var(--whitecolor);
  text-align: center;
  font-size: 24px;
  opacity: 1;
  transition: all 0.4s ease;
}

button.mfp-arrow:before {
  display: block !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  opacity: 1 !important;
}

button.mfp-arrow:hover {
  background: var(--secondarycolor);
}

button.mfp-arrow.mfp-arrow-left {
  left: 15px;
}

button.mfp-arrow.mfp-arrow-right {
  right: 15px;
}

button.mfp-arrow.mfp-arrow-left:before {
  content: "\f104";
}

button.mfp-arrow.mfp-arrow-right:before {
  content: "\f105";
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: var(--whitecolor);
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
  background: #a6a7ab !important;
}

.mfp-close:hover {
  background: #7FC241 !important;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  font-size: 40px !important;
  color: var(--whitecolor);
  text-align: center;
  padding-right: 0;
  opacity: 1;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  position: fixed;
  right: 15px;
  top: 15px;
}

body .mfp-image-holder .mfp-close {
  font-size: 0 !important;
}

.mfp-image-holder .mfp-close:after {
  position: absolute;
  font-family: 'Line Awesome Free';
  content: "\f00d";
  font-weight: 900;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 60px;
  color: var(--whitecolor);
  font-size: 24px !important;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  width: 60px;
  height: 60px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
  display: none;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid var(--whitecolor);
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid var(--whitecolor);
  ;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

/* Main image in popup */

.hamburger {
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
  margin: 4px 0 0;
  overflow: visible;
}

.hamburger-box {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: var(--secondarycolor);
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  bottom: -7px;
  width: 20px
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--secondarycolor);
}

.hamburger.is-active .hamburger-inner::after {
  width: 30px;
}

/** Spin **/
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*========= Mobile Menu STYLE Start ===========*/

.menu-open-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}

.mobile-menu-open .menu-open-overlay {
  display: block;
}

.mobile-menu-block {
  background: var(--whitecolor);
  color: var(--whitecolor);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 100px 20px 40px 20px;
  margin: 0;
  display: none;
  transition: left 0.2s ease 0s;
  width: 100%;
  z-index: 1;
  font-size: 14px;
  overflow: auto;
  height: 100vh;
}

.mobile-menu-open .mobile-menu-block {
  display: block;
}

.mobile-menu-inner {
  height: 100%;
  overflow: auto;
}

.mobile-menu-block ul {
  margin: 0;
  list-style: none;
}

.mobile-menu-block li {
  color: var(--primarycolor);
  position: relative;
  text-align: center;
  display: block;
}

.mobile-menu-block li+li {
  margin-top: 35px;
}

.mobile-menu-block ul li a {
  color: #2B2D38;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  text-align: center;
}

.single-tooted .mobile-menu-block ul>li.tooted-menu>a,
.tax-kategooria .mobile-menu-block ul>li.tooted-menu>a,
.mobile-menu-block ul li.current_page_parent>a,
.mobile-menu-block ul li.current-menu-parent>a,
.mobile-menu-block ul li.menu-item-type-custom.current-menu-item:hover a,
.mobile-menu-block ul li.menu-item-type-custom.current-menu-item a:hover,
.mobile-menu-block ul li a:hover,
.mobile-menu-block ul li a:focus,
.mobile-menu-block ul li.current-menu-item>a,
.mobile-menu-block ul li.current-page-ancestor>a {
  color: var(--secondarycolor);
}

.mobile-menu-block li li {
  border: none;
}

.mobile-menu-block li li a {
  color: var(--primarycolor);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  padding: 12px 15px;
  letter-spacing: 1px;
  display: block;
}

.mobile-menu-block li li li a {
  padding-left: 30px;
}

.mobile-menu-block ul.sub-menu {
  display: none;
  position: static;
  background: #f1f3f5;
  width: 320px;
  letter-spacing: 0;
  padding: 20px 0;
  margin: 18px auto 0 auto;
}

.mobile-menu-block ul.sub-menu li+li {
  margin-top: 0;
}

.mobile-menu-block ul.sub-menu li a:after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  left: auto;
  top: 0;
  margin-left: -15px;
  z-index: -1;
  opacity: 0;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-image: linear-gradient(90deg, rgba(253, 131, 163, 0) 0%, #7FC241 100%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.mobile-menu-block ul.sub-menu li:hover a:after,
.mobile-menu-block ul.sub-menu li.current-menu-item a:after {
  opacity: 0.4;
}

.hitarea {
  display: block;
  width: 100%;
  height: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}

.mobile-menu-block .language-menu {
  margin: 35px auto 0 auto !important;
  width: 20px;
  position: relative;
}

.mobile-menu-block .language-menu ul>li.menu-item-has-children>a:after {
  display: none;
}

.language-menu>ul>li+li {
  margin: 0;
}

.language-menu>ul>li.wpml-ls-current-language {
  display: none;
}

.language-menu .hitarea {
  height: 30px;
}

.language-menu .hitarea:before {
  display: block;
  content: "\f107";
  font-family: 'Line Awesome Free';
  line-height: 30px;
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin: 0 auto;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.language-menu .collapsable-hitarea.hitarea:before {
  content: "\f106";
  color: var(--secondarycolor);
}

.mobile-menu-block .language-menu ul.sub-menu {
  width: 100%;
  margin: 0;
}

.nav-main .language-menu>ul>li {
  margin: 0;
  padding: 0;
}

.nav-main .language-menu>ul>li.wpml-ls-current-language {
  display: none;
}

.mobile-menu-block .language-menu>ul>li>a,
.nav-main .language-menu>ul>li>a {
  width: 20px;
  height: 12px;
  padding: 0 !important;
  position: relative;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.language-menu ul>li.menu-item-has-children>a {
  padding: 0 20px 0 10px !important;
}

.language-menu ul>li.menu-item-has-children>a:after {
  display: block;
  content: "\f107";
  color: #888888;
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 0;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.language-menu ul>li.menu-item-has-children:hover>a:after {
  transform: rotate(-180deg);
}

.nav-main .language-menu>ul>li.menu-item-has-children:hover>a {
  border-radius: 3px 3px 0 0;
}

.language-menu ul.sub-menu {
  min-width: 1px;
  padding: 0 0 5px 0;
  background: var(--whitecolor);
  width: 100%;
  border-radius: 0 0 3px 3px;
}

.language-menu ul>li.menu-item-has-children ul li {
  width: 100%;
  display: block;
  padding: 4px 10px;
}

.language-menu ul>li.menu-item-has-children ul li a {
  padding: 0;
  width: 100%;
}

/*========= Mobile Menu STYLE End ===========*/

/* ===== RESET ================================================== */

main,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
blockquote,
big,
body,
button,
center,
canvas,
caption,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
dl,
div,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
section,
small,
source,
strike,
sub,
sup,
table,
tbody,
tfoot,
thead,
th,
tr,
tdvideo,
tt,
u,
ul,
var {
  background: transparent;
  border: 0 none;
  margin: 0;
  padding: 0;
  line-height: normal;
  vertical-align: baseline;
  outline: none;
  font-size: 100%;
  font-family: inherit;
  font-weight: normal;
  font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote:before,
q:before {
  content: '';
  content: none;
}

blockquote:after,
q:after {
  content: '';
  content: none;
}

ins {
  text-decoration: none;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
  padding: 0 0 0 20px;
  margin-bottom: 40px;
  border-left: 4px solid var(--secondarycolor);
  font-size: 24px;
  line-height: 30px;
  font-family: 'Roboto', sans-serif;
  color: var(--secondarycolor);
}

blockquote p,
q p {
  font-size: 24px;
  line-height: 30px;
  font-family: 'Roboto', sans-serif;
  color: var(--secondarycolor);
}

hr {
  display: block;
  height: 1px;
  max-width: 100%;
  border: 0;
  border-top: 1px solid var(--secondarycolor);
  margin: 30px 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  margin: 0;
}

ol,
ul,
li {
  list-style: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

sup {
  font-size: 80%;
}

/* ===== GLOBAL ================================================== */

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--primarycolor);
  background: var(--whitecolor);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  transition: all 0.4s ease;
}

:focus {
  text-decoration: none;
  outline: none;
}

a {
  text-decoration: none;
  color: var(--secondarycolor);
  outline: none;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

a:hover {
  text-decoration: none;
  color: var(--secondarycolor);
}

a:focus {
  outline: 0;
  outline: none;
}

::-webkit-input-placeholder {
  color: var(--primarycolor);
  opacity: 0.5;
}

:-moz-placeholder {
  color: var(--primarycolor);
  opacity: 0.5;
}

/* Firefox 18- */
::-moz-placeholder {
  color: var(--primarycolor);
  opacity: 0.5;
}

/* Firefox 19+ */
:-ms-input-placeholder {
  color: var(--primarycolor);
  opacity: 0.5;
}

img.alignleft {
  float: left;
  margin: 0 15px 15px 0;
  border-radius: 10px;
}

img.alignright {
  float: right;
  margin: 0 0 15px 15px;
  border-radius: 10px;
}

img.alignnone {
  margin: 0 0 15px;
  display: block;
  border-radius: 10px;
}

img.aligncenter {
  margin: 0 0 15px;
  display: block;
  border-radius: 10px;
}

iframe.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}

iframe.alignright {
  float: right;
  margin: 0 0 15px 15px;
}

iframe.iframe-embed.alignright {
  max-width: 500px;
  height: 315px !important;
}

/* Ul Li & Ol Li CSS */
ul,
ol {
  margin: 0;
  padding: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 15px;
}

ul li,
ol li {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--primarycolor);
  font-weight: 400;
}

li a {
  color: var(--secondarycolor);
}

.entry-content li a {
  text-decoration: underline;
}

.entry-content li a:hover {
  text-decoration: none;
  color: var(--secondarycolor);
}

.entry-content ul,
.entry-content ol {
  display: inline-block;
  padding: 0;
  margin: 0 0 20px 10px;
}

.entry-content ul ul,
.entry-content ol ol {
  display: block;
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 0;
}

.entry-content ul li {
  list-style: none;
  padding: 0 0 0 22px;
  margin: 0 0 8px;
  position: relative;
}

.entry-content ul li:last-child {
  margin-bottom: 0;
}

.entry-content ul li:before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primarycolor);
  position: absolute;
  left: 5px;
  top: 10px;
  border-radius: 50%;
}

.entry-content ol {
  margin-left: 26px;
  counter-reset: li-counter;
  list-style-type: none;
}

.entry-content ol li:before {
  content: counter(li-counter, decimal) ".";
  counter-increment: li-counter;
  position: absolute;
  left: -26px;
  top: 0;
}

.entry-content ul li li:before {
  border: 1px solid var(--primarycolor);
  background: var(--whitecolor);
}

.entry-content ol li {
  list-style-type: decimal;
  list-style-image: none;
  list-style-position: outside;
  margin: 0 0 8px 0;
}

.entry-content ol li {
  position: relative;
  list-style: none;
}

.entry-content p em {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: var(--primarycolor);
  font-family: 'Dosis', sans-serif;
  line-height: normal;
  letter-spacing: 0;
  margin: 0 0 20px;
}

h1 {
  font-size: 90px;
  line-height: 90px;
}

h2 {
  font-size: 50px;
  line-height: 50px;
}

h3 {
  font-size: 30px;
  line-height: 30px;
  color: var(--secondarycolor);
}

h4 {
  font-size: 24px;
  line-height: 24px;
  color: var(--secondarycolor);
}

h5 {
  font-size: 22px;
  line-height: 22px;
  color: var(--secondarycolor);
}

h6 {
  font-size: 18px;
  line-height: 18px;
  color: var(--secondarycolor);
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: var(--secondarycolor);
  font-weight: bold;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--primarycolor);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 28px;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  outline: none;
  display: block;
}

strong {
  font-weight: bold;
}

/*table structure*/
table {
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
  width: 100%;
}

table th,
table td {
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 15px;
  color: #2e3656;
  font-weight: 400;
  padding: 12px 20px;
  vertical-align: middle;
}

table th {
  color: #333;
  font-weight: 600;
  background: #f7f6f6;
}

table th a {
  color: #1F43D4;
}

table th a:hover {
  color: #1F43D4;
}

.table-striped th,
.table-striped td {
  position: relative;
}

.table-striped tbody tr:nth-of-type(even) td {
  background: #f7f6f6;
}

.middle-section {
  min-height: 50vh;
  padding: 100px 0;
}

section *:last-child {
  margin-bottom: 0;
}

.hide {
  display: none;
}

.relative {
  position: relative;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.v-align {
  align-items: center;
}

.max-container {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.container {
  max-width: 1280px;
  padding: 0 15px;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.plr-75 {
  padding-left: 75px;
  padding-right: 75px;
}

/*Form Input Field*/
input,
textarea,
select {
  background: var(--whitecolor);
  border: 1px solid #A6A7AB;
  width: 100%;
  text-align: left;
  padding: 5px 10px;
  margin: 0;
  font-size: 16px;
  color: var(--primarycolor);
  font-weight: 400;
  line-height: normal;
  font-family: 'Roboto', sans-serif;
  height: 40px;
  outline: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  letter-spacing: 0;
}

input[type="button"],
input[type="submit"] {
  cursor: pointer;
  width: auto;
  height: auto;
}

input[type="checkbox"],
input[type="radio"] {
  border: none;
  width: auto;
  height: auto;
}

textarea {
  height: 110px;
  padding: 10px;
  vertical-align: top;
  resize: none;
}

select {
  display: block;
  width: 100%;
  padding: 5px 40px 5px 10px;
  background: #fff url(../img/dropdwon-icon.png) no-repeat 95% center;
  background-size: 10px auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #919396;
}

select option {
  background: #ccc;
  color: #000;
  padding: 4px 10px;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
.selectbox:hover {
  background: var(--whitecolor);
  box-shadow: none;
}

.field-icon {
  position: relative;
  display: block;
}

.field-icon input {
  padding-right: 40px;
}

.field-icon i {
  position: absolute;
  right: 20px;
}

.email-icon {
  background: url(../img/email-icon.svg) no-repeat center;
  background-size: 100% auto;
  width: 16px;
  height: 12px;
  display: block;
}

.phone-icon {
  background: url(../img/phone-icon.svg) no-repeat center;
  background-size: 100% auto;
  width: 16px;
  height: 16px;
  display: block;
}

.field-icon .email-icon {
  top: 11px;
}

.field-icon .phone-icon {
  top: 12px;
}

.field .label {
  display: block;
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  color: var(--primarycolor);
  margin-bottom: 4px;
}

.field {
  margin-bottom: 13px;
}

/** Radio & Checkbox Button Start **/
.radio-box .wpcf7-list-item,
.check-box .wpcf7-list-item {
  margin: 0;
}

.radio-box .wpcf7-list-item+.wpcf7-list-item,
.check-box .wpcf7-list-item+.wpcf7-list-item {
  margin: 0 0 0 30px;
}

.radio-box .wpcf7-list-item>label,
.check-box .wpcf7-list-item>label {
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

.radio-box .wpcf7-list-item>label input,
.check-box .wpcf7-list-item>label input {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}

.check-box .wpcf7-list-item-label,
.radio-box .wpcf7-list-item-label {
  padding-left: 30px;
  position: relative;
}

.check-box .wpcf7-list-item-label:before,
.radio-box .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 1px solid #A6A7AB;
  border-radius: 50%;
}

.check-box .wpcf7-list-item-label:before {
  border-radius: 0;
}

.radio-box .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #2B2D38;
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 0;
}

.check-box .wpcf7-list-item-label:after {
  content: "";
  background: url(../img/check-icon.png) no-repeat center;
  background-size: 15px auto;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 22px;
  transition: all 0.4s ease;
  opacity: 0;
}

.check-box .wpcf7-list-item>label input:checked+.wpcf7-list-item-label:after,
.radio-box .wpcf7-list-item>label input:checked+.wpcf7-list-item-label:after {
  opacity: 1;
}

.button,
.btn {
  display: inline-block;
  padding: 0 20px;
  background: linear-gradient(135deg, #474961 0%, #2B2C38 100%);
  border: 0;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  min-width: 200px;
  height: 50px;
  line-height: 50px;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  z-index: 1;
  text-decoration: none !important;
}

.button:hover,
.button.alt:hover,
.btn:hover,
.button:focus,
.button.alt:focus,
.btn:focus,
.button:active,
.button.alt:active,
.btn:active {
  text-decoration: none;
  box-shadow: none !important;
  background: linear-gradient(135deg, #2B2C38 0%, #474961 100%);
}

.secondary {
  background: linear-gradient(135deg, #7FC241 0%, #3A9217 100%);
}

.secondary:hover,
.secondary:focus,
.secondary:active {
  background: linear-gradient(135deg, #3A9217 0%, #7FC241 100%);
}

.danger {
  background: linear-gradient(135deg, #FC6B56 0%, #CD1A53 100%);
}

.danger:hover,
.danger:focus,
.danger:active {
  background: linear-gradient(135deg, #CD1A53 0%, #FC6B56 100%);
}

.bdr-btn {
  background: none;
  border: 1px solid rgb(216 216 216 / 30%);
  color: #D8D8D8 !important;
  line-height: 48px;
}

.bdr-btn:hover,
.bdr-btn:focus,
.bdr-btn:active {
  background: rgb(216 216 216 / 30%);
  color: #fff !important;
}

.compare-btn {
  border: 1px solid var(--secondarycolor);
  height: 40px;
  line-height: 38px;
  min-width: 190px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: var(--secondarycolor);
  transition: all 0.4s ease;
  display: inline-block;
  border-radius: 3px;
}

.compare-btn .compare-icon {
  background: url(../img/compare-icon.svg) no-repeat center;
  background-size: 100% auto;
  width: 11px;
  height: 14px;
  display: inline-block;
  margin-right: 10px;
  transition: all 0.4s ease;
}

.compare-btn:hover {
  background: var(--secondarycolor);
  color: var(--whitecolor);
}

.compare-btn:hover .compare-icon {
  background: url(../img/compare-white-icon.svg) no-repeat center;
  background-size: 100% auto;
}

/* ===== Header ================================================== */
/*Header & Banner Section*/
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 0;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header-inner {
  background: var(--whitecolor);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  align-items: center;
  flex-wrap: wrap;
  padding: 0 55px;
  height: 80px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.logo {
  flex-basis: 194px;
  min-width: 194px;
  max-width: 194px;
  position: relative;
  z-index: 2;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.logo a {
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.logo span {
  display: block;
}

.logo a img {
  display: block;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header-right {
  position: relative;
  z-index: 2;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  flex-basis: calc(100% - 194px);
  min-width: calc(100% - 194px);
  max-width: calc(100% - 194px);
}

/*Nav Css*/
.nav-main {
  position: relative;
  z-index: 1;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.nav-main ul {
  margin: 0;
  padding: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.nav-main ul>li {
  margin: 0;
  padding: 0px;
  list-style: none;
  position: relative;
  -moz-transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.nav-main ul>li+li {
  margin-left: 42px;
}

.nav-main ul>li>a {
  display: block;
  color: #2B2D38;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  padding: 10px 0;
  text-align: center;
  display: inline-block;
}

.nav-main ul>li:hover>a,
.nav-main ul>li>a:hover,
.single-tooted .nav-main ul>li.tooted-menu>a,
.tax-kategooria .nav-main ul>li.tooted-menu>a,
.nav-main ul>li.current-menu-item>a,
.nav-main ul>li.current-menu-parent>a,
.nav-main ul>li.current-page-ancestor>a,
.nav-main ul>li>a:focus {
  color: var(--secondarycolor);
}

.nav-main ul>li.menu-item-has-children>a {
  padding-right: 15px;
}

.nav-main ul.sub-menu>li+li {
  margin-left: 0;
}

.nav-main .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  border-top: 0;
  background: #f1f3f5;
  min-width: 225px;
  letter-spacing: 0;
  padding: 15px 0;
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.nav-main ul>li:hover>.sub-menu {
  display: block;
}

.nav-main .sub-menu li {
  display: block;
  text-align: left;
  position: relative;
}

.nav-main .sub-menu li a {
  display: block;
  color: #324c7c;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  font-weight: bold;
  padding: 11px 25px;
  text-align: left;
}

.nav-main .sub-menu li a:hover,
.nav-main .sub-menu li.current-menu-item a {
  color: var(--secondarycolor);
}

.nav-main .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.nav-main .sub-menu li:hover .sub-menu {
  display: block;
}

.language-menu {
  margin-left: 40px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.single-ld_apartment .language-menu {
  display: none !important;
}

.language-menu>ul>li>a {
  border: 0;
  height: 12px;
  padding: 0 !important;
  position: relative;
  width: 20px;
}

.language-menu>ul>li>a img {
  width: 20px;
  height: 12px;
  object-position: center;
  object-fit: cover;
}

.language-menu>ul>li:after {
  display: none;
}

.header-btn {
  margin-left: 40px;
}

.header-btn .btn {
  height: 36px;
  line-height: 36px;
  min-width: 142px;
}

/*Header Fixed*/
.header-fixed .header-inner {
  height: 60px;
}

.header-fixed .logo a {
  max-width: 160px;
}





/** Page Banner Css **/
.home-banner-section *:last-child {
  margin-bottom: 0;
}

.home-banner-section {
  position: relative;
  padding-top: 60px;
  background: radial-gradient(50% 100%, #D0EFFF 0%, #FFFFFF 100%);
}

.home-banner-section:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

.home-banner-section .container {
  position: relative;
}

.home-banner-section .caption {
  height: 654px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-banner-section .van-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 668px;
  z-index: 2;
}

.home-banner-section .van-image img {
  width: 100%;
  display: block;
}

.banner-map {
  max-width: 756px;
  width: 100%;
  position: absolute;
  right: -60px;
  bottom: 80px;
  z-index: 1;
}

.caption-inner {
  max-width: 634px;
  width: 100%;
}

.home-banner-section .caption h1 {
  /*margin-bottom: 40px;*/
  background: linear-gradient(to right, #474960 0%, #2c2d39 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.home-banner-section .caption p {
  max-width: 510px;
  width: 100%;
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  color: var(--primarycolor);
  background: linear-gradient(to right, #474960 0%, #2c2d39 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/*.home-banner-section .btns-box {margin-top: 55px; display:-webkit-flex; display:flex;flex-wrap: wrap;}*/
.home-banner-section .btns-box .btn+.btn {
  margin-left: 20px;
}

.squares-container .squares-element {
  padding: 0 !important;
}

.squares-container .squares-element h3 {
  margin-bottom: 30px !important;
  font-size: 26px !important;
  line-height: 31px !important;
}

.squares-container .squares-element .p-email,
.squares-container .squares-element .p-phone {
  padding-left: 35px;
  position: relative;
  display: inline-block;
  color: var(--primarycolor);
}

.squares-container .squares-element .p-email:before {
  width: 16px;
  height: 13px;
  content: "";
  background: url(../img/email-icon.png) no-repeat center;
  background-size: 100% auto;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}

.squares-container .squares-element .p-phone:before {
  width: 16px;
  height: 17px;
  content: "";
  background: url(../img/phone-icon.png) no-repeat center;
  background-size: 100% auto;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}

.squares-container .squares-element .p-phone {
  margin-top: 20px;
}

.squares-container .squares-element .btn {
  width: 100%;
  height: 36px;
  line-height: 36px;
  margin-top: 28px;
}

/** Section 1 Start **/
/*.section2{padding:75px 0;}*/
.section2 .row {
  margin: 0;
}

.section2 .row>div {
  padding: 0;
}

.fifty-fifty-block-bg1 {
  height: 100%;
  background: linear-gradient(135deg, #FC6B56 0%, #CD1A53 100%);
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.section2 .image-box {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}

.section2 .image-box img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  display: block;
}

/*.section2 .content-box{padding:80px 85px;}*/
.section2 .content-box p,
.section2 .content-box h2 {
  color: var(--whitecolor);
}

/*.section2 .content-box h2 {margin-bottom: 40px;}*/
/*.section2 .btn-box {margin-top: 45px; display:-webkit-flex; display: flex; flex-wrap: wrap;}*/
.section2 .btn-box .btn {
  min-width: 174px;
}

.section2 .btn-box .btn+.btn {
  margin-left: 30px;
}

.section2 .btn-box .bdr-btn {
  color: var(--secondarycolor);
  border-color: rgb(127 194 65 / 30%);
}

.section2 .btn-box .bdr-btn:hover,
.section2 .btn-box .bdr-btn:focus,
.section2 .btn-box .bdr-btn:active {
  color: var(--whitecolor);
  border-color: var(--secondarycolor);
  background: var(--secondarycolor);
}

.section4 .fifty-fifty-block-bg1 {
  background: linear-gradient(135deg, #474961 0%, #2B2C38 100%);
}

/** Search Filter Section Start **/
.home .search-filter-section .dark-bg {
  margin: 0 auto;
  border-radius: 3px !important;
}

.search-filter-section .dark-bg {
  background: linear-gradient(135deg, #474961 0%, #2B2C38 100%);
  border-radius: 3px;
  padding: 20px;
  color: var(--whitecolor);
}

.search-section {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.search-section h4 {
  margin: 0 10px 0 15px;
}

.search-filter {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.search-filter .field-col {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding-left: 52px;
}

.search-filter .label {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: var(--whitecolor);
  text-align: right;
  padding-right: 15px;
}

.search-filter select {
  height: 40px;
  min-width: 200px;
  max-width: 200px;
  flex-basis: 200px;
  padding-left: 17px;
  color: var(--primarycolor);
}

.search-filter .btn-box {
  padding-left: 35px;
}

.search-filter .btn {
  min-width: 200px;
  height: 40px;
  line-height: 40px;
}


/** Popular Product Section **/
/*.popular-product-section{padding:70px 0 100px 0;}*/
/*.popular-product-section .conetnt-block{text-align:center;margin-bottom:60px;}*/
/*.popular-product-section .conetnt-block h2 {margin-bottom: 30px;}*/
.description-main {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  position: relative;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tooltip-main {
  width: 16px;
  height: 16px;
  position: relative;
}

.question-icon {
  background: url(../img/question-icon.svg) no-repeat center;
  background-size: 100%;
  width: 16px;
  height: 16px;
  display: block;
  margin-left: 10px;
  cursor: pointer;
}

.tooltip-popup {
  position: absolute;
  background: var(--whitecolor);
  bottom: 100%;
  left: 50%;
  text-align: left;
  padding: 30px;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 11px 16px 0 rgb(0 0 0 / 15%), 0 1px 2px 0 rgb(0 0 0 / 20%);
  transform: translate(-50%, 0);
  margin: 0 0 20px 10px !important;
  display: none;
  z-index: 9;
}

.tooltip-popup:after {
  content: "";
  border-width: 10px 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.tooltip-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #797A80;
  font-size: 16px;
  border: 0;
  outline: none !important;
  cursor: pointer;
}

.tooltip-popup h4 {
  color: var(--secondarycolor);
  font-size: 26px;
  display: block;
  margin-bottom: 15px;
}

.tooltip-popup p {
  color: var(--primarycolor);
}

.tooltip-popup .btn {
  min-width: 135px;
  height: 36px;
  line-height: 36px;
}

.tooltip-open .menu-open-overlay {
  display: block;
  z-index: 999;
}

.tooltip-open .tooltip-popup {
  display: block;
  z-index: 9999;
}

.tooltip-opened .tooltip-popup {
  display: block !important;
  z-index: 9999;
}

.tooltip-open .title-block .tooltip-popup {
  display: none;
}

.tax-kategooria .product-list-section {
  z-index: inherit;
}

.product-list.row {
  margin: -20px;
}

.product-list.row>div {
  padding: 20px;
}

.product-box {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 23px 32px 0 rgb(0 0 0 / 15%);
  border-radius: 5px;
  background: var(--whitecolor);
  padding: 15px;
  position: relative;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.product-box .image-box {
  min-width: 100%;
  width: 100%;
  height: 250px;
  display: block;
  overflow: hidden;
  position: relative;
}

.product-box .image-box img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: scale-down;
}

.product-content {
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 0 5px;
  min-width: 100%;
}

.product-content h6 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--primarycolor);
  margin-bottom: 10px;
  min-height: 40px;
}

.lngcls-ru_RU .product-content h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.product-content h6 a {
  color: var(--primarycolor);
}

.product-content p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  color: #A6A7AB;
  min-height: 34px;
}

.product-box .price-box {
  margin-top: auto;
  padding: 15px 0 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.product-box .price-box:after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: -1px;
  height: 1px;
  background: #EDEFF2;
}

.product-box .price-box strong {
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  color: var(--primarycolor);
}

.product-box .price-box .right-icons {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.product-box .a-plus-text {
  font-size: 14px;
  line-height: 17px;
  font-weight: bold;
  color: var(--primarycolor);
}

.wifi-icons {
  background: url(../img/icon-wifi.svg) no-repeat center;
  background-size: 100% auto;
  width: 14px;
  height: 10px;
  display: block;
  margin-right: 20px;
}

.discount-price {
  position: absolute;
  left: 0;
  top: 20px;
  background: #F13F3F;
  color: var(--whitecolor);
  padding: 4px 15px;
  border-radius: 0 30px 30px 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  z-index: 1;
}

.discount-price.cottage {
  background: var(--secondarycolor);
}

.product-box.discount-product .price-box strong {
  color: #F13F3F;
}

/** Section 5 Start **/
/*.section5{padding:100px 0;}*/
.section5 .row {
  margin: -20px;
}

.section5 .row>div {
  padding: 20px;
}

.image-content-box {
  position: relative;
}

.empty-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  opacity: 1;
}

.image-content-box .image-box {
  background: #f0f0f0;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
}

.image-content-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.4s ease;
}

/*.image-content-box .content {margin-top: 26px;}*/
.image-content-box h3 {
  margin: 0;
  background: linear-gradient(to right, #7ec141 0%, #40971a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: normal;
}

.image-content-box a:hover+.image-box img {
  transform: scale(1.1);
}

/** Footer Start **/
.footer {
  position: relative;
  z-index: 9;
}

.footer .footer-inner {
  /*padding:50px 55px;*/
  background: linear-gradient(135deg, #474961 0%, #2B2C38 100%);
  border-radius: 10px 10px 0 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.f-logo {
  max-width: 190px;
}

.f-logo a {
  display: block;
}

.f-logo img {
  width: 100%;
  display: block;
}

.f-right {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-menu {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.footer-menu ul {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-menu ul li+li {
  margin-left: 40px;
}

.footer-menu ul a {
  font-size: 16px;
  font-weight: 500;
  color: var(--whitecolor);
  line-height: normal;
}

.footer-menu ul>li:hover>a,
.footer-menu ul>li>a:hover,
.footer-menu ul>li.current-menu-item>a,
.footer-menu ul>li>a:focus {
  color: var(--secondarycolor);
}

.footer .social-links,
.f-btn {
  margin-left: 40px;
}

.f-btn .btn {
  height: 40px;
  line-height: 38px;
  min-width: 156px;
}

.social-links {
  display: -webkit-flex;
  display: flex;
}

.social-links a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  border: 1px solid rgb(216 216 216 / 30%);
  color: #D8D8D8;
  font-size: 14px;
}

.social-links a:hover {
  background: rgb(216 216 216 / 30%);
  color: var(--whitecolor);
}

/** Contact Popup Start **/
.modal-backdrop {
  background: #474961;
}

.modal-backdrop.show {
  opacity: 0.8 !important;
}

.contact-popup .modal-dialog {
  max-width: 760px;
  width: 96%;
}

.modal-content {
  border-radius: 10px;
  border: 0;
  position: relative;
}

.modal-content button.close {
  position: absolute;
  background: var(--whitecolor);
  top: 20px;
  right: 20px;
  color: var(--primarycolor);
  font-size: 16px;
  z-index: 1;
  cursor: pointer;
  z-index: 9;
  opacity: 1;
  outline: none;
}

.contact-popup .modal-body {
  padding: 40px 50px 50px 50px;
}

.contact-popup h3 {
  font-size: 40px;
  line-height: 40px;
  background: linear-gradient(to right, #7ec141 0%, #40971a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 45px;
}

.contact-popup .image-box {
  max-width: 180px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin: 32px 0;
}

.contact-popup .image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-email a {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: var(--primarycolor);
  display: inline-block;
}

.phone-email .email {
  margin-top: 10px;
}

.phone-email .email,
.phone-email a:hover {
  color: var(--secondarycolor);
}

.phone-email .email:hover {
  color: var(--primarycolor);
}

.popup-left-content {
  position: relative;
  height: 100%;
  padding-bottom: 40px;
}

.popup-left-content .text-link {
  position: absolute;
  left: 0;
  bottom: 0;
}

.popup-left-content .text-link a {
  font-size: 16px;
  line-height: 18px;
  color: var(--primarycolor);
  position: relative;
  padding-left: 20px;
}

.popup-left-content .text-link a:before {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--secondarycolor);
  position: absolute;
  left: 0;
}

.field.btn-box {
  margin: 16px 0 0;
  position: relative;
}

.field.btn-box .btn {
  width: 100%;
}

.field .label+.check-box,
.field .label+.radio-box {
  margin-top: 10px;
}

.field.btn-box .ajax-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 9;
}

.contact-popup textarea {
  height: 100px;
}

.form-group {
  margin: 0;
}

.form-group .field .wpcf7-not-valid-tip {
  font-size: 12px;
  color: red;
}

.contact-popup .wpcf7-response-output {
  margin: 15px 0 0 !important;
  font-size: 12px;
  text-align: center;
}


/** Services Page Start **/
.internal-banner {
  background: linear-gradient(135deg, #7FC241 0%, #3A9217 100%);
  position: relative;
  min-height: 464px;
  position: relative;
  padding: 120px 0 80px 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.internal-banner .van-image-box {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 737px;
  width: 100%;
  z-index: 1;
  padding-top: 100px;
}

.internal-banner .van-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.internal-banner .wave-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
}

.internal-banner .wave-shape img {
  width: 100%;
  display: block;
}

.internal-banner h2 {
  margin-bottom: 35px;
}

.internal-banner h2,
.internal-banner p {
  color: var(--whitecolor);
}

.left-sidebar {
  max-width: 340px;
  width: 100%;
  position: sticky;
  top: 80px;
  background: var(--whitecolor);
}

.sidebar-left-menu li {
  display: block;
}

.sidebar-left-menu a {
  font-size: 16px;
  line-height: 18px;
  color: #2B2D38;
  letter-spacing: 0;
  font-weight: 500;
  position: relative;
  padding-left: 25px;
  display: inline-block;
}

.sidebar-left-menu a:before {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f105";
  color: var(--secondarycolor);
  position: absolute;
  left: 5px;
  top: 0;
  font-size: 14px;
}

.sidebar-left-menu li+li {
  margin-top: 24px;
}

.sidebar-left-menu li.current-menu-item a,
.sidebar-left-menu li a:hover {
  color: var(--secondarycolor);
}

.left-sidebar .btn-btn .btn {
  width: 100%;
}

.left-sidebar .btn-btn {
  margin-top: 42px;
}

.default-right-content,
.service-right-content {
  padding-left: 15px;
}

.service-right-content h2+p {
  font-size: 24px;
  line-height: 30px;
}

.entry-content h2 {
  margin-bottom: 38px;
}

.entry-content h3 {
  margin-bottom: 36px;
}

.entry-content p+h3 {
  padding-top: 10px;
}

.entry-content iframe {
  width: 100%;
  height: 437px;
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
}

.entry-content p a {
  text-decoration: underline;
}

.entry-content p a:hover {
  text-decoration: none;
}

/** About Us Page Start **/
.internal-banner .image-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.internal-banner .image-box img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  display: block;
}

.middle-section .inner-container {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}

.two-images {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 30px 0 25px 0;
  flex-wrap: wrap;
}

.two-images img {
  margin: 0;
}

.image-overlay:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  ;
}

/** Contact Page STart **/
.internal-banner .max-container {
  min-width: 100%;
}

.internal-banner.contact-banner p {
  line-height: 30px;
}

.internal-banner p a {
  color: var(--whitecolor);
}

.internal-banner p a:hover {
  opacity: 0.7;
}

.contact-section1 {
  margin: -15px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.contact-section1>div {
  padding: 15px;
}

.c-left-col {
  min-width: 25%;
  max-width: 25%;
  flex-basis: 25%;
}

.middle-left-col {
  min-width: 39%;
  max-width: 39%;
  flex-basis: 39%;
}

.c-right-col {
  min-width: 36%;
  max-width: 36%;
  flex-basis: 36%;
  margin-top: -404px;
  position: relative;
}

.form-bg {
  background: #EDEFF2;
  border-radius: 10px;
  padding: 50px 38px;
}

.form-bg h3 {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 38px;
}

.form-bg .field.btn-box .btn {
  background: linear-gradient(135deg, #FC6B56 0%, #CD1A53 100%);
}

.form-bg .field.btn-box .btn:hover,
.form-bg .field.btn-box .btn:focus,
.form-bg .field.btn-box .btn:active {
  background: linear-gradient(135deg, #7FC241 0%, #3A9217 100%);
}

.middle-left-col-inner {
  max-width: 400px;
  width: 100%;
}

.middle-left-col-inner .image-box {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  border-radius: 10px;
  margin-bottom: 40px;
}

.middle-left-col-inner .image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.middle-left-col.entry-content h3 {
  margin-bottom: 22px;
}

.middle-left-col p {
  line-height: 34px;
}

.middle-left-col p a {
  color: var(--primarycolor);
  text-decoration: none;
}

.middle-left-col p a:hover {
  color: var(--secondarycolor);
  text-decoration: underline;
}

/** Default Page Start **/
.default-banner {
  z-index: 1;
}

.default-banner .van-image-box {
  height: 100%;
  z-index: -1;
}

.default-banner .van-image-box img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center bottom;
}

.default-right-content *:last-child {
  margin-bottom: 0;
}

.default-right-content h1 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 46px;
}

.default-right-content h1+p {
  font-size: 24px;
  line-height: 30px;
}

.default-right-content h2 {
  font-size: 30px;
  line-height: 30px;
  color: var(--secondarycolor);
}

.default-right-content h3 {
  font-size: 24px;
  line-height: 26px;
}

.default-right-content h4 {
  font-size: 20px;
  line-height: 22px;
}

.default-right-content p+h3 {
  padding-top: 0;
}

.default-right-content p {
  margin-bottom: 40px;
}

.default-right-content p a,
.default-right-content a {
  color: #f13f3f;
  text-decoration: none;
}

.default-right-content p a:hover,
.default-right-content a:hover {
  text-decoration: underline;
}

/** Portfolio Page Start **/
.middle-section.portfolio-page {
  padding: 80px 0;
}

.portfolio-list.row {
  margin: -25px -20px;
}

.portfolio-list.row>div {
  padding: 25px 20px;
}

.portfolio-box .image-box {
  width: 100%;
  height: 250px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-box .image-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.4s ease;
}

.portfolio-content {
  margin-top: 16px;
}

.portfolio-content h4 {
  margin: 0 0 12px 0;
}

.portfolio-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--primarycolor);
}

.portfolio-box:hover .image-box img {
  transform: scale(1.1);
}

.popup-content-main {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 30px 0 20px 0;
}

.mfp-content {
  width: 100%;
}

.mfp-content img.mfp-img {
  margin: 0 auto;
  border-radius: 10px;
}

.mfp-container {
  padding: 40px 120px 0 120px;
}

.popup-content-main {
  margin: 0 -100px;
}

.popup-content *:last-child {
  margin-bottom: 0;
}

.popup-content h4 {
  margin-bottom: 10px;
}

.popup-content p {
  color: var(--primarycolor);
}

.popup-logo {
  margin-left: auto;
  max-width: 194px;
}

.popup-logo img {
  display: block;
  width: 100%;
}

.internal-banner.campaign-banner {
  background: linear-gradient(135deg, #FC6B56 0%, #CD1A53 100%);
  min-height: 514px;
  padding-top: 80px;
  padding-bottom: 0;
}

.internal-banner.default-banner {
  min-height: 514px;
  padding-top: 80px;
  padding-bottom: 0;
}

.internal-banner.default-banner .image-box,
.internal-banner.campaign-banner .image-box {
  position: static;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.default-banner .caption,
.campaign-banner .caption {
  padding: 85px 0;
}

/** Product Comparison Page Start **/
.product-comparison-inner {
  overflow: auto;
}

.internal-banner.product-comparison-banner {
  min-height: 1px;
  padding: 120px 0 29px 0;
}

.product-comparison-section {
  padding: 35px 0 100px 0;
}

.product-comparison-inner .item {
  width: 100%;
}

.product-comparison-inner .item ul li:first-child {
  min-height: 368px;
}

.product-comparison-inner .item ul li {
  font-size: 14px;
  line-height: 18px;
  color: #2B2D38;
  padding: 11px 30px 11px 0;
  border-bottom: 1px solid #D2D3D5;
  white-space: nowrap;
  height: 41px;
}

.product-comparison-inner .item.font-weight-medium ul li {
  font-weight: 500;
}

.cp-btn {
  outline: none !important;
  font-size: 14px;
  line-height: 24px;
  color: #F13F3F;
  display: inline-block;
  padding: 0;
}

.cp-btn i {
  margin-right: 10px;
}

.comparison-product-box {
  max-width: 250px;
  width: 100%;
  margin-bottom: 30px !important;
}

.comparison-product-box .image-box {
  display: block;
  width: 100%;
  height: 212px;
  overflow: hidden;
  border: 1px solid #D2D3D5;
  padding: 5px;
  margin-top: 16px;
}

.comparison-product-box .image-box img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: scale-down;
  display: block;
}

.comparison-product-box h5 {
  font-size: 20px;
  line-height: 22px;
  margin: 16px 0 0;
  white-space: normal;
}

.comparison-product-box h5 a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  height: 47px;
}

/** Product Details Page Start **/
.single-tooted {
  padding-top: 140px;
}

.body-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 740px;
  background: radial-gradient(50% 100%, #D0EFFF 0%, #FFFFFF 100%);
  z-index: -1;
}

.body-bg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}


.tax-kategooria .header-inner,
.page-template-tpl_product-details .header-inner {
  border-radius: 0;
}

.page-menu {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.page-menu ul {
  background: linear-gradient(135deg, #474961 0%, #2B2C38 100%);
  border-radius: 0 0 10px 10px;
  padding: 0 55px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.lngcls-ru_RU .page-menu ul {
  padding: 0 25px;
}

.page-menu ul li a {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: var(--whitecolor);
  display: block;
  padding: 23px 24px;
  transition: all 0.4s ease;
}

.lngcls-ru_RU .page-menu ul li a {
  padding: 23px 12px;
}

.page-menu ul li.active a,
.page-menu ul li:hover a {
  background: linear-gradient(135deg, #7FC241 0%, #3A9217 100%);
}

.toggle-btn {
  display: none;
}

.breadcrumbs-main {
  padding: 45px 0;
}

.breadcrumbs {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: #2B2D38;
  position: relative;
}

.breadcrumbs li a {
  color: #7FC241
}

.breadcrumbs li+li {
  margin-left: 10px;
  padding-left: 14px;
}

.breadcrumbs li+li:before {
  content: "\f105";
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  left: 0;
  color: #A6A7AB;
}

.product-details {
  padding: 0 0 100px 0;
}

.product-details-inner {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.white-bg {
  background: var(--whitecolor);
}

.large-image-list .image-box {
  width: 100%;
  height: 500px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid #D2D3D5;
}

.large-image-list .slick-arrow {
  background: rgba(0, 0, 0, 0.3);
}

.large-image-list .slick-arrow:hover,
.large-image-list .slick-arrow:focus {
  background: rgba(0, 0, 0, 1);
}

.large-image-list .slick-arrow.slick-next {
  right: 10px;
}

.large-image-list .slick-arrow.slick-prev {
  left: 10px;
}

.large-image-list .image-box {
  display: none;
}

.large-image-list .image-box.slick-slide,
.large-image-list .image-box:nth-child(1) {
  display: block;
}

.small-image-list .image-box img,
.large-image-list .image-box img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
  display: block;
}

.small-image-list {
  margin: 10px -5px -5px -5px;
}

.small-image-list .slick-track {
  width: 100% !important;
  transform: none !important;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.small-image-list {
  display: -webkit-flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.small-image-list .image-item {
  padding: 5px;
  width: 20% !important;
}

.small-image-list .image-box {
  width: 100%;
  height: 114px;
  overflow: hidden;
  background: var(--whitecolor);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid #D2D3D5;
  padding: 5px;
}

.small-image-list .slick-current .image-box {
  border: 2px solid var(--secondarycolor);
  padding: 5px;
}

.product-content1 {
  padding-left: 10px;
}

.product-content1 p*:last-child {
  margin-bottom: 0;
}

.product-content1 h3 {
  margin-bottom: 30px;
}

.product-content1 p {
  margin-bottom: 35px;
  min-height: 30px;
}

.product-content1 .btn {
  min-width: 234px;
}

.product-details-inner .map-box {
  height: 400px;
}

.product-content-box {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: #EDEFF2;
  border-radius: 10px;
  position: relative;
  padding: 30px 40px 40px 40px;
}

.product-content-box .left-block {
  margin-top: 50px;
}

.product-content-box .price-box {
  margin-bottom: 14px;
}

.product-content-box .price-box label {
  display: block;
  font-size: 14px;
  line-height: normal;
  color: #2B2D38;
  margin-bottom: 6px;
}

.product-content-box .price-box strong {
  display: block;
  font-size: 34px;
  line-height: 41px;
  font-weight: bold;
  color: var(--secondarycolor);
}

.product-content-box .price-box.discount-rate strong {
  color: #F13F3F;
}

.product-content-box p {
  font-size: 14px;
  line-height: 17px;
  margin: 0 !important;
}

.product-content-box .right-block {
  width: 234px;
  margin-left: auto;
}

.product-content-box .right-block .btn+p {
  margin-top: 12px !important;
}

.product-content-box .right-block .compare-btn {
  background: #f6f7f9;
  margin-top: 30px;
  width: 100%;
  color: #2B2D38;
}

.product-content-box .right-block .compare-btn:hover {
  background: var(--secondarycolor);
  color: var(--whitecolor);
}

.product-info {
  margin-top: 45px;
  padding-left: 10px;
}

.product-info h3 {
  margin-bottom: 45px;
}

.specification-list li {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 19px;
  border-top: 1px solid #D2D3D5;
  color: #2B2D38;
  padding: 15px 0;
}

.specification-list li:last-child {
  border-bottom: 1px solid #D2D3D5;
}

.specification-title {
  min-width: 60%;
  max-width: 60%;
  flex-basis: 60%;
  padding-right: 20px;
}

.specification-values {
  min-width: 40%;
  max-width: 40%;
  flex-basis: 40%;
  font-weight: 500;
}

.specification-info-list li {
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  color: #2B2D38;
  position: relative;
  padding-left: 25px;
}

.specification-info-list li+li {
  margin-top: 32px;
}

.specification-info-list li:before {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f105";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondarycolor);
  font-size: 14px;
}

.specification-info-list li a {
  color: #2B2D38;
}

/** Product Page Start **/
.page-menu.product-cate {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: all 0.4s ease;
  z-index: 9;
}

.header-fixed .page-menu {
  padding-top: 60px;
}

.product-cate-banner {
  padding-top: 184px;
  align-items: flex-start;
}

.category-info {
  background: #EDEFF2;
  border-radius: 5px;
  padding: 35px 70px;
  position: relative;
}

.info-icon {
  width: 32px;
  height: 32px;
  background: url(../img/info-icon.svg) no-repeat center;
  background-size: 100% auto;
  display: block;
  position: absolute;
  left: 25px;
  top: 30px;
}

.category-info li {
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  color: #2B2D38;
  position: relative;
  padding-left: 23px;
}

.category-info li+li {
  margin-top: 20px;
}

.category-info li a {
  color: #2B2D38;
}

.category-info li:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  font-family: 'Line Awesome Free';
  font-size: 14px;
  color: var(--secondarycolor);
}

.product-list-section {
  padding: 60px 0 100px 0;
  position: relative;
  z-index: 1;
}

.product-filter .search-filter .field-col {
  padding: 0;
}

.product-filter .search-filter .label {
  color: var(--primarycolor);
}

.product-filter .search-filter select {
  min-width: 220px;
}

.product-filter.filter-section {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D2D3D5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.product-filter.filter-section .filter-right {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.search-form {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.search-form ::-webkit-input-placeholder {
  color: var(--primarycolor);
  opacity: 1;
}

.search-form :-moz-placeholder {
  color: var(--primarycolor);
  opacity: 1;
}

/* Firefox 18- */
.search-form ::-moz-placeholder {
  color: var(--primarycolor);
  opacity: 1;
}

/* Firefox 19+ */
.search-form :-ms-input-placeholder {
  color: var(--primarycolor);
  opacity: 1;
}

.search-field {
  position: relative;
}

.search-field input {
  padding: 0 45px 0 17px;
}

.search-field .search-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  background: url(../img/search-icon.svg) no-repeat center;
  background-size: 100% auto;
  width: 14px;
  height: 100%;
  display: block;
}

.search-form .btn {
  height: 40px;
  line-height: 40px;
  min-width: 170px;
  margin-left: 30px;
}

.installation-text {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
  color: var(--primarycolor);
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.installation-text .tooltip-popup {
  right: -15px;
  left: auto;
  transform: none;
}

.installation-text .tooltip-popup:after {
  left: auto;
  right: 0;
}

/** Search Page Start **/
.error404,
.page-template-tpl_search {
  padding-top: 160px;
}

.error404 .header-inner,
.page-template-tpl_search .header-inner {
  border-radius: 0;
}

.search-filter-section.page-menu.product-cate .container {
  padding: 0;
}

.search-filter-section .dark-bg {
  margin: 0 -15px;
  border-radius: 0 0 10px 10px;
}

.search-section1 {
  padding: 80px 0 100px 0;
}

.search-section1 .row {
  margin: -20px;
}

.search-section1 .row>div {
  padding: 20px;
}

.title-block {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D2D3D5;
  padding-bottom: 20px;
  margin-bottom: 10px !important;
}

.title-block h2 {
  font-size: 40px;
  color: var(--secondarycolor);
  margin: 0 32px 0 0;
}

.title-block .product-text {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: var(--primarycolor);
  margin-right: 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.title-block .product-text>p {
  margin: 0;
}

.title-block .product-text .question-icon {
  display: inline-block;
  position: relative;
}

.search-section1 .col-lg-12 {
  padding-bottom: 0 !important;
}

.search-section1 .col-lg-3+.col-lg-12 {
  margin-top: 35px;
  padding-top: 0;
}

.imp-tooltip {
  box-shadow: 0 11px 16px 0 rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  ;
}

.markers {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.btn-marker {
  width: 20px;
  height: 20px;
  font-size: 0;
  border: 0;
  padding: 0;
  background: none;
  border-radius: 50%;
  outline: none !important;
  box-shadow: none !important;
  background-size: 100% auto;
  transition: all 0.4s ease;
  position: absolute;
  text-decoration: none;
  opacity: 0.5;
}

.popover {
  border: 0;
  border-radius: 10px;
  background-color: var(--whitecolor);
  box-shadow: 0 11px 16px 0 rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
  max-width: 100%;
  width: 310px;
}

.popover:before {
  content: "";
  border-style: solid;
  border-width: 10px 13px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translate(-50%, 0);
}

.popover.bs-popover-bottom:before {
  border-color: transparent transparent #fff transparent;
  bottom: auto;
  top: -19px;
}

.popover-body,
.popover-body p {
  margin: 0;
}

.popover-body strong,
.popover-body b {
  font-weight: bold;
}

.popover .close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: url(../img/close-icon.svg) no-repeat 50% 50%;
  width: 12px;
  height: 12px;
  opacity: 1 !important;
  cursor: pointer;
}

.popover-body h4 {
  margin-bottom: 30px !important;
  font-size: 26px !important;
  line-height: 31px !important;
}

.popover-body .p-email,
.popover-body .p-phone {
  padding-left: 35px;
  position: relative;
  display: inline-block;
  color: var(--primarycolor);
}

.popover-body .p-email:before {
  width: 16px;
  height: 13px;
  content: "";
  background: url(../img/email-icon.png) no-repeat center;
  background-size: 100% auto;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}

.popover-body .p-phone:before {
  width: 16px;
  height: 17px;
  content: "";
  background: url(../img/phone-icon.png) no-repeat center;
  background-size: 100% auto;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}

.popover-body .p-phone {
  margin-top: 20px;
}

.popover-body .btn {
  width: 100%;
  height: 36px;
  line-height: 36px;
  margin-top: 28px;
}

.marker-1 {
  top: 7.7%;
  right: 52.4%;
}

.marker-2 {
  right: 25%;
  top: 14.2%;
}

.marker-3 {
  right: 10.9%;
  top: 13%;
}

.marker-4 {
  left: 28.8%;
  top: 28.5%;
}

.marker-5 {
  left: 57.8%;
  top: 33.3%;
}

.marker-6 {
  left: 12.4%;
  top: 35.3%;
}

.marker-7 {
  left: 10.4%;
  top: 57.7%;
}

.marker-8 {
  left: 42.6%;
  top: 56%;
}

.marker-9 {
  top: 54.8%;
  left: 58.9%;
}

.marker-10 {
  left: 77.3%;
  top: 57.8%;
}

.sidebar-left-menu {
  position: sticky;
  top: 76px;
}

.contact-section2 h3 {
  margin-bottom: 37px !important;
}

.team-list .item {
  min-width: 100%;
  max-width: 100%;
  flex-basis: 100%;
}

.team-list .team-membre-image {
  min-width: 100px;
  max-width: 100px;
  flex-basis: 100px;
  margin-right: 30px;
}

.team-list .team-content p {
  font-size: 16px;
  line-height: 26px;
}

.team-list .team-content strong {
  font-size: 20px;
  line-height: 30px;
}

.team-list .item+.item {
  border-top: 1px solid #D2D3D5;
  margin-top: 20px;
  padding-top: 20px;
}

.iframe-main iframe {
  width: 100% !important;
  margin-bottom: 30px;
}

.service-right-content table {
  margin-bottom: 30px;
}

.page-template-tpl_inbank .internal-banner+.middle-section,
.page-template-tpl_liisi_jarelmak .internal-banner+.middle-section,
.page-template-tpl_lhv .internal-banner+.middle-section {
  margin-top: 0 !important;
}

.form-group+.title-bdr-b {
  margin-top: 20px;
}

.title-bdr-b {
  border-bottom: 1px solid var(--secondarycolor);
  padding-bottom: 10px;
  margin-bottom: 20px !important;
}

.two-col-field .form-group {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.two-col-field .field {
  min-width: 50%;
  max-width: 50%;
  flex-basis: 50%;
  padding: 0 10px;
}

.two-col-field .field.full-width {
  min-width: 100%;
  max-width: 100%;
  flex-basis: 100%;
}

.grecaptcha-badge {
  display: none;
}

.new {
  position: relative;
  top: -18px;
  font-size: 10px;
  font-weight: 700;
  color: #f51167;
  line-height: 1;
  text-transform: uppercase;
  left: calc(-25% - 1px);
  padding: 5px 9px 4px;
  border-radius: 15px;
  width: 42px;
}



/*======================================================================
=============================:: MEDIA CSS ::============================
=======================================================================*/

@media screen and (max-width:1399px) {
  .banner-map {
    max-width: 750px;
    right: -20px;
  }

  /*.home-banner-section .caption{height:700px;}*/
}

/* iPad 1024px View */
@media screen and (max-width:1280px) {
  h1 {
    font-size: 70px;
    line-height: 70px;
  }

  h2 {
    font-size: 40px;
    line-height: 40px;
  }

  h3 {
    font-size: 28px;
    line-height: 30px;
  }

  h4 {
    font-size: 22px;
    line-height: 22px;
  }

  h5 {
    font-size: 20px;
    line-height: 20px;
  }

  h6 {
    font-size: 16px;
    line-height: 16px;
  }

  .middle-section {
    padding: 80px 0;
  }

  .container,
  .max-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  blockquote p,
  q p {
    font-size: 20px;
    line-height: 26px;
  }

  .plr-75 {
    padding-left: 30px;
    padding-right: 30px;
  }

  p {
    margin-bottom: 25px;
  }

  /** Header & Banner **/
  .header-inner {
    padding: 0 15px;
  }

  .header-btn,
  .language-menu {
    margin-left: 30px;
  }

  .nav-main ul>li>a {
    font-size: 14px;
  }

  .nav-main ul>li+li {
    margin-left: 28px;
  }

  .header-fixed .header-inner,
  .header-inner {
    height: 60px;
  }

  .header-fixed .logo a,
  .logo a {
    max-width: 160px;
  }

  .home-banner-section {
    padding-top: 30px;
  }

  .home-banner-section .caption {
    height: 500px;
  }

  /*.home-banner-section .caption h1 {margin-bottom: 20px;}*/
  /*.home-banner-section .btns-box {margin-top: 35px;}*/
  .banner-map {
    max-width: 600px;
    right: 0;
    bottom: 60px;
  }

  .home-banner-section .van-image {
    max-width: 600px;
  }

  /** Section 1 Start **/
  /*.section2{padding:50px 0;}*/
  /*.section2 .content-box{padding:60px;}*/
  /*.section2 .content-box h2 {margin-bottom:30px;}*/
  /*.section2 .btn-box {margin-top: 35px;}*/

  .search-filter-section {
    padding: 0 15px;
  }

  .search-filter .field-col {
    padding-left: 20px;
  }

  .search-section h4 {
    margin: 0;
  }

  .search-filter .btn-box {
    padding-left: 20px;
  }

  .search-filter select {
    min-width: 157px;
    max-width: 157px;
    flex-basis: 157px;
    padding-left: 15px;
    color: var(--primarycolor);
  }

  .search-filter .label {
    font-size: 14px;
    line-height: 16px;
    padding-right: 10px;
  }

  .search-filter .btn {
    min-width: 157px;
  }

  /*.popular-product-section{padding:50px 0 80px 0;}*/
  /*.popular-product-section .conetnt-block h2 {margin-bottom: 30px;}*/
  /*.popular-product-section .conetnt-block{margin-bottom:40px;text-align:center;}*/
  .description-main {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    position: relative;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tooltip-popup {
    padding: 20px;
  }

  .tooltip-popup h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .product-list.row {
    margin: -15px;
  }

  .product-list.row>div {
    padding: 15px;
  }

  .product-box {
    padding: 10px;
  }

  .product-box .image-box {
    height: 200px;
  }

  .product-content {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .product-content h6 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
    min-height: 36px;
  }

  .lngcls-ru_RU .product-content h6 {
    font-size: 12px;
  }

  .product-content p {
    font-size: 12px;
    line-height: 15px;
    min-height: 34px;
  }

  .product-box .price-box {
    padding: 10px 0 0;
  }

  .product-box .price-box:after {
    left: -10px;
    right: -10px;
  }

  .product-box .price-box strong {
    font-size: 12px;
    line-height: 15px;
  }

  .product-box .a-plus-text {
    font-size: 12px;
    line-height: 15px;
  }

  /*.section5{padding:80px 0;}*/
  .section5 .row {
    margin: -15px;
  }

  .section5 .row>div {
    padding: 15px;
  }

  .image-content-box .image-box {
    height: 200px;
  }

  /*.image-content-box .content {margin-top: 20px;}*/

  /** Footer Start **/
  /*.footer .footer-inner{padding:40px 15px;}*/
  .f-logo {
    max-width: 180px;
  }

  .footer-menu ul li+li,
  .footer .social-links,
  .f-btn {
    margin-left: 30px;
  }

  .internal-banner {
    min-height: 400px;
  }

  .internal-banner .van-image-box {
    max-width: 550px;
  }

  .internal-banner h2 {
    margin-bottom: 20px;
  }

  .sidebar-left-menu li+li {
    margin-top: 15px;
  }

  .left-sidebar .btn-btn {
    margin-top: 20px;
  }

  .default-right-content,
  .service-right-content {
    padding-left: 0;
  }

  .default-right-content h1+p,
  .service-right-content h2+p {
    font-size: 22px;
    line-height: 28px;
  }

  .entry-content h2 {
    margin-bottom: 30px;
  }

  .entry-content h3 {
    margin-bottom: 30px;
  }

  .entry-content p+h3 {
    padding-top: 0;
  }

  .entry-content iframe {
    height: 350px;
  }

  .internal-banner.contact-banner p {
    line-height: 24px;
  }

  .middle-left-col-inner .image-box {
    margin-bottom: 30px;
  }

  .middle-left-col.entry-content h3 {
    margin-bottom: 15px;
  }

  .middle-left-col p {
    line-height: 28px;
  }

  .form-bg {
    padding: 40px 28px;
  }

  .form-bg h3 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .c-right-col {
    margin-top: -340px;
  }

  .default-right-content h1 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 35px;
  }

  .default-right-content h2 {
    font-size: 28px;
    line-height: 28px;
  }

  .default-right-content h3 {
    font-size: 22px;
    line-height: 24px;
  }

  .default-right-content h4 {
    font-size: 18px;
    line-height: 20px;
  }

  .default-right-content p {
    margin-bottom: 30px;
  }

  .middle-section.portfolio-page {
    padding: 60px 0;
  }

  .portfolio-list.row {
    margin: -20px -15px;
  }

  .portfolio-list.row>div {
    padding: 20px 15px;
  }

  .portfolio-box .image-box {
    height: 200px;
  }

  .portfolio-content {
    margin-top: 10px;
  }

  .portfolio-content h4 {
    margin: 0 0 5px 0;
  }

  .portfolio-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .popup-content-main {
    padding: 20px 0 10px 0;
  }

  .mfp-container {
    padding: 20px 60px 0 60px;
  }

  .popup-content-main {
    margin: 0 -40px;
  }

  .popup-content h4 {
    margin-bottom: 5px;
  }

  .popup-logo {
    max-width: 190px;
  }

  button.mfp-arrow {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 18px;
  }

  button.mfp-arrow:before {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .mfp-close {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .mfp-image-holder .mfp-close:after {
    line-height: 40px;
    font-size: 20px !important;
  }

  button.mfp-arrow.mfp-arrow-right {
    right: 10px;
  }

  button.mfp-arrow.mfp-arrow-left {
    left: 10px;
  }

  .internal-banner.default-banner,
  .internal-banner.campaign-banner {
    min-height: 1px;
    padding-top: 60px;
  }

  .default-banner .caption,
  .campaign-banner .caption {
    padding: 55px 0;
  }

  .internal-banner.product-comparison-banner {
    padding: 100px 0 29px 0;
  }

  .product-comparison-section {
    padding: 30px 0 80px 0;
  }

  .page-menu {
    padding-top: 60px;
  }

  .lngcls-ru_RU .page-menu ul,
  .page-menu ul {
    padding: 0 15px;
  }

  .page-menu ul li a {
    padding: 18px 20px;
    font-size: 12px;
  }

  .lngcls-ru_RU .page-menu ul li a {
    padding: 18px 10px;
  }

  .category-info {
    padding: 25px 40px;
  }

  .info-icon {
    width: 24px;
    height: 24px;
    left: 10px;
    top: 24px;
  }

  .category-info li {
    font-size: 14px;
    line-height: 17px;
  }

  .category-info li+li {
    margin-top: 10px;
  }

  .product-cate-banner {
    padding-top: 160px;
  }

  .product-list-section {
    padding: 40px 0 80px 0;
  }

  .single-tooted {
    padding-top: 110px;
  }

  .breadcrumbs-main {
    padding: 30px 0;
  }

  .product-info,
  .product-content1 {
    padding-left: 0;
  }

  .product-content1 p {
    margin-bottom: 25px;
  }

  .product-content-box {
    padding: 20px;
  }

  .product-content-box .left-block {
    margin-top: 40px;
  }

  .product-content-box .price-box strong {
    font-size: 30px;
    line-height: 36px;
  }

  .product-content-box .price-box {
    margin-bottom: 10px;
  }

  .product-content-box .right-block .compare-btn {
    margin-top: 15px;
  }

  .product-info {
    margin-top: 30px;
  }

  .product-info h3 {
    margin-bottom: 25px;
  }

  .specification-list li {
    font-size: 14px;
    line-height: 17px;
  }

  .specification-info-list li+li {
    margin-top: 20px;
  }

  .large-image-list .image-box {
    height: 400px;
  }

  .small-image-list .image-box {
    height: 88px;
  }

  .error404,
  .page-template-tpl_search {
    padding-top: 140px;
  }

  .search-filter-section .dark-bg {
    margin: 0;
  }

  .search-section1 {
    padding: 60px 0 80px 0;
  }

  .search-section1 .row {
    margin: -15px;
  }

  .search-section1 .row>div {
    padding: 15px;
  }

  .title-block {
    margin-bottom: 10px !important;
    padding-bottom: 10px;
  }

  .title-block h2 {
    font-size: 30px;
    margin: 0 20px 0 0;
  }

  .search-section1 .col-lg-3+.col-lg-12 {
    margin-top: 25px;
  }

  .btn-marker {
    width: 15px;
    height: 15px;
  }

}

@media screen and (max-width:991px) {
  h1 {
    font-size: 50px;
    line-height: 50px;
  }

  h2 {
    font-size: 36px;
    line-height: 36px;
  }

  h3 {
    font-size: 24px;
    line-height: 24px;
  }

  h4 {
    font-size: 20px;
    line-height: 20px;
  }

  h5 {
    font-size: 18px;
    line-height: 18px;
  }

  .middle-section {
    padding: 60px 0;
  }

  p {
    margin-bottom: 20px;
  }

  blockquote p,
  q p {
    font-size: 18px;
    line-height: 22px;
  }

  .compare-btn {
    min-width: 160px;
  }

  .plr-75 {
    padding-left: 15px;
    padding-right: 15px;
  }

  /** Header Start **/
  .header .max-container {
    padding: 0;
  }

  .header-inner {
    border-radius: 0;
  }

  .logo {
    flex-basis: 152px;
    min-width: 152px;
    max-width: 152px;
  }

  .header-right {
    flex-basis: calc(100% - 152px);
    min-width: calc(100% - 152px);
    max-width: calc(100% - 152px);
  }

  .header-fixed .logo a {
    max-width: 152px;
  }

  .hamburger {
    display: inline-block;
  }

  .nav-main {
    display: none !important;
  }

  .header-btn {
    margin: 35px 0 0;
    text-align: center;
  }

  .home-banner-section {
    padding-top: 120px;
  }

  .caption-inner {
    max-width: 100%;
    text-align: center;
  }

  .home-banner-section .caption p {
    margin: 0 auto;
  }

  .home-banner-section .caption {
    height: auto;
  }

  /*.home-banner-section .caption h1 {margin-bottom: 25px;}*/
  .home-banner-section .btns-box {
    /*margin-top: 34px;*/
    justify-content: center;
  }

  .banner-map {
    max-width: 500px;
    right: 0;
    bottom: 0;
    position: relative;
    margin: 20px auto 0 auto;
    padding-bottom: 80px;
  }

  .home-banner-section .van-image {
    max-width: 500px;
    position: absolute;
    margin: 0 auto;
    left: 0;
  }

  .btn-marker {
    width: 12px;
    height: 12px;
  }

  .marker-1 {
    top: 6.4%;
  }

  .marker-2 {
    top: 11.2%;
    right: 25.2%;
  }

  .marker-3 {
    right: 11.2%;
    top: 10.5%;
  }

  .marker-4 {
    top: 22.8%;
  }

  .marker-5 {
    top: 27%;
  }

  .marker-6 {
    top: 28.5%;
  }

  .marker-7 {
    left: 10.6%;
    top: 46.4%;
  }

  .marker-8 {
    left: 42.6%;
    top: 45%;
  }

  .marker-9 {
    top: 43.8%;
  }

  .marker-10 {
    top: 46.4%;
  }

  /** Section 1 Start **/
  /*.section2{padding:40px 0;}*/
  /*.section2 .content-box{padding:40px;}*/
  /*.section2 .content-box h2 {margin-bottom:20px;}*/
  /*.section2 .btn-box {margin-top: 20px;}*/

  .search-section {
    flex-wrap: wrap;
  }

  .search-section h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .search-filter .field-col {
    padding: 0 10px;
  }

  .search-filter .btn-box {
    padding-left: 10px;
  }

  /*.popular-product-section{padding:40px 0 60px 0;}*/
  /*.popular-product-section .conetnt-block h2 {margin-bottom: 20px;}*/
  /*.popular-product-section .conetnt-block{margin-bottom:30px;}*/
  .tooltip-popup h4 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .tooltip-popup {
    width: 360px;
  }

  .product-content {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .section2 .btn-box .btn+.btn {
    margin: 10px 0 0;
  }

  /*.section5{padding:60px 0;}*/
  .section5 .row {
    margin: -10px;
  }

  .section5 .row>div {
    padding: 10px;
  }

  .image-content-box .image-box {
    height: 150px;
  }

  /*.image-content-box .content {margin-top:15px;}*/
  .image-content-box .content h3 {
    font-size: 20px;
    line-height: 20px;
  }

  .contact-popup .modal-body {
    padding: 30px;
  }

  .contact-popup h3 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .contact-popup .image-box {
    margin: 20px 0;
  }

  .phone-email .email {
    margin-top: 0;
  }

  /** Footer Start **/
  /*.footer .footer-inner{padding:20px 15px;}*/
  .f-logo {
    max-width: 140px;
  }

  .footer-menu ul li+li,
  .footer .social-links,
  .f-btn {
    margin-left: 20px;
  }

  .internal-banner {
    min-height: 380px;
    padding: 30px 0 0;
  }

  .internal-banner .van-image-box {
    max-width: 430px;
  }

  .internal-banner h2 {
    margin-bottom: 15px;
  }

  .sidebar-left-menu a {
    font-size: 14px;
    line-height: 16px;
  }

  .default-right-content h1+p,
  .service-right-content h2+p {
    font-size: 18px;
    line-height: 26px;
  }

  .entry-content h2 {
    margin-bottom: 20px;
  }

  .entry-content h3 {
    margin-bottom: 20px;
  }

  .entry-content iframe {
    height: 250px;
  }

  .two-images {
    margin: 20px 0;
  }

  .middle-left-col-inner .image-box {
    margin-bottom: 20px;
  }

  .middle-left-col.entry-content h3 {
    margin-bottom: 10px;
  }

  .middle-left-col p {
    line-height: 24px;
  }

  .form-bg {
    padding: 20px;
  }

  .form-bg h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .c-right-col {
    margin-top: -340px;
  }

  .default-right-content h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .default-right-content h2 {
    font-size: 26px;
    line-height: 26px;
  }

  .default-right-content h3 {
    font-size: 20px;
    line-height: 22px;
  }

  .default-right-content p {
    margin-bottom: 25px;
  }

  .middle-section.portfolio-page {
    padding: 40px 0;
  }

  .portfolio-list.row {
    margin: -15px;
  }

  .portfolio-list.row>div {
    padding: 15px;
  }

  .internal-banner.product-comparison-banner {
    padding: 80px 0 25px 0;
  }

  .product-comparison-section {
    padding: 20px 0 60px 0;
  }

  .page-menu .max-container {
    padding: 0;
  }

  .page-menu {
    background: linear-gradient(135deg, #474961 0%, #2B2C38 100%);
  }

  .page-menu ul {
    display: none;
  }

  .toggle-btn {
    display: block;
    margin: 0 auto;
    font-size: 16px;
    color: var(--secondarycolor);
    font-weight: 500;
    padding: 17px 0;
    line-height: 1;
    position: relative;
    outline: none !important;
    display: block;
  }

  .toggle-btn:after {
    font-family: 'Line Awesome Free';
    font-weight: 900;
    content: "\f107";
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.4s ease;
  }

  .page-menu-open ul {
    display: block;
    padding: 20px 0;
  }

  .page-menu ul li {
    width: 100%;
    text-align: center;
  }

  .page-menu ul li a {
    font-size: 14px;
    line-height: 14px;
    padding: 13px 15px;
  }

  .lngcls-ru_RU .page-menu ul li a {
    padding: 13px 10px;
  }

  .page-menu ul li.active a,
  .page-menu ul li:hover a {
    background: none;
    color: var(--secondarycolor);
  }

  .product-cate-banner {
    padding-top: 140px;
  }

  .product-list-section {
    padding: 30px 0 60px 0;
  }

  .product-filter .search-filter .field-col,
  .search-filter {
    width: 100%;
  }

  .product-filter.filter-section {
    flex-wrap: wrap;
    padding-bottom: 15px;
  }

  .product-filter .search-filter select {
    width: 100%;
  }

  .search-form .btn,
  .search-form {
    margin-left: 15px;
  }

  .filter-right {
    margin: 15px 0 0 0 !important;
  }

  .product-filter.filter-section .filter-right {
    margin-top: 10px;
  }

  .breadcrumbs-main {
    padding: 20px 0;
  }

  .product-content1 {
    margin-top: 30px;
  }

  .product-content1 h3 {
    margin-bottom: 15px;
  }

  .product-content1 p {
    margin-bottom: 20px;
  }

  .product-content-box {
    padding: 15px;
  }

  .product-content-box .left-block {
    margin-top: 30px;
  }

  .product-content-box .price-box strong {
    font-size: 26px;
    line-height: 30px;
  }

  .product-info h3 {
    margin-bottom: 20px;
  }

  .specification-info-list li+li {
    margin-top: 15px;
  }

  .large-image-list .image-box {
    height: 350px;
  }

  .small-image-list .image-box {
    height: 140px;
  }

  .specification-list li {
    padding: 10px 0;
  }

  .specification-info-list li {
    font-size: 14px;
    line-height: 17px;
  }

  .comparison-product-box {
    margin-bottom: 10px !important;
  }

  .product-comparison-inner .item ul li:first-child {
    min-height: 286px;
  }

  .comparison-product-box .image-box {
    height: 150px;
  }

  .search-section1 {
    padding: 40px 0 60px 0;
  }

  .error404,
  .page-template-tpl_search {
    padding-top: 170px;
  }

  .title-block {
    display: block;
  }

  .title-block h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
  }

  .title-block .product-text {
    margin: 0;
    font-size: 14px;
  }

  .title-block .btn {
    margin-top: 5px;
  }

  .page-template-tpl_inbank .middle-section,
  .page-template-tpl_liisi_jarelmak .middle-section,
  .page-template-tpl_lhv .middle-section {
    margin-top: 20px;
  }

  .new {
    display: none;
  }
}

/* iPhone-6 plus 736 (Landscape) view */
@media screen and (max-width:767px) {
  body {
    -webkit-text-size-adjust: none;
  }

  h1 {
    font-size: 44px;
    line-height: 44px;
  }

  h2 {
    font-size: 30px;
    line-height: 30px;
  }

  h3 {
    font-size: 22px;
    line-height: 22px;
  }

  h4 {
    font-size: 18px;
    line-height: 18px;
  }

  p {
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 15px;
  }

  table th,
  table td {
    font-size: 13px;
    padding: 10px 15px;
  }

  img.alignleft,
  img.alignright,
  iframe.alignleft,
  iframe.alignright {
    float: none;
    margin: 0 0 15px;
    display: block;
  }

  iframe.alignleft,
  iframe.alignright {
    width: 100%;
  }

  hr {
    margin: 20px 0;
  }

  .middle-section {
    padding: 40px 0;
  }

  blockquote,
  q {
    margin-bottom: 30px;
  }

  blockquote p,
  q p {
    font-size: 18px;
    line-height: 24px;
  }

  input,
  textarea,
  select {
    font-size: 14px;
  }

  .button,
  .btn {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    padding: 0 15px;
  }

  /** banner Start**/
  .home-banner-section .caption p {
    font-size: 16px;
    line-height: 22px;
    max-width: 320px;
  }

  .home-banner-section .btns-box {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-banner-section .btns-box .btn {
    width: 100%;
    min-width: 100%;
  }

  .home-banner-section .btns-box .btn+.btn {
    margin: 30px 0 0;
  }

  .banner-map {
    max-width: 360px;
    padding-bottom: 40px;
  }

  .home-banner-section .van-image {
    max-width: 200px;
  }

  /** Section 1 Start **/
  /*.section2{padding:20px 0;}*/
  .section2 .image-box {
    height: auto;
  }

  /*.section2 .content-box{padding:30px;}*/
  /*.section2 .content-box h2 {margin-bottom:15px;}*/
  /*.section2 .btn-box {margin-top: 15px;}*/
  .section2 .row {
    flex-direction: column-reverse;
  }

  .fifty-fifty-block-bg1 {
    border-radius: 0 0 10px 10px;
  }

  .section2 .image-box {
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  .section2 .btn-box {
    flex-direction: column;
  }

  .search-filter {
    flex-wrap: wrap;
  }

  .search-filter select {
    min-width: 70%;
    max-width: 70%;
    flex-basis: 70%;
  }

  .search-filter .label {
    min-width: 30%;
  }

  .search-filter .field-col {
    margin-bottom: 10px;
  }

  .search-filter .field-col {
    width: 100%;
  }

  .search-filter .btn-box {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    padding: 0 10px;
  }

  .search-filter .btn-box .btn {
    min-width: 70%;
    margin-left: auto;
  }

  /*.popular-product-section{padding:40px 0;}*/
  /*.popular-product-section .conetnt-block h2 {margin-bottom: 20px;}*/
  .tooltip-popup {
    left: auto;
    right: -40px;
    transform: none;
    margin: 0 0 20px 0 !important;
  }

  .tooltip-popup:after {
    right: 26px;
    left: auto;
    transform: none;
  }

  .product-content p {
    min-height: 30px;
  }

  /*.section5{padding:40px 0;}*/
  .section5 .row {
    margin: -20px -10px;
  }

  .section5 .row>div {
    padding: 20px 10px;
  }

  .image-content-box .image-box {
    height: 240px;
  }

  .image-content-box .content h3 {
    font-size: 18px;
  }

  .radio-box .wpcf7-list-item,
  .check-box .wpcf7-list-item {
    width: 100%;
  }

  .radio-box .wpcf7-list-item+.wpcf7-list-item,
  .check-box .wpcf7-list-item+.wpcf7-list-item {
    margin: 15px 0 0;
  }

  .contact-popup h3 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  .popup-left-content .text-link {
    position: static;
    margin-top: 15px;
  }

  .popup-left-content {
    padding-bottom: 20px;
  }

  /** Footer Start **/
  .f-logo {
    margin: 0 auto 15px auto;
  }

  .footer-menu ul li+li,
  .footer .social-links,
  .f-btn {
    margin-left: 15px;
  }

  .footer-menu ul a {
    font-size: 14px;
  }

  .internal-banner {
    padding-top: 85px;
  }

  .internal-banner .van-image-box {
    max-width: 420px;
    margin: 20px auto 0 auto;
    position: relative;
  }

  .internal-banner .wave-shape {
    height: 60px;
  }

  .internal-banner .wave-shape img {
    width: auto;
    height: 100%;
    object-position: center;
    object-fit: cover;
  }

  .left-sidebar {
    margin-bottom: 30px !important;
    position: relative;
    top: 0;
  }

  .left-sidebar {
    max-width: 100%;
  }

  .default-right-content h1+p,
  .service-right-content h2+p {
    font-size: 17px;
    line-height: 25px;
  }

  .two-images {
    margin: 10px 0;
  }

  .middle-left-col-inner .image-box {
    margin-bottom: 15px;
  }

  .form-bg h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .c-left-col,
  .middle-left-col {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .c-right-col {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
    margin-top: 0;
  }

  .internal-banner .row>div+div {
    margin-top: 15px;
  }

  .internal-banner .van-image-box {
    padding-top: 0;
  }

  .default-right-content h1 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .default-right-content h2 {
    font-size: 24px;
    line-height: 24px;
  }

  .default-right-content h3 {
    font-size: 18px;
    line-height: 20px;
  }

  .default-right-content p {
    margin-bottom: 20px;
  }

  .middle-section.portfolio-page {
    padding: 30px 0;
  }

  .portfolio-list.row {
    margin: -10px;
  }

  .portfolio-list.row>div {
    padding: 10px;
  }

  .portfolio-box .image-box {
    height: 180px;
  }

  .popup-logo {
    max-width: 160px;
  }

  .popup-content-main {
    flex-wrap: wrap;
    text-align: center;
  }

  .popup-content {
    width: 100%;
  }

  .popup-logo {
    margin: 10px auto 0 auto;
  }

  .default-banner .caption,
  .campaign-banner .caption {
    padding: 25px 0 0;
  }

  .internal-banner.default-banner .image-box,
  .internal-banner.campaign-banner .image-box {
    margin-top: 0;
  }

  .product-comparison-section {
    padding: 20px 0 40px 0;
  }

  .product-cate-banner {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .product-list-section {
    padding: 30px 0 40px 0;
  }

  .filter-right {
    margin: 0 !important;
  }

  .product-filter .search-filter .label {
    min-width: 20%;
  }

  .product-filter .search-filter select {
    min-width: 80%;
    max-width: 80%;
    flex-basis: 80%;
  }

  .product-filter.filter-section {
    width: 100%;
  }

  .product-filter.filter-section .filter-right {
    display: block;
    width: 100%;
  }

  .filter-right .compare-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .search-form {
    margin: 0;
  }

  .search-form .btn {
    width: 100%;
  }

  .search-field {
    min-width: 60%;
  }

  .product-content-box .price-box strong {
    font-size: 22px;
    line-height: 26px;
  }

  .product-info h3 {
    margin-bottom: 15px;
  }

  .large-image-list .image-box {
    height: 300px;
  }

  .small-image-list .image-box {
    height: 82px;
  }

  .error404,
  .page-template-tpl_search {
    padding-top: 60px;
  }

  .search-section1 {
    padding: 40px 0;
  }

  .search-filter-section.page-menu.product-cate {
    position: static;
    padding-top: 0;
  }

  .internal-banner.contact-banner {
    padding-bottom: 50px;
  }

  .popover {
    padding: 15px;
    width: 280px;
  }

  .popover-body h4 {
    margin-bottom: 15px !important;
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .popover-body .p-phone {
    margin-top: 15px;
  }

  .popover-body .btn {
    margin-top: 20px;
  }

  .btn-marker {
    width: 10px;
    height: 10px;
  }

  .marker-2 {
    top: 11.8%;
  }

  .marker-4 {
    top: 23.8%;
  }

  .marker-5 {
    top: 28%;
  }

  .marker-6 {
    top: 29.5%;
  }

  .marker-7 {
    left: 10.4%;
    top: 48.6%;
  }

  .marker-8 {
    top: 47%;
  }

  .marker-9 {
    top: 46.8%;
  }

  .marker-10 {
    top: 49%;
  }

  .contact-section2 h3 {
    margin-bottom: 20px !important;
  }

  .team-list .team-membre-image {
    margin-right: 20px;
  }

  .team-list .team-content p {
    font-size: 14px;
    line-height: 24px;
  }

  .team-list .team-content strong {
    font-size: 18px;
    line-height: 28px;
  }

  .iframe-main iframe {
    margin-bottom: 20px;
  }

  .page-template-tpl_inbank .middle-section,
  .page-template-tpl_liisi_jarelmak .middle-section,
  .page-template-tpl_lhv .middle-section {
    margin-top: 40px;
  }
}

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

  /*.popular-product-section .conetnt-block{margin-bottom:20px;}*/
  .product-box .image-box {
    height: 260px;
  }

  .discount-price {
    top: 15px;
  }

  .portfolio-box .image-box {
    height: 240px;
  }

  .product-content p,
  .product-content h6 {
    min-height: 1px;
  }

  .two-col-field .field {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

/*View :: 320px ::*/
@media screen and (max-width:479px) {
  h1 {
    font-size: 30px;
    line-height: 30px;
  }

  h2 {
    font-size: 26px;
    line-height: 26px;
  }

  h3 {
    font-size: 20px;
    line-height: 20px;
  }

  h1 br,
  h2 br {
    display: none;
  }

  .middle-section {
    padding: 30px 0;
  }

  .footer-menu {
    width: 100%;
    justify-content: center;
  }

  .f-right {
    width: 100%;
    justify-content: center;
  }

  .footer .social-links,
  .f-btn {
    margin: 15px 5px 0;
  }

  .tooltip-popup {
    width: 300px;
    right: 0;
  }

  .image-content-box .image-box {
    height: 180px;
  }

  /*.section2 .content-box{padding:20px;}*/

  .radio-box .wpcf7-list-item>label,
  .check-box .wpcf7-list-item>label {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-popup .modal-body {
    padding: 20px;
  }

  .popup-left-content .text-link a {
    font-size: 14px;
    line-height: 16px;
  }

  .contact-popup h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .entry-content h2 {
    margin-bottom: 10px;
  }

  .entry-content h3 {
    margin-bottom: 10px;
  }

  .entry-content iframe {
    height: 180px;
  }

  .portfolio-box .image-box {
    height: 200px;
  }

  .search-filter select {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .search-filter .field-col {
    flex-wrap: wrap;
    padding: 0;
  }

  .search-filter .label {
    min-width: 100%;
    text-align: left;
    margin-bottom: 3px;
  }

  .search-filter .btn-box {
    width: 100%;
    flex-wrap: wrap;
    padding: 0;
  }

  .search-filter .btn-box .btn {
    min-width: 100%;
  }

  .search-field {
    min-width: 50%;
  }

  .search-form .btn {
    width: 100%;
    min-width: 145px;
    font-size: 14px;
    margin: 10px 0 0;
  }

  .search-form {
    display: block;
  }

  .product-filter .search-filter select {
    min-width: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .product-info h3 {
    margin-bottom: 10px;
  }

  .large-image-list .image-box {
    height: 240px;
  }

  .small-image-list .image-box {
    height: 50px;
  }

  .product-content-box {
    flex-wrap: wrap;
  }

  .product-content-box .price-box {
    margin-bottom: 5px;
  }

  .product-content-box .right-block {
    width: 100%;
    margin: 10px 0 0;
  }

  .btn-marker {
    width: 8px;
    height: 8px;
  }

  .marker-2 {
    top: 11.6%;
  }

  .marker-4 {
    top: 23.6%;
  }

  .marker-5 {
    top: 27.4%;
    left: 57.6%;
  }

  .marker-6 {
    top: 29.3%;
  }

  .marker-7 {
    top: 47.4%;
  }

  .marker-8 {
    top: 46%;
  }

  .marker-9 {
    top: 45%;
  }

  .marker-10 {
    top: 47.4%;
  }

  .page-template-tpl_inbank .middle-section,
  .page-template-tpl_liisi_jarelmak .middle-section,
  .page-template-tpl_lhv .middle-section {
    margin-top: 50px;
  }
}


