@charset "UTF-8";
/* =============================
    TYPOGRAPHY CSS
================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 300;
  color: #181C25;
  margin-bottom: 0;
  font-family: "Fraunces", sans-serif;
  line-height: 100%;
  letter-spacing: -0.03em !important;
}

h1, .h1 {
  font-size: 66px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h1, .h1 {
    font-size: 48px;
  }
}
h1, .h1 {
  letter-spacing: 0.7px;
}

h2, .h2 {
  font-size: 48px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h2, .h2 {
    font-size: 42px;
  }
}

h3, .h3 {
  font-size: 42px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h3, .h3 {
    font-size: 36px;
  }
}

h4, .h4 {
  font-size: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h4, .h4 {
    font-size: 30px;
  }
}

h5, .h5 {
  font-size: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h5, .h5 {
    font-size: 24px;
  }
}

h6, .h6 {
  font-size: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h6, .h6 {
    font-size: 16px;
  }
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-semi-bold {
  font-weight: 600;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-light {
  font-weight: 300;
}

.body-font-size-lg {
  font-size: 20px;
}

.body-font-size {
  font-size: 16px;
}

.font-size-sm {
  font-size: 12px;
}

.font-size-xs {
  font-size: 12px;
}

.heading-font {
  font-family: "Fraunces", sans-serif;
}

.caption-font-size {
  font-size: 12px;
}

.text-justify {
  text-align: justify;
}

p {
  font-size: 16px;
  line-height: 150%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  p {
    font-size: 14px;
  }
}

/* =============================
    COMMON CSS
================================ */
@font-face {
  font-family: "Fraunces";
  src: url("/css/fonts/Fraunces/fraunces-500.ttf");
  src: url("/css/fonts/Fraunces/fraunces-500.ttf") format("truetype");
  font-weight: 500;
  font-style: 500;
}
@font-face {
  font-family: "Fraunces";
  src: url("/css/fonts/Fraunces/fraunces-300.ttf");
  src: url("/css/fonts/Fraunces/fraunces-300.ttf") format("truetype");
  font-weight: 300;
  font-style: 300;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/Inter/Inter-Regular.otf");
  src: url("/css/fonts/Inter/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: 400;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/Inter/Inter-Medium.otf");
  src: url("/css/fonts/Inter/Inter-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: 500;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/Inter/Inter-Medium.otf");
  src: url("/css/fonts/Inter/Inter-Medium.otf") format("opentype");
  font-weight: 600;
  font-style: 600;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/Inter/Inter-Bold.otf");
  src: url("/css/fonts/Inter/Inter-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: bold;
}
@font-face {
  font-family: "Inter";
  src: url("/css/fonts/Inter/Inter-Light.otf");
  src: url("/css/fonts/Inter/Inter-Light.otf") format("opentype");
  font-weight: lighter;
  font-style: lighter;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #374151;
  background: #ffffff;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}
body section:last-of-type {
  padding-bottom: 160px !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-disc {
  list-style-type: disc;
  padding-left: 1rem;
  margin-bottom: 1em;
}

ul.list-style-lower-latin {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1em;
}
ul.list-style-lower-latin li {
  counter-increment: section;
  margin-bottom: 20px !important;
  padding-left: 2.2rem;
  position: relative;
}
ul.list-style-lower-latin li:before {
  content: "(" counter(section, lower-alpha) ") ";
  position: absolute;
  left: 0;
  top: 0;
}

ul.list-style-lower-roman {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1em;
}
ul.list-style-lower-roman li {
  counter-increment: section2;
  margin-bottom: 20px !important;
  padding-left: 2.2rem;
  position: relative;
}
ul.list-style-lower-roman li:before {
  content: "(" counter(section2, lower-roman) ") ";
  position: absolute;
  left: 0;
  top: 0;
}

ul.list-style-upper-latin {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1em;
}
ul.list-style-upper-latin li {
  counter-increment: section3;
  margin-bottom: 20px !important;
  padding-left: 2.2rem;
  position: relative;
}
ul.list-style-upper-latin li:before {
  content: "(" counter(section3, upper-latin) ") ";
  position: absolute;
  left: 0;
  top: 0;
}

ul.list-style-decimal {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1em;
}
ul.list-style-decimal li {
  counter-increment: section4;
  margin-bottom: 20px !important;
  padding-left: 2.2rem;
  position: relative;
}
ul.list-style-decimal li:before {
  content: "(" counter(section4, decimal) ") ";
  position: absolute;
  left: 0;
  top: 0;
}

ul.list-style-square {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1em;
}
ul.list-style-square li {
  counter-increment: section5;
  margin-bottom: 20px !important;
  padding-left: 2.2rem;
  position: relative;
}
ul.list-style-square li:before {
  content: counter(section5, square);
  position: absolute;
  font-size: 9px;
  left: 5px;
  top: 7px;
  color: #181C25;
}

ul.list-style-dia {
  list-style-type: none;
  padding-left: 2rem;
  margin-bottom: 1em;
}
ul.list-style-dia li {
  margin-bottom: 24px;
  position: relative;
}
ul.list-style-dia li:before {
  content: "◆";
  position: absolute;
  color: #ffffff;
  height: 17px;
  width: 17px;
  font-size: 24px;
  line-height: 24px;
  left: -32px;
}

a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-out 0s;
}
a:hover, a:active {
  text-decoration: none;
  color: #181C25;
}
a.section-link {
  position: relative;
}
a.section-link::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  bottom: 0;
}

.btn {
  border-radius: 8px;
  padding: 11px 16px;
  line-height: 1;
  font-size: 1rem;
  white-space: nowrap;
}
.btn:focus, .btn:active {
  box-shadow: none;
}
.btn:focus:active {
  box-shadow: none;
}
.btn.btn-primary {
  color: #ffffff;
}
.btn.btn-square {
  padding: 12px 12px;
}
.btn.btn-outline-primary {
  color: #181C25;
}
.btn.btn-outline-primary:hover {
  color: #ffffff;
}
.btn.btn-outline-primary-style3 {
  color: #c1d640;
}
.btn.btn-outline-primary-style3:hover {
  color: #ffffff;
}
.btn.btn-outline-primary-style2 {
  color: #c1d640;
  background-color: rgba(241, 246, 211, 0.1);
  border: 1px solid #c1d640;
}
.btn.btn-custom-blue {
  border: 2px solid #4082C4;
}
.btn.btn-custom-blue:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 130, 196, 0.25);
}
.btn.btn-outline-secondary {
  color: #707783;
  background: #ffffff;
  border: 1px solid #dee2e6 !important;
}
.btn.btn-outline-secondary:hover {
  color: #374151;
}
.btn.btn-outline-secondary.dropdown-toggle.show {
  color: #181C25;
  background-color: #ffffff;
}
.btn.btn-outline-secondary.legal-btn {
  padding: 16px 18px;
  border: 1px solid #9CA3AF;
  margin-right: 80px;
}
@media (max-width: 767px) {
  .btn.btn-outline-secondary.legal-btn {
    max-width: 100%;
    margin-right: 0;
  }
}
.btn.btn-toast {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.btn.btn-link {
  color: #374151;
  text-decoration: none;
}
.btn.btn-small {
  padding: 8px 12px;
}
.btn.btn-xsmall {
  padding: 6px 12px;
  font-size: 12px;
}
.btn.avatar-dropdown-button {
  height: 40px;
  padding: 4px 14px 4px 4px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
.btn.avatar-dropdown-button .avatar-wrapper {
  border: 1px solid #E9EBF0;
  padding: 0 3px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  height: 32px;
  width: 32px;
  margin-right: 10px;
}

.upload-button {
  position: relative;
  background-color: #c1d640;
  width: 105px;
  padding: 10px 24px;
  border-radius: 8px;
}
.upload-button-title {
  color: #ffffff;
  font-weight: normal;
}
.upload-button .form-control {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.n-a_check {
  padding: 1px 14px 1px 28px;
  border: 2px solid #E9EBF0;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 14px;
  transform: translateY(-3px);
}

.img-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.img-logo {
  width: 40px;
  height: 40px;
  padding: 2px;
}

.btn-check + .border-button {
  color: #181C25 !important;
  font-size: 16px;
}
.btn-check:checked + .border-button {
  border: 2px solid #c1d640;
  padding: 14px 14px;
}
.btn-check + .btn-outline-primary {
  border-color: #E9EBF0;
  background-color: #ffffff;
}
.btn-check + .btn-outline-primary:hover {
  background-color: rgba(193, 214, 64, 0.1);
  color: #181C25;
}
.btn-check:checked + .btn-outline-primary {
  border-color: #c1d640;
  background-color: #ffffff;
  color: #181C25;
}

.default-btn-group > .btn {
  padding: 12px 22px;
  box-shadow: none !important;
}
.default-btn-group > .btn:hover {
  background-color: rgba(193, 214, 64, 0.1) !important;
}
.default-btn-group .btn.btn-outline-secondary {
  background-color: #F9FAFB;
}
.default-btn-group .btn-check:checked + .btn-outline-secondary {
  color: #181C25;
  background-color: #ffffff;
  border: 2px solid #c1d640;
}

.graph-btn-group > .btn {
  box-shadow: none !important;
  font-weight: 600;
}
.graph-btn-group .btn.btn-outline-secondary {
  background-color: #ffffff;
}
.graph-btn-group .btn-check:checked + .btn-outline-secondary {
  color: #c1d640;
  background-color: #ffffff;
}

.input-group .form-select.small-select {
  width: 75px !important;
  flex: none;
}

.text-black {
  color: #181C25;
}

.text-gray-500 {
  color: #707783;
}

.text-body-light {
  color: #777E90;
}

.text-color-primary {
  color: #c1d640;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.indicator {
  position: relative;
}
.indicator .status-indicator {
  position: absolute;
  width: 9px;
  height: 9px;
  right: 0px;
  top: 5px;
  border-radius: 50%;
  background-color: transparent;
}
.indicator .status-indicator.active {
  background-color: #00B072;
}

.online-indicator {
  color: #B7BAC1;
}
.online-indicator.active {
  color: #00B072;
}

.progress-wrapper {
  height: 40px;
}

.progress {
  height: 8px;
  width: 126px;
}
.progress .progress-bar {
  border-radius: 0 6px 6px 0;
}
.progress.file-upload-progress {
  height: 14px;
  font-size: 9px;
  width: 105px;
}

.badge-primary-outline {
  color: #c1d640;
  border: 1px solid #c1d640;
  background-color: #f1f6d3;
  font-weight: 600;
}

.badge-paid-outline {
  color: #6941C6;
  border: 1px solid #6941C6;
  background-color: #E8E6F5;
  font-weight: 600;
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-small {
    max-width: 1000px;
  }
}

@media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container-fluid {
    padding: 0 24px;
  }
}

@media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container-xl {
    max-width: 1520px;
    padding-right: 71px !important;
    padding-left: 71px !important;
  }
}

/* ============ scroll-top =============== */
.scroll-top {
  width: 45px;
  height: 45px;
  background: #c1d640;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}
.scroll-top:hover {
  color: #ffffff;
  background: rgba(193, 214, 64, 0.8);
}

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

.section {
  padding: 112px 0 60px 0;
}

.section-spadding {
  padding: 112px 0 112px 0;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section-spadding {
    padding: 80px 0 80px 0;
  }
}

.admin-section {
  padding: 192px 0 60px 0;
}
.admin-section.no-sub {
  padding: 120px 0 60px 0;
}

.first-section {
  padding: 140px 0 60px 0;
}

.section-mini-title {
  font-size: 16px;
  line-height: 16px;
  color: #707783;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
}
.section-mini-title__badge {
  border: 1px solid #707783;
  min-width: 16px;
  height: 16px;
  border-radius: 16px;
  font-size: 0.625rem;
  line-height: 0.625rem;
  text-align: center;
  display: inline-block;
  color: #707783;
  padding: 0;
  background-color: #ffffff;
  padding-top: 2px;
  box-shadow: 4px 4px 0px 0px rgba(12, 16, 55, 0.031372549);
}

.section-title-custom-width {
  max-width: 70%;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-custom-width {
    max-width: 100%;
  }
}

.section-w-link {
  padding: 0;
}
.section-w-link::before {
  display: block;
  content: " ";
  margin-top: -140px;
  height: 140px;
  visibility: hidden;
  pointer-events: none;
}

.xl-gutters {
  margin-right: -60px;
  margin-left: -60px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xl-gutters {
    margin-right: -5px;
    margin-left: -5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .xl-gutters {
    margin-right: -14px;
    margin-left: -14px;
  }
}

.xl-gutters > [class*=col-] {
  padding-right: 60px;
  padding-left: 60px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xl-gutters > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .xl-gutters > [class*=col-] {
    padding-right: 14px;
    padding-left: 14px;
  }
}

.dropdown-toggle::after {
  content: url("/images/misc/dropdown-arrow.svg");
  border: none !important;
  height: 6px;
  width: 6px;
  line-height: 0;
  margin-left: 10px;
}

.country-select .country-selector {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.country-select .selected-flag .arrow {
  display: inline-block;
  width: 7px !important;
  height: 7px !important;
  right: 3px !important;
  margin-left: 2px;
  vertical-align: middle;
  background-image: url("/images/misc/dropdown-arrow.svg");
  background-size: 7px;
  background-repeat: no-repeat;
  border: none !important;
}

.dropdown-menu {
  min-width: 16rem;
}
.dropdown-menu > li {
  padding: 0 0.5rem;
}
.dropdown-menu > li:hover {
  background-color: transparent !important;
}
.dropdown-menu .dropdown-item {
  border-radius: 8px;
  padding: 2px 1rem;
}
.dropdown-menu .dropdown-item.w-submenu {
  position: relative;
  padding-left: 30px;
}
.dropdown-menu .dropdown-item.w-submenu::before {
  content: "";
  background-image: url("/images/misc/dropdown-arrow.svg");
  border: none !important;
  background-repeat: no-repeat;
  background-size: 10px;
  height: 10px;
  width: 10px;
  line-height: 1;
  margin-left: 10px;
  position: absolute;
  left: 0;
  top: 12px;
  transform: rotate(90deg);
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active {
  background-color: #F6F8FB;
}
.dropdown-menu .dropdown-item:active {
  color: #c1d640;
}
.dropdown-menu.referral-dropdown {
  margin-top: 8px;
  border-radius: 8px;
  min-width: 430px;
}
.dropdown-menu.referral-dropdown .dropdown-body {
  background-color: rgba(241, 246, 211, 0.1);
}
.dropdown-menu.referral-dropdown .dropdown-body input {
  font-size: 12px;
}
.dropdown-menu.add-metric-dropdown {
  margin-top: 8px !important;
  border-radius: 8px;
  left: -30px !important;
  min-width: 500px;
}
.dropdown-menu.add-metric-dropdown .dropdown-body {
  background-color: rgba(241, 246, 211, 0.1);
}
.dropdown-menu.add-metric-dropdown .dropdown-body input {
  font-size: 12px;
}
.dropdown-menu.add-metric-dropdown .dropdown-body .btn {
  border-radius: 4px;
  padding: 8px 10px;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .dropdown-menu li {
    position: relative;
  }
  .nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
  .dropdown-menu > li:hover {
    background-color: #f1f1f1;
  }
  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
}
/* ============ desktop view .end// ============ */
/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .nav-item .submenu {
    display: block;
    position: relative;
    left: 0;
    top: 0;
  }
}
/* ============ small devices .end// ============ */
.period-filter {
  width: 250px;
}

.list-group.autoflow-style .list-group-item {
  position: relative;
  padding: 17px 20px;
  border: 1px solid #E9EBF0;
}
.list-group.autoflow-style .list-group-item .img-logo, .list-group.autoflow-style .list-group-item .emty-logo {
  width: 40px;
  height: 40px;
}
.list-group.autoflow-style .list-group-item .emty-logo {
  border-radius: 50%;
}
.list-group.autoflow-style .list-group-item .emty-logo p {
  line-height: 40px;
}
.list-group.autoflow-style .list-group-item .progress_wrapper {
  min-width: 290px;
  max-width: 290px;
}
@media (max-width: 767px) {
  .list-group.autoflow-style .list-group-item .progress_wrapper {
    min-width: 50%;
  }
}
.list-group.autoflow-style .list-group-item .list-group-sub-item {
  margin-left: 56px;
}
@media (max-width: 767px) {
  .list-group.autoflow-style .list-group-item .list-group-sub-item {
    margin-left: 0;
  }
}
.list-group.autoflow-style .list-group-item .list-group-sub-item_title {
  min-width: 800px;
  max-width: 210px;
}
@media (max-width: 767px) {
  .list-group.autoflow-style .list-group-item .list-group-sub-item_title {
    min-width: 45%;
  }
}
.list-group.autoflow-style .list-group-item .list-group-sub-item_score {
  min-width: 290px;
  max-width: 290px;
}
@media (max-width: 767px) {
  .list-group.autoflow-style .list-group-item .list-group-sub-item_score {
    min-width: 50%;
  }
}
.list-group.autoflow-style .list-group-item .hero-score-wrapper {
  padding-left: calc(40px + 1rem);
}
@media (max-width: 767px) {
  .list-group.autoflow-style .list-group-item .hero-score-wrapper {
    padding-left: 0;
  }
}

.popover {
  border: 0 !important;
}

.popover-body {
  background-color: #00B072;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.7em 1em;
}

.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-bottom-color: #00B072;
}

.plyr {
  --plyr-color-main: rgba(255, 255, 255, 0.15);
}
.plyr .plyr__control--overlaid {
  border: 2px solid white;
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .plyr .plyr__control--overlaid {
    width: 70px;
    height: 70px;
  }
}
.plyr .plyr__control--overlaid svg {
  margin: auto;
  height: 24px;
  width: 24px;
}

.video-slider {
  width: 100%;
  max-width: 1520px;
  margin: auto;
  padding-left: 71px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .video-slider {
    padding-left: 12px;
  }
}
.video-slider .tns-outer {
  padding-bottom: 60px !important;
  position: relative;
}
.video-slider .tns-outer .tns-controls {
  position: absolute;
  bottom: 0;
  left: 0;
}
.video-slider .tns-outer .tns-controls button {
  color: #c1d640;
  font-size: 45px;
  bottom: 40px;
  top: auto;
  width: auto;
  background: none;
  border: 0;
  padding: 0;
  opacity: 0.8;
  transition: all 300ms ease-out 0s;
}
.video-slider .tns-outer .tns-controls button:first-child {
  margin-right: 30px;
}
.video-slider .tns-outer .tns-controls button[data-controls=next] {
  right: auto;
  left: 70px;
}
.video-slider .tns-outer .tns-controls button:disabled {
  opacity: 0.5;
}
.video-slider .tns-outer .tns-controls button:hover {
  opacity: 1;
}
.video-slider-item-video {
  height: 500px;
  width: 889px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-slider-item-video {
    width: 600px;
    height: 337px;
  }
}
@media (max-width: 767px) {
  .video-slider-item-video {
    width: 350px;
    height: 196px;
  }
}
.video-slider-item-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 889px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-slider-item-title {
    width: 600px;
  }
}
@media (max-width: 767px) {
  .video-slider-item-title {
    width: 350px;
  }
}
.video-slider-item-image {
  height: 500px;
  width: 889px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-slider-item-image {
    width: 600px;
    height: 337px;
  }
}
@media (max-width: 767px) {
  .video-slider-item-image {
    width: 350px;
    height: 196px;
  }
}
.video-slider-item-description {
  width: 889px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-slider-item-description {
    width: 600px;
  }
}
@media (max-width: 767px) {
  .video-slider-item-description {
    width: 350px;
  }
}

.datepicker-cell.next:not(.disabled), .datepicker-cell.prev:not(.disabled) {
  color: #CDCDCD;
}

.datepicker-cell.focused:not(.selected) {
  background-color: #c1d640;
  color: #ffffff;
}

.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: #c1d640;
}

.toast-container {
  z-index: 110;
}
.toast-container .toast {
  background-color: #6941C6;
}
.toast-container .toast .toast-header {
  background-color: transparent;
  color: #ffffff;
  padding: 13px 18px;
}
.toast-container .toast .toast-header .toast-icon {
  font-size: 24px;
}

.modal .modal-dialog .modal-content .modal-body {
  padding: 20px;
}
@media (min-width: 1200px) {
  .modal .modal-dialog.modal-xl {
    max-width: 1050px;
  }
}
.modal .modal-dialog .modal-btn-back {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
}
@media (max-width: 767px) {
  .modal .modal-dialog .modal-btn-back {
    position: relative;
    left: 20px;
    top: 20px;
  }
}
.modal .modal-dialog .modal-btn-close {
  position: absolute;
  right: -15px;
  top: -15px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 2px solid #ffffff;
  padding: 0;
  z-index: 20;
}
@media (max-width: 767px) {
  .modal .modal-dialog .modal-btn-close {
    right: 5px;
    top: 5px;
  }
}
.modal .modal-dialog .modal-btn-close-2 {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  z-index: 20;
  color: #000;
}
.modal.billing-modal .billing-modal-left-section {
  width: 60%;
  padding: 32px 40px;
  height: calc(100vh - 60px);
  overflow: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .modal.billing-modal .billing-modal-left-section {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .modal.billing-modal .billing-modal-left-section {
    padding: 30px 20px;
  }
}
.modal.billing-modal .billing-modal-right-section {
  width: 40%;
  background-color: rgba(193, 214, 64, 0.1);
  padding: 15px 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .modal.billing-modal .billing-modal-right-section {
    width: 100%;
  }
}
.modal.upsell-modal .bill-card {
  border: 4px solid #c1d640;
  width: 400px;
  margin: auto;
  padding: 24px 30px 45px 30px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .modal.upsell-modal .bill-card {
    width: 100%;
  }
}

.table > :not(:first-child) {
  border-top: 1px solid #E9EBF0;
}
.table.table-metrics tr, .table.table-metrics th {
  min-width: 110px;
}
.table.table-style1 th {
  background-color: #f1f6d3;
  min-width: 110px;
  padding: 20px 11px;
}
.table.table-style1 td {
  min-width: 110px;
  padding: 16px 11px;
}

.card {
  border-radius: 12px;
  border: 1px solid #E9EBF0;
  box-shadow: 4px 4px 0px rgba(12, 16, 55, 0.03);
  background-color: #ffffff;
}
.card.tab-card .card-body {
  padding: 0 24px;
}
.card .card-title {
  font-size: 24px;
}
.card .card-header {
  padding: 0 24px;
  height: 70px;
  border-bottom: 1px solid #E9EBF0;
  background: none;
}
.card .card-body {
  padding: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card .card-body {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .card .card-body {
    padding: 20px 16px;
  }
}
.card .card-body .card-title {
  font-size: 16px;
  margin-bottom: 32px;
}

.left-bordered-card {
  padding-left: 30px;
  border-left: 4px solid #c1d640;
}
.left-bordered-card.clean-water {
  border-color: #26BDE2;
}
.left-bordered-card.decent-work {
  border-color: #A21942;
}
.left-bordered-card.responsible-consumption {
  border-color: #BF8B2E;
}

.nav-tabs {
  border-bottom: 2px solid #dee2e6;
  position: relative;
}
.nav-tabs .nav-item .nav-link {
  color: #707783;
  padding: 1.2rem 0;
  margin-right: 20px;
  border-width: 0 0 3px;
}
.nav-tabs .nav-item .nav-link.active {
  border-color: #c1d640;
  color: #181C25;
}
.nav-tabs .nav-item .nav-link:hover {
  border-color: #fff #fff #c1d640;
}
.nav-tabs.nav-steps .nav-item:not(:first-child) .nav-link::before {
  content: "";
  width: calc(50% - 13px);
  height: 1px;
  background-color: #9CA3AF;
  top: 32px;
  position: absolute;
  left: 0;
}
.nav-tabs.nav-steps .nav-item:not(:last-child) .nav-link::after {
  content: "";
  width: calc(50% - 13px + 70px);
  height: 1px;
  background-color: #9CA3AF;
  top: 32px;
  position: absolute;
  right: -70px;
}
.nav-tabs.nav-steps .nav-item .nav-link {
  color: #9CA3AF;
  padding-top: 20px;
  padding: 1.2rem 0;
  margin-right: 20px;
  border-width: 0;
  margin-right: 70px;
  position: relative;
}
.nav-tabs.nav-steps .nav-item .nav-link:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.nav-tabs.nav-steps .nav-item .nav-link .tab-num {
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border: 1px solid #9CA3AF;
  border-radius: 50px;
  display: block;
  margin-bottom: 5px;
}
.nav-tabs.nav-steps .nav-item .nav-link.active {
  color: #c1d640;
}
.nav-tabs.nav-steps .nav-item .nav-link.active .tab-num {
  background-color: #c1d640;
  border-color: #c1d640;
  color: #ffffff;
}

.nav-pills .nav-item .nav-link.active {
  background-color: rgba(39, 140, 202, 0.1);
  color: #c1d640;
}

.nav-impact-style {
  width: -moz-fit-content;
  width: fit-content;
  gap: 30px;
}
.nav-impact-style .nav-link {
  padding: 16px 20px;
  font-weight: 600;
  color: #9CA3AF;
  border: none;
  background-color: transparent;
}
.nav-impact-style .nav-link.active {
  color: #181C25;
}

.accordion.checkbox-accordion .accordion-item {
  border: none;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button {
  padding: 12px 0 12px 38px;
  position: relative;
  border: 0;
  background-color: #F6F8FB;
  border-radius: 8px;
  margin-bottom: 8px;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button:before {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 10px;
  color: #ffffff;
  border-radius: 4px;
  border: 1px solid #9CA3AF;
  text-align: center;
  line-height: 1;
  content: "";
  background-image: none !important;
  transition: transform 0.2s ease-in-out;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button:after {
  background-image: url("/images/misc/dropdown-arrow.svg");
  background-size: 10px;
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
  margin-right: 10px;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #181C25;
  box-shadow: none;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  transform: rotate(0deg);
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button.all-selected {
  box-shadow: none;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button.all-selected:before {
  content: "✓";
  background-color: #c1d640;
  border: 0;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button.partial-selected {
  box-shadow: none;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button.partial-selected:before {
  content: "-";
  background-color: #c1d640;
  border: 0;
}
.accordion.checkbox-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.accordion.checkbox-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 12px 0 12px 0;
}

.earthTech__bg-ellipse {
  position: absolute;
  width: 40%;
  height: 90vh;
  left: 0;
  right: auto;
  top: 0;
  background: #CDD397;
  opacity: 0.1;
  filter: blur(30px);
  z-index: -1;
  border-radius: 0 0 100% 0;
}
.earthTech__bg-ellipse.light-blue {
  background: #C2D640;
  width: 23%;
  height: 80vh;
  top: 0;
  right: 0;
  left: auto;
  opacity: 0.1;
  border-radius: 100% 0 0 100%;
}

#wrapper {
  display: flex;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  #wrapper {
    display: block;
  }
}
#wrapper .sidebar {
  width: 230px;
  top: 150px;
  z-index: 1;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  #wrapper .sidebar {
    padding-top: 0;
  }
}
#wrapper .sidebar .nav-item {
  position: relative;
  margin-bottom: 4px;
}
#wrapper .sidebar .nav-item.nav-disabled {
  pointer-events: none;
  opacity: 0.5;
}
#wrapper .sidebar .nav-item .nav-link {
  padding: 12px;
  color: #374151;
  box-shadow: 4px 4px 0px transparent;
  border: 1px solid transparent;
}
#wrapper .sidebar .nav-item .nav-link .side-icons {
  width: 20px;
  height: 20px;
  display: inline-block;
}
#wrapper .sidebar .nav-item .nav-link .side-icons.active {
  display: none;
}
#wrapper .sidebar .nav-item .nav-link.active {
  background-color: #ffffff;
  border-radius: 8px;
  color: #181C25;
  box-shadow: 4px 4px 0px rgba(12, 16, 55, 0.03);
  border: 1px solid #E9EBF0;
}
#wrapper .sidebar .nav-item .nav-link.active .side-icons {
  display: none;
}
#wrapper .sidebar .nav-item .nav-link.active .side-icons.active {
  display: inline-block;
}
#wrapper .sidebar .nav-item .nav-link.active i {
  color: #c1d640;
}
#wrapper .sidebar .nav-item .nav-link i {
  margin-right: 12px;
}
#wrapper .sidebar .nav-item > ul {
  margin-left: 37px;
  margin-top: 12px;
}
#wrapper .sidebar .nav-item > ul .nav-item .nav-link {
  padding: 4px 10px;
}
#wrapper .sidebar .nav-item > ul .nav-item .nav-link.active {
  background-color: #ffffff;
  box-shadow: none;
  border: none;
  color: #c1d640;
}
#wrapper .sidebar.no-sub {
  top: 120px;
}
#wrapper .section-w-link {
  padding: 0;
}
#wrapper .section-w-link::before {
  display: block;
  content: " ";
  margin-top: -170px;
  height: 170px;
  visibility: hidden;
  pointer-events: none;
}
#wrapper #content-wrapper {
  margin-left: 40px;
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  #wrapper #content-wrapper {
    margin-left: 0;
  }
}
#wrapper #content-wrapper #content .title {
  font-size: 20px;
  font-weight: bold;
}

.left-image {
  margin-bottom: 20px;
}

.image-edit-crop {
  position: relative;
  width: 100%;
  max-height: 400px;
}

.image-wrapper {
  min-width: 120px;
  width: 120px;
  height: 120px;
  position: relative;
}
.image-wrapper .image-btn-remove {
  position: absolute;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  border: 2px solid #ffffff;
  padding: 4px 0;
  z-index: 20;
}
@media (max-width: 767px) {
  .image-wrapper .image-btn-remove {
    right: 5px;
    top: 5px;
  }
}

.form-check-input:checked {
  background-color: #c1d640;
  border-color: #c1d640;
}

.form-check-label.switch-label {
  line-height: 2.3em;
}

.form-check.form-switch {
  margin-bottom: 16px;
}
.form-check.form-switch .form-check-input {
  width: 60px;
  height: 30px;
}
.form-check.form-switch .form-check-input:checked {
  background-color: #00B072;
  border-color: #00B072;
}
.form-check.form-switch .form-check-input:focus {
  box-shadow: none;
}

.form-label {
  color: #181C25;
}

.form-control:focus {
  border-color: #ced4da;
}

.form-select {
  background-image: url("/images/misc/dropdown-arrow.svg");
  background-size: 7px;
}

.max-reached-text {
  position: relative;
}
.max-reached-text_content {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  background-color: #ffffff;
  margin: auto;
  z-index: 1;
}
.max-reached-text::after {
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: #E9EBF0;
}

.dragBox {
  width: 100%;
  height: 120px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  color: #999;
  border: 2px dashed #ccc;
  display: inline-block;
  padding: 30px 0;
  transition: transform 0.3s;
}
.dragBox .imagePreview_image {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.dragBox.logo_drag {
  height: 120px;
}
.dragBox.hero_drag {
  height: 145px;
  padding: 45px 0;
  cursor: pointer;
}
.dragBox.hero_drag .imagePreview_image {
  width: 112px;
  height: 120px;
}
.dragBox input[type=file] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  cursor: pointer;
}
.dragBox.draging {
  border-color: #c1d640;
}
.dragBox.is-invalid {
  border: 2px dashed #F77676;
}

.avatar-upload {
  max-width: 60px;
  max-height: 60px;
}

.venture-carousel .carousel-inner .carousel-item .carousel-title {
  animation: fadeInUp 0.5s ease-out 1s both;
}
.venture-carousel .carousel-inner .carousel-item .carousel-description {
  animation: fadeInUp 0.5s ease-out 1.2s both;
}
.venture-carousel .carousel-inner .carousel-item .carousel-image {
  animation: fadeInUp 0.5s ease-out 1.6s both;
}
.venture-carousel .carousel-inner .carousel-item .carousel-image-description {
  animation: fadeInUp 0.5s ease-out 1.8s both;
}
.venture-carousel .carousel-inner .carousel-item .carousel-image-description .carousel-image-title {
  width: 80%;
}
.venture-carousel .carousel-control-prev, .venture-carousel .carousel-control-next {
  color: #c1d640;
  font-size: 40px;
  bottom: 40px;
  top: auto;
  width: auto;
}
.venture-carousel .carousel-control-next {
  right: auto;
  left: 70px;
}

.main-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.main-footer_content-wrapper {
  padding: 45px 0;
  border-top: 2px solid #E9EBF0;
}

.chart-pie {
  width: 100%;
  height: 20rem;
  position: relative;
  background-color: #F9FAFB;
  padding: 22px 0;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
}
.chart-pie .center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chart-pie .center-label p {
  color: #c1d640;
  font-size: 30px;
}

.liveloop-widget {
  position: relative;
  background-color: rgb(236, 246, 231);
  padding: 38px 42px;
  z-index: 10;
}
.liveloop-widget_status-icon {
  color: #ffffff;
  background-color: #c1d640;
  padding: 12px 7px;
  border-radius: 8px 0 0 8px;
  font-size: 20px;
}
.liveloop-widget_status-icon.rated {
  background-color: #00B072;
}
.liveloop-widget_stars {
  position: relative;
  padding-right: 12px;
}
.liveloop-widget_stars:after {
  content: "";
  height: 11px;
  width: 1px;
  background-color: #E9EBF0;
  position: absolute;
  right: 0;
  top: 7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .pitch-preview a {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.liveloopModal_stars {
  color: #D0D5DD;
  font-size: 30px;
  position: relative;
  padding-right: 20px;
}
.liveloopModal_stars:after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: #E9EBF0;
  position: absolute;
  right: 0;
  top: 12px;
}

.comments .comment .commenter {
  top: -14px;
  right: 16px;
}

.rate {
  float: left;
}

.rate.widget {
  float: left;
}

.rate:not(:checked) > input {
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  opacity: 0;
}

.rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
}

.rate.widget:not(:checked) > label {
  font-size: 32px;
}

.rate:not(:checked) > label:before {
  content: "★"; /* Black Star Unicode */
  font-size: 32px; /* Adjust size as needed */
  -webkit-text-stroke: 1px #707783; /* Webkit-specific border */
  text-stroke: 1px #707783; /* Standard text-stroke for border */
}

.rate > input:checked ~ label {
  color: #c1d640;
}

.rate > input:checked ~ label:before {
  -webkit-text-stroke: 1px #c1d640; /* Webkit-specific border */
  text-stroke: 1px #c1d640; /* Standard text-stroke for border */
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #c1d640;
}

.rate:not(:checked) > label:hover:before,
.rate:not(:checked) > label:hover ~ label:before {
  -webkit-text-stroke: 1px #c1d640 !important; /* Webkit-specific border */
  text-stroke: 1px #c1d640 !important; /* Standard text-stroke for border */
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c1d640;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

/* =============================
    DEFAULT CSS
================================ */
/* === WebKit browsers (Chrome, Edge, Safari) === */
*::-webkit-scrollbar {
  width: 14px; /* width for vertical scrollbars */
  height: 14px; /* height for horizontal scrollbars */
}

*::-webkit-scrollbar-track {
  background: transparent; /* "seamless" track — invisible */
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.12); /* light, subtle thumb */
  border-radius: 999px; /* rounded pill */
  border: 2px solid transparent; /* spacing effect */
  background-clip: padding-box; /* keep border visible */
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.18);
}

/* === Firefox === */
* {
  scrollbar-width: thin; /* "auto" | "thin" */
  scrollbar-color: rgba(0, 0, 0, 0.12) transparent; /* thumb then track */
}

.img-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-default {
  background-color: #F5FAFF;
}

.bg-light-color {
  background-color: #F9FAFB !important;
}

.bg-gray {
  background-color: #E9EBF0;
}

.section-light-bg {
  background-color: #F6F8FB;
}

.bg-green-badge {
  background-color: #86DEB7;
}

.bg-success2 {
  background-color: #12A809;
}

.bg-badge {
  background-color: #C2D1D9;
}

.bg-light-warning {
  background-color: rgb(255, 241, 194);
}

.bg-light-success {
  background-color: rgb(207, 247, 211);
}

.bg-light-danger {
  background-color: rgb(253, 211, 208);
}

.bg-light-purple {
  background-color: rgb(231, 224, 236);
}

.bg-light-primary-green {
  background-color: rgba(123, 176, 97, 0.08);
}

.light-text {
  color: #707783;
}

.lightest-text {
  color: #9CA3AF;
}

.purple-text {
  color: #D6BBFB;
}

.text-danger {
  color: #F77676 !important;
}

.text-blue {
  color: rgb(0, 117, 227);
}

.text-success {
  color: #00B072 !important;
}

.text-success2 {
  color: #00B072;
}

.fs-5 {
  font-size: 18px !important;
}

.fs-xs {
  font-size: 12px;
}

.heading-color {
  color: #181C25 !important;
}

.primary-color {
  color: #c1d640;
}

.shadow-default {
  box-shadow: 4px 4px 0px rgba(12, 16, 55, 0.03);
}

.image-shadow-default {
  box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.25);
}

.badge {
  font-size: 12px;
  font-weight: normal;
  padding: 6px 10px;
}

.pill-primary {
  border: 2px solid #c1d640;
  padding: 6px 16px;
  border-radius: 9px;
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.03);
}

input:focus, textarea:focus, button:focus {
  outline: none;
  box-shadow: none;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

.body-color {
  color: #374151 !important;
}

.fs-xxsm {
  font-size: 9px;
}

.fs-lg {
  font-size: 18px;
}

.fs-xl {
  font-size: 22px;
}

.fw-600 {
  font-weight: 600;
}

.rounded-4 {
  border-radius: 8px;
}

.rounded-5 {
  border-radius: 12px;
}

.b-default {
  border: 1px solid #E9EBF0;
}

.dotter-bottom-border {
  border-bottom: 1px dotted #c1d640;
}

.w-1 {
  width: 1%;
}

.w-2 {
  width: 2%;
}

.w-3 {
  width: 3%;
}

.w-4 {
  width: 4%;
}

.w-5 {
  width: 5%;
}

.w-6 {
  width: 6%;
}

.w-7 {
  width: 7%;
}

.w-8 {
  width: 8%;
}

.w-9 {
  width: 9%;
}

.w-10 {
  width: 10%;
}

.w-11 {
  width: 11%;
}

.w-12 {
  width: 12%;
}

.w-13 {
  width: 13%;
}

.w-14 {
  width: 14%;
}

.w-15 {
  width: 15%;
}

.w-16 {
  width: 16%;
}

.w-17 {
  width: 17%;
}

.w-18 {
  width: 18%;
}

.w-19 {
  width: 19%;
}

.w-20 {
  width: 20%;
}

.w-21 {
  width: 21%;
}

.w-22 {
  width: 22%;
}

.w-23 {
  width: 23%;
}

.w-24 {
  width: 24%;
}

.w-25 {
  width: 25%;
}

.w-26 {
  width: 26%;
}

.w-27 {
  width: 27%;
}

.w-28 {
  width: 28%;
}

.w-29 {
  width: 29%;
}

.w-30 {
  width: 30%;
}

.w-31 {
  width: 31%;
}

.w-32 {
  width: 32%;
}

.w-33 {
  width: 33%;
}

.w-34 {
  width: 34%;
}

.w-35 {
  width: 35%;
}

.w-36 {
  width: 36%;
}

.w-37 {
  width: 37%;
}

.w-38 {
  width: 38%;
}

.w-39 {
  width: 39%;
}

.w-40 {
  width: 40%;
}

.w-41 {
  width: 41%;
}

.w-42 {
  width: 42%;
}

.w-43 {
  width: 43%;
}

.w-44 {
  width: 44%;
}

.w-45 {
  width: 45%;
}

.w-46 {
  width: 46%;
}

.w-47 {
  width: 47%;
}

.w-48 {
  width: 48%;
}

.w-49 {
  width: 49%;
}

.w-50 {
  width: 50%;
}

.w-51 {
  width: 51%;
}

.w-52 {
  width: 52%;
}

.w-53 {
  width: 53%;
}

.w-54 {
  width: 54%;
}

.w-55 {
  width: 55%;
}

.w-56 {
  width: 56%;
}

.w-57 {
  width: 57%;
}

.w-58 {
  width: 58%;
}

.w-59 {
  width: 59%;
}

.w-60 {
  width: 60%;
}

.w-61 {
  width: 61%;
}

.w-62 {
  width: 62%;
}

.w-63 {
  width: 63%;
}

.w-64 {
  width: 64%;
}

.w-65 {
  width: 65%;
}

.w-66 {
  width: 66%;
}

.w-67 {
  width: 67%;
}

.w-68 {
  width: 68%;
}

.w-69 {
  width: 69%;
}

.w-70 {
  width: 70%;
}

.w-71 {
  width: 71%;
}

.w-72 {
  width: 72%;
}

.w-73 {
  width: 73%;
}

.w-74 {
  width: 74%;
}

.w-75 {
  width: 75%;
}

.w-76 {
  width: 76%;
}

.w-77 {
  width: 77%;
}

.w-78 {
  width: 78%;
}

.w-79 {
  width: 79%;
}

.w-80 {
  width: 80%;
}

.w-81 {
  width: 81%;
}

.w-82 {
  width: 82%;
}

.w-83 {
  width: 83%;
}

.w-84 {
  width: 84%;
}

.w-85 {
  width: 85%;
}

.w-86 {
  width: 86%;
}

.w-87 {
  width: 87%;
}

.w-88 {
  width: 88%;
}

.w-89 {
  width: 89%;
}

.w-90 {
  width: 90%;
}

.w-91 {
  width: 91%;
}

.w-92 {
  width: 92%;
}

.w-93 {
  width: 93%;
}

.w-94 {
  width: 94%;
}

.w-95 {
  width: 95%;
}

.w-96 {
  width: 96%;
}

.w-97 {
  width: 97%;
}

.w-98 {
  width: 98%;
}

.w-99 {
  width: 99%;
}

.w-100 {
  width: 100%;
}

.px-6 {
  padding-left: 6px;
  padding-right: 6px;
}

.px-7 {
  padding-left: 7px;
  padding-right: 7px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-9 {
  padding-left: 9px;
  padding-right: 9px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-11 {
  padding-left: 11px;
  padding-right: 11px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-13 {
  padding-left: 13px;
  padding-right: 13px;
}

.px-14 {
  padding-left: 14px;
  padding-right: 14px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-17 {
  padding-left: 17px;
  padding-right: 17px;
}

.px-18 {
  padding-left: 18px;
  padding-right: 18px;
}

.px-19 {
  padding-left: 19px;
  padding-right: 19px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-21 {
  padding-left: 21px;
  padding-right: 21px;
}

.px-22 {
  padding-left: 22px;
  padding-right: 22px;
}

.px-23 {
  padding-left: 23px;
  padding-right: 23px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.px-26 {
  padding-left: 26px;
  padding-right: 26px;
}

.px-27 {
  padding-left: 27px;
  padding-right: 27px;
}

.px-28 {
  padding-left: 28px;
  padding-right: 28px;
}

.px-29 {
  padding-left: 29px;
  padding-right: 29px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-31 {
  padding-left: 31px;
  padding-right: 31px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.px-33 {
  padding-left: 33px;
  padding-right: 33px;
}

.px-34 {
  padding-left: 34px;
  padding-right: 34px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.px-36 {
  padding-left: 36px;
  padding-right: 36px;
}

.px-37 {
  padding-left: 37px;
  padding-right: 37px;
}

.px-38 {
  padding-left: 38px;
  padding-right: 38px;
}

.px-39 {
  padding-left: 39px;
  padding-right: 39px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-41 {
  padding-left: 41px;
  padding-right: 41px;
}

.px-42 {
  padding-left: 42px;
  padding-right: 42px;
}

.px-43 {
  padding-left: 43px;
  padding-right: 43px;
}

.px-44 {
  padding-left: 44px;
  padding-right: 44px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.px-46 {
  padding-left: 46px;
  padding-right: 46px;
}

.px-47 {
  padding-left: 47px;
  padding-right: 47px;
}

.px-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.px-49 {
  padding-left: 49px;
  padding-right: 49px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.px-51 {
  padding-left: 51px;
  padding-right: 51px;
}

.px-52 {
  padding-left: 52px;
  padding-right: 52px;
}

.px-53 {
  padding-left: 53px;
  padding-right: 53px;
}

.px-54 {
  padding-left: 54px;
  padding-right: 54px;
}

.px-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.px-56 {
  padding-left: 56px;
  padding-right: 56px;
}

.px-57 {
  padding-left: 57px;
  padding-right: 57px;
}

.px-58 {
  padding-left: 58px;
  padding-right: 58px;
}

.px-59 {
  padding-left: 59px;
  padding-right: 59px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.px-61 {
  padding-left: 61px;
  padding-right: 61px;
}

.px-62 {
  padding-left: 62px;
  padding-right: 62px;
}

.px-63 {
  padding-left: 63px;
  padding-right: 63px;
}

.px-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.px-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.px-66 {
  padding-left: 66px;
  padding-right: 66px;
}

.px-67 {
  padding-left: 67px;
  padding-right: 67px;
}

.px-68 {
  padding-left: 68px;
  padding-right: 68px;
}

.px-69 {
  padding-left: 69px;
  padding-right: 69px;
}

.px-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.px-71 {
  padding-left: 71px;
  padding-right: 71px;
}

.px-72 {
  padding-left: 72px;
  padding-right: 72px;
}

.px-73 {
  padding-left: 73px;
  padding-right: 73px;
}

.px-74 {
  padding-left: 74px;
  padding-right: 74px;
}

.px-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.px-76 {
  padding-left: 76px;
  padding-right: 76px;
}

.px-77 {
  padding-left: 77px;
  padding-right: 77px;
}

.px-78 {
  padding-left: 78px;
  padding-right: 78px;
}

.px-79 {
  padding-left: 79px;
  padding-right: 79px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.px-81 {
  padding-left: 81px;
  padding-right: 81px;
}

.px-82 {
  padding-left: 82px;
  padding-right: 82px;
}

.px-83 {
  padding-left: 83px;
  padding-right: 83px;
}

.px-84 {
  padding-left: 84px;
  padding-right: 84px;
}

.px-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.px-86 {
  padding-left: 86px;
  padding-right: 86px;
}

.px-87 {
  padding-left: 87px;
  padding-right: 87px;
}

.px-88 {
  padding-left: 88px;
  padding-right: 88px;
}

.px-89 {
  padding-left: 89px;
  padding-right: 89px;
}

.px-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.px-91 {
  padding-left: 91px;
  padding-right: 91px;
}

.px-92 {
  padding-left: 92px;
  padding-right: 92px;
}

.px-93 {
  padding-left: 93px;
  padding-right: 93px;
}

.px-94 {
  padding-left: 94px;
  padding-right: 94px;
}

.px-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.px-96 {
  padding-left: 96px;
  padding-right: 96px;
}

.px-97 {
  padding-left: 97px;
  padding-right: 97px;
}

.px-98 {
  padding-left: 98px;
  padding-right: 98px;
}

.px-99 {
  padding-left: 99px;
  padding-right: 99px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-7 {
  padding-top: 7px;
  padding-bottom: 7px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-9 {
  padding-top: 9px;
  padding-bottom: 9px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-11 {
  padding-top: 11px;
  padding-bottom: 11px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-13 {
  padding-top: 13px;
  padding-bottom: 13px;
}

.py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-17 {
  padding-top: 17px;
  padding-bottom: 17px;
}

.py-18 {
  padding-top: 18px;
  padding-bottom: 18px;
}

.py-19 {
  padding-top: 19px;
  padding-bottom: 19px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-21 {
  padding-top: 21px;
  padding-bottom: 21px;
}

.py-22 {
  padding-top: 22px;
  padding-bottom: 22px;
}

.py-23 {
  padding-top: 23px;
  padding-bottom: 23px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-26 {
  padding-top: 26px;
  padding-bottom: 26px;
}

.py-27 {
  padding-top: 27px;
  padding-bottom: 27px;
}

.py-28 {
  padding-top: 28px;
  padding-bottom: 28px;
}

.py-29 {
  padding-top: 29px;
  padding-bottom: 29px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-31 {
  padding-top: 31px;
  padding-bottom: 31px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-33 {
  padding-top: 33px;
  padding-bottom: 33px;
}

.py-34 {
  padding-top: 34px;
  padding-bottom: 34px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.py-37 {
  padding-top: 37px;
  padding-bottom: 37px;
}

.py-38 {
  padding-top: 38px;
  padding-bottom: 38px;
}

.py-39 {
  padding-top: 39px;
  padding-bottom: 39px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-41 {
  padding-top: 41px;
  padding-bottom: 41px;
}

.py-42 {
  padding-top: 42px;
  padding-bottom: 42px;
}

.py-43 {
  padding-top: 43px;
  padding-bottom: 43px;
}

.py-44 {
  padding-top: 44px;
  padding-bottom: 44px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-46 {
  padding-top: 46px;
  padding-bottom: 46px;
}

.py-47 {
  padding-top: 47px;
  padding-bottom: 47px;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-49 {
  padding-top: 49px;
  padding-bottom: 49px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-51 {
  padding-top: 51px;
  padding-bottom: 51px;
}

.py-52 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.py-53 {
  padding-top: 53px;
  padding-bottom: 53px;
}

.py-54 {
  padding-top: 54px;
  padding-bottom: 54px;
}

.py-55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.py-56 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.py-57 {
  padding-top: 57px;
  padding-bottom: 57px;
}

.py-58 {
  padding-top: 58px;
  padding-bottom: 58px;
}

.py-59 {
  padding-top: 59px;
  padding-bottom: 59px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-61 {
  padding-top: 61px;
  padding-bottom: 61px;
}

.py-62 {
  padding-top: 62px;
  padding-bottom: 62px;
}

.py-63 {
  padding-top: 63px;
  padding-bottom: 63px;
}

.py-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.py-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.py-66 {
  padding-top: 66px;
  padding-bottom: 66px;
}

.py-67 {
  padding-top: 67px;
  padding-bottom: 67px;
}

.py-68 {
  padding-top: 68px;
  padding-bottom: 68px;
}

.py-69 {
  padding-top: 69px;
  padding-bottom: 69px;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.py-71 {
  padding-top: 71px;
  padding-bottom: 71px;
}

.py-72 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.py-73 {
  padding-top: 73px;
  padding-bottom: 73px;
}

.py-74 {
  padding-top: 74px;
  padding-bottom: 74px;
}

.py-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.py-76 {
  padding-top: 76px;
  padding-bottom: 76px;
}

.py-77 {
  padding-top: 77px;
  padding-bottom: 77px;
}

.py-78 {
  padding-top: 78px;
  padding-bottom: 78px;
}

.py-79 {
  padding-top: 79px;
  padding-bottom: 79px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-81 {
  padding-top: 81px;
  padding-bottom: 81px;
}

.py-82 {
  padding-top: 82px;
  padding-bottom: 82px;
}

.py-83 {
  padding-top: 83px;
  padding-bottom: 83px;
}

.py-84 {
  padding-top: 84px;
  padding-bottom: 84px;
}

.py-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.py-86 {
  padding-top: 86px;
  padding-bottom: 86px;
}

.py-87 {
  padding-top: 87px;
  padding-bottom: 87px;
}

.py-88 {
  padding-top: 88px;
  padding-bottom: 88px;
}

.py-89 {
  padding-top: 89px;
  padding-bottom: 89px;
}

.py-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.py-91 {
  padding-top: 91px;
  padding-bottom: 91px;
}

.py-92 {
  padding-top: 92px;
  padding-bottom: 92px;
}

.py-93 {
  padding-top: 93px;
  padding-bottom: 93px;
}

.py-94 {
  padding-top: 94px;
  padding-bottom: 94px;
}

.py-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.py-96 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.py-97 {
  padding-top: 97px;
  padding-bottom: 97px;
}

.py-98 {
  padding-top: 98px;
  padding-bottom: 98px;
}

.py-99 {
  padding-top: 99px;
  padding-bottom: 99px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

/* =============================
    HEADER-4 CSS
================================ */
.header .navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid #F3F4F6;
}
.header .navbar-area.w-color {
  background-color: #F5FAFF;
}
.header .navbar-area .main-menu .navbar {
  padding: 15px 0;
  height: 72px;
  border-radius: 0px;
  position: relative;
  animation: fadeInDown 0.5s ease-out 0.2s both;
  transition: all 0.3s ease-out 0s;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-area .main-menu .navbar {
    padding: 17px 0;
  }
}
@media (max-width: 767px) {
  .header .navbar-area .main-menu .navbar {
    padding: 17px 0;
  }
}
.header .navbar-area .main-menu .navbar .navbar-collapse {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}
@media (max-width: 767px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(24, 28, 37, 0.1);
    padding: 5px 12px;
  }
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav {
  flex-direction: row;
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item {
  position: relative;
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
  margin-right: 24px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
    margin-right: 20px;
  }
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item a {
  font-size: 15px;
  line-height: 16px;
  border-radius: 8px;
  font-weight: normal;
  color: #707783;
  transition: all 0.3s ease-out 0s;
  padding: 12px 15px;
  position: relative;
  display: inline-block;
  z-index: 1;
  box-shadow: 4px 4px 0px transparent;
}
@media (max-width: 767px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item a {
    color: #181C25;
  }
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item a:hover {
  color: #707783;
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item a.active {
  color: #181C25;
  background-color: #ffffff;
  box-shadow: 4px 4px 0px rgba(12, 16, 55, 0.03);
  border: 1px solid #E9EBF0;
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
@media (max-width: 767px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item .sub-menu li {
  display: block;
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #181C25;
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item .sub-menu li a.active, .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #c1d640;
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .sub-nav-toggler {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #181C25;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #181C25;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
.header .navbar-area .main-menu .navbar .navbar-collapse .navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #181C25;
  border-bottom: 1px solid #181C25;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}
.header .navbar-area .super-summary {
  min-height: 94px;
}
.header .navbar-area .super-summary_wrapper .brand {
  border: 1px solid #E9EBF0;
  border-radius: 8px;
  padding: 9px;
  margin-right: 24px;
  width: 72px;
  height: 72px;
}
.header .navbar-area .super-summary_wrapper .brand img {
  width: 100%;
  height: 100%;
}
.header .navbar-area .super-summary_wrapper .venture_name {
  max-width: 230px;
}
.header .navbar-area .super-summary_wrapper .summary {
  display: flex;
  flex-direction: row;
  align-items: start;
}
.header .navbar-area .super-summary_wrapper .summary .top-summary {
  width: auto;
  border-bottom: none;
  margin-bottom: 0;
  display: flex;
  margin-right: 24px;
}
.header .navbar-area .super-summary_wrapper .summary .top-summary .summary-item {
  margin-right: 36px;
  white-space: nowrap;
}
.header .navbar-area .super-summary_wrapper .summary .bottom-summary {
  width: 100%;
  display: flex;
}
.header .navbar-area .super-summary_wrapper .summary .bottom-summary .summary-item {
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.header .navbar-area .super-summary_wrapper .sdg-wrapper .sdg-card {
  height: 60px;
  width: 60px;
  margin-left: 14px;
  border: 1px solid #E9EBF0;
}
.header .navbar-area.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
}
.header .navbar-area.sticky .navbar-brand {
  color: #181C25;
}
.header .navbar-area.sticky .navbar {
  padding: 10px 0;
  height: 60px;
}
.header .navbar-area.admin-nav .sub-menu {
  border-top: 1px solid #F3F4F6;
  padding: 10px 0;
}
.header .navbar-area.admin-nav .sub-menu .title {
  font-size: 20px;
}
.header .navbar-area.admin-nav .super-summary {
  border-top: 1px solid #F3F4F6;
  padding: 10px 0;
}
.header .navbar-area .nav-alert {
  margin-bottom: 0;
  padding: 7px 1rem;
}
.header .navbar-area .nav-alert .btn-close {
  padding: 13px 1rem;
  box-shadow: none;
  font-size: 10px;
}
@media (max-width: 767px) {
  .header .header-cta .button {
    padding: 10px 16px;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .header-cta {
    display: none;
  }
}
.header .navbar-brand {
  padding: 0;
  transition: all 0.3s ease-out 0s;
  font-weight: 700;
  color: #ffffff;
  margin-right: 42px;
}
.header .navbar-brand img {
  width: auto;
  height: 56px;
}
.header .navbar-toggler {
  padding: 0;
  margin-right: 24px;
  border: 0;
}
.header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.header .navbar-toggler .toggler-icon {
  width: 22px;
  height: 2px;
  background-color: #707783;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}
.header .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}
.header .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.header .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}
.header .collapse-cta {
  display: none;
}
.header .collapse-cta .button {
  border-color: #181C25;
  width: 100%;
}
.header .collapse-cta .button::before {
  background: #181C25;
}
.header .collapse-cta .button-dia:first-child::before, .header .collapse-cta .button-dia:first-child::after, .header .collapse-cta .button-dia:last-child::before, .header .collapse-cta .button-dia:last-child::after {
  color: #181C25;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .collapse-cta {
    display: block;
  }
}

/* ============================= 
    FOOTER-1 CSS
================================ */
.mechlab__footer {
  background: transparent;
  padding-top: 90px;
}
.mechlab__footer-content {
  margin-bottom: 50px;
}
.mechlab__footer-content h3 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .mechlab__footer-content h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
.mechlab__footer-content p {
  font-size: 16px;
  line-height: 28px;
  color: #E1E5F8;
  margin-bottom: 42px;
}
.mechlab__footer-content .email {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  text-decoration-line: underline;
  margin-right: 35px;
}
.mechlab__footer-content .socials {
  font-size: 32px;
  display: flex;
  align-items: center;
}
.mechlab__footer-content .socials li {
  margin-right: 35px;
}
.mechlab__footer-copyright {
  padding: 24px 0;
  background: #ffffff;
  align-items: center;
  display: flex;
}
.mechlab__footer-copyright a {
  font-size: 16px;
  line-height: 24px;
}
.mechlab__footer-copyright p {
  font-size: 14px;
  line-height: 24px;
}
.mechlab__footer-copyright p, .mechlab__footer-copyright a {
  color: #777E90;
}
