@charset "UTF-8";
/* CSS Document */


:root {
  scroll-behavior: inherit;
  --primary: #5763de;
  --primary-rgb: 87, 99, 282;
  --secondary: #fc7952;
  --secondary-rgb: 252, 121, 82;
  --white: #ffffff;
  --light: #f2f2f2;
  --light-blue: #f5f7fb;
  --dark: #3f4b4b;
  --default: #282e67;
  --default-text: #1b1642;
  --yellow: #ffb000;
  --violet: #7d8cff;
  --yellow-light: #fff7e5;
  --light-gray: #9cb2d3;
  --label-color: #62627a;
  --error: #fe2724;
  --gdr-dark: linear-gradient(90deg, rgb(63, 75, 75) 0%, rgb(47, 59, 59) 100%);
  --gdr-primary: linear-gradient(
    90deg,
    rgb(229, 235, 251) 0%,
    rgb(125, 139, 254) 100%
  );
  --gdr-secondary: linear-gradient(
    90deg,
    rgba(255, 147, 76, 0.99608) 0%,
    rgb(252, 86, 38) 100%
  );
  --gradient-light: linear-gradient(
    0deg,
    rgb(244, 248, 251) 0%,
    rgb(255, 255, 255) 100%
  );
}

/*-------------------------------------------------------------------
1.  Body / Typography 
-------------------------------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-family: sans-serif;
  /* line-height: 1.15; */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #3f4b4b;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
p {
  margin-bottom: 1.715rem;
  font-size: 1.1rem;
}
p:last-child {
  margin-bottom: 0;
}
/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  letter-spacing: -0.03rem;
  margin-bottom: 1.5rem;
}
h1 {
  font-size: 4.375rem;
  line-height: 4.375rem;
}
h1 small {
  display: block;
  color: #444444;
  font-size: 1.2rem;
  padding-top: 0.5rem;
}
h2 {
  font-size: 3.438rem;
  line-height: 3.438rem;
}
h3 {
  font-size: 2.813rem;
  line-height: 3.125rem;
}
h4 {
  font-size: 2.375rem;
  line-height: 2.7rem;
}
h5 {
  font-size: 2rem;
  line-height: 2.2rem;
}
h6 {
  font-size: 1.5rem;
  line-height: 1.95rem;
}
.text-white {
  color: var(--white) !important;
}

@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon8a92.eot?3b4bc3");
  src:
    url("fonts/icomoon8a92.eot?3b4bc3#iefix") format("embedded-opentype"),
    url("fonts/icomoon8a92.ttf?3b4bc3") format("truetype"),
    url("fonts/icomoon8a92.woff?3b4bc3") format("woff"),
    url("fonts/icomoon8a92.svg?3b4bc3#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/*-------------------------------------------------------------------
2.  General Classes & Popup Overlay
-------------------------------------------------------------------*/
.container,
.container-fluid {
  padding: 0 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.gdr-dark {
  background-image: var(--gradient-dark);
}
.gdr-green {
  background-image: var(--gradient-green);
}
.gdr-light {
  background-image: var(--gradient-light);
}

.pos-rel {
  position: relative;
}

.scroll-id {
  position: absolute;
  top: -20px;
}
.offcanvas-header {
  display: none;
}

.screen-overlay {
  width: 0%;
  height: 100%;
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition:
    opacity 0.2s linear,
    visibility 0.1s,
    width 1s ease-in;
  z-index: 1031;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background:
    linear-gradient(180deg, rgba(1, 40, 79, 0) 50%, #5763de 100%),
    rgb(17, 34, 87, 40%);
}
.screen-overlay.show {
  transition:
    opacity 0.5s ease,
    width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.mobile-offcanvas {
  visibility: hidden;
  overflow: auto;
  transform: translateX(-100%);
  border-radius: 0;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1200;
  width: 350px;
  background: var(--white);
  transition:
    visibility 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}
.mobile-offcanvas.offcanvas-right {
  right: 0;
  left: auto;
  transform: translateX(100%);
}
.offcanvas-header {
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
}
.offcanvas-header .navbar-toggler {
  padding: 0;
  height: 100%;
  color: var(--default-text);
}
.offcanvas-body {
  width: 100%;
  padding-top: 0;
}
.mobile-offcanvas.show {
  visibility: visible;
  transform: translateX(0);
}
body.offcanvas-active {
  overflow-y: hidden;
}
html,
body {
  width: 100%;
  overflow-x: clip;
}
label.error {
  font-size: 12px;
  color: var(--error);
  font-weight: 300;
  padding: 0;
  margin: 10px 0 0 0;
}
/*-------------------------------------------------------------------
2.  General Classes & Popup Overlay
-------------------------------------------------------------------*/
/*--------------------------- 
3. Buttons
-----------------------------*/
.btn {
  display: inline-block;
  padding: 1.145rem 1.5rem;
  font-size: 1rem;
  line-height: 1;
  outline: none;
  align-items: center;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-transform: uppercase;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  font-weight: 600;
  overflow: hidden;
}
.btn:after {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  left: 0;
  opacity: 0;
  padding-top: 100%;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transform-origin: bottom center;
  transition:
    transform 0s 0.4s,
    opacity 0.4s;
}

.btn.btn-light:after {
  background: rgba(0, 0, 0, 0.1);
}

.btn span {
  display: block;
  position: relative;
  z-index: 3;
}

.btn .outer-wrap,
.btn span {
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn .outer-wrap {
  overflow: hidden;
}

.btn:hover .outer-wrap span {
  transform: translateY(110%);
}

.btn .outer-wrap span:before {
  content: attr(data-text);
  left: 0;
  position: absolute;
  top: -110%;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 100%;
}

.btn:hover:after {
  opacity: 1;
  transform: translateY(-50%) scale(1.25);
  transition:
    transform 0.4s,
    opacity 0.2s;
}
.btn-rounded {
  border-radius: 50px;
}
.btn-square {
  border-radius: 0;
}
.typo-btn {
  flex-wrap: wrap;
  margin-bottom: -12px;
}
.typo-btn .btn {
  min-width: 150px;
}
.typo-btn .btn {
  margin-bottom: 12px;
}
.typo-btn .btn:not(:last-child) {
  margin-right: 1.4rem;
}
.typo-page .section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.typo-page .icon-style-section {
  padding-bottom: 50px;
}
.typo-page .bullet-styles-section {
  padding-top: 50px;
}
/*--- btn default --*/
.btn-default,
.btn-default.disabled,
.btn-default:disabled,
.btn-default:hover:disabled {
  color: #fff;
  background-color: var(--default);
  border-color: var(--default);
}
.btn-default:hover,
.btn-default:hover:enabled {
  color: #fff;
  background-color: #111436;
  border-color: #111436;
}
.btn-default.focus,
.btn-default:focus {
  color: #fff;
  background-color: #111436;
  border-color: #111436;
  box-shadow: none;
}
.btn-default:not(:disabled):not(.disabled).active,
.btn-default:not(:disabled):not(.disabled):active,
.show > .btn-default.dropdown-toggle {
  color: #fff;
  background-color: var(--default);
  border-color: var(--default);
}

/*--- btn primary --*/
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary:hover:disabled {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  color: #fff;
  background-color: #3240cc;
  border-color: #3240cc;
}
.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #3240cc;
  border-color: #3240cc;
  box-shadow: 0 0 0 1px rgb(45, 132, 131);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #3240cc;
  border-color: #3240cc;
  box-shadow: none !important;
}

/*--- btn secondary --*/
.btn-secondary,
.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-secondary:hover:disabled {
  color: #fff;
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  color: #fff;
  background-color: #ff6436;
  border-color: #ff6436;
}
.btn-secondary.focus,
.btn-secondary:focus {
  color: #fff;
  background-color: #ff6436;
  border-color: #ff6436;
  box-shadow: 0 0 0 1px rgb(45, 163, 47);
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #ff6436;
  border-color: #ff6436;
}

/*--- btn success --*/
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #129e32;
  border-color: #129e32;
}
.btn-success.focus,
.btn-success:focus {
  color: #fff;
  background-color: #129e32;
  border-color: #129e32;
  box-shadow: 0 0 0 1px rgb(18, 158, 50);
}

/*--- btn danger --*/
.btn-danger {
  color: #fff;
  background-color: #dc3645;
  border-color: #dc3645;
}
.btn-danger:hover {
  color: #fff;
  background-color: #da0419;
  border-color: #da0419;
}
.btn-danger.focus,
.btn-danger:focus {
  color: #fff;
  background-color: #da0419;
  border-color: #da0419;
  box-shadow: 0 0 0 1px rgb(218, 4, 25);
}

/*--- btn warning --*/
.btn-warning {
  color: #212529;
  background-color: #ffc209;
  border-color: #ffc209;
}
.btn-warning:hover {
  color: #212529;
  background-color: #f3b600;
  border-color: #f3b600;
}
.btn-warning.focus,
.btn-warning:focus {
  color: #212529;
  background-color: #f3b600;
  border-color: #f3b600;
  box-shadow: 0 0 0 1px rgb(238, 182, 0);
}

/*--- btn info --*/
.btn-info {
  color: #fff;
  background-color: #18a2b9;
  border-color: #18a2b9;
}
.btn-info:hover {
  color: #fff;
  background-color: #0998b0;
  border-color: #0998b0;
}
.btn-info.focus,
.btn-info:focus {
  color: #fff;
  background-color: #0998b0;
  border-color: #0998b0;
  box-shadow: 0 0 0 1px rgb(238, 184, 22);
}

/*--- btn light --*/
.btn-light {
  color: #44413a;
  background-color: var(--white);
  border-color: var(--white);
}
.btn-light:hover {
  color: var(--white);
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn-light.focus,
.btn-light:focus {
  color: var(--white);
  background-color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px rgb(215, 215, 223);
}

.btn-light.primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-light.default:hover {
  background-color: var(--default);
  border-color: var(--default);
}

/*--- btn dark --*/
.btn-dark {
  color: #fff;
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn-dark:hover {
  color: #fff;
  background-color: #222929;
  border-color: #222929;
}
.btn-dark.focus,
.btn-dark:focus {
  color: #fff;
  background-color: #222929;
  border-color: #222929;
  box-shadow: 0 0 0 1px rgb(39, 42, 46);
}

/*--- btn gray --*/
.btn-gray {
  color: var(--dark);
  background-color: #dddcda;
  border-color: #dddcda;
}
.btn-gray:hover {
  color: var(--dark);
  background-color: #e3e0da;
  border-color: #e3e0da;
}
.btn-gray.focus,
.btn-gray:focus {
  color: var(--dark);
  background-color: #e3e0da;
  border-color: #e3e0da;
  box-shadow: 0 0 0 1px rgb(220, 220, 220);
}

/*--- btn white --*/

.btn-white {
  color: var(--dark);
  background-color: #fff;
  border-color: #fff;
}
.btn-white:hover {
  color: #fff;
  background-color: #f94e29;
  border-color: #f94e29;
}
.btn-white.focus,
.btn-white:focus {
  color: #fff;
  background-color: #f94e29;
  border-color: #f94e29;
  box-shadow: 0 0 0 1px rgb(255, 77, 77);
}

[class*="btn-outline-"] {
  border-style: solid;
  border-width: 1px;
}

/*--- btn outline default --*/
.btn-outline-default,
.btn-outline-default.disabled,
.btn-outline-default:disabled,
.btn-outline-default:hover:disabled {
  color: var(--default);
  background-color: transparent;
  border-color: var(--default);
}
.btn-outline-default:hover {
  color: var(--white);
  background-color: #111436;
  border-color: #111436;
}
.btn-outline-default.focus,
.btn-outline-default:focus {
  color: #ff9285;
  background-color: transparent;
  border-color: #111436;
  box-shadow: 0 0 0 1px rgb(255, 159, 139);
}

/*--- btn outline primary --*/
.btn-outline-primary,
.btn-outline-primary.disabled,
.btn-outline-primary:disabled,
.btn-outline-primary:hover:disabled {
  color: var(--primary);
  background-color: transparent;
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  color: var(--white);
  background-color: #3240cc;
  border-color: #3240cc;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  color: var(--white);
  background-color: #3240cc;
  border-color: #3240cc;
  box-shadow: 0 0 0 1px rgb(0, 189, 167);
}

/*--- btn outline secondary --*/
.btn-outline-secondary,
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled,
.btn-outline-secondary:hover:disabled {
  color: var(--secondary);
  background-color: transparent;
  border-color: var(--secondary);
}
.btn-outline-secondary:hover {
  color: var(--white);
  background-color: #ff6436;
  border-color: #ff6436;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  color: #ff6436;
  background-color: transparent;
  border-color: #ff6436;
  box-shadow: 0 0 0 1px rgb(45, 163, 47);
}

/*--- btn outline success --*/
.btn-outline-success,
.btn-outline-success.disabled,
.btn-outline-success:disabled,
.btn-outline-success:hover:disabled {
  color: #28a745;
  background-color: transparent;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: var(--white);
  background-color: #1c9337;
  border-color: #1c9337;
}
.btn-outline-success.focus,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  color: #1c9337;
  background-color: transparent;
  border-color: #1c9337;
  box-shadow: 0 0 0 1px rgb(40, 167, 69);
}

/*--- btn outline danger --*/
.btn-outline-danger,
.btn-outline-danger.disabled,
.btn-outline-danger:disabled,
.btn-outline-danger:hover:disabled {
  color: #dc3645;
  background-color: transparent;
  border-color: #dc3645;
}
.btn-outline-danger:hover {
  color: var(--white);
  background-color: #dc3645;
  border-color: #dc3645;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  color: #af1d2a;
  background-color: transparent;
  border-color: #af1d2a;
  box-shadow: 0 0 0 1px rgb(239, 23, 44);
}

/*--- btn outline warning --*/
.btn-outline-warning,
.btn-outline-warning.disabled,
.btn-outline-warning:disabled,
.btn-outline-warning:hover:disabled {
  color: #212529;
  background-color: transparent;
  border-color: #ffc209;
}
.btn-outline-warning:hover {
  background-color: #ffc209;
  border-color: #ffc209;
}
.btn-outline-warning.focus,
.btn-outline-warning:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  color: #e7b00a;
  background-color: transparent;
  border-color: #e7b00a;
  box-shadow: 0 0 0 1px rgb(255, 194, 9);
}

/*--- btn outline info --*/
.btn-outline-info,
.btn-outline-info.disabled,
.btn-outline-info:disabled,
.btn-outline-info:hover:disabled {
  color: #18a2b9;
  background-color: transparent;
  border-color: #18a2b9;
}
.btn-outline-info:hover {
  color: var(--white);
  background-color: #077a8d;
  border-color: #077a8d;
}
.btn-outline-info.focus,
.btn-outline-info:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  color: #077a8d;
  background-color: transparent;
  border-color: #077a8d;
  box-shadow: 0 0 0 1px rgb(24, 162, 185);
}

/*--- btn outline light --*/
.btn-outline-light,
.btn-outline-light.disabled,
.btn-outline-light:disabled,
.btn-outline-light:hover:disabled {
  color: var(--white);
  background-color: transparent;
  border-color: var(--white);
  border-style: solid;
  border-width: 1px;
}
.btn-outline-light:hover {
  color: var(--dark);
  background-color: var(--white);
  border-color: var(--white);
}
.btn-outline-light.focus,
.btn-outline-light:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  color: var(--dark);
  background-color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

/*--- btn outline-dark --*/
.btn-outline-dark,
.btn-outline-dark.disabled,
.btn-outline-dark:disabled,
.btn-outline-dark:hover:disabled {
  color: var(--dark);
  background-color: transparent;
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  color: var(--white);
  background-color: #282424;
  border-color: #282424;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  color: var(--white);
  background-color: #282424;
  border-color: #282424;
}

/*--- btn size --*/
.btn-xs {
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.2;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.3;
}
.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
  line-height: 1.4;
}

/*--- btn links --*/
.btn-link-default {
  color: var(--default);
}
.btn-link-default:hover {
  color: #111436;
}
.btn-link-primary {
  color: var(--primary);
}
.btn-link-primary:hover {
  color: #3240cc;
}
.btn-link-secondary {
  color: var(--secondary);
}
.btn-link-secondary:hover {
  color: #ff6436;
}

/*--- btn focus --*/
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}
.is-icon-left,
.is-icon-right {
  display: inline-flex;
  align-items: center;
}
.is-icon-left i,
.is-icon-right i {
  top: -1px;
}
.is-icon-left i {
  padding-right: 0.3rem;
  position: relative;
}
.is-icon-right i {
  padding-left: 0.3rem;
  position: relative;
}

/*-------------------------------------------------------------------
4.  General / Elements
-------------------------------------------------------------------*/

/*---- 4.1 Primary Colour ---*/
.txt-primary {
  color: var(--primary);
}
.txt-secondary {
  color: var(--secondary);
}
.txt-default {
  color: var(--default-text);
}
.txt-dark {
  color: var(--dark);
}
.txt-light {
  color: var(--light-gray) !important;
}
.txt-white {
  color: var(--white) !important;
}

/*---- 4.2 Background Color ---*/
.bg-default {
  background: var(--default) !important;
}
.bg-primary {
  background: var(--primary) !important;
}
.bg-secondary {
  background: var(--secondary) !important;
}
.bg-dark {
  background: var(--dark) !important;
}
.bg-light {
  background: var(--light) !important;
}
.bg-light-blue {
  background: var(--light-blue) !important;
}
.bg-light-gray {
  background: var(--light-gray) !important;
}
.bg-violet {
  background: var(--violet) !important;
}

.gdr-primary {
  background-image: var(--gdr-primary);
}
.gdr-dark {
  background-image: var(--gdr-dark);
}
.gdr-secondary {
  background-image: var(--gdr-secondary);
}

/*---- 4.3 Paginations ---*/
.pagination .page-item {
  margin-right: 0.3rem;
}
.pagination .page-item .page-link {
  color: var(--dark);
  height: 38px;
  width: 38px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  outline: none;
  border-radius: 50%;
  font-weight: 600;
}
.pagination .page-item.disabled {
  opacity: 0.5;
  color: var(--white);
}
.pagination .page-item.disabled a {
  background-color: var(--light-gray);
  color: var(--white);
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.page-item:first-child .page-link {
  margin-left: 0;
  background: var(--dark);
  color: var(--primary);
}
.page-item:last-child .page-link {
  background: var(--default);
  color: var(--white);
}
.pagination .page-item .page-link i {
  font-size: 1.2rem;
}

.dark-pagination.pagination .page-item .page-link {
  color: var(--white);
}
.dark-pagination .page-item:last-child .page-link,
.dark-pagination .page-item:first-child .page-link {
  background: var(--light-gray);
  color: var(--white);
  border-color: var(--light-gray);
}

.dark-pagination.pagination .page-item:first-child .page-link:hover,
.dark-pagination.pagination .page-item:last-child .page-link:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
/*---- 4.3 Paginations End ---*/

/* Font Weight = fw */
.fw-3 {
  font-weight: 300;
}
.fw-4 {
  font-weight: 400;
}
.fw-5 {
  font-weight: 500;
}
.fw-6 {
  font-weight: 600;
}
.fw-7 {
  font-weight: 700;
}
.fw-9 {
  font-weight: 900;
}

/*------------------------------------------*/
/*    Spacer For Gap
/*------------------------------------------*/
.spacer-70 {
  min-height: 70px;
}
.spacer-60 {
  min-height: 60px;
}
.spacer-50 {
  min-height: 50px;
}
.spacer-40 {
  min-height: 40px;
}
.spacer-30 {
  min-height: 30px;
}
.spacer-20 {
  min-height: 20px;
}
.spacer-10 {
  min-height: 10px;
}

.color-box {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.color-box h6 {
  margin: 0;
}
.color-box span {
  display: block;
  padding-top: 0;
  font-weight: 700;
}
.bg-box {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  margin-right: 1.5rem;
  min-width: 68px;
}
/*---- 4.5 Margin/Padding Spacing ---*/
.section-spacing {
  margin-bottom: 90px;
}
.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}
/*---- 4.5 Margin/Padding Spacing End ---*/

/*---- 4.6 Preloader ---*/
#pageloader {
  background: var(--primary);
  background:
    linear-gradient(180deg, rgba(1, 40, 79, 0) 70%, #5763de 100%),
    rgb(17, 34, 87, 70%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  color: #333;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  top: 0;
  background-size: contain;
  background-position: bottom center;
}
.loader-item {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  width: auto;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/favicon.svg) no-repeat center center;
}
/* .loader-item-content {
    background: url(../images/favicon.svg) no-repeat center center;
}
.loader-item i{
    font-size: 2.5rem;
    color: #FFF;
    
} */
/*---- 4.6 Preloader End ---*/

/*---- 4.7 Back To Top ---*/
.back-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  padding: 0;
  color: var(--white);
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;

  border: none;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  border-radius: 50%;
  visibility: hidden;
}
.back-to-top:hover,
.back-to-top:focus {
  background: var(--primary);
  color: var(--light);
}
.back-to-top:hover i {
  animation: toUpFromDown 0.3s forwards;
}
.back-to-top.on {
  opacity: 1;
  visibility: visible;
}

/*------------------------------------------*/
/*    Scroll To Top Style
/*------------------------------------------*/
#mkdf-back-to-top {
  display: block;
  visibility: hidden;
  position: fixed;
  right: 25px;
  bottom: 25px;
  border-radius: 14px;
  margin: 0;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 50px;
  opacity: 0;
  z-index: 10000;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
  -moz-box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
  box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
  background-color: #98cb46;
  box-sizing: border-box;
  -webkit-transition:
    opacity 0.2s ease-out,
    visibility 0.2s ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    right 0.1s ease-out;
  -moz-transition:
    opacity 0.2s ease-out,
    visibility 0.2s ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    right 0.1s ease-out;
  transition:
    opacity 0.2s ease-out,
    visibility 0.2s ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    right 0.1s ease-out;
}
#mkdf-back-to-top:hover {
  background-color: #f15e42;
}
#mkdf-back-to-top.on {
  opacity: 1;
  visibility: visible;
}
#mkdf-back-to-top:hover .mkdf-icon-stack {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}
#mkdf-back-to-top:hover .mkdf-back-to-top-text {
  opacity: 0;
}
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  text-indent: -9999px;
  background: url("icon_top.html") no-repeat;
  background-color: #000;
}
.scrollup.open {
  display: block;
}
/*---- 4.7 Back To Top End ---*/

/*---- 4.8 Blockquote ---*/
blockquote,
.blockquote {
  border: none;
  padding: 3rem 3rem 3rem 5.5rem;
  margin: 0 0 30px 0;
  position: relative;
  font-size: 1.5rem;
  color: #3f4b4b;
  background: var(--white);
  overflow: hidden;
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
}
blockquote::before,
.blockquote::before {
  content: "\e908";
  position: absolute;
  left: 2rem;
  top: auto;
  width: 70px;
  font-family: "Serenite" !important;
  font-size: 2rem;
  color: var(--secondary);
  font-style: normal;
  font-weight: 400;
}
blockquote footer,
.blockquote footer {
  background: transparent;
  padding: 0;
  font-style: italic;
  font-size: 1rem;
  padding-top: 0.7rem;
  font-weight: 400;
  box-shadow: none;
}
blockquote footer cite,
.blockquote footer cite {
  font-style: inherit;
  font-size: 1rem;
  color: #a9a9a9;
}
blockquote.dark {
  background-color: var(--dark);
  color: var(--white);
}
blockquote.dark footer cite,
.blockquote.dark footer cite {
  color: var(--secondary);
}
blockquote.dark::before {
  color: var(--white);
}
blockquote.light {
  background-color: var(--yellow-light);
  box-shadow: none;
}

blockquote.light footer cite,
.blockquote.light footer cite {
  color: var(--secondary);
}
/*---- 4.8 Blockquote End ---*/

/*-------------------------------------------------------------------
5. Header / Navigations
-------------------------------------------------------------------*/

/*---- 5.1 Header Regular ---*/
/* .header-bg header .container{
    max-width: 1680px;
} */
.header-bg,
.marketing-home.header-bg {
  background-image: url(../images/header_bg.svg) !important;
  background-position: center 80% !important;
  background-repeat: no-repeat !important;
  background-size: auto;

  position: relative;
}
.header-bg {
  background-position: center 70% !important;
}
.marketing-home.header-bg {
  background-position: center 80% !important;
}
.header-bg .container {
  position: relative;
  /* z-index: 3; */
}

.header-bg::before {
  background: url(../images/header_bottom.svg) repeat-x center top;
  background-size: auto;
  height: 193px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  content: "";
}
/* .header-bottom{
    background: url(../images/header_bottom.svg) repeat-x center top;
    background-size: auto;
    height: 240px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
} */
@media (min-width: 991.99px) {
  header {
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }
  .scroll-id {
    position: absolute;
    top: -150px;
  }
  .header-anim.fixed-top {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(var(--primary-rgb), 0.8);
    width: 100%;
    z-index: 50;

    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }

  .header-anim.fixed-top.navbar-expand-lg .navbar-nav .nav-link {
    padding: 1.5rem 0.8rem;
    border-radius: 0;
  }

  .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    margin-top: 0;

    -webkit-animation-name: slideInDownMenu;
    -moz-animation-name: slideInDownMenu;
    -o-animation-name: slideInDownMenu;
    animation-name: slideInDownMenu;

    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    -o-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  /* .navbar .dropdown-menu.fade-down{ top:10%; transform: rotateX(-75deg); transform-origin: 0% 0%; } */
  .navbar .dropdown-menu.fade-up.show {
    -webkit-animation-name: slideInDownMenu;
    -moz-animation-name: slideInDownMenu;
    -o-animation-name: slideInDownMenu;
    animation-name: slideInDownMenu;

    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    -o-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  @-webkit-keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @-moz-keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @-o-keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
}
/*---- 5.1 Header Regular End ---*/

/*---- 5.2 Header Top Bar ---*/
#shopping-bag {
  position: relative;
  padding-right: 0;
  color: #06163a;
}
#login {
  position: relative;
}
#search_home {
  margin: 0 1rem 0 0;
  background: var(--white);
  width: 46px;
  height: 46px;
  color: var(--dark);
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#search_home:hover {
  background: var(--light-gray);
  color: var(--white);
}

.fixed-top #search_home {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
#search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1rem;
  transition: all 400ms ease-in-out;
}
#search-btn:hover {
  background-color: rgba(255, 255, 255, 1);
  color: var(--dark);
}
.overlay {
  position: fixed;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9999;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  background:
    linear-gradient(180deg, rgba(1, 40, 79, 0) 50%, #5763de 100%),
    rgb(17, 34, 87, 40%);
}
.overlay .overlay-close i {
  padding: 0 !important;
}

.overlay form {
  text-align: center;
  position: relative;
  top: 50%;
  font-size: 22px;
  color: #b2b2b2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay .form-inner {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
}
/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.5s,
    visibility 0s 0.5s;
  transition:
    opacity 0.5s,
    visibility 0s 0.5s;
}
.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.overlay-hugeinc form {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.overlay-hugeinc form .form-inner {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition:
    -webkit-transform 0.5s,
    opacity 0.5s;
  transition:
    transform 0.5s,
    opacity 0.5s;
}
.overlay-hugeinc form .form-inner {
  width: 450px;
  padding: 0 15px;
}
.overlay-hugeinc.open form .form-inner {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.overlay-hugeinc form .form-inner-div {
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: 4px;
  min-width: 100%;
  color: var(--primary);
}
.overlay-hugeinc.close form .form-inner {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}
.overlay-hugeinc .form-inner .form-light.form-control {
  box-shadow: none;
}
.overlay-hugeinc form .form-inner i.icofont-search {
  padding: 0 1rem 0 0.5rem;
}
.overlay-hugeinc form .form-inner .overlay-close {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary);
  padding: 0;
}
.overlay-hugeinc form .form-inner .overlay-close:hover {
  color: var(--primary);
}
.top-bar {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}
.top-bar > .row {
  align-items: center;
}
.top-bar-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}
.top-bar-links a:hover {
  color: var(--default);
}
.top-bar-links a:not(:last-child) {
  margin-right: 1rem;
}
.language-links {
  text-align: right;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.language-links a {
  color: var(--white);
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
  font-weight: 600;
  line-height: 1;
}
.language-links a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
/*---- Header Top Bar End ---*/

/*---- 5.3 Navigation Regular ---*/
.navbar-toggler {
  padding: 0.25rem 1rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
/* ANIMATED X */
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  outline: none;
  box-shadow: none;
}
.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-toggler .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-toggler .icon-bar {
  background-color: var(--light);
  outline: none;
  box-shadow: none;
}
.navbar-toggler.x .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}
.navbar-toggler.x .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggler.x .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}
/* ANIMATED X COLLAPSED */
.navbar-toggler.x.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggler.x.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggler.x.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.navbar-brand {
  padding: 0;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.navbar-brand img {
  width: 165px;
}
.nav-item:not(:last-child) {
  margin-right: 0.3rem;
}
.navbar {
  padding: 0;
}
.nav-link:focus-visible {
  box-shadow: none;
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--white);
  font-size: 1.144rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 4px;
}
.navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle {
  border-radius: 3px 3px 0 0;
}
.nav-link:hover {
  color: var(--primary);
}
.dropdown-menu {
  padding: 0;
  min-width: 200px;
  background: #fff;
  margin: 0;
  border: 0;
  box-shadow: 0px 0px 65px 0px rgb(0 0 0 / 10%);
  border-radius: 0 0 3px 3px;
}
.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}
.navbar-nav .active .nav-link,
.navbar-nav .active .nav-link:hover,
.navbar-nav .nav-item:hover > a,
.navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.302);
  color: var(--white);
}
.dropdown-toggle-arrow,
.dropdown-submenu-toggle.icon-left::before,
.dropdown-submenu-toggle::after,
.dropdown-toggle::after {
  display: inline-block;
  font: normal normal normal 14px/1 "Serenite" !important;
  font-size: inherit;
  margin: 0;
  position: relative;
  top: 1px;
  border: none;
  vertical-align: inherit;
  color: var(--white);
  width: 1.28571429em;
}

.dropdown-submenu-toggle::after,
.dropdown-submenu-toggle::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.dropdown-submenu .dropdown-submenu-toggle::before,
.dropdown-submenu .dropdown-submenu-toggle::after {
  color: var(--secondary);
}

.dropdown-toggle::after {
  content: "\e92c";
  width: auto;
  padding-left: 0.3rem;
}

.dropdown-submenu-toggle::after {
  text-align: center;
  content: "\e92e";
}
.dropdown-submenu-toggle.icon-left::after {
  content: "";
}
.dropdown-submenu-toggle.icon-left::before {
  text-align: center;
  content: "\e92d";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}
.dropdown-submenu .dropdown-menu-right {
  left: auto;
  right: 100%;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown-menu.show {
  -webkit-animation: slideInDownMenu 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: slideInDownMenu 0.3s alternate;
}
@media (min-width: 991.99px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    margin-top: 0;

    -webkit-animation-name: slideInDownMenu;
    -moz-animation-name: slideInDownMenu;
    -o-animation-name: slideInDownMenu;
    animation-name: slideInDownMenu;

    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    -o-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .dropdown-menu.show {
    display: none;
  }

  @-webkit-keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @-moz-keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @-o-keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  @keyframes slideInDownMenu {
    0% {
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
}
.navbar .dropdown-menu a,
.navbar .dropdown-menu li > a {
  font-size: 1rem;
  padding: 13px 20px;
  text-transform: capitalize;
  color: var(--dark);
  /* border-left: 3px solid transparent; */
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  font-weight: 500;
  line-height: 1;
}
.navbar .dropdown-menu li {
  position: relative;
}
.navbar .dropdown-menu li:not(:last-child) {
  margin-bottom: 3px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}
.navbar .dropdown-menu li::after {
  position: absolute;
  content: "";
  height: 60%;
  width: 0px;
  top: 50%;
  left: 0;
  background-color: var(--secondary);
  transform: translateY(-50%);
  transition: all 200ms ease-in-out;
}
.navbar .dropdown-menu li:hover::after {
  width: 4px;
}
.navbar .dropdown-menu a i {
  position: absolute;
  font-size: 0.775rem;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.navbar .dropdown-item.active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover,
.navbar .dropdown-item:active,
.navbar .dropdown-menu > li.show > a {
  color: var(--secondary);
  text-decoration: none;
  background-color: transparent;
}

.navbar-toggler-icon {
  background-image: url(../images/download.html);
}
.dropdown-item-icon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 1rem;
  min-width: 1rem;
  max-width: 1rem;
  margin-right: 0.5rem;
}
/*---- Navigation Regular End ---*/

/*---- 5.4 Page Header ---*/
.breadcrumbs-page {
  padding: 5rem 0px 12rem;
  text-align: center;
  position: relative;
  color: var(--white);
  margin-bottom: 1rem;
}
.breadcrumbs-page .container {
  position: relative;
  z-index: 2;
}
.breadcrumbs-page h1 {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 4rem;
  line-height: 4rem;
}
.breadcrumbs-page .breadcrumb {
  justify-content: center;
  align-items: center;
  display: inline-flex;
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}
.breadcrumb a,
.breadcrumb-item.active {
  color: var(--white);
}
.breadcrumb a {
  font-size: 1rem;
}
.breadcrumb a:hover {
  color: var(--dark);
}
.breadcrumb-item + .breadcrumb-item {
  font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
  top: 1px;
  font-size: 0.9rem;
  color: var(--white);
  position: relative;

  display: inline-block;
  content: "/";
  vertical-align: -0.125em;
  background-size: 0.8rem 0.8rem;
  width: auto;
}
.breadcrumb-item.active {
  color: var(--white);
}
.breadcrumbs-page .text-muted {
  color: var(--white) !important;
  margin-top: 15px;
  font-size: 1rem;
  margin: 0;
}
/*---- 5.4 Page Header End ---*/

/*-------------------------------------------------------------------
 6. Footers
-------------------------------------------------------------------*/
.footer-wrap {
  background: #f5f7fb;
}
.footer-subscribe {
  padding: 5rem 0 3rem;
}
.footer-subscribe .form-inputs .form-control {
  border-color: var(--secondary);
  border-radius: 4px 0 0 4px;
  border-right: 0;
  margin-right: -2px;
}
.footer-subscribe .form-inputs .btn {
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  width: auto;
  margin: 0;
}
.footer-subscribe .form-inputs h6 {
  margin: 0;
  color: var(--default-text);
  font-weight: 700;
}
footer {
  padding: 4rem 0 0;
  background: var(--white) url(../images/footer_curve.svg) no-repeat -40px 0;
  max-width: 1450px;
  margin: 0 auto;
  box-shadow: 0px 23px 46px 0px rgba(0, 0, 0, 0.11);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.logo-footer {
  width: 165px;
  margin-bottom: 1.9rem;
}
.opening-hours {
  display: flex;
}
.opening-hours i {
  font-size: 2rem;
  color: var(--secondary);
  margin-right: 1.4rem;
}
footer .widget-title,
footer .text h4 {
  color: var(--default-text);
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 0rem;
}
footer .text h4 {
  margin-bottom: 0.8rem;
  line-height: 1;
}
.footer-widget-contact ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.footer-widget-contact ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer-widget-contact i {
  font-size: 24px;
  margin-right: 20px;
  color: var(--secondary);
}
.footer-widget-contact a {
  color: var(--dark);
  font-weight: 600;
}
.footer-widget-contact a:hover {
  color: var(--secondary);
}
.widget-listing li a {
  color: #616277;
  font-weight: 300;
}
.widget-listing li a:hover {
  color: var(--secondary);
}

.widget-listing.icons-listing-anchor li a::before,
.widget-listing.icons-listing li::before {
  content: "\e909";
  font-size: 0.775rem;
  top: 8px;
  color: var(--secondary);
}
.social-icons ul {
  display: flex;
  margin: 0;
}
.social-icons ul li:not(:last-child) {
  margin-right: 1.3rem;
}
.social-icons a {
  color: var(--dark);
  font-size: 1.3rem;
  padding: 0;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons a:hover {
  opacity: 1;
  color: var(--default);
}
.tiny-footer {
  padding: 1.5rem 0;
  color: #616277;
  font-size: 0.87rem;
  margin-top: 2rem;
  border-top: 1px solid #e0e1e6;
}
.tiny-footer-links {
  text-align: right;
}
.tiny-footer-links a {
  color: var(--dark);
}
.tiny-footer-links ul {
  display: flex;
  margin: 0;
  justify-content: flex-end;
}
.tiny-footer-links li:not(:last-child)::after {
  position: relative;
  content: "|";
  left: -1px;
  margin: 0 9px;
}
.tiny-footer-links a:hover {
  color: var(--secondary);
}
/*-------------------------------------------------------------------
6. Footers End
-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
 7. Shortcodes
-------------------------------------------------------------------*/
/*---- 7.1  Icons Boxes ---*/
.icon-style-top {
  position: relative;
  height: calc(100% - 30px);
  border-radius: 6px;
  padding: 2rem 2rem 0.5rem 2rem;
  margin-bottom: 2.5rem;
  background-color: var(--white);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  transition: all 400ms ease-in-out;
  display: flex;
  flex-direction: column;
}
.icon-style-top:hover {
  box-shadow: none;
  background: #e4eafa;
}
.icon-style-top:hover .arrow-icon a {
  background: var(--dark);
}
.icon-style-top .icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--primary);
  line-height: 1;
}
.icon-style-top .text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.icon-style-top .text .arrow-icon {
  margin-top: auto;
}
.icon-style-top h6,
.icon-style-left .text-wrap h6,
.icon-style-top-icon .text h6,
.icon-style-border-bottom .text h6 {
  font-weight: 700;
  color: var(--default-text);
  margin-bottom: 0.7rem;
}

.icon-style-top:hover .arrow-icon i,
.icon-style-left:hover .arrow-icon a i,
.icon-style-border-bottom:hover .arrow-icon a i,
.icon-style-text-bg:hover .arrow-icon a i {
  animation: toRightFromLeft 0.3s forwards;
}

.icon-style-left {
  background: var(--white);
  padding: 1.8rem;
  height: 100%;
  border-radius: 6px;
  display: flex;
  font-size: 1rem;
  align-items: center;

  transition: all 400ms ease-in-out;
}
.icon-style-left:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.icon-style-left .icon {
  color: var(--secondary);
  font-size: 4rem;
  margin-right: 2rem;
  flex-shrink: 0;
}
.icon-style-left .text-wrap {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.icon-style-left .text {
  margin-right: 1rem;
}
.icon-style-left .text-wrap p {
  margin-bottom: 0;
}
.icon-style-left .arrow-icon a {
  margin: 0;
  background: var(--light-gray);
}
.icon-style-left:hover .arrow-icon a {
  margin: 0;
  background: var(--dark);
}
.icon-style-top-icon {
  padding: 2.8rem 2rem;
  text-align: center;
  font-size: 1rem;
  border-radius: 7px;
  margin-bottom: 1.875rem;
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
}
.icon-style-top-icon .icon {
  font-size: 2.5rem;
  position: relative;
  color: var(--white);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--secondary);
  transition: all 400ms ease-in-out;
}
.icon-style-top-icon .icon::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--white);
  top: 0;
  right: 0;
  background: var(--yellow);
}
.icon-style-top-icon:hover .icon {
  background: var(--dark);
}
.icon-style-top-icon .arrow-read-more {
  margin-top: 0.7rem;
}
.icon-style-border-bottom {
  border-bottom: 1px solid #e2e2e2;
  padding: 0 0 2rem 0;
  margin: 0 0 4rem 0;
  display: flex;
  font-size: 1rem;
}
.icon-style-border-bottom .icon {
  font-size: 4rem;
  position: relative;
  color: var(--secondary);
  margin-right: 1.8rem;
  line-height: 1;
}
.icon-style-border-bottom .arrow-icon a {
  margin-bottom: -3.5rem;
  border: 1px solid var(--default);
  background: var(--white);
  color: var(--default);
}
.icon-style-border-bottom:hover .arrow-icon a {
  background: var(--dark);
  color: var(--white);
}
.icon-style-text-bg {
  text-align: center;
}
.icon-style-text-bg .icon {
  font-size: 4rem;
  position: relative;
  color: var(--default);
  margin-bottom: 1.2rem;
  line-height: 1;
  transition: all 400ms ease-in-out;
}
.icon-style-text-bg:hover .icon,
.icon-style-text-bg:hover .text h6 {
  color: var(--secondary);
}
.icon-style-text-bg .text {
  padding: 2rem 2rem 0.5rem 2rem;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  background: var(--white);
  margin-bottom: 1.5rem;
}
.icon-style-text-bg .text h6,
.icon-style-hover .text h6 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.7rem;
  transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.icon-style-text-bg .text .arrow-icon a {
  margin-left: auto;
  margin-right: auto;
}

.icon-style-hover {
  padding: 2.8rem 2.5rem;
  transition: all 400ms ease-in-out;
}
.icon-style-hover:hover {
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
}
.icon-style-hover .text h6 {
  transition: all 400ms ease-in-out;
}
.icon-style-hover .icon {
  font-size: 4rem;
  position: relative;
  color: var(--default);
  margin-bottom: 1.2rem;
  line-height: 1;
  transition: all 400ms ease-in-out;
}
.icon-style-hover .arrow-read-more a {
  color: var(--default);
  font-weight: 600;
}
.icon-style-hover:hover .text h6,
.icon-style-hover:hover .arrow-read-more a {
  color: var(--primary);
  transition: all 400ms ease-in-out;
}

.icon-style-top-icon-light {
  text-align: center;
}
.icon-style-top-icon-light .icon {
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  position: relative;
  color: var(--primary);
}
.icon-style-top-icon-light .icon::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--white);
  top: 0;
  right: 0;
  background: var(--dark);
}
.icon-style-top-icon-light .text h6 {
  font-weight: 700;
  color: var(--default);
}
.process-icons [class*="col"]:nth-child(even) .icon-style-process {
  position: relative;
  margin-top: 4rem;
}
.process-icons [class*="col"]:nth-child(odd) .icon-style-process::after,
.process-icons [class*="col"]:nth-child(even) .icon-style-process::before {
  position: absolute;
  top: -3.5rem;
  display: inline-block;
  font-family: "Serenite" !important;
  font-size: 3rem;
  line-height: 1;
  color: var(--secondary);
  pointer-events: none;
}
.process-icons [class*="col"]:nth-child(even) .icon-style-process::before {
  content: "\e917";
  left: 0;
}
.process-icons [class*="col"]:nth-child(odd) .icon-style-process::after {
  content: "\e91f";
  left: 0;
  top: inherit;
  bottom: -3.5rem;
}
.process-icons [class*="col"]:nth-child(1) .icon-style-process::after {
  display: none;
}
.icon-style-process {
  border-radius: 6px;
  background-color: var(--white);
  padding: 4rem 2.5rem;
  font-size: 1rem;
  transition: all 400ms ease-in-out;
  position: relative;
}

.icon-style-process .icon h6,
.icon-style-process .icon i,
.icon-style-process .icon h6 .numbers {
  transition: all 400ms ease-in-out;
}
.icon-style-process:hover {
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
}
.icon-style-process:hover .icon h6,
.icon-style-process:hover .icon i,
.icon-style-process:hover .icon h6 .numbers {
  color: var(--white);
}
.icon-style-process .icon {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.icon-style-process .icon i {
  font-size: 3.5rem;
  color: var(--primary);
  margin-right: 1.5rem;
}
.icon-style-process .icon h6 {
  font-weight: 700;
  color: var(--default);
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.icon-style-process .icon .numbers {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  font-size: 3.5rem;
  pointer-events: none;
}
.icon-style-process p {
  margin-bottom: 0;
}
.tick-icon-big,
.tick-icon,
.tick-icon-bordered {
  display: flex;
  width: 100%;
}
.tick-icon-big .icon-space,
.tick-icon .icon-space {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: var(--light-gray);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.tick-icon-big .text-space h2 {
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin-bottom: 0rem;
}
.tick-icon-big .text-space .stars {
  color: var(--yellow);
  padding-top: 0.4rem;
}
.tick-icon-big .text-space .stars span {
  color: var(--dark);
}

.light-txt.tick-icon-big,
.light-txt.tick-icon-big .text-space .stars span {
  color: var(--white);
}
.light-txt.tick-icon-big .text-space h2 {
  color: var(--secondary);
}
.tick-icon h6 {
  font-weight: 700;
}
.tick-icon .icon-space {
  background: var(--secondary);
  color: var(--white);
}
.tick-icon-bordered .icon-space {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.tick-icon-bordered:hover .icon-space {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.tick-icon-bordered {
  margin-bottom: 1.875rem;
}
.tick-icon-bordered .text-space h6 {
  color: var(--default);
  margin-bottom: 0.4rem;
}
.icon-statistics {
  display: flex;
  align-items: center;
}
.icon-statistics .text-space h3 {
  font-weight: 700;
  margin-bottom: 0rem;
}
.icon-statistics i {
  font-size: 3rem;
  color: var(--secondary);
  margin-right: 1rem;
  display: inline-block;
}
.icon-statistics.light {
  color: var(--white);
}
.icon-statistics.light .text-space h3 {
  color: var(--white);
}
/*---- 7.1  Icons Boxes ---*/

/*---- 7.2 Accordian ---*/
.accordion-header {
  margin-bottom: 0;
  line-height: normal;
  font-size: inherit;
}
.border-style-accordian {
  position: relative;
  font-size: 1rem;
}
.border-style-accordian .accordion-flush .accordion-item .accordion-button {
  padding: 1rem 2.5rem 1rem 1.3rem;
  background: transparent;
  border-radius: 0;
  border: 1px solid var(--dark);
}
.border-style-accordian .accordion-flush .accordion-item {
  border-top: 0;
  background: transparent;
}
.border-style-accordian .accordion-flush .accordion-item:not(:last-child) {
  border-bottom: none;
  border-top: 0;
  margin-bottom: 1.5rem;
  background: transparent;
}
.border-style-accordian
  .accordion-flush
  .accordion-item
  .accordion-button:focus {
  box-shadow: none;
}
.border-style-accordian
  .accordion-flush
  .accordion-item
  .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
  border-color: var(--primary);
}
.border-style-accordian .accordion-body {
  padding: 1.5rem 0.2rem 0;
}
.border-style-accordian .accordion-button:not(.collapsed)::after {
  content: "\e961";
}
.border-style-accordian .accordion-button::after {
  font-family: "Serenite" !important;
  content: "\e967";
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  line-height: 1;
}
.border-style-accordian.secondary
  .accordion-flush
  .accordion-item
  .accordion-button:not(.collapsed) {
  background: var(--secondary);
  color: var(--white);
  box-shadow: none;
  border-color: var(--secondary);
}
.theme-accordian .accordion-flush .accordion-item {
  border: none;
  border-radius: 6px;
  background: transparent;
}
.theme-accordian .accordion-flush .accordion-header {
  position: relative;
}
.theme-accordian .accordion-flush .accordion-item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.theme-accordian .accordion-button::after {
  content: "\e967";
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out 0s;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  font-size: 1.2rem;
  font-family: "Serenite" !important;
  transform: translateY(-50%);
  line-height: 1;
}
.theme-accordian .accordion-button:not(.collapsed)::after {
  content: "\e961";
}
.theme-accordian .accordion-flush .accordion-item .accordion-button {
  padding-right: 0;
  font-weight: 500;
  padding: 1rem 2.5rem 1rem 1.3rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.08);
}
.theme-accordian
  .accordion-flush
  .accordion-item
  .accordion-button:not(.collapsed) {
  background: var(--secondary);
  color: var(--white);
  box-shadow: none;
}
.theme-accordian .accordion-body {
  padding: 1.5rem 0.2rem 0;
  font-size: 1rem;
}

.theme-light.theme-accordian .accordion-body,
.theme-light.border-style-accordian .accordion-body {
  color: var(--white);
}

.theme-light.border-style-accordian
  .accordion-flush
  .accordion-item
  .accordion-button {
  color: var(--white);
  border-color: var(--white);
}
.theme-light.border-style-accordian
  .accordion-flush
  .accordion-item
  .accordion-button:not(.collapsed) {
  border-color: var(--primary);
}
/*---- 7.2 Accordian End ---*/

/*---- 7.3 Tabbing ---*/
.theme-tabbing {
  border-radius: 4px;
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: inline-flex;
  border: 1px solid #eee;
}
.theme-tabbing.nav-pills .nav-link {
  border-radius: 0;
  color: var(--dark);
  padding: 1rem 1.7rem;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
  text-transform: capitalize;
  transition: all 400ms ease-in-out;
}
.theme-tabbing.nav-fill {
  display: flex;
}
.theme-tabbing.nav-pills .nav-item:not(:last-child) .nav-link {
  margin-right: 0rem;
  border-right: 1px solid #eee;
}
.theme-tabbing.nav-pills .nav-item:not(:last-child) {
  margin-right: 0rem;
}
.theme-tabbing.nav-pills .nav-link:hover {
  color: var(--primary);
}
.theme-tabbing.nav-pills .nav-link.active {
  background: var(--primary);
  color: var(--white);
}
.theme-tabbing.nav-pills.bordered {
  border: none;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%);
}
.theme-tabbing.bordered .nav-item:not(:last-child) .nav-link {
  border-right: none;
}
.theme-tabbing.nav-pills.bordered .nav-link {
  background-color: transparent;
  border-bottom: 3px solid var(--white);
  border-radius: 0;
}
.theme-tabbing.nav-pills.bordered .nav-link.active,
.theme-tabbing.nav-pills.bordered .nav-link:hover,
.flex-column.theme-tabbing.nav-pills.bordered .nav-link.active {
  border-bottom: 3px solid var(--primary);
  color: var(--primary);
}
.theme-tabbing.nav-pills.bordered.light .nav-link {
  background-color: transparent;
  border-bottom: 3px solid var(--light);
  border-radius: 0;
}
.theme-tabbing.nav-pills.bordered.light .nav-link.active,
.theme-tabbing.nav-pills.bordered.light .nav-link:hover {
  border-bottom: 3px solid var(--dark);
}

.theme-tabbing.nav-pills.gradient.light .nav-link.active,
.theme-tabbing.nav-pills.gradient.light .nav-link:hover {
  background: var(--gradient-light);
  color: var(--dark);
}

.theme-tabbing.nav-pills.dark .nav-link {
  background: var(--light);
}
.theme-tabbing.nav-pills.dark .nav-link.active,
.theme-tabbing.nav-pills.dark .nav-link:hover {
  background: var(--white);
  color: var(--dark);
}

.theme-tabbing.nav-pills.bordered.dark .nav-link {
  background-color: transparent;
  border-bottom: 3px solid var(--light);
  border-radius: 0;
  color: var(--light);
}
.theme-tabbing.nav-pills.bordered.dark .nav-link.active,
.theme-tabbing.nav-pills.bordered.dark .nav-link:hover {
  border-bottom: 3px solid var(--primary);
  color: var(--white);
}
.theme-tabbing.nav-pills.gradient.dark .nav-link {
  background: var(--light);
  color: var(--dark);
}
.theme-tabbing.nav-pills.gradient.dark .nav-link.active,
.theme-tabbing.nav-pills.gradient.dark .nav-link:hover {
  background: var(--gradient-light);
  color: var(--dark);
}

.tab-content.theme-tabbing .tab-pane {
  padding-top: 1.25rem !important;
}
.theme-tabbing.nav-pills.vertical .nav-link:not(:last-child) {
  margin-right: 0;
  margin-bottom: 1rem;
}

.tabbing-content {
  position: relative;
  z-index: 1;
}
.tabbing-content.nav-pills .nav-link:not(:last-child) {
  margin-bottom: 1.5rem;
}
.tabbing-content.nav-pills .nav-link {
  color: var(--dark);
  text-transform: inherit;
  padding: 0;
  border-radius: 7px;
  background: var(--white);
  position: relative;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.04);
}
.tabbing-content.nav-pills .nav-link h6 {
  color: var(--default);
  border-bottom: 1px solid #ebf0f6;
  padding: 1.5rem 2rem;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.tabbing-content.nav-pills .nav-link h6 i {
  padding-right: 0.9rem;
  font-size: 1.5rem;
}
.tabbing-content.nav-pills .nav-link p {
  padding: 1.2rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.home-services-tabs .section-title h5 {
  color: var(--default-text);
}

/* Theme Seconadary */
.theme-secondary.theme-tabbing .nav-link.active {
  background: var(--secondary);
}
.theme-secondary.theme-tabbing.nav-pills .nav-link:hover {
  color: var(--secondary);
}
.theme-secondary.theme-tabbing .nav-link.active:hover {
  color: var(--white);
}

.theme-secondary.theme-tabbing.nav-pills.bordered .nav-link.active,
.theme-secondary.theme-tabbing.nav-pills.bordered .nav-link:hover {
  border-bottom: 3px solid var(--secondary);
  background-color: transparent;
  color: var(--secondary);
}
/* Theme Seconadary */

/* Dark Theme */
.dark-theme.theme-tabbing {
  border: none;
}
.dark-theme.tab-content {
  color: var(--white);
}
/* Dark Theme */

/* Theme Vertical */
.flex-column.theme-tabbing {
  flex-shrink: 0;
  max-width: 41%;
  margin-right: 2rem;
}
.flex-column.theme-tabbing.nav-pills .nav-link:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.flex-column.bordered.theme-tabbing.nav-pills .nav-link:not(:last-child) {
  border-bottom: 3px solid #eee;
}
.flex-column.theme-tabbing.nav-pills.bordered .nav-link.active,
.flex-column.theme-tabbing.nav-pills.bordered .nav-link:hover {
  border-bottom: 3px solid var(--primary);
}
.flex-column.bordered.theme-tabbing.nav-pills .nav-link:last-child {
  border: none;
}

.flex-column.theme-tabbing.nav-pills.bordered.theme-secondary .nav-link.active,
.flex-column.theme-tabbing.nav-pills.bordered.theme-secondary .nav-link:hover {
  border-bottom: 3px solid var(--secondary);
}
.flex-column.bordered.theme-tabbing.nav-pills.theme-secondary
  .nav-link:last-child {
  border: none;
}
/* Theme Vertical */

.tabbing-content.nav-pills .nav-link.active,
.tabbing-content.nav-pills .show > .nav-link {
  background-color: var(--secondary);
  color: var(--white);
}
.tabbing-content.nav-pills .nav-link.active h6 {
  color: var(--white);
  border-bottom: 1px solid #fda186;
}
.tabbing-content.nav-pills .nav-link:before {
  bottom: 20px;
  content: "";
  width: 16px;
  height: 16px;
  background: var(--secondary);
  font-size: 25px;
  font-weight: 700;
  color: #198df8;
  margin: 0 auto;
  position: absolute;
  left: 20px;
  top: 32px;
  transform: rotate(45deg);
  z-index: -1;

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.tabbing-content.nav-pills .nav-link.active:before {
  left: -7px;
}
/*---- 7.3 Tabbing End ---*/

/*---- 7.4  Icon Listing ---*/
.icons-listing li,
.icons-listing-anchor li {
  position: relative;
  font-weight: 400;
}
.icons-listing li {
  padding-left: 25px;
}
.icons-listing.text-white * {
  color: var(--white);
}
.icons-listing-anchor a {
  padding-left: 25px;
  display: flex;
}
.icons-listing li:not(:last-child),
.icons-listing-anchor li:not(:last-child) {
  padding-bottom: 12px;
}
.icons-listing-anchor li a::before,
.icons-listing li::before {
  line-height: 1;
  position: absolute;
  transition: all 400ms ease-in-out;
  left: 0;
  top: 4px;
  font-size: 1.2rem;
  font-family: "Serenite" !important;
  content: "\e92e";
}
.icons-listing-anchor.tick li a::before,
.icons-listing.tick li::before {
  content: "\e909";
  font-size: 0.775rem;
  top: 9px;
}
.icons-listing-anchor.check li a::before,
.icons-listing.check li::before {
  content: "\e929";
  font-size: 1.2rem;
  top: 6px;
}
.icons-listing-anchor.check-circle li a::before,
.icons-listing.check-circle li::before {
  content: "\e92a";
  font-size: 1.2rem;
  top: 0;
}
.icons-listing-anchor.check-cricle li a,
.icons-listing.check-circle li {
  padding-left: 30px;
}
.icons-listing li::before {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.icons-listing.tick li a::before {
  content: "\e929";
}
.icons-listing.circle li a::before {
  content: "\f111";
}
.icons-listing.theme-primary li::before,
.icons-listing-bordered.theme-primary li::before {
  color: var(--primary);
}
.icons-listing.theme-secondary li::before,
.icons-listing-bordered.theme-secondary li::before {
  color: var(--secondary);
}
.icons-listing.theme-dark li::before,
.icons-listing-bordered.theme-dark li::before {
  color: var(--dark);
}
.icons-listing.theme-light li::before,
.icons-listing-bordered.theme-light li::before {
  color: var(--light);
}

.icons-listing-anchor.theme-primary li a::before,
.icons-listing-anchor.theme-primary li a {
  color: var(--primary);
}
.icons-listing-anchor.theme-secondary li a::before,
.icons-listing-anchor.theme-secondary li a {
  color: var(--secondary);
}
.icons-listing-anchor.theme-dark li a::before,
.icons-listing-anchor.theme-dark li a {
  color: var(--dark);
}
.icons-listing-anchor.theme-light li a::before,
.icons-listing-anchor.theme-light li a {
  color: var(--light);
}

.icons-listing-anchor.theme-primary li a:hover::before,
.icons-listing-anchor.theme-primary li a:hover {
  color: var(--dark);
}
.icons-listing-anchor.theme-secondary li a:hover::before,
.icons-listing-anchor.theme-secondary li a:hover {
  color: var(--dark);
}
.icons-listing-anchor.theme-dark li a:hover::before,
.icons-listing-anchor.theme-dark li a:hover {
  color: var(--secondary);
}
.icons-listing-anchor.theme-light li a:hover::before,
.icons-listing-anchor.theme-light li a:hover {
  color: var(--secondary);
}

.numbered {
  counter-reset: li;
  list-style: none;
  padding: 0;
  margin-left: 18px;
  display: inline-block;
  font-size: 0.9rem;
}
.numbered li {
  display: inline-block;
  padding: 6px 0;
  width: 100%;
  font-size: 0.9rem;
  position: relative;
}
.numbered.theme-primary,
.numbered.theme-primary a,
.numbered.theme-primary > li::before {
  color: var(--primary);
}
.numbered.theme-primary a:hover,
.numbered.theme-secondary a:hover {
  color: var(--dark);
}
.numbered.theme-secondary,
.numbered.theme-secondary a,
.numbered.theme-secondary > li::before {
  color: var(--secondary);
}
.numbered.theme-dark,
.numbered.theme-dark a,
.numbered.theme-dark > li::before {
  color: var(--dark);
}
.numbered.theme-dark a:hover {
  color: var(--secondary);
}
.numbered.theme-light,
.numbered.theme-light a,
.numbered.theme-light > li::before {
  color: var(--light);
}
.numbered.theme-light a:hover {
  color: var(--primary);
}

.numbered > li::before {
  content: counter(li);
  counter-increment: li;
  font-size: 16px;
  line-height: 23px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  margin: 0;
  margin-left: 0;
  font-weight: 500;
  color: #333;
  position: relative;
  left: -18px;
  font-size: 15px;
  transform: translateY(0px);
  width: 10px;
  z-index: 2;
}
.numbered.filled {
  margin-left: 1.7rem;
}
.numbered.filled > li::after {
  content: "";
  position: relative;
  line-height: 25px;
  width: 26px;
  height: 26px;
  display: inline-block;
  border-radius: 0%;
  text-align: center;
  margin: 0;
  margin-left: 0;
  font-weight: 500;
  position: absolute;
  left: -26px;
  top: auto;
  font-size: 15px;
  transform: translateY(-10%);
  z-index: 1;
  clip-path: polygon(100% 2%, 100% 75%, 75% 100%, 0 100%, 0 0);
}
.numbered.filled.theme-primary > li::after {
  background: var(--primary);
}
.numbered.filled.theme-secondary > li::after {
  background: var(--secondary);
}
.numbered.filled.theme-dark > li::after {
  background: var(--dark);
}

.numbered.filled.theme-light > li::after {
  background: var(--light);
}

.numbered.filled.theme-primary > li::before,
.numbered.filled.theme-secondary > li::before,
.numbered.filled.theme-dark > li::before {
  color: var(--white);
}
.numbered.filled.theme-light > li::before {
  color: var(--dark);
}

.icons-listing-bordered {
  position: relative;
}
.icons-listing-bordered li {
  padding-left: 30px;
  position: relative;
}
.icons-listing-bordered.text-white * {
  color: var(--white);
}
.icons-listing-bordered li:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #d6dcde;
  margin-bottom: 15px;
}
.icons-listing-bordered li a::before,
.icons-listing-bordered li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  font-family: "Serenite" !important;
  content: "\e92a";
}

.icons-listing.w-half {
  display: flex;
  flex-wrap: wrap;
}
.icons-listing.w-half li {
  flex: 1 1 50%;
}
/*---- 7.4  Icon Listing End ---*/

/* 7.5 Different Arrow Style */
.arrow-icon a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  margin-bottom: -2rem;
  margin-top: 0;
}
.arrow-icon a:hover {
  background: var(--dark);
}
.arrow-read-more a {
  color: var(--light-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 600;
}
.arrow-read-more a:hover {
  color: var(--secondary);
}

.bg-light-gray .arrow-read-more a {
  color: var(--secondary);
}
.bg-light-gray .arrow-read-more a:hover {
  color: var(--primary);
}
.arrow-read-more a i {
  margin-left: 0.5rem;
}
.arrow-read-more a:hover i {
  animation: toRightFromLeft 0.3s forwards;
}
/* Animation Styles Start */
@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}

@-webkit-keyframes toUpFromDown {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes up-down-move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Animation Styles End */
/* 7.5 Different Arrow Style */

/* 7.6 Section Headings */
.section-title {
  margin-bottom: 3.5rem;
  color: #444444;
}
.section-title h2 {
  /* text-transform: capitalize; */
  color: var(--default-text);
  letter-spacing: -0.1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.section-title h2 strong,
.marketing-banner .title h1 strong,
.section-title h1 strong {
  color: rgba(var(--primary-rgb), 0.7);
  font-weight: 600;
}

.section-title.light h2 strong,
.marketing-banner .title.light h1 strong,
.section-title.light h1 strong {
  color: var(--white);
  font-weight: 600;
}
.section-title h1 strong {
  font-weight: 700;
  white-space: nowrap;
}
.section-title > span {
  font-weight: 400;
  font-size: 1.12rem;
  margin-bottom: 1rem;
  display: inline-block;
  text-transform: capitalize;
  color: var(--light-gray);
}
.section-title small {
  color: var(--light-gray);
}
.splitting .word {
  -webkit-animation-delay: calc(20ms * var(--word-index));
  animation-delay: calc(20ms * var(--word-index));
  display: inline-block;
  opacity: 0;
  transform-origin: 0 100%;
}
.animated.splitting .word {
  -webkit-animation: SlideTopContentText 1s forwards;
  animation: SlideTopContentText 1s forwards;
  animation-delay: calc(70ms * var(--word-index));
}
/* .aos-animate.splitting .char {
    -webkit-animation: SlideTopContentText 1s forwards;
    animation: SlideTopContentText 1s forwards;
    animation-delay: calc(35ms * var(--char-index));
} */
@keyframes SlideTopContentText {
  from {
    transform: translate(100px, 0px);
    opacity: 0;
  }
  to {
    transform: translate(0em, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes SlideTopContentText {
  from {
    transform: translate(100px, 0px);
    opacity: 0;
  }
  to {
    transform: translate(0em, 0px);
    opacity: 1;
  }
}

.light.section-title,
.light.section-title h2,
.light.section-title span {
  color: var(--white);
}
/* 7.6 Section Headings */

/* 7.7 Seperator Start */
.divider-default {
  border-color: #d4d3e2;
  border-top: 1px solid #d4d3e2;
  width: 115px;
  margin: 1.5rem auto;
}
.divider-secondary {
  border-color: var(--secondary);
  border-top: 1px solid;
  width: 115px;
  margin: 1.5rem auto;
  opacity: 1;
}
hr:not([size]) {
  height: 2px;
  opacity: 1;
}
/* 7.7 Seperator End */

/* 7.8 Testimonials Slider Start */
.testimonial-shadow {
  background: var(--light-blue);
  text-align: center;
  padding: 1.8rem;
  border-radius: 10px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.testimonial-shadow .thumb-img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.testimonial-shadow .name,
.testimonial-single .testimonial-box .name {
  font-weight: 700;
  color: var(--default);
  margin-bottom: 0;
}
.testimonial-shadow .post,
.testimonial-single .testimonial-box .post {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}
.testimonial-shadow .rating,
.testimonial-single .testimonial-box .rating,
#testimonials-slider-single
  .testimonial-single-left
  .testimonial-box
  .content
  .rating {
  color: var(--yellow);
}
.testimonial-shadow h2,
.testimonial-single h2 {
  color: var(--default-text);
  font-size: 1.5rem;
}
#testimonials-slider-shadow .owl-stage {
  padding: 1.5rem 0;
}
#testimonials-slider-shadow .owl-item.center .testimonial-shadow {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

#testimonials-slider-shadow .owl-item .testimonial-shadow {
  margin: 1rem 0.7rem;
}
.testimonial-single-wrap {
  background: url(../images/map_bg_light.png) no-repeat center center;
  background-size: auto;
  padding: 90px 0;
}
.testimonial-single {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
.testimonial-single .testimonial-box {
  display: flex;
  margin: 3.875rem auto 0;
  justify-content: center;
  align-items: center;
}
.testimonial-single .testimonial-box .thumb-img {
  margin-right: 1.5rem;
  border-radius: 50%;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 80px;
}
.testimonial-single .testimonial-box .content {
  text-align: left;
}
.testimonial-single h2 {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.875rem;
}
#testimonials-slider-leftimg.owl-carousel .owl-nav button,
#testimonials-slider-leftimg.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
}

.testimonials-slider-single-wrap {
  position: relative;
  padding-top: 2.5rem;
}
.testimonials-slider-single-wrap .svg-wrap {
  position: absolute;
  width: 120px;
  top: 0;
  left: 160px;

  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}
.testimonials-slider-single-wrap .svg-wrap path {
  fill: var(--white);
  opacity: 0.2;
}

#testimonials-slider-single .testimonial-single-left {
  color: var(--light-gray);
}
#testimonials-slider-single .testimonial-single-left h6 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
#testimonials-slider-single .testimonial-single-left .divider-secondary {
  margin: 0 0 1.8rem 0;
}
#testimonials-slider-single .testimonial-single-left .testimonial-box {
  display: flex;
  margin: 2rem auto 0;
  justify-content: flex-start;
  align-items: center;
}
#testimonials-slider-single
  .testimonial-single-left
  .testimonial-box
  .thumb-img {
  margin-right: 1.5rem;
  border-radius: 50%;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 80px;
}
#testimonials-slider-single
  .testimonial-single-left
  .testimonial-box
  .content
  .rating {
  margin-top: 0.5rem;
}
#testimonials-slider-single
  .testimonial-single-left
  .testimonial-box
  .content
  .name {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

#testimonials-slider-single
  .testimonial-single-left
  .testimonial-box
  .content
  .post {
  font-size: 1rem;
  color: var(--white);
}

/* 7.8 Testimonials Slider End */

/* 7.9 Owl Slider Styles Start */
/*------------------------------------------*/
/*    Owl Slider Arrow
/*------------------------------------------*/
.owl-nav {
  text-align: center;
  margin-top: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2.625rem;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: relative;
  height: 54px;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  color: var(--light-gray);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
  top: 50%;

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.owl-carousel .owl-nav button:hover,
.owl-carousel .owl-nav button:hover {
  color: var(--secondary);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-carousel .owl-dots button {
  outline: none;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.owl-carousel .owl-dots button span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0px 5px;
  border: 2px solid var(--light-gray);
  filter: Alpha(Opacity=50); /*IE7 fix*/
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: transparent;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  outline: none;
  position: relative;
}
.owl-controls.clickable .owl-dot:hover span,
.owl-carousel .owl-dot:hover span {
  background: transparent;
  width: 14px;
  height: 14px;
}

.owl-carousel .owl-dot.active span {
  background: var(--secondary);
  width: 14px;
  height: 14px;
  border-color: var(--white);
}
.owl-carousel .owl-dot span:before {
  width: 0;
  height: 0;
  border: 0px solid #fff;
  position: absolute;
  content: "";
  border-radius: 50%;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.owl-carousel .owl-dot.active span:before {
  width: 18px;
  height: 18px;
  border: 2px solid var(--secondary);
  position: absolute;
  background: var(--white);
  content: "";
  border-radius: 50%;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.owl-carousel.light-nav .owl-dots button span {
  background: #fff;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.owl-carousel.light-nav .owl-dot.active span:before {
  border: 2px solid #fff;
}

.dots-border-light.owl-carousel .owl-dots button span {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.dots-border-light.owl-carousel .owl-dot.active span:before {
  border-color: var(--white);
  background: transparent;
}
.dots-border-light.owl-carousel .owl-dot.active span {
  background: transparent;
}
.dots-border-light.owl-carousel .owl-dots {
  text-align: right;
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 32px;
}
.top-right-arrow .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  margin-top: 0;
  justify-content: flex-end;
  width: auto;
}

.owl-carousel.top-right-arrow .owl-nav button.owl-prev,
.owl-carousel.top-right-arrow .owl-nav button.owl-next {
  background: var(--light-blue);
  color: var(--default-text);
}
.owl-carousel.top-right-arrow .owl-nav button.owl-prev:hover,
.owl-carousel.top-right-arrow .owl-nav button.owl-next:hover {
  background: var(--violet);
  color: var(--white);
}
.owl-carousel.top-right-arrow .owl-nav button.owl-prev {
  margin-right: 7px;
}
/* 7.9 Owl Slider Styles End */

/* 7.10 Partners Logo Start */
.img-partner {
  text-align: center;
}
.img-partner img {
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: 0.5;
  cursor: pointer;
  padding: 1rem;
  background-color: rgb(255, 255, 255);

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.img-partner img:hover {
  opacity: 1;
  mix-blend-mode: multiply;
  filter: unset;
  -webkit-filter: unset;
  transform: translateY(-3px);
  box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.09);
}
.partner-text {
  text-align: center;
  font-size: 1rem;
}
.partner-text span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--default);
}
.partner-text a {
  font-size: 1.125rem;
  font-weight: 700;
}
/* 7.10 Partners Logo End */

/*------------------------------------------*/
/*   7.11 Animated Bars Style
/*------------------------------------------*/
.skillbar-wrap {
  padding: 0 0 20px 0;
  color: #7d7d7d;
  font-weight: 500;
}
.skillbar-wrap .clearfix {
  margin-bottom: 10px;
  font-weight: 400;
  color: #707070;
}
.skillbar-percent {
  position: absolute;
  top: -34px;
  right: 0;
  color: var(--white);
  background: var(--default);
  padding: 0.2rem 0.5rem;
  color: #e4eafa;
  font-size: 0.75rem;
  font-weight: 600;
}
.skillbar-wrap h4 {
  margin-bottom: 1.2rem;
  color: var(--default-text);
  font-weight: 300;
}
.skillbar-percent::before {
  position: absolute;
  content: "";
  bottom: -6px;
  right: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent var(--default) transparent transparent;
}
.skillbar {
  position: relative;
  display: block;
  width: 100%;
  background-color: #e9eef5;
  height: 4px;
  border-radius: 2px;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
}
.skillbar-bar {
  height: 4px;
  border-radius: 2px;
  width: 0px;
  background: var(--secondary);
  margin: 10px 0 0 0;
  position: relative;
  overflow: visible !important;
  min-width: 26px;
}
.skill-bar-percent {
  color: #303030;
}
.progress-wrap {
  padding: 0 0 20px 0;
  color: #7d7d7d;
  font-weight: 500;
}
.progress-wrap h6 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--default-text);
  font-weight: 300;
}
.progress {
  position: relative;
  display: block;
  overflow: visible !important;
  width: 100%;
  background-color: #e9eef5;
  height: 4px;
  border-radius: 2px;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
}
.progress-bar {
  height: 4px;
  border-radius: 2px;
  width: 0px;
  background: var(--secondary);
  margin: 10px 0 0 0;
  position: relative;
  overflow: visible !important;
}
.progress-bar span {
  position: absolute;
  top: -34px;
  right: 0;
  color: var(--white);
  background: var(--default);
  padding: 0.2rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 300;
}
.progress-bar span::before {
  position: absolute;
  content: "";
  bottom: -6px;
  right: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent var(--default) transparent transparent;
}

/* 7.11 Animated Bars Style End */

/* 7.12 Faq's Counter Text Start */
.home-default-faqs-counter-wrap {
  padding-right: 2rem;
}
.home-default-faqs-counter {
  background: var(--secondary);
  color: var(--white);
  border-radius: 7px;
  padding: 2rem 1rem;
  margin-top: -4.5rem;
  z-index: 4;
  position: relative;
}
.home-default-faqs-counter .hstack {
  justify-content: center;
}
.home-default-faqs-counter .counter-text {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 3rem;
}
.home-default-faqs-counter-wrap img {
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}
.home-default-faqs-counter .counter-text h2 {
  color: var(--primary);
  margin-right: 1.5rem;
  margin-bottom: 0;
  font-weight: 700;
  flex-shrink: 0;
}
.home-default-faqs-counter .counter-text h2 sub {
  color: var(--white);
  font-size: 1.25rem;
  position: relative;
  top: -2px;
  font-weight: 400;
  padding-left: 0.25rem;
}
.home-default-faqs-counter .vr {
  background: var(--light-blue);
  width: 1px;
}
/* 7.12 Faq's Counter Text End */

/*-------------------------------------------------------------------
8. Forms Elements
-------------------------------------------------------------------*/
.form-label {
  color: var(--label-color);
  font-weight: 500;
}
.form-label span {
  color: var(--error);
  font-weight: 900;
}

/*---- 8.1  Default Style ---*/
.form-control {
  border: none;
  box-shadow: none;
  font-size: 1rem;
  border: none;
  outline: none;
  color: #5b5b5b;
  background-color: var(--light);
  height: auto;
  padding: 0.8rem 1rem;
  border-radius: 4px;

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.form-control:focus {
  border: none;
  background: #ededed;
  box-shadow: none;
}
.form-control:disabled,
.form-control[readonly] {
  opacity: 0.6;
  background-color: var(--light);
}

::-webkit-input-placeholder {
  /* Edge */
  color: #767779;
  font-style: italic;
  font-size: 1rem;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #767779;
  font-style: italic;
  font-size: 1rem;
}

::placeholder {
  color: #767779;
  font-style: italic;
  font-size: 1rem;
}
.form-check-input {
  width: 1.4rem;
  height: 1.4rem;
  background: var(--light);
  border: none;
  cursor: pointer;
  transition: all 400ms ease-in-out 0s;
}
.form-check-input:checked {
  transition: all 400ms ease-in-out 0s;
}
/* .form-check-inline{
    display: inline-flex;
    align-items: center;
} */
.form-check .form-check-label {
  padding-top: 2px;
  margin-left: 0.7rem;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  color: var(--label-color);
}
.form-check-input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%23fff'/%3e%3c/svg%3e");
}
/*---- 8.1  Default Style End ---*/

/*---- 8.2  Form Light ---*/
.form-light.form-control {
  background-color: var(--white);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.03);
}

.form-light.form-control:focus {
  border: none;
  background: #f9fdff;
  box-shadow: none;
}
.form-light.form-control:disabled,
.form-light.form-control[readonly] {
  opacity: 0.4;
}

.form-light::-webkit-input-placeholder {
  /* Edge */
  color: #767779;
  font-style: italic;
  font-size: 1rem;
}

.form-light:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #767779;
  font-style: italic;
  font-size: 1rem;
}

.form-light::placeholder {
  color: #767779;
  font-style: italic;
  font-size: 1rem;
}
.form-light.form-check-input {
  background-color: var(--white);
}
.form-light.form-check-input:checked[type="checkbox"],
.form-light.form-check-input:checked[type="radio"] {
  background-color: var(--secondary);
}
/*---- 8.2 Form Light End ---*/

/*---- 8.3  Select Dropdown ---*/
.theme-combo,
.theme-combo {
  width: 100%;
}
/* Default Theme */
.select2-container {
  z-index: 9;
  font-size: 1rem;
  width: 100% !important;
}
.select2-container--disabled {
  opacity: 0.7;
}
.select2-results__option--highlighted {
  background-color: #ffffff;
  color: #222222;
}
.select2-container.select2-container .select2-selection--single {
  padding: 0.8rem;
  height: auto;
  border: none;
  border-radius: 5px;
  background: var(--light);
  z-index: 3;
  position: relative;
}

.select2-container.select2-container--open .select2-selection--single {
  background-color: var(--light);
}
.select2-container.select2-container .select2-selection--single:focus {
  /* box-shadow: none; */
  outline: none;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 10px;
  width: 30px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.select2-container.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container .select2-selection--single .select2-selection__arrow::after {
  position: absolute;
  font-size: 1.125rem;
  font-style: normal;
  font-family: "Serenite" !important;
  content: "\e92c";
  left: 50%;
  top: 50%;
  color: #868686;
  font-weight: 900;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.select2-container .select2-dropdown {
  border: none;
  z-index: 9999;
  margin-top: 2px;
  border-radius: 4px;
  background: #ededed;
  overflow: hidden;
  box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.03);
}
.select2-container .select2-dropdown li {
  font-size: 1rem;
  color: #6e6f82;
  padding: 0.8rem 1.3rem;
}
.select2-container .select2-dropdown li:hover {
  background-color: #ffffff;
  color: #6e6f82;
}

.select2-container .select2-dropdown ul {
  border-width: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-search--dropdown .select2-search__field,
.select2-search--dropdown .select2-search__field:focus {
  border: 1px solid #cccccc;
  outline: none;
  min-height: 40px;
}

.select2-container--form-light .select2-dropdown li:hover {
  background-color: #f5f7f8;
  color: #6e6f82;
}
/* Default Theme */
/* Light Theme */
.select2-container--form-light.select2-container .select2-selection--single {
  padding: 0.8rem;
  height: auto;
  box-shadow: 0px 10px 13px 0px rgb(0 0 0 / 3%);
  border-radius: 5px;
  background: #fff;
  z-index: 3;
  position: relative;
  border: none;
}
.select2-container--form-light.select2-container
  .select2-results__option--highlighted {
  background-color: #f5f7f8;
  color: #6e6f82;
}
.select2-container--form-light.select2-container--open
  .select2-selection--single {
  border-bottom: 0;
  background-color: #fff;
}
.select2-container--form-light.select2-container
  .select2-selection--single:focus {
  /* box-shadow: none; */
  outline: none;
}
.select2-container--form-light
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 10px;
  width: 30px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.select2-container--form-light.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container--form-light
  .select2-selection--single
  .select2-selection__arrow::after {
  position: absolute;
  font-size: 1.125rem;
  font-style: normal;
  font-family: "Serenite" !important;
  content: "\e92c";
  left: 50%;
  top: 50%;
  color: #868686;
  font-weight: 900;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.select2-container--form-light .select2-dropdown {
  border: none;
  z-index: 9999;
  border-radius: 4px;
  margin-top: 2px;
  box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.03);
}
.select2-container--form-light .select2-dropdown li {
  border-top: none;
  font-size: 1rem;
  color: #5b5b5b;
  padding: 0.8rem 1.3rem;
}
.select2-container--form-light .select2-dropdown li:hover {
  background-color: #f6f6f6;
  color: #0a0a0a;
}
.select2-container--form-light .select2-dropdown ul {
  border-radius: 4px;
  box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  background: #fff;
}
.select2-container--form-light
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
/* Light Theme */

/*---- 8.3 Select Dropdown End ---*/

/*---- 8.4 Form Dark Start ---*/
.dark.form-label {
  color: var(--white);
}
.form-dark.form-control {
  background: var(--white);
}
.form-dark.form-control:focus {
  border: none;
  background: #f8f8f8;
  box-shadow: none;
}
/* .form-dark.form-control:disabled, .form-dark.form-control[readonly] {
    opacity: 0.3;
} */
.form-dark.form-check-input {
  background-color: var(--white);
}
.form-dark.form-check-input:checked[type="checkbox"],
.form-dark.form-check-input:checked[type="radio"] {
  background-color: var(--secondary);
}
.form-check .form-check-label.label-dark {
  color: var(--white);
}
/*---- 8.4 Form Dark End ---*/

/*---- 8.5 Form Bordered Start ---*/
.bordered.form-control {
  border: 1px solid #e4e4e4;
  background-color: var(--white);
  border-radius: 0;
}
.bordered.form-control:focus {
  border: 1px solid #d0d0d0;
}
.bordered.form-check-input {
  border: 1px solid #e4e4e4;
  background-color: transparent;
  transition: all 400ms ease-in-out 0s;
}
.bordered.form-check-input[type="checkbox"] {
  border-radius: 0;
}
.bordered.form-check-input:checked {
  border-color: #fc7952;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fc7952' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.select2-container.select2-container--select-light-bordered
  .select2-selection--single {
  border: 1px solid #e4e4e4;
  background: transparent;
  border-radius: 0;
}
.select2-container.select2-container--select-light-bordered.select2-container--open
  .select2-selection--single {
  background-color: transparent;
  border: 1px solid #d0d0d0;
}
.select2-container.select2-container--select-light-bordered .select2-dropdown {
  background-color: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 0;
}

.select2-container--select-light-bordered .select2-results__option--highlighted,
.select2-container.select2-container--select-light-bordered
  .select2-dropdown
  li:hover {
  background-color: #ececec;
  color: #333;
}

/* Dark Theme */
.bordered.form-dark.form-control {
  background: transparent;
  color: var(--white);
  border-radius: 0;
}
.bordered.form-dark::placeholder {
  color: #e4e4e4;
}
.bordered.form-dark.form-check-input:checked {
  border-color: #fc7952;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fc7952' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.bordered.form-dark.form-check-input:checked[type="radio"] {
  background-color: transparent;
}

.select2-container.select2-container--select-dark-bordered
  .select2-selection--single {
  border: 1px solid #e4e4e4;
  color: var(--white);
  background: transparent;
  border-radius: 0;
}
.select2-container.select2-container--select-dark-bordered
  .select2-selection__arrow::after {
  color: var(--white);
}
.select2-container.select2-container--select-dark-bordered.select2-container--open
  .select2-selection--single {
  background-color: transparent;
  border: 1px solid #d0d0d0;
}
.select2-container.select2-container--select-dark-bordered .select2-dropdown {
  background-color: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 0;
}

.select2-container--select-dark-bordered .select2-results__option--highlighted,
.select2-container.select2-container--select-dark-bordered
  .select2-dropdown
  li:hover {
  background-color: #ececec;
  color: #333;
}
/*---- 8.5 Form Bordered End ---*/

/*---- 8.6 Form Bordered Bottom Start ---*/
.bottom-only.bordered.form-control {
  padding-top: 0;
  border-left: 0;
  background: transparent;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.select2-container--select-light-bordered-bottom.select2-container
  .select2-selection--single {
  background: transparent;
  border-bottom: 1px solid #e4e4e4;
  border-radius: 0;
  padding-left: 0;
}

.select2-container.select2-container--select-light-bordered-bottom.select2-container--open
  .select2-selection--single {
  background-color: transparent;
  border-color: #d0d0d0;
}

.select2-container.select2-container--select-light-bordered-bottom
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
}

.select2-container.select2-container--select-light-bordered-bottom
  .select2-dropdown {
  border-radius: 0;
  border: 1px solid #e4e4e4;
  background-color: var(--white);
}
.select2-container--select-light-bordered-bottom
  .select2-results__option--highlighted,
.select2-container.select2-container--select-light-bordered-bottom
  .select2-dropdown
  li:hover {
  background-color: #e4e4e4;
  color: #333;
}

.select2-container--select-dark-bordered-bottom.select2-container
  .select2-selection--single {
  background: transparent;
  border-bottom: 1px solid #e4e4e4;
  border-radius: 0;
  padding-left: 0;
  color: var(--white);
}

.select2-container.select2-container--select-dark-bordered-bottom.select2-container--open
  .select2-selection--single {
  background-color: transparent;
  border-color: #d0d0d0;
}
.select2-container.select2-container--select-dark-bordered-bottom
  .select2-selection--single
  .select2-selection__arrow::after {
  color: var(--white);
}
.select2-container.select2-container--select-dark-bordered-bottom
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
  background-color: transparent;
  border-color: #d0d0d0;
}

.select2-container.select2-container--select-dark-bordered-bottom
  .select2-dropdown {
  border-radius: 0;
  border: 1px solid #e4e4e4;
  background-color: var(--white);
}
.select2-container--select-dark-bordered-bottom
  .select2-results__option--highlighted,
.select2-container.select2-container--select-dark-bordered-bottom
  .select2-dropdown
  li:hover {
  background-color: #e4e4e4;
  color: #333;
}
/*---- 8.6 Form Bordered Bottom Start ---*/

/*-------------------------------------------------------------------
 9. Pages Content
-------------------------------------------------------------------*/

/*---- 9.1 Shop Page ---*/
#shopping-bag {
  position: relative;
  padding-right: 0;
  color: #06163a;
  margin: 0 1.7rem 0 0;
  color: var(--white);
  font-size: 1.5rem;
}
#shopping-bag i {
  position: relative;
  top: 2px;
}
#shopping-bag:hover {
  color: var(--dark);
}
#shopping-bag .badge {
  position: absolute;
  right: -10px;
  top: -4px;
  border-radius: 50%;
  background-color: var(--default);
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
.shop-sidebar {
  position: relative;
}
.shop-sidebar .head {
  background: var(--secondary);
  padding: 0.7rem 1.5rem;
  font-size: 20px;
  color: #fff;
}
.shop-sidebar .offcanvas-header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.7rem 1rem;
}
.shop-sidebar .offcanvas-header .btn {
  padding: 0;
  color: var(--white);
  background: none;
  font-size: 1.5rem;
  margin: 0;
  opacity: 1;
}
.shop-sidebar .offcanvas-header .btn:hover {
  color: #333;
}
.shop-sidebar ul {
  margin: 0;
}
.shop-sidebar ul li {
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}
.shop-sidebar ul li img {
  margin-right: 0.8rem;
  width: 70px;
}
.shop-sidebar ul li h4 {
  margin: 0;
}
.shop-sidebar ul li h4 a {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}
.shop-sidebar ul li h4 a:hover {
  color: var(--primary);
}
.shop-sidebar ul li h6 {
  font-weight: 600;
  color: var(--secondary);
}
.delete-btn {
  margin-left: auto;
}
.delete-btn a {
  color: #999;
}
.delete-btn a:hover {
  color: #333;
}
.sidebar-subtotal {
  background-color: #f4f4f6;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
.btn-holder {
  padding: 1rem;
}
/*---- 9.1 Shop Page End ---*/

/*---- 9.2 Error Page ---*/
.error-search {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
}
.error-search input {
  border: none;
  padding: 0.8rem 3rem 0.8rem 1.3rem;
  width: 100%;
  border-radius: 4px;
  background: var(--light);
}
.error-search ::-webkit-input-placeholder {
  color: var(--dark);
  font-style: normal;
  font-size: 1rem;
}
.error-search :-ms-input-placeholder {
  color: var(--dark);
  font-style: normal;
  font-size: 1rem;
}
.error-search ::placeholder {
  color: var(--dark);
  font-style: normal;
  font-size: 1rem;
}
.error-search input:focus {
  outline: none;
  box-shadow: none;
}
.error-search .search-button {
  border-radius: 0;
  position: absolute;
  right: 0;
  background: transparent;
  color: var(--secondary);
  outline: none;
  border: none;
  height: 100%;
  padding: 1rem;
  display: flex;
  font-size: 1rem;
  top: 0;
}
.error-search .search-button:hover {
  color: var(--default-text);
}

/*---- 9.2 Error Page End ---*/

/*---- 9.3 Pricing Page ---*/
.pricing-bg {
  background: #fff url(../images/Pricing_Bg.svg) repeat-x center -30%;
  /* background-size: contain; */
}
.pricing-wrap {
  border-radius: 10px;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.1);
  padding: 0 2rem 2rem 2rem;
  background: var(--white);
}
.pricing-saving-wrap {
  display: flex;
  justify-content: center;
}
.pricing-saving {
  background: var(--yellow);
  color: var(--white);
  font-size: 0.85rem;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 0.375rem 1rem;
  margin: 0 0.4rem 1rem 0.4rem;
}
.pricing-wrap .plan-name {
  text-align: center;
  font-size: 1.12rem;
  color: var(--default);
  margin-bottom: 1rem;
}
.pricing-wrap .plan-price {
  font-size: 3.75rem;
  color: var(--light-gray);
  font-weight: 700;
  text-align: center;
}
.pricing-wrap .plan-price sup {
  font-size: 1.5rem;
  color: var(--default);
  font-weight: 400;
  position: relative;
  top: -30px;
  left: 13px;
}
.pricing-info {
  color: var(--default-text);
  padding: 0 0.5rem;
  text-align: center;
}
.pricing-wrap .icons-listing li {
  color: var(--default-text);
  font-size: 1rem;
  padding-bottom: 10px;
}
.popular-plan {
  background-color: var(--primary);
  color: var(--white);
}
.popular-plan .plan-price,
.popular-plan .pricing-info,
.popular-plan .plan-name,
.popular-plan .icons-listing li {
  color: var(--white);
}
.popular-saving {
  background-color: var(--default);
}

.pricing-wrap .icons-listing.not-included li,
.pricing-wrap .icons-listing.not-included li::before {
  color: #cbcbcb;
  font-weight: normal;
}

.alternate-version.pricing-wrap .plan-price {
  color: var(--default);
}
.alternate-version.pricing-wrap .pricing-saving {
  background: #e5ebfb;
  font-weight: 600;
  color: var(--default);
}
.pricing-wrap.popular-plan.alternate-version {
  background: var(--violet);
}

.pricing-wrap.popular-plan.alternate-version .popular-saving.pricing-saving {
  background: var(--yellow);
}
.pricing-wrap.popular-plan.alternate-version .pricing-saving {
  background: var(--white);
}

.pricing-wrap.popular-plan.alternate-version .icons-listing.not-included li,
.pricing-wrap.popular-plan.alternate-version
  .icons-listing.not-included
  li::before {
  color: #5f6ccd;
  font-weight: normal;
}
/*---- 9.3 Pricing Page End ---*/

/*---- 9.4 Faqs Page Start ---*/

.faqs-imgs {
  position: absolute;
  top: -50%;
  left: -300px;
  z-index: -9;
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}
.faqs-bg {
  /* background: #FFF url(../images/faqs_shape1.svg) no-repeat -500px center; */
  background-size: auto;
}

.faqs-bg .img-abstract {
  position: absolute;
  left: -60%;
  height: calc(100% + 240px);
  top: -120px;
  margin-top: 0;
  background-image: url(https://mannatstudio.com/assets/images/faqs_shape.svg);
  background-repeat: no-repeat;
  background-position: top right;
  width: 100%;
  z-index: 1;
}
.faqs-bg .row {
  position: relative;
  z-index: 39;
}

.our-faqs-cta {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 7px;
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.08);
  margin-top: 5.5rem;
  position: relative;
  z-index: 39;
}
.our-faqs-cta .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.our-faqs-cta .content h3 {
  margin-bottom: 0;
  color: var(--default-text);
  font-size: 1.5rem;
  font-weight: 500;
}
.our-faqs-cta .content .btn-set {
  flex-shrink: 0;
  margin-left: 2rem;
}
.our-faqs-cta .content .btn-set .btn:not(:last-child) {
  margin-right: 1rem;
}

.faqs-side-img {
  background: url(../images/testimonials_img.jpg) no-repeat center center;
  background-size: cover;
  height: 100%;
  position: relative;
}
/*---- 9.4 Faqs Page End ---*/

/*---- 9.5 Contact Page Start ---*/
.contact-details-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -3rem;
}
.contact-details {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  padding: 3rem 1.8rem;
  position: relative;
  z-index: 2;
  height: 100%;
}
.contact-details a[href^="mailto:"] {
  color: #00272e;
  text-decoration: underline;
}
.contact-details a[href^="mailto:"]:hover {
  color: var(--secondary);
  text-decoration: none;
}
.contact-details .icon-style-border-bottom {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
  align-items: center;
}
.contact-details .icon-style-border-bottom p {
  margin-bottom: 0;
}
.map-frame {
  width: 100%;
  overflow: hidden;
  max-height: 475px;
  position: relative;
  z-index: 1;
}
.map-frame iframe {
  width: 100%;
  border: none;
  height: 475px;
}

/*---- 9.5 Contact Page End ---*/

/*---- 9.6 Blog Pages Start ---*/
.post-pinned {
  position: absolute;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--secondary);
  border-radius: 50%;
  top: -41px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.blog-wrap-rounded {
  border-radius: 7px;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  background: var(--white);
  overflow: hidden;
}
.blog-wrap-rounded .img-wrap img {
  transition: all 400ms ease-in-out 0s;
  width: 100%;
}
.blog-wrap-rounded:hover .img-wrap img {
  transform: scale(1.05);
}
.blog-wrap-rounded .img-over {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--secondary-rgb), 0.5);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--white);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.5s ease;
  visibility: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  opacity: 0;
  transform: translateY(30%);
  transition: all 400ms ease-in-out 0s;
}

.blog-wrap-rounded:hover .img-over {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.blog-wrap-rounded .img-over:hover {
  color: var(--default-text);
  transition: all 400ms ease-in-out 0s;
}
.blog-wrap-rounded .img-wrap {
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 100%);
  margin-bottom: 0rem;
  position: relative;
}
.blog-wrap-rounded .blog-content {
  padding: 1.5rem;
  position: relative;
}
.blog-wrap-rounded .blog-content .meta-tag {
  color: var(--label-color);
  margin-bottom: 0.8rem;
}
.blog-wrap-rounded .blog-content .title a,
.blog-wrap-rounded .blog-content h3 {
  color: var(--default);
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.blog-wrap-rounded .blog-content .title a:hover {
  color: var(--secondary);
}
.blog-wrap-rounded .blog-content h6 {
  color: var(--default-text);
}
.blog-wrap-rounded .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-wrap-rounded .post-footer .post-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-wrap-rounded .post-footer .post-author .author-thumb img {
  width: 45px;
  border-radius: 50%;
  margin-right: 1rem;
}

.blog-wrap-rounded .post-footer .post-author .author-text h5,
.blog-wrap-rounded .post-footer .post-author .author-text h6 {
  margin-bottom: 0;
}

.blog-wrap-rounded .post-footer .post-author .author-text h6,
.blog-wrap-rounded .post-footer .post-author .author-text h6 a {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 4px;
}
.blog-wrap-rounded .post-footer .post-author .author-text h6 a:hover {
  color: var(--default);
}
.blog-wrap-rounded .post-footer .post-author .author-text h6 {
  color: var(--label-color);
  font-weight: normal;
  font-size: 1.25rem;
}
.blog-wrap-rounded .post-footer .post-author .author-text .date {
  font-size: 0.85rem;
  line-height: 1rem;
}
.blog-wrap-rounded .post-footer .post-comment a {
  color: var(--label-color);
  font-weight: 500;
  font-size: 0.85rem;
  display: block;
  align-items: center;
}
.blog-wrap-rounded .post-footer .post-comment a i {
  color: var(--light-gray);
  margin-right: 4px;
  position: relative;
  top: 1px;
  transition: all 400ms ease-in-out 0s;
}
.blog-wrap-rounded .post-footer .post-comment a:hover,
.blog-wrap-rounded .post-footer .post-comment a:hover i {
  color: var(--secondary);
}

.blog-slider-img-wrap .owl-carousel .owl-stage-outer {
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0% 100%);
}
.blog-wrap-rounded .owl-nav {
  margin: 0;
  position: absolute;
  width: auto;
  right: 30px;
  margin-top: -40px;
}

.blog-wrap-rounded .owl-carousel .owl-nav button.owl-prev,
.blog-wrap-rounded .owl-carousel .owl-nav button.owl-next {
  background-color: var(--light-gray);
  color: var(--white);
  width: 45px;
  height: 45px;
}
.blog-wrap-rounded .owl-carousel .owl-nav button.owl-prev:hover,
.blog-wrap-rounded .owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--default);
  color: var(--white);
}
.blog-wrap-rounded .owl-carousel .owl-nav button.owl-prev {
  left: -3px;
}

.blog-layout-standard .blog-wrap-rounded:not(:last-child) {
  margin-bottom: 2.857rem;
}

.post-link {
  background: var(--secondary);
  color: var(--white);
}
.post-link .blog-content .meta-tag,
.post-link .blog-content .title a,
.post-link .blog-content h3,
.post-link .post-footer .post-author .author-text h5,
.post-link .post-footer .post-author .author-text h5 a,
.post-link .post-footer .post-author .author-text h6,
.post-link .post-footer .post-comment a,
.post-link .post-footer .post-comment a:hover,
.post-link .post-footer .post-comment a:hover i {
  color: var(--white);
}
.post-link .post-footer .post-comment a i {
  color: var(--default-text);
}
.post-link .blog-content .title a:hover,
.post-link .post-footer .post-author .author-text h5 a:hover {
  color: var(--default-text);
}
.post-link .blog-content .title a {
  padding-left: 2.5rem;
  position: relative;
  display: block;
}
.post-link .blog-content .title a::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Serenite" !important;
  content: "\e95b";
}
.blog-layout-standard .post-pinned {
  top: -60px;
}
.blog-layout-standard .blog-wrap-rounded .owl-nav {
  margin-top: -65px;
}

.blog-layout-standard .blog-wrap-rounded .blog-content .title a {
  font-size: 1.875rem;
  line-height: 2rem;
}

.blog-layout-standard .blog-wrap-rounded .blog-content {
  padding: 2.5rem;
}

/* Sidebar Widgets */
.sidebar-spacer {
  padding-left: 1.5rem;
}
.widget-wrap {
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 3.125rem;
  padding: 1.875rem;
}
.widget-wrap .widget-title {
  border-bottom: 1px solid #ebf0f6;
  line-height: 1.25rem;
  color: var(--default-text);
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1.65rem;
  margin-bottom: 1.65rem;
}
.blog-list-categories ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.blog-list-categories ul li a i {
  padding-right: 8px;
  position: relative;
  font-size: 1.2rem;
  top: 1px;
}
.blog-list-categories ul li a small {
  font-size: 0.75rem;
  transition: all 400ms ease-in-out;
  color: var(--secondary);
}
.blog-list-categories ul li a:hover small {
  color: var(--default);
}
.blog-list-categories ul {
  margin-bottom: 0;
}
.blog-list-categories a {
  padding: 0rem 0rem 1rem;
  display: block;
  font-size: 1rem;
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: var(--default);
}
.blog-list-categories a:hover {
  color: var(--secondary);
}
.blog-list-categories a:after {
  position: absolute;
  width: 0;
  height: 1px;
  width: 75px;
  background: var(--light);
  content: "";
  left: 0;
  bottom: 0;
  z-index: -1;

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.blog-list-categories a:hover:after,
.blog-list-categories li.active a:after {
  width: 100%;
  background-color: var(--secondary);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.sidebar-search {
  position: relative;
}
.sidebar-search .form-control {
  background: var(--light-gray);
  color: var(--white);
}
.sidebar-search button {
  transition: all 0.25s linear;
  background: var(--light-gray);
  color: var(--white);
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  display: flex;
  justify-content: center;
  height: 40px;
  width: 40px;
  align-items: center;
}
.sidebar-search button:hover {
  color: var(--default);
}
.sidebar-search .form-control::placeholder {
  color: var(--white);
}
.author-sidebar-widget {
  margin-bottom: 1.25rem;
}
.author-sidebar-widget img {
  border-radius: 7px;
  margin-right: 1.375rem;
  width: 75px;
}
.author-sidebar-widget h3,
.author-sidebar-widget h3 a {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.125em;
}
.author-sidebar-widget h3 a:hover {
  color: var(--default);
}
.author-sidebar-widget h3 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 4px;
  color: var(--light-gray);
}
.blog-post-sidebar ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.blog-post-sidebar ul li img {
  transition: all 0.25s linear;
}
.blog-post-sidebar ul li:hover .post-thumb img {
  transform: translateX(5px);
}
.blog-post-sidebar .post-thumb {
  margin-right: 1.563rem;
  flex-shrink: 0;
}
.blog-post-sidebar .post-text {
  flex-grow: 1;
}
.blog-post-sidebar .post-text .date {
  color: var(--label-color);
  font-size: 0.85rem;
  font-weight: normal;
}
.blog-post-sidebar .post-text h6 a,
.blog-post-sidebar .post-text h6 {
  color: var(--default);
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.blog-post-sidebar .post-text h6 a:hover {
  color: var(--secondary);
}
.tagcloud {
  margin-bottom: -10px;
}
.tagcloud a {
  background-color: var(--light-gray);
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  padding: 4px 10px;
  margin-bottom: 10px;
  margin-right: 5px;
  border-radius: 3px;
}
.tagcloud a:hover {
  background-color: var(--secondary);
}

.have-question {
  text-align: center;
  color: #66677c;
  padding: 0 2.5rem;
}
.have-question img {
  width: 150px;
  margin-bottom: 1.2rem;
}
.have-question .btn {
  background: var(--yellow);
  color: var(--white);
  border: none;
}
.have-question .btn:hover {
  background: var(--default);
}
.blog-wrap-rounded.blog-singular-page {
  margin-bottom: 2.5rem;
}
.blog-wrap-rounded.blog-singular-page:hover .img-wrap img {
  transform: none;
}
.blog-singular-page blockquote {
  margin: 2.5rem 0;
}
.blog-singular-page h2,
.blog-singular-page h5 {
  color: var(--default-text);
}

.share-love-wrap {
  margin-top: 2rem;
  border-bottom: 1px solid var(--light);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
.share-on a:not(:last-child),
.post-tags a:not(:last-child) {
  margin-right: 0.7rem;
}

.fb-share {
  color: #3c5898;
}
.t-share {
  color: #08aced;
}
.d-share {
  color: #ea4c89;
}
.fb-share:hover {
  color: #3963c7;
}
.t-share:hover {
  color: #2ac0fc;
}
.d-share:hover {
  color: #a02755;
}
.make-fav i {
  padding-right: 7px;
}
.make-fav {
  margin-left: auto;
}
.make-fav a {
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
}
.make-fav a.active,
.make-fav a:hover {
  color: #ff0000;
}
.post-tags a {
  color: var(--light-gray);
  font-weight: 500;
}
.post-tags a:hover {
  color: var(--default);
}

.author-bio {
  margin: 0 2.5rem 2.5rem;
  display: flex;
}
.author-bio .thumb img {
  flex-shrink: 0;
  max-width: 75px;
  border-radius: 7px;
  margin-right: 1.5rem;
  overflow: hidden;
}
.author-bio .content h6 {
  margin-bottom: 0;
}
.author-bio .content h6 small {
  display: block;
  font-size: 1rem;
  color: var(--light-gray);
  font-weight: normal;
}
.author-bio .content .hstack {
  padding-bottom: 1rem;
}
.author-bio .content h4 {
  margin-bottom: 0;
}
.author-bio .content h6 a {
  color: var(--secondary);
}
.author-bio .content h4 a:hover {
  color: var(--default);
}
.author-bio .content .read-more {
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 600;
  color: var(--default);
}
.author-bio .content .read-more:hover {
  color: var(--light-gray);
}
.author-bio .content .read-more i {
  margin-left: 4px;
}
.author-bio .content .read-more:hover i {
  animation: toRightFromLeft 0.3s forwards;
}

.post-content-widget {
  border-radius: 7px;
  box-shadow: rgb(0 0 0 / 8%) 0px 0px 68px 0px;
  background: var(--white);
  overflow: hidden;
  padding: 2.5rem;
}
.post-content-widget:not(:last-child) {
  margin-bottom: 2.5rem;
}

.posted-comments {
  display: flex;
  margin-top: 1.5rem;
}
.posted-comments:not(:last-child) {
  border-bottom: 1px solid var(--light);
  padding-bottom: 1.5rem;
}
.posted-comments:not(:first-child) .content p {
  margin-bottom: 0;
}
.posted-comments .thumb img {
  flex-shrink: 0;
  max-width: 75px;
  border-radius: 7px;
  margin-right: 1.5rem;
  overflow: hidden;
}
.posted-comments .content .date {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: normal;
}
.posted-comments .content .hstack {
  padding-bottom: 1.071rem;
}
.posted-comments .content h6 {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.posted-comments .content h6 a,
.posted-comments .content .reply a:hover {
  color: var(--default-text);
}
.posted-comments .content h6 a:hover,
.posted-comments .content .reply a {
  color: var(--secondary);
}
.posted-comments .content .reply a {
  font-size: 1rem;
}

.posted-comments.reply-comment {
  margin-left: 6.18rem;
}
/*---- 9.6 Blog Pages End ---*/

/*---- 9.7 Portfolio Pages Start ---*/
.isotope-gallery {
  margin-bottom: -2.857rem;
}
.isotope-gallery .gallery-item {
  margin-bottom: 2.857rem;
}
.portfolio-gallery-item {
  margin-bottom: 0;
}
.portfolio-gallery-item .item-img img {
  transition: all 400ms ease-in-out 0s;
  width: 100%;
  transform: scale(1.01);
}
.portfolio-gallery-item:hover .item-img img {
  transform: scale(1.05);
}
.portfolio-gallery-item .item-img .portfolio-img-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background-color: var(--dark);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.1);
  transition: all 400ms ease-in-out 0s;
  width: 100%;
}
.portfolio-gallery-item:hover .item-img .portfolio-img-gallery {
  box-shadow: none;
}
.portfolio-gallery-item .item-img .portfolio-img-gallery .img-over {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--white);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.5s ease;
  visibility: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 400ms ease-in-out 0s;
}
.portfolio-gallery-item:hover .item-img .portfolio-img-gallery .img-over {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.portfolio-gallery-item .item-img .arrow {
  position: absolute;
  bottom: -26px;
  right: 30px;
  height: 52px;
  width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  background: var(--violet);
  border-radius: 50%;
  color: var(--white);
  transition: all 400ms ease-in-out 0s;
}
.portfolio-gallery-item .item-img .arrow:hover {
  background: var(--default);
}
.portfolio-gallery-item .item-img .arrow:hover i {
  animation: toRightFromLeft 0.3s forwards;
}
.portfolio-gallery-item .item-img {
  position: relative;
}
.portfolio-gallery-item .item-content {
  padding: 1.5rem 1.875rem 0 1.5rem;
}
.portfolio-gallery-item .item-content h6 {
  margin-bottom: 0.5rem;
}
.portfolio-gallery-item .item-content h6 a {
  color: var(--default);
  font-weight: 500;
}
.portfolio-gallery-item .item-content h6 a:hover {
  color: var(--secondary);
}
.portfolio-gallery-item .item-content .sub-head {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
#portfolio-flters {
  margin: 0 0 2.75rem 0;
  text-align: center;
  padding: 0;
  list-style-type: none;
}
#portfolio-flters li {
  display: inline-block;
  position: relative;
}
#portfolio-flters li:not(:last-child):before {
  content: "";
  position: absolute;
  right: -1rem;
  background: #e7e7e7;
  width: 2px;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
}
#portfolio-flters li:not(:last-child) {
  margin-right: 2rem;
}
#portfolio-flters li a {
  color: var(--light-gray);
  display: inline-block;
  padding: 0;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: capitalize;
}
#portfolio-flters li a:hover,
#portfolio-flters li.filter-active a {
  color: var(--default);
}
.captured-gallery-item {
  margin: 0 0 1.5rem 0;
}

.four-column .portfolio-gallery-item .item-img .arrow {
  width: 45px;
  right: 15px;
  bottom: -22px;
  height: 45px;
}
.four-column .portfolio-gallery-item .item-content {
  padding: 1.9rem 1rem 0 1rem;
}
.portfolio-slider-wrap-outer {
  position: relative;
  z-index: 1;
}
.portfolio-slider-wrap {
  position: relative;
  margin-top: 5rem;
  border-style: solid;
  border-width: 7px;
  border-color: rgb(255, 255, 255);
  background-color: rgb(249, 250, 255);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: -14rem;
  z-index: 2;
}
.portfolio-slider-wrap .owl-nav {
  position: absolute;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  justify-content: space-between;
}
.portfolio-slider-wrap .owl-carousel .owl-nav button.owl-prev,
.portfolio-slider-wrap .owl-carousel .owl-nav button.owl-next {
  background-color: var(--secondary);
  color: var(--white);
}
.portfolio-slider-wrap .owl-carousel .owl-nav button.owl-prev:hover,
.portfolio-slider-wrap .owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--default-text);
}
.portfolio-slider-wrap .owl-carousel .owl-nav button.owl-prev {
  left: -30px;
}
.portfolio-slider-wrap .owl-carousel .owl-nav button.owl-next {
  right: -30px;
}
.pattern-white-bg {
  background: url(../images/topography-background.png) repeat var(--default);
  clip-path: polygon(0 14%, 100% 0%, 100% 100%, 0% 100%);
}
.portfolio-single-details {
  color: var(--white);
  margin-top: 10rem;
}
.portfolio-single-details .hstack:not(:last-child) {
  margin-bottom: 3.375rem;
}
.portfolio-single-details .hstack .client-details:not(:last-child) {
  margin-right: 1rem;
}
.portfolio-single-details h6 {
  color: var(--white);
}
.client-details .head {
  font-weight: 400;
  padding-bottom: 5px;
  font-size: 1rem;
  color: var(--light-gray);
}
.client-details .tags a {
  color: var(--secondary);
  font-size: 1.125rem;
  font-weight: 500;
}
.client-details .tags a:hover {
  color: var(--white);
}
.square-top {
  position: absolute;
  right: -80px;
  top: -80px;
  z-index: 1;

  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}

.portfolio-content .section-content:not(:last-child) {
  margin-bottom: 4.375rem;
}
.portfolio-content .section-content p:last-child {
  margin-bottom: 0;
}
.portfolio-content .section-content > h3 {
  color: var(--default-text);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.portfolio-contact-form {
  border-radius: 12px;
  overflow: hidden;
  background: url(../images/portfolio/portfolio_contact_form.jpg) no-repeat top
    center;
  background-size: cover;
  padding: 4.375rem;
  color: var(--white);
  position: relative;
}
.portfolio-contact-form::before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(40, 46, 103, 0.2);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.portfolio-contact-form .form {
  position: relative;
  z-index: 2;
}
.portfolio-contact-form .form h3 {
  color: var(--white);
}
/*---- 9.7 Portfolio Pages End ---*/

/*---- 9.8 Our Services Pages Start ---*/
.pattern_abstract_bg {
  background-color: var(--default);
  margin-top: 120px;
}

.pattern_abstract_bg .stats-img-abstract {
  pointer-events: none;
  position: absolute;
  right: -50%;
  height: 100%;
  top: 0;
  margin-top: 0;
  background-image: url(../images/round_abstract_bg.svg);
  background-repeat: no-repeat;
  background-position: left center;
  width: 100%;
}
.stats-img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 60%;
  width: auto;
}
.our-service-pattern {
  overflow: hidden;
  position: relative;
}
.our-service-pattern > .container {
  position: relative;
  z-index: 4;
}
.our-service-pattern::before,
.our-service-pattern::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  z-index: 1;
  clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
  background: var(--yellow-light);
  height: 650px;
}
.our-service-pattern::before {
  top: 150px;
}
.our-service-pattern::after {
  top: 580px;
}

.how-it-works-wrap {
  background: var(--light-gray);
  padding: 6.25rem 0;
  max-width: 1650px;
  margin: 0 auto;
}
.how-it-works {
  position: relative;
  margin-bottom: 2.5rem;
}
.how-it-works .content {
  text-align: center;
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}
.how-it-works .count {
  position: absolute;
  z-index: 1;
  bottom: 80%;
  color: var(--default);
  opacity: 0.1;
  font-size: 6.25rem;
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.how-it-works-wrap .partner-text {
  color: var(--default-text);
}
.how-it-works-wrap .partner-text span {
  color: var(--white);
}
.how-it-works-wrap .partner-text a {
  color: var(--white);
}
.how-it-works-wrap .partner-text a:hover {
  color: var(--default);
}

.img-gradient {
  margin-right: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.img-gradient img {
  width: 100%;
  position: relative;
  z-index: 1;
  border-style: solid;
  border-width: 7px;
  border-color: var(--white);
  background-color: var(--white);
  -webkit-box-shadow: 0px -20px 46px 5px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px -20px 46px 5px rgb(0 0 0 / 10%);
  box-shadow: 0px -20px 46px 5px rgb(0 0 0 / 10%);
}
.img-gradient::before {
  position: absolute;
  content: "";
  width: calc(100% + 3.5px);
  height: 300px;
  bottom: -20px;
  left: 0;
  z-index: 11;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 87%
  );
}
.video-bg-off-wrap .tick-icon-big .icon-space {
  background: var(--default);
}
.video-bg-off-wrap .tick-icon-big .text-space h2,
.video-bg-off-wrap .tick-icon-big .text-space {
  color: var(--white);
}

.video-bg-off-wrap {
  margin-bottom: 180px;
}
.video-bg-off-wrap .link-light {
  color: var(--white) !important;
}
.video-bg-off-wrap .link-light:hover {
  color: var(--yellow) !important;
}
.video-bg-off {
  position: relative;
}
.video-bg-off img {
  position: relative;
  max-width: initial;
  left: -320px;
  margin-bottom: -100px;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 30%;
  bottom: 0;
  right: 0;
}
.video-play-btn a {
  border-radius: 50%;
  background: var(--secondary);
  height: 90px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 2.5rem;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
}

@-webkit-keyframes spineer {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(252, 121, 82);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@keyframes spineer {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(252, 121, 82);
    box-shadow: 0 0 0 0 rgba(252, 121, 82);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

.service-form {
  border-radius: 7px;
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
}
.service-form h6 {
  font-weight: 600;
  color: var(--secondary);
}
.services-related-slider {
  margin-bottom: 180px;
  overflow: hidden;
}
.services-related-slider .owl-carousel-1 {
  margin-left: calc((100% - 1260px) / 2);
  width: auto;
  min-width: auto;
  max-width: inherit;
}
.services-related-slider .owl-carousel.container .owl-stage-outer {
  overflow: visible;
  clip-path: inset(-100vw -100vw -100vw -1rem);
}
.services-related-slider .owl-carousel.container .item .icon-style-top-icon {
  box-shadow: 0px 0px 18px 0px rgb(0 0 0 / 8%);
}
.services-related-slider .owl-carousel.top-right-arrow .owl-nav {
  top: -123px;
  right: 012px;
}
.services-related-slider .owl-carousel.top-right-arrow .owl-nav button.owl-prev,
.services-related-slider
  .owl-carousel.top-right-arrow
  .owl-nav
  button.owl-next {
  background: var(--light-gray);
  color: var(--white);
}
.services-related-slider
  .owl-carousel.top-right-arrow
  .owl-nav
  button.owl-prev:hover,
.services-related-slider
  .owl-carousel.top-right-arrow
  .owl-nav
  button.owl-next:hover {
  background: var(--default);
}

.line-bg {
  overflow: hidden;
  position: relative;
}
.line-bg .container {
  position: relative;
  z-index: 9;
}
.line-1,
.line-2,
.line-3,
.line-4 {
  position: absolute;
  z-index: 1;
}
.line-1 {
  left: -600px;
  top: -106px;
  transform: rotate(-70deg);
}
.line-2 {
  left: -600px;
  top: -141px;
  transform: rotate(-54deg);
}
.line-3 {
  right: -700px;
  top: 0;
  transform: rotate(5deg);
}
.line-4 {
  right: -700px;
  top: 20px;
  transform: rotate(25deg);
}
.line-1 svg,
.line-2 svg,
.line-3 svg,
.line-4 svg {
  stroke: var(--white);
  opacity: 0.1;

  animation-duration: 2.3s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}

.circle-thumbs {
  background: url(../images/map_bg_white.png) no-repeat center center;
  padding: 2rem;
  position: relative;
  background-size: contain;
}
.circle-thumbs .thumb {
  position: absolute;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;

  animation: 2s ease 0s infinite normal none running spineer;
}

.circle-thumbs .thumb.one {
  left: 8%;
  top: 19%;
}
.circle-thumbs .thumb.two {
  left: 39%;
  top: 13%;
}
.circle-thumbs .thumb.three {
  right: 17%;
  top: 28%;
}
.circle-thumbs .thumb.four {
  left: 27%;
  bottom: 5%;
}
.circle-thumbs .thumb.five {
  left: 30%;
  bottom: 32%;
}
.circle-thumbs .thumb.six {
  right: 17%;
  bottom: 27%;
}
.circle-thumbs svg circle {
  stroke: var(--white);
  opacity: 0.3;
}
/*---- 9.8 Our Services Pages End ---*/

/*---- 9.9 Our Team Pages Start ---*/
.team-wrap-outer {
  margin-bottom: -2.813rem;
}
.team-wrap {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  margin-bottom: 2.813rem;
  box-shadow: 0px 0px 68px 0px rgba(0, 0, 0, 0.08);

  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.team-wrap .img,
.team-wrap .content {
  width: 50%;
}
.team-wrap .img {
  overflow: hidden;
  height: 270px;
}
.team-wrap .img a {
  display: block;
  height: 100%;
}
.team-wrap .img img {
  transform: scale(1.06);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.team-wrap:hover .img img {
  transform: scale(1);
}
.team-wrap .content {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-wrap .content h6 {
  margin-bottom: 0.2rem;
}
.team-wrap .content .post {
  margin-bottom: 1rem;
}
.team-wrap .content .social-icons {
  display: flex;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.team-wrap .content .social-icons li:not(:last-child) {
  margin-right: 0.7rem;
}
.team-wrap .content .social-icons li {
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.team-wrap:hover .content .social-icons li {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.team-wrap:hover .content .social-icons li {
  visibility: visible;
  opacity: 1;
}
.team-wrap .content .social-icons li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.team-wrap .content .social-icons li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.team-wrap .content .social-icons li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.team-wrap .content .social-icons li:nth-child(4) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.team-wrap .content .social-icons li:nth-child(5) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.team-wrap .content .social-icons li a {
  font-size: 1rem;
  display: block;
  color: var(--default);
  opacity: 0.5;
}
.team-wrap .content .social-icons li a:hover {
  opacity: 1;
}
.team-wrap .arrow-read-more a {
  color: var(--secondary);
}
.team-wrap .arrow-read-more a:hover {
  color: var(--light-gray);
}

.team-wrap .content h6 a {
  color: var(--default);
}
.team-wrap .content h6 a:hover {
  color: var(--secondary);
}

.team-single {
  display: flex;
  padding: 4rem;
}
.team-single .img {
  flex-shrink: 0;
}
.team-single .img > img {
  border-radius: 50%;
  margin-right: 2rem;
}
.team-single .team-content span {
  color: var(--light-gray);
  font-size: 1rem;
  font-weight: normal;
}
.team-single .team-content h2 {
  color: var(--default-text);
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.team-single .team-content {
  font-size: 1rem;
}
.team-single .team-content p:last-child {
  margin-bottom: 0;
}
.team-footer {
  border-top: 1px solid #dcdde1;
  padding: 2rem 0;
  background: var(--secondary);
}
.team-footer .social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.team-footer .social-icons a {
  margin: 0 7px;
  color: var(--white);
  opacity: 1;
}
.team-footer .social-icons a:hover {
  color: var(--default-text);
}
/*---- 9.9 Our Team Pages End ---*/

/*---- 9.10 About Us Page Start ---*/
.years-started {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -3rem;
  z-index: 11;
  position: relative;
}
.years-started .years {
  margin-right: 1.5rem;
  padding: 0.7rem;
  background: var(--default);
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
  border-radius: 7px;
  font-weight: 700;
}
.years-started .years span {
  font-size: 1rem;
  display: block;
  padding-left: 10px;
  font-weight: 400;
}
.years-started .content h1 {
  line-height: 1;
  margin: 0;
}

.years-started .content h1 span.timer {
  font-size: 3rem;
  color: var(--secondary);
  font-weight: 700;
}
.years-started .content span {
  display: block;
  font-size: 1.25rem;
  color: var(--default-text);
  font-weight: 400;
}

.about-video-intro {
  padding: 6rem 0 0 0;
}
.about-video-intro .section-title u {
  text-decoration: none;
  position: relative;
  background-size: 100% 10%;
  background-repeat: no-repeat;
  background-position: left 80%;
  background-image: linear-gradient(
    to right,
    var(--yellow) 0%,
    var(--yellow) 100%
  );
}
.about-video-intro .play-btn {
  text-align: center;
  color: var(--white);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-video-intro .play-btn .popup-video {
  background: var(--yellow);
  color: var(--white);
  border-radius: 50%;
  width: 87px;
  height: 87px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-right: 1rem;

  -webkit-animation: spineer-white 2s infinite;
  animation: spineer-white 2s infinite;
}

@-webkit-keyframes spineer-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@keyframes spineer-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255);
    box-shadow: 0 0 0 0 rgba(255, 255, 255);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
.about-video-intro .play-btn .popup-video:hover {
  opacity: 0.8;
}
.about-video-intro .play-btn .popup-video i {
  transform: translateX(3px);
}

.intro-stats {
  padding-top: 4rem;
}

.about-why-choose {
  position: relative;
  overflow: hidden;
}
.about-why-choose .container {
  position: relative;
  z-index: 3;
}
.about-why-choose::before {
  position: absolute;
  content: "";
  width: 80%;
  height: calc(100% + 20px);
  clip-path: polygon(0 0, 75% 0, 56% 100%, 0% 100%);
  left: 0;
  top: 0;
  background: var(--white);
  z-index: 1;
}
/*---- 9.10 About Us Page End ---*/

/*---- 9.11 Home Digital Marketing Start ---*/
.pattern-white-bg.straight {
  clip-path: none;
  margin-bottom: 7rem;
}
.pattern-white-bg.straight .about-video-intro {
  padding-top: 0;
}
.pattern-white-bg.straight .about-video-intro .play-btn {
  justify-content: flex-start;
}
.img-character-guy {
  margin-bottom: -15rem;
}
.img-character-guy img {
  transform: translateX(-7rem);
  max-width: inherit;
}

.marketing-banner-wrap {
  padding: 0 0 100px;
}
.marketing-banner {
  color: var(--white);
  padding: 80px 0 50px 0;
}

.marketing-banner-wrap .marketing-banner .title h1 strong,
.marketing-home.header-bg .marketing-banner .title h1 strong {
  color: var(--white);
}
.marketing-character {
  position: relative;
  bottom: -60px;
  height: 600px;
}
.marketing-banner .cta-group {
  padding: 0;
}
.marketing-banner .cta-group .btn:not(:last-child) {
  margin-right: 0.8rem;
}
.marketing-banner .title > span {
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin-bottom: 7px;
  display: inline-block;
  font-size: 1rem;
}
.marketing-banner .title h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -0.1rem;
}

.marketing-banner .title h1 strong {
  font-weight: 700;
}
.marketing-banner .title h1 strong u {
  text-decoration: none;
  position: relative;
  background-size: 100% 10%;
  background-repeat: no-repeat;
  background-position: left 80%;
  background-image: linear-gradient(
    to right,
    var(--yellow) 0%,
    var(--yellow) 100%
  );
}

.banner-call {
  position: absolute;
  bottom: 100px;
  right: 20px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgb(0 0 0 / 8%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  z-index: 4;
}

.banner-call .icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  border: 1px solid var(--violet);
}

.banner-call .icon i {
  animation: tada 2s infinite;
}
.banner-call .content .head {
  columns: var(--default-text);
  font-size: 1.25rem;
  font-weight: 700;
}
.banner-call .content a {
  color: #66677c;
  font-size: 1.125rem;
}
.banner-call .content a:hover {
  color: var(--secondary);
}

#marketing-banner-slider {
  position: absolute;
  top: -90px;
  z-index: 1;
}
#marketing-banner-slider.owl-carousel .item {
  padding: 1.5rem 1rem;
}
.marketing-welcome {
  margin-top: 2%;
}
.marketing-welcome .img-character {
  margin-bottom: -15rem;
}
.seamless-integration {
  margin-bottom: 10rem;
}
.seamless-integration .img-character {
  margin-bottom: -10rem;
}
.seamless-integration .img-character img {
  max-width: initial;
}
.sm-icons {
  position: relative;
  height: 450px;
  margin-left: auto;
  width: 80%;
}
.sm-icons .icon {
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 68px 0px rgb(0 0 0 / 8%);
  display: flex;
  position: absolute;
  padding: 1rem;
  cursor: pointer;
  transition: all 700ms ease-in-out 0s;

  z-index: 1;

  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: up-down-move;
  animation-timing-function: linear;
}

.sm-icons .icon:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.39);
}

.sm-icons .icon.mobilepay {
  top: 10%;
  left: 5%;

  animation-duration: 2.3s;
}
.sm-icons .icon.slack {
  top: 0;
  left: 40%;
  animation-duration: 2.2s;
}
.sm-icons .icon.trello {
  top: 12%;
  right: 7%;
  animation-duration: 2.4s;
}
.sm-icons .icon.icon-4 {
  top: 38%;
  left: 38%;
  animation-duration: 2.5s;
}
.sm-icons .icon.github {
  bottom: 11%;
  left: 12%;
  animation-duration: 2.1s;
}
.sm-icons .icon.dropbox {
  top: 31%;
  right: 21%;
  z-index: 13;
  animation-duration: 2.6s;
}
.sm-icons .icon.shopify {
  bottom: 0%;
  right: 43%;
  animation-duration: 2.7s;
}
.sm-icons .icon.sales-force {
  bottom: 4%;
  right: 9%;
  z-index: 14;
  animation-duration: 2.8s;
}
/*---- 9.11 Home Digital Marketing End ---*/

/*---- 9.12 Singup/Signin Popups Start ---*/
#signup,
#signin {
  width: 90%;
  background: var(--secondary);
  overflow: unset;
}
@media (min-width: 575px) {
  #signup,
  #signin {
    width: 500px;
  }
}
.mobile-offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem;
  outline: none;

  border-radius: 0;
  opacity: 1;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  background-image: none;
  background: var(--secondary);
  z-index: 7;
}
.mobile-offcanvas .btn-close:hover,
.mobile-offcanvas .btn-close:focus {
  background: var(--primary);
  outline: none;
  border: none;
  box-shadow: none;
}
.mobile-offcanvas .btn-close i {
  position: relative;
  top: -1px;
}
.or-text {
  padding: 2.5rem 0;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  position: relative;
}
.or-text span {
  background: var(--light);
  position: relative;
  z-index: 2;
  padding: 0 20px;
  font-size: 1rem;
}
.or-text::after {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 0.5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
}
.popup-wrapper {
  padding: 4rem;
  height: 100%;
  position: relative;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}
.popup-wrapper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--light);
  min-height: 400px;
}
.popup-wrapper .content {
  position: relative;
  z-index: 3;
}
.form-wrap {
  background: var(--white);
  padding: 3rem;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 3;
}
.popup-wrapper h3 {
  margin-bottom: 0rem;
  font-weight: 300;
}
.social-login-btn {
  display: flex;
  padding: 2.5rem 0 0 0;
  gap: 0rem;
  justify-content: space-between;
}
.social-login-btn a {
  width: 48%;
  display: flex;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-align: center;
  color: rgba(41, 41, 41, 1);
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.social-login-btn a i {
  padding-right: 5px;
  position: relative;
  top: -1px;
}
.social-login-btn a.gm {
  border: 1px solid rgb(168, 168, 168);
}
.social-login-btn a.gm:hover {
  border-color: rgb(117, 117, 117);
}
.social-login-btn a.fb {
  background: #1877f2;
  color: var(--white);
}

.info-form {
  color: var(--dark);
}
.info-form a {
  color: var(--primary);
}
.info-form a:hover {
  color: var(--secondary);
}
/*---- 9.12 Singup/Signin Popups End ---*/

/*-------------------------------------------------------------------
10. Media Query
-------------------------------------------------------------------*/
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

@media (min-width: 1921px) {
}

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

@media (max-width: 1490px) {
  footer {
    max-width: calc(100% - 30px);
  }
}

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

@media (max-width: 1600px) {
  footer {
    background-position: -70px 0;
  }
  .pricing-bg {
    background: #fff url(../images/Pricing_Bg.svg) repeat-x center -0%;
  }

  .how-it-works-wrap {
    max-width: 95%;
  }
}

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

@media (max-width: 1400px) {
  footer {
    background-position: -170px 0;
  }

  .video-bg-off img {
    left: -420px;
    width: 1000px;
  }
  .video-play-btn {
    left: 20%;
  }
  .video-bg-off-wrap {
    padding-bottom: 70px !important;
  }

  .testimonial-single {
    width: 90%;
  }

  /* Home Marketing Page */
  .marketing-banner-wrap .container {
    /* max-width: 95%; */
  }
  .marketing-banner {
    padding: 60px 0 90px 0;
  }
  .marketing-banner .title h1 {
    font-size: 3.5rem;
  }
  /* Home Marketing Page */
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

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

@media (max-width: 1200px) {
  .typo-btn .btn {
    min-width: auto;
  }
  .navbar-brand {
    margin-right: 1rem;
  }
  .signup-btn {
    padding: 0.8rem 0.7rem 0.4rem;
  }
  #search_home {
    width: 38px;
    height: 38px;
  }
  /* .icon-style-left{
        flex-direction: column;
        align-items: flex-start;
    } */
  .stats-img {
    width: 45%;
  }
  .pattern_abstract_bg {
    margin: 0;
  }
  .video-bg-off img {
    left: -470px;
    width: 960px;
    margin-bottom: -140px;
  }
  .video-bg-off-wrap {
    padding-bottom: 70px !important;
    margin-bottom: 70px;
  }

  .marketing-welcome .img-character {
    margin-bottom: 0;
  }
}

/* Portrait and Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .pattern_abstract_bg .stats-img-abstract {
    background-size: contain;
    width: 70%;
    left: auto;
    right: -0;
  }
  .stats-img {
    width: 45%;
    left: auto;
    right: 0;
  }
}

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

@media (max-width: 1040px) {
  .marketing-banner .cta-group {
    padding: 1rem 0;
  }
}

/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 15px;
  }
  /* Home Styles */
  .why-choose-icons {
    margin-bottom: 3rem;
  }

  /* CTA Styles */
  .callout-text {
    max-width: 90%;
  }

  /* Main Menu Styles */
  .navbar-expand-md .navbar-nav .nav-link,
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0.7rem 0.6rem;
    font-size: 1rem;
  }

  .navbar .dropdown-menu li > a {
    font-size: 0.9rem;
  }

  .navbar-brand img {
    width: 140px;
  }

  .home-default-banner .banner-img img {
    transform: translateX(-140px);
  }

  /* Home Marketing Page */
  .marketing-banner {
    padding: 50px 0 40px 0;
  }
  .marketing-banner .title h1 {
    font-size: 3rem;
  }
  /* Home Marketing Page */

  /*---- Margin/Padding Spacing ---*/
  .section-spacing {
    margin-bottom: 70px;
  }
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  /*---- Margin/Padding Spacing End ---*/
}
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

@media (min-width: 768px) and (max-width: 991.99px) {
  html {
    font-size: 15px;
  }
  .mr-top-footer {
    margin-top: 2.5rem;
  }

  .intro-stats [class*="col-"] {
    width: 33.33%;
    margin: 0 !important;
  }
}

@media (max-width: 991.99px) {
  html {
    font-size: 14px;
  }
  /* body, html, p {
        font-size: 16px;
    } */

  p {
    font-size: 1rem;
  }

  /* Heading */
  h1 {
    font-size: 2.857rem;
    line-height: 3.714rem;
  }
  h2 {
    font-size: 2.2rem;
    line-height: 2.571rem;
  }
  h3 {
    font-size: 2rem;
    line-height: 2.286rem;
  }
  h4 {
    font-size: 1.571rem;
    line-height: 2.143rem;
  }
  h5 {
    font-size: 1.286rem;
    line-height: 1.714rem;
  }
  h6 {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  /* Heading */

  /* Header */
  .navbar {
    padding: 0.7rem 0rem;
  }
  .fixed-top.navbar {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(var(--primary-rgb), 0.8);
  }
  .offcanvas.offcanvas-start {
    height: 100dvh;
    background-color: rgba(255, 255, 255, 1);
  }
  .navbar-toggler {
    padding-right: 0;
  }
  .offcanvas-backdrop.show {
    opacity: 0.8;
    background-color: var(--default-text);
  }

  /* .header-bg{
        background-image: none !important;
    }
    header{
        background-color: #6772e1;
    } */
  .bg-secondary header {
    background-color: #fc8663;
  }
  .breadcrumbs-page {
    padding-bottom: 12rem;
    padding-top: 2rem;
  }
  .navbar-expand-md .navbar-nav .nav-link,
  .navbar-expand-lg .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: space-between;
    position: relative;
  }
  .dropdown > a::after {
    position: absolute;
    top: 50%;
    height: 12px;
    width: 12px;
    transition: all 400ms ease-in-out;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--default-text);
  }
  .dropdown > a.show::after,
  .dropdown-submenu > a.show::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
  }
  .navbar-nav .nav-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle,
  .dropdown-menu {
    border-radius: 3px;
    background-color: #fff;
    color: var(--default-text);
    padding: 0;
    padding: 0.5rem 0;
  }
  .navbar-nav .active .nav-link,
  .navbar-nav .active .nav-link:hover,
  .navbar-nav .nav-item:hover > a,
  .navbar-nav .nav-link:hover {
    color: var(--primary);
  }
  .navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle.show {
    color: var(--primary);
  }
  .navbar .dropdown-menu a,
  .navbar .dropdown-menu li > a {
    padding: 10px 15px;
  }
  .navbar-nav .dropdown-menu {
    position: static;
    padding: 3px 0;
  }
  .typo-border {
    border-left: none;
    padding: 2rem 0 0 0rem;
    border-top: 1px solid #e5e5e5;
    margin: 1rem 0 0 0;
  }
  .typo-btn .btn {
    margin: 0 0.5rem 1rem 0;
    white-space: nowrap;
  }

  /*---- Margin/Padding Spacing ---*/
  .section-spacing {
    margin-bottom: 70px;
  }
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  /*---- Margin/Padding Spacing End ---*/
  .tabbing-content.nav-pills .nav-link:before {
    display: none;
  }
  footer {
    background-position: -100px -120px;
    max-width: 100%;
  }
  main.bg-light::before {
    height: 225px;
  }
  header.fixed-top {
    position: relative !important;
  }
  .dropdown-menu {
    box-shadow: none;
    background-color: rgba(var(--primary-rgb), 0.1);
  }
  .navbar .dropdown-menu li.dropdown-submenu::after {
    display: none;
  }
  /* Header */

  /* Breadcrumbs */
  .breadcrumbs-page h1 {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }
  /* Breadcrumbs */

  /* Shortcodes */
  .section-title {
    /* overflow-x: clip; */
    /* overflow: hidden; */
    margin-bottom: 2.5rem;
  }
  .section-title h1 {
    font-size: 2.25rem;
    letter-spacing: -0.1rem;
  }
  /* .icon-style-left .text-wrap{
        flex-direction: column;
        align-items: flex-start;
    } 
    .icon-style-left .text{
        margin: 0 0 1rem 0;
    }*/
  .process-icons [class*="col"]:nth-child(even) .icon-style-process {
    margin-bottom: 2rem;
  }

  .dots-border-light.owl-carousel .owl-dots {
    position: relative;
    margin-top: 2rem;
    bottom: 0;
    text-align: left;
  }
  .faqs-side-img {
    background: none;
  }
  .faqs-side-img img {
    width: 100%;
  }

  /* Shortcodes */

  .pricing-bg {
    padding-bottom: 0 !important;
  }

  /* Blog Pages */
  .sidebar-spacer {
    padding-left: 0;
    padding-top: 2rem;
  }
  /* Blog Pages */

  /* Faqs Pages */
  .our-faqs-cta .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .our-faqs-cta .content h3 {
    margin-bottom: 1rem;
    line-height: 1.5rem;
    font-size: 1.25rem;
  }
  .our-faqs-cta .content .btn-set {
    margin-left: 0;
  }
  .faqs-imgs {
    top: 0;
  }
  /* Faqs Pages */

  .testimonial-single-wrap {
    padding: 70px 0;
  }

  /* Our Services Pages */
  .stats-img {
    position: relative;
    left: 0%;
    text-align: center;
    width: 50%;
    margin: 2rem auto 0;
    bottom: 0;
  }
  .pattern_abstract_bg .stats-img-abstract {
    right: 0;
    height: 100%;
    top: auto;
    background-position: bottom center;
    bottom: -50px;
    background-size: contain;
  }
  .pattern_abstract_bg {
    padding-bottom: 0 !important;
    overflow: hidden;
  }
  .img-gradient {
    margin: 0 0 4rem 0;
  }
  .video-bg-off img {
    left: -0;
    width: 100%;
    margin-bottom: 0;
  }
  .video-bg-off {
    margin-bottom: 40px;
  }
  .video-play-btn {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
  }
  .video-bg-off-wrap {
    padding-bottom: 0px !important;
    margin-bottom: 0 !important;
  }
  .video-bg-off-wrap.bg-primary {
    margin-bottom: 50px !important;
  }
  .circle-thumbs {
    margin: 0 7rem 3rem;
  }
  .testimonials-slider-single-wrap {
    margin: 0 7rem;
  }
  /* Our Services Pages */

  /* About Us Pages */
  .years-started {
    margin-bottom: 3rem;
  }
  /* About Us Pages */

  /* Home Marketing Page */
  .marketing-welcome {
    margin: 0;
  }
  .marketing-banner-wrap .container {
    max-width: 720px;
  }
  .marketing-banner {
    padding: 60px 0 0 0;
  }
  .marketing-banner .cta-group {
    padding: 0;
  }
  .marketing-banner .title > span {
    margin-bottom: 10px;
  }
  .marketing-character {
    bottom: 0;
    width: 55%;
    padding: 1.5rem 0;
  }
  .marketing-banner-wrap {
    padding: 0 0 0 50px;
  }
  .banner-call {
    bottom: 144px;
  }
  #marketing-banner-slider {
    position: relative;
    top: 0;
  }
  .marketing-welcome .img-character {
    width: 50%;
    margin: 50px auto -150px;
  }
  .marketing-welcome {
    margin-bottom: 100px;
  }
  .about-video-intro .play-btn .popup-video {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  .about-video-intro .section-title {
    text-align: center !important;
  }
  .pattern-white-bg.straight .about-video-intro .play-btn {
    justify-content: center !important;
  }

  .icon-statistics {
    justify-content: center;
  }

  .img-character-guy {
    text-align: center;
    margin-bottom: -13rem;
  }
  .img-character-guy img {
    max-width: 70%;
    margin-top: 3rem;
    transform: none;
  }
  .sm-icons {
    margin: 0 auto;
  }
  /* .sm-icons .icon.sales-force{
        top: 80%;
    }
    .sm-icons .icon.shopify {
        top: 74%;
    }
    .sm-icons .icon.github {
        top: 66%;
    }
    .sm-icons .icon.icon-4 {
        top: 45%;
    }
    .sm-icons .icon.dropbox {
        top: 54%;
    } */
  /* Home Marketing Page */

  /* Buttons */
  .btn {
    padding: 1rem 1.5rem;
  }
  /* Buttons */

  .pagination-blog {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  /* Buttons */
  .btn {
    padding: 0.86rem 1.5rem;
  }
  /* Buttons */

  .portfolio-gallery-item .item-content {
    padding-left: 0;
    padding-right: 0;
  }

  .section-title h2 {
    letter-spacing: -0.1rem;
  }

  /* Header */
  .language-links,
  .top-bar-links {
    text-align: center;
  }
  .language-links {
    justify-content: center;
  }

  /* Header */

  /* Footer */
  .footer-subscribe {
    text-align: center;
    padding: 3rem 0 3rem;
  }
  .social-icons ul {
    justify-content: center;
  }
  .form-inputs {
    margin-top: 2rem;
  }
  .form-inputs .d-flex {
    margin-top: 1rem;
  }

  footer {
    padding: 2rem 0 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  footer .widget-title {
    margin-bottom: 0.7rem;
  }
  .tiny-footer {
    text-align: center;
    padding: 1rem 0;
  }
  .tiny-footer-links {
    text-align: center;
  }
  .tiny-footer-links ul {
    justify-content: center;
  }
  /* Footer */

  /* Breadcrumbs */
  .header-bg::before {
    height: 160px;
  }
  .breadcrumbs-page {
    padding-bottom: 9rem;
    padding-top: 2rem;
  }
  .breadcrumbs-page .breadcrumb {
    padding: 0.5rem 0.7rem;
  }
  /* Breadcrumbs */

  /* Shortcodes */

  /*---- Margin/Padding Spacing ---*/
  .section-spacing {
    margin-bottom: 50px;
  }
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /*---- Margin/Padding Spacing End ---*/

  .theme-tabbing {
    flex-wrap: nowrap;
    overflow-x: scroll;
    width: 100%;
    white-space: nowrap;
  }
  .icon-style-border-bottom .icon,
  .icon-style-text-bg .icon,
  .icon-style-hover .icon,
  .icon-style-left .icon,
  .icon-style-top .icon {
    font-size: 2rem;
  }

  .icon-style-border-bottom .icon {
    margin-right: 1.429rem;
  }

  .icon-style-hover {
    padding: 1.5rem;
  }
  .process-icons [class*="col"]:nth-child(even) .icon-style-process {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .process-icons [class*="col"]:nth-child(odd) .icon-style-process::after {
    top: -3.5rem;
    bottom: inherit;
    content: "\e917";
  }
  .flex-column.theme-tabbing {
    flex-shrink: 0;
    max-width: 100%;
    overflow-x: hidden;
    margin-right: 0rem;
    margin-bottom: 1.2rem;
  }
  .theme-tabbing.nav-pills .nav-link {
    text-align: left;
  }
  .icon-style-top {
    margin-bottom: 1.5rem;
    height: auto;
  }
  .color-box {
    margin-bottom: 1.5rem;
  }
  .tabbing-content.nav-pills .nav-link h6 {
    padding: 1rem;
    font-size: 1.2rem;
  }
  .tabbing-content.nav-pills .nav-link h6 i {
    font-size: 1.2rem;
  }
  .services-related-slider .owl-carousel.container .owl-stage-outer {
    overflow: hidden;
    clip-path: none;
  }
  .tick-icon-bordered:not(:first-child) {
    margin-bottom: 0;
  }
  .tick-icon-bordered {
    margin-bottom: 0rem;
  }
  .icon-statistics .text-space h3 {
    font-size: 2.5rem;
  }
  .home-default-faqs-counter .counter-text h2 {
    font-size: 2.8rem;
    margin-right: 1rem;
  }
  .home-default-faqs-counter .vr {
    margin: 0.3rem 0;
  }
  .home-default-faqs-counter .counter-text {
    padding: 0 0.7rem;
  }
  .home-default-faqs-counter-wrap {
    padding-right: 0;
    overflow: hidden;
  }
  .icons-listing li:not(:last-child),
  .icons-listing-anchor li:not(:last-child) {
    padding-bottom: 10px;
  }

  /* Shortcodes */

  /* Blog Pages */

  /* Blog Pages */

  /* Portfolio Pages */
  .portfolio-single-details .hstack {
    flex-wrap: wrap;
  }
  .portfolio-single-details .hstack .client-details:last-child {
    width: 100%;
    margin-top: 1rem;
  }
  .portfolio-single-details .hstack:not(:last-child) {
    margin-bottom: 1rem;
  }
  .square-top {
    right: auto;
    left: 50%;
    margin-left: -35px;
    top: -35px;
  }
  .square-top img {
    width: 70px;
  }
  .portfolio-contact-form {
    padding: 2rem;
  }
  .portfolio-slider-wrap {
    margin-top: 0;
    margin-bottom: -10rem;
  }

  .portfolio-single .portfolio-slider-wrap {
    margin-bottom: -6rem;
  }

  .team-wrap .content .social-icons li {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .team-wrap-outer {
    margin-bottom: 0;
  }
  /* Portfolio Pages */

  /* Faqs Pages */
  #testimonials-slider-shadow .owl-item .testimonial-shadow {
    margin: 0rem 1.5rem;
  }
  .faqs-imgs {
    position: relative;
    left: 0;
    width: 180px;
  }
  .services-related-slider {
    margin-bottom: 0;
  }
  .faqs-bg .img-abstract {
    top: -20px;
  }
  .testimonial-single-wrap {
    padding: 50px 0;
  }
  .our-faqs-cta .content .btn-set {
    margin-left: 0rem;
    width: 100%;
    padding-top: 0.5rem;
  }
  /* Faqs Pages */

  /* Contact Page */
  .contact-details {
    padding: 1.071rem;
  }
  /* Contact Page */

  /* Our Services Pages */
  .stats-img {
    width: 70%;
  }
  .icon-style-top-icon {
    height: calc(100% - 1.875rem);
  }
  .icon-style-top-icon {
    padding: 1.5rem;
    height: auto;
  }
  .how-it-works-wrap .partner-text {
    margin-top: 2rem;
  }
  .how-it-works {
    margin-bottom: 0;
  }
  .how-it-works .count {
    font-size: 4.25rem;
    bottom: 90%;
  }
  .our-faqs-cta {
    margin-top: 2.5rem;
  }
  .img-gradient {
    margin: 0 0 1rem 0;
  }
  .video-play-btn a {
    font-size: 2rem;
    width: 70px;
    height: 70px;
  }
  .circle-thumbs,
  .testimonials-slider-single-wrap {
    margin: 0;
  }
  .video-bg-off {
    margin-bottom: 0;
  }
  .services-related-slider .owl-carousel.top-right-arrow .owl-nav {
    position: relative;
    top: 0;
    right: auto;
    justify-content: center;
  }
  .how-it-works-wrap {
    padding: 2rem 1rem;
  }

  .img-character-guy {
    margin-bottom: -10rem;
  }
  /* Our Services Pages */

  /* Home Digital Marketing */
  .seamless-integration {
    margin-bottom: calc(7rem + 40px);
  }
  .seamless-integration .img-character {
    margin-bottom: -7rem;
    text-align: center;
  }
  .seamless-integration .img-character img {
    height: 400px;
  }
  /* Home Digital Marketing */

  /* Our Team Pages */
  .team-wrap {
    margin: 0;
  }

  .team-wrap .img {
    height: auto;
  }
  .team-single {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 2rem;
  }
  .team-single .img {
    margin-bottom: 1.5rem;
  }
  .team-single .img > img {
    margin: 0;
  }
  /* Our Team Pages */

  /* About Us Pages */
  .intro-stats {
    padding-top: 0;
  }
  .about-why-choose::before {
    display: none;
  }
  /* About Us Pages */

  /* Home Marketing Page */
  .marketing-banner-wrap {
    padding: 0;
  }
  .marketing-banner-wrap .container {
    max-width: 540px;
  }
  .marketing-banner {
    text-align: center;
    padding: 40px 0 0 0;
  }
  .marketing-character {
    bottom: 0;
    margin: 0 auto;
    width: 70%;
    padding: 1.5rem 0;
    height: auto;
  }
  .banner-call {
    position: relative;
    display: inline-flex;
    margin: 0 auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .marketing-welcome .img-character {
    width: 70%;
    margin: 30px auto -70px;
  }
  .marketing-welcome {
    margin-bottom: 80px;
    padding-top: 0;
  }
  .img-character-guy img,
  .seamless-integration .img-character img {
    max-width: 100%;
  }
  .pattern-white-bg.straight .intro-stats {
    margin-top: 3rem;
  }
  .img-character-guy img {
    margin-top: 0;
  }
  .pattern-white-bg.straight {
    margin-bottom: 8rem;
  }
  .marketing-banner .title h1 {
    font-size: 2.4rem;
  }
  .marketing-banner .lead {
    font-size: 1rem;
  }
  .banner-call .icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .sm-icons {
    width: 90%;
    margin: 0 auto;
  }
  /* Home Marketing Page */

  .back-to-top {
    width: 40px;
    height: 40px;
  }
  .error-search {
    max-width: 90%;
  }

  #body-content [class*="col-"],
  footer [class*="col-"] {
    margin-bottom: 40px;
  }
  #body-content [class*="col-"]:last-child,
  footer [class*="col-"]:last-child,
  #body-content .overlay [class*="col-"] {
    margin-bottom: 0;
  }

  .testimonial-single-wrap {
    padding: 50px 0;
  }

  .portfolio-single-details {
    margin-top: 9rem;
  }

  .top-right-arrow .owl-nav {
    top: 0;
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }
  .blog-layout-standard .blog-wrap-rounded .blog-content {
    padding: 1.5rem;
  }
  .blog-layout-standard .post-pinned {
    top: -44px;
  }
}

@media (min-width: 576px) and (max-width: 767.99px) {
  footer .col,
  footer .col-3 {
    flex: 1 1 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
  main.bg-light::before {
    height: 275px;
  }
}

@media (max-width: 575px) {
  html {
    font-size: 14px;
  }

  /* Heading */
  h2 {
    font-size: 2.75rem;
    line-height: 2.75rem;
  }
  /* Heading */

  /* Header */
  .offcanvas.offcanvas-start {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    background-color: rgba(255, 255, 255, 1);
  }
  #search_home {
    margin: 0 1.2rem 0 0;
    width: 36px;
    height: 36px;
  }
  .overlay-hugeinc form .form-inner {
    width: 90%;
    padding: 0;
  }
  .signup-btn {
    padding: 0;
    width: 40px !important;
    height: 40px !important;
    margin-right: 0.4rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0 !important;
  }
  .top-bar-links {
    margin-top: 0;
  }
  .top-bar {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
  }
  /* Header */

  /* Breadcrumbs */
  .header-bg::before {
    height: 140px;
  }
  .breadcrumbs-page {
    padding-bottom: 8rem;
    padding-top: 2rem;
    margin: 0;
  }
  /* Breadcrumbs */

  /* Footer */
  footer .container {
    padding-left: 1.071rem;
    padding-right: 1.071rem;
  }
  /* Footer */

  /* Shortcodes */
  .typo-border .btn {
    min-width: 100%;
  }
  .section-title h1 {
    font-size: 2rem;
    letter-spacing: -0.08rem;
  }
  .section-title h1 strong {
    white-space: inherit;
  }
  .icons-listing.w-half li {
    flex: 1 1 100%;
  }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }
  .icon-statistics .text-space h3 {
    font-size: 2rem;
  }
  .icon-style-left {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    flex-direction: column;
  }
  .icon-style-left .arrow-icon a {
    width: 40px;
    height: 40px;
  }
  .home-default-faqs-counter .counter-text {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    font-size: 0.75rem;
  }
  .home-default-faqs-counter .vr {
    margin: 1rem 0;
  }
  /* Shortcodes */

  /* Breadcrumbs */
  .breadcrumbs-page h1 {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  /* Breadcrumbs */

  /* Contact Page */
  .mx-auto .contact-details {
    margin-top: 0 !important;
  }
  /* Contact Page */

  /* Blog Pages */
  .blog-layout-standard .blog-wrap-rounded .blog-content,
  .post-content-widget,
  .widget-wrap {
    padding: 1.5rem;
  }
  .pagination-blog {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 80px;
  }
  .author-bio {
    margin: 0 1.5rem 2.5rem;
    flex-direction: column;
  }
  .author-bio .content,
  .posted-comments .content {
    margin-top: 1rem;
  }
  .posted-comments {
    flex-direction: column;
  }
  .post-comment .thumb img {
    width: 50px;
  }
  .posted-comments.reply-comment {
    margin-left: 0;
    padding: 1rem;
    background: var(--light);
  }
  .share-love-wrap.hstack {
    flex-direction: column;
    align-items: flex-start;
  }
  .make-fav {
    margin-left: 0;
    margin-top: 0.8rem;
  }
  .blog-layout-standard .post-pinned {
    top: -40px;
    right: 1.5rem;
  }
  .sidebar-primary {
    margin-bottom: 0 !important;
  }
  /* Blog Pages */

  .typo-btn .btn {
    margin: 0 0 1rem 0;
    white-space: nowrap;
  }
  .typo-btn .btn:not(:last-child) {
    margin-right: 0;
  }

  /* Portfolio Pages */
  .portfolio-single-details .hstack:not(:last-child) {
    margin-bottom: 1rem;
  }
  .portfolio-single-details .hstack {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .portfolio-single-details .hstack .client-details:not(:last-child) {
    margin: 0 0 1rem 0;
  }
  .portfolio-single-details .hstack .client-details:last-child {
    width: 100%;
    margin-top: 0;
  }
  .portfolio-slider-wrap .owl-carousel .owl-nav button.owl-prev {
    left: 15px;
  }
  .portfolio-slider-wrap .owl-carousel .owl-nav button.owl-next {
    right: 15px;
  }
  .pattern-white-bg {
    clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
  }
  /* Portfolio Pages */

  /* Our Services Pages */
  .our-faqs-cta {
    padding: 1.429rem;
  }
  .circle-thumbs .thumb {
    width: 45px;
    height: 45px;
  }
  .video-play-btn a {
    font-size: 1.75rem;
    width: 55px;
    height: 55px;
  }
  .service-form {
    padding: 1.5rem;
  }
  .faqs-bg .img-abstract {
    display: none;
  }
  /* Our Services Pages */

  /* About Us Pages */
  .years-started .years,
  .years-started .content h1 {
    font-size: 2.5rem;
  }
  .about-video-intro .play-btn .popup-video {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .intro-stats {
    padding-top: 0;
  }
  .about-video-intro .play-btn .popup-video i {
    transform: translateX(1px);
  }
  /* About Us Pages */

  /* Home Marketing Page */
  .sm-icons {
    width: 100%;
    margin: 0 auto;
  }
  .sm-icons .icon {
    width: 100px;
  }
  .sm-icons {
    min-height: 400px;
    height: auto;
  }
  .sm-icons .icon.mobilepay {
    left: 10%;
  }
  .sm-icons .icon.dropbox {
    right: 15%;
    top: 40%;
  }
  .sm-icons .icon.icon-4 {
    left: 18%;
  }
  .sm-icons .icon.github {
    left: 3%;
  }
  #marketing-banner-slider.owl-carousel .owl-item img {
    width: auto;
  }
  #marketing-banner-slider .img-partner {
    text-align: center;
  }

  .pattern_abstract_bg .stats-img-abstract {
    top: 0;
    /* width: 100%; */
  }
  /* Home Marketing Page */

  /* Singup/Signin Popup */
  .mobile-offcanvas .btn-close {
    left: auto;
    line-height: 1;
  }
  .popup-wrapper {
    padding: 1.25rem;
  }
  .popup-wrapper::after {
    height: 50%;
  }
  .form-wrap {
    padding: 2rem;
  }
  /* Singup/Signin Popup */
}

@media (max-height: 650px) {
  .logo-footer,
  .navbar-brand {
    width: 130px;
  }
  .popup-wrapper {
    display: inherit;
  }
  .owl-nav {
    margin-top: 1.625rem;
  }
}

@media (max-width: 480px) {
  .section-title > span {
    margin-bottom: 0.5rem;
  }

  .navbar-brand {
    margin-right: 0;
  }
  .icon-style-left .text-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .icon-style-left .text {
    margin: 0;
  }
  .icon-style-left .arrow-icon {
    margin-top: 1.5rem;
  }
  .mobile-offcanvas {
    width: 98%;
  }

  /* Our Services Pages */
  .pattern_abstract_bg .hstack,
  .video-bg-off-wrap .hstack {
    flex-direction: column;
  }
  /* Our Services Pages */

  /* Singup/Signin Popup */
  .social-login-btn {
    flex-direction: column;
  }
  .social-login-btn {
    padding-top: 1.5rem;
  }
  .or-text {
    padding: 1.5rem 0;
    margin: 0;
  }
  .social-login-btn a {
    width: 100%;
    padding: 10px;
  }
  .social-login-btn a.gm {
    margin-bottom: 0.7rem;
  }
  .form-wrap {
    padding: 1.5rem;
  }
  /* Singup/Signin Popup */

  .top-bar-links a:not(:last-child),
  .top-bar-links a {
    margin: 0 0.3rem;
  }

  /* Btn Group Set */
  .btn {
    width: 100%;
    margin-right: 0;
    justify-content: center;
  }
  .marketing-banner .cta-group .btn:not(:last-child),
  .our-faqs-cta .content .btn-set .btn:not(:last-child) {
    margin-right: 0;
  }
  .video-bg-off-wrap .link-light {
    margin-top: 15px;
    display: block;
    text-align: center;
  }
  .btn:not(:first-child) {
    margin-top: 15px;
  }
  /* Btn Group Set */
}
@media (max-width: 430px) {
  /* Our Team Pages */
  .team-wrap .img img {
    width: 100%;
  }
  .team-wrap {
    flex-direction: column;
  }
  .team-wrap .img,
  .team-wrap .content {
    width: 100%;
  }
  .team-wrap .content {
    padding: 1.071rem;
  }
  /* Our Team Pages */

  /* Heading */
  h2 {
    font-size: 2.3rem;
    line-height: 2.75rem;
  }
  /* Heading */
}
@media (max-width: 320px) {
  .logo-footer {
    margin-bottom: 1.429rem;
  }
  .navbar-brand img {
    width: 140px;
  }
  .offcanvas.offcanvas-start {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
  #search_home {
    width: 36px;
    height: 36px;
  }

  .breadcrumbs-page h1 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .section-title h1 {
    font-size: 1.8rem;
  }

  /* Breadcrumbs */
  .header-bg::before {
    height: 120px;
  }
  .breadcrumbs-page {
    padding-bottom: 7rem;
    padding-top: 1rem;
    margin: 0;
  }
  /* Breadcrumbs */
}
