@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: 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;
}
.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(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -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(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 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(-100%, 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(100%, 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, 100%, 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, 100%, 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(-100%, 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(100%, 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, -100%, 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(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  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(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 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(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@font-face {
  font-family: Flaticon;
  src: url(static/Flaticon-f0bcb7e033c0cad592edc4f11e0e6cc1.eot);
  src: url(static/Flaticon-f0bcb7e033c0cad592edc4f11e0e6cc1d41d.eot?#iefix)
      format("embedded-opentype"),
    url(data:font/woff2;base64,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)
      format("woff2"),
    url(/home/static/Flaticon-2ee6b10abebc0ada5b9d3a8941f04291.woff)
      format("woff"),
    url(/home/static/Flaticon-c9e5b272e4a5705ae069d2d44a0396a9.ttf)
      format("truetype"),
    url(/home/static/Flaticon-5ac7c2ebd59230fdcb688d3f3fdccec7.svg#Flaticon)
      format("svg");
  font-weight: 400;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: Flaticon;
    src: url(/home/static/Flaticon-5ac7c2ebd59230fdcb688d3f3fdccec7.svg#Flaticon)
      format("svg");
  }
}
[class*=" flaticon-"]:after,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class^="flaticon-"]:before {
  font-family: Flaticon;
  font-size: 20px;
  font-style: normal;
}
.flaticon-cloud:before {
  content: "\F100";
}
.flaticon-data:before {
  content: "\F101";
}
.flaticon-vps:before {
  content: "\F102";
}
.flaticon-shield:before {
  content: "\F103";
}
.flaticon-team:before {
  content: "\F104";
}
.flaticon-rocket:before {
  content: "\F105";
}
.flaticon-diamond:before {
  content: "\F106";
}
.flaticon-money:before {
  content: "\F107";
}
.flaticon-data-1:before {
  content: "\F108";
}
.flaticon-dashboard:before {
  content: "\F109";
}
.flaticon-support:before {
  content: "\F10A";
}
.flaticon-star:before {
  content: "\F10B";
}
.flaticon-star-1:before {
  content: "\F10C";
}
.flaticon-star-2:before {
  content: "\F10D";
}
.flaticon-plus:before {
  content: "\F10E";
}
.flaticon-line:before {
  content: "\F10F";
}
.flaticon-monitor:before {
  content: "\F110";
}
.flaticon-idea:before {
  content: "\F111";
}
.flaticon-layout:before {
  content: "\F112";
}
.flaticon-hard-disk:before {
  content: "\F113";
}
.flaticon-smartphone:before {
  content: "\F114";
}
.flaticon-reload:before {
  content: "\F115";
}
.flaticon-laptop:before {
  content: "\F116";
}
.flaticon-update-arrows:before {
  content: "\F117";
}
.flaticon-handshake:before {
  content: "\F118";
}
.flaticon-repair:before {
  content: "\F119";
}
.flaticon-delivery-truck:before {
  content: "\F11A";
}
.flaticon-left-quote:before {
  content: "\F11B";
}
.flaticon-software:before {
  content: "\F11C";
}
.flaticon-gear:before {
  content: "\F11D";
}
.flaticon-skyline:before {
  content: "\F11E";
}
.flaticon-car-insurance:before {
  content: "\F11F";
}
.flaticon-factory:before {
  content: "\F120";
}
.flaticon-chip:before {
  content: "\F121";
}
@font-face {
  font-family: boxicons;
  font-weight: 400;
  font-style: normal;
  src: url(/home/static/boxicons-2722ed7ea574bdf612fa903ac3c20730.eot);
  src: url(/home/static/boxicons-2722ed7ea574bdf612fa903ac3c20730.eot)
      format("embedded-opentype"),
    url(/home/static/boxicons-42d2adbbb48ee4c1c5fc6e4c01e1ab04.woff2)
      format("woff2"),
    url(/home/static/boxicons-b8fb7c66c4bd6e25db8b9d1d7f0fa2d2.woff)
      format("woff"),
    url(/home/static/boxicons-15fa2fe81ad65199abeb19420e990e61.ttf)
      format("truetype"),
    url(/home/static/boxicons-65624d7d7a8415d915516c505c1c5b3b.svg?#boxicons)
      format("svg");
}
.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bx-ul {
  margin-left: 2em;
  padding-left: 0;
  list-style: none;
}
.bx-ul > li {
  position: relative;
}
.bx-ul .bx {
  font-size: inherit;
  line-height: inherit;
  position: absolute;
  left: -2em;
  width: 2em;
  text-align: center;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes burst {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  90% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes flashing {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    transform: translateX(-20px);
    opacity: 0;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    transform: translateX(20px);
    opacity: 0;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    transform: translateY(-20px);
    opacity: 0;
  }
}
@keyframes fade-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    transform: translateY(20px);
    opacity: 0;
  }
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(-10deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scaleX(1) rotate(10deg);
  }
  40%,
  60%,
  80% {
    transform: rotate(-10deg);
  }
  to {
    transform: scaleX(1);
  }
}
.bx-spin,
.bx-spin-hover:hover {
  animation: spin 2s linear infinite;
}
.bx-tada,
.bx-tada-hover:hover {
  animation: tada 1.5s ease infinite;
}
.bx-flashing,
.bx-flashing-hover:hover {
  animation: flashing 1.5s linear infinite;
}
.bx-burst,
.bx-burst-hover:hover {
  animation: burst 1.5s linear infinite;
}
.bx-fade-up,
.bx-fade-up-hover:hover {
  animation: fade-up 1.5s linear infinite;
}
.bx-fade-down,
.bx-fade-down-hover:hover {
  animation: fade-down 1.5s linear infinite;
}
.bx-fade-left,
.bx-fade-left-hover:hover {
  animation: fade-left 1.5s linear infinite;
}
.bx-fade-right,
.bx-fade-right-hover:hover {
  animation: fade-right 1.5s linear infinite;
}
.bx-xs {
  font-size: 1rem !important;
}
.bx-sm {
  font-size: 1.55rem !important;
}
.bx-md {
  font-size: 2.25rem !important;
}
.bx-fw {
  font-size: 1.2857142857em;
  line-height: 0.8em;
  width: 1.2857142857em;
  height: 0.8em;
  margin-top: -0.2em !important;
  vertical-align: middle;
}
.bx-lg {
  font-size: 3rem !important;
}
.bx-pull-left {
  float: left;
  margin-right: 0.3em !important;
}
.bx-pull-right {
  float: right;
  margin-left: 0.3em !important;
}
.bx-rotate-90 {
  transform: rotate(90deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
}
.bx-rotate-180 {
  transform: rotate(180deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
}
.bx-rotate-270 {
  transform: rotate(270deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
}
.bx-flip-horizontal {
  transform: scaleX(-1);
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1)";
}
.bx-flip-vertical {
  transform: scaleY(-1);
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1)";
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  to {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
#header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
#header.is-sticky,
#header.is-sticky .startp-nav {
  animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
}
#header.is-sticky .startp-nav {
  background-color: #fff !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  padding: 5px 0;
}
.startp-nav {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 24px;
  width: 100%;
  z-index: 999;
  height: auto;
}
.startp-nav .navbar {
  padding: 0;
}
.startp-nav.p-relative {
  position: relative;
  padding-bottom: 15px;
}
.startp-nav nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.startp-nav nav .navbar-nav .nav-item {
  position: relative;
  padding: 15px 0;
}
.startp-nav nav .navbar-nav .nav-item a {
  font-weight: 500;
  font-size: 15px;
  color: #4a6f8a;
  padding: 0;
  margin-left: 14px;
  margin-right: 14px;
}
.startp-nav nav .navbar-nav .nav-item a.active,
.startp-nav nav .navbar-nav .nav-item a:focus,
.startp-nav nav .navbar-nav .nav-item a:hover {
  color: #0f1b41;
}
.startp-nav nav .navbar-nav .nav-item a svg {
  width: 14px;
}
.startp-nav nav .navbar-nav .nav-item a span {
  display: inline-block;
  background-color: red;
  color: #fff;
  font-size: 9px;
  width: 13px;
  height: 13px;
  text-align: center;
  line-height: 14px;
  border-radius: 50%;
  position: relative;
  top: -7px;
  right: 4px;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  position: absolute;
  top: 80px;
  left: 0;
  width: 250px;
  z-index: 99;
  opacity: 0;
  border-radius: 5px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding: 20px 5px;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li {
  position: relative;
  padding: 0;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a {
  padding: 9px 15px;
  margin: 0;
  display: block;
  color: #4a6f8a;
  font-size: 14px;
  font-weight: 500;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a.active,
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a:focus,
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a:hover {
  color: #0f1b41;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu {
  position: absolute;
  left: 220px;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu li a {
  color: #4a6f8a;
}
.startp-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown_menu
  li
  .dropdown_menu
  li
  a.active,
.startp-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown_menu
  li
  .dropdown_menu
  li
  a:focus,
.startp-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown_menu
  li
  .dropdown_menu
  li
  a:hover {
  color: #0f1b41;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li:hover .dropdown_menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li:hover a {
  color: #0f1b41;
}
.startp-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.startp-nav nav .others-option {
  margin-left: 20px;
}
.startp-nav nav .others-option .btn.btn-light {
  background: transparent;
  border: 2px dashed #cdf1d8;
  padding: 12px 33px;
  margin-right: 10px;
}
.startp-nav nav .others-option .btn.btn-light:focus,
.startp-nav nav .others-option .btn.btn-light:hover {
  color: #fff;
  border-color: #0f1b41;
}
.startp-nav nav .others-option .btn.btn-light:focus {
  background-color: #0f1b41;
  color: #fff;
  border-color: #0f1b41;
}
.startp-nav nav .others-option .btn.btn-light:after,
.startp-nav nav .others-option .btn.btn-light:before {
  background: #0f1b41;
}
.startp-nav nav .others-option .btn.btn-primary {
  background: #db3235;
  box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.startp-nav nav .others-option .btn.btn-primary:after,
.startp-nav nav .others-option .btn.btn-primary:before {
  background: #0f1b41;
  box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.startp-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff !important;
  animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
}
.navbar-style-three .startp-nav {
  padding-left: 25px;
  padding-right: 25px;
}
.main-banner {
  position: relative;
  height: 100vh;
  z-index: 1;
  background: transparent
    url(/home/static/banner-bg1-c8e7f324943288541bc1cbb21e1f7c19.jpg) 100% 0
    no-repeat;
}
.main-banner .hero-content h1 {
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 500;
}
.main-banner .hero-content p {
  margin-bottom: 30px;
}
.main-banner .banner-form {
  background: #fff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 50px 30px;
  border-radius: 5px;
}
.main-banner .banner-form form .form-control {
  padding-left: 15px;
}
.main-banner .banner-form form .btn {
  display: block;
  width: 100%;
  transform: unset;
  margin-top: 25px;
}
.main-banner .banner-image {
  position: relative;
}
.main-banner .banner-image img {
  position: absolute;
}
.main-banner .banner-image img:first-child {
  z-index: 3;
  top: -130px;
  left: -45px;
}
.main-banner .banner-image img:nth-child(2) {
  right: 145px;
  top: -287px;
}
.main-banner .banner-image img:nth-child(3) {
  left: 25px;
  top: -20px;
}
.main-banner .banner-image img:nth-child(4) {
  right: 12%;
  top: 118px;
  z-index: 1;
}
.main-banner .banner-image img:nth-child(5) {
  left: 28%;
  top: -120px;
  z-index: 2;
}
.main-banner .banner-image img:nth-child(6) {
  right: 35%;
  z-index: 1;
  top: -150px;
}
.main-banner .banner-image img:nth-child(7) {
  right: 20px;
  top: -110px;
}
.main-banner .banner-image img:nth-child(8) {
  right: 25px;
  top: -140px;
}
.main-banner .banner-image img:nth-child(9) {
  right: 30%;
  z-index: 1;
  top: -35px;
}
.main-banner .banner-image img:nth-child(10) {
  left: 37%;
  top: -28px;
  z-index: 1;
}
.main-banner .banner-image img:nth-child(11) {
  left: 37%;
  top: -160px;
  z-index: 1;
}
.main-banner .banner-image img:nth-child(12) {
  left: 90px;
  top: -110px;
}
.main-banner .banner-image img:nth-child(13) {
  left: 56%;
  top: -25px;
  z-index: 2;
}
.main-banner .banner-image img:nth-child(14) {
  right: 105px;
  top: -28px;
}
.main-banner .banner-image img:last-child {
  display: none;
}
.main-banner .banner-image.single-banner-image img {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hosting-main-banner {
  height: 650px;
  position: relative;
  z-index: 1;
  background-color: #032b8d;
}
.hosting-main-banner .hosting-banner-content h1 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 45px;
  font-weight: 500;
}
.hosting-main-banner .hosting-banner-content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.hosting-main-banner .hosting-banner-content ul li {
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  padding-left: 30px;
}
.hosting-main-banner .hosting-banner-content ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #0f1b41;
  content: "";
}
.hosting-main-banner .hosting-banner-content ul li:last-child {
  margin-bottom: 0;
}
.hosting-main-banner .hosting-banner-content p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  margin-top: 25px;
}
.hosting-main-banner .hosting-banner-content p span {
  text-decoration: line-through;
}
.hosting-main-banner .hosting-banner-image {
  position: relative;
}
.hosting-main-banner .hosting-banner-image img {
  position: absolute;
}
.hosting-main-banner .hosting-banner-image img:first-child {
  top: -175px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(2) {
  top: 184px;
  left: 21%;
}
.hosting-main-banner .hosting-banner-image img:nth-child(3) {
  top: 177px;
  right: 38px;
}
.hosting-main-banner .hosting-banner-image img:nth-child(4) {
  left: 29%;
  right: 0;
  top: -15px;
  margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(5) {
  right: 8px;
  top: -107px;
}
.hosting-main-banner .hosting-banner-image img:nth-child(6) {
  left: 18%;
  top: -175px;
  z-index: -1;
}
.hosting-main-banner .hosting-banner-image img:nth-child(7) {
  top: -235px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(8) {
  left: 27%;
  top: -200px;
}
.hosting-main-banner .hosting-banner-image img:nth-child(9) {
  z-index: -2;
  top: 40px;
  left: 80px;
  right: 0;
  margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(10) {
  display: none;
}
.hosting-main-banner .hosting-banner-image.single-hosting-banner-image img {
  display: block;
  position: relative;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
}
.shape1 {
  top: 20%;
  left: 30px;
  animation: rotate3d 4s linear infinite;
  opacity: 0.4;
}
.shape1,
.shape2 {
  position: absolute;
  z-index: -1;
}
.shape2 {
  top: 60%;
  left: 15%;
}
.shape3 {
  left: 25%;
  animation: animationFramesOne 15s linear infinite;
}
.shape3,
.shape4 {
  position: absolute;
  bottom: 15%;
  z-index: -1;
}
.shape4 {
  right: 25%;
  animation: animationFramesOne 20s linear infinite;
}
.shape5 {
  right: 5%;
  top: 10%;
  animation: movebounce 5s linear infinite;
  opacity: 0.2;
}
.shape5,
.shape6 {
  position: absolute;
  z-index: -1;
}
.shape6 {
  top: 40%;
  right: 10%;
}
.shape7 {
  left: 25%;
  animation: animationFramesOne 20s linear infinite;
}
.shape7,
.shape8 {
  position: absolute;
  top: 15%;
  z-index: -1;
}
.shape8 {
  right: 10%;
}
@keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  to {
    transform: translateX(0);
  }
}
.rotateme {
  animation-name: rotateme;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotateme {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(1turn);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  to {
    transform: translate(0) rotate(0deg);
  }
}
.boxes-area {
  position: relative;
  padding-bottom: 80px;
  margin-top: -130px;
  z-index: 1;
}
.hosting-boxes-area {
  background-color: #032b8d;
  margin-top: 0;
}
.hosting-boxes-area .single-box {
  padding-left: 15px;
  padding-right: 15px;
}
.single-box {
  border: 1px dashed #cdf1d8;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 10px rgba(72, 69, 224, 0.1);
  transition: 0.5s;
}
.single-box.mini {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  margin-bottom: 40px;
  border: none;
  cursor: pointer;
}
.single-box.mini h3 {
  margin: 0;
  font-size: 16px;
}
.single-box.mini .icon {
  max-width: 40px;
  max-height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-right: 16px;
}
.single-box.mini .icon svg {
  max-width: 18px;
}
.single-box .icon {
  display: inline-block;
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #cdf1d8;
  border-radius: 50%;
  color: #0f1b41;
  transition: 0.5s;
}
.single-box h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 11px;
  transition: 0.5s;
}
.single-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.single-box a,
.single-box p {
  transition: 0.5s;
}
.single-box.bg-f78acb {
  border-color: rgba(247, 138, 203, 0.3);
}
.single-box.bg-f78acb .icon {
  color: #f78acb;
  background: rgba(247, 138, 203, 0.3);
}
.single-box.bg-c679e3 {
  border-color: #edc3fc;
}
.single-box.bg-c679e3 .icon {
  color: #db3235;
  background: #edc3fc;
}
.single-box.bg-eb6b3d {
  border-color: rgba(235, 107, 61, 0.3);
}
.single-box.bg-eb6b3d .icon {
  color: #eb6b3d;
  background: rgba(235, 107, 61, 0.3);
}
.single-box:hover {
  transform: translateY(-9px);
  border-color: transparent;
}
.single-box:hover:before {
  opacity: 1;
  visibility: visible;
}
.single-box:hover .icon {
  background: #fff;
  color: #0f1b41;
}
.single-box:hover a,
.single-box:hover h3,
.single-box:hover p {
  color: #fff;
}
.single-box:hover.bg-f78acb .icon {
  color: #f78acb;
}
.single-box:hover.bg-c679e3 .icon {
  color: #db3235;
}
.single-box:hover.bg-eb6b3d .icon {
  color: #eb6b3d;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 18px;
}
.about-content .section-title .bar {
  margin-right: 0;
  margin-left: 0;
}
.about-content .section-title p {
  margin: 0;
}
.about-content ul {
  list-style: inside;
  padding: 0;
}
.about-content ul li {
  color: #6084a4;
  padding-bottom: 12px;
}
.about-inner-area {
  margin-top: 60px;
}
.about-inner-area .about-text h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.why-choose-us {
  background: transparent
    url(/home/static/banner-bg1-c8e7f324943288541bc1cbb21e1f7c19.jpg) 100% 0
    no-repeat;
  position: relative;
  z-index: 1;
}
.why-choose-us .section-title {
  text-align: left;
}
.why-choose-us .section-title .bar,
.why-choose-us .section-title p {
  margin-left: 0;
  margin-right: 0;
}
.why-choose-us-image {
  position: relative;
  text-align: center;
}
.why-choose-us-image .main-pic {
  display: none;
}
.why-choose-us-image img:first-child {
  position: relative;
  left: -20px;
}
.why-choose-us-image img:nth-child(3) {
  position: absolute;
  top: -55px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: -1;
  animation-duration: 14s;
}
.why-choose-us-image.single-why-choose-us-image img {
  display: block;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}
.col-lg-6 .col-lg-6:first-child .single-why-choose-us {
  margin-top: 60px;
}
.col-lg-6 .col-lg-6:nth-child(2) .single-why-choose-us {
  margin-top: 0;
}
.col-lg-6 .col-lg-6:nth-child(4) .single-why-choose-us {
  margin-top: -30px;
}
.single-why-choose-us {
  padding: 30px 15px;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 30px rgba(56, 46, 46, 0.1);
  transition: 0.5s;
  margin-top: 30px;
}
.single-why-choose-us .icon {
  color: #0f1b41;
  transition: 0.5s;
}
.single-why-choose-us .icon i:before {
  font-size: 45px;
}
.single-why-choose-us h3 {
  font-size: 18px;
  transition: 0.5s;
  margin-top: 15px;
  margin-bottom: 15px;
}
.single-why-choose-us:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.single-why-choose-us p {
  transition: 0.5s;
}
.single-why-choose-us:hover {
  transform: translateY(-9px);
  border-color: transparent;
}
.single-why-choose-us:hover:before {
  opacity: 1;
  visibility: visible;
}
.single-why-choose-us:hover .icon,
.single-why-choose-us:hover h3,
.single-why-choose-us:hover p {
  color: #fff;
}
.services-area {
  overflow: hidden;
}
.services-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.services-content .section-title .bar {
  margin-left: 0;
  margin-right: 0;
}
.services-content .section-title p {
  margin: 0;
}
.services-content .row {
  margin-left: -8px;
  margin-right: -8px;
}
.services-content .row .col-lg-6 {
  padding-left: 8px;
  padding-right: 8px;
}
.services-content .box {
  position: relative;
  margin-top: 20px;
  z-index: 1;
  display: block;
  padding: 15px 12px;
  color: #6084a4;
  font-weight: 500;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.5s;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.services-content .box:before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 3px;
  z-index: -1;
  transition: 0.5s;
}
.services-content .box svg {
  margin-right: 5px;
  display: inline-block;
  color: #db3235;
  transition: 0.5s;
  width: 18px;
}
.services-content .box:hover {
  color: #fff;
  transform: translateY(-10px);
}
.services-content .box:hover:before {
  opacity: 1;
  visibility: visible;
}
.services-content .box:hover:before svg,
.services-content .box:hover svg {
  color: #fff;
}
.services-right-image {
  position: relative;
}
.services-right-image img {
  position: absolute;
}
.services-right-image img:first-child {
  left: 22%;
  top: -85px;
  z-index: 1;
}
.services-right-image img:nth-child(2) {
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  top: -52px;
}
.services-right-image img:nth-child(3) {
  left: 44%;
  top: -33px;
  z-index: 1;
}
.services-right-image img:nth-child(4) {
  right: 38%;
  z-index: 1;
  top: -220px;
}
.services-right-image img:nth-child(5) {
  z-index: 1;
  right: 24%;
  top: 8px;
}
.services-right-image img:nth-child(6) {
  left: 29%;
  top: 0;
  z-index: 1;
}
.services-right-image img:nth-child(7) {
  right: 44%;
  top: -78px;
  z-index: 1;
}
.services-right-image img:nth-child(8) {
  right: 30%;
  top: -134px;
  z-index: 1;
}
.services-right-image img:nth-child(9) {
  right: 31%;
  top: -21px;
  z-index: 1;
}
.services-right-image img:nth-child(10) {
  right: 24%;
  top: -80px;
}
.services-right-image img:nth-child(11) {
  left: 27%;
  top: -60px;
  z-index: 2;
}
.services-right-image img:nth-child(12) {
  right: 28%;
  z-index: 1;
  top: -54px;
}
.services-right-image img:nth-child(13) {
  left: 31%;
  top: -105px;
  z-index: 1;
}
.services-right-image img.bg-image {
  top: -262px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.services-right-image img:last-child {
  display: none;
}
.services-right-image.single-right-image img {
  display: block;
}
.services-right-image.single-right-image img:first-child {
  top: -60px;
}
.services-right-image.single-right-image img:last-child {
  position: relative;
  left: 0;
  top: 0;
}
.services-left-image {
  position: relative;
}
.services-left-image img {
  position: absolute;
}
.services-left-image img:first-child {
  left: 15%;
  top: -98px;
}
.services-left-image img:nth-child(2) {
  left: 0;
  top: -200px;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.services-left-image img:nth-child(3) {
  left: 36%;
  z-index: 12;
  top: -55px;
}
.services-left-image img:nth-child(4) {
  left: 55px;
  top: -38px;
  z-index: 1;
}
.services-left-image img:nth-child(5) {
  z-index: 3;
  right: 26%;
  top: -66px;
}
.services-left-image img:nth-child(6) {
  right: 19%;
  top: -41px;
  z-index: 2;
}
.services-left-image img:nth-child(7) {
  right: 97px;
  top: 40px;
  z-index: 1;
}
.services-left-image img:nth-child(8) {
  right: 23%;
  top: -175px;
  z-index: 2;
}
.services-left-image img.bg-image {
  top: -262px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.services-left-image img:last-child {
  display: none;
}
.services-left-image.d img {
  display: block;
}
.services-left-image.d img:first-child {
  top: -60px;
}
.services-left-image.d img:last-child {
  position: relative;
  left: 0;
  top: 0;
}
.single-services-box {
  position: relative;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px 20px;
}
.single-services-box h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
}
.single-services-box .icon {
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #cdf1d8;
  border-radius: 50%;
  color: #0f1b41;
  transition: 0.5s;
}
.single-services-box .icon.bg-c679e3 {
  color: #db3235;
  background: #edc3fc;
}
.single-services-box .icon.bg-eb6b3d {
  color: #eb6b3d;
  background: rgba(235, 107, 61, 0.3);
}
.single-services-box:after,
.single-services-box:before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  background: #0f1b41;
  opacity: 0;
  visibility: hidden;
  bottom: 0;
  transition: 0.5s;
}
.single-services-box:before {
  left: 0;
}
.single-services-box:after {
  right: 0;
}
.single-services-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-services-box:hover .icon {
  background: #0f1b41;
  color: #fff;
}
.single-services-box:hover .icon.bg-c679e3 {
  background: #db3235;
}
.single-services-box:hover .icon.bg-eb6b3d {
  background: #eb6b3d;
}
.single-services-box:hover:after,
.single-services-box:hover:before {
  opacity: 1;
  visibility: visible;
  width: 50%;
}
.services-area-two {
  padding-bottom: 50px;
}
.services-details-desc h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.services-details-desc .services-details-accordion .accordion {
  list-style-type: none;
  padding: 0;
  margin: 25px 0 0;
}
.services-details-desc .services-details-accordion .accordion .accordion-item {
  display: block;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #fff;
  margin-bottom: 5px;
}
.services-details-desc
  .services-details-accordion
  .accordion
  .accordion-item:last-child {
  margin-bottom: 0;
}
.services-details-desc .services-details-accordion .accordion .accordion-title {
  display: block;
  padding: 12px 20px 12px 51px;
  text-decoration: none;
  color: #0e314c;
  position: relative;
  border-bottom: 1px solid #fff;
  font-size: 15px;
  font-weight: 500;
}
.services-details-desc
  .services-details-accordion
  .accordion
  .accordion-title
  i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: #0f1b41;
  color: #fff;
}
.services-details-desc
  .services-details-accordion
  .accordion
  .accordion-title
  i:before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 15px;
}
.services-details-desc
  .services-details-accordion
  .accordion
  .accordion-title.active {
  border-bottom-color: #e1e1e1;
}
.services-details-desc
  .services-details-accordion
  .accordion
  .accordion-title.active
  i:before {
  content: "\F10F";
}
.services-details-desc
  .services-details-accordion
  .accordion
  .accordion-content {
  display: none;
  position: relative;
  padding: 15px;
}
.services-details-desc
  .services-details-accordion
  .accordion
  .accordion-content.show {
  display: block;
}
.services-details-area .separate {
  margin-top: 80px;
}
.services-details-image {
  text-align: center;
}
.features-area {
  padding-bottom: 50px;
}
.features-area .yoga .main-pic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-area .yoga .main-pic img {
  width: 324px;
  height: 210px;
}
.features-area .yoga .svg-pic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.features-area .yoga .svg-pic img {
  width: 120px;
  margin-bottom: 16px;
}
.features-area .yoga p {
  height: 124px;
}
.features-area .yoga h2 {
  margin-top: 8px;
  height: 56px;
}
.features-area-two {
  overflow: hidden;
}
.single-features {
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  background: #fff;
  margin-bottom: 30px;
  height: 200px;
  padding: 30px 20px 30px 95px;
}
.single-features h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.single-features .icon {
  position: absolute;
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #cdf1d8;
  border-radius: 50%;
  color: #0f1b41;
  left: 20px;
  top: 30px;
  transition: 0.5s;
}
.single-features .icon.bg-c679e3 {
  color: #db3235;
  background: #edc3fc;
}
.single-features .icon.bg-eb6b3d {
  color: #eb6b3d;
  background: rgba(235, 107, 61, 0.3);
}
.single-features:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-features:hover .icon {
  background: #0f1b41;
  color: #fff;
}
.single-features:hover .icon.bg-c679e3 {
  background: #db3235;
}
.single-features:hover .icon.bg-eb6b3d {
  background: #eb6b3d;
}
.hosting-features-area {
  padding-bottom: 50px;
}
.single-hosting-features {
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
  transition: 0.5s;
  background: #fff;
  text-align: center;
  padding: 30px 20px;
}
.single-hosting-features h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
}
.single-hosting-features .icon {
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #cdf1d8;
  display: inline-block;
  border-radius: 50%;
  color: #0f1b41;
  transition: 0.5s;
}
.single-hosting-features .icon.bg-c679e3 {
  color: #db3235;
  background: #edc3fc;
}
.single-hosting-features .icon.bg-eb6b3d {
  color: #eb6b3d;
  background: rgba(235, 107, 61, 0.3);
}
.single-hosting-features:after,
.single-hosting-features:before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  background: #0f1b41;
  opacity: 0;
  visibility: hidden;
  bottom: 0;
  transition: 0.5s;
}
.single-hosting-features:before {
  left: 0;
}
.single-hosting-features:after {
  right: 0;
}
.single-hosting-features:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-hosting-features:hover .icon {
  background: #0f1b41;
  color: #fff;
}
.single-hosting-features:hover .icon.bg-c679e3 {
  background: #db3235;
}
.single-hosting-features:hover .icon.bg-eb6b3d {
  background: #eb6b3d;
}
.single-hosting-features:hover:after,
.single-hosting-features:hover:before {
  opacity: 1;
  visibility: visible;
  width: 50%;
}
.features-details-desc h3 {
  font-size: 20px;
  margin-bottom: 13px;
}
.features-details-desc .features-details-list {
  padding: 0;
  margin: 20px 0 0;
  list-style-type: none;
}
.features-details-desc .features-details-list li {
  margin-bottom: 12px;
  color: #6084a4;
  position: relative;
  padding-left: 15px;
}
.features-details-desc .features-details-list li:before {
  background: #0f1b41;
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  content: "";
}
.features-details-desc .features-details-list li:last-child {
  margin-bottom: 0;
}
.features-details-desc .features-details-accordion .accordion {
  list-style-type: none;
  padding: 0;
  margin: 25px 0 0;
}
.features-details-desc .features-details-accordion .accordion .accordion-item {
  display: block;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #fff;
  margin-bottom: 5px;
}
.features-details-desc
  .features-details-accordion
  .accordion
  .accordion-item:last-child {
  margin-bottom: 0;
}
.features-details-desc .features-details-accordion .accordion .accordion-title {
  display: block;
  padding: 12px 20px 12px 51px;
  text-decoration: none;
  color: #0e314c;
  position: relative;
  border-bottom: 1px solid #fff;
  font-size: 15px;
  font-weight: 500;
}
.features-details-desc
  .features-details-accordion
  .accordion
  .accordion-title
  i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: #0f1b41;
  color: #fff;
}
.features-details-desc
  .features-details-accordion
  .accordion
  .accordion-title
  i:before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 15px;
}
.features-details-desc
  .features-details-accordion
  .accordion
  .accordion-title.active {
  border-bottom-color: #e1e1e1;
}
.features-details-desc
  .features-details-accordion
  .accordion
  .accordion-title.active
  i:before {
  content: "\F10F";
}
.features-details-desc
  .features-details-accordion
  .accordion
  .accordion-content {
  display: none;
  position: relative;
  padding: 15px;
}
.features-details-desc
  .features-details-accordion
  .accordion
  .accordion-content.show {
  display: block;
}
.features-details-area .separate {
  margin-top: 80px;
}
.features-details-image {
  text-align: center;
}
.team-area {
  padding-bottom: 50px;
}
.single-team,
.team-area .owl-dots {
  margin-bottom: 30px;
}
.single-team {
  background: #fff;
  padding-top: 35px;
  padding-bottom: 35px;
  transition: 0.5s;
  z-index: 1;
  text-align: center;
}
.single-team .team-image {
  position: relative;
  z-index: 1;
  padding-left: 35px;
  padding-right: 35px;
}
.single-team .team-image img {
  border: 3px solid #cdf1d8;
  width: auto !important;
  border-radius: 50%;
  display: inline-block !important;
  transition: 0.5s;
}
.single-team .team-image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: #f9f6f6;
  height: 10px;
  width: 100%;
  z-index: -1;
  transition: 0.5s;
}
.single-team .team-content {
  padding-left: 35px;
  padding-right: 35px;
}
.single-team .team-content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.single-team .team-content ul li {
  display: inline-block;
  margin: 0 5px;
}
.single-team .team-content ul li a {
  color: #db3235;
}
.single-team .team-content ul li a:hover {
  transform: translateY(-5px);
  color: #0f1b41;
}
.single-team .team-content ul li a svg {
  width: 19px;
}
.single-team .team-content p {
  margin-top: 20px;
  margin-bottom: 0;
}
.single-team .team-info {
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  transition: 0.5s;
  padding: 10px 15px;
  border-radius: 75px;
  margin: 25px 10px;
}
.single-team .team-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}
.single-team .team-info span {
  color: #fff;
  font-size: 13px;
}
.single-team:hover {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-team:hover .team-image:before {
  height: 0;
}
.single-team:hover .team-image img {
  border-color: #0f1b41;
}
.single-team:hover .team-info {
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
}
.works-area {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.single-works {
  position: relative;
  margin-bottom: 30px;
}
.single-works:before {
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  z-index: 1;
}
.single-works .icon,
.single-works:before {
  position: absolute;
  top: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.single-works .icon {
  border-radius: 50%;
  right: 20px;
  background: #fff;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 45px;
  z-index: 2;
}
.single-works .icon svg {
  width: 19px;
}
.single-works .icon:hover {
  background: #0e314c;
  color: #fff;
}
.single-works .works-content {
  position: absolute;
  bottom: -60px;
  left: 0;
  padding: 20px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.single-works .works-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.single-works .works-content h3 a,
.single-works .works-content p {
  color: #fff;
}
.single-works:hover:before {
  opacity: 0.8;
  visibility: visible;
}
.single-works:hover .icon {
  opacity: 1;
  visibility: visible;
  top: 20px;
}
.single-works:hover .works-content {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.funfacts-area {
  position: relative;
  z-index: 1;
}
.funfacts-area .section-title h2 {
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.3;
}
.funfacts-area .map-bg {
  position: absolute;
  z-index: -1;
  top: 120px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.funfact {
  text-align: center;
}
.funfact h3 {
  color: #0f1b41;
  font-size: 32px;
  margin-bottom: 7px;
}
.funfact p {
  line-height: normal;
}
.contact-cta-box {
  margin: 80px auto 0;
  max-width: 600px;
  border: 1px dashed #ebebeb;
  padding: 30px 210px 30px 30px;
  border-radius: 5px;
  position: relative;
}
.contact-cta-box h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.contact-cta-box p {
  margin-bottom: 0;
}
.contact-cta-box .btn {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -27px;
}
.contact-cta-box .btn:after,
.contact-cta-box .btn:before {
  background: #0f1b41;
}
.contact-cta-box .btn-primary {
  background: #db3235;
  box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.contact-cta-box .btn-primary:focus,
.contact-cta-box .btn-primary:hover {
  box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.pricing-area {
  position: relative;
  z-index: 1;
}
.pricing-table {
  text-align: center;
  background: #fff;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding-bottom: 35px;
  transition: 0.5s;
}
.pricing-table .pricing-header {
  background: #fff;
  position: relative;
  padding: 30px 20px;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #eee;
  transition: 0.5s;
  margin-bottom: 30px;
  z-index: 1;
}
.pricing-table .pricing-header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -1;
}
.pricing-table .pricing-header h3 {
  font-size: 18px;
  text-transform: uppercase;
  transition: 0.5s;
  margin-bottom: 0;
}
.pricing-table .price {
  margin-bottom: 30px;
}
.pricing-table .price span {
  color: #0f1b41;
  font-size: 30px;
  font-weight: 600;
}
.pricing-table .price span sup {
  font-weight: 500;
}
.pricing-table .price span span {
  font-size: 14px;
  font-weight: 500;
}
.pricing-table .pricing-features ul {
  padding: 0;
  list-style-type: none;
  margin-bottom: 30px;
}
.pricing-table .pricing-features ul li {
  color: #ccdcea;
  margin-bottom: 12px;
  text-decoration: line-through;
}
.pricing-table .pricing-features ul li:last-child {
  margin-bottom: 0;
}
.pricing-table .pricing-features ul li.active {
  color: #6084a4;
  text-decoration: none;
}
.pricing-table:hover {
  transform: translateY(-10px);
}
.pricing-table:hover .pricing-header:before {
  opacity: 1;
  visibility: visible;
}
.pricing-table:hover .pricing-header h3 {
  color: #fff;
}
.pricing-table.active-plan .pricing-header:before {
  opacity: 1;
  visibility: visible;
}
.pricing-table.active-plan .pricing-header h3 {
  color: #fff;
}
.pricing-table.active-plan .btn-primary {
  background: #db3235;
  box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.pricing-table.active-plan .btn-primary:after,
.pricing-table.active-plan .btn-primary:before {
  background: #0f1b41;
  box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.single-pricing-table {
  text-align: center;
  background: #fff;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 35px;
  transition: 0.5s;
}
.single-pricing-table .pricing-header svg {
  transform: scale(1.7);
}
.single-pricing-table .pricing-header h3 {
  text-transform: uppercase;
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: 500;
}
.single-pricing-table .price {
  margin-bottom: 20px;
}
.single-pricing-table .price span {
  color: #0f1b41;
  font-size: 30px;
  font-weight: 600;
}
.single-pricing-table .price span sup {
  font-weight: 500;
}
.single-pricing-table .price span span {
  font-size: 14px;
  font-weight: 500;
}
.single-pricing-table .pricing-features ul {
  padding: 0;
  margin: 0 0 30px;
  list-style-type: none;
}
.single-pricing-table .pricing-features ul li {
  color: #6084a4;
  margin-bottom: 12px;
}
.single-pricing-table .pricing-features ul li:last-child {
  margin-bottom: 0;
}
.single-pricing-table .pricing-features ul li svg {
  width: 15px;
}
.single-pricing-table.active-plan .btn-primary {
  background: #db3235;
  box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.single-pricing-table.active-plan .btn-primary:after,
.single-pricing-table.active-plan .btn-primary:before {
  background: #0f1b41;
  box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.domain-search-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.domain-search-content h2 {
  text-transform: capitalize;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}
.domain-search-content form {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  border-radius: 30px;
}
.domain-search-content form .form-control {
  background-color: #fff;
  border: none;
  height: 55px;
  padding-left: 20px;
  float: left;
  width: 63%;
}
.domain-search-content form .domain-select {
  float: left;
  width: 15%;
  padding-right: 20px;
}
.domain-search-content form .domain-select .form-control {
  padding: 0;
  float: unset;
  width: 100%;
  cursor: pointer;
  height: 55px;
}
.domain-search-content form button {
  box-shadow: unset !important;
  float: left;
  width: 22%;
  height: 55px;
  border-radius: 30px;
  background-color: #0f1b41;
  color: #fff;
  outline: 0;
  cursor: pointer;
  border: none;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: 0.5s;
  font-weight: 600;
  font-size: 14px;
}
.domain-search-content form button:focus,
.domain-search-content form button:hover {
  background-color: #db3235;
}
.domain-search-content ul {
  padding: 0;
  margin: 30px 0 0;
  list-style-type: none;
  display: flex;
  width: 100%;
}
.domain-search-content ul li {
  display: block;
  flex: 1 1;
  font-weight: 500;
  border-left: 1px solid #eee;
}
.domain-search-content ul li:first-child {
  border-left: none;
}
.feedback-area {
  position: relative;
  z-index: 1;
}
.feedback-slides {
  max-width: 750px;
  margin: 0 auto;
}
.feedback-slides,
.feedback-slides .client-feedback {
  position: relative;
}
.feedback-slides .client-feedback .single-feedback {
  background: #fff;
  border-radius: 5px;
  position: relative;
  margin-bottom: 60px;
  padding: 40px 40px 40px 170px;
}
.feedback-slides .client-feedback .single-feedback .client-img {
  position: absolute;
  left: 40px;
  top: 40px;
}
.feedback-slides .client-feedback .single-feedback .client-img img {
  border-radius: 50%;
  border: 2px solid #0f1b41;
  padding: 3px;
}
.feedback-slides .client-feedback .single-feedback h3 {
  font-size: 18px;
  margin: 0;
}
.feedback-slides .client-feedback .single-feedback span {
  display: block;
  color: #db3235;
  margin-top: 8px;
  margin-bottom: 18px;
}
.feedback-slides .client-feedback .single-feedback p {
  font-size: 15px;
}
.feedback-slides .client-feedback .single-feedback:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 50px;
  height: 50px;
  background: #fff;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}
.feedback-slides .client-thumbnails {
  position: relative;
  margin: 0 85px;
}
.feedback-slides .client-thumbnails .item .img-fill {
  cursor: pointer;
  position: relative;
  text-align: center;
}
.feedback-slides .client-thumbnails .item .img-fill img {
  opacity: 0.4;
  transition: 0.5s;
  display: inline-block;
  position: relative;
  border: 2px solid #0f1b41;
  border-radius: 50%;
  padding: 3px;
  width: 85px;
}
.feedback-slides .client-thumbnails .item:hover .img-fill img,
.feedback-slides .client-thumbnails .slick-center .img-fill img {
  opacity: 1;
}
.feedback-slides .next-arrow,
.feedback-slides .prev-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #5e5e5e;
  border: 2px solid #5e5e5e;
  z-index: 1;
  border-radius: 50%;
  line-height: 30px;
  outline: 0 !important;
  transition: 0.5s;
}
.feedback-slides .next-arrow:before,
.feedback-slides .prev-arrow:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-radius: 50%;
}
.feedback-slides .next-arrow svg,
.feedback-slides .prev-arrow svg {
  width: 18px;
  height: 18px;
  position: relative;
}
.feedback-slides .next-arrow:hover,
.feedback-slides .prev-arrow:hover {
  color: #fff;
  border-color: #0f1b41;
}
.feedback-slides .next-arrow:hover:before,
.feedback-slides .prev-arrow:hover:before {
  opacity: 1;
  visibility: visible;
}
.feedback-slides .next-arrow {
  right: -20px;
}
.feedback-slides .prev-arrow {
  left: -20px;
}
.testimonials-slides {
  background-color: #f7fbfe;
  max-width: 850px;
  margin: 90px auto 30px;
  position: relative;
  z-index: 1;
}
.testimonials-slides:before {
  left: -30px;
  top: -30px;
}
.testimonials-slides:after,
.testimonials-slides:before {
  position: absolute;
  width: 260px;
  height: 260px;
  content: "";
  z-index: -1;
  background-image: url(/home/static/layer-e7c5b64113060f5a81b2364eb8e05935.png);
}
.testimonials-slides:after {
  right: -30px;
  bottom: -30px;
}
.testimonials-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: 35px;
  right: 0;
  left: 0;
}
.testimonials-slides.owl-theme .owl-dots .owl-dot span {
  width: 18px !important;
  height: 18px !important;
  background: transparent !important;
  border: 2px solid #d6d6d6;
  position: relative;
  margin: 0 3px !important;
  transition: 0.5s;
}
.testimonials-slides.owl-theme .owl-dots .owl-dot span:before {
  background: #d6d6d6;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.testimonials-slides.owl-theme .owl-dots .owl-dot.active span,
.testimonials-slides.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #0f1b41;
}
.testimonials-slides.owl-theme .owl-dots .owl-dot.active span:before,
.testimonials-slides.owl-theme .owl-dots .owl-dot:hover span:before {
  background: #0f1b41;
}
.single-feedback-item {
  padding: 40px 130px 90px;
  text-align: center;
  background-color: #f7fbfe;
  position: relative;
}
.single-feedback-item .client-info {
  display: flex;
  width: 100%;
  text-align: left;
  max-width: 280px;
  margin: 0 auto 25px;
}
.single-feedback-item .client-info .image {
  padding-right: 20px;
}
.single-feedback-item .client-info .image img {
  display: inline-block !important;
  width: 75px;
  border-radius: 50%;
  border: 3px solid #0f1b41;
}
.single-feedback-item .client-info .title h3 {
  font-size: 18px;
  margin: 0;
}
.single-feedback-item .client-info .title span {
  display: block;
  margin-top: 8px;
  color: #db3235;
}
.single-feedback-item p {
  font-size: 16px;
  font-style: italic;
}
.single-feedback-item:before {
  content: "\F11B";
  color: #d9dcde;
  position: absolute;
  top: 0;
  left: 25px;
  font-family: Flaticon;
  font-size: 30px;
  font-style: normal;
  font-size: 65px;
}
.ready-to-talk {
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  padding-top: 80px;
  padding-bottom: 160px;
}
.ready-to-talk h3 {
  font-size: 24px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.ready-to-talk p {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
}
.ready-to-talk span a {
  margin-left: 15px;
  color: #fff;
  text-decoration: underline;
}
.partner-section {
  text-align: center;
  position: relative;
  margin-top: -120px;
  background: transparent;
}
.partner-section h5 {
  color: #fff;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
}
.partner-section .partner-inner {
  background: #fff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  margin-top: 25px;
  padding: 5px 30px 30px;
}
.partner-section .partner-inner a {
  display: block;
  margin-top: 25px;
  position: relative;
}
.partner-section .partner-inner a img:last-child {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.partner-section .partner-inner a:hover img:last-child {
  opacity: 1;
  top: 0;
  visibility: visible;
}
.blog-area {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.blog-area .pagination-area,
.single-blog-post {
  margin-bottom: 30px;
}
.single-blog-post {
  position: relative;
  transition: 0.5s;
  height: 100%;
}
.single-blog-post .blog-image {
  position: relative;
}
.single-blog-post .blog-image a {
  display: block;
}
.single-blog-post .blog-image .date {
  position: absolute;
  left: 20px;
  bottom: -20px;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 50px;
}
.single-blog-post .blog-image .date svg {
  width: 15px;
  margin-right: 3px;
}
.single-blog-post .blog-post-content {
  background: #f7fafd;
  transition: 0.5s;
  height: 100%;
  padding: 45px 20px 30px 30px;
}
.single-blog-post .blog-post-content h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
.single-blog-post .blog-post-content span {
  display: block;
  color: #0e314c;
  margin: 15px 0;
  text-transform: capitalize;
}
.single-blog-post .blog-post-content span a {
  color: #6084a4;
  margin-left: 5px;
}
.single-blog-post .blog-post-content span a:hover {
  color: #0f1b41;
}
.single-blog-post .blog-post-content .read-more-btn {
  color: #0e314c;
  font-weight: 500;
}
.single-blog-post .blog-post-content .read-more-btn svg {
  transition: 0.5s;
  width: 15px;
}
.single-blog-post .blog-post-content .read-more-btn:hover {
  color: #0f1b41;
}
.single-blog-post .blog-post-content .read-more-btn:hover svg {
  margin-left: 5px;
}
.single-blog-post:hover {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-blog-post:hover .blog-post-content {
  background: #fff;
}
.woocommerce-topbar {
  background-color: #fcfbfb;
  padding: 10px 30px;
  margin-bottom: 30px;
}
.woocommerce-topbar .woocommerce-topbar-ordering .form-control {
  cursor: pointer;
  background-color: transparent;
  border-color: #ebebeb;
  border-radius: 4px;
}
.single-products {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  padding-top: 16px;
  background-color: #fff;
}
.single-products .products-content {
  margin-top: 20px;
}
.single-products .products-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  min-height: 64px;
}
.single-products .products-content ul {
  padding: 0;
  margin: 10px 0 12px;
  list-style-type: none;
}
.single-products .products-content ul li {
  display: inline-block;
  color: #eac11d;
  margin: 0 3px;
}
.single-products .products-content ul li i:before {
  font-size: 15px;
}
.single-products .products-content .add-to-cart-btn {
  display: block;
  width: 100%;
  color: #0e314c;
  border: 1px solid #f9fafb;
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 500;
}
.single-products .sale-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff2d2d;
  color: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  z-index: 2;
}
.single-products .products-image {
  overflow: hidden;
  position: relative;
  padding: 16px;
}
.single-products .products-image img {
  transition: all 1.5s ease-out;
  width: 100%;
}
.single-products .products-image:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: grey;
  content: "";
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.single-products .products-image ul {
  padding: 0;
  z-index: 2;
  list-style-type: none;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.single-products .products-image ul li {
  display: inline-block;
  margin-right: 3px;
  margin-left: 3px;
}
.single-products .products-image ul li a {
  display: block;
  background: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.single-products .products-image ul li a svg {
  width: 20px;
}
.single-products .products-image ul li a:focus,
.single-products .products-image ul li a:hover {
  background-color: #0f1b41;
  color: #fff;
}
.single-products .products-image ul li:nth-child(3) a {
  margin-left: -15px;
}
.single-products .products-image ul li:first-child a {
  margin-right: -15px;
}
.single-products:hover .products-content .add-to-cart-btn {
  background-color: #0e314c;
  color: #fff;
}
.single-products:hover .products-image img {
  transform: scale(1.1);
}
.single-products:hover .products-image:before {
  opacity: 0.4;
  visibility: visible;
}
.single-products:hover .products-image ul {
  opacity: 1;
  visibility: visible;
}
.single-products:hover .products-image ul li:nth-child(3) a {
  margin-left: 0;
}
.single-products:hover .products-image ul li:first-child a {
  margin-right: 0;
}
.modal-dialog {
  max-width: 900px;
}
.modal {
  background-color: rgba(0, 0, 0, 0.75);
}
.modal-content {
  border: none;
  border-radius: 0;
}
.modal-content button.close {
  position: absolute;
  right: 2%;
  display: inline-block;
  opacity: 1;
  top: 2%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 32px;
  border: 1px solid #eee;
  border-radius: 50%;
  outline: 0;
  transition: 0.5s;
}
.modal-content button.close span {
  transition: 0.5s;
}
.modal-content button.close:focus,
.modal-content button.close:hover {
  background-color: #0f1b41;
  color: #fff;
}
.modal-content button.close:focus span,
.modal-content button.close:hover span {
  color: #fff;
}
.modal-content .products-image {
  overflow: hidden;
}
.modal-content .products-image img {
  width: 100%;
}
.modal-content .products-content p {
  margin-bottom: 20px;
}
.modal-content .products-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.modal-content .products-content .price {
  margin-bottom: 15px;
}
.modal-content .products-content .price span {
  text-decoration: line-through;
  color: #6084a4;
}
.modal-content .products-content form .quantity {
  display: inline-block;
}
.modal-content .products-content form .quantity input {
  border: 1px solid #eee;
  border-right: none;
  border-left: none;
  background: #fff;
  height: 45px;
  padding: 15px;
  width: 50px;
  outline: 0;
  font-size: 20px;
}
.modal-content .products-content form .quantity .minus-btn {
  height: 45px;
  display: inline-block;
  line-height: 47px;
  padding-right: 0;
  border: 1px solid #eee;
  border-right: none;
  cursor: pointer;
  padding-left: 10px;
  position: relative;
  top: -1px;
}
.modal-content .products-content form .quantity .minus-btn span svg {
  width: 20px;
  height: 16px;
}
.modal-content .products-content form .quantity .plus-btn {
  height: 45px;
  display: inline-block;
  line-height: 45px;
  border: 1px solid #eee;
  border-left: none;
  cursor: pointer;
  padding-right: 8px;
  position: relative;
  top: -2px;
}
.modal-content .products-content form .quantity .plus-btn svg {
  width: 20px;
  height: 16px;
}
.modal-content .products-content form button {
  background: #0f1b41;
  color: #fff;
  border: none;
  height: 46px;
  padding: 0 20px;
  position: relative;
  top: -3px;
  cursor: pointer;
  margin-left: 10px;
  outline: 0;
  transition: 0.5s;
}
.modal-content .products-content form button:focus,
.modal-content .products-content form button:hover {
  background-color: #db3235;
  color: #fff;
}
.modal-content .products-content .product-meta {
  margin-top: 15px;
}
.modal-content .products-content .product-meta span {
  display: inline-block;
  margin-right: 8px;
}
.products-details-image img {
  width: 100%;
}
.products-details-image .slick-slider {
  position: relative;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.products-details-image .slick-dots {
  padding: 0;
  text-align: center;
  margin: 10px 0 0;
  list-style-type: none;
  display: flex;
  width: 100%;
}
.products-details-image .slick-dots li {
  display: block;
  flex: 1 1;
  margin: 0 5px;
}
.products-details-image .slick-dots li button {
  padding: 0;
  outline: 0;
  border: none;
  margin: 0;
  cursor: pointer;
}
.products-details-image .slick-dots li:last-child {
  margin-right: 0;
}
.products-details-image .slick-dots li:first-child {
  margin-left: 0;
}
.products-details-image .slick-thumbs {
  cursor: pointer;
}
.products-details-image .slick-thumbs .slick-slide {
  padding: 0 5px;
}
.products-details-image .slick-thumbs .slick-slide:first-child {
  margin-left: -5px;
}
.products-details-image ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.payment-methods img {
  margin-right: 5px;
}
.products-details h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.products-details .price {
  margin-bottom: 15px;
}
.products-details .price span {
  text-decoration: line-through;
  color: #6084a4;
}
.products-details .features {
  padding: 0;
}
.products-details .features li {
  list-style: none;
  margin-bottom: 8px;
  font-weight: 500;
}
.products-details .features li svg {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  color: #db3235;
}
.products-details .rating {
  padding: 0;
  margin: 0 0 12px;
  list-style-type: none;
}
.products-details .rating li {
  display: inline-block;
  color: #eac11d;
  margin-right: 3px;
}
.products-details .rating li i:before {
  font-size: 15px;
}
.products-details .availability {
  margin-bottom: 20px;
}
.products-details .availability span {
  color: #0f1b41;
}
.products-details form .quantity {
  display: inline-block;
  padding-right: 10px;
}
.products-details form .quantity span {
  padding-right: 10px;
}
.products-details form .quantity input {
  background: #fff;
  height: 45px;
  width: 50px;
  outline: 0;
  text-align: center;
  font-size: 20px;
  border: 1px solid #eee;
  border-right: none;
  border-left: none;
}
.products-details form .quantity .minus-btn {
  height: 45px;
  display: inline-block;
  line-height: 45px;
  padding-right: 0;
  border: 1px solid #eee;
  border-right: none;
  cursor: pointer;
  padding-left: 10px;
  position: relative;
  top: -1px;
}
.products-details form .quantity .minus-btn span svg {
  width: 20px;
  height: 16px;
}
.products-details form .quantity .plus-btn {
  height: 45px;
  display: inline-block;
  line-height: 45px;
  border: 1px solid #eee;
  border-left: none;
  cursor: pointer;
  padding-right: 8px;
  position: relative;
  top: -1px;
}
.products-details form .quantity .plus-btn svg {
  width: 20px;
  height: 16px;
}
.products-details form button {
  background: #0f1b41;
  color: #fff;
  border: none;
  height: 46px;
  padding: 0 20px;
  position: relative;
  top: -3px;
  cursor: pointer;
  outline: 0;
  transition: 0.5s;
}
.products-details form button:focus,
.products-details form button:hover {
  background-color: #db3235;
  color: #fff;
}
.products-details form .add-to-wishlist-btn {
  margin-left: 5px;
  background: transparent;
  color: #0e314c;
  border: 1px solid #eee;
  position: relative;
  top: -3px;
  cursor: pointer;
  outline: 0;
  transition: 0.5s;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 42px;
}
.products-details form .add-to-wishlist-btn:focus,
.products-details form .add-to-wishlist-btn:hover {
  background-color: #db3235;
  color: #fff;
  border-color: #db3235;
}
.products-details form .buy-btn {
  margin-top: 20px;
}
.products-details form .buy-btn .btn-primary {
  background: #db3235;
  box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.products-details form .buy-btn .btn-primary:after,
.products-details form .buy-btn .btn-primary:before {
  background: #0f1b41;
  box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.products-details .custom-payment-options {
  margin-top: 20px;
}
.products-details .custom-payment-options span {
  display: block;
  margin-bottom: 10px;
}
.products-details .products-share-social {
  margin-top: 25px;
}
.products-details .products-share-social span {
  display: inline-block;
  margin-right: 10px;
}
.products-details .products-share-social ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
}
.products-details .products-share-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.products-details .products-share-social ul li a {
  width: 32px;
  text-align: center;
  line-height: 29px;
  height: 32px;
  border: 1px solid #0f1b41;
  border-radius: 50%;
  color: #0f1b41;
}
.products-details .products-share-social ul li a svg {
  width: 15px;
}
.products-details .products-share-social ul li a.whatsapp {
  border: none;
}
.products-details .products-share-social ul li a.facebook {
  border-color: #4267b2;
  color: #4267b2;
}
.products-details .products-share-social ul li a.facebook:hover {
  background: #4267b2;
  color: #fff;
}
.products-details .products-share-social ul li a.twitter {
  border-color: #38a1f3;
  color: #38a1f3;
}
.products-details .products-share-social ul li a.twitter:hover {
  background: #38a1f3;
  color: #fff;
}
.products-details .products-share-social ul li a.linkedin {
  border-color: #0077b5;
  color: #0077b5;
}
.products-details .products-share-social ul li a.linkedin:hover {
  background: #0077b5;
  color: #fff;
}
.products-details .products-share-social ul li a.instagram {
  border-color: #231f20;
  color: #231f20;
}
.products-details .products-share-social ul li a.instagram:hover {
  background: #231f20;
  color: #fff;
}
.products-details .products-share-social ul li a:hover {
  background: #0f1b41;
  color: #fff;
}
.products-details-tabs {
  margin-top: 40px;
  text-align: center;
}
.products-details-tabs #tabs {
  padding: 0;
  margin: 0 0 30px;
  list-style-type: none;
}
.products-details-tabs #tabs li {
  display: inline-block;
  padding: 12px 50px 8px;
  cursor: pointer;
  margin-right: -4px;
  transition: 0.5s;
  background: #eaeaea;
  font-weight: 500;
}
.products-details-tabs #tabs li.active {
  background-color: #fff;
  position: relative;
}
.products-details-tabs #tabs li.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: #0f1b41;
}
.products-details-tabs #tabs li.inactive {
  background-color: #eee;
  padding: 12px 50px;
}
.products-details-tabs .content {
  display: none;
}
.products-details-tabs .content.show {
  display: block;
}
.products-details-tabs .content h3 {
  margin-bottom: 12px;
  font-size: 18px;
}
.products-details-tabs .content .additional-information {
  padding: 0;
  margin: 25px 0 0;
  list-style-type: none;
  text-align: left;
}
.products-details-tabs .content .additional-information li {
  border: 1px solid #eee;
  border-bottom: none;
  padding: 10px 15px;
  color: #6084a4;
}
.products-details-tabs .content .additional-information li:last-child {
  border-bottom: 1px solid #eee;
}
.products-details-tabs .content .additional-information li span {
  display: inline-block;
  width: 45%;
}
.products-details-tabs .content .products-reviews {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.products-details-tabs .content .products-reviews p {
  margin-bottom: 0;
}
.products-details-tabs .content .products-reviews .review-form {
  margin-top: 20px;
  max-width: 620px;
}
.products-details-tabs .content .products-reviews .review-form p {
  margin-bottom: 0;
}
.products-details-tabs .content .products-reviews .review-form .form-control {
  background: transparent;
}
.products-details-tabs .content .products-reviews .star-source {
  width: 0;
  height: 0;
  margin-top: 5px;
  visibility: hidden;
}
.products-details-tabs .content .products-reviews .star-source svg {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.15rem;
}
.products-details-tabs .content .products-reviews .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  width: 105px;
  margin-bottom: 10px;
}
.products-details-tabs .content .products-reviews .star-rating label {
  cursor: pointer;
}
.products-details-tabs .content .products-reviews .star-rating label .star {
  color: transparent;
  transition: color 0.2s ease-in-out;
}
.products-details-tabs
  .content
  .products-reviews
  .star-rating
  input[name="star"]:checked
  ~ label
  .star,
.products-details-tabs
  .content
  .products-reviews
  .star-rating
  input[name="star"]:focus
  ~ label
  .star,
.products-details-tabs
  .content
  .products-reviews
  .star-rating
  label:hover
  ~ label
  .star,
.products-details-tabs .content .products-reviews .star-rating svg.star:hover {
  color: #f2b01e;
}
.products-details-tabs .content .products-reviews .star-rating svg {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.15rem;
}
.products-details-tabs
  .content
  .products-reviews
  .star-rating
  input[name="star"] {
  display: inline-block;
  width: 0;
  opacity: 0;
  margin-left: -2px;
}
.products-details-tabs
  .content
  .products-reviews
  .star-rating
  input[name="star"]:checked
  + label {
  animation: scaleup 1s;
}
.products-details-tabs
  .content
  .products-reviews
  .star-rating
  input[name="star"]:checked
  + label
  .star {
  animation: starred 0.5s;
}
@keyframes scaleup {
  0% {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes starred {
  0% {
    color: #f2b01e;
  }
  to {
    color: #f2b01e;
  }
}
.cart-table table {
  margin-bottom: 0;
}
.cart-table table thead tr th {
  vertical-align: middle;
  border: none;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 500;
}
.cart-table table tbody tr td {
  vertical-align: middle;
  color: #6084a4;
  padding-left: 0;
  padding-right: 0;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}
.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}
.cart-table table tbody tr td.product-thumbnail a img {
  width: 80px;
}
.cart-table table tbody tr td.product-name a {
  color: #6084a4;
  font-weight: 500;
  display: inline-block;
  max-width: 320px;
}
.cart-table table tbody tr td.product-name a:hover {
  color: #0f1b41;
}
.cart-table table tbody tr td.product-subtotal .remove {
  color: red;
  margin-left: 25px;
  position: relative;
  top: -1px;
}
.cart-table table tbody tr td.product-subtotal .remove svg {
  width: 19px;
}
.cart-table table tbody tr td.product-quantity .form-control {
  background: transparent;
}
.cart-table table tbody tr td a svg {
  color: red;
  margin-top: -2px;
  margin-left: 9px;
}
.cart-buttons {
  margin-top: 30px;
}
.cart-buttons .btn-light {
  background-color: #eaedff;
}
.cart-buttons .btn-light:focus,
.cart-buttons .btn-light:focus .show > .btn-light.dropdown-toggle,
.cart-buttons .btn-light:focus:not(:disabled):not(.disabled).active,
.cart-buttons .btn-light:focus:not(:disabled):not(.disabled):active,
.cart-buttons .btn-light:hover,
.cart-buttons .btn-light:hover .show > .cart-buttons .btn-light.dropdown-toggle,
.cart-buttons .btn-light:hover:not(:disabled):not(.disabled).active,
.cart-buttons .btn-light:hover:not(:disabled):not(.disabled):active {
  color: #fff;
}
.cart-totals {
  background: #fff;
  padding: 40px;
  max-width: 600px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin: 45px auto 0;
}
.cart-totals h3 {
  font-size: 18px;
  margin-bottom: 25px;
}
.cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}
.cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 10px 15px;
  color: #0e314c;
  overflow: hidden;
}
.cart-totals ul li:first-child {
  border-bottom: none;
}
.cart-totals ul li:last-child {
  border-top: none;
}
.cart-totals ul li span {
  float: right;
  color: #6084a4;
}
.user-actions {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 18px 25px 15px;
  margin-bottom: 35px;
  border-top: 3px solid #0f1b41;
}
.user-actions svg {
  color: #0f1b41;
  margin-right: 4px;
  width: 16px;
}
.user-actions span {
  display: inline-block;
  color: #0f1b41;
}
.user-actions span a {
  font-weight: 500;
  display: inline-block;
  color: #0e314c;
}
.user-actions span a:focus,
.user-actions span a:hover {
  color: #0f1b41;
}
.input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 50px;
  transition: 0.5s;
}
.input-counter span.minus-btn {
  left: 0;
}
.input-counter span.plus-btn {
  right: 0;
}
.input-counter span:hover {
  color: #0e314c;
}
.input-counter input {
  height: 45px;
  color: #000;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.input-counter input::-webkit-input-placeholder {
  color: #0e314c;
}
.input-counter input:-ms-input-placeholder {
  color: #0e314c;
}
.input-counter input::-ms-input-placeholder {
  color: #0e314c;
}
.input-counter input::placeholder {
  color: #0e314c;
}
.checkout-area .title {
  font-size: 18px;
  margin-bottom: 25px;
}
.billing-details {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 25px;
  border-radius: 5px;
}
.billing-details .form-group label {
  display: block;
  color: #6084a4;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
}
.billing-details .form-group label .required {
  color: red;
}
.billing-details .form-group .form-control {
  background: transparent;
}
.billing-details .form-group select {
  cursor: pointer;
}
.billing-details .form-check {
  margin-bottom: 15px;
}
.billing-details .form-check .form-check-label {
  color: #6084a4;
}
.billing-details .form-check label {
  font-size: 14px;
  font-weight: 400;
}
.order-details {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 25px;
  border-radius: 5px;
}
.order-details .order-table table {
  margin-bottom: 0;
  text-align: left;
}
.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  font-weight: 500;
  border-color: #eaedff;
  padding: 15px 20px;
}
.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #6084a4;
  border-color: #eaedff;
  font-size: 14px;
}
.order-details .order-table table tbody tr td.product-name a {
  color: #6084a4;
  display: inline-block;
}
.order-details .order-table table tbody tr td.product-name a:hover {
  color: #0f1b41;
}
.order-details .order-table table tbody tr td.order-shipping span,
.order-details .order-table table tbody tr td.order-subtotal span,
.order-details .order-table table tbody tr td.total-price span {
  color: #0e314c;
  font-weight: 500;
}
.order-details .payment-method {
  margin-top: 40px;
  border-top: 1px solid #eaedff;
  padding-top: 35px;
}
.order-details .payment-method p {
  font-size: 14px;
}
.order-details .payment-method p [type="radio"]:checked,
.order-details .payment-method p [type="radio"]:not(:checked) {
  display: none;
}
.order-details .payment-method p [type="radio"]:checked + label,
.order-details .payment-method p [type="radio"]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: #0e314c;
  position: relative;
  margin-bottom: 8px;
}
.order-details .payment-method p [type="radio"]:checked + label:before,
.order-details .payment-method p [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
}
.order-details .payment-method p [type="radio"]:checked + label:after,
.order-details .payment-method p [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #0f1b41;
  position: absolute;
  top: 7px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
}
.order-details .payment-method p [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.order-details .payment-method p [type="radio"]:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.order-details .btn.order-btn {
  display: block;
  margin-top: 25px;
  width: 100%;
  box-shadow: unset;
}
.order-details .btn.order-btn.btn-disabled {
  background-color: #717070;
  border-color: #717070;
  cursor: not-allowed;
  width: 100%;
}
.order-details label {
  color: #6084a4;
}
.order-details label span {
  color: red;
}
.page-title-area {
  position: relative;
  z-index: 1;
  background: transparent
    url(/home/static/banner-bg1-c8e7f324943288541bc1cbb21e1f7c19.jpg) 100% 0
    no-repeat;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 24px;
}
.page-title-area h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.faq-accordion {
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
  padding: 60px;
  background: #fff;
  border-radius: 10px;
}
.faq-accordion .accordion {
  border: none;
  border-radius: 0;
}
.faq-accordion .accordion .accordion__item {
  display: block;
  margin-bottom: 15px;
  border: none !important;
}
.faq-accordion .accordion .accordion__item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion__item .accordion__heading {
  outline: 0 !important;
}
.faq-accordion .accordion .accordion__item .accordion__button {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #0e314c;
  position: relative;
  border-bottom: 1px solid #fff;
  background: #f5f9ff;
  font-size: 16px;
  font-weight: 500;
  outline: 0 !important;
}
.faq-accordion .accordion .accordion__item .accordion__panel {
  position: relative;
  overflow: hidden;
  padding: 15px 20px 10px;
  line-height: 1.8;
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.faq-accordion .accordion .accordion__item .accordion__panel p {
  margin-bottom: 10px;
}
.faq-contact {
  margin-top: 45px;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
  padding: 60px;
  border-radius: 4px;
  background: #fff;
}
.faq-contact h3 {
  font-size: 24px;
  margin-bottom: 25px;
}
.faq-contact form .btn {
  margin-top: 10px;
}
.pagination-area {
  text-align: center;
}
.pagination-area ul {
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}
.pagination-area ul .page-item .page-link {
  padding: 11px 20px;
  margin: 0 -1px;
  color: #6f8ba4;
  background-color: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 10px 0 #d8dde6;
}
.pagination-area ul .page-item .page-link:focus,
.pagination-area ul .page-item .page-link:hover {
  color: #fff;
  background-color: #0f1b41;
  box-shadow: unset;
}
.pagination-area ul .page-item .page-link svg {
  width: 16px;
}
.pagination-area ul .page-item.active .page-link {
  color: #fff;
  background-color: #0f1b41;
}
.blog-details-area {
  position: relative;
}
.blog-details-area .blog-details {
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035),
    0 7px 18px rgba(0, 9, 128, 0.05);
  background: #fff;
}
.blog-details-area .blog-details .article-img {
  position: relative;
}
.blog-details-area .blog-details .article-img .date {
  position: absolute;
  bottom: 15px;
  width: 100px;
  right: 15px;
  height: 100px;
  text-align: center;
  font-size: 24px;
  font-style: italic;
  background: #0f1b41;
  color: #fff;
  border-radius: 5px;
  padding-top: 18px;
  line-height: 30px;
}
.blog-details-area .blog-details .article-content {
  padding: 30px;
}
.blog-details-area .blog-details .article-content ul li {
  display: inline-block;
  margin-right: 5px;
}
.blog-details-area .blog-details .article-content ul.category {
  margin-bottom: 25px;
}
.blog-details-area .blog-details .article-content ul.category li a,
.blog-details-area .blog-details .article-content ul.category li button {
  background: #0f1b41;
  color: #fff;
  padding: 5px 15px 3px;
  display: inline-block;
  border-radius: 3px;
}
.blog-details-area .blog-details .article-content h3 {
  font-size: 18px;
}
.blog-details-area .blog-details .article-content p {
  margin-bottom: 0;
  margin-top: 18px;
}
.blog-details-area .blog-details .article-content .blockquote {
  background: #f7fafd;
  padding: 25px;
  border-left: 4px solid #0f1b41;
  margin-bottom: 20px;
  margin-top: 20px;
}
.blog-details-area .blog-details .article-content .blockquote p {
  margin-top: 0;
  font-size: 17px;
}
.blog-details-area .blog-details .article-content ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.blog-details-area .blog-details .article-content .share-post {
  text-align: center;
  margin-top: 30px;
}
.blog-details-area .blog-details .article-content .share-post ul li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 38px;
  border: 1px solid #eee;
  border-radius: 50%;
  color: #0e314c;
}
.blog-details-area .blog-details .article-content .share-post ul li a:focus,
.blog-details-area .blog-details .article-content .share-post ul li a:hover {
  color: #fff;
  border-color: #0f1b41;
  background-color: #0f1b41;
}
.blog-details-area .blog-details .article-content .share-post ul li a svg {
  width: 16px;
}
.blog-details-area .post-controls-buttons {
  overflow: hidden;
  background: #fff;
  padding: 30px;
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035),
    0 7px 18px rgba(0, 9, 128, 0.05);
  margin-top: 25px;
  margin-bottom: 25px;
}
.blog-details-area .post-controls-buttons .controls-left {
  float: left;
}
.blog-details-area .post-controls-buttons .controls-right {
  float: right;
}
.blog-details-area .post-controls-buttons div a {
  border: 1px solid #eee;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 5px;
}
.blog-details-area .post-controls-buttons div a:focus,
.blog-details-area .post-controls-buttons div a:hover {
  color: #fff;
  background: #0f1b41;
  border-color: #0f1b41;
}
.blog-details-area .post-comments {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035),
    0 7px 18px rgba(0, 9, 128, 0.05);
}
.blog-details-area .post-comments h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.blog-details-area .post-comments .single-comment {
  position: relative;
  padding-left: 95px;
  margin-top: 30px;
}
.blog-details-area .post-comments .single-comment .comment-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 75px;
}
.blog-details-area .post-comments .single-comment .comment-img img {
  border-radius: 50%;
}
.blog-details-area .post-comments .single-comment .comment-content h4 {
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.blog-details-area .post-comments .single-comment .comment-content span {
  color: #6084a4;
}
.blog-details-area .post-comments .single-comment .comment-content p {
  margin-bottom: 15px;
}
.blog-details-area .post-comments .single-comment .comment-content a {
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
}
.blog-details-area .post-comments .single-comment.left-m {
  margin-left: 85px;
}
.blog-details-area .leave-a-reply {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035),
    0 7px 18px rgba(0, 9, 128, 0.05);
  margin-top: 25px;
}
.blog-details-area .leave-a-reply h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.project-details-image {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  text-align: center;
}
.project-details-image:before {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: #0e314c;
}
.project-details-image:before,
.project-details-image svg {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.project-details-image svg {
  right: 0;
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
  margin: 25px auto 0;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
.project-details-image svg:hover {
  color: #0f1b41;
}
.project-details-image:hover:before {
  opacity: 0.9;
  visibility: visible;
}
.project-details-image:hover svg {
  opacity: 1;
  visibility: visible;
  margin-top: -5px;
}
.project-details-desc h3 {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.project-details-desc .project-details-information {
  overflow: hidden;
}
.project-details-desc .project-details-information .single-info-box {
  float: left;
  width: 20%;
  margin-top: 30px;
}
.project-details-desc .project-details-information .single-info-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.project-details-desc .project-details-information .single-info-box p {
  margin-bottom: 0;
}
.project-details-desc .project-details-information .single-info-box ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.project-details-desc .project-details-information .single-info-box ul li {
  display: inline-block;
  margin-right: 5px;
}
.project-details-desc .project-details-information .single-info-box ul li a {
  margin-right: 4px;
  color: #6084a4;
}
.project-details-desc
  .project-details-information
  .single-info-box
  ul
  li
  a
  svg {
  width: 18px;
}
.project-details-desc
  .project-details-information
  .single-info-box
  ul
  li
  a:hover {
  color: #0f1b41;
  transform: translateY(-5px);
}
.map-content {
  height: 500px;
  width: 100%;
}
.contact-info-box {
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 30px;
}
.contact-info-box .icon {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 62px;
  background: #f7fafd;
  border-radius: 50%;
  font-size: 30px;
  color: #0f1b41;
  transition: 0.5s;
}
.contact-info-box h3 {
  font-size: 18px;
  margin: 25px 0 15px;
}
.contact-info-box p {
  margin-bottom: 0;
}
.contact-info-box p a {
  color: #6084a4;
}
.contact-info-box p a:hover {
  color: #0f1b41;
}
.contact-info-box:hover {
  transform: translateY(-10px);
}
.contact-info-box:hover .icon {
  color: #fff;
  background: #0f1b41;
}
#contactForm .btn {
  margin-top: 10px;
}
.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  background-image: url(/home/static/coming-soon-3f45b45076d844723de8577574409a0c.jpg);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.coming-soon-area:before {
  z-index: -1;
  background: linear-gradient(-9deg, #6a82fb, #6a82fb 40%, #fc5c7d);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.8;
}
.coming-soon-area .social-list {
  padding: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 30px;
}
.coming-soon-area .social-list li {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
}
.coming-soon-area .social-list li.list-heading {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
.coming-soon-area .social-list li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #0f1b41;
  color: #fff;
  border-radius: 50%;
}
.coming-soon-area .social-list li a svg {
  width: 15px;
}
.coming-soon-area .social-list li a.facebook {
  background-color: #3b5998;
}
.coming-soon-area .social-list li a.twitter {
  background-color: #1da1f2;
}
.coming-soon-area .social-list li a.linkedin {
  background-color: #0077b5;
}
.coming-soon-area .social-list li a.instagram {
  background-color: #c13584;
}
.coming-soon-area .social-list li a:focus,
.coming-soon-area .social-list li a:hover {
  background-color: #0f1b41;
}
.coming-soon-content {
  text-align: center;
  max-width: 820px;
  margin: -80px auto 0;
}
.coming-soon-content h1 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 55px;
  font-weight: 600;
}
.coming-soon-content p {
  color: #fff;
  font-size: 16px;
  margin: 0 auto;
  max-width: 620px;
}
.coming-soon-content form {
  position: relative;
  margin: 35px auto 55px;
  max-width: 520px;
}
.coming-soon-content form .email-input {
  display: block;
  width: 100%;
  height: 56px;
  border: none;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 5px hsla(0, 0%, 100%, 0.3);
  border-radius: 40px;
  padding: 15px 25px;
  font-size: 16px;
  outline: 0 !important;
  background: #f1f2f3;
}
.coming-soon-content form .submit-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 50px;
  background: #0f1b41;
  color: #fff;
  border: none;
  border-radius: 40px;
  width: 130px;
  outline: 0 !important;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
}
.coming-soon-content form .submit-btn:focus,
.coming-soon-content form .submit-btn:hover {
  background-color: #db3235;
}
.coming-soon-content #timer div {
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  color: #db3235;
  box-shadow: 0 0 0 5px hsla(0, 0%, 100%, 0.5);
  margin: 0 10px;
  padding-top: 18px;
  font-size: 35px;
  font-weight: 500;
}
.coming-soon-content #timer div span {
  display: block;
  margin-top: -4px;
  color: #6084a4;
  font-size: 15px;
}
.error-area {
  height: 100vh;
}
.error-content {
  text-align: center;
  margin-top: -70px;
}
.error-content .notfound-404 {
  position: relative;
  height: 280px;
  z-index: -1;
  margin-bottom: 30px;
}
.error-content .notfound-404 h1 {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: url(/home/static/oops-bg-f7aaca37c766aec3f6b6d0c12fdccd5a.jpg)
    no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: 50%;
  font-size: 230px;
  font-weight: 900;
}
.error-content h3 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 25px;
}
.error-content p {
  max-width: 550px;
  margin: 0 auto 25px;
}
.cta-area {
  background: linear-gradient(135deg, #0f1b41, #2744a5);
}
.cta-area .container {
  max-width: 945px;
}
.cta-content h3 {
  color: #fff;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.cta-right-content {
  text-align: right;
}
.cta-right-content .hosting-price {
  display: inline-block;
}
.cta-right-content .hosting-price span {
  color: #f6fe6a;
  display: block;
}
.cta-right-content .hosting-price h4 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 20px;
}
.cta-right-content .buy-btn {
  display: inline-block;
  padding-left: 35px;
  position: relative;
  top: -15px;
}
.cta-right-content .buy-btn .btn-primary {
  background: #db3235;
  box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.cta-right-content .buy-btn .btn-primary:after,
.cta-right-content .buy-btn .btn-primary:before {
  background: #fff;
  box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.cta-right-content .buy-btn .btn-primary:focus,
.cta-right-content .buy-btn .btn-primary:hover {
  color: #0f1b41;
}
.repair-main-banner {
  overflow-x: hidden;
  padding-top: 200px;
  padding-bottom: 140px;
}
.repair-main-banner.exception {
  overflow-x: unset;
  padding-top: 124px;
  padding-bottom: 140px;
}
.repair-banner-content h1 {
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 500;
}
.repair-banner-content p {
  margin-bottom: 30px;
}
.repair-banner-image {
  position: relative;
  text-align: center;
}
.repair-banner-image img:nth-child(2) {
  position: absolute;
  left: 0;
  top: -65px;
  right: -30px;
  margin: 0 auto;
  z-index: -1;
}
.repair-banner-image img:nth-child(3) {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -69px;
  z-index: -2;
}
.repair-banner-image img:nth-child(4) {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  z-index: -1;
  margin: 0 auto;
  animation-duration: 14s;
}
.repair-partner-area {
  padding-top: 45px;
  padding-bottom: 45px;
}
.single-repair-partner {
  text-align: center;
}
.single-repair-partner a {
  display: block;
  position: relative;
}
.single-repair-partner a img {
  width: auto !important;
  display: inline-block !important;
}
.single-repair-partner a img:last-child {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.single-repair-partner a:focus img:last-child,
.single-repair-partner a:hover img:last-child {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.partner-slides.owl-theme .owl-dots {
  margin-top: 0;
}
.repair-about-content .sub-title {
  text-transform: uppercase;
  color: #0f1b41;
  display: block;
  font-size: 15px;
  font-weight: 400;
}
.repair-about-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}
.repair-about-content ul {
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
  margin-right: -10px;
  margin-left: -10px;
}
.repair-about-content ul.flex-column li {
  max-width: 80%;
}
.repair-about-content ul li {
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  margin-top: 25px;
  color: #6084a4;
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}
.repair-about-content ul li span {
  display: block;
  position: relative;
  z-index: 1;
  padding: 10px;
  border-radius: 3px;
  transition: 0.5s;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.repair-about-content ul li span svg {
  margin-right: 5px;
  display: inline-block;
  color: #0f1b41;
  transition: 0.5s;
  width: 18px;
}
.repair-about-content ul li span:before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 3px;
  z-index: -1;
  transition: 0.5s;
}
.repair-about-content ul li span:focus,
.repair-about-content ul li span:hover {
  color: #fff;
  transform: translateY(-5px);
}
.repair-about-content ul li span:focus:before,
.repair-about-content ul li span:hover:before {
  opacity: 1;
  visibility: visible;
}
.repair-about-content ul li span:focus svg,
.repair-about-content ul li span:hover svg {
  color: #fff;
}
.repair-about-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.repair-about-image img {
  max-width: 80%;
}
.repair-about-image img:first-child {
  left: 0;
  top: 0;
  z-index: 1;
}
.repair-about-image img:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  text-align: center;
  z-index: 2;
  margin: 0 auto;
  border: 5px solid #f8fbff;
  width: 350px;
}
.repair-about-image img:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: 1;
}
.repair-about-image img:nth-child(4) {
  right: 0;
  top: 0;
}
.repair-about-image img:nth-child(5) {
  left: 0;
  bottom: 0;
}
.repair-services-area {
  padding-bottom: 50px;
}
.single-repair-services {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  text-align: center;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-repair-services .icon-food {
  background-image: url(/home/static/food-a1185e4d5c332dc758dcae3284a09aaf.png);
}
.single-repair-services .icon-food,
.single-repair-services .icon-gro {
  height: 48px;
  width: 48px;
  margin: 0 auto;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-repair-services .icon-gro {
  background-image: url(/home/static/gro-fcb84aaf9460311d6f88cb58e4883fa6.png);
}
.single-repair-services .icon-diary {
  background-image: url(data:image/png;base64,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);
}
.single-repair-services .icon-diary,
.single-repair-services .icon-wash {
  height: 48px;
  width: 48px;
  margin: 0 auto;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-repair-services .icon-wash {
  background-image: url(data:image/png;base64,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);
}
.single-repair-services .icon-sketch {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAQAAAAAYLlVAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfkBQoHFxD7Jx5XAAAD8UlEQVRo3u3ZSYwUZRQH8F8Pw5KgLE1MJByEAWVxQwRFB4IIHMATRgd0TAgmBnFOxgPXiYnhpidN9IAbGJYTYQKRRQ8OGNAQgokigkvMBC4QNxJiZigP/XV1dVc12DNdDQf+k3xd7/1rvvfvb3lV7+uCNEbpxg5DTeQqaNOFXaL6t2wQiWxoKlfByyKRjRU9acxItM3iKng20dYRkCfGWgaWG1dytAdisSeMCdedod2S0UEj3L+OOV5zzzJ3gPGWOlR2TrJflNNfn4lVAt6JmbcrzvzCRyL7qgScif0/lBwFi32Naz4zEG5aohNH9WcMcyPcNN0KeMw3wdPhPK5gPGb6Gd4QiXya6KhXJNKbuYga47aLRF6P7Z4wJn0ikdegzZ3gvDxwDhKrYDU44EDFas/4t18SbbM4Klvwc9dQ2opXswRsF2FHZifD5ShvwTPO40ezS1sxS8CQT+p2MlyOygSU2tlY7VArM+GaKgHBUx6B7Nw2UnQmrjvcB560gJCIZ+soC1hpZc7ff1X47K32tm4KpmZ7yyOQndtGiiVVk1AdJ3BlAYfrZLeRoTcloBIncK1+H0ihvS4z1TPoc/HmCFhhtyIu63IkTwHZU9BhjyIo2mN66wVsNRkDBjDZ1lYLmOM50KUrfM5prYAXtWG/Y445gDYvtFZA6Z39PfBuwtMiATPcj3/C2j/iCh7IbyGmBcwF/a6CqyF1zm2dgFngbGyfTXhzQDoRlWrbcbE9NuGl3dMexGlfGKqyvzTYHAHfgbXeNIBp1oLTYKlt8Vics1HBh2Ym7GE8UdMC+p0y311O24PnFXHSUSxzMK4fmeVwPD5le2XjEtICrnnVQRMUbQqev2wWGW2bMbhkF9aZEoL/YbfBYG8zr9GJyMoDx63yU2ydtcIJLNeBSx7Ro8dCl0P4BTbp8ajLuNdTjY5A9rPghLk+AO+b51swH+z0O/jVTrArFCK/Bfvh5ghgyAVwsebEZ3R8VYDEgBcaDX19AWmcAl06wAzrwXr3gOnWJe5qANWLcJTu+O11UWi3xNygdpOcDItuMpjiZFiURQx63EJcuOFZWR0BL/mohl8T6pkKJnqlyi7anOjtrXBV8PH/E3CLvZRuF5nXhF6/v06NfF0BN6pvc8BNn4LbAurngeGigRyQFpDOA8PB/84B3HJT0Iw80EAOSAvIPw9UzqI6swTkj9RZ1Mh3QYOrvhbN2AWNrPq6Z0StQuqMaOS7oMFVX4vbT8NbQMDfEFd4zUWpjvwTUnEC1+4o6FYIZWnz8FA42vkKauJUcX25/my3NxbUV4+baF+O4SfEAmrj7DWhUlAt0unuJk/BRf2hrqygHCfm/gP1hNwcpj0s4wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMC0wNS0xMFQwNzoyMzoxNiswMDowMNTiETUAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjAtMDUtMTBUMDc6MjM6MTYrMDA6MDClv6mJAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==);
}
.single-repair-services .icon-home,
.single-repair-services .icon-sketch {
  height: 48px;
  width: 48px;
  margin: 0 auto;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-repair-services .icon-home {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAQAAAAAYLlVAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfkBQoHHA171atFAAACyElEQVRo3u2ZS2gTQRiAP5NaY4yKgq22Xir4QClK0UvpQVHQooLQm4o9FLwVhR5E6NmbFw+1Paig4kWE+KjBg1rwcRI9+Cg0YIUWH2kt2oqtaZr1kGm6m31kZ7Mzp8wcMsy/M9+38yfszAaClji9jGJgMMUAjYHnCVg28RbDVCdo1Ymv56MFb2Dwh/367n64iH3JI/6J9gxtevELdAGwj0l9CkuLv0BnsXc3E3oS4YzXpuCO16LgjVeuUB6vVMEfXpmCf7wSBTl86Ary+FAVguFDUwiOD0WhMnzFCpXjK1IIBx9YITx8IIVw8dIK4eOlFNTgfSuow/tSUIsvq6Ae76mgB++qUG/aaJ9RigfYY9rEtwJEeaURb1XI0AAnNeOtCn1wXzS7teEB9pIVh1qR/18s0yoAg4Ubj5AFIMYqzQLrFxs3RAruslEbPMFFQR2BtpJzfp53bFOCjfNQZH6pXgC4anvZcEuJwFkb5w2xCNDNFfKWS+uUCJTO+pR25mqAHOe4xmmaqaNFCdpa0oyTJknKHqoVS/NECbhXzH7I3BnRcMeepSbAmBhddLCdlaa+ecZ4TB/fK9Pxk4IWvti+zYt1hlMeIx1TILsCzQyx2jWa4DZRbspMKCcQ5U4Rn2HMFFnHFtHq5xnjkrdVLOVScELEpzhqi+3kvYhedhkdwq/gmPg8z6At9okO5i1X+SpyAk0AGCQdoyN8EFdJzConUHhkzzHtEv8BwHJqVQkoKFWBqkBVoCpgFcgyC6Dob8jN4vO31wp8BmCHgs3pGvEEzQuGi0ASgCj3OBBqerbyQKzAC36aA6VH0g2kWSva00yWRBtZAcwSd8GkOALAKIalP1E8Exgc5Lm363Fyrnu+Qv3rOjZVZqTBJT/LdZhvnpMMu44cKCPeYx/i/FYgQSftNBFziGXo4bWLQAP97HLoz/GVIa5bdpGi/AeYYB/nIlsXjgAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMC0wNS0xMFQwNzoyODoxMyswMDowMH46xWUAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjAtMDUtMTBUMDc6Mjg6MTMrMDA6MDAPZ33ZAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==);
}
.single-repair-services.bg1 {
  background-image: url(/home/static/image1-268fd582196506f30f062e4ca1cf5958.jpg);
}
.single-repair-services.bg2 {
  background-image: url(/home/static/grocery-c0a34dc3b8b26e41b3baa765c5c415bb.jpg);
}
.single-repair-services.bg3 {
  background-image: url(/home/static/dairy-a7b2cf8946ad151c37124c5695f7bc25.jpg);
}
.single-repair-services.bg4 {
  background-image: url(/home/static/wash-ccad9f64ffc3838bac439c1bb5030993.jpg);
}
.single-repair-services.bg5 {
  background-image: url(/home/static/sketch-9f784d6190601506c09773b727e54fb9.jpg);
}
.single-repair-services.bg6 {
  background-image: url(/home/static/home-e2e16aec450fdd49afe54578b77423da.jpg);
}
.single-repair-services.bg7 {
  background-image: url(/home/static/4-28e0e69202cfd40a6d0ae435512a31a5.jpg);
}
.single-repair-services.bg8 {
  background-image: url(/home/static/1-8b2a9c9edd873bc024daf3db47b0cf67.png);
}
.single-repair-services.bg9 {
  background-image: url(/home/static/3-1a97a6f0bfcf8c9195f854602ca7ca3f.jpg);
}
.single-repair-services.bg10 {
  background-image: url(/home/static/2-b54eb696218a627a36a5a42c59c65e6f.jpg);
}
.single-repair-services.bg11 {
  background-image: url(/home/static/5-a843c8606e8b6ba7a0a707e46488e087.jpg);
}
.single-repair-services.bg12 {
  background-image: url(/home/static/6-2f5422229f499a149e635f5a1e89c036.jpg);
}
.single-repair-services:before {
  background: #fff;
}
.single-repair-services:after,
.single-repair-services:before {
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px dashed #cdf1d8;
}
.single-repair-services:after {
  background: rgba(0, 0, 0, 0.45098);
  opacity: 0;
  visibility: hidden;
}
.single-repair-services h3 {
  font-size: 18px;
  transition: 0.5s;
  margin-top: 22px;
  margin-bottom: 17px;
  line-height: 1.4;
}
.single-repair-services .icon {
  display: inline-block;
  color: #0f1b41;
  width: 85px;
  height: 85px;
  line-height: 85px;
  border: 1px solid #e3f7e9;
  border-radius: 50%;
  transition: 0.5s;
}
.single-repair-services .icon i:before {
  font-size: 35px;
}
.single-repair-services p {
  margin-bottom: 25px;
  transition: 0.5s;
}
.single-repair-services a {
  width: 35px;
  background-color: #f9fafb;
  height: 35px;
  line-height: 35px;
  color: #0e314c;
  border-radius: 50%;
}
.single-repair-services a svg {
  width: 15px;
}
.single-repair-services:focus:before,
.single-repair-services:hover:before {
  opacity: 0;
  visibility: hidden;
}
.single-repair-services:focus:after,
.single-repair-services:hover:after {
  opacity: 0.85;
  visibility: visible;
}
.single-repair-services:focus h3,
.single-repair-services:focus p,
.single-repair-services:hover h3,
.single-repair-services:hover p {
  color: #fff;
}
.single-repair-services:focus .icon,
.single-repair-services:hover .icon {
  border-color: #fff;
  color: #fff;
}
.single-repair-services:focus a,
.single-repair-services:hover a {
  background-color: #fff;
  color: #0f1b41;
}
.repair-cta-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0f1b41, #2744a5) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cta-repair-content p {
  color: #fff;
  opacity: 0.95;
  margin-bottom: 25px;
}
.cta-repair-content h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 17px;
}
.cta-repair-content ul {
  padding: 0 16px;
}
.cta-repair-content ul li {
  margin-right: 24px;
  padding-bottom: 16px;
  color: #fff;
  list-style: none;
}
.cta-repair-content ul li a {
  margin-top: 8px;
  background: #fff;
  padding: 2px 12px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}
.cta-repair-content ul li a:hover {
  color: #fff;
  background: #0f1b41 !important;
}
.cta-repair-content ul btn-primary {
  background: purple-color;
}
.cta-repair-img {
  text-align: right;
}
.circle-box {
  top: 0;
  left: 0;
}
.circle-box,
.cta-shape {
  position: absolute;
  z-index: -1;
}
.cta-shape {
  bottom: 0;
  right: 0;
}
.repair-team-area .container {
  max-width: 1175px;
}
.repair-team-area .single-team .team-content {
  padding-left: 25px;
  padding-right: 25px;
}
.repair-why-choose-us {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
}
.repair-why-choose-us .section-title h2 {
  color: #fff;
}
.repair-why-choose-us .section-title .bar:before {
  background: #fff;
}
.repair-why-choose-us .section-title p {
  color: #fff;
  opacity: 0.95;
}
.repair-why-choose-us:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 37%;
  width: 100%;
  background: #fff;
  z-index: -1;
}
.single-repair-box {
  text-align: center;
  background-color: #fff;
  border: 1px dashed #cdf1d8;
  padding: 30px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.single-repair-box h3 {
  font-size: 18px;
  margin-top: 22px;
  margin-bottom: 17px;
}
.single-repair-box p {
  margin-bottom: 25px;
}
.single-repair-box a {
  width: 40px;
  background-color: #eef0f3;
  height: 40px;
  line-height: 40px;
  color: #0e314c;
  border-radius: 50%;
}
.single-repair-box a svg {
  width: 18px;
}
.single-repair-box .icon {
  display: inline-block;
  border: 1px solid #6ee9fa;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  position: relative;
  color: #fff;
  z-index: 1;
}
.single-repair-box .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  background: linear-gradient(
    to right bottom,
    #1fa2ff,
    #00c0ff,
    #00d9f2,
    #53eedd,
    #a6ffcb
  );
  border-radius: 50%;
  margin: 6px;
  transition: 0.5s;
}
.single-repair-box .icon i:before {
  font-size: 35px;
}
.single-repair-box .back-icon {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #4457c3;
  opacity: 0.03;
  z-index: -1;
}
.single-repair-box .back-icon i:before {
  font-size: 200px;
}
.single-repair-box:focus,
.single-repair-box:hover {
  border-color: #0f1b41;
}
.single-repair-box:focus a,
.single-repair-box:hover a {
  background-color: #0f1b41;
  color: #fff;
}
.single-repair-feedback {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 55px;
  position: relative;
  text-align: center;
  padding: 40px;
}
.single-repair-feedback .client-img {
  position: relative;
  text-align: left;
  margin-bottom: 40px;
  display: inline-block;
  padding-left: 108px;
  padding-top: 18px;
}
.single-repair-feedback .client-img img {
  border-radius: 50%;
  border: 2px solid #0f1b41;
  padding: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
}
.single-repair-feedback .client-img h3 {
  font-size: 18px;
  margin: 0;
}
.single-repair-feedback .client-img span {
  display: block;
  color: #db3235;
  margin-top: 8px;
}
.single-repair-feedback p {
  font-size: 15px;
}
.single-repair-feedback:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 50px;
  height: 50px;
  background: #fff;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}
.single-repair-feedback:after {
  content: "\F11B";
  position: absolute;
  top: 0;
  left: 25px;
  color: #d9dcde;
  font-family: Flaticon;
  font-size: 30px;
  font-style: normal;
  font-size: 65px;
}
.iot-main-banner {
  position: relative;
  z-index: 1;
  padding-top: 215px;
  padding-bottom: 150px;
}
.iot-banner-content {
  max-width: 445px;
}
.iot-banner-content span {
  color: #0f1b41;
  font-size: 15px;
  display: block;
}
.iot-banner-content h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-top: 7px;
  margin-bottom: 17px;
}
.iot-banner-content .btn {
  margin-top: 10px;
}
.iot-banner-image {
  position: absolute;
  text-align: center;
  right: 30px;
  top: 56%;
  transform: translateY(-50%);
}
.iot-banner-image img:first-child {
  max-width: 730px;
}
.iot-banner-image img:last-child {
  position: absolute;
  left: -118px;
  right: 0;
  margin: 0 auto;
  top: 39px;
  z-index: -1;
}
.animate-border span {
  position: absolute;
  display: block;
  width: 5%;
  padding-bottom: 5%;
  top: 51%;
  left: 70%;
  opacity: 0;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  border-radius: 50%;
  z-index: -2;
}
.animate-border span:first-child {
  animation: pulsei 4.2s ease-out 0.5s infinite normal none running;
}
.animate-border span:nth-child(2) {
  animation: pulsei 4.2s ease-out 1.5s infinite normal none running;
}
.animate-border span:nth-child(3) {
  animation: pulsei 4.2s ease-out 2.5s infinite normal none running;
}
.animate-border span:nth-child(4) {
  animation: pulsei 4.2s ease-out 3.5s infinite normal none running;
}
@keyframes pulsei {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    border: 1.5px solid #b3eaf8;
    opacity: 1;
    width: 5%;
    padding-bottom: 5%;
  }
  to {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0;
    width: 50%;
    border: 1.5px solid #b3eaf8;
    padding-bottom: 50%;
  }
}
.iot-partner-area {
  padding-top: 45px;
  padding-bottom: 45px;
}
.single-iot-partner {
  text-align: center;
}
.single-iot-partner a {
  display: block;
  position: relative;
}
.single-iot-partner a img {
  width: auto !important;
  display: inline-block !important;
}
.single-iot-partner a img:last-child {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.single-iot-partner a:focus img:last-child,
.single-iot-partner a:hover img:last-child {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.iot-services-area {
  padding-bottom: 50px;
}
.single-iot-services {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  text-align: center;
  background-color: #fff;
  border: 1px dashed #cdf1d8;
}
.single-iot-services:after {
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.single-iot-services h3 {
  font-size: 18px;
  transition: 0.5s;
  line-height: 1.5;
  margin-top: 22px;
  margin-bottom: 17px;
}
.single-iot-services .icon {
  display: inline-block;
  color: #0f1b41;
  width: 85px;
  height: 85px;
  line-height: 85px;
  border: 1px solid #e3f7e9;
  border-radius: 50%;
  transition: 0.5s;
}
.single-iot-services .icon i:before {
  font-size: 35px;
}
.single-iot-services p {
  margin-bottom: 25px;
  transition: 0.5s;
}
.single-iot-services a {
  width: 35px;
  background-color: #f9fafb;
  height: 35px;
  line-height: 35px;
  color: #0e314c;
  border-radius: 50%;
}
.single-iot-services a svg {
  width: 15px;
}
.single-iot-services:focus:after,
.single-iot-services:hover:after {
  opacity: 1;
  visibility: visible;
}
.single-iot-services:focus h3,
.single-iot-services:focus p,
.single-iot-services:hover h3,
.single-iot-services:hover p {
  color: #fff;
}
.single-iot-services:focus .icon,
.single-iot-services:hover .icon {
  border-color: #fff;
  color: #fff;
}
.single-iot-services:focus a,
.single-iot-services:hover a {
  background-color: #fff;
  color: #0f1b41;
}
.iot-cta-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cta-iot-content h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 17px;
}
.cta-iot-content p {
  color: #fff;
  opacity: 0.95;
  margin-bottom: 25px;
}
.cta-iot-img {
  text-align: center;
}
.iot-features-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}
.iot-features-content .btn {
  margin-top: 15px;
}
.iot-features-image {
  position: relative;
  text-align: center;
}
.iot-team-area .container {
  max-width: 1175px;
}
.iot-team-area .container .single-team .team-content {
  padding-left: 25px;
  padding-right: 25px;
}
.iot-why-choose-us {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0f1b41, #2744a5);
}
.iot-why-choose-us .section-title h2 {
  color: #fff;
}
.iot-why-choose-us .section-title .bar:before {
  background: #fff;
}
.iot-why-choose-us .section-title p {
  color: #fff;
  opacity: 0.95;
}
.iot-why-choose-us:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 37%;
  width: 100%;
  background: #fff;
  z-index: -1;
}
.single-iot-box {
  text-align: center;
  background-color: #fff;
  border: 1px dashed #cdf1d8;
  padding: 30px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.single-iot-box h3 {
  font-size: 18px;
  margin-top: 22px;
  margin-bottom: 17px;
}
.single-iot-box p {
  margin-bottom: 25px;
}
.single-iot-box a {
  width: 40px;
  background-color: #eef0f3;
  height: 40px;
  line-height: 40px;
  color: #0e314c;
  border-radius: 50%;
}
.single-iot-box a svg {
  width: 18px;
}
.single-iot-box .icon {
  display: inline-block;
  border: 1px solid #f3f8fd;
  width: 100px;
  height: 100px;
  line-height: 96px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.single-iot-box .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  background: #f7fafd;
  border-radius: 50%;
  margin: 6px;
  transition: 0.5s;
}
.single-iot-box .icon i:before {
  font-size: 35px;
}
.single-iot-box .icon img {
  width: 45px;
}
.single-iot-box:focus,
.single-iot-box:hover {
  border-color: #0f1b41;
}
.single-iot-box:focus a,
.single-iot-box:hover a {
  background-color: #0f1b41;
  color: #fff;
}
.footer-area {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
.footer-area .map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: -1;
  bottom: 0;
  opacity: 0.7;
}
.single-footer-widget .logo {
  margin-bottom: 20px;
  width: 180px;
}
.single-footer-widget .logo a {
  display: inline-block;
}
.single-footer-widget h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.single-footer-widget ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.single-footer-widget ul.list li {
  margin-bottom: 10px;
}
.single-footer-widget ul.list li a {
  color: #6084a4;
}
.single-footer-widget ul.list li a:hover {
  color: #0f1b41;
  padding-left: 7px;
}
.single-footer-widget ul.list li:last-child {
  margin-bottom: 0;
}
.single-footer-widget ul.footer-contact-info {
  margin-bottom: 20px;
}
.single-footer-widget ul.footer-contact-info li {
  position: relative;
  color: #6084a4;
  margin-bottom: 8px;
  padding-left: 25px;
}
.single-footer-widget ul.footer-contact-info li svg {
  position: absolute;
  left: 0;
  width: 15px;
  top: 0;
}
.single-footer-widget ul.footer-contact-info li:last-child {
  margin-bottom: 0;
}
.single-footer-widget ul.footer-contact-info li a {
  color: #6084a4;
}
.single-footer-widget ul.footer-contact-info li a:hover {
  color: #0f1b41;
}
.single-footer-widget ul.social-links li {
  display: inline-block;
  margin-right: 6px;
}
.single-footer-widget ul.social-links li a {
  width: 32px;
  text-align: center;
  line-height: 27px;
  height: 32px;
  border: 1px solid #0f1b41;
  border-radius: 50%;
  color: #0f1b41;
}
.single-footer-widget ul.social-links li a svg {
  width: 15px;
}
.single-footer-widget ul.social-links li a.whatsapp {
  border: none;
}
.single-footer-widget ul.social-links li a.whatsapp:hover {
  background: transparent;
  color: transparent;
}
.single-footer-widget ul.social-links li a.facebook {
  border-color: #4267b2;
  color: #4267b2;
}
.single-footer-widget ul.social-links li a.facebook:hover {
  background: #4267b2;
  color: #fff;
}
.single-footer-widget ul.social-links li a.twitter {
  border-color: #38a1f3;
  color: #38a1f3;
}
.single-footer-widget ul.social-links li a.twitter:hover {
  background: #38a1f3;
  color: #fff;
}
.single-footer-widget ul.social-links li a.linkedin {
  border-color: #0077b5;
  color: #0077b5;
}
.single-footer-widget ul.social-links li a.linkedin:hover {
  background: #0077b5;
  color: #fff;
}
.single-footer-widget ul.social-links li a.instagram {
  border-color: #231f20;
  color: #231f20;
}
.single-footer-widget ul.social-links li a.instagram:hover {
  background: #231f20;
  color: #fff;
}
.single-footer-widget ul.social-links li a:hover {
  background: #0f1b41;
  color: #fff;
}
.copyright-area {
  margin-top: 80px;
  border-top: 1px solid #d8ebfd;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 30px;
  right: 0;
  color: #fff;
  background-color: #db3235;
  z-index: 1;
  width: 45px;
  text-align: center;
  height: 45px;
  border-radius: 10px 0 0 10px;
  line-height: 46px;
  transition: 0.5s;
}
.go-top:hover {
  color: #fff;
  background: #0f1b41;
}
.thank-you-area {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 150px;
}
.thank-you-area h1 {
  margin-bottom: 15px;
}
.ml-main-banner {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 140px;
  background-image: url(/home/static/banner-bg-dec701e1156d74d343e7992e5e193a99.jpg);
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.ml-main-banner .container-fluid {
  padding-left: 70px;
  padding-right: 70px;
}
.ml-banner-content h1 {
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 500;
}
.ml-banner-content p {
  font-size: 15px;
  max-width: 490px;
}
.ml-banner-content .btn {
  margin-top: 5px;
}
.ml-banner-single-image {
  text-align: center;
}
.ml-main-section {
  position: relative;
  z-index: 1;
  padding-top: 260px;
  padding-bottom: 240px;
  background-image: url(/home/static/banner-bg-dec701e1156d74d343e7992e5e193a99.jpg);
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.ml-main-section .ml-banner-content h1 {
  font-size: 37px;
}
.ml-main-section .ml-banner-content p {
  max-width: 100%;
}
.ml-banner-image {
  position: relative;
  width: 100%;
  height: 100%;
  top: 140px;
}
.ml-banner-image img {
  position: absolute;
}
.ml-banner-image img:first-child {
  left: 195px;
  top: -125px;
  z-index: 2;
}
.ml-banner-image img:nth-child(2) {
  top: -83px;
  left: 153px;
  z-index: 1;
}
.ml-banner-image img:nth-child(3) {
  top: 40px;
  left: 90px;
}
.ml-banner-image img:nth-child(4) {
  top: 0;
  right: 165px;
  z-index: 3;
}
.ml-banner-image img:nth-child(5) {
  top: -260px;
  left: 110px;
}
.ml-banner-image img:nth-child(6) {
  right: 130px;
  top: -240px;
}
.ml-banner-image img:nth-child(7) {
  bottom: 0;
  right: 0;
  z-index: 2;
}
.ml-banner-image img:nth-child(8) {
  right: 10px;
  bottom: 205px;
  z-index: 1;
}
.ml-banner-image img:nth-child(9) {
  left: 15px;
  top: -185px;
  z-index: 1;
}
.ml-banner-image img:nth-child(10) {
  left: 1px;
  bottom: -2px;
  z-index: 2;
}
.ml-banner-image img:nth-child(11) {
  left: 0;
  top: -20px;
}
.ml-banner-image img:nth-child(12) {
  display: none;
}
.ml-partner-area.mt-minus-top {
  margin-top: -80px;
}
.single-ml-partner {
  text-align: center;
}
.single-ml-partner a {
  display: block;
  position: relative;
}
.single-ml-partner a img {
  width: auto !important;
  display: inline-block !important;
}
.single-ml-partner a img:last-child {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.single-ml-partner a:focus img:last-child,
.single-ml-partner a:hover img:last-child {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.solutions-area {
  padding-bottom: 50px;
  position: relative;
  z-index: 5;
}
.single-solutions-box {
  padding: 20px 15px;
  text-align: center;
  transition: 0.5s;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  border: 1px solid #c5fffd;
  border-radius: 5px;
}
.single-solutions-box .icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.single-solutions-box .icon img {
  transition: 0.5s;
}
.single-solutions-box .icon:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  background: #f0fdfe;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.09);
  border-radius: 30% 70% 70% 30%/40% 60% 40% 60%;
  width: 60px;
  height: 60px;
}
.single-solutions-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.single-solutions-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  background: linear-gradient(
    to right top,
    #d5fefd,
    #e0fdff,
    #effbff,
    #fbfaff,
    #fffcff
  );
}
.single-solutions-box .learn-more-btn {
  color: #365267;
  font-size: 14px;
  font-weight: 600;
}
.single-solutions-box .learn-more-btn svg {
  width: 18px;
  position: relative;
  top: -1px;
  margin-right: 3px;
}
.single-solutions-box .learn-more-btn:hover {
  color: #0f1b41;
}
.single-solutions-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-solutions-box:hover .icon img {
  transform: rotateY(-1turn);
}
.about-area {
  position: relative;
  z-index: 1;
}
.ml-about-img {
  text-align: center;
}
.ml-about-content {
  max-width: 540px;
}
.ml-about-content .sub-title {
  display: inline-block;
  color: #db3235;
  background-color: #f5dffd;
  margin-bottom: 18px;
  border-radius: 30px;
  padding: 5px 20px 4px;
  font-size: 13px;
}
.ml-about-content h2 {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
}
.ml-about-content .bar {
  height: 5px;
  width: 90px;
  background: #cdf1d8;
  margin: 20px 0;
  position: relative;
  border-radius: 30px;
}
.ml-about-content .bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #0f1b41;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}
.ml-about-content p {
  margin-bottom: 12px;
}
.ml-about-content .btn {
  margin-top: 10px;
}
.ml-services-area {
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  background: #f7fafd;
}
.single-ml-services-box {
  position: relative;
  z-index: 1;
  background-color: #fff;
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 25px;
  overflow: hidden;
  transition: 0.5s;
  height: 100%;
}
.single-ml-services-box .image {
  margin-bottom: 25px;
}
.single-ml-services-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.single-ml-services-box p {
  margin-bottom: 0;
}
.single-ml-services-box:before {
  content: "";
  position: absolute;
  left: -15px;
  bottom: -15px;
  width: 30px;
  height: 30px;
  transition: 0.5s;
  transform: rotate(45deg);
  background: #0f1b41;
  visibility: hidden;
  opacity: 0;
}
.single-ml-services-box:hover:before {
  opacity: 1;
  visibility: visible;
}
.ml-feedback-area {
  background: linear-gradient(
    to right top,
    #d5fefd,
    #e0fdff,
    #effbff,
    #fbfaff,
    #fffcff
  );
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.single-ml-feedback-item {
  box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.04);
  margin-bottom: 45px;
  background-color: #fff;
  position: relative;
  padding: 60px 70px 60px 190px;
  border-radius: 5px;
}
.single-ml-feedback-item .client-info {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.single-ml-feedback-item .client-info img {
  border-radius: 5px;
  border: 2px solid #f4f5fe;
  width: 80px !important;
  height: 80px !important;
  padding: 5px;
  display: inline-block !important;
}
.single-ml-feedback-item .client-info h3 {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 17px;
}
.single-ml-feedback-item .client-info span {
  display: block;
  color: #db3235;
  margin-top: 5px;
  font-size: 13px;
}
.single-ml-feedback-item p {
  margin-bottom: 0;
  color: #4a6f8a;
}
.single-ml-feedback-item .rating {
  margin-top: 10px;
}
.single-ml-feedback-item .rating svg {
  color: #ff612f;
  width: 18px;
}
.single-ml-feedback-item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 5px;
  bottom: -15px;
  background-color: #fff;
  box-shadow: 0 15px 10px -15px rgba(0, 0, 0, 0.04);
  z-index: -1;
  margin-left: 30px;
  margin-right: 30px;
}
.ml-feedback-slides {
  max-width: 750px;
  margin: -40px auto 0;
}
.ml-feedback-slides .single-ml-feedback-item {
  margin-top: 40px;
}
.ml-feedback-slides .owl-item {
  padding-left: 50px;
  padding-right: 50px;
}
.ml-feedback-slides .owl-dots {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.ml-feedback-slides .owl-dots .owl-dot {
  display: inline-block;
}
.ml-feedback-slides .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  background: transparent;
  transition: 0.5s;
  border: 1px solid #8d95a7;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.ml-feedback-slides .owl-dots .owl-dot span:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #0f1b41;
  margin: 2px;
  content: "";
  transition: 0.5s;
  border-radius: 50%;
  transform: scale(0);
}
.ml-feedback-slides .owl-dots .owl-dot.active span,
.ml-feedback-slides .owl-dots .owl-dot:hover span {
  border-color: #0f1b41;
  background-color: transparent;
}
.ml-feedback-slides .owl-dots .owl-dot.active span:before,
.ml-feedback-slides .owl-dots .owl-dot:hover span:before {
  transform: scale(1);
}
.free-trial-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.free-trial-area.bg-ffffff:before {
  background: transparent;
}
.free-trial-area:before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  left: -30%;
  top: 0;
  background: linear-gradient(90deg, #d5fefd, #e1fdff, #effdff, #fafdff, #fff);
}
.free-trial-area .shape6 {
  top: 75%;
}
.free-trial-image {
  text-align: center;
}
.free-trial-content {
  max-width: 540px;
}
.free-trial-content .box img {
  margin-right: 5px;
  display: inline-block;
  color: #db3235;
  transition: 0.5s;
  width: 18px;
}
.free-trial-content .d-flex img {
  max-width: 80px;
  border: 4px solid #ffdc56;
}
.free-trial-content h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
}
.free-trial-content form {
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
}
.free-trial-content form .input-newsletter {
  display: block;
  width: 99%;
  height: 50px;
  color: #fff;
  border: none;
  outline: 0;
  background-color: #0e314c;
  border-radius: 30px;
  padding-top: 3px;
  padding-left: 20px;
}
.free-trial-content form .input-newsletter::-webkit-input-placeholder {
  color: #d5d5d5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.free-trial-content form .input-newsletter:-ms-input-placeholder {
  color: #d5d5d5;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.free-trial-content form .input-newsletter::-ms-input-placeholder {
  color: #d5d5d5;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.free-trial-content form .input-newsletter::placeholder {
  color: #d5d5d5;
  transition: 0.5s;
}
.free-trial-content form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}
.free-trial-content form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}
.free-trial-content form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}
.free-trial-content form .input-newsletter:focus::placeholder {
  color: transparent;
}
.free-trial-content form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  cursor: pointer;
  border: none;
  padding: 0 30px;
  line-height: 50px;
  background-color: #0f1b41;
  border-radius: 0 30px 30px 0;
  transition: 0.5s;
  color: #fff;
  font-size: 16px;
}
.free-trial-content form button:hover {
  background-color: #db3235;
  color: #fff;
}
.free-trial-content p {
  margin-bottom: 0;
}
.ml-projects-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 50px;
}
.ml-projects-area .section-title {
  text-align: left;
  max-width: 530px;
}
.ml-projects-area .section-title h2 {
  max-width: 470px;
  line-height: 1.3;
}
.ml-projects-area .section-title .bar {
  margin-left: 0;
  margin-right: 0;
}
.ml-projects-area .container-fluid {
  position: relative;
}
.single-ml-projects-box {
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175);
  background-color: #fff;
}
.single-ml-projects-box img {
  border-radius: 5px;
}
.single-ml-projects-box .plus-icon a {
  background-color: #0f1b41;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 20px;
  right: 20px;
  transform: scale(0);
  transition: all 0.4s ease-out 0s;
  overflow: hidden;
  border-radius: 50%;
}
.single-ml-projects-box .plus-icon a span {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single-ml-projects-box .plus-icon a span:after,
.single-ml-projects-box .plus-icon a span:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single-ml-projects-box .plus-icon a span:after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.single-ml-projects-box .plus-icon a:hover {
  background-color: #db3235;
}
.single-ml-projects-box:hover .plus-icon a {
  transform: scale(1);
}
.ml-projects-slides .owl-dots {
  position: absolute;
  right: 12.5%;
  top: -100px;
  z-index: 1;
  margin-top: 0;
}
.ml-projects-slides .owl-dots:before {
  content: "";
  position: absolute;
  left: -20px;
  top: -30px;
  background: linear-gradient(
    to left bottom,
    #dee4f3,
    #e7eaf6,
    #f0f1f9,
    #f8f8fc,
    #fff
  );
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
  width: 80px;
  height: 70px;
  z-index: -1;
}
.ml-projects-slides .owl-dots .owl-dot {
  display: inline-block;
}
.ml-projects-slides .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 3px;
  background: transparent;
  transition: 0.5s;
  border: 1px solid #8d95a7;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.ml-projects-slides .owl-dots .owl-dot span:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #0f1b41;
  margin: 2px;
  content: "";
  transition: 0.5s;
  border-radius: 50%;
  transform: scale(0);
}
.ml-projects-slides .owl-dots .owl-dot.active span,
.ml-projects-slides .owl-dots .owl-dot:hover span {
  border-color: #0f1b41;
  background-color: transparent;
}
.ml-projects-slides .owl-dots .owl-dot.active span:before,
.ml-projects-slides .owl-dots .owl-dot:hover span:before {
  transform: scale(1);
}
.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
}
.tab .tabs_item:nth-child(2) .pricing-box {
  background: linear-gradient(
    to right top,
    #fffcff,
    #fbfaff,
    #effbff,
    #e0fdff,
    #d5fefd
  );
}
.pricing-tab .tabs {
  padding-left: 0;
  margin-bottom: 45px;
  list-style-type: none;
  text-align: center;
}
.pricing-tab .tabs li {
  display: inline-block;
}
.pricing-tab .tabs li a {
  padding: 10px 30px 9.5px;
  margin-left: -2px;
  margin-right: -2px;
  font-weight: 500;
  font-size: 15px;
}
.pricing-tab .tabs li a,
.pricing-tab .tabs li a:hover {
  background: linear-gradient(
    to left bottom,
    #fffcff,
    #fbfaff,
    #effbff,
    #e0fdff,
    #d5fefd
  );
}
.pricing-tab .tabs li a:hover {
  color: #0e314c;
}
.pricing-tab .tabs li.current a {
  color: #fff;
  background: #0e314c;
}
.pricing-tab .tabs li:first-child a,
.pricing-tab .tabs li:first-child a:before {
  border-radius: 5px 0 0 5px;
}
.pricing-tab .tabs li:nth-child(2) a,
.pricing-tab .tabs li:nth-child(2) a:before {
  border-radius: 0 5px 5px 0;
}
.pricing-box {
  background: linear-gradient(
    to left bottom,
    #fffcff,
    #fbfaff,
    #effbff,
    #e0fdff,
    #d5fefd
  );
  text-align: center;
  padding: 30px;
  transition: 0.5s;
  border-radius: 5px;
}
.pricing-box .pricing-header h3 {
  margin-bottom: 0;
  font-size: 20px;
}
.pricing-box .pricing-header p {
  transition: 0.5s;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 0;
}
.pricing-box .price {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 20px;
}
.pricing-box .price span {
  display: inline-block;
  margin-left: -7px;
  font-size: 20px;
  font-weight: 600;
}
.pricing-box .buy-btn {
  margin-bottom: 30px;
}
.pricing-box .buy-btn .btn {
  box-shadow: unset !important;
  transform: unset !important;
}
.pricing-box .buy-btn .btn-primary {
  border-radius: 30px;
  background: linear-gradient(
    to right top,
    #a3a3a3,
    #9a9a9a,
    #909090,
    #878787,
    #7e7e7e
  );
  text-transform: capitalize;
  padding: 11px 30px;
  font-weight: 500;
}
.pricing-box .buy-btn .btn-primary:after {
  border-radius: 30px;
  background: #0f1b41;
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.pricing-box .buy-btn .btn-primary:before {
  display: none;
}
.pricing-box
  .buy-btn
  .btn-primary
  .show
  > .pricing-box
  .buy-btn
  .btn-primary.dropdown-toggle,
.pricing-box .buy-btn .btn-primary:not(:disabled):not(.disabled).active,
.pricing-box .buy-btn .btn-primary:not(:disabled):not(.disabled):active {
  background: linear-gradient(
    to right top,
    #a3a3a3,
    #9a9a9a,
    #909090,
    #878787,
    #7e7e7e
  );
}
.pricing-box .buy-btn .btn-primary:focus:after,
.pricing-box .buy-btn .btn-primary:hover:after {
  opacity: 0;
  visibility: hidden;
}
.pricing-box .pricing-features {
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
.pricing-box .pricing-features li {
  margin-bottom: 12px;
  color: #495771;
  position: relative;
  padding-left: 27px;
}
.pricing-box .pricing-features li:last-child {
  margin-bottom: 0;
}
.pricing-box .pricing-features li svg {
  color: #0f1b41;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.single-blog-post-box {
  margin-bottom: 30px;
  transition: 0.5s;
  border-radius: 5px;
  height: 100%;
}
.single-blog-post-box .entry-thumbnail a img {
  border-radius: 5px 5px 0 0;
}
.single-blog-post-box .entry-post-content {
  background: linear-gradient(
    to right top,
    #d5fefd,
    #e0fdff,
    #effbff,
    #fbfaff,
    #fffcff
  );
  padding: 20px;
}
.single-blog-post-box .entry-post-content .entry-meta {
  margin-bottom: 10px;
}
.single-blog-post-box .entry-post-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-blog-post-box .entry-post-content .entry-meta ul li {
  display: inline-block;
  position: relative;
  margin-right: 12px;
  color: #6084a4;
  font-size: 14px;
}
.single-blog-post-box .entry-post-content .entry-meta ul li:before {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: rotate(14deg) translateY(-50%);
  background: #6084a4;
  width: 1px;
  height: 13px;
}
.single-blog-post-box .entry-post-content .entry-meta ul li a {
  display: inline-block;
  color: #6084a4;
}
.single-blog-post-box .entry-post-content .entry-meta ul li a:hover {
  color: #0f1b41;
}
.single-blog-post-box .entry-post-content .entry-meta ul li:last-child {
  margin-right: 0;
}
.single-blog-post-box .entry-post-content .entry-meta ul li:last-child:before {
  display: none;
}
.single-blog-post-box .entry-post-content h3 {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 18px;
}
.single-blog-post-box .entry-post-content p {
  margin-top: 8px;
  margin-bottom: 0;
}
.single-blog-post-box .entry-post-content .learn-more-btn {
  margin-top: 15px;
  font-weight: 600;
}
.single-blog-post-box .entry-post-content .learn-more-btn svg {
  width: 15px;
}
.st-fs-28 h2 {
  font-size: 28px;
}
.agency-main-banner {
  position: relative;
  z-index: 1;
}
.agency-main-banner .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.agency-main-banner .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.agency-main-banner .container-fluid .row .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
.agency-main-banner .shape2 {
  left: 5%;
}
.agency-main-banner .shape4,
.agency-main-banner .shape8 {
  right: 50%;
}
.agency-banner-content {
  margin-left: auto;
  max-width: 650px;
}
.agency-banner-content .sub-title {
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  color: #6084a4;
  margin-bottom: 8px;
}
.agency-banner-content h1 {
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 50px;
  font-weight: 500;
}
.agency-banner-content p {
  font-size: 15px;
  max-width: 450px;
}
.agency-banner-content .btn {
  margin-top: 5px;
}
.agency-banner-image {
  text-align: right;
}
.solutions-area .shape2 {
  left: 5%;
}
.solutions-box {
  transition: 0.5s;
}
.solutions-box,
.solutions-box .icon {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.solutions-box .icon {
  color: #0f1b41;
  padding-left: 20px;
}
.solutions-box .icon i {
  font-size: 45px;
}
.solutions-box .icon img {
  position: absolute;
  left: 0;
  z-index: -1;
  top: -25px;
}
.solutions-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.solutions-box .learn-more-btn {
  color: #365267;
  font-size: 14px;
  font-weight: 500;
}
.solutions-box .learn-more-btn svg {
  width: 18px;
  position: relative;
  top: -1px;
  margin-right: 3px;
}
.solutions-box .learn-more-btn:hover {
  color: #0f1b41;
}
.agency-about-area {
  position: relative;
  z-index: 1;
}
.agency-about-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.agency-about-area .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.agency-about-area .container-fluid .row .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}
.agency-about-img {
  padding-right: 100px;
}
.agency-about-img img {
  width: 100%;
}
.agency-about-content {
  max-width: 540px;
}
.agency-about-content .sub-title {
  display: inline-block;
  color: #db3235;
  background-color: #f5dffd;
  margin-bottom: 18px;
  border-radius: 30px;
  padding: 5px 20px 4px;
  font-size: 13px;
}
.agency-about-content h2 {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
}
.agency-about-content .bar {
  height: 5px;
  width: 90px;
  background: #cdf1d8;
  margin: 20px 0;
  position: relative;
  border-radius: 30px;
}
.agency-about-content .bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #0f1b41;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}
.agency-about-content p {
  margin-bottom: 12px;
}
.agency-about-content .btn {
  margin-top: 10px;
}
.shape10 {
  position: absolute;
  right: 0;
  top: -40%;
  z-index: -1;
}
.agency-services-area {
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, #d5fefd, #e1fdff, #effdff, #fafdff, #fff);
}
.agency-services-box {
  margin-bottom: 30px;
  text-align: center;
  width: 255px;
  height: 208px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.agency-services-box img {
  border-radius: 7px;
  max-width: 60%;
}
.agency-services-box .content {
  transition: 0.5s;
  background: #0f1b41;
  position: relative;
  border-radius: 7px;
  padding: 8px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  margin-top: -30px;
}
.agency-services-box .content h5 {
  margin-bottom: 0;
  color: #fff;
}
.agency-services-box .content h3 {
  transition: 0.5s;
  font-size: 20px;
  margin-bottom: 0;
}
.agency-services-box .content .read-more-btn {
  display: inline-block;
  border-radius: 30px;
  padding: 9px 25px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  position: absolute;
  transition: 0.5s;
  left: 50%;
  transform: translateX(-50%);
  bottom: -22px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  font-weight: 500;
}
.agency-services-box .content .read-more-btn svg {
  width: 15px;
  margin-left: 2px;
}
.agency-services-box .content .read-more-btn:hover {
  background-color: #0f1b41;
  border-color: #0f1b41;
  color: #fff;
}
.agency-services-box:hover .content {
  transform: translateY(-20px);
}
.agency-services-box:hover .content h3 {
  transform: translateY(-10px);
}
.agency-services-box:hover .content .read-more-btn {
  opacity: 1;
  visibility: visible;
}
.single-testimonials-item {
  box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.04);
  margin-bottom: 45px;
  background-color: #fff;
  position: relative;
  padding: 110px 65px 60px;
  border-radius: 5px;
  text-align: center;
}
.single-testimonials-item p {
  margin-bottom: 0;
  color: #4a6f8a;
  font-size: 15px;
}
.single-testimonials-item .client-info {
  text-align: left;
  position: relative;
  padding-left: 95px;
  margin-top: 25px;
  max-width: 235px;
  margin-left: auto;
  margin-right: auto;
}
.single-testimonials-item .client-info img {
  border-radius: 5px;
  border: 2px solid #f4f5fe;
  width: 80px !important;
  height: 80px !important;
  padding: 5px;
  display: inline-block !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-testimonials-item .client-info .rating svg {
  color: #ff612f;
  width: 16px;
}
.single-testimonials-item .client-info h3 {
  margin-bottom: 0;
  margin-top: 8px;
  font-size: 17px;
}
.single-testimonials-item .client-info span {
  display: block;
  color: #db3235;
  margin-top: 5px;
  font-size: 13px;
}
.single-testimonials-item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 5px;
  bottom: -15px;
  background-color: #fff;
  box-shadow: 0 15px 10px -15px rgba(0, 0, 0, 0.04);
  z-index: -1;
  margin-left: 30px;
  margin-right: 30px;
}
.single-testimonials-item:before {
  content: "\F11B";
  color: #d9dcde;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: Flaticon;
  font-style: normal;
  font-size: 65px;
}
.ml-feedback-slides .single-testimonials-item {
  margin-top: 40px;
}
.user-shape1 {
  top: 12%;
  left: 10%;
  animation: movebounce 9s linear infinite;
}
.user-shape1,
.user-shape2 {
  position: absolute;
  z-index: -1;
}
.user-shape2 {
  left: 7%;
  animation: moveleftbounce 7s linear infinite;
  top: 47%;
}
.user-shape3 {
  bottom: 12%;
  left: 15%;
  animation: movebounce 5s linear infinite;
}
.user-shape3,
.user-shape4 {
  position: absolute;
  z-index: -1;
}
.user-shape4 {
  top: 12%;
  right: 10%;
  animation: movebounce 9s linear infinite;
}
.user-shape5 {
  right: 7%;
  top: 45%;
  animation: moveleftbounce 7s linear infinite;
}
.user-shape5,
.user-shape6 {
  position: absolute;
  z-index: -1;
}
.user-shape6 {
  bottom: 12%;
  right: 15%;
  animation: movebounce 5s linear infinite;
}
.shape9 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.shape9 img {
  animation: movebounce 5s linear infinite;
}
.single-blog-post-item {
  margin-bottom: 30px;
}
.single-blog-post-item .post-image {
  border-radius: 5px;
  overflow: hidden;
}
.single-blog-post-item .post-image a {
  display: block;
  border-radius: 5px;
}
.single-blog-post-item .post-image a img {
  border-radius: 5px;
}
.single-blog-post-item .post-content {
  transition: 0.5s;
  background: linear-gradient(
    to right top,
    #d5fefd,
    #e0fdff,
    #effbff,
    #fbfaff,
    #fffcff
  );
  position: relative;
  border-radius: 5px;
  padding: 30px 25px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -30px;
}
.single-blog-post-item .post-content .post-meta {
  transition: 0.5s;
  margin-bottom: 10px;
  list-style-type: none;
  padding-left: 0;
}
.single-blog-post-item .post-content .post-meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  color: #6084a4;
}
.single-blog-post-item .post-content .post-meta li a {
  color: #6084a4;
}
.single-blog-post-item .post-content .post-meta li a:hover {
  color: #0f1b41;
}
.single-blog-post-item .post-content .post-meta li:before {
  content: "";
  position: absolute;
  right: -10px;
  top: 4px;
  height: 12px;
  background-color: #6084a4;
  width: 1px;
  transform: rotate(5deg);
}
.single-blog-post-item .post-content .post-meta li:last-child {
  margin-right: 0;
}
.single-blog-post-item .post-content .post-meta li:last-child:before {
  display: none;
}
.single-blog-post-item .post-content h3 {
  transition: 0.5s;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
.single-blog-post-item .post-content .read-more-btn {
  display: inline-block;
  border-radius: 30px;
  padding: 9px 25px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  position: absolute;
  transition: 0.5s;
  left: 25px;
  bottom: -22px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  font-weight: 500;
}
.single-blog-post-item .post-content .read-more-btn svg {
  width: 15px;
  margin-left: 2px;
}
.single-blog-post-item .post-content .read-more-btn:hover {
  background-color: #0f1b41;
  border-color: #0f1b41;
  color: #fff;
}
.single-blog-post-item:hover .post-content {
  transform: translateY(-22px);
}
.single-blog-post-item:hover .post-content .post-meta,
.single-blog-post-item:hover .post-content h3 {
  transform: translateY(-12px);
}
.single-blog-post-item:hover .post-content .read-more-btn {
  opacity: 1;
  visibility: visible;
}
.agency-cta-area {
  position: relative;
  z-index: 1;
  background-image: url(/home/static/agency-gradient-bg-ca579877a3764ccff92d374d7265da86.jpg);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.agency-cta-content {
  text-align: center;
}
.agency-cta-content h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}
.btn-gradient {
  color: #fff;
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  box-shadow: unset !important;
  transform: unset !important;
}
.btn-gradient:after {
  display: none;
}
.btn-gradient:before {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  background: linear-gradient(135deg, #23bdb8, #43e794);
  left: 0;
  border-radius: 4px;
}
.btn-gradient:active,
.btn-gradient:focus,
.btn-gradient:hover {
  color: #fff;
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  box-shadow: unset !important;
}
.btn-gradient:active:before,
.btn-gradient:focus:before,
.btn-gradient:hover:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.btn-gradient .show > .btn-primary.dropdown-toggle,
.btn-gradient:not(:disabled):not(.disabled).active,
.btn-gradient:not(:disabled):not(.disabled):active {
  color: #fff;
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  box-shadow: unset !important;
}
.btn-gradient .show > .btn-primary.dropdown-toggle:before,
.btn-gradient:not(:disabled):not(.disabled).active:before,
.btn-gradient:not(:disabled):not(.disabled):active:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.btn-gradient.disabled,
.btn-gradient:disabled {
  color: #fff;
  background: linear-gradient(90deg, #ee0979, #ff6a00);
  box-shadow: unset !important;
}
.btn-gradient.disabled:before,
.btn-gradient:disabled:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .single-features {
    min-height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 13px;
    padding: 13px 33px;
  }
  .ptb-80 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title h2 {
    font-size: 20px;
  }
  .owl-theme .owl-dots {
    margin-top: 5px;
  }
  .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 3px;
  }
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(68, 206, 111, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .navbar-light .navbar-toggler {
    border-color: #44ce6f;
    outline: 0 !important;
    border-radius: 0;
  }
  .startp-nav nav .others-option {
    display: none;
  }
  .startp-nav nav .navbar-nav {
    overflow-y: scroll;
    height: 400px;
    display: block;
    background-color: #fff;
    margin-top: 15px;
  }
  .startp-nav nav .navbar-nav .nav-item {
    padding: 7px 0;
  }
  .startp-nav nav .navbar-nav .nav-item a {
    margin-left: 0;
    margin-right: 0;
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu {
    box-shadow: unset;
    position: relative;
    top: 0 !important;
    left: 0;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    padding: 0 10px;
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu li {
    border-left: 1px dashed #eee;
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu li a {
    padding: 7px 15px;
    font-size: 14px;
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu li a svg {
    transform: rotate(90deg);
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu {
    position: relative;
    top: 0 !important;
    left: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu li:hover .dropdown_menu,
  .startp-nav nav .navbar-nav .nav-item:hover .dropdown_menu {
    top: 0 !important;
  }
  .main-banner {
    height: 100%;
    background-position: 50%;
    padding-top: 150px;
    padding-bottom: 80px;
  }
  .main-banner .hero-content {
    margin-bottom: 45px;
  }
  .main-banner .hero-content h1 {
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 13px;
  }
  .main-banner .hero-content p {
    margin-bottom: 25px;
  }
  .main-banner .banner-image {
    text-align: center;
  }
  .main-banner .banner-image img {
    display: none;
    position: relative;
  }
  .main-banner .banner-image img:last-child {
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .main-banner .banner-form {
    padding: 30px 20px;
    margin: 0 !important;
  }
  .hosting-main-banner {
    height: 100%;
    padding-top: 100px;
    padding-bottom: 75px;
  }
  .hosting-main-banner .hosting-banner-content h1 {
    font-size: 25px;
  }
  .hosting-main-banner .hosting-banner-content ul li {
    font-size: 13px;
  }
  .hosting-main-banner .hosting-banner-content p {
    font-size: 16px;
    margin-bottom: 25px;
    margin-top: 20px;
  }
  .hosting-main-banner .hosting-banner-image {
    text-align: center;
    margin-top: 50px;
  }
  .hosting-main-banner .hosting-banner-image img {
    display: none;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(10) {
    display: block;
    position: relative;
  }
  .shape1,
  .shape2,
  .shape3,
  .shape4,
  .shape5 {
    display: none;
  }
  .boxes-area {
    margin-top: 0;
    padding-bottom: 20px;
  }
  .single-box {
    margin-bottom: 30px;
  }
  .single-box h3 {
    font-size: 17px;
  }
  .services-content .box {
    margin-top: 20px;
    padding: 14px 10px;
  }
  .services-right-image {
    text-align: center;
    margin-top: 45px;
  }
  .services-right-image img {
    display: none;
    position: relative;
  }
  .services-right-image img:last-child {
    display: inline-block;
  }
  .services-right-image.single-right-image img.bg-image {
    display: none;
  }
  .services-left-image {
    text-align: center;
    margin-bottom: 45px;
  }
  .services-left-image img {
    display: none;
    position: relative;
  }
  .services-left-image img:last-child {
    display: inline-block;
  }
  .services-left-image.single-left-image img.bg-image {
    display: none;
  }
  .services-area-two {
    padding-bottom: 20px;
  }
  .single-services-box h3 {
    font-size: 17px;
  }
  .services-details-area .separate {
    margin-top: 30px;
  }
  .services-details {
    order: 1;
  }
  .services-details-desc h3 {
    font-size: 18px;
  }
  .services-details-desc p {
    font-size: 13px;
  }
  .services-details-image {
    margin-top: 30px;
    order: 2;
  }
  .modal-content .products-content {
    padding: 20px;
  }
  .modal-content .products-image {
    text-align: right;
  }
  .modal-content .products-image img {
    width: auto;
  }
  .features-area {
    padding-bottom: 20px;
  }
  .single-features {
    padding-left: 20px;
    height: auto;
  }
  .single-features .icon {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 20px;
  }
  .single-features h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .team-area {
    padding-bottom: 20px;
  }
  .single-team {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .single-team .team-content,
  .single-team .team-image {
    padding-left: 20px;
    padding-right: 20px;
  }
  .single-team .team-content .team-info {
    margin-right: 10px;
    margin-left: 10px;
  }
  .single-team .team-content .team-info h3 {
    font-size: 17px;
  }
  .domain-search-content h2 {
    font-size: 20px;
  }
  .domain-search-content form {
    border-radius: 0;
  }
  .domain-search-content form .form-control {
    width: 75%;
  }
  .domain-search-content form .domain-select {
    width: 25%;
    padding-right: 0;
  }
  .domain-search-content form button {
    float: unset;
    width: unset;
    height: unset;
    padding: 13px 40px;
  }
  .domain-search-content ul {
    display: block;
    margin-top: 15px;
  }
  .domain-search-content ul li {
    display: inline-block;
    flex: unset;
    padding: 0 15px;
    margin-top: 15px;
  }
  .why-choose-us-image {
    margin-bottom: 15px;
  }
  .why-choose-us-image img {
    display: none;
  }
  .why-choose-us-image img:last-child {
    display: block;
  }
  .single-why-choose-us {
    margin-top: 30px !important;
  }
  .single-why-choose-us .icon i:before {
    font-size: 35px;
  }
  .single-why-choose-us h3 {
    font-size: 17px;
  }
  .funfact {
    margin-bottom: 30px;
  }
  .funfact h3 {
    font-size: 25px;
    margin-bottom: 3px;
  }
  .contact-cta-box {
    margin: 20px auto 0;
    padding: 30px 20px;
    text-align: center;
  }
  .contact-cta-box h3 {
    font-size: 20px;
  }
  .contact-cta-box .btn {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 15px;
  }
  .works-area {
    padding-bottom: 20px;
  }
  .single-works .icon {
    right: 5px;
    width: 38px;
    height: 38px;
    line-height: 36px;
  }
  .single-works .icon svg {
    width: 15px;
  }
  .single-works .works-content {
    padding: 15px;
  }
  .single-works .works-content h3 {
    font-size: 17px;
  }
  .single-works:hover .icon {
    top: 5px;
  }
  .pricing-area {
    padding-bottom: 20px;
  }
  .pricing-table {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .pricing-table .pricing-header h3 {
    font-size: 17px;
  }
  .pricing-table .price {
    margin-bottom: 25px;
  }
  .pricing-table .price span {
    font-size: 27px;
  }
  .single-pricing-table {
    padding: 30px;
    margin-bottom: 30px;
  }
  .single-pricing-table .pricing-header h3 {
    font-size: 17px;
  }
  .single-pricing-table .pricing-header i:before {
    font-size: 40px;
  }
  .single-pricing-table .price span {
    font-size: 27px;
  }
  .feedback-slides .client-feedback .single-feedback {
    margin-bottom: 30px;
    text-align: center;
    padding: 30px 20px;
  }
  .feedback-slides .client-feedback .single-feedback .client-img {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 20px;
  }
  .feedback-slides .client-feedback .single-feedback .client-img img {
    display: inline-block;
  }
  .feedback-slides .client-feedback .single-feedback h3 {
    font-size: 17px;
  }
  .feedback-slides .client-feedback .single-feedback p {
    font-size: 14px;
  }
  .feedback-slides .client-feedback .single-feedback:before {
    display: none;
  }
  .feedback-slides .client-thumbnails {
    margin: 0;
  }
  .feedback-slides .client-thumbnails .next-arrow {
    right: 0;
  }
  .feedback-slides .client-thumbnails .prev-arrow {
    left: 0;
  }
  .feedback-slides .client-thumbnails .next-arrow,
  .feedback-slides .client-thumbnails .prev-arrow {
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
  }
  .testimonials-slides:after,
  .testimonials-slides:before {
    display: none;
  }
  .single-feedback-item {
    padding: 40px 20px 90px;
  }
  .single-feedback-item:before {
    font-size: 30px;
    left: 15px;
  }
  .ready-to-talk {
    padding-top: 50px;
    padding-bottom: 145px;
  }
  .ready-to-talk span {
    display: block;
    margin-top: 25px;
  }
  .ready-to-talk h3 {
    font-size: 20px;
  }
  .partner-section .partner-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .partner-section h5 {
    font-size: 17px;
    line-height: 23px;
  }
  .blog-area {
    padding-bottom: 20px;
  }
  .single-blog-post .blog-image img {
    width: 100%;
  }
  .single-blog-post .blog-post-content h3 {
    font-size: 17px;
  }
  .page-title-area {
    padding-top: 150px;
    padding-bottom: 65px;
  }
  .page-title-area .shape8 {
    top: auto;
    right: auto;
    left: 15px;
    bottom: 20px;
  }
  .page-title-area .shape7 {
    left: 15%;
    top: 29%;
  }
  .about-image {
    margin-bottom: 45px;
  }
  .about-inner-area {
    margin-top: 0;
  }
  .about-inner-area .about-text {
    margin-top: 30px;
  }
  .about-inner-area .about-text h3 {
    font-size: 17px;
  }
  .project-details-desc h3 {
    font-size: 17px;
    margin-top: 0;
  }
  .project-details-desc p {
    font-size: 13px;
  }
  .project-details-desc .project-details-information .single-info-box {
    float: left;
    width: 50%;
    margin-top: 20px;
  }
  .project-details-desc .project-details-information .single-info-box h4 {
    font-size: 17px;
  }
  .products-details {
    margin-top: 30px;
  }
  .products-details-tabs #tabs li {
    margin-bottom: 5px;
  }
  .products-details-tabs #tabs li:last-child {
    margin-bottom: 0;
  }
  .products-details-tabs .content p {
    font-size: 13px;
  }
  .faq-accordion {
    padding: 30px 20px;
  }
  .faq-accordion .accordion .accordion-item .accordion-title {
    padding: 10px;
    font-size: 15px;
  }
  .faq-contact {
    padding: 30px 20px;
  }
  .faq-contact h3 {
    font-size: 20px;
  }
  .pagination-area {
    margin-top: 25px;
  }
  .blog-details-area .blog-details .article-img .date {
    width: 80px;
    height: 80px;
    font-size: 20px;
    padding-top: 16px;
    line-height: 23px;
  }
  .blog-details-area .blog-details .article-content {
    padding: 30px 20px;
  }
  .blog-details-area .blog-details .article-content ul li {
    margin-bottom: 5px;
  }
  .blog-details-area .blog-details .article-content ul.category {
    margin-bottom: 20px;
  }
  .blog-details-area .blog-details .article-content h3 {
    font-size: 17px;
    line-height: 29px;
  }
  .blog-details-area .blog-details .article-content p {
    margin-top: 16px;
  }
  .blog-details-area .blog-details .article-content .blockquote {
    padding: 18px;
  }
  .blog-details-area .blog-details .article-content .blockquote p {
    font-size: 14px;
  }
  .blog-details-area .blog-details .article-content .share-post ul li a {
    line-height: 35px;
  }
  .blog-details-area .post-comments,
  .blog-details-area .post-controls-buttons {
    padding: 30px 20px;
  }
  .blog-details-area .post-comments h3 {
    font-size: 17px;
  }
  .blog-details-area .post-comments .single-comment {
    padding-left: 0;
  }
  .blog-details-area .post-comments .single-comment .comment-img {
    position: relative;
    margin-bottom: 25px;
  }
  .blog-details-area .post-comments .single-comment.left-m {
    margin-left: 20px;
  }
  .blog-details-area .leave-a-reply {
    padding: 30px 20px;
  }
  .blog-details-area .leave-a-reply h3 {
    font-size: 17px;
  }
  .contact-info-area {
    padding-bottom: 20px;
  }
  .contact-info-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .contact-info-box h3 {
    font-size: 17px;
  }
  #contactForm {
    margin-top: 45px;
  }
  .coming-soon-area {
    height: 100%;
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .coming-soon-area .social-list {
    bottom: 20px;
  }
  .coming-soon-content h1 {
    font-size: 30px;
  }
  .coming-soon-content p {
    font-size: 14px;
  }
  .coming-soon-content form .submit-btn {
    position: relative;
    right: 0;
    top: 0;
    height: 45px;
    border-radius: 40px;
    width: 130px;
    font-size: 14px;
    margin-top: 18px;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1),
      0 0 0 4px hsla(0, 0%, 100%, 0.3);
  }
  .coming-soon-content #timer div {
    width: 100px;
    height: 100px;
    padding-top: 18px;
    font-size: 30px;
    margin: 0 10px 25px;
  }
  .coming-soon-content #timer div span {
    font-size: 13px;
  }
  .error-content {
    margin-top: 0;
  }
  .error-content .notfound-404 {
    height: 95px;
    margin-bottom: 25px;
  }
  .error-content .notfound-404 h1 {
    font-size: 75px;
  }
  .error-content h3 {
    font-size: 19px;
    margin-bottom: 15px;
  }
  .error-content p {
    font-size: 13px;
  }
  .repair-main-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .repair-banner-content h1 {
    line-height: 1.4;
    margin-bottom: 17px;
    font-size: 25px;
  }
  .repair-banner-image {
    margin-bottom: 60px;
  }
  .repair-banner-image img:nth-child(2) {
    top: 0;
    right: 0;
  }
  .repair-banner-image img:nth-child(3) {
    top: -35px;
  }
  .repair-banner-image img:nth-child(4) {
    display: none;
  }
  .repair-about-content {
    margin-bottom: 40px;
  }
  .repair-about-content .sub-title {
    font-size: 14px;
  }
  .repair-about-content h2 {
    font-size: 20px;
  }
  .repair-about-content ul li {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 15px;
  }
  .repair-about-image {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .repair-about-image img:nth-child(2) {
    width: 250px;
    position: relative;
  }
  .repair-about-image img:nth-child(4),
  .repair-about-image img:nth-child(5) {
    display: none;
  }
  .repair-services-area {
    padding-bottom: 20px;
  }
  .single-repair-services {
    padding: 30px 20px;
  }
  .single-repair-services h3 {
    font-size: 17px;
  }
  .single-repair-services .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
  }
  .single-repair-services .icon i:before {
    font-size: 25px;
  }
  .repair-cta-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cta-repair-content {
    text-align: center;
    margin-bottom: 30px;
  }
  .cta-repair-content h3 {
    font-size: 21px;
    margin-bottom: 17px;
  }
  .cta-repair-content p {
    font-size: 13px;
  }
  .cta-repair-img {
    text-align: center;
  }
  .single-repair-feedback {
    border-radius: 5px;
    margin-bottom: 50px;
    padding: 20px;
  }
  .single-repair-feedback:after {
    font-size: 30px;
    left: 10px;
  }
  .single-repair-feedback .client-img {
    margin-bottom: 29px;
    padding-left: 85px;
    padding-top: 13px;
  }
  .single-repair-feedback .client-img img {
    width: 70px;
    height: 70px;
  }
  .single-repair-feedback .client-img span {
    margin-top: 5px;
  }
  .single-repair-feedback .client-img h3 {
    font-size: 17px;
  }
  .single-repair-feedback p {
    font-size: 14px;
  }
  .single-repair-box {
    padding: 20px;
  }
  .single-repair-box .icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
  .single-repair-box .icon i:before {
    font-size: 25px;
  }
  .single-repair-box h3 {
    font-size: 17px;
  }
  .single-repair-box .back-icon i:before {
    font-size: 170px;
  }
  .faq-accordion .accordion .accordion__item .accordion__button {
    font-size: 14px;
    padding: 10px 15px;
  }
  .iot-main-banner {
    padding-top: 150px;
    padding-bottom: 80px;
  }
  .iot-banner-content span {
    font-size: 14px;
  }
  .iot-banner-content h2 {
    font-size: 25px;
    margin-bottom: 17px;
    line-height: 1.4;
  }
  .iot-banner-image {
    position: relative;
    right: 0;
    top: 0;
    transform: unset;
    margin-top: 50px;
  }
  .iot-banner-image img:first-child {
    max-width: 100%;
  }
  .iot-banner-image img:last-child {
    display: none;
  }
  .animate-border span {
    top: 78%;
    left: 41%;
  }
  .iot-services-area {
    padding-bottom: 20px;
  }
  .single-iot-services {
    padding: 30px 20px;
  }
  .single-iot-services .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
  }
  .single-iot-services .icon i:before {
    font-size: 25px;
  }
  .single-iot-services h3 {
    font-size: 17px;
  }
  .iot-cta-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cta-iot-content {
    text-align: center;
    margin-top: 35px;
  }
  .cta-iot-content h3 {
    font-size: 20px;
    line-height: 1.5;
  }
  .iot-features-content {
    order: 1;
    margin-bottom: 30px;
  }
  .iot-features-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  .iot-features-image {
    order: 2;
  }
  .single-iot-box {
    padding: 20px;
  }
  .single-iot-box .icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
  }
  .single-iot-box .icon img {
    width: 40px;
  }
  .single-iot-box .icon i:before {
    font-size: 25px;
  }
  .single-iot-box h3 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .footer-area {
    padding-top: 50px;
  }
  .single-footer-widget {
    padding: 0 !important;
    margin-bottom: 30px;
  }
  .single-footer-widget h3 {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .copyright-area {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ml-main-banner {
    background-position: 50%;
    padding-top: 130px;
    padding-bottom: 140px;
  }
  .ml-main-banner .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ml-banner-content {
    text-align: center;
  }
  .ml-banner-content h1 {
    font-size: 25px;
    margin-bottom: 14px;
  }
  .ml-banner-content p {
    max-width: 100%;
    font-size: 13px;
  }
  .ml-banner-single-image {
    margin-top: 30px;
  }
  .ml-main-section {
    background-position: 50%;
    padding-top: 130px;
    padding-bottom: 140px;
  }
  .ml-main-section .ml-banner-content h1 {
    font-size: 25px;
  }
  .ml-banner-image {
    height: auto;
    top: 0;
    margin-top: 30px;
    text-align: center;
  }
  .ml-banner-image img {
    display: none;
    position: relative;
  }
  .ml-banner-image img:nth-child(12) {
    display: inline-block;
  }
  .ml-partner-area.mt-minus-top {
    margin-top: -125px;
  }
  .solutions-area {
    padding-bottom: 20px;
  }
  .single-solutions-box h3 {
    font-size: 17px;
  }
  .single-solutions-box .learn-more-btn {
    font-size: 13px;
  }
  .single-solutions-box .learn-more-btn svg {
    width: 15px;
  }
  .section-title .sub-title {
    margin-bottom: 15px;
    padding: 4px 15px 3px;
    font-size: 12px;
  }
  .ml-about-content {
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .ml-about-content h2 {
    font-size: 20px;
  }
  .ml-about-content .bar {
    margin-left: auto;
    margin-right: auto;
  }
  .ml-services-area {
    padding-bottom: 20px;
  }
  .single-ml-services-box {
    padding: 25px 20px;
  }
  .single-ml-services-box h3 {
    font-size: 17px;
  }
  .ml-projects-area {
    padding-bottom: 20px;
  }
  .ml-projects-area .section-title {
    text-align: center;
    max-width: 100%;
  }
  .ml-projects-area .section-title h2 {
    max-width: 100%;
  }
  .ml-projects-area .section-title .bar {
    margin-left: auto;
    margin-right: auto;
  }
  .ml-projects-slides .owl-dots {
    position: relative;
    right: 0;
    top: 0;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .ml-projects-slides .owl-dots:before {
    display: none;
  }
  .pricing-tab .tabs {
    margin-bottom: 30px;
  }
  .pricing-tab .tabs li a {
    padding: 10px 25px 9.5px;
    font-size: 14px;
  }
  .pricing-box {
    margin-bottom: 30px;
    padding: 25px;
  }
  .pricing-box .pricing-header h3 {
    font-size: 18px;
  }
  .pricing-box .price {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .pricing-box .pricing-features {
    padding-left: 0;
    padding-right: 0;
  }
  .pricing-box .pricing-features li {
    padding-left: 24px;
    font-size: 13px;
  }
  .pricing-box .pricing-features li svg {
    width: 17px;
  }
  .ml-feedback-area {
    padding-bottom: 20px;
  }
  .ml-feedback-slides {
    max-width: 100%;
    margin: -40px 0 0;
  }
  .ml-feedback-slides .owl-item {
    padding-left: 0;
    padding-right: 0;
  }
  .single-ml-feedback-item {
    padding: 20px;
    text-align: center;
  }
  .single-ml-feedback-item .client-info {
    position: relative;
    left: 0;
    top: 0;
    transform: unset;
    text-align: center;
    margin-bottom: 15px;
  }
  .single-ml-feedback-item .client-info h3 {
    font-size: 17px;
  }
  .single-ml-feedback-item p {
    font-size: 13px;
  }
  .single-ml-feedback-item:after {
    margin-left: 20px;
    margin-right: 20px;
  }
  .single-blog-post-box .entry-post-content h3 {
    font-size: 17px;
  }
  .single-blog-post-box .entry-post-content .learn-more-btn {
    font-size: 13px;
  }
  .free-trial-area {
    padding-bottom: 50px;
  }
  .free-trial-area:before {
    display: none;
  }
  .free-trial-content {
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .free-trial-content h2 {
    font-size: 20px;
  }
  .free-trial-content form {
    margin-top: 20px;
  }
  .free-trial-content form .input-newsletter {
    width: 100%;
  }
  .free-trial-content form button {
    position: relative;
    font-size: 15px;
    border-radius: 30px;
    margin-top: 15px;
  }
  .agency-navbar .startp-nav {
    padding-left: 15px;
    padding-right: 15px;
  }
  .agency-main-banner {
    padding-top: 120px;
  }
  .agency-main-banner .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .agency-banner-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 0;
  }
  .agency-banner-content .sub-title {
    font-size: 13px;
  }
  .agency-banner-content h1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .agency-banner-content p {
    font-size: 14px;
    max-width: 100%;
  }
  .solutions-box {
    margin-bottom: 40px;
  }
  .solutions-box .icon {
    margin-bottom: 20px;
    padding-left: 15px;
  }
  .solutions-box .icon i {
    font-size: 40px;
  }
  .solutions-box .icon img {
    width: 80px;
  }
  .solutions-box h3 {
    font-size: 17px;
  }
  .solutions-box .learn-more-btn {
    font-size: 13px;
  }
  .agency-about-area .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .agency-about-img {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  .agency-about-content {
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .agency-about-content h2 {
    font-size: 20px;
  }
  .agency-about-content .bar {
    margin-left: auto;
    margin-right: auto;
  }
  .agency-services-area {
    padding-bottom: 20px;
  }
  .agency-services-box .content {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -20px;
  }
  .agency-services-box .content h3 {
    font-size: 17px;
  }
  .agency-services-box:hover .content h3 {
    transform: translateY(0);
  }
  .agency-services-box:hover .content .read-more-btn,
  .user-shape1,
  .user-shape2,
  .user-shape3,
  .user-shape4,
  .user-shape5,
  .user-shape6 {
    display: none;
  }
  .single-testimonials-item {
    padding: 64px 20px 20px;
    text-align: center;
  }
  .single-testimonials-item p {
    font-size: 13px;
  }
  .single-testimonials-item:before {
    top: 8px;
    font-size: 35px;
  }
  .single-testimonials-item .client-info {
    margin-top: 20px;
    max-width: 200px;
  }
  .single-testimonials-item .client-info .rating svg {
    width: 14px;
  }
  .single-testimonials-item .client-info span {
    font-size: 12px;
  }
  .single-testimonials-item .client-info h3 {
    margin-top: 5px;
    font-size: 15px;
  }
  .single-blog-post-item .post-content {
    padding: 25px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -20px;
  }
  .single-blog-post-item .post-content h3 {
    font-size: 17px;
    line-height: 25px;
  }
  .agency-cta-content h2 {
    margin-bottom: 25px;
    font-size: 20px;
  }
  .mobile-dnone {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-area .container-fluid,
  .free-trial-area .container-fluid,
  .ml-main-banner .container-fluid {
    max-width: 540px;
  }
  .free-trial-content form button {
    position: absolute;
    border-radius: 0 30px 30px 0;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .startp-nav nav .others-option {
    display: none;
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu {
    left: -30px;
  }
  .startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu {
    left: 165px;
  }
  .startp-nav nav .navbar-nav .nav-item:last-child a {
    margin-right: 0;
  }
  .startp-nav.is-sticky {
    padding: 5px 0;
  }
  .main-banner {
    height: 100%;
    padding-top: 185px;
    padding-bottom: 165px;
  }
  .main-banner .banner-image {
    text-align: center;
    margin-top: 45px;
  }
  .main-banner .banner-image img {
    position: relative;
    display: none;
  }
  .main-banner .banner-image img:last-child {
    display: block;
  }
  .main-banner .hero-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .main-banner .banner-form {
    padding: 50px;
    margin: 45px 0 !important;
  }
  .hosting-main-banner {
    height: 100%;
    padding-top: 120px;
    padding-bottom: 165px;
  }
  .hosting-main-banner .hosting-banner-content h1 {
    font-size: 30px;
  }
  .hosting-main-banner .hosting-banner-content ul li {
    font-size: 13px;
  }
  .hosting-main-banner .hosting-banner-content p {
    font-size: 16px;
  }
  .hosting-main-banner .hosting-banner-image {
    margin-top: 50px;
  }
  .hosting-main-banner .hosting-banner-image img {
    position: relative;
    display: none;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(10) {
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .shape1,
  .shape2,
  .shape3,
  .shape4,
  .shape5,
  .shape7 {
    display: none;
  }
  .boxes-area {
    padding-bottom: 50px;
    margin-top: -65px;
  }
  .single-box {
    margin-bottom: 30px;
  }
  .why-choose-us-image {
    margin-bottom: 65px;
  }
  .why-choose-us-image img {
    display: none;
  }
  .why-choose-us-image img:nth-child(3) {
    display: block;
  }
  .why-choose-us-image img:last-child {
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .services-right-image {
    text-align: center;
    margin-top: 45px;
  }
  .services-right-image img {
    display: none;
    position: relative;
  }
  .services-right-image img:last-child {
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .services-right-image.single-right-image img.bg-image {
    display: none;
  }
  .services-left-image {
    text-align: center;
    margin-bottom: 45px;
  }
  .services-left-image img {
    display: none;
    position: relative;
  }
  .services-left-image img:last-child {
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .services-left-image.single-left-image img.bg-image {
    display: none;
  }
  .single-features {
    padding-left: 20px;
    height: auto;
  }
  .single-features .icon {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 25px;
  }
  .about-image {
    margin-bottom: 45px;
  }
  .about-inner-area,
  .about-inner-area .about-text {
    margin-top: 30px;
  }
  .pricing-area {
    padding-bottom: 50px;
  }
  .pricing-table,
  .single-pricing-table {
    margin-bottom: 30px;
  }
  .page-title-area {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  .page-title-area .shape8 {
    top: auto;
    right: auto;
    left: 20px;
    bottom: 20px;
  }
  .project-details-desc .project-details-information .single-info-box {
    width: 33.3333%;
  }
  .contact-info-area {
    padding-bottom: 50px;
  }
  .contact-info-box {
    margin-bottom: 30px;
  }
  #mainForm #contactForm {
    margin-top: 16px;
  }
  #contactForm {
    margin-top: 45px;
  }
  .coming-soon-content h1 {
    font-size: 35px;
  }
  .coming-soon-content p {
    font-size: 15px;
  }
  .coming-soon-content #timer div {
    padding-top: 20px;
    font-size: 30px;
  }
  .coming-soon-content #timer div span {
    font-size: 14px;
  }
  .error-content .notfound-404 {
    height: 205px;
  }
  .error-content .notfound-404 h1 {
    font-size: 170px;
  }
  .repair-main-banner {
    padding-top: 155px;
  }
  .repair-banner-content {
    text-align: center;
    margin-bottom: 115px;
  }
  .repair-banner-content h1 {
    margin-bottom: 18px;
    font-size: 30px;
  }
  .repair-banner-content img:nth-child(4) {
    left: 0;
    top: -40px;
    margin: 0 auto;
  }
  .repair-about-content {
    margin-bottom: 45px;
  }
  .repair-about-image {
    text-align: center;
    padding: 35px 0;
  }
  .repair-about-image img:nth-child(2) {
    position: relative;
  }
  .repair-about-image img:nth-child(4),
  .repair-about-image img:nth-child(5) {
    display: none;
  }
  .repair-cta-area {
    padding-top: 80px;
  }
  .cta-repair-content {
    margin-bottom: 30px;
  }
  .repair-why-choose-us:before {
    height: 40%;
  }
  .iot-main-banner {
    padding-top: 190px;
    padding-bottom: 100px;
  }
  .iot-banner-content span {
    font-size: 14px;
  }
  .iot-banner-content h2 {
    font-size: 30px;
  }
  .iot-banner-image {
    position: relative;
    right: 0;
    top: 0;
    transform: unset;
    margin-top: 80px;
  }
  .iot-banner-image img:first-child {
    max-width: 100%;
  }
  .animate-border span {
    top: 70%;
    left: 42%;
  }
  .services-details-area .separate {
    margin-top: 40px;
  }
  .services-details {
    order: 1;
  }
  .services-details-image {
    order: 2;
    margin-top: 40px;
  }
  .modal-content .products-image {
    text-align: right;
  }
  .modal-content .products-image img {
    width: auto;
  }
  .modal-content .products-content {
    padding: 25px;
  }
  .modal-content button.close {
    z-index: 3;
  }
  .products-details {
    margin-top: 30px;
  }
  .iot-cta-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .cta-iot-content {
    text-align: center;
    margin-top: 40px;
  }
  .iot-features-content {
    order: 1;
  }
  .iot-features-image {
    order: 2;
    margin-top: 40px;
  }
  .iot-why-choose-us:before {
    height: 40%;
  }
  .single-footer-widget {
    margin-bottom: 30px;
  }
  .copyright-area {
    margin-top: 50px;
  }
  .ml-main-banner {
    background-position: 50%;
    padding-top: 150px;
  }
  .ml-main-banner .container-fluid {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .ml-banner-single-image {
    margin-top: 30px;
  }
  .ml-banner-content {
    text-align: center;
  }
  .ml-banner-content h1 {
    font-size: 30px;
  }
  .ml-banner-content p {
    max-width: 100%;
    font-size: 14px;
  }
  .ml-main-section {
    background-position: 50%;
    padding-top: 150px;
    padding-bottom: 140px;
  }
  .ml-main-section .ml-banner-content h1 {
    font-size: 30px;
  }
  .ml-banner-image {
    height: auto;
    top: 0;
    margin-top: 30px;
    text-align: center;
  }
  .ml-banner-image img {
    display: none;
    position: relative;
  }
  .ml-banner-image img:nth-child(12) {
    display: inline-block;
  }
  .ml-partner-area.mt-minus-top {
    margin-top: -120px;
  }
  .about-area .container-fluid {
    max-width: 720px;
  }
  .ml-about-content {
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .ml-about-content h2 {
    font-size: 25px;
  }
  .ml-about-content .bar {
    margin-left: auto;
    margin-right: auto;
  }
  .ml-projects-slides.owl-theme .owl-dots {
    right: 2.5%;
  }
  .ml-projects-slides.owl-theme .owl-dots:before {
    left: -8px;
  }
  .pricing-box {
    margin-bottom: 30px;
  }
  .free-trial-area {
    padding-bottom: 80px;
  }
  .free-trial-area .container-fluid {
    max-width: 720px;
  }
  .free-trial-area:before {
    display: none;
  }
  .free-trial-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .free-trial-content h2 {
    font-size: 25px;
  }
  .free-trial-content form {
    margin-top: 20px;
  }
  .agency-main-banner {
    padding-top: 120px;
  }
  .agency-main-banner .container-fluid {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .agency-main-banner .shape8 {
    display: none;
  }
  .agency-banner-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 0;
  }
  .agency-banner-content .sub-title {
    font-size: 14px;
  }
  .agency-banner-content h1 {
    font-size: 35px;
    line-height: 32px;
    margin-bottom: 12px;
  }
  .agency-banner-content p {
    font-size: 15px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .agency-about-area .container-fluid {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .agency-about-img {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  .agency-about-content {
    max-width: 540px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .agency-about-content h2 {
    font-size: 25px;
  }
  .agency-about-content .bar {
    margin-left: auto;
    margin-right: auto;
  }
  .mobile-dnone,
  .user-shape1,
  .user-shape2,
  .user-shape3,
  .user-shape4,
  .user-shape5,
  .user-shape6 {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-banner .hero-content h1 {
    font-size: 35px;
  }
  .main-banner .banner-image img:first-child {
    top: -140px;
    left: -120px;
  }
  .main-banner .banner-image img:nth-child(2) {
    right: 160px;
    top: -286px;
  }
  .main-banner .banner-image img:nth-child(3) {
    left: -30px;
    top: -15px;
  }
  .main-banner .banner-image img:nth-child(4) {
    right: 15%;
    top: 105px;
  }
  .main-banner .banner-image img:nth-child(5) {
    left: 15%;
    top: -120px;
  }
  .main-banner .banner-image img:nth-child(6) {
    right: 37%;
    top: -160px;
  }
  .main-banner .banner-image img:nth-child(7) {
    right: 20px;
    top: -110px;
  }
  .main-banner .banner-image img:nth-child(8) {
    right: 25px;
    top: -140px;
  }
  .main-banner .banner-image img:nth-child(9) {
    right: 28%;
    top: -25px;
  }
  .main-banner .banner-image img:nth-child(10) {
    left: 29%;
    top: -35px;
  }
  .main-banner .banner-image img:nth-child(11) {
    left: 26%;
    top: -160px;
  }
  .main-banner .banner-image img:nth-child(12) {
    left: 15px;
    top: -110px;
  }
  .main-banner .banner-image img:nth-child(13) {
    left: 50%;
    top: -18px;
  }
  .main-banner .banner-image img:nth-child(14) {
    right: 98px;
    top: -20px;
  }
  .hosting-main-banner .hosting-banner-content h1 {
    font-size: 35px;
  }
  .hosting-main-banner .hosting-banner-image img:first-child {
    top: -85px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(2) {
    top: 175px;
    left: 30px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(3) {
    top: 170px;
    right: 30px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(4) {
    left: 18%;
    top: -23px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(5) {
    right: 0;
    top: -115px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(6) {
    left: 2%;
    top: -173px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(7) {
    top: -244px;
    left: -73px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(8) {
    left: 11%;
    top: -200px;
  }
  .hosting-main-banner .hosting-banner-image img:nth-child(9) {
    top: 40px;
    left: 0;
  }
  .shape1 {
    display: none;
  }
  .startp-nav nav .navbar-nav .nav-item a {
    margin-left: 10px;
    margin-right: 10px;
  }
  .services-left-image.single-left-image img:first-child,
  .services-right-image.single-right-image img:first-child {
    top: -30px;
  }
  .repair-main-banner {
    padding-top: 185px;
    padding-bottom: 110px;
  }
  .repair-banner-image img:nth-child(4) {
    display: none;
  }
  .repair-banner-image img:nth-child(3) {
    top: -35px;
  }
  .repair-banner-image img:nth-child(2) {
    top: -30px;
  }
  .repair-team-area .single-team .team-content {
    padding-left: 0;
    padding-right: 0;
  }
  .iot-main-banner {
    padding-top: 200px;
    padding-bottom: 120px;
  }
  .iot-banner-image img:first-child {
    max-width: 470px;
  }
  .iot-banner-image img:last-child {
    top: -10px;
  }
  .iot-team-area .single-team .team-content {
    padding-left: 0;
    padding-right: 0;
  }
  .ml-projects-slides.owl-theme .owl-dots {
    right: 4.5%;
  }
  .ml-main-section {
    padding-top: 130px;
    padding-bottom: 140px;
  }
  .ml-main-section .ml-banner-content h1 {
    font-size: 40px;
  }
  .ml-main-section .row {
    align-items: center !important;
  }
  .ml-banner-image {
    height: auto;
    top: 0;
    text-align: center;
  }
  .ml-banner-image img {
    display: none;
    position: relative;
  }
  .ml-banner-image img:nth-child(12) {
    display: inline-block;
  }
  .single-blog-post-box .entry-post-content h3 {
    font-size: 17px;
  }
  .single-box {
    padding: 20px;
  }
  .single-box h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .agency-banner-content {
    max-width: 465px;
    position: relative;
    top: 50px;
  }
  .agency-banner-content h1 {
    font-size: 40px;
  }
  .agency-about-img {
    padding-right: 30px;
  }
  .agency-about-content {
    max-width: 475px;
  }
  .agency-services-box .content h3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1550px) {
  .iot-banner-image {
    right: 90px;
    top: 56%;
    transform: translateY(-50%);
  }
  .iot-banner-image img:first-child {
    max-width: 90%;
  }
  .iot-banner-image img:last-child {
    left: -128px;
    top: 50px;
  }
  .animate-border span {
    top: 51%;
    left: 70%;
  }
  .navbar-style-three .startp-nav {
    padding-left: 100px;
    padding-right: 100px;
  }
  .ml-main-banner .container-fluid {
    padding-left: 170px;
    padding-right: 170px;
  }
}
