@charset "UTF-8";

/**
  # Project: 	CouponZ - Deals and Coupon HTML Template
  # Version: 	1.2.4
  # Author: 	CodeBoxr
  # Author URI: 	https://www.codeboxr.com
  # Support: 	https://www.codeboxr.com/support
  # License URI: 	http://themeforest.net/licenses/standard
*/

/*--------------------------------------------------------------
  >>> TABLE OF CONTENTS:
  ----------------------------------------------------------------
  # Base
  # Sections
    ## Header
    ## Banner
    ## Footer

  --------------------------------------------------------------*/

/* Fool-proof @font-face */

/* Based on http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/ */

html {
  font-size: 62.5%;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }
}

@keyframes slide-down {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }
}

.element {
  width: 100px;
  height: 100px;
  background: black;
  -webkit-animation: slide-down 5s 3;
  animation: slide-down 5s 3;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.zoom {
  -webkit-animation-name: zoom;
  animation-name: zoom;
}

@-webkit-keyframes zoom2 {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom2 {
  from {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.zoom2 {
  -webkit-animation-name: zoom2;
  animation-name: zoom2;
}

@-webkit-keyframes zoommd {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes zoommd {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

.zoomBounce {
  -webkit-animation-name: zoomBounce;
  animation-name: zoomBounce;
}

@-webkit-keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }

  100% {
    -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
    transform: translateX(30px) scale(1.3) translateY(10px);
  }
}

@keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }

  100% {
    -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
    transform: translateX(30px) scale(1.3) translateY(10px);
  }
}

@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
  }
}

@-webkit-keyframes gptFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes gptFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes gptFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes gptFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes gptFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes gptFadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes gptFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes gptFadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes gptFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes gptFadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes gptZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes gptZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes gptBounceIn {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes gptBounceIn {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.gptFade {
  -webkit-animation-name: gptFade;
  animation-name: gptFade;
}

.gptFadeUp {
  -webkit-animation-name: gptFadeUp;
  animation-name: gptFadeUp;
}

.gptFadeDown {
  -webkit-animation-name: gptFadeDown;
  animation-name: gptFadeDown;
}

.gptFadeLeft {
  -webkit-animation-name: gptFadeLeft;
  animation-name: gptFadeLeft;
}

.gptFadeRight {
  -webkit-animation-name: gptFadeRight;
  animation-name: gptFadeRight;
}

.gptZoomIn {
  -webkit-animation-name: gptZoomIn;
  animation-name: gptZoomIn;
}

.gptBounceIn {
  -webkit-animation-name: gptBounceIn;
  animation-name: gptBounceIn;
}

@-webkit-keyframes jumping {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@keyframes jumping {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@-webkit-keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes moveclouds {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(30px, 0px, 0);
    transform: translate3d(30px, 0px, 0);
    opacity: 1;
  }
}

@keyframes moveclouds {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate3d(-20px, 20px, 0);
    transform: translate3d(-20px, 20px, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(30px, 0px, 0);
    transform: translate3d(30px, 0px, 0);
    opacity: 1;
  }
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes pulse {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 120px;
    width: 120px;
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 120px;
    width: 120px;
    opacity: 0;
  }
}

@-webkit-keyframes pulsesm {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 80px;
    width: 80px;
    opacity: 0;
  }
}

@keyframes pulsesm {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 80px;
    width: 80px;
    opacity: 0;
  }
}

.gpUpX {
  -webkit-animation-name: gpUpX;
  animation-name: gpUpX;
}

.gpUpSmX {
  -webkit-animation: gpUpX 1s both 1s;
  animation: gpUpX 1s both 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.gpDownX {
  -webkit-animation-name: gpDownX;
  animation-name: gpDownX;
}

@-webkit-keyframes gpUpX {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -30px);
    transform: translate(80px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes gpUpX {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -30px);
    transform: translate(80px, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gpDownX {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 80px);
    transform: translate(-80px, 80px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes gpDownX {
  0% {
    opacity: 0;
    -webkit-transform: translate(-80px, 80px);
    transform: translate(-80px, 80px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes animationFramesTwo {
  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);
  }
}

@keyframes animationFramesTwo {
  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 leafMotion {
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}

@keyframes leafMotion {
  50% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}

@-webkit-keyframes slideInnew3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes slideInnew3 {
  0% {
    opacity: 0;
    -webkit-transform: translate(80px, -80px);
    transform: translate(80px, -80px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes animeone {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(80px, 1px) rotate(50deg);
    transform: translate(80px, 1px) rotate(50deg);
  }

  40% {
    -webkit-transform: translate(145px, 72px) rotate(90deg);
    transform: translate(145px, 72px) rotate(90deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(125deg);
    transform: translate(83px, 122px) rotate(125deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(140deg);
    transform: translate(-40px, 72px) rotate(140deg);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}

@keyframes animeone {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(80px, 1px) rotate(50deg);
    transform: translate(80px, 1px) rotate(50deg);
  }

  40% {
    -webkit-transform: translate(145px, 72px) rotate(90deg);
    transform: translate(145px, 72px) rotate(90deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(125deg);
    transform: translate(83px, 122px) rotate(125deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(140deg);
    transform: translate(-40px, 72px) rotate(140deg);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}

@-webkit-keyframes animetwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) 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);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}

@keyframes animetwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) 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);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}

@-webkit-keyframes animethree {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translateY(-73px) rotate(-36deg);
    transform: translateY(-73px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translateY(-141px) rotate(-72deg);
    transform: translateY(-141px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translateY(-83px) rotate(-108deg);
    transform: translateY(-83px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translateY(40px) rotate(-144deg);
    transform: translateY(40px) rotate(-144deg);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}

@keyframes animethree {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }

  20% {
    -webkit-transform: translateY(-73px) rotate(-36deg);
    transform: translateY(-73px) rotate(-36deg);
  }

  40% {
    -webkit-transform: translateY(-141px) rotate(-72deg);
    transform: translateY(-141px) rotate(-72deg);
  }

  60% {
    -webkit-transform: translateY(-83px) rotate(-108deg);
    transform: translateY(-83px) rotate(-108deg);
  }

  80% {
    -webkit-transform: translateY(40px) rotate(-144deg);
    transform: translateY(40px) rotate(-144deg);
  }

  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 26px;
  font-weight: 400;
  color: #3a3b3c;
}

.no-scroll {
  overflow: hidden;
}

svg {
  display: block;
}

a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container {
  max-width: 1148px;
}

html {
  font-size: 62.5%;
}

/* rules for body contents */

body {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #ffffff;
  color: #3a3b3c;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Cabin", sans-serif;
}

h1,
.h1 {
  font-size: 60px;
  font-size: 6rem;
  font-weight: 800;
}

h1 a,
.h1 a {
  font-size: inherit;
  font-weight: inherit;
}

h2,
.h2 {
  font-size: 50px;
  font-size: 5rem;
  font-weight: 700;
}

h2 a,
.h2 a {
  font-size: inherit;
  font-weight: inherit;
}

h3,
.h3 {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 400;
}

h3 a,
.h3 a {
  font-size: inherit;
  font-weight: inherit;
}

h4,
.h4 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 400;
}

h4 a,
.h4 a {
  font-size: inherit;
  font-weight: inherit;
}

h5,
.h5 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
}

h5 a,
.h5 a {
  font-size: inherit;
  font-weight: inherit;
  color: #131c33;
}

h5 a:hover,
h5 a:active,
h5 a:focus,
.h5 a:hover,
.h5 a:active,
.h5 a:focus {
  text-decoration: none;
}

h5.title {
  font-family: "Cabin", sans-serif;
  margin-bottom: 8px;
}

h5.title a {
  color: #131c33;
}

h5.title a:hover,
h5.title a:active,
h5.title a:focus {
  text-decoration: none;
}

h6,
.h6 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}

h6 a,
.h6 a {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3a3b3c;
}

.double-list li {
  float: left;
  width: 50%;
}

p {
  margin-bottom: 10px;
}

a,
a:hover,
a:focus {
  color: #3498db;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.img-left {
  padding: 0 2rem 1rem 0;
  float: left;
}

.img-right {
  padding: 0 2rem 1rem 0;
  float: right;
}

.typography-page-wrapper img {
  max-width: 500px;
}

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

.section-padding {
  padding: 100px 0;
}

.cbx-switcher-area {
  position: fixed;
  top: 35%;
  right: 0;
  max-width: 300px;
  z-index: 1891;
}

.cbx-switcher-btn:active,
.cbx-switcher-btn:focus,
.cbx-switcher-btn:hover {
  color: #fff;
}

.cbx-switcher-inner {
  position: relative;
}

.cbx-switcher-btn {
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1892;
  padding: 5px;
}

.cbx-switcher-body {
  background: rgba(230, 230, 230, 0.93);
  padding: 10px;
  width: 260px;
  position: absolute;
  top: 0;
  right: -280px;
}

.cbx-switcher-list li {
  height: 30px;
  width: 30px;
  float: left;
  display: inline-block;
  margin: 0 20px 20px 0;
}

.cbx-switcher-list li a {
  width: 100%;
  height: 100%;
  display: block;
}

.cbx-list-default,
.cbx-switcher-btn {
  background: #3b60c9;
}

.cbx-list-yellow {
  background: #e67e22;
}

.cbx-list-red {
  background: #e74c3c;
}

.cbx-list-orange {
  background: #f5740a;
}

.cbx-list-olive {
  background: #559137;
}

.cbx-list-violet {
  background: #93c;
}

.cbx-list-pink {
  background: #FF69B4;
}

.cbx-list-navy {
  background: #3b5998;
}

.scrollToTop {
  width: 40px;
  height: 40px;
  padding: 7px 10px 10px 10px;
  text-align: center;
  background-color: white;
  font-weight: bold;
  color: #5677fc;
  text-decoration: none;
  position: fixed;
  right: 40px;
  display: none;
  bottom: 40px;
  border: 1px solid;
  border-color: #5677fc;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0.5em;
  z-index: 999;
}

.scrollToTop:hover {
  background-color: #5677fc;
  color: #ffffff;
}

/*--------------------------------------------------------------
  ##  Section Heading
  --------------------------------------------------------------*/

.section-heading {
  font-family: "Ubuntu", sans-serif;
  color: #3a3b3c;
  position: relative;
  font-weight: 100;
  margin-bottom: 50px;
  z-index: 2;
  margin-top: 0px;
}

.section-heading:before {
  content: " ";
  position: absolute;
  background-color: #ededfa;
  width: 100px;
  height: 50px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  z-index: -1;
}

/*--------------------------------------------------------------
  ##  Button
  --------------------------------------------------------------*/

.cbx-btn {
  font-family: "Ubuntu", sans-serif;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  background-color: #5677fc;
  color: #fff;
  border: 1px solid #5677fc;
  display: inline-block;
}

.cbx-btn.btn-sm {
  padding: 10px 15px !important;
  font-size: 12px;
  line-height: 1;
}

.cbx-btn.btn-block {
  display: block;
  width: 100%;
}

.cbx-btn.btn-lg {
  padding: 12px 35px;
  font-size: 18px;
}

.cbx-btn:hover {
  background-color: transparent;
  color: #5677fc;
  border-color: #5677fc;
}

/*--------------------------------------------------------------
  ##  Typography
  --------------------------------------------------------------*/

/* rules for body contents */

body {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: white;
  color: #3a3b3c;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Ubuntu", sans-serif;
}

h1,
.h1 {
  font-size: 60px;
  font-size: 6rem;
  font-weight: 100;
}

h1 a,
.h1 a {
  font-size: inherit;
  font-weight: inherit;
}

h2,
.h2 {
  font-size: 50px;
  font-size: 5rem;
  font-weight: 100;
}

h2 a,
.h2 a {
  font-size: inherit;
  font-weight: inherit;
}

h3,
.h3 {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 100;
}

h3 a,
.h3 a {
  font-size: inherit;
  font-weight: inherit;
}

h4,
.h4 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 100;
}

h4 a,
.h4 a {
  font-size: inherit;
  font-weight: inherit;
}

h5,
.h5 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 100;
}

h5 a,
.h5 a {
  font-size: inherit;
  font-weight: inherit;
}

h6,
.h6 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 100;
}

h6 a,
.h6 a {
  font-size: inherit;
  font-weight: inherit;
}

p,
ul,
ol {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3a3b3c;
}

p {
  margin-bottom: 10px;
}

a,
a:hover,
a:focus {
  color: #5677fc;
}

a:hover,
a:hover:hover,
a:focus:hover {
  text-decoration: none;
}

.img-left {
  padding: 15px 15px 15px 0;
  float: left;
}

.img-right {
  padding: 15px 0 15px 15px;
  float: right;
}

.img-center {
  display: block;
  padding: 15px 0;
  margin: 0 auto;
}

.btn-light {
  background-color: #9aadfd;
  color: #ffffff;
  border-color: #9aadfd;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-light:hover {
  color: #9aadfd;
  background-color: white;
}

.btn-brand {
  background-color: #5677fc;
  color: #ffffff;
  border-color: #5677fc;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-brand:hover {
  color: #5677fc;
  background-color: white;
}

.btn-dark {
  background-color: #0b3bfb;
  color: #ffffff;
  border-color: #0b3bfb;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-dark:hover {
  color: #0b3bfb;
  background-color: white;
}

.table > thead > tr > th {
  font-weight: bold;
  border-bottom: 0px solid;
}

.table > tbody > tr,
.table > tfoot > tr,
.table > thead > tr {
  -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.06);
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.06);
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 15px 10px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Cabin", sans-serif;
}

.table > tbody > tr > td:nth-child(2n),
.table > tbody > tr > th:nth-child(2n),
.table > tfoot > tr > td:nth-child(2n),
.table > tfoot > tr > th:nth-child(2n),
.table > thead > tr > td:nth-child(2n),
.table > thead > tr > th:nth-child(2n) {
  background-color: rgba(86, 119, 252, 0.05);
}

.rating i {
  color: #5677fc;
}

.table-select {
  height: 25px;
  width: 70px;
  padding: 2px;
  font-size: 13px;
  border-color: transparent;
  color: #5677fc;
  background-color: rgba(86, 119, 252, 0.05);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.table-select:focus {
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#main {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section-heading {
  font-family: "Ubuntu", sans-serif;
  color: #3a3b3c;
  position: relative;
  font-weight: 100;
  margin-bottom: 50px;
  z-index: 2;
  margin-top: 0px;
}

.section-heading:before {
  content: " ";
  position: absolute;
  background-color: #ededfa;
  width: 100px;
  height: 50px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  z-index: -1;
}

.no-top-margin {
  margin-top: 0px;
}

.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  top: 5px;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 1px;
  top: 6px;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
  line-height: 1;
}

.checkbox input[type=checkbox] {
  opacity: 0;
}

.checkbox input[type=checkbox]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.checkbox input[type=checkbox]:checked + label::after {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  font-size: 11px;
}

.checkbox input[type=checkbox]:disabled + label {
  opacity: 0.65;
}

.checkbox input[type=checkbox]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type=checkbox]:checked + label::before {
  background-color: #5677fc;
  border-color: #5677fc;
}

.checkbox-primary input[type=checkbox]:checked + label::after {
  color: #fff;
}

a.modalAnchor {
  cursor: pointer;
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/

.site-header {
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

.site-header.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.site-header.header-transparent .codeboxr-main-menu > li > a:before {
  display: none;
}

.site-header .cbx-btn {
  line-height: 1;
  padding: 14px 30px;
}

.site-header .header-topbar-wrapper {
  border-top: 1px dashed #dddddd;
  border-bottom: 1px dashed #dddddd;
}

.site-header .header-topbar-wrapper .topbar-content {
  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;
}

.site-header .header-topbar-wrapper .coupon-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 30px;
  border-radius: 5px;
  background-color: #f9b320;
  display: inline-block;
  margin-left: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #f9b320;
}

@media (max-width: 576px) {
  .site-header .header-topbar-wrapper .coupon-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    margin-left: 10px;
  }
}

.site-header .header-topbar-wrapper .coupon-btn i {
  display: none;
}

.site-header .header-topbar-wrapper .coupon-btn:hover {
  background-color: transparent;
  color: #f9b320;
}

.site-header .search-btn {
  padding: 8px 14px;
  border-radius: 5px;
  background-color: #5677fc;
  display: inline-block;
  color: #fff;
  margin-left: 15px;
}

@media (max-width: 576px) {
  .site-header .search-btn {
    margin-left: 5px;
    padding: 7px 9px;
  }
}

.site-header .site-logo img {
  max-width: 195px;
}

@media (max-width: 991px) {
  .site-header .site-logo img {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .site-header .site-logo img {
    max-width: 120px;
  }
}

.site-header .site-logo .site-title {
  font-size: 34px;
  font-weight: 500;
  padding: 8px 0;
  margin: 0;
}

.site-header .site-logo a {
  font-size: 30px;
  font-weight: 700;
  padding: 18px 0;
  display: block;
  color: #000;
}

.site-header .site-logo a h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.site-header .site-logo .logo-sticky {
  display: none;
}

.site-header .burger-menu {
  display: none;
  cursor: pointer;
  margin: 0;
}

@media (max-width: 991px) {
  .site-header .burger-menu {
    display: block;
  }
}

.site-header .burger-menu span {
  background: #2c2c51;
  height: 2px;
  display: block;
  width: 20px;
  margin: 5px 0;
}

.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header-position .site-header.header-fixed.showed {
  top: 32px;
}

@media (max-width: 782px) {
  .header-position .site-header.header-fixed.showed {
    top: 46px;
  }
}

.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}

.site-header.header-fixed.showed .site-logo a {
  color: #131c33;
}

.site-header.header-fixed.showed .site-logo h3 {
  color: #131c33;
}

.site-header.header-fixed.showed .add-menu li a {
  color: #131c33;
}

@media (min-width: 1200px) {
  .site-header .site-logo {
    width: 15%;
  }

  .site-header .menu-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .submenu-align-right .site-header {
    width: auto;
  }
}

.site-header .main-nav-container {
  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;
  width: 100%;
}

.site-header .main-nav {
  position: relative;
}

.site-header .codeboxr-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .codeboxr-main-menu > li {
  padding: 27px 0;
}

.site-header .codeboxr-main-menu > li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  background: #5677fc;
}

.site-header .codeboxr-main-menu > li.current-menu-item a {
  color: #5677fc;
}

.site-header .codeboxr-main-menu > li > a {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3a3b3c;
  position: relative;
}

.site-header .codeboxr-main-menu > li > a:hover {
  color: #5677fc;
}

.site-header .codeboxr-main-menu > li:nth-last-child(-n+2).has-submenu .sub-menu {
  left: auto;
  right: 0;
}

.site-header .codeboxr-main-menu > li:nth-last-child(-n+2).has-submenu .sub-menu li ul {
  right: 100%;
}

.site-header .codeboxr-main-menu > li:not(.mega-menu) {
  position: relative;
}

.menu-light .site-header .codeboxr-main-menu > li > a {
  color: #fff;
}

.site-header .codeboxr-main-menu li {
  display: inline-block;
}

.site-header .codeboxr-main-menu li:not(:last-child) {
  margin-right: 40px;
}

.site-header .codeboxr-main-menu li.has-submenu > a:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: calc(50% - 11px);
  right: -17px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  font-size: 14px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu {
  margin: 0;
  padding-left: 0;
  position: absolute;
  top: 115%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 200px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 2222;
  width: 220px;
  padding: 15px 30px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  line-height: 36px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li a {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 7px 0;
  display: block;
  line-height: 1.5;
  color: #6c6d6e;
  font-weight: 400;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li a:after {
  top: calc(50% - 7px);
  right: 15px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li a:hover {
  color: #5677fc;
  padding-left: 5px;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 220px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0px 5px 10px #14303a15;
  box-shadow: 0px 5px 10px #14303a15;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
}

.site-header .codeboxr-main-menu li.has-submenu .sub-menu li.current-menu-item a {
  color: #5677fc;
}

.site-header .codeboxr-main-menu li.has-submenu:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.site-header.header-transparent.header-2 .codeboxr-main-menu > li > a {
  color: #fff;
}

.site-header.submenu-align-right .menu-wrapper {
  width: auto;
}

.site-header.submenu-align-right .codeboxr-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu {
  left: auto;
  right: 0;
}

.site-header.submenu-align-right .codeboxr-main-menu > li:nth-last-child(-n+3).has-submenu .sub-menu li ul {
  right: 100%;
}

.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.site-header.header-fixed.showed .header-topbar {
  display: none;
}

.site-header.header-fixed.showed .site-logo a {
  padding: 7px 0;
}

.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}

.site-header.header-fixed.showed .site-logo .logo-sticky {
  display: block;
}

.site-header.header-fixed.showed .codeboxr-main-menu > li {
  padding: 27px 20px;
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

#site-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}

.canvas-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  display: none;
}

.close-menu {
  height: 40px;
  width: 40px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 43px;
  color: #051441;
  font-size: 15px;
}

.codeboxr-main-menu {
  list-style: none;
}

.codeboxr-main-menu ul {
  list-style: none;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 222;
}

@media (max-width: 991px) {
  #site-navigation {
    padding: 15px 0;
  }

  .site-header .burger-menu {
    display: block;
  }

  .site-header .canvas-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .site-header .site-logo .logo-sticky {
    display: none;
  }

  .site-header .mobile-offcanvas-logo img {
    max-width: 150px;
  }

  .site-header.header-fixed.showed .site-logo a {
    padding: 11px 0;
  }

  .site-header.header-fixed.showed .logo-sticky {
    display: block;
  }

  .site-header .site-logo a {
    padding: 13px 0;
  }

  .site-header .main-nav-container {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #fff;
    max-width: 320px;
    width: 100%;
    text-align: left;
    overflow-y: auto;
    padding-bottom: 80px;
    left: -100px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: block;
  }

  .header-position .site-header .main-nav-container {
    top: 32px;
  }
}

@media (max-width: 991px) and (max-width: 780px) {
  .header-position .site-header .main-nav-container {
    top: 46px;
  }
}

@media (max-width: 991px) and (max-width: 420px) {
  .site-header .main-nav-container {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav-container.open-menu {
    opacity: 1;
    left: 0;
    visibility: visible;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav-container li {
    display: block;
    padding: 0 !important;
    margin-right: 0 !important;
  }

  .site-header .main-nav-container li:before {
    display: none;
  }

  .site-header .main-nav-container li a {
    font-size: 16px;
    color: #131c33;
    position: relative;
    z-index: 1;
    padding: 8px 25px;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: capitalize;
    font-weight: 500;
    border-left: 2px solid transparent;
  }

  .site-header .main-nav-container li.has-submenu {
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
    min-height: 100%;
  }

  .site-header .main-nav-container li.has-submenu i {
    position: absolute;
    top: 6px;
    right: 20px;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    z-index: 222;
  }

  .site-header .main-nav-container li.has-submenu > a {
    position: relative;
  }

  .site-header .main-nav-container li.has-submenu > a:after {
    display: none;
  }

  .site-header .main-nav-container li.has-submenu > a.active:after {
    content: "";
  }

  .site-header .main-nav-container li.has-submenu li a {
    font-size: 16px;
  }

  .site-header .main-nav-container li.has-submenu li.has-submenu .sub-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1;
    visibility: visible;
  }

  .site-header .main-nav-container li.has-submenu li.has-submenu .sub-menu li ul.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .site-header .main-nav-container li.has-submenu .sub-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 991px) {
  .site-header.header-main .codeboxr-burger-menu {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .header-position .site-header.header-fixed.showed .main-nav-container {
    top: 0;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav {
    position: relative;
    z-index: 3333;
    line-height: 1.2;
  }

  .site-header .main-nav .codeboxr-main-menu {
    padding-left: 0;
  }

  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0;
    display: none;
  }

  .site-header .main-nav .sub-menu.active .main-item > .menu-link {
    background: #f8f9fa;
  }

  .site-header .main-nav .sub-menu li a {
    border-top: 0;
  }

  .site-header .main-nav .sub-menu li.active a.active .ti-plus {
    color: #5677fc;
  }

  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: #5677fc;
    background: #f8f9fa;
    border-color: #5677fc;
  }

  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .site-header .main-nav {
    cursor: default;
    position: relative;
    z-index: 10;
    text-align: left;
    font-weight: 500;
    height: 100%;
    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;
  }

  .site-header .main-nav a:before,
  .site-header .main-nav .close-bar {
    display: none;
  }

  .site-header .main-nav .site-logo a {
    font-size: 40px;
  }

  .site-header .main-nav.hidden {
    display: none;
  }
}

/* Search Bar */

#showSearchBar {
  border-bottom: 1px dashed #ddd;
}

.searchbar-wrapper input {
  width: 100%;
  border: 0px solid;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  height: 60px;
}

.searchbar-wrapper input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/

.deal-coupon-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.deal-coupon-slider-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://via.placeholder.com/2160x1080");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  display: block;
  z-index: -1;
}

.deal-coupon-slider-wrapper .hero-slider-one {
  background-image: url("https://via.placeholder.com/600x400");
}

.deal-coupon-slider-wrapper .hero-slider-two {
  background-image: url("https://via.placeholder.com/600x400");
}

.deal-coupon-slider-wrapper .hero-slider-three {
  background-image: url("https://via.placeholder.com/600x400");
}

.deal-coupon-slider-wrapper .hero-slider-four {
  background-image: url("https://via.placeholder.com/600x400");
}

.deal-coupon-slider-wrapper .hero-area img {
  width: auto !important;
}

.deal-coupon-slider-wrapper .slider-list {
  position: relative;
}

.deal-coupon-slider-wrapper .slider-list .item {
  height: 500px;
}

.deal-coupon-slider-wrapper .slider-list .item .bg--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.deal-coupon-slider-wrapper .slider-list .item .hero-area {
  width: 100%;
  height: 100%;
}

.deal-coupon-slider-wrapper .slider-list .item .hero-area .offer {
  margin-top: 20px;
}

.deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content {
  margin-top: 35%;
  margin-bottom: 5%;
  background-image: url("https://via.placeholder.com/451x102");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px 20px;
  margin-left: -1px;
}

.deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content h6 a {
  color: #ffffff;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Ubuntu", sans-serif;
}

.deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content p {
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Ubuntu", sans-serif;
}

.deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content p i {
  margin-right: 5px;
}

.deal-coupon-slider-wrapper .slider-list .owl-dots {
  position: absolute;
  bottom: 0;
  right: 0;
}

.deal-coupon-slider-wrapper .slider-list .owl-dots .owl-dot span {
  background-color: white;
}

.deal-coupon-slider-wrapper .slider-list .owl-dots .owl-dot.active span {
  background-color: #5677fc;
  width: 12px;
  height: 12px;
}

.deal-coupon-slider-wrapper .slider-list .owl-nav {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.deal-coupon-slider-wrapper .slider-list .owl-nav .owl-prev {
  -webkit-transform: translate(-700%, 0%);
  -ms-transform: translate(-700%, 0%);
  transform: translate(-700%, 0%);
}

.deal-coupon-slider-wrapper .slider-list .owl-nav .owl-next {
  -webkit-transform: translate(700%, 0%);
  -ms-transform: translate(700%, 0%);
  transform: translate(700%, 0%);
}

.deal-coupon-slider-wrapper .banner-wrapper a img {
  width: 100%;
}

.deal-coupon-slider-wrapper .owl-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.no-padding-left {
  padding-left: 0px;
}

.no-padding-right {
  padding-right: 0px;
}

.owl-fadeIn,
.owl-fadeInLeft,
.owl-fadeInRight,
.owl-fadeInUp,
.owl-fadeInDown {
  visibility: hidden;
}

.owl-item.active .owl-fadeIn {
  -webkit-animation: fadeIn 0.8s linear 0s;
  animation: fadeIn 0.8s linear 0s;
  visibility: visible;
}

.owl-item.active .owl-fadeInDown {
  -webkit-animation: fadeInDown 0.8s linear 0s;
  animation: fadeInDown 0.8s linear 0s;
  visibility: visible;
}

.owl-item.active .owl-fadeInUp {
  -webkit-animation: fadeInUp 0.8s linear 0s;
  animation: fadeInUp 0.8s linear 0s;
  visibility: visible;
}

.owl-item.active .owl-fadeInLeft {
  -webkit-animation: fadeInLeft 0.8s linear 0s;
  animation: fadeInLeft 0.8s linear 0s;
  visibility: visible;
}

.owl-item.active .owl-fadeInRight {
  -webkit-animation: fadeInRight 0.8s linear 0s;
  animation: fadeInRight 0.8s linear 0s;
  visibility: visible;
}

/*--------------------------------------------------------------
  ##  Deal
  --------------------------------------------------------------*/

.new-deal-wrapper {
  background-color: #fbf8f8;
  padding: 50px 0px 80px;
}

.new-deal-wrapper .section-heading {
  margin: 0;
}

.new-deal-wrapper .owl-stage-outer {
  padding-top: 10px;
}

.popular-deal-wrapper {
  padding: 50px 0px;
}

.popular-deal-wrapper .section-heading {
  margin: 0;
}

.popular-deal-wrapper .owl-stage-outer {
  padding-top: 10px;
}

.section-heading-wrapper {
  margin-bottom: 50px;
}

.deal-item {
  background-color: white;
  margin-bottom: 20px;
  border: 1px solid;
  border-color: #dddddd;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.deal-item:hover {
  margin-top: -10px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 6px 0px 0px #5677fc;
  box-shadow: 0px 6px 0px 0px #5677fc;
}

.deal-item .deal-content {
  padding: 10px;
}

.deal-item .deal-content h6 {
  margin-top: 0px;
}

.deal-item .deal-content h6 a {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3a3b3c;
  font-weight: bold;
}

.deal-item .deal-content p {
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

.deal-item .deal-content .deal-content-bottom {
  display: block;
  overflow: hidden;
}

.deal-item .deal-content .deal-content-bottom p {
  float: left;
  font-family: "Ubuntu", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #5677fc;
  margin-bottom: 0px;
  margin-top: 8px;
}

.deal-item .deal-content .deal-content-bottom a {
  float: right;
  background-color: #f9b320;
  color: #ffffff;
  border: 1px solid;
  border-color: #f9b320;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.deal-item .deal-content .deal-content-bottom a:hover {
  color: #f9b320;
  background-color: white;
}

.deal-item .deal-thumb {
  position: relative;
  height: 180px;
}

.deal-item .deal-thumb img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
  width: 100%;
}

.deal-item .deal-thumb .deal-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: #3a3b3c;
  color: #ffffff;
  padding: 5px 5px 5px 15px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 20% 48%, 0% 0%);
  clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 20% 48%, 0% 0%);
}

.deal-item .progress {
  height: 5px;
  width: 100%;
  background-color: #d5d5f3;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 0px;
  position: relative;
}

.deal-item .progress-bar {
  background: #5677fc;
}

.deal-item .tooltip.top {
  margin-top: -13px;
}

.deal-item .tooltip {
  position: relative;
  float: right;
}

.deal-item .tooltip .tooltip-inner {
  background-color: #3a3b3c;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 5px;
}

.deal-item .tooltip.top .tooltip-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #3a3b3c;
}

.owl-carousel.owl-theme .owl-nav {
  position: relative;
  z-index: 2;
  top: -200px;
}

.owl-carousel.owl-theme .owl-nav button {
  display: block;
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 50%;
}

.owl-carousel.owl-theme .owl-nav .owl-prev {
  font-size: 24px;
  font-size: 2.4rem;
  color: #5677fc;
  font-weight: bold;
  float: left;
  margin-left: -60px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.owl-carousel.owl-theme .owl-nav .owl-prev:hover {
  color: #ffffff;
  background-color: #5677fc;
}

.owl-carousel.owl-theme .owl-nav .owl-next {
  font-size: 24px;
  font-size: 2.4rem;
  color: #5677fc;
  font-weight: bold;
  float: right;
  margin-right: -60px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.owl-carousel.owl-theme .owl-nav .owl-next:hover {
  color: #ffffff;
  background-color: #5677fc;
}

.view-all {
  text-align: right;
  color: #5677fc;
}

/*--------------------------------------------------------------
##  Call To Action
--------------------------------------------------------------*/

.call-to-action-wrapper {
  padding: 100px 0px;
  /* background-image: url("../images/call-to-aciton/c2a.png"); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #f9b320;
}

.call-to-action-wrapper .call-to-action-content {
  text-align: center;
}

.call-to-action-wrapper .call-to-action-content h2 {
  color: #ffffff;
  font-size: 48px;
  font-size: 4.8rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 100;
}

.call-to-action-wrapper .call-to-action-content h2 a {
  color: #3a3b3c;
  text-decoration: none;
}

.call-to-action-wrapper .call-to-action-button {
  margin-top: 30px;
}

.call-to-action-wrapper .call-to-action-button ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  overflow: hidden;
}

.call-to-action-wrapper .call-to-action-button ul li {
  display: inline-block;
  margin-right: 30px;
  border-radius: 0.5em;
}

.call-to-action-wrapper .call-to-action-button ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  border-radius: 0.5em;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}

.call-to-action-wrapper .call-to-action-button ul li a .cta-btn-content {
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}

.call-to-action-wrapper .call-to-action-button ul li a .cta-btn-content span {
  display: block;
  font-size: 10px;
  font-size: 1rem;
}

.call-to-action-wrapper .call-to-action-button ul li a i {
  font-size: 26px;
  font-size: 2.6rem;
  float: left;
  padding: 10px 15px 10px 20px;
}

.call-to-action-wrapper .call-to-action-button ul .apple-store {
  background-color: #071f34;
}

.call-to-action-wrapper .call-to-action-button ul .apple-store a:hover {
  color: #071f34;
  background-color: white;
}

.call-to-action-wrapper .call-to-action-button ul .google-play {
  background-color: #15a03f;
}

.call-to-action-wrapper .call-to-action-button ul .google-play a:hover {
  color: #15a03f;
  background-color: white;
}

/*--------------------------------------------------------------
  ##  Go To Know Us
  --------------------------------------------------------------*/

.get-to-know-us-wrapper {
  padding: 100px 0px;
  background-color: rgba(86, 119, 252, 0.05);
}

.get-to-know-us-wrapper .get-to-know-us-content h6 {
  font-size: 48px;
  font-size: 4.8rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
}

.get-to-know-us-wrapper .get-to-know-us-content p {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Cabin", sans-serif;
  margin-bottom: 30px;
}

.get-to-know-us-wrapper .get-to-know-us-content a {
  padding: 7px 30px;
}

.get-to-know-us-wrapper .get-to-know-us-video {
  position: relative;
}

.get-to-know-us-wrapper .get-to-know-us-video img {
  border-radius: 25px;
  -webkit-filter: brightness(0.6);
  filter: brightness(0.6);
}

.get-to-know-us-wrapper .get-to-know-us-video a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 10px solid;
  border-color: #00000073;
  text-align: center;
  border-radius: 50%;
}

.get-to-know-us-wrapper .get-to-know-us-video a i {
  background-color: #5677fc;
  color: #ffffff;
  font-size: 36px;
  font-size: 3.6rem;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  vertical-align: middle;
  line-height: 110px;
  padding-left: 5px;
}

/*--------------------------------------------------------------
  ##  Products
  --------------------------------------------------------------*/

.category-wrapper {
  padding: 50px 0px 100px;
  background-color: rgba(86, 119, 252, 0.05);
}

.widget.widget-couponz-category-filter {
  margin-bottom: 30px;
  border-radius: 0.5em;
}

.widget.widget-couponz-category-filter ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget.widget-couponz-category-filter ul li a {
  border-bottom: 1px solid;
  border-color: #dddddd;
  display: block;
  overflow: hidden;
  background-color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.widget.widget-couponz-category-filter ul li a:hover,
.widget.widget-couponz-category-filter ul li a.active {
  background-color: #5677fc;
}

.widget.widget-couponz-category-filter ul li a:hover span,
.widget.widget-couponz-category-filter ul li a.active span {
  color: #ffffff;
}

.widget.widget-couponz-category-filter ul li a .category-thumb {
  border-right: 1px solid;
  border-color: #dddddd;
  padding: 10px;
  background-color: #f5f9fe;
  float: left;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.widget.widget-couponz-category-filter ul li a .category-thumb img {
  width: auto;
  max-width: 25px;
  max-height: 25px;
  margin: 0 auto;
  display: block;
}

.widget.widget-couponz-category-filter ul li a span {
  padding-left: 10px;
  padding-top: 10px;
  display: inline-block;
  color: #3a3b3c;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Ubuntu", sans-serif;
}

.widget.widget-couponz-checkbox-filter {
  background-color: white;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 0.5em;
}

.widget.widget-couponz-checkbox-filter h4 {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Ubuntu", sans-serif;
  margin-top: 0px;
}

.widget.widget-couponz-slider-filter {
  background-color: white;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 0.5em;
}

.widget.widget-couponz-slider-filter h4 {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Ubuntu", sans-serif;
  margin-top: 0px;
}

.widget.widget-couponz-slider-filter label {
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
}

.widget.widget-couponz-slider-filter .slider-track {
  height: 5px;
}

.widget.widget-couponz-slider-filter .slider-track .slider-selection {
  background-image: none;
  background-color: #5677fc;
}

.widget.widget-couponz-slider-filter .slider-handle {
  background-color: #5677fc;
  background-image: none;
  top: -3px;
  cursor: pointer;
}

.widget.widget-couponz-slider-filter .slider-handle:hover {
  cursor: pointer;
}

.coupon-item {
  background-color: white;
  margin-bottom: 20px;
  border: 1px solid;
  border-color: #dddddd;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.coupon-item:hover {
  margin-top: -10px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 6px 0px 0px #5677fc;
  box-shadow: 0px 6px 0px 0px #5677fc;
}

.coupon-item:hover .coupon-thumb a {
  visibility: visible;
}

.coupon-item:hover .coupon-thumb img {
  -webkit-filter: brightness(0.2);
  filter: brightness(0.2);
}

.coupon-item .coupon-thumb {
  position: relative;
  height: 180px;
}

.coupon-item .coupon-thumb a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: hidden;
}

.coupon-item .coupon-thumb img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s, ease-out;
  -o-transition: all 0.2s, ease-out;
  transition: all 0.2s, ease-out;
}

.coupon-item .coupon-thumb .coupon-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: #3a3b3c;
  color: #ffffff;
  padding: 5px 5px 5px 15px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 20% 48%, 0% 0%);
  clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 20% 48%, 0% 0%);
}

.coupon-item .coupon-content {
  padding: 10px;
}

.coupon-item .coupon-content h6 {
  margin-top: 0px;
}

.coupon-item .coupon-content h6 a {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3a3b3c;
  font-weight: bold;
}

.coupon-item .coupon-content p {
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

.coupon-item .coupon-content .coupon-content-bottom {
  display: block;
  overflow: hidden;
}

.coupon-item .coupon-content .coupon-content-bottom p {
  float: left;
  font-family: "Ubuntu", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #5677fc;
  margin-bottom: 0px;
  margin-top: 8px;
}

.coupon-item .coupon-content .coupon-content-bottom a {
  float: right;
  background-color: #f9b320;
  color: #ffffff;
  border: 1px solid;
  border-color: #f9b320;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.coupon-item .coupon-content .coupon-content-bottom a:hover {
  color: #f9b320;
  background-color: white;
}

/*--------------------------------------------------------------
  ##  Blog
  --------------------------------------------------------------*/

.single-blog-item {
  margin-bottom: 30px;
}

.single-blog-item .blog-thumb a:hover img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

.single-blog-item .blog-thumb a img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-blog-item .blog-content {
  margin-bottom: 20px;
}

.single-blog-item .blog-content h4 {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

.single-blog-item .blog-content h4 a {
  color: #3a3b3c;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-blog-item .blog-content h4 a:hover {
  color: #5677fc;
}

.single-blog-item .blog-content p {
  margin-bottom: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #3a3b3c;
  font-family: "Cabin", sans-serif;
  text-align: justify;
  text-justify: inter-word;
}

.single-blog-item .blog-content .blog-tags ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}

.single-blog-item .blog-content .blog-tags ul li {
  padding-right: 10px;
  float: left;
}

.single-blog-item .blog-content .blog-tags ul li a {
  color: #3a3b3c;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
}

.single-blog-item .blog-content .blog-tags ul li a:hover {
  color: #5677fc;
}

.single-blog-item .blog-content .blog-tags ul li a i {
  padding-right: 8px;
}

.pagination-wrapper {
  display: table;
  margin: 0 auto;
}

.pagination-wrapper ul {
  list-style: none;
}

.pagination-wrapper ul .active a {
  background-color: #5677fc;
  color: #ffffff;
}

.pagination-wrapper ul li {
  display: inline-block;
  margin-bottom: 5px;
}

.pagination-wrapper ul li a {
  border-radius: 0.5em;
  color: #5677fc;
  font-family: "Ubuntu", sans-serif;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  min-width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  padding: 0;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 4px !important;
}

.pagination-wrapper ul li a:hover {
  background-color: #5677fc;
  color: #ffffff;
  border-color: #5677fc;
}

.pagination-wrapper ul li a i {
  margin: 0 5px;
}

.pagination-wrapper ul li.prev a,
.pagination-wrapper ul li.next a {
  padding: 0 15px;
  border-radius: 5px !important;
}

.pagination-single-wrapper {
  margin: 20px 0 50px;
}

.pagination-single-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-single-wrapper ul li {
  display: inline;
}

.pagination-single-wrapper ul li a {
  border-radius: 0.5em;
  color: #5677fc;
  font-family: "Ubuntu", sans-serif;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 6px 12px;
  border: 1px solid;
  border-color: #dddddd;
}

.pagination-single-wrapper ul li a:hover {
  border-color: #5677fc;
  background-color: #5677fc;
  color: #ffffff;
}

.pagination-single-wrapper ul li a i {
  margin: 0 5px;
}

.pagination-single-wrapper ul li:last-child {
  float: right;
}

.post-comment-form-group {
  margin-bottom: 30px;
}

.post-comment-form-group .checkbox {
  margin-bottom: 25px;
  margin-top: -5px;
}

.post-comment-form-group .checkbox label:before {
  top: 5px;
}

.post-comment-form-group .form-control.error {
  margin-bottom: 0px;
}

.post-comment-form-group .error {
  color: red;
  margin-bottom: 10px;
}

.post-comment-form-group textarea.form-control {
  height: 200px;
  padding-top: 15px;
}

.post-comment-form-group .form-control {
  background-color: rgba(86, 119, 252, 0.05);
  font-family: "Cabin", sans-serif;
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 15px;
  font-weight: bold;
  border-color: #5677fc;
  color: #3a3b3c;
  resize: none;
  height: 40px;
}

.post-comment-form-group .form-control.error {
  border-color: red;
}

.post-comment-form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.post-comment-form-group .btn-brand {
  border-radius: 3px;
  float: right;
}

.post-comment-listing ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-comment-listing ul li {
  display: block;
  overflow: hidden;
}

.post-comment-listing ul li .level-one .comment-thumb a img {
  width: 100%;
  margin: 0 auto;
}

.post-comment-listing ul li .level-two .comment-thumb a.avatar {
  min-width: 70px;
  max-width: 70px;
}

.post-comment-listing ul li .level-three .comment-thumb a.avatar {
  min-width: 70px;
  max-width: 70px;
}

.post-comment-listing ul li .single-comment {
  display: block;
  overflow: hidden;
  padding: 0 0 30px 0;
}

.post-comment-listing ul li .single-comment .comment-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.post-comment-listing ul li .single-comment .comment-thumb .avatar {
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  padding: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.post-comment-listing ul li .single-comment .comment-thumb .comment-meta a {
  text-decoration: none;
  margin: 0;
  font-weight: bold;
}

.post-comment-listing ul li .single-comment .comment-content {
  display: block;
  overflow: hidden;
}

.post-comment-listing ul li ul {
  margin: 0px 0px 0px 25px;
}

h2.comments-title {
  font-size: 20px;
  margin-bottom: 25px;
}

/*--------------------------------------------------------------
  ##  Stores
  --------------------------------------------------------------*/

.stores-padding {
  padding: 100px 0px !important;
}

.trending-stores-wrapper {
  padding: 50px 0px;
}

.trending-stores-wrapper .single-store {
  position: relative;
  text-align: center;
  border: 1px solid;
  border-color: #dddddd;
}

.trending-stores-wrapper .single-store:hover .store-btn-wrapper {
  visibility: visible;
  opacity: 1;
}

.trending-stores-wrapper .single-store img {
  width: auto;
  height: 150px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}

.trending-stores-wrapper .single-store .store-btn-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(86, 119, 252, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.trending-stores-wrapper .single-store .store-btn-wrapper a {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: white;
  color: #3a3b3c;
  font-weight: bold;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.trending-stores-wrapper .single-store .store-btn-wrapper a:hover {
  background-color: #3a3b3c;
  color: #ffffff;
}

.single-store-wrapper {
  padding: 70px 0px;
}

.single-store-wrapper .single-store-thumb img {
  height: 150px;
  width: auto;
  margin: 0 auto;
}

.single-store-wrapper .single-store-content {
  margin-bottom: 20px;
}

.single-store-wrapper .single-store-content h5 {
  margin-top: 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.single-store-wrapper .single-store-content .store-social {
  padding-top: 15px;
}

.single-store-wrapper .single-store-content .store-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-store-wrapper .single-store-content .store-social ul li {
  display: inline-block;
  padding-bottom: 0px;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 6px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid;
  border-color: #5677fc;
  padding: 0;
}

.single-store-wrapper .single-store-content .store-social ul li:hover {
  background-color: #5677fc;
}

.single-store-wrapper .single-store-content .store-social ul li:hover a {
  color: #ffffff;
}

.single-store-wrapper .single-store-content .store-social ul li a {
  font-size: 14px;
  padding-left: 0;
  display: block;
  overflow: hidden;
}

.single-store-wrapper .single-store-content .store-social ul li a:hover {
  margin-left: 0px;
}

.single-store-wrapper .single-store-content .store-social ul li a:before {
  content: "";
}

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

/*--------------------------------------------------------------
  ##  Contact
  --------------------------------------------------------------*/

.contact-wrapper {
  position: relative;
}

.contact-wrapper:before {
  /* background-image: url("/assets/images/pattern.png"); */
  background-color: rgb(86, 119, 252);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contact-wrapper .contact-wrapper-inner {
  padding: 50px 0px;
  position: relative;
}

.contact-wrapper .contact-wrapper-inner:before {
  background-color: rgba(0, 0, 0, 0.3);
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contact-wrapper .contact-wrapper-inner .contact-form-wrapper {
  position: relative;
  z-index: 1;
  background-color: white;
  border-radius: 10px;
  padding: 50px 60px;
}

.contact-wrapper .contact-wrapper-inner .contact-form-wrapper .contact-title h6 {
  font-size: 36px;
  font-size: 3.6rem;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 30px;
  margin-top: 0px;
}

.contact-wrapper .contact-wrapper-inner .contact-form-wrapper #cbx-formalert {
  margin-top: 10px;
}

.contact-wrapper .contact-wrapper-inner .contact-info-wrapper h6 {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Cabin", sans-serif;
}

.contact-wrapper .contact-wrapper-inner .contact-info-wrapper p {
  font-family: "Cabin", sans-serif;
  color: #9d9d9d;
}

.contact-wrapper .contact-wrapper-inner .contact-info-wrapper p i {
  color: #3a3b3c;
  margin-right: 10px;
}

.contact-wrapper .contact-wrapper-inner .contact-hotline {
  background-color: #f9b320;
  padding: 15px;
  border-radius: 0.5em;
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
  position: relative;
}

.contact-wrapper .contact-wrapper-inner .contact-hotline:before {
  position: absolute;
  content: "";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 110px;
  font-size: 11rem;
  line-height: 142px;
  color: rgba(58, 59, 60, 0.15);
  top: 0px;
  left: 0px;
}

.contact-wrapper .contact-wrapper-inner .contact-hotline .hotline-content {
  float: left;
  text-align: center;
  display: block;
  overflow: hidden;
  width: 70%;
  margin-top: 10px;
  z-index: 2;
}

.contact-wrapper .contact-wrapper-inner .contact-hotline .hotline-content p {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Cabin", sans-serif;
  color: #ffffff;
  margin-bottom: 0px;
}

.contact-wrapper .contact-wrapper-inner .contact-hotline .hotline-thumb {
  width: 30%;
  float: right;
}

.contact-wrapper .contact-wrapper-inner .contact-hotline .hotline-thumb img {
  width: 100%;
  height: 100%;
}

.login-wrapper {
  border-left: 1px solid;
  border-color: #dddddd;
}

.login-wrapper p {
  font-size: 24px;
  font-size: 2.4rem;
}

.login-wrapper p span {
  color: #5677fc;
  font-weight: bold;
}

.login-wrapper .login-with-social {
  padding: 15px 0px 75px;
  padding-left: 20px;
}

.login-wrapper .login-with-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-wrapper .login-with-social ul li {
  display: inline-block;
  margin: 0px 5px;
}

.login-wrapper .login-with-social ul li a {
  color: #3a3b3c;
  border: 1px solid;
  border-color: #3a3b3c;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  vertical-align: middle;
  line-height: 65px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.login-wrapper .login-with-social ul li a:hover {
  border-color: #5677fc;
  background-color: #5677fc;
  color: #ffffff;
}

.askAccount-wrapper {
  margin-top: 30px;
}

.askAccount-wrapper a {
  color: #3a3b3c;
  font-size: 24px;
  font-size: 2.4rem;
}

.submit-coupon-content h6 {
  margin-top: 0px;
  font-weight: bold;
  font-family: "Cabin", sans-serif;
}

.submit-coupon-content p {
  font-size: 14px;
  font-size: 1.4rem;
}

.submit-coupon-content ol li {
  font-size: 14px;
  font-size: 1.4rem;
}

/*--------------------------------------------------------------
  ##  Team
  --------------------------------------------------------------*/

.team-wrapper {
  background-color: rgba(86, 119, 252, 0.05);
  padding: 50px 0px 100px;
}

.team-wrapper .single-team {
  border-bottom: 5px solid;
  border-color: #f9b320;
  margin-bottom: 20px;
}

.team-wrapper .single-team:hover .team-thumb-social-wrapper .team-social-profile {
  visibility: visible;
  opacity: 1;
}

.team-wrapper .single-team .team-thumb-social-wrapper {
  position: relative;
}

.team-wrapper .single-team .team-thumb-social-wrapper .team-social-profile {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-wrapper .single-team .team-thumb-social-wrapper .team-social-profile ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.team-wrapper .single-team .team-thumb-social-wrapper .team-social-profile ul li {
  display: inline-block;
  padding: 15px 8px;
}

.team-wrapper .single-team .team-thumb-social-wrapper .team-social-profile ul li a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-wrapper .single-team .team-thumb-social-wrapper .team-social-profile ul li a:hover {
  color: #f9b320;
}

.team-wrapper .single-team .team-profile {
  display: block;
  overflow: hidden;
  background-color: #5677fc;
  text-align: center;
  padding: 10px;
}

.team-wrapper .single-team .team-profile h6 {
  font-family: "Ubuntu", sans-serif;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.team-wrapper .single-team .team-profile p {
  font-family: "Cabin", sans-serif;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}

/*--------------------------------------------------------------
  ##  Sidebar
  --------------------------------------------------------------*/

aside .cbx-sidebar .widget {
  margin-bottom: 50px;
}

aside .cbx-sidebar .widget h4 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

aside .cbx-sidebar .widget .widget-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

aside .cbx-sidebar .widget .widget-content ul.list-unstyled li a {
  font-family: "Cabin", sans-serif;
  font-weight: normal;
  color: #3a3b3c;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .cbx-sidebar .widget .widget-content ul.list-unstyled li a:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  color: inherit;
  padding-right: 10px;
  font-size: 13px;
}

aside .cbx-sidebar .widget .widget-content ul.list-unstyled li a:hover {
  color: #5677fc;
  margin-left: 5px;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li {
  display: inline-block;
  margin-right: 5px;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li a {
  border: 1px solid;
  border-color: #d9d9d9;
  border-radius: 0.5em;
  padding: 9px 15px;
  line-height: 1;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li a:before {
  display: none;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li a:hover {
  color: #ffffff;
  background-color: #5677fc;
  margin-left: 0px;
  border-color: #5677fc;
}

aside .cbx-sidebar .widget .search-form {
  position: relative;
}

aside .cbx-sidebar .widget .search-form .form-control {
  background-color: #dddddd;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  line-height: 1;
  height: 46px;
  font-size: 14px;
  font-size: 1.4rem;
}

aside .cbx-sidebar .widget .search-form .form-control:focus {
  background-color: rgba(221, 221, 221, 0.5);
}

aside .cbx-sidebar .widget .search-form button {
  position: absolute;
  top: 10px;
  right: 16px;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
}

aside .cbx-sidebar .cbx-blog-list li {
  border-bottom: 0px solid;
  margin-bottom: 20px;
  background: transparent;
  overflow: hidden;
}

aside .cbx-sidebar .cbx-blog-list li .widget-content-single-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

aside .cbx-sidebar .cbx-blog-list li .img-area {
  width: 115px;
  position: relative;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 5px;
}

aside .cbx-sidebar .cbx-blog-list li .img-area a:hover img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

aside .cbx-sidebar .cbx-blog-list li .img-area a img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .cbx-sidebar .cbx-blog-list li .content-area .title {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

aside .cbx-sidebar .cbx-blog-list li .content-area .title a {
  text-decoration: none;
  color: #3a3b3c;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .cbx-sidebar .cbx-blog-list li .content-area .title a:hover {
  color: #5677fc;
}

aside .cbx-sidebar .cbx-blog-list li .content-area a {
  color: #3a3b3c;
  text-decoration: none;
}

/*--------------------------------------------------------------
  ##  Dashboard
  --------------------------------------------------------------*/

.dashboard-wrapper {
  padding: 100px 0px;
}

.dashboard-wrapper .dashboard-title {
  background-color: #5677fc;
  padding: 25px 0px;
}

.dashboard-wrapper .dashboard-title h6 {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
}

.dashboard-wrapper .dashboard-submit-coupon-btn {
  background-color: #f9b320;
  padding: 22px 0;
}

.dashboard-wrapper .dashboard-submit-coupon-btn a {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
}

.dashboard-wrapper .dashboard-nav {
  -webkit-box-shadow: 8px 0 10px -5px rgba(0, 0, 0, 0.15);
  box-shadow: 8px 0 10px -5px rgba(0, 0, 0, 0.15);
}

.dashboard-wrapper .dashboard-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-wrapper .dashboard-nav ul .active a {
  background-color: rgba(86, 119, 252, 0.1);
  color: #5677fc;
}

.dashboard-wrapper .dashboard-nav ul li a {
  font-size: 16px;
  font-size: 1.6rem;
  color: #3a3b3c;
  font-weight: bold;
  padding: 15px 10px;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dashboard-wrapper .dashboard-nav ul li a:hover {
  background-color: rgba(86, 119, 252, 0.1);
  color: #5677fc;
}

.dashboard-wrapper .dashboard-nav ul li a img {
  margin-right: 15px;
}

.dashboard-wrapper .dashboard-nav ul li a span {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #5677fc;
  color: #ffffff;
  float: right;
  padding: 2px 8px;
  border-radius: 0.5em;
  border-top-left-radius: 0px;
}

.dashboard-wrapper .dashboard-table-attr-type {
  padding: 20px;
}

.dashboard-wrapper .dashboard-table-attr-type ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}

.dashboard-wrapper .dashboard-table-attr-type ul .active a {
  background-color: #5677fc;
  color: #ffffff;
}

.dashboard-wrapper .dashboard-table-attr-type ul li {
  display: inline-block;
  margin-left: 10px;
}

.dashboard-wrapper .dashboard-table-attr-type ul li a {
  background-color: #ebefff;
  padding: 7px 15px;
  border-radius: 0.5em;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dashboard-wrapper .dashboard-table-attr-type ul li a:hover {
  background-color: #5677fc;
  color: #ffffff;
}

/*--------------------------------------------------------------
  ##  Blog
  --------------------------------------------------------------*/

.single-blog-item {
  margin-bottom: 30px;
}

.single-blog-item .blog-thumb a:hover img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

.single-blog-item .blog-thumb a img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-blog-item .blog-content {
  margin-bottom: 20px;
}

.single-blog-item .blog-content h4 {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

.single-blog-item .blog-content h4 a {
  color: #3a3b3c;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-blog-item .blog-content h4 a:hover {
  color: #5677fc;
}

.single-blog-item .blog-content p {
  margin-bottom: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #3a3b3c;
  font-family: "Cabin", sans-serif;
  text-align: justify;
  text-justify: inter-word;
}

.single-blog-item .blog-content .blog-tags ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}

.single-blog-item .blog-content .blog-tags ul li {
  padding-right: 10px;
  float: left;
}

.single-blog-item .blog-content .blog-tags ul li a {
  color: #3a3b3c;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
}

.single-blog-item .blog-content .blog-tags ul li a:hover {
  color: #5677fc;
}

.single-blog-item .blog-content .blog-tags ul li a i {
  padding-right: 8px;
}

.pagination-wrapper {
  display: table;
  margin: 0 auto;
}

.pagination-wrapper ul {
  list-style: none;
}

.pagination-wrapper ul .active a {
  background-color: #5677fc;
  color: #ffffff;
}

.pagination-wrapper ul li {
  display: inline-block;
  margin-bottom: 5px;
}

.pagination-wrapper ul li a {
  border-radius: 0.5em;
  color: #5677fc;
  font-family: "Ubuntu", sans-serif;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  min-width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  padding: 0;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 4px !important;
}

.pagination-wrapper ul li a:hover {
  background-color: #5677fc;
  color: #ffffff;
  border-color: #5677fc;
}

.pagination-wrapper ul li a i {
  margin: 0 5px;
}

.pagination-wrapper ul li.prev a,
.pagination-wrapper ul li.next a {
  padding: 0 15px;
  border-radius: 5px !important;
}

.pagination-single-wrapper {
  margin: 20px 0 50px;
}

.pagination-single-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-single-wrapper ul li {
  display: inline;
}

.pagination-single-wrapper ul li a {
  border-radius: 0.5em;
  color: #5677fc;
  font-family: "Ubuntu", sans-serif;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 6px 12px;
  border: 1px solid;
  border-color: #dddddd;
}

.pagination-single-wrapper ul li a:hover {
  border-color: #5677fc;
  background-color: #5677fc;
  color: #ffffff;
}

.pagination-single-wrapper ul li a i {
  margin: 0 5px;
}

.pagination-single-wrapper ul li:last-child {
  float: right;
}

.post-comment-form-group {
  margin-bottom: 30px;
}

.post-comment-form-group .checkbox {
  margin-bottom: 25px;
  margin-top: -5px;
}

.post-comment-form-group .checkbox label:before {
  top: 5px;
}

.post-comment-form-group .form-control.error {
  margin-bottom: 0px;
}

.post-comment-form-group .error {
  color: red;
  margin-bottom: 10px;
}

.post-comment-form-group textarea.form-control {
  height: 200px;
  padding-top: 15px;
}

.post-comment-form-group .form-control {
  background-color: rgba(86, 119, 252, 0.05);
  font-family: "Cabin", sans-serif;
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 15px;
  font-weight: bold;
  border-color: #5677fc;
  color: #3a3b3c;
  resize: none;
  height: 40px;
}

.post-comment-form-group .form-control.error {
  border-color: red;
}

.post-comment-form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.post-comment-form-group .btn-brand {
  border-radius: 3px;
  float: right;
}

.post-comment-listing ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-comment-listing ul li {
  display: block;
  overflow: hidden;
}

.post-comment-listing ul li .level-one .comment-thumb a img {
  width: 100%;
  margin: 0 auto;
}

.post-comment-listing ul li .level-two .comment-thumb a.avatar {
  min-width: 70px;
  max-width: 70px;
}

.post-comment-listing ul li .level-three .comment-thumb a.avatar {
  min-width: 70px;
  max-width: 70px;
}

.post-comment-listing ul li .single-comment {
  display: block;
  overflow: hidden;
  padding: 0 0 30px 0;
}

.post-comment-listing ul li .single-comment .comment-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.post-comment-listing ul li .single-comment .comment-thumb .avatar {
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  padding: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.post-comment-listing ul li .single-comment .comment-thumb .comment-meta a {
  text-decoration: none;
  margin: 0;
  font-weight: bold;
}

.post-comment-listing ul li .single-comment .comment-content {
  display: block;
  overflow: hidden;
}

.post-comment-listing ul li ul {
  margin: 0px 0px 0px 25px;
}

h2.comments-title {
  font-size: 20px;
  margin-bottom: 25px;
}

/*--------------------------------------------------------------
  ##  Sidebar
  --------------------------------------------------------------*/

aside .cbx-sidebar .widget {
  margin-bottom: 50px;
}

aside .cbx-sidebar .widget h4 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

aside .cbx-sidebar .widget .widget-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

aside .cbx-sidebar .widget .widget-content ul.list-unstyled li a {
  font-family: "Cabin", sans-serif;
  font-weight: normal;
  color: #3a3b3c;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .cbx-sidebar .widget .widget-content ul.list-unstyled li a:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  color: inherit;
  padding-right: 10px;
  font-size: 13px;
}

aside .cbx-sidebar .widget .widget-content ul.list-unstyled li a:hover {
  color: #5677fc;
  margin-left: 5px;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li {
  display: inline-block;
  margin-right: 5px;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li a {
  border: 1px solid;
  border-color: #d9d9d9;
  border-radius: 0.5em;
  padding: 9px 15px;
  line-height: 1;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li a:before {
  display: none;
}

aside .cbx-sidebar .widget .widget-content.widget-content-tags ul li a:hover {
  color: #ffffff;
  background-color: #5677fc;
  margin-left: 0px;
  border-color: #5677fc;
}

aside .cbx-sidebar .widget .search-form {
  position: relative;
}

aside .cbx-sidebar .widget .search-form .form-control {
  background-color: #dddddd;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
  line-height: 1;
  height: 46px;
  font-size: 14px;
  font-size: 1.4rem;
}

aside .cbx-sidebar .widget .search-form .form-control:focus {
  background-color: rgba(221, 221, 221, 0.5);
}

aside .cbx-sidebar .widget .search-form button {
  position: absolute;
  top: 10px;
  right: 16px;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
}

aside .cbx-sidebar .cbx-blog-list li {
  border-bottom: 0px solid;
  margin-bottom: 20px;
  background: transparent;
  overflow: hidden;
}

aside .cbx-sidebar .cbx-blog-list li .widget-content-single-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

aside .cbx-sidebar .cbx-blog-list li .img-area {
  width: 115px;
  position: relative;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 5px;
}

aside .cbx-sidebar .cbx-blog-list li .img-area a:hover img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

aside .cbx-sidebar .cbx-blog-list li .img-area a img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .cbx-sidebar .cbx-blog-list li .content-area .title {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

aside .cbx-sidebar .cbx-blog-list li .content-area .title a {
  text-decoration: none;
  color: #3a3b3c;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .cbx-sidebar .cbx-blog-list li .content-area .title a:hover {
  color: #5677fc;
}

aside .cbx-sidebar .cbx-blog-list li .content-area a {
  color: #3a3b3c;
  text-decoration: none;
}

/*--------------------------------------------------------------
  ##  How We Work
  --------------------------------------------------------------*/

.how-we-works-wrapper {
  padding: 50px 0px 100px;
}

.how-we-works-wrapper .single-how-we-works {
  background-color: #fcfdff;
  padding: 30px;
  border: 1px solid;
  border-color: #dddddd;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}

.how-we-works-wrapper .single-how-we-works:hover {
  background-color: white;
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
}

.how-we-works-wrapper .single-how-we-works .how-we-works-thumb {
  width: 130px;
  height: 130px;
  margin: 0 auto 30px;
  padding: 38px 0px;
  background-color: #ebefff;
  border-radius: 50%;
}

.how-we-works-wrapper .single-how-we-works .how-we-works-thumb img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.how-we-works-wrapper .single-how-we-works h6 {
  font-family: "Ubuntu", sans-serif;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}

.how-we-works-wrapper .single-how-we-works p {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 35px;
}

.how-we-works-wrapper .single-how-we-works a {
  font-weight: bold;
}

/*--------------------------------------------------------------
  ##  Pricing
  --------------------------------------------------------------*/

.pricing-table-wrapper {
  padding: 80px 0px;
}

.pricing-table-wrapper .single-pricing-wrapper.star {
  border-color: #f9b320;
}

.pricing-table-wrapper .single-pricing-wrapper.star .pricing-header-wrapper .pricing-header-wrapper-inner:before {
  background-color: #f9b320;
}

.pricing-table-wrapper .single-pricing-wrapper.star .pricing-header-wrapper .pricing-header-wrapper-inner h6 {
  background-color: #f9b320;
  border-color: #fcd583;
}

.pricing-table-wrapper .single-pricing-wrapper.star .pricing-btn {
  border-color: #f9b320;
  color: #ffffff;
  background-color: #f9b320;
}

.pricing-table-wrapper .single-pricing-wrapper.star .stared {
  background-color: #f9b320;
}

.pricing-table-wrapper .single-pricing-wrapper {
  border: 1px solid;
  border-color: #dddddd;
  border-radius: 0.5em;
  padding: 25px 0px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.pricing-table-wrapper .single-pricing-wrapper:hover {
  border-color: #f9b320;
  margin-top: -10px;
  margin-bottom: 30px;
}

.pricing-table-wrapper .single-pricing-wrapper:hover .pricing-header-wrapper .pricing-header-wrapper-inner:before {
  background-color: #f9b320;
}

.pricing-table-wrapper .single-pricing-wrapper:hover .pricing-header-wrapper .pricing-header-wrapper-inner h6 {
  background-color: #f9b320;
  border-color: #fcd583;
}

.pricing-table-wrapper .single-pricing-wrapper:hover .pricing-btn {
  border-color: #f9b320;
  color: #ffffff;
  background-color: #f9b320;
}

.pricing-table-wrapper .single-pricing-wrapper:hover .stared {
  background-color: #f9b320;
}

.pricing-table-wrapper .single-pricing-wrapper .stared {
  position: absolute;
  top: 0;
  right: -1px;
  background-color: #5677fc;
  color: #ffffff;
  font-size: 10px;
  font-size: 1rem;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 100% 100%);
  width: 35px;
  height: 35px;
  border-top-right-radius: 5px;
}

.pricing-table-wrapper .single-pricing-wrapper .stared i {
  right: 20%;
  top: 20%;
  position: absolute;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-header-wrapper {
  position: relative;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-header-wrapper .pricing-header-wrapper-inner {
  position: relative;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-header-wrapper .pricing-header-wrapper-inner:before {
  content: " ";
  position: absolute;
  background-color: #dddddd;
  width: 100%;
  height: 50%;
  top: 25%;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-header-wrapper .pricing-header-wrapper-inner h6 {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #5677fc;
  color: #ffffff;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 40px;
  font-size: 4rem;
  border-radius: 50%;
  border: 10px solid;
  border-color: #bac8fe;
  padding: 25px 0px;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-header-wrapper .pricing-header-wrapper-inner h6 sup {
  font-size: 20px;
  font-size: 2rem;
  margin-right: -10px;
  top: -20px;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-header-wrapper .pricing-header-wrapper-inner h6 span {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: -10px;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-content h6 {
  font-size: 26px;
  font-size: 2.6rem;
  color: #3a3b3c;
  font-weight: bold;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-content ul {
  margin: 20px 0px;
  padding: 0;
  list-style: none;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-content ul li {
  padding-bottom: 10px;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-content ul li a {
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  color: #5f5f5f;
}

.pricing-table-wrapper .single-pricing-wrapper .pricing-btn {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Cabin", sans-serif;
  color: #3a3b3c;
  font-weight: bold;
  border: 1px solid;
  border-color: #3a3b3c;
  text-transform: uppercase;
  padding: 10px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
  ##  Single album
  --------------------------------------------------------------*/

/*--------------------------------------------------------------
  ##  Testimonial
  --------------------------------------------------------------*/

/*--------------------------------------------------------------
  ##  Coupon
  --------------------------------------------------------------*/

.new-coupon-wrapper {
  background-color: #fbf8f8;
  padding: 50px 0px;
}

.new-coupon-wrapper .owl-stage-outer {
  padding-top: 10px;
}

.popular-coupon-wrapper {
  padding: 50px 0px;
}

.popular-coupon-wrapper .owl-stage-outer {
  padding-top: 10px;
}

.coupon-item {
  background-color: white;
  margin-bottom: 20px;
  border: 1px solid;
  border-color: #dddddd;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.coupon-item:hover {
  margin-top: -10px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 6px 0px 0px #5677fc;
  box-shadow: 0px 6px 0px 0px #5677fc;
}

.coupon-item:hover .coupon-thumb a {
  visibility: visible;
}

.coupon-item:hover .coupon-thumb img {
  -webkit-filter: brightness(0.2);
  filter: brightness(0.2);
}

.coupon-item .coupon-thumb {
  position: relative;
  height: 180px;
}

.coupon-item .coupon-thumb a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: hidden;
}

.coupon-item .coupon-thumb img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.coupon-item .coupon-thumb .coupon-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: #3a3b3c;
  color: #ffffff;
  padding: 5px 5px 5px 15px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 20% 48%, 0% 0%);
  clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 20% 48%, 0% 0%);
}

.coupon-item .coupon-content {
  padding: 10px;
}

.coupon-item .coupon-content h6 {
  margin-top: 0px;
}

.coupon-item .coupon-content h6 a {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3a3b3c;
  font-weight: bold;
}

.coupon-item .coupon-content p {
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

.coupon-item .coupon-content .coupon-content-bottom {
  display: block;
  overflow: hidden;
}

.coupon-item .coupon-content .coupon-content-bottom p {
  float: left;
  font-family: "Ubuntu", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #5677fc;
  margin-bottom: 0px;
  margin-top: 8px;
}

.coupon-item .coupon-content .coupon-content-bottom a {
  float: right;
  background-color: #f9b320;
  color: #ffffff;
  border: 1px solid;
  border-color: #f9b320;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.coupon-item .coupon-content .coupon-content-bottom a:hover {
  color: #f9b320;
  background-color: white;
}

.owl-carousel.owl-theme .owl-nav {
  position: relative;
  z-index: 2;
  top: -200px;
}

.owl-carousel.owl-theme .owl-nav .owl-prev {
  font-size: 24pxpx;
  font-size: 2.4pxrem;
  color: #5677fc;
  font-weight: bold;
  float: left;
  margin-left: -60px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.owl-carousel.owl-theme .owl-nav .owl-prev:hover {
  color: #ffffff;
  background-color: #5677fc;
}

.owl-carousel.owl-theme .owl-nav .owl-next {
  font-size: 24pxpx;
  font-size: 2.4pxrem;
  color: #5677fc;
  font-weight: bold;
  float: right;
  margin-right: -60px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 23.4px 2.6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.owl-carousel.owl-theme .owl-nav .owl-next:hover {
  color: #ffffff;
  background-color: #5677fc;
}

.single-coupon-wrapper {
  padding: 70px 0px;
}

.single-coupon-wrapper .single-coupon-thumb img {
  border: 1px dotted;
  border-color: #dddddd;
  border-radius: 5px;
  padding: 4px;
}

.single-coupon-wrapper .single-coupon-content {
  margin-bottom: 20px;
}

.single-coupon-wrapper .single-coupon-content h5 {
  margin-top: 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.single-coupon-wrapper .single-coupon-content .expiring-time {
  color: #5677fc;
}

.single-coupon-wrapper .single-coupon-content .expiring-time span {
  margin-right: 10px;
}

.single-coupon-wrapper .coupon-social {
  padding-top: 15px;
  text-align: center;
}

.single-coupon-wrapper .coupon-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-coupon-wrapper .coupon-social ul li {
  display: inline-block;
  padding-bottom: 0px;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: white;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid;
  border-color: #5677fc;
}

.single-coupon-wrapper .coupon-social ul li:hover {
  background-color: #5677fc;
}

.single-coupon-wrapper .coupon-social ul li:hover a {
  color: #ffffff;
}

.single-coupon-wrapper .coupon-social ul li a {
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 0;
  display: block;
  overflow: hidden;
}

.single-coupon-wrapper .coupon-social ul li a:hover {
  margin-left: 0px;
}

.single-coupon-wrapper .coupon-social ul li a:before {
  content: "";
}

.coupon-modal-content .input-group {
  margin-bottom: 15px;
}

.coupon-modal-content .input-group .form-control {
  height: 50px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  border: 1px dashed;
  border-color: #5677fc;
}

.coupon-modal-content .input-group .input-group-btn .btn {
  height: 50px;
  background-color: #5677fc;
  color: #ffffff;
  border-color: #5677fc;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.coupon-modal-content .input-group .input-group-btn .btn:hover {
  color: #5677fc;
  background-color: white;
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

#cbx-subscribe-form .form-control.error {
  border: 1px solid #e74c3c;
}

#cbx-subscribe-form label.error {
  color: #e74c3c;
}

.cbx-footer .cbx-footer-top {
  background-color: #161f35;
  padding: 100px 0px 85px 0px;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area {
  background-color: #394053;
  padding: 25px;
  border-radius: 0.5em;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .navbar-form {
  padding: 0px;
  margin-top: 0px;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .navbar-form .input-group {
  width: 100%;
  margin-bottom: 15px;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .navbar-form .input-group .form-control {
  width: 100%;
  border-color: transparent;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0px 10px;
  border: 0px solid;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  min-height: 43px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .navbar-form .input-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .navbar-form .input-group .input-group-btn .btn {
  background-color: #f9b320;
  border-color: #f9b320;
  border-radius: 0.5em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Cabin", sans-serif;
  color: #ffffff;
  padding: 10px 20px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area h5 {
  color: #f9b320;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .payment-gateways li {
  display: inline-block;
  padding-right: 5px;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .payment-gateways li a {
  display: block;
  padding-left: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .payment-gateways li a:hover {
  margin-left: 0px;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.cbx-footer .cbx-footer-top .widget .widget-newsletter-area .payment-gateways li a:before {
  content: "";
}

.cbx-footer .cbx-footer-top .widget .widget-social {
  padding-top: 15px;
}

.cbx-footer .cbx-footer-top .widget .widget-social ul li {
  display: inline-block;
  padding-bottom: 0px;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #394053;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cbx-footer .cbx-footer-top .widget .widget-social ul li:hover {
  background-color: #5677fc;
}

.cbx-footer .cbx-footer-top .widget .widget-social ul li a {
  font-size: 13px;
  font-size: 1.3rem;
  padding-left: 0;
  display: block;
  overflow: hidden;
}

.cbx-footer .cbx-footer-top .widget .widget-social ul li a:hover {
  margin-left: 0px;
}

.cbx-footer .cbx-footer-top .widget .widget-social ul li a:before {
  content: "";
}

.cbx-footer .cbx-footer-top .widget .widget-brand {
  margin-bottom: 20px;
}

.cbx-footer .cbx-footer-top .widget .widget-brand a img {
  width: 180px;
}

.cbx-footer .cbx-footer-top .widget p {
  margin-top: 5px;
  width: 100%;
  color: #ffffff;
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

.cbx-footer .cbx-footer-top .widget h2 {
  color: #ffffff;
  font-family: "Cabin", sans-serif;
  font-weight: bold;
  font-size: 22px;
  font-size: 2.2rem;
  margin: 0;
  padding-bottom: 30px;
}

.cbx-footer .cbx-footer-top .widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cbx-footer .cbx-footer-top .widget ul li {
  padding-bottom: 12px;
}

.cbx-footer .cbx-footer-top .widget ul li a {
  color: #ffffff;
  font-family: "Cabin", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
  padding-left: 15px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cbx-footer .cbx-footer-top .widget ul li a:hover {
  margin-left: 5px;
}

.cbx-footer .cbx-footer-top .widget ul li a:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  top: 2px;
  line-height: 1;
  left: 0;
}

.cbx-footer .cbx-footer-bottom {
  background-color: #5677fc;
}

.cbx-footer .cbx-footer-bottom .copyright {
  padding: 20px 0px;
}

.cbx-footer .cbx-footer-bottom .copyright p {
  margin: 0;
  color: #ffffff;
  font-family: "Ubuntu", sans-serif;
}

.cbx-footer .cbx-footer-bottom .copyright p a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.cbx-footer .cbx-footer-bottom .copyright p i {
  color: #fe5656;
}

.scrollToTop {
  width: 40px;
  height: 40px;
  padding: 7px 10px 10px 10px;
  text-align: center;
  background-color: white;
  font-weight: bold;
  color: #5677fc;
  text-decoration: none;
  position: fixed;
  right: 40px;
  display: none;
  bottom: 40px;
  border: 1px solid;
  border-color: #5677fc;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0.5em;
  z-index: 999;
}

.scrollToTop:hover {
  background-color: #5677fc;
  color: #ffffff;
}

/*--------------------------------------------------------------
  ##  Responsive
  --------------------------------------------------------------*/

@media (max-width: 1199px) {
  .deal-coupon-slider-wrapper .slider-list .item {
    height: 411px;
  }

  .deal-coupon-slider-wrapper .slider-list .owl-nav .owl-prev {
    -webkit-transform: translate(-550%, 0%);
    -ms-transform: translate(-550%, 0%);
    transform: translate(-550%, 0%);
  }

  .deal-coupon-slider-wrapper .slider-list .owl-nav .owl-next {
    -webkit-transform: translate(550%, 0%);
    -ms-transform: translate(550%, 0%);
    transform: translate(550%, 0%);
  }

  .coupon-item .coupon-thumb {
    height: 150px;
  }

  .coupon-item .coupon-thumb img {
    height: 100%;
  }

  .new-coupon-list.owl-carousel.owl-theme .owl-nav .owl-prev {
    margin-left: -20px;
  }

  .new-coupon-list.owl-carousel.owl-theme .owl-nav .owl-next {
    margin-right: -20px;
  }

  .deal-item .deal-thumb {
    height: 150px;
  }

  .deal-item .deal-thumb img {
    height: 100%;
  }

  .new-deal-list.owl-carousel.owl-theme .owl-nav .owl-prev {
    margin-left: -20px;
  }

  .new-deal-list.owl-carousel.owl-theme .owl-nav .owl-next {
    margin-right: -20px;
  }
}

@media (max-width: 991px) {
  .login-wrapper .login-with-social {
    padding-bottom: 20px;
    padding-left: 0px;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav li a {
    padding-right: 25px;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav.navbar-right {
    float: none !important;
  }

  .deal-coupon-slider-wrapper .slider-list .item {
    height: auto;
  }

  .deal-coupon-slider-wrapper .slider-list .owl-nav .owl-prev {
    -webkit-transform: translate(-640%, 0%);
    -ms-transform: translate(-640%, 0%);
    transform: translate(-640%, 0%);
  }

  .deal-coupon-slider-wrapper .slider-list .owl-nav .owl-next {
    -webkit-transform: translate(640%, 0%);
    -ms-transform: translate(640%, 0%);
    transform: translate(640%, 0%);
  }

  .new-deal-list.owl-carousel.owl-theme .owl-nav .owl-prev {
    margin-left: -5px;
  }

  .new-deal-list.owl-carousel.owl-theme .owl-nav .owl-next {
    margin-right: -5px;
  }

  .new-coupon-list.owl-carousel.owl-theme .owl-nav .owl-prev {
    margin-left: -5px;
  }

  .new-coupon-list.owl-carousel.owl-theme .owl-nav .owl-next {
    margin-right: -5px;
  }

  .widget {
    margin-bottom: 30px;
  }

  .login-wrapper {
    border-color: transparent;
  }

  .single-coupon-wrapper .single-coupon-content {
    text-align: center;
  }

  .single-coupon-wrapper .coupon-social {
    padding-bottom: 15px;
  }

  .no-padding-right {
    padding-right: 15px;
    padding-left: 15px;
  }

  .no-padding-left {
    padding-left: 15px;
  }

  .no-padding-left-sm {
    padding-left: 0px;
  }

  .view-all {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 55px;
    font-size: 5.5rem;
  }

  h2,
  .h2 {
    font-size: 45px;
    font-size: 4.5rem;
  }

  h3,
  .h3 {
    font-size: 35px;
    font-size: 3.5rem;
  }

  h4,
  .h4 {
    font-size: 28px;
    font-size: 2.8rem;
  }

  h5,
  .h5 {
    font-size: 26px;
    font-size: 2.6rem;
  }

  h6,
  .h6 {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .cbx-header .cbx-header-top .cbx-brand {
    padding: 20px 0px;
  }

  .cbx-header .cbx-header-top .cbx-brand a img {
    width: 200px;
    height: auto;
  }

  .cbx-header .cbx-header-top .cbx-header-top-search-btn {
    padding: 25px 0px;
  }

  .cbx-header .cbx-header-top .cbx-header-top-search-btn .cbx-search {
    margin-left: 10px;
  }

  .cbx-header .cbx-header-top .cbx-header-top-search-btn .cbx-coupon-submit-btn a {
    padding: 8px 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }

  .cbx-header #showSearchBar {
    padding: 8px 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-toggle {
    font-weight: bold;
    margin-left: 15px;
  }

  .cbx-header .cbx-header-bottom .navbar .mobile-signin-btn {
    margin-right: 15px;
    margin-top: 15px;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse {
    padding-left: 0px;
    padding-right: 0px;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav.navbar-right li a {
    display: inline-block;
    margin-left: 10px;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav {
    margin: 0;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav li:last-child {
    border-color: transparent;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav li {
    border-bottom: 1px dashed;
    border-color: #dddddd;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav li a {
    padding: 10px 20px;
    font-weight: normal;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav li a span {
    float: right;
    margin: 10px;
  }

  .cbx-header .cbx-header-bottom .navbar .navbar-collapse .navbar-nav li ul.dropdown-menu {
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: static;
    float: none;
    width: auto;
  }

  .deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content {
    padding: 5px 15px;
  }

  .deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content h6 a {
    font-size: 20px;
    font-size: 2rem;
  }

  .deal-coupon-slider-wrapper .slider-list .owl-nav {
    display: none;
  }

  .new-deal-wrapper {
    padding-bottom: 0px;
  }

  .popular-deal-wrapper {
    padding-bottom: 0px;
  }

  .deal-item .deal-thumb {
    height: 100%;
  }

  .deal-item .deal-thumb img {
    height: auto;
  }

  .coupon-item .coupon-thumb {
    height: 100%;
  }

  .coupon-item .coupon-thumb img {
    height: auto;
  }

  .team-wrapper .single-team .team-thumb-social-wrapper img {
    width: 100%;
  }

  .cbx-footer .cbx-footer-top {
    padding: 50px 0px;
  }

  .cbx-footer .cbx-footer-top .widget .widget-newsletter-area .navbar-form {
    padding: 10px 15px;
    margin-top: 0px;
    border: 0px solid;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .call-to-action-wrapper {
    padding: 50px 0px;
  }

  .top-stores-wrapper {
    padding: 50px 0px;
  }

  .contact-wrapper .contact-wrapper-inner {
    padding: 50px 0px;
  }

  .contact-wrapper .contact-wrapper-inner .contact-form-wrapper {
    padding: 20px 10px;
  }

  .contact-wrapper .contact-wrapper-inner .contact-form-wrapper .contact-title h6 {
    font-size: 30px;
    font-size: 3rem;
  }

  .modal .modal-footer {
    display: none;
  }

  .modal .single-coupon-thumb {
    margin-bottom: 20px;
  }

  .modal .single-coupon-thumb img {
    display: block;
    margin: 0 auto;
    height: 200px;
    width: auto;
  }

  .no-padding-left-right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .call-to-action-wrapper .call-to-action-content h2 {
    font-size: 30px;
    font-size: 3rem;
  }

  .call-to-action-wrapper .call-to-action-content h2 br {
    display: none;
  }
}

@media (max-width: 576px) {
  .section-heading-wrapper {
    text-align: center;
  }

  .section-heading-wrapper .section-heading {
    display: inline-block;
  }

  .view-all {
    margin-top: 20px;
    text-align: center;
  }

  .apple-store {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 45px;
    font-size: 4.5rem;
  }

  h2,
  .h2 {
    font-size: 30px;
    font-size: 3rem;
  }

  h3,
  .h3 {
    font-size: 25px;
    font-size: 2.5rem;
  }

  h4,
  .h4 {
    font-size: 24px;
    font-size: 2.4rem;
  }

  h5,
  .h5 {
    font-size: 22px;
    font-size: 2.2rem;
  }

  h6,
  .h6 {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content h6 {
    margin-top: 0px;
  }

  .deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content h6 a {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .deal-coupon-slider-wrapper .slider-list .item .hero-area .offer-content p {
    font-size: 12px;
    font-size: 1.2rem;
  }

  .deal-coupon-slider-wrapper .slider-list .owl-nav {
    display: none;
  }

  .deal-item .deal-thumb {
    height: 100%;
  }

  .deal-item .deal-thumb img {
    height: auto;
  }

  .coupon-item .coupon-thumb {
    height: 100%;
  }

  .coupon-item .coupon-thumb img {
    height: auto;
  }

  .contact-wrapper .contact-wrapper-inner .contact-form-wrapper .contact-title h6 {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .contact-wrapper .contact-wrapper-inner .contact-hotline .hotline-content {
    width: 100%;
  }

  .contact-wrapper .contact-wrapper-inner .contact-hotline .hotline-thumb {
    display: none;
  }

  .cbx-footer .cbx-footer-top {
    padding: 20px 0;
  }
}