/****************************
==============================
   Index
==============================

1.    Variable
2.    Mixins
3.    Base
4.    Utility

******************************/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes topBottom50 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes topBottom50 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes leftRight50 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes leftRight50 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, 0);
            transform: translate(50px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes left50 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, 0) scale(1.5);
            transform: translate(50px, 0) scale(1.5);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes left50 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, 0) scale(1.5);
            transform: translate(50px, 0) scale(1.5);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes zoomeffect {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate(20px, 0) scale(1.5);
            transform: translate(20px, 0) scale(1.5);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@keyframes zoomeffect {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate(20px, 0) scale(1.5);
            transform: translate(20px, 0) scale(1.5);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@-webkit-keyframes zoomeffect2 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate(10px, 0) scale(1.3);
            transform: translate(10px, 0) scale(1.3);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@keyframes zoomeffect2 {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate(10px, 0) scale(1.3);
            transform: translate(10px, 0) scale(1.3);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@-webkit-keyframes scaleUpOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@keyframes scaleUpOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
/*=====*/
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.7;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.7;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@-webkit-keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
@-webkit-keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
            transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
            transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
            transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
            transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
            transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
            transform: translate(-346px, 617px);
  }
}
@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
  }
}
@keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
            transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
            transform: translate(251px, -200px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}
@keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
            transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
            transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
            transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
            transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
            transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
            transform: translate(-1px, 0px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes dzMove5 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  25% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
  50% {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
  }
  75% {
    -webkit-transform: translate(10px, -5px);
    transform: translate(10px, -5px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes dzMove5 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  25% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
  50% {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
  }
  75% {
    -webkit-transform: translate(10px, -5px);
    transform: translate(10px, -5px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px) translateY(50px);
    transform: translateX(50px) translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px) translateY(50px);
    transform: translateX(50px) translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
.fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInDownMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-130px);
    transform: translateY(-130px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownMedium {
  -webkit-animation-name: fadeInDownMedium;
  animation-name: fadeInDownMedium;
}

@-webkit-keyframes fadeInUpMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(130px);
    transform: translateY(130px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(130px);
    transform: translateY(130px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpMedium {
  -webkit-animation-name: fadeInUpMedium;
  animation-name: fadeInUpMedium;
}

@-webkit-keyframes slideInRightMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRightMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRightMedium {
  -webkit-animation-name: slideInRightMedium;
  animation-name: slideInRightMedium;
}

@-webkit-keyframes slideInLeftMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeftMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeftMedium {
  -webkit-animation-name: slideInLeftMedium;
  animation-name: slideInLeftMedium;
}

@-webkit-keyframes slideInUpMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUpMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUpMedium {
  -webkit-animation-name: slideInUpMedium;
  animation-name: slideInUpMedium;
}

@-webkit-keyframes slideInDownMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDownMedium {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDownMedium {
  -webkit-animation-name: slideInDownMedium;
  animation-name: slideInDownMedium;
}

@-webkit-keyframes slideInRightTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px) translateX(80px);
    transform: translateY(-80px) translateX(80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInRightTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px) translateX(80px);
    transform: translateY(-80px) translateX(80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInRightTop {
  -webkit-animation-name: slideInRightTop;
  animation-name: slideInRightTop;
}

@-webkit-keyframes slideInLeftTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px) translateX(-80px);
    transform: translateY(-80px) translateX(-80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInLeftTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px) translateX(-80px);
    transform: translateY(-80px) translateX(-80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInLeftTop {
  -webkit-animation-name: slideInLeftTop;
  animation-name: slideInLeftTop;
}

/* ===========================
// Typography
==============================*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #656E7E;
  position: relative;
}

/*==== heading fonts setup ====*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  line-height: 1.25;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.375rem;
}

h6 {
  font-size: 1rem;
}

/*==== margin & paddings ====*/
.mt--5 {
  margin-top: 5px !important;
}

.pt--5 {
  padding-top: 5px !important;
}

.mb--5 {
  margin-bottom: 5px !important;
}

.pb--5 {
  padding-bottom: 5px !important;
}

.mt--10 {
  margin-top: 10px !important;
}

.pt--10 {
  padding-top: 10px !important;
}

.mb--10 {
  margin-bottom: 10px !important;
}

.pb--10 {
  padding-bottom: 10px !important;
}

.mt--15 {
  margin-top: 15px !important;
}

.pt--15 {
  padding-top: 15px !important;
}

.mb--15 {
  margin-bottom: 15px !important;
}

.pb--15 {
  padding-bottom: 15px !important;
}

.mt--20 {
  margin-top: 20px !important;
}

.pt--20 {
  padding-top: 20px !important;
}

.mb--20 {
  margin-bottom: 20px !important;
}

.pb--20 {
  padding-bottom: 20px !important;
}

.mt--25 {
  margin-top: 25px !important;
}

.pt--25 {
  padding-top: 25px !important;
}

.mb--25 {
  margin-bottom: 25px !important;
}

.pb--25 {
  padding-bottom: 25px !important;
}

.mt--30 {
  margin-top: 30px !important;
}

.pt--30 {
  padding-top: 30px !important;
}

.mb--30 {
  margin-bottom: 30px !important;
}

.pb--30 {
  padding-bottom: 30px !important;
}

.mt--35 {
  margin-top: 35px !important;
}

.pt--35 {
  padding-top: 35px !important;
}

.mb--35 {
  margin-bottom: 35px !important;
}

.pb--35 {
  padding-bottom: 35px !important;
}

.mt--40 {
  margin-top: 40px !important;
}

.pt--40 {
  padding-top: 40px !important;
}

.mb--40 {
  margin-bottom: 40px !important;
}

.pb--40 {
  padding-bottom: 40px !important;
}

.mt--45 {
  margin-top: 45px !important;
}

.pt--45 {
  padding-top: 45px !important;
}

.mb--45 {
  margin-bottom: 45px !important;
}

.pb--45 {
  padding-bottom: 45px !important;
}

.mt--50 {
  margin-top: 50px !important;
}

.pt--50 {
  padding-top: 50px !important;
}

.mb--50 {
  margin-bottom: 50px !important;
}

.pb--50 {
  padding-bottom: 50px !important;
}

.mt--60 {
  margin-top: 60px !important;
}

.pt--60 {
  padding-top: 60px !important;
}

.mb--60 {
  margin-bottom: 60px !important;
}

.pb--60 {
  padding-bottom: 60px !important;
}

.mb--24 {
  margin-bottom: 24px !important;
}

/*==== gutter ====*/
.gutter-10 {
  margin-top: -5px !important;
  margin-bottom: -5px !important;
}
.gutter-10 > li,
.gutter-10 > div {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.gutter-20 {
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}
.gutter-20 > li,
.gutter-20 > div {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.gutter-30 {
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}
.gutter-30 > li,
.gutter-30 > div {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.gutter-40 {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}
.gutter-40 > li,
.gutter-40 > div {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.gutter-50 {
  margin-top: -25px !important;
  margin-bottom: -25px !important;
}
.gutter-50 > li,
.gutter-50 > div {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.gutter-60 {
  margin-top: -30px !important;
  margin-bottom: -30px !important;
}
.gutter-60 > li,
.gutter-60 > div {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.gutter-70 {
  margin-top: -35px !important;
  margin-bottom: -35px !important;
}
.gutter-70 > li,
.gutter-70 > div {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.gutter-24 {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}

.gutter-24 > li,
.gutter-24 > div {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.gutter-15 {
  margin-top: -7.5px !important;
  margin-bottom: -7.5px !important;
}

.gutter-15 > li,
.gutter-15 > div {
  padding-top: 7.5px !important;
  padding-bottom: 7.5px !important;
}

.gutter-10 {
  margin: -5px !important;
}

.gutter-10 > li,
.gutter-10 > div {
  padding: 5px !important;
}

.rt-gutter-5 {
  margin: -2.5px !important;
}

.rt-gutter-5 > li,
.rt-gutter-5 > div {
  padding: 2.5px !important;
}

.rt-gutter-10 {
  margin: -5px !important;
}

.rt-gutter-10 > li,
.rt-gutter-10 > div {
  padding: 5px !important;
}

.rt-gutter-20 {
  margin: -10px !important;
}

.rt-gutter-20 > li,
.rt-gutter-20 > div {
  padding: 10px !important;
}

.rt-gutter-30 {
  margin: -15px !important;
}

.rt-gutter-30 > li,
.rt-gutter-30 > div {
  padding: 15px !important;
}

/*==== text color & bg color ====*/
.text--primary {
  color: #f43127 !important;
}

.bg--primary {
  background-color: #f43127 !important;
}

.text--white {
  color: #fff !important;
}

.bg--white {
  background-color: #fff !important;
}

.text--black {
  color: #000 !important;
}

.bg--black {
  background-color: #000 !important;
}

.text--gray {
  color: #f6f6f6 !important;
}

.bg--gray {
  background-color: #f6f6f6 !important;
}

/*============================ 
// Global styles
=============================*/
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a:link,
a:visited,
a:focus {
  text-decoration: none;
  outline: 0;
}

a {
  color: #00c194;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
  color: #00c194;
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

section,
.section {
  position: relative;
}

/*======================
// back-to-top
========================*/
#back-to-top {
  font-size: 1rem;
  color: #fff;
  background: #00c194;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: none;
  cursor: pointer;
  overflow: hidden;
}
#back-to-top i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#back-to-top:hover {
  color: #fff;
  background: #0e2e50;
}
#back-to-top:hover i {
  -webkit-animation: toBottomFromTop 0.5s forwards;
          animation: toBottomFromTop 0.5s forwards;
}

@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*==================================
//  section heading
================================*/
.section-heading {
  margin-bottom: 60px;
}
.section-heading .section-title {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .section-heading .section-title {
    font-size: 1.875rem;
  }
}
.section-heading p:last-of-type {
  margin-bottom: 0;
}

/*=============================
// Utility Class
=============================*/
.image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.img-link {
  width: 100%;
  height: 100%;
}

.after-before, .preview-box-style-1 .item-img > a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.anim-overflow {
  display: block;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

/*=================================
// button
=================================*/
.rt-btn, .rt-btn-1 {
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  border-radius: 5px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  padding: 5px 25px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0px 7px 12px 0px rgba(0, 193, 148, 0.16);
          box-shadow: 0px 7px 12px 0px rgba(0, 193, 148, 0.16);
  z-index: 4;
}
.rt-btn:focus, .rt-btn-1:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.rt-btn::before, .rt-btn-1::before {
  position: absolute;
  content: "";
  left: inherit;
  right: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 0;
  border-radius: 5px;
  -webkit-transition: all 240ms ease-in-out;
  transition: all 240ms ease-in-out;
}
.rt-btn::after, .rt-btn-1::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: -2;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.rt-btn:hover::before, .rt-btn-1:hover::before {
  width: 100%;
  right: inherit;
  left: 0;
}

.rt-btn-1 {
  color: #fff;
}
.rt-btn-1::before {
  background-color: #0e2e50;
}
.rt-btn-1::after {
  background-color: #00c194;
}
.rt-btn-1:hover {
  color: #fff;
}

.watermark-text {
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  .watermark-text {
    display: none;
  }
}
.watermark-text .text {
  font-size: 11.25rem;
  color: #def0ec;
  font-weight: 700;
  letter-spacing: -0.05rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  display: block;
}
@media (max-width: 1366px) {
  .watermark-text .text {
    font-size: 7.5rem;
  }
}
@media (max-width: 991px) {
  .watermark-text .text {
    font-size: 6.25rem;
  }
}

#preloader {
  background: #fff no-repeat scroll center center;
  height: 100%;
  left: 0;
  overflow: visible;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

/*===========================================
// header
============================================*/
.navbar-wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
  background-color: transparent;
  padding: 40px 65px 40px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .navbar-wrap {
    padding: 20px 30px;
  }
}
.sticky .navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.975);
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 65px 20px;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
@media (max-width: 1199px) {
  .sticky .navbar-wrap {
    padding: 20px 30px;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__item {
  margin: 0 15px;
}
.menu__link {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__link:hover, .menu__link.active {
  color: #00c194;
}

/*=====================================
//  Mobile menu
======================================*/
.offscreen-navigation .mobile-menu li {
  border-bottom: 1px solid #e9e9e9;
}
.offscreen-navigation .mobile-menu li:last-child {
  border-bottom: 0;
  padding: 15px;
  text-align: center;
}
.offscreen-navigation .mobile-menu li .link {
  color: #000;
  font-weight: 500;
  background-color: #f3f3f3;
  font-size: 16px;
  padding: 12px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  width: 100%;
}
.offscreen-navigation .mobile-menu li .link:hover {
  color: #00c194;
  background-color: #f8f8f8;
}

.rt-slide-nav {
  position: absolute;
  background: #fff;
  width: 100%;
  left: 0;
  display: none;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  top: 100%;
  z-index: 99;
}

.rt-header-menu {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(81, 81, 81, 0.15);
  z-index: 999;
  background: #fff;
}
@media (min-width: 992px) {
  .rt-header-menu {
    display: none;
  }
}

.rt-mobile-menn-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body .sidebarBtn {
  display: block;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar {
  background: #000000;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar:nth-child(2), body .sidebarBtn .bar:nth-child(3) {
  width: 25px;
  margin-left: 5px;
}
body .sidebarBtn .bar:last-child {
  margin-bottom: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(2), body.slidemenuon .sidebarBtn .bar:nth-child(3) {
  opacity: 0;
}
body.slidemenuon .sidebarBtn .bar:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
body.slidemenuon .sidebarBtn .bar:nth-child(4) {
  -webkit-transform: rotate(-45deg) translate(8px, -8px);
  transform: rotate(-45deg) translate(8px, -8px);
}

/*==================================
// Banner
===================================*/
.banner {
  min-height: 780px;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#e3f4f0), to(#f7fffd));
  background: linear-gradient(90deg, #e3f4f0 0%, #f7fffd 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .banner {
    min-height: 700px;
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .banner {
    min-height: 600px;
    padding: 80px 0;
  }
}
.banner .fade-1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.banner .fade-2 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.banner .banner-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -4px;
}
@media (max-width: 767px) {
  .banner .banner-shape {
    display: none;
  }
}
.banner .banner-shape svg {
  display: block;
  width: calc(139% + 1.3px);
  height: 500px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.banner .banner-shape .shape-fill {
  fill: #fff;
}

.banner-content .title {
  font-size: 3rem;
  color: #0e3762;
  margin-bottom: 34px;
}
@media (max-width: 767px) {
  .banner-content .title {
    font-size: 2.25rem;
  }
}
.banner-content p {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .banner-content p {
    max-width: 70%;
    width: 100%;
  }
}

.feature-list li {
  margin-right: 20px;
  border-radius: 15px;
}
.feature-list li:last-child {
  margin-right: 0;
}

/*===================================
// preview-section
====================================*/
.element-list li {
  position: absolute;
  z-index: -1;
}

.preview-section-style-1 {
  z-index: 1;
}
.preview-section-style-1 .watermark-text {
  left: 0;
  top: 3%;
  width: 100%;
}

.preview-box-style-1 {
  position: relative;
}
.preview-box-style-1 .item-img {
  position: relative;
  overflow: hidden;
  border-style: solid;
  border-width: 3px;
  border-color: white;
  border-radius: 15px;
  background-color: #0e2e50;
  -webkit-box-shadow: 0px 3px 84px 0px rgba(193, 193, 193, 0.58);
          box-shadow: 0px 3px 84px 0px rgba(193, 193, 193, 0.58);
}
.preview-box-style-1 .item-img > a {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  display: block;
  width: 100%;
}
.preview-box-style-1 .item-img > a::after {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  visibility: hidden;
  opacity: 0;
}
.preview-box-style-1 .item-img img {
  width: 100%;
}
.preview-box-style-1 .item-img .text {
  position: absolute;
  left: 0;
  top: 75%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
  font-size: 2rem;
  font-family: "Ubuntu", sans-serif;
  color: #fff;
  width: 100%;
  text-align: center;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.preview-box-style-1 .item-content {
  padding: 24px;
}
.preview-box-style-1 .item-content .title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0e2e50;
}
.preview-box-style-1 .item-content .title a {
  color: inherit;
}
.preview-box-style-1 .item-content .title a:hover {
  color: #00c194;
}
.preview-box-style-1.comming-soon .item-img > a {
  cursor: none;
  pointer-events: none;
}
.preview-box-style-1.comming-soon .item-img > a::after {
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
  opacity: 1;
}
.preview-box-style-1.comming-soon .item-img img {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.preview-box-style-1.comming-soon .item-img .text {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.preview-box-style-1.comming-soon .title a {
  pointer-events: none;
}
.preview-box-style-1:hover .item-img > a::after {
  visibility: visible;
  opacity: 1;
}
.preview-box-style-1:hover .item-img .text {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: visible;
  opacity: 1;
}

/*preview-section-style-2*/
.preview-section-style-2 {
  background-color: #eaf7f4;
  z-index: 1;
}
@media (min-width: 1400px) {
  .preview-section-style-2 {
    padding: 150px 0;
  }
}
.preview-section-style-2 .watermark-text {
  left: 0;
  top: 10%;
  width: 100%;
}
.preview-section-style-2 .watermark-text .text {
  text-align: left;
  text-transform: capitalize;
}
@media (min-width: 1400px) {
  .preview-section-style-2 .section-heading p {
    max-width: 90%;
  }
}

.elementor-prev-img {
  position: relative;
}
@media (min-width: 992px) {
  .elementor-prev-img.style-1 {
    margin-right: -150px;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .elementor-prev-img.style-1 {
    margin-right: -80px;
    margin-left: 40px;
  }
}
@media (min-width: 1400px) {
  .elementor-prev-img.style-1 {
    margin-right: -200px;
    margin-left: 100px;
  }
}
.elementor-prev-img.style-1 .element-list li:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.elementor-prev-img.style-1 .element-list li:nth-child(2) {
  left: -25%;
  bottom: -30%;
}
.elementor-prev-img.style-1 .element-list li:nth-child(2) span {
  display: block;
}

.section-wrapper {
  background-color: #0e2e50;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .section-wrapper {
    padding-top: 60px;
  }
}
.section-wrapper .section-heading {
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .section-wrapper .section-heading {
    max-width: 80%;
  }
}
@media (min-width: 1600px) {
  .section-wrapper .section-heading {
    max-width: 60%;
  }
}
@media (min-width: 2000px) {
  .section-wrapper .section-heading {
    max-width: 55%;
  }
}
.section-wrapper--style-1 {
  background: linear-gradient(43deg, #a55fe1 0%, #4333d9 100%);
}
.section-wrapper--style-1 .section-heading {
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .section-wrapper--style-1 .section-heading {
    max-width: 48%;
  }
}
.section-wrapper--style-2 {
  background: linear-gradient(43deg, #4e69f9 0%, #1437f4 100%);
}

.classified-img-wrap {
  position: relative;
  z-index: 1;
}

.preview-section-style-4 {
  background-color: #f2faff;
  z-index: 1;
  counter-reset: feature-counter;
}
.preview-section-style-4 .watermark-text {
  left: 0;
  top: 3%;
  width: 100%;
}

.preview-box-style-2 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.preview-box-style-2 .item-img {
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-shadow: 0px 11px 35px 0px rgba(87, 129, 119, 0.36);
          box-shadow: 0px 11px 35px 0px rgba(87, 129, 119, 0.36);
}
.preview-box-style-2 .item-img img {
  width: 100%;
  border-radius: 8px;
}
.preview-box-style-2 .item-content {
  padding: 40px 10px 15px;
}
.preview-box-style-2 .item-content .title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  color: #0e2e50;
}
.preview-box-style-2 .item-content .title::after {
  content: "0" counter(feature-counter) " ";
  counter-increment: feature-counter;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-weight: bold;
  font-size: 5rem;
  color: #cdebe4;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.preview-box-style-2:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.preview-box-style-2:hover .item-img {
  -webkit-box-shadow: 0px 20px 35px 0px rgba(87, 129, 119, 0.5);
          box-shadow: 0px 20px 35px 0px rgba(87, 129, 119, 0.5);
}

.preview-section-style-5 {
  background-color: #0e2e50;
  z-index: 1;
}
@media (min-width: 1400px) {
  .preview-section-style-5 {
    padding: 150px 0;
  }
}
.preview-section-style-5 .watermark-text {
  left: 0;
  top: 3%;
  width: 100%;
}
.preview-section-style-5 .watermark-text .text {
  color: #163658;
}
.preview-section-style-5 .element-list li:nth-child(1) {
  right: 15%;
  top: 13%;
}
.preview-section-style-5 .element-list li:nth-child(1) span {
  display: block;
  -webkit-animation: leftRight50 10s linear infinite;
          animation: leftRight50 10s linear infinite;
}
.preview-section-style-5 .element-list li:nth-child(2) {
  left: 42%;
  bottom: 12%;
}
.preview-section-style-5 .element-list li:nth-child(2) span {
  display: block;
  -webkit-animation: zoomeffect2 10s linear infinite;
          animation: zoomeffect2 10s linear infinite;
}
.preview-section-style-5 .section-heading p {
  color: #b9cbde;
}

@media (min-width: 1200px) {
  .resoponsive-img-wrap.style-1 {
    margin-right: -150px;
  }
}
@media (min-width: 1400px) {
  .resoponsive-img-wrap.style-1 {
    margin-right: -180px;
  }
}
@media (min-width: 1600px) {
  .resoponsive-img-wrap.style-1 {
    margin-right: -300px;
  }
}

.preview-section-style-6 {
  background-color: #eaf7f4;
  z-index: 1;
  padding: 130px 0 70px;
}
@media (max-width: 991px) {
  .preview-section-style-6 {
    padding: 80px 0 50px;
  }
}
.preview-section-style-6 .watermark-text {
  left: 0;
  top: 3%;
  width: 100%;
}
.preview-section-style-6 .element-list li span {
  display: block;
}
.preview-section-style-6 .element-list li:nth-child(1) {
  left: 12%;
  top: 18%;
}
.preview-section-style-6 .element-list li:nth-child(1) span {
  -webkit-animation: leftRight50 10s linear infinite;
          animation: leftRight50 10s linear infinite;
}
.preview-section-style-6 .element-list li:nth-child(2) {
  left: 3%;
  bottom: 18%;
}
.preview-section-style-6 .element-list li:nth-child(2) span {
  -webkit-animation: zoomeffect2 15s linear infinite;
          animation: zoomeffect2 15s linear infinite;
}
.preview-section-style-6 .element-list li:nth-child(3) {
  left: 19%;
  bottom: 10%;
}
.preview-section-style-6 .element-list li:nth-child(3) span {
  -webkit-animation: zoomeffect2 10s linear infinite;
          animation: zoomeffect2 10s linear infinite;
}
.preview-section-style-6 .element-list li:nth-child(4) {
  left: 48%;
  top: 10%;
}
.preview-section-style-6 .element-list li:nth-child(4) span {
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}
.preview-section-style-6 .element-list li:nth-child(5) {
  left: 46%;
  bottom: 26%;
}
.preview-section-style-6 .element-list li:nth-child(5) span {
  -webkit-animation: topBottom50 10s linear infinite;
          animation: topBottom50 10s linear infinite;
}

@media (min-width: 1600px) {
  .grid-list-map-img-wrap.style-1 {
    margin-left: -180px;
  }
}
@media (max-width: 1440px) {
  .grid-list-map-img-wrap.style-1 {
    margin-left: 0;
  }
}

.preview-section-style-7 {
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 1200px) {
  .preview-section-style-7 .container,
.preview-section-style-7 .container-lg,
.preview-section-style-7 .container-md,
.preview-section-style-7 .container-sm,
.preview-section-style-7 .container-xl {
    max-width: 1400px;
  }
}
.preview-section-style-7 .element-list li:nth-child(1) {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.preview-box-style-3 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.preview-box-style-3 .item-img {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 25px;
  -webkit-box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.preview-box-style-3 .item-img img {
  width: 100%;
  border-radius: 6px;
  background: #ffffff;
  border-radius: 5px;
}
.preview-box-style-3 .item-content .title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.preview-box-style-3:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.preview-box-style-3:hover .item-img {
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
}

.preview-section-style-8 {
  background: -webkit-gradient(linear, left top, right top, color-stop(15.06%, #00c194), color-stop(66.42%, #02c194));
  background: linear-gradient(to right, #00c194 15.06%, #02c194 66.42%);
  z-index: 1;
}
.preview-section-style-8 .watermark-text {
  left: 0;
  top: 3%;
  width: 100%;
}
.preview-section-style-8 .watermark-text .text {
  color: rgba(0, 0, 0, 0.05);
}
.preview-section-style-8 .element-list li:nth-child(1) {
  left: 5%;
  top: 12%;
}
.preview-section-style-8 .element-list li:nth-child(1) span {
  display: block;
  -webkit-animation: topBottom50 10s linear infinite;
          animation: topBottom50 10s linear infinite;
}
.preview-section-style-8 .element-list li:nth-child(2) {
  right: 14%;
  top: 12%;
}
.preview-section-style-8 .element-list li:nth-child(2) span {
  display: block;
  -webkit-animation: leftRight50 10s linear infinite;
          animation: leftRight50 10s linear infinite;
}
.preview-section-style-8 .element-list li:nth-child(3) {
  left: 0;
  bottom: 0;
}
.preview-section-style-8 .element-list li:nth-child(3) span {
  display: block;
  -webkit-animation: zoomeffect2 10s linear infinite;
          animation: zoomeffect2 10s linear infinite;
}
.preview-section-style-8 .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 3s linear 0s;
  transition: all 3s linear 0s;
}

.inner-page-view {
  background-color: #f4f7fb;
  -webkit-box-shadow: 0px 11px 70px 0px rgba(99, 142, 135, 0.43);
          box-shadow: 0px 11px 70px 0px rgba(99, 142, 135, 0.43);
  border-radius: 8px;
}
.inner-page-view img {
  width: 100%;
  border-radius: 8px;
}

/*================================
//footer
=================================*/
.footer {
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 170%;
  min-height: 360px;
}
@media (max-width: 991px) {
  .footer {
    min-height: 220px;
    background-position-y: -100%;
  }
}
/*# sourceMappingURL=style.css.map */