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

1.    Variable
2.    Mixins
3.    Custom-animation
4.    Base
5.    Utility

6.    Header
7.    Banner
8.    Preview
9.    Footer

******************************/
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");
:root {
  --color-primary: #2d5be3;
  --color-secondary: #34b7f1;
  --color-white: #fff;
  --color-black: #000;
  --color-body: #444444;
  --color-border: #e2e2e2;
}

@-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;
}

@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -20%) rotate(44deg);
            transform: translate(-50%, -20%) rotate(44deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0px) rotate(0);
            transform: translateX(0) translateY(0px) rotate(0);
  }
}
.fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

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

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

/*==== heading fonts setup ====*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  line-height: 1.25;
  font-weight: 600;
  font-family: "Nunito", 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: #2d5be3;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
  color: #2d5be3;
}

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;
  }
}

section,
.section {
  position: relative;
}

/*======================
// back-to-top
========================*/
#back-to-top {
  font-size: 1rem;
  color: #fff;
  background: #2d5be3;
  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: #34b7f1;
}
#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-sub-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-heading .section-title {
  margin-bottom: 20px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .section-heading .section-title {
    font-size: 1.875rem;
  }
}
.section-heading p {
  line-height: 1.875;
}
.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;
}

.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;
}

.underline-animation_1, .copy-text a, .preview-box-style-1 .demo-btn-1, .menu__link {
  position: relative;
}
.underline-animation_1::after, .copy-text a::after, .preview-box-style-1 .demo-btn-1::after, .menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.underline-animation_1.active, .copy-text a.active, .preview-box-style-1 .active.demo-btn-1, .active.menu__link, .underline-animation_1:hover, .copy-text a:hover, .preview-box-style-1 .demo-btn-1:hover, .menu__link:hover {
  color: var(--color-white);
}
.underline-animation_1.active::after, .copy-text a.active::after, .preview-box-style-1 .active.demo-btn-1::after, .active.menu__link::after, .underline-animation_1:hover::after, .copy-text a:hover::after, .preview-box-style-1 .demo-btn-1:hover::after, .menu__link:hover::after {
  width: 100%;
  right: 0;
  left: auto;
  visibility: visible;
  opacity: 1;
}

/*===========================================
// 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;
  z-index: 99;
  background-color: rgba(45, 91, 227, 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;
  gap: 40px;
}
.menu__link {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.menu__link:focus {
  color: var(--color-white);
}

/*=====================================
//  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: 700;
  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: #2d5be3;
  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-mobile-navbar {
  position: relative;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(81, 81, 81, 0.15);
  z-index: 999;
  background: #2d5be3;
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .rt-mobile-navbar {
    display: none;
  }
}
.sticky .rt-mobile-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(45, 91, 227, 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);
  -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;
}

.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: #fff;
  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);
}

.logo {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo::before {
  content: "";
  height: 9px;
  width: 9px;
  background-color: var(--color-secondary);
  position: absolute;
  top: 1px;
  left: 44px;
  border-radius: 50%;
  -webkit-animation: pulse2 linear 1000ms infinite;
  animation: pulse2 linear 1000ms infinite;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #5edfff;
            box-shadow: 0 0 0 0 #5edfff;
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
            box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
            box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
  }
}

@keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #5edfff;
            box-shadow: 0 0 0 0 #5edfff;
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
            box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
            box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
  }
}
/*==================================
// Banner
===================================*/
.banner {
  z-index: 1;
  padding-top: 170px;
  background: transparent no-repeat center center/cover;
}
@media (max-width: 991px) {
  .banner {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding-top: 80px;
  }
}
.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: -5px;
  z-index: 2;
}
@media (max-width: 767px) {
  .banner .banner-shape {
    display: none;
  }
}
.banner .banner-shape svg {
  display: block;
  width: calc(139% + 1.3px);
  height: 300px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .banner .banner-shape svg {
    height: 350px;
  }
}
@media (min-width: 1600px) {
  .banner .banner-shape svg {
    height: 450px;
  }
}
.banner .banner-shape .shape-fill {
  fill: #f6f8fd;
}
@media (max-width: 991px) {
  .banner .banner-shape {
    display: none;
  }
}
.banner .banner-element {
  position: absolute;
  z-index: -1;
}
.banner .element_15 {
  left: 4%;
  top: 10%;
}
@media (max-width: 1366px) {
  .banner .element_15 {
    display: none;
  }
}
.banner .element_17 {
  left: 10%;
  top: 55%;
}
@media (max-width: 1440px) {
  .banner .element_17 {
    top: 41%;
  }
}
.banner .element_18 {
  left: 2%;
  bottom: -4%;
  z-index: 2;
}
@media (max-width: 1440px) {
  .banner .element_18 {
    left: -4%;
  }
}
.banner .element_19 {
  right: 4%;
  bottom: -3%;
  z-index: 2;
}
@media (max-width: 1440px) {
  .banner .element_19 {
    right: 0;
  }
}
.banner .element_20 {
  left: 0;
  top: 28%;
}
@media (max-width: 1440px) {
  .banner .element_20 {
    left: -22%;
    top: 37%;
  }
}
.banner .element_21 {
  right: 0;
  top: 30%;
}
@media (max-width: 1440px) {
  .banner .element_21 {
    display: none;
  }
}
.banner .element_22 {
  left: 0;
  top: 35%;
}
@media (min-width: 1921px) {
  .banner .element_22 {
    left: 0;
    top: 42%;
  }
}
@media (max-width: 1600px) {
  .banner .element_22 {
    left: -15%;
    top: 39%;
  }
}
@media (max-width: 1199px) {
  .banner .element_22,
.banner .element_15 {
    display: none;
  }
}
@media (max-width: 991px) {
  .banner .banner-element {
    display: none;
  }
}

.banner-img.style-1 {
  margin-bottom: -40px;
}

.banner-content {
  text-align: center;
}
.banner-content .title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .banner-content .title {
    font-size: 2.25rem;
  }
}
.banner-content .title span {
  font-size: 3rem;
  font-weight: 800;
}
.banner-content p {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .banner-content p {
    max-width: 70%;
    width: 100%;
  }
}
.banner-content .btn-wrap {
  margin: 45px 0;
}

.feature-list {
  gap: 12px;
}
.feature-list li {
  border-radius: 50%;
}

.rt-btn-1 {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#fc6076), color-stop(#ff9a44), color-stop(#ef9d43), to(#e75516));
  background: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
  -webkit-box-shadow: 0px 39px 43px 0px rgba(3, 12, 80, 0.56);
          box-shadow: 0px 39px 43px 0px rgba(3, 12, 80, 0.56);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 10px 40px;
  height: 60px;
  background-size: 300% 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.rt-btn-1::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid var(--color-white);
  border-radius: 30px;
}
.rt-btn-1:hover {
  color: var(--color-white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-position: 100% 0;
}

.banner .animate__animated {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
  -webkit-animation-duration: 2000ms;
          animation-duration: 2000ms;
}

/*===================================
// preview-section
====================================*/
.preview-section-style-1 {
  z-index: 1;
  background-color: #f6f8fd;
  padding: 120px 0;
  margin-top: -5px;
}
@media (max-width: 991px) {
  .preview-section-style-1 {
    padding: 80px 0;
  }
}
.preview-section-style-1 .section-heading {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .preview-section-style-1 .section-heading {
    margin-bottom: 30px;
  }
}
.preview-section-style-1 .feature-list-style-1 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .preview-section-style-1 .feature-list-style-1 {
    margin-bottom: 40px;
  }
}
.preview-section-style-1 .element_1,
.preview-section-style-1 .element_2 {
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199px) {
  .preview-section-style-1 .element_1,
.preview-section-style-1 .element_2 {
    display: none;
  }
}
.preview-section-style-1 .element_1 {
  left: 0;
  bottom: 20%;
}
.preview-section-style-1 .element_2 {
  right: 0;
  top: 2%;
}

.preview-section-shape-style-1 {
  position: relative;
}
.preview-section-shape-style-1 span {
  display: block;
}
.preview-section-shape-style-1 .element_3 {
  margin-top: -40px;
}
.preview-section-shape-style-1 .element_3 img {
  width: 100%;
}
@media (max-width: 991px) {
  .preview-section-shape-style-1 {
    display: none;
  }
}

.preview-section-shape-style-2 {
  position: relative;
}
.preview-section-shape-style-2 span {
  display: block;
}
.preview-section-shape-style-2 .element_14 {
  margin-top: -80px;
}
.preview-section-shape-style-2 .element_14 img {
  width: 100%;
}
@media (max-width: 991px) {
  .preview-section-shape-style-2 {
    display: none;
  }
}

.feature-list-style-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.feature-list-style-1 li {
  font-size: 1.125rem;
  color: var(--color-black);
  font-weight: 600;
  -webkit-box-shadow: 0px 21px 27px 0px rgba(174, 174, 174, 0.28);
          box-shadow: 0px 21px 27px 0px rgba(174, 174, 174, 0.28);
  background-color: var(--color-white);
  padding: 5px 30px 5px 5px;
  border-radius: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.feature-list-style-1 li .icon {
  font-size: 0.875rem;
  color: var(--color-white);
  background-image: linear-gradient(26deg, #ff6431 0%, #fc882a 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.preview-box-style-1 {
  position: relative;
  border-radius: 10px;
  background-color: white;
  -webkit-box-shadow: 0px 27px 38px 0px rgba(154, 165, 193, 0.28);
          box-shadow: 0px 27px 38px 0px rgba(154, 165, 193, 0.28);
  padding: 10px;
}
.preview-box-style-1 .top-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.preview-box-style-1 .top-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #cccccc;
}
.preview-box-style-1 .item-img {
  position: relative;
  overflow: hidden;
}
.preview-box-style-1 .item-img > a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}
.preview-box-style-1 .item-img > a::after {
  background-color: rgba(12, 12, 12, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.preview-box-style-1 .item-img img {
  width: 100%;
}
.preview-box-style-1 .item-img .item-text-over {
  position: absolute;
  left: 0;
  top: 75%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
  font-size: 2rem;
  font-family: "Nunito", 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: 18px 8px 10px 8px;
}
.preview-box-style-1 .item-content .title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 0;
}
.preview-box-style-1 .item-content .title a {
  color: inherit;
}
.preview-box-style-1 .item-content .title a:hover {
  color: var(--color-primary);
}
.preview-box-style-1 .demo-btn-1 {
  font-size: 0.9375rem;
  line-height: 1;
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
}
.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 .item-text-over {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: visible;
  opacity: 1;
}

/*preview-section-style-2*/
.preview-section-style-2 {
  z-index: 1;
  padding-bottom: 220px;
}
@media (max-width: 991px) {
  .preview-section-style-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.preview-section-style-2 .element_4,
.preview-section-style-2 .element_5 {
  position: absolute;
  z-index: -1;
}
.preview-section-style-2 .element_4 {
  left: 12%;
  top: 42%;
  z-index: 2;
}
@media (min-width: 1921px) {
  .preview-section-style-2 .element_4 {
    left: 21%;
  }
}
.preview-section-style-2 .element_5 {
  right: 10%;
  top: 32%;
}
@media (min-width: 1921px) {
  .preview-section-style-2 .element_5 {
    right: 17%;
  }
}
@media (max-width: 1600px) {
  .preview-section-style-2 .element_4 {
    left: 0;
  }
  .preview-section-style-2 .element_5 {
    right: 0;
  }
}
@media (max-width: 1366px) {
  .preview-section-style-2 .element_4 {
    top: 50%;
  }
  .preview-section-style-2 .element_5 {
    top: 50%;
  }
}
@media (max-width: 991px) {
  .preview-section-style-2 .element_4,
.preview-section-style-2 .element_5 {
    display: none;
  }
}

/*plugin-preview-box-style-3*/
.plugin-preview-box-style-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 120px;
  padding: 12px 20px;
  border-radius: 5px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.13);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.plugin-preview-box-style-3:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 10px 43px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 43px 0px rgba(0, 0, 0, 0.3);
}

/*preview-section-style-3*/
.preview-section-style-3 {
  background-color: #f2f8ff;
  z-index: 1;
  padding: 140px 0;
}
@media (max-width: 991px) {
  .preview-section-style-3 {
    padding: 80px 0;
  }
}

.resoponsive-img-wrap {
  position: relative;
}
.resoponsive-img-wrap.style-1 {
  margin-left: 50px;
  margin-right: -80px;
  text-align: center;
}
.resoponsive-img-wrap.style-1 .main-img_1 {
  position: relative;
  z-index: 2;
}
.resoponsive-img-wrap.style-1 .element_6,
.resoponsive-img-wrap.style-1 .element_7,
.resoponsive-img-wrap.style-1 .element_8,
.resoponsive-img-wrap.style-1 .element_9,
.resoponsive-img-wrap.style-1 .element_10 {
  position: absolute;
  z-index: -1;
}
.resoponsive-img-wrap.style-1 .element_6 {
  left: 0;
  top: -10%;
}
.resoponsive-img-wrap.style-1 .element_7 {
  left: 12%;
  top: 17%;
  z-index: 1;
}
.resoponsive-img-wrap.style-1 .element_8 {
  left: 40%;
  top: -15px;
}
.resoponsive-img-wrap.style-1 .element_9 {
  right: 8%;
  top: -8%;
}
.resoponsive-img-wrap.style-1 .element_10 {
  left: 10%;
  top: -5%;
}
@media (max-width: 1199px) {
  .resoponsive-img-wrap.style-1 {
    margin: 0;
  }
  .resoponsive-img-wrap.style-1 .element_6,
.resoponsive-img-wrap.style-1 .element_7,
.resoponsive-img-wrap.style-1 .element_8,
.resoponsive-img-wrap.style-1 .element_9 {
    display: none;
  }
}

/*preview-section-style-4*/
.preview-section-style-4 {
  background-color: #0d0f16;
  padding: 140px 0;
  z-index: 44;
}
@media (max-width: 991px) {
  .preview-section-style-4 {
    padding: 80px 0;
  }
}
.preview-section-style-4 .star_1,
.preview-section-style-4 .star_2,
.preview-section-style-4 .star_3,
.preview-section-style-4 .star_4,
.preview-section-style-4 .star_5,
.preview-section-style-4 .circle_1,
.preview-section-style-4 .circle_2,
.preview-section-style-4 .circle_3 {
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991) {
  .preview-section-style-4 .star_1,
.preview-section-style-4 .star_2,
.preview-section-style-4 .star_3,
.preview-section-style-4 .star_4,
.preview-section-style-4 .star_5,
.preview-section-style-4 .circle_1,
.preview-section-style-4 .circle_2,
.preview-section-style-4 .circle_3 {
    display: none;
  }
}
.preview-section-style-4 .star_1,
.preview-section-style-4 .star_2,
.preview-section-style-4 .star_3,
.preview-section-style-4 .star_4,
.preview-section-style-4 .star_5 {
  z-index: 9;
}
.preview-section-style-4 .star_1 {
  left: 8%;
  top: 8%;
}
.preview-section-style-4 .star_1 img {
  -webkit-animation: animationFramesOne 10s linear infinite;
          animation: animationFramesOne 10s linear infinite;
}
.preview-section-style-4 .star_2 {
  left: 14%;
  top: 35%;
}
.preview-section-style-4 .star_2 img {
  -webkit-animation: animationFramesTwo 10s linear infinite;
          animation: animationFramesTwo 10s linear infinite;
}
.preview-section-style-4 .star_3 {
  top: 10%;
  right: 15%;
}
.preview-section-style-4 .star_3 img {
  -webkit-animation: animationFramesThree 10s linear infinite;
          animation: animationFramesThree 10s linear infinite;
}
.preview-section-style-4 .star_4 {
  right: 14%;
  top: 35%;
}
.preview-section-style-4 .star_4 img {
  -webkit-animation: animationFramesFour 10s linear infinite;
          animation: animationFramesFour 10s linear infinite;
}
.preview-section-style-4 .star_5 {
  right: 14%;
  bottom: 15%;
}
.preview-section-style-4 .star_5 img {
  -webkit-animation: animationFramesFive 10s linear infinite;
          animation: animationFramesFive 10s linear infinite;
}
.preview-section-style-4 .circle_1,
.preview-section-style-4 .circle_2,
.preview-section-style-4 .circle_3 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}
.preview-section-style-4 .circle_1 {
  z-index: 5;
  width: 55%;
  height: 55%;
}
.preview-section-style-4 .circle_2 {
  z-index: 4;
  width: 75%;
  height: 75%;
}
.preview-section-style-4 .circle_3 {
  z-index: 3;
  width: 85%;
  height: 85%;
}

.ex-position-hard {
  position: relative;
  z-index: 32;
}

.feature-box-style-1 .item-img {
  border-radius: 50px;
}
.feature-box-style-1 .item-img img {
  width: 100%;
  height: auto;
  border-radius: 50px;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.widget-img {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 1366px) {
  .widget-img.style-1 {
    margin-left: -80px;
  }
}
.widget-img.style-1 .element_11,
.widget-img.style-1 .element_12 {
  position: absolute;
  z-index: -1;
}
.widget-img.style-1 .element_11 {
  left: 0;
  bottom: 0;
}
.widget-img.style-1 .element_12 {
  right: 0;
  top: 0;
}
@media (min-width: 1366px) {
  .widget-img.style-2 {
    margin-right: -120px;
    margin-left: -40px;
  }
}
.widget-img.style-2 .element_13 {
  position: absolute;
  z-index: -1;
  left: 8%;
  top: 6%;
}
@media (min-width: 1366px) {
  .widget-img.style-3 {
    margin-right: -80px;
  }
}

.widget-common-padding {
  padding: 50px 0;
}

/*preview-section-style-5*/
.preview-section-style-5 {
  padding-top: 30px;
}

.preview-section-style-6 {
  background-color: #f5f5f5;
  z-index: 1;
}

.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  min-height: 240px;
  padding: 15px;
}
.preview-box-style-2 .item-content {
  padding: 25px 0px 20px;
}
.preview-box-style-2 .item-content .title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}
.preview-box-style-2:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*================================
//footer
=================================*/
.footer {
  background-color: #292d3a;
  min-height: 260px;
  padding: 40px 0;
}
.footer .logo {
  margin-bottom: 25px;
}

.copy-text {
  color: var(--color-white);
  font-size: 1.0625rem;
  font-weight: 400;
}
.copy-text a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */