﻿body,
html {
  height: 100%;
  background-color: #ecf2fe;
  font-family: "Manrope", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  color: #333;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a {
  color: #333;
}

p {
  font-size: 12px;
  line-height: 18px;
  padding: 0;
}

section {
  margin-bottom: 6px;
}

h2 {
  font-size: 20px;
  font-weight: 300;
}

img {
  max-width: 100%;
  display: inline-block;
}

li {
  list-style: none;
}

.screen-padding {
  padding: 0 14px;
}

.p-0 {
  padding: 0rem !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.p-5 {
  padding: 2.5rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

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

.pt-0 {
  padding-top: 0rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

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

.pl-0 {
  padding-left: 0rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pl-5 {
  padding-left: 2.5rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pr-5 {
  padding-right: 2.5rem !important;
}

.m-0 {
  margin: 0rem !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.m-5 {
  margin: 2.5rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

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

.mt-0 {
  margin-top: 0rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.ml-5 {
  margin-left: 2.5rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mr-5 {
  margin-right: 2.5rem !important;
}

.fade {
  transition: background-color 1000ms;
}

.fade:hover {
  background-color: #0b7d5f;
}

.back-pulse {
  transition: background-color 1000ms;
}

.back-pulse:hover {
  background-color: #0b7d5f;
  -webkit-animation: back-pulse 1000ms infinite linear 500ms;
  animation: back-pulse 1000ms infinite linear 500ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@keyframes back-pulse {
  0%,
  50%,
  100% {
    background-color: rgba(72, 91, 110, 0.75);
  }
  25%,
  75% {
    background-color: #485b6e;
  }
}

@-webkit-keyframes back-pulse {
  0%,
  50%,
  100% {
    background-color: rgba(84, 153, 199, 0.75);
  }
  25%,
  75% {
    background-color: #0b7d5f;
  }
}

.sweep-to-right {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
}

.sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b7d5f;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.sweep-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.sweep-to-left {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
}

.sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b7d5f;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.sweep-to-left:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.sweep-to-bottom {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
}

.sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b7d5f;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  border-radius: 50rem;
  -webkit-border-radius: 50rem;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.sweep-to-bottom:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.sweep-to-top {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
}

.sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b7d5f;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.sweep-to-top:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.bounce-to-right {
  position: relative;
  -webkit-transition: color 500ms;
  transition: color 500ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bounce-to-right:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #0b7d5f;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.bounce-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-to-left {
  position: relative;
  -webkit-transition: color 500ms;
  transition: color 500ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bounce-to-left:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #0b7d5f;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.bounce-to-left:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-to-bottom {
  position: relative;
  -webkit-transition: color 500ms;
  transition: color 500ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bounce-to-bottom:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #0b7d5f;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.bounce-to-bottom:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.bounce-to-top {
  position: relative;
  -webkit-transition: color 500ms;
  transition: color 500ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bounce-to-top:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  background: #0b7d5f;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.bounce-to-top:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.radial-out {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition: color 300ms;
  transition: color 300ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b7d5f;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.radial-out:hover:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

.radial-in {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0b7d5f !important;
  position: relative;
  -webkit-transition: color 300ms;
  transition: color 300ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ecf0f1;
  border-radius: 100%;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.radial-in:hover:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.rectangle-in {
  background-color: #0b7d5f !important;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

.rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ecf0f1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  transition: 300ms ease-out;
}

.rectangle-in:hover:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.rectangle-out {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

.rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b7d5f;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.rectangle-out:hover:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.shutter-in-horizontal {
  background-color: #0b7d5f !important;
  -webkit-transition: color 300ms;
  transition: color 300ms;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ecf0f1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.shutter-in-horizontal:hover:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.shutter-out-horizontal {
  -webkit-transition: color 300ms;
  transition: color 300ms;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b7d5f;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.shutter-out-horizontal:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.shutter-in-vertical {
  background-color: #0b7d5f !important;
  -webkit-transition: color 300ms;
  transition: color 300ms;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ecf0f1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.shutter-in-vertical:hover:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.shutter-out-vertical {
  -webkit-transition: color 300ms;
  transition: color 300ms;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b7d5f;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.shutter-out-vertical:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 1rem;
  box-shadow: 0 0 13px #dadbdb;
  padding: 10px;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
}

.card > .list-group:last-child {
  border-bottom-width: 0;
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-tabs .nav-link.active {
  background-color: #fff;
  border-bottom-color: #fff;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-group > .card {
  margin-bottom: 0.75rem;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: divide(100%, 1);
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: divide(100%, 2);
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: divide(100%, 3);
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: divide(100%, 4);
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: divide(100%, 5);
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: divide(100%, 6);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: divide(100%, 1);
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: divide(100%, 2);
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: divide(100%, 3);
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: divide(100%, 4);
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: divide(100%, 5);
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: divide(100%, 6);
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0%;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: divide(100%, 1);
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: divide(100%, 2);
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: divide(100%, 3);
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: divide(100%, 4);
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: divide(100%, 5);
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: divide(100%, 6);
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0%;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: divide(100%, 1);
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: divide(100%, 2);
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: divide(100%, 3);
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: divide(100%, 4);
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: divide(100%, 5);
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: divide(100%, 6);
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0%;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: divide(100%, 1);
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: divide(100%, 2);
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: divide(100%, 3);
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: divide(100%, 4);
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: divide(100%, 5);
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: divide(100%, 6);
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0%;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: divide(100%, 1);
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: divide(100%, 2);
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: divide(100%, 3);
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: divide(100%, 4);
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: divide(100%, 5);
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: divide(100%, 6);
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0%;
  }

  .offset-xxl-1 {
    margin-left: 8.33333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1024px) {
  .phone {
    margin: 0 auto;
    max-width: 430px;
    height: 955px;
    padding: 50px 0 80px;
    background: #323232;
    border-radius: 25px;
    position: relative;
  }

  .phone .wrapper {
    height: 823px;
  }

  .phone .wrapper .content {
    padding-bottom: 40px;
  }

  .phone .header,
  .phone .topbar {
    position: absolute;
  }

  .phone:after,
  .phone:before {
    position: absolute;
    background: #999;
    content: "";
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .phone:after {
    top: 20px;
    height: 8px;
    width: 60px;
    border-radius: 4px;
  }

  .phone:before {
    width: 40px;
    height: 40px;
    bottom: 20px;
    border-radius: 100%;
  }
}

.header {
  background-color: #f6f7f9;
  padding: 5px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  border-top: 3px solid #cacfd8;
}

.header nav {
  max-height: 70px;
}

.header nav .main-menu {
  display: flex;
}

.header nav .main-menu li {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  text-align: center;
}

.header nav .main-menu li a {
  border-radius: 50rem;
  display: flex;
  max-width: 32px;
  min-height: 32px;
  margin: 0 auto;
  align-content: center;
  justify-content: center;
}

.header nav .main-menu li a.active img,
.header nav .main-menu li a:hover img {
  filter: inherit;
  background-color: white !important;
  border-radius: 5px;
  padding: 5px 5px;
  max-width: 32px;
  box-shadow: 1px 2px 5px 1px rgba(116, 111, 111, 0.30);
}

.header nav .main-menu li a img {
  max-width: 24px;
  /* filter: invert(100%) sepia(1%) brightness(10%); */
}

.topbar {
  position: fixed;
  width: 100%;
  top: 10px;
  z-index: 9;
}

.topbar .topbar-back {
  margin-top: 10px;
}

.topbar .topbar-back a {
  width: 35px;
  display: block;
  background-color: #fff;
  border-radius: 50px;
  height: 35px;
  box-shadow: 0 0 10px #aeaeae;
}

:root {
  --star-size: 16px;
  --star-color: rgb(187, 187, 187);
  --star-background: #fc0;
}

.wrapper {
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow: hidden;
  background: #ecf2fe;
  max-width: 424px;
}

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

.content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  box-shadow: -3px 0 5px rgba(0, 0, 0, 0.1);
  background: #ecf2fe;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}

.title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  letter-spacing: 0.01em;
  background: #03a9f4;
  color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.section-title {
  margin-bottom: 5px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: bold;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}

.Stars::before {
  content: "★★★★★";
  letter-spacing: -1px;
  background: linear-gradient(
    90deg,
    var(--star-background) var(--percent),
    var(--star-color) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-app-view {
  text-align: center;
}

.featured-app-view .col {
  flex: 0 1 0%;
  margin: 12px 0;
}

.featured-app-view .card {
  padding: 0px 0px;
}

.featured-app-view .app-icon {
  margin-bottom: -3px;
}

.featured-app-view .app-icon a {
  display: block;
}

.featured-app-view img {
  max-width: 48px;
  border-radius: 10px;
}

.google-search-with-icon {
  position: relative;
}

.google-search-with-icon .card {
  border-radius: 30px;
}

.google-search-with-icon .f-group {
  display: flex;
  align-items: center;
}

.google-search-with-icon .f-group input {
  border: none;
  padding: 5px 15px;
  outline: none;
  font-size: 16px;
  width: 100%;
}

.google-search-with-icon .f-group .f-input {
  flex: 1;
}

.google-search-with-icon .f-group .fl-icon,
.google-search-with-icon .f-group .f-s-area {
  flex: 0 0 auto;
}

.google-search-with-icon .f-group .fl-icon button,
.google-search-with-icon .f-group .f-s-area button {
  border: none;
  background: transparent;
  padding: none;
  cursor: pointer;
}

.google-search-with-icon .f-group .f-s-area {
  display: flex;
}

.expend-news {
  text-align: center;
}

.expend-news button {
  background: none;
  border: none;
  cursor: pointer;
}

.expend-news .en-icon img {
  transform: rotate(180deg);
}

.top-news {
  /* background: rgba(0, 0, 0, 0.12); */
}

.top-news .news-wrap {
  margin-left: -5px;
  margin-right: -5px;
}

.two-items-row {
  display: flex;
  flex-wrap: wrap;
}

.two-items-row .single-news {
  width: 50%; /* Each item takes 50% of the container width */
  box-sizing: border-box; /* Include padding and border in the width calculation */
}

.top-news .single-news {
  overflow: hidden;
  /* border-radius: 10px; */
 /* margin-top: 2px; */
}

.top-news .single-news .news-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  
}

.top-news .single-news .news-body .news-img {
  min-width: 100% !important;
}

.top-news .single-news .news-body .news-img img {
  border-radius: 5px;
  width: 100% !important;
  overflow: hidden;
  max-height: 160px !important;
}

.product-body .product-img img {
  border-radius: 5px;
  width: 100% !important;
  overflow: hidden;
  /* max-height: 160px !important; */
}

.tbl-feed-header{
  /* display: none !important; */
}

.top-deals .deals-wrap {
  margin-left: -5px;
  margin-right: -5px;
}

.top-deals .single-deal {
  overflow: hidden;
  /* border-radius: 10px; */
 margin-top: 2px;
}

.top-deals .single-deal .deal-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  
}

.top-deals .single-deal .deal-body .deal-img {
  min-width: 100% !important;
}

.top-deals .deal-news .deal-body .deal-img img {
  /* border-radius: 10px; */
  width: 100% !important;
  overflow: hidden;
  max-height: 160px !important;
}


.no-shadow {
  box-shadow: none !important;
}

.no-pt{
  padding-top: 0 !important;
}

.no-pb{
  padding-bottom: 0 !important;
}

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

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


.top-news .single-news .news-contents {
  padding-left: 6px;
}

.top-news .single-news .news-contents .meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-news .single-news .news-contents .meta p {
  color: #4e4e4e;
  font-size: 9px;
  margin: 0;
  line-height: 1;
  font-family: "Roboto";
}

.top-news .single-news .news-contents .meta p:last-child {
  margin-top: 10px;
}

.top-news .single-news .news-contents > a {
  text-decoration: none;
}

.top-news .single-news .news-contents h4 {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  color: #464646;
  font-family: "Li Shamim";
}

.top-news .single-news .news-contents-small h4 {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  color: #464646;
  font-family: "Li Shamim";
}

.top-news .slick-dots li {
  margin: 0;
  padding: 0;
}

.top-news .slick-dots li button:before {
  font-size: 10px;
}

.flex-row{
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.max-w-100{
  max-width: 80px !important;
}

.max-w-150{
  max-width: 150px !important;
}

.max-w-170{
  max-width: 170px !important;
}

.player {
  width: 100%;
}

.job .job-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job .single-job {
  padding-left: 5px;
  padding-right: 5px;
}

.job .single-job .news-body .news-img a {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 5px 6px 2px #ccc;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 15px;
}

.job .single-job .news-body .news-contents {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 -5px;
}

.job .single-job .news-body .news-contents > a {
  display: block;
  margin: 0 auto;
}

.job .single-job .news-body .news-contents h4 {
  font-size: 14px;
  font-weight: bold;
  font-family: "Li Shamim";
}

.job .single-job .news-body .news-contents .location {
  display: flex;
  margin-top: 10px;
  margin-bottom: 5px;
  align-items: center;
}

.job .single-job .news-body .news-contents .location p {
  font-family: "Li Shamim";
  font-size: 10px;
  margin: 0;
  line-height: 1;
}

.job .single-job .news-body .news-contents .location .licon {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

.job .single-job .news-body .news-contents .location .licon:after {
  content: "";
  background: green;
  width: 9px;
  height: 9px;
  position: absolute;
  border-radius: 50% 50% 50% 0%;
  transform: rotate(-50deg);
}

.job .single-job .news-body .news-contents .location .licon:before {
  content: "";
  background: white;
  width: 4px;
  position: absolute;
  height: 4px;
  left: 3px;
  border-radius: 50%;
  top: 2.5px;
  z-index: 1;
}

.job .single-job .news-body .news-contents .price {
  display: flex;
}

.job .single-job .news-body .news-contents .price p {
  font-size: 10px;
  font-family: "Li Shohid Shafiur";
  margin: 0;
  line-height: 1;
}

.job .single-job .news-body .news-contents .price .tk {
  color: green;
  padding-right: 5px;
  font-weight: bold;
  font-size: 8px;
}

.media {
  padding-left: 20px;
  padding-right: 20px;
  min-height: 60px;
  margin-bottom: -1px;
}

.media:last-child {
  margin-bottom: 0;
}

.media h4 {
  font-size: 12px;
  line-height: 1.2;
  font-weight: normal;
}

.media .right-content {
  position: relative;
}

.media .left-img a {
  margin-bottom: -3px;
  display: block;
}

.media .left-img img {
  border-radius: 10px;
  width: 85px;
  max-height: 50px;
}

.media .meta {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.media .meta p {
  color: #a6a6a6;
}

.media .meta p.category {
  float: left;
}

.media .meta p.category img {
  width: 24px;
  float: left;
}

.media .meta p.time {
  float: right;
}

.media .meta p.time img {
  width: 20px;
  float: left;
}

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

@media only screen and (min-width: 768px) {
  .rec-reel-2n5-b {
      padding: 0 !important;
  }
}

.rec-reel-2n5-b .trc_rbox_outer {
  padding-bottom: 5px !important;
}

.tbl-reco-reel.tbl-reco-reel-text-under-slide-in.tbl-story-touch-device .trc_rbox_outer .item-label-href .video-label-box, .tbl-reco-reel.tbl-reco-reel-text-under-slide-in.tbl-story-touch-device .trc_rbox_outer .item-label-href .tbl-ui-line-wrapper, .tbl-reco-reel.tbl-reco-reel-text-under-slide-in.tbl-story-touch-device .trc_rbox_outer .item-label-href .tbl-text-under-title-background-wrapper, .tbl-reco-reel.tbl-reco-reel-text-under-slide-in.tbl-reco-reel-touch-device .trc_rbox_outer .item-label-href .video-label-box, .tbl-reco-reel.tbl-reco-reel-text-under-slide-in.tbl-reco-reel-touch-device .trc_rbox_outer .item-label-href .tbl-ui-line-wrapper, .tbl-reco-reel.tbl-reco-reel-text-under-slide-in.tbl-reco-reel-touch-device .trc_rbox_outer .item-label-href .tbl-text-under-title-background-wrapper, .story-widget.story-widget-text-under-slide-in.tbl-story-touch-device .trc_rbox_outer .item-label-href .video-label-box, .story-widget.story-widget-text-under-slide-in.tbl-story-touch-device .trc_rbox_outer .item-label-href .tbl-ui-line-wrapper, .story-widget.story-widget-text-under-slide-in.tbl-story-touch-device .trc_rbox_outer .item-label-href .tbl-text-under-title-background-wrapper, .story-widget.story-widget-text-under-slide-in.tbl-reco-reel-touch-device .trc_rbox_outer .item-label-href .video-label-box, .story-widget.story-widget-text-under-slide-in.tbl-reco-reel-touch-device .trc_rbox_outer .item-label-href .tbl-ui-line-wrapper, .story-widget.story-widget-text-under-slide-in.tbl-reco-reel-touch-device .trc_rbox_outer .item-label-href .tbl-text-under-title-background-wrapper{
	top: -45px !important;
}

.neg-mt-5{
  margin-top: -5rem;
}

.neg-mt-2{
  margin-top: -2rem;
}

.vpns .media h4 {
  font-size: 10px;
}

.vpns .media p {
  font-size: 9px;
}

.vpns .media .left-img img {
  border-radius: 12px;
}

.vpns .meta {
  position: static;
}

.ads .card {
  border-radius: 10px;
  overflow: hidden;
}

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

.product-carousel .product-item {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.product-carousel .product-item h3 {
  font-size: 10px;
  font-weight: normal;
}

.product-carousel .product-item h5 {
  font-weight: normal;
  font-size: 9px;
  color: #a6a6a6;
  margin-top: 2px;
}

.product-carousel .product-item a {
  background-color: #0b7d5f;
  color: white;
  font-size: 11px;
  padding: 5px;
  display: block;
  border-radius: 6px;
  max-width: 90%;
  margin: 15px auto 0;
}

.product-carousel .slick-dots li {
  width: 10px;
  height: 10px;
}

.product-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}

.product-carousel .slick-dots li button::before {
  font-size: 15px;
}

.featured-image {
  min-height: 350px;
  background-position: center;
  background-size: cover;
  margin-top: -10px;
  position: relative;
}

.featured-image::before {
  content: "";
  background: #020024;
  background: -moz-linear-gradient(
    0deg,
    rgba(2, 0, 36, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(2, 0, 36, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024", endColorstr="#000000", GradientType=1);
  width: 100%;
  position: absolute;
  display: block;
  height: 100%;
  left: 0;
}

.featured-image .post-title {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 70px;
  z-index: 2;
  padding-left: 20px;
  padding-right: 20px;
}

.featured-image .post-title::before,
.featured-image .post-title::after {
  content: "";
  clear: both;
}

.featured-image .post-title h2 {
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.featured-image .post-title .post-meta .align-center {
  display: flex;
  align-items: center;
}

.featured-image .post-title .post-meta .meta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-image .post-title .post-meta .meta span {
  color: #fff;
  padding-left: 10px;
  font-size: 12px;
}

.featured-image .post-title .post-meta .meta.brnad {
  position: relative;
}

.featured-image .post-title .post-meta .meta.brnad img {
  width: 30px;
  background: #fff;
  padding: 3px;
  border-radius: 40px;
}

.featured-image .post-title .post-meta .meta.time img {
  width: 20px;
  filter: invert(1);
}

.post-contents {
  background-color: #fff;
}

.post-contents .post-card {
  margin-top: -50px;
  padding: 30px 20px;
  border-radius: 60px 60px 0 0;
  box-shadow: none;
}

.post-contents .post-card p {
  font-size: 12px;
  color: #595959;
  margin-bottom: 10px;
}

.post-contents .app-downloader {
  margin-bottom: 20px;
  margin-top: 5px;
}

.post-contents .app-downloader h3 {
  font-size: 15px;
  text-align: left;
  font-weight: normal;
  margin-bottom: 10px;
}

.post-contents .app-downloader .card {
  background-color: #f8f9fd;
  padding-top: 12px;
  padding-bottom: 14px;
}

.post-contents .app-downloader .row {
  margin: 0;
}

.post-contents .app-downloader .col {
  padding: 0 3px;
}

.post-contents .app-downloader .app-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 5px #e1e1e1;
}

.post-contents .app-downloader .app-icon img {
  max-width: 100%;
}

.post-contents .inside-ad {
  text-align: center;
}

.post-contents .inside-ad .insider {
  margin-bottom: 15px;
}

.post-contents .inside-ad .insider .card {
  display: inline-block;
  margin: 0 auto;
  min-width: 170px;
}

.post-contents .inside-ad .insider h5 {
  font-weight: normal;
  font-size: 10px;
  margin: 0;
}

.post-contents .similar-posts {
  padding: 0px 20px;
}

.post-contents .similar-posts h3 {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 10px;
}

.post-contents .similar-posts .card {
  padding-bottom: 2px;
  margin-bottom: 10px;
  padding-left: 7px;
}

.post-contents .similar-posts .media .meta {
  position: static;
  padding-top: 3px;
}

.model-main {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.model-main.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}

.model-main.model-open .model-inner {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  position: relative;
  z-index: 999;
}

.model-main.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.model-main .model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  position: fixed;
  top: -100%;
  left: 50%;
  margin-top: -40px;
  width: 100%;
  max-width: 381px;
}

.model-main .model-inner .close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}

.model-main .model-inner .model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px 31px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.model-main .model-inner .model-wrap .order-form {
  margin-top: -15px;
}

.model-main .bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}

.model-main .pop-up-head {
  background: #0b7d5f;
  padding: 10px 30px;
  position: relative;
  top: -40px;
  margin: 0 auto;
  color: #fff;
  border-radius: 13px;
  max-width: 160px;
  text-align: center;
  width: 100%;
  box-shadow: 0 0 5px #0c5542;
}

.ad-wrapper .ads-body {
  padding: 5px;
}

.ad-wrapper img {
  width: 100%;
  /* max-height: 180px !important; */
}

.ad-wrapper .ads-body .app-logo {
  width: 35px;
  float: left;
  margin-right: 10px;
}

.ad-wrapper .ads-body .app-title h4 {
  font-weight: normal;
  font-size: 13px;
}

.ad-wrapper .ads-body .app-title p {
  font-size: 10px;
  color: #9b9b9b;
  line-height: 1;
}

.ad-wrapper .ads-body .app-btn a {
  width: 80px;
  display: block;
  color: #fff;
  font-size: 11px;
  background: #0b7d5f;
  padding: 9px;
  text-align: center;
  border-radius: 5px;
}

.payment-mathod ul {
  display: flex;
}

.payment-mathod ul li {
  margin-bottom: 22px;
}

.payment-mathod .image {
  opacity: 0.8;
  width: 50px;
  height: 50px;
  background-position: center center;
  display: inline-block;
  background-repeat: no-repeat;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.payment-mathod .image:hover {
  opacity: 1;
}

.payment-mathod .radio-img > input {
  display: none;
}

.payment-mathod .radio-img > input:checked + .image {
  border: 2px solid orange;
}

.payment-mathod .payment-title {
  text-align: center;
  padding-bottom: 19px;
}

.payment-mathod .payment-title h3 {
  font-size: 13px;
  color: #0b7d5f;
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: normal;
}

.input-group label span {
  color: #0b7d5f;
}

.input-group .input-control {
  border: none;
  font-size: 14px;
  padding: 2px 5px;
  border-bottom: 2px solid #0b7d5f;
  width: 100%;
  outline: none;
}

@keyframes button-anim {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.form-submit {
  text-align: center;
}

.form-submit .btn-submit {
  border: none;
  background-color: #0b7d5f;
  max-width: 125px;
  display: inline-block;
  color: #fff;
  width: 100%;
  border-radius: 5px;
  padding: 5px;
  margin: 2px 0 8px;
  font-size: 12px;
  position: relative;
  cursor: pointer;
}

.form-submit .btn-submit:after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  left: calc(50% - 0.75em);
  top: calc(50% - 0.75em);
  border: 0.15em solid transparent;
  border-right-color: white;
  border-radius: 50%;
  animation: button-anim 0.7s linear infinite;
  opacity: 0;
}

.form-submit .btn-submit.loading {
  color: transparent;
  pointer-events: none;
  cursor: default;
}

.form-submit .btn-submit.loading::after {
  opacity: 1;
}

.search-result {
  margin-top: 30px;
}

.search-result .vpns .card {
  padding-bottom: 9px;
  padding-top: 25px;
  border-radius: 10px;
}

.search-result .vpns .card .media {
  margin-bottom: 10px;
}

.search-result .vpns .card .media .left-img img {
  max-height: 61px;
}

.search-result .google-search-with-icon .card {
  border-radius: 30px;
}

.section-title {
  display: flex;
  align-items: center;
}

.section-title h3 {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 12px;
  color: #555;
}

.video-widget {
  border-radius: 0;
}

.video-widget .section-title {
  padding-left: 15px;
  margin-bottom: 10px;
}

.video-widget .section-title h2 {
  font-size: 14px;
  font-weight: bold;
}

.video-widget .movie-poster-item {
  padding: 0 4px;
}

.video-widget .movie-poster-item .poster-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.video-widget .movie-poster-item .poster-img .badge {
  position: absolute;
  z-index: 1;
  background: #bc0000;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px 0;
  text-transform: uppercase;
  top: 0;
}

.video-widget .movie-poster-item .poster-img .badge.top-movie {
  right: 0;
  border-radius: 0px 6px;
  padding: 5px 7px;
  font-size: 32px;
  line-height: 1;
}

.video-widget .movie-poster-item .movie-details {
  margin-top: 12px;
}

.video-widget .movie-poster-item .movie-details h3 {
  font-size: 12px;
}

.video-widget .movie-poster-item .movie-details .mtitle {
  display: flex;
  justify-content: space-between;
}

.video-widget .movie-poster-item .movie-details .mtitle .heart {
  width: 16px;
  background-image: url(../images/like.png);
  background-size: cover;
  height: 16px;
  cursor: pointer;
  flex: 0 0 auto;
}

.video-widget .movie-poster-item .movie-details .mtitle .heart.active,
.video-widget .movie-poster-item .movie-details .mtitle .heart:hover {
  background-image: url(../images/liked.png);
}

.video-widget .movie-poster-item .movie-details .movie-year {
  font-size: 12px;
  color: #858585;
}

.game-widget {
  background: #fff;
  padding-top: 15px;
  padding-bottom: 10px;
  border-radius: 0;
}

.game-widget .game-carousel {
  margin-left: -8px;
  margin-right: -8px;
}

.game-widget #showAll {
  transition: all ease-in-out 0.3s;
}

.game-widget #showAll img {
  transform: rotate(180deg);
}

.game-widget #showAll.active img {
  transform: rotate(0deg);
}

.game-widget .game-carousel-filterable {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  overflow: hidden;
}

.game-widget .game-carousel-filterable.show-all {
  max-height: none;
}

.game-widget .game-carousel-filterable > div {
  flex-grow: 1;
  max-width: 25%;
}

.game-widget .game-item {
  margin: 8px;
}

.game-widget .game-item .img img {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 0 5px #c4c4c4;
}

.game-widget .game-item .details {
  padding-top: 10px;
}

.game-widget .game-item .details h3 {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: normal;
  font-family: "Roboto";
}

.game-widget .filter-nav {
  margin-bottom: 2px;
}

.game-widget .filter-nav ul {
  overflow: auto;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.game-widget .filter-nav ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 0;
}

.game-widget .filter-nav ul li span {
  cursor: pointer;
  padding: 2px 1px;
  margin: 0 5px;
  font-size: 14px;
  color: #7b7b7b;
  font-weight: normal;
  border-bottom: 2px solid transparent;
}

.game-widget .filter-nav ul li span.active {
  color: #138164;
  border-color: #138164;
}

.game-list-widget {
  background: #fff;
}

.game-list-widget .section-title h2 {
  display: inline-block;
  color: #006441;
  border-bottom: 3px solid #006441;
  padding-bottom: 2px;
  margin-bottom: 8px;
}

.game-list-widget .game-lists .game-list {
  margin-bottom: 6px;
}

.game-list-widget .game-lists .game-list .row {
  align-items: center;
}

.game-list-widget .game-lists .game-list .logo {
  max-width: 85px;
  overflow: hidden;
  border-radius: 20px;
}

.game-list-widget .game-lists .game-list .details h4 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: normal;
  font-family: "Roboto";
}

.game-list-widget .game-lists .game-list .details p {
  color: #777;
  margin-top: 6px;
}

.game-list-widget .game-lists .game-list .action a {
  background: #0b7d5f;
  font-size: 12px;
  color: #fff;
  padding: 9px 11px;
  border-radius: 4px;
}

.order-now-btn a{
  background: #0b7d5f;
  font-size: 12px;
  color: #fff;
  padding: 9px 10px;
  margin-right: 10px;
  border-radius: 4px;
  font-weight: 500;
}

.order-now-btn-small a{
  background: #0b7d5f;
  font-size: 10px;
  color: #fff;
  padding: 5px 5px;
  margin-right: 5px;
  border-radius: 4px;
  font-weight: 500;
}

.flex-row-auto {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.ml-auto{
  margin-left: auto !important;
}

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

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

.w-100{
  min-width: 100%;
}

.preloader {
  display: flex;
  align-items: center;
  height: 70vh;
}

.preloader p {
  display: block;
  margin: 15px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  text-align: center;
}

.preloader .lds-spinner {
  background: none;
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  text-align: center;
  margin: 0 auto;
}

.preloader .lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.preloader .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 12px;
  left: 37px;
  width: 5px;
  height: 15px;
  border-radius: 22%;
  background-image: -webkit-linear-gradient(-55deg, #377dff 30%, #a859b1 100%);
}

.preloader .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.preloader .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.preloader .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.preloader .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.preloader .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.preloader .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.preloader .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.preloader .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.preloader .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.preloader .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.preloader .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.preloader .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.job-details {
  padding-top: 0;
}

.job-details .job-contents .job-head {
  display: flex;
  padding-top: 70px;
  padding-bottom: 20px;
}

.job-details .job-contents .job-head .company-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-details .job-contents .job-head .company-logo .img {
  max-width: 92px;
  min-height: 90px;
  box-shadow: 0 10px 10px 3px #ccc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px;
}

.job-details .job-contents .job-head .company-logo h1 {
  font-family: "Li Shamim";
  font-size: 30px;
  line-height: 32px;
  align-items: center;
  letter-spacing: -0.01em;
  color: #3e3e3e;
  margin-top: 30px;
}

.job-details .job-contents .job-head .salary-details {
  text-align: right;
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.job-details .job-contents .job-head .salary-details h4 {
  font-size: 20px;
  line-height: 1;
  line-height: 12px;
  color: #2ca436;
  font-weight: 600;
  font-family: "Li Shamim";
  margin-bottom: 10px;
}

.job-details .job-contents .job-head .salary-details p {
  font-size: 11px;
  line-height: 12px;
  align-items: center;
  text-align: right;
  letter-spacing: -0.01em;
  font-family: "Li Shamim";
  color: #3e3e3e;
  opacity: 0.7;
}

.job-details .job-contents .job-head .salary-details img {
  margin-top: 15px;
}

.job-details .job-contents .green {
  color: #048c10 !important;
}

.job-details .job-contents .job-box {
  border-bottom: 2px solid #ddd;
  border-top: 2px solid #ddd;
}

.job-details .job-contents .job-box p {
  font-size: 11px;
  color: #3e3e3e;
  font-family: "Li Shamim";
  display: flex;
  align-items: center;
}

.job-details .job-contents .job-box p:first-child {
  margin-bottom: 10px;
}

.job-details .job-contents .job-box p img {
  margin-right: 10px;
}

.job-details .job-contents .subtitle {
  font-size: 14px;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #048c10;
  font-family: "Li Shamim";
  margin-bottom: 10px;
}

.job-details .job-contents .maintitle {
  font-weight: bold;
  font-size: 20px;
  line-height: 12px;
  letter-spacing: -0.01em;
  font-family: "Li Shamim";
  color: #3e3e3e;
}

.job-details .job-contents .job-dist .maintitle {
  margin-bottom: 20px;
}

.job-details .job-contents .job-dist p {
  font-weight: normal;
  font-size: 11px;
  line-height: 12px;
  color: #9b9c9d;
  font-family: "Li Shamim";
  margin-top: 10px;
}

.job-details .job-contents .job-dateline {
  display: flex;
  align-self: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.job-details .job-contents .job-dateline .dt-box {
  padding: 15px 0;
}

.job-details .job-contents .job-dateline .dt-box i {
  font-size: 26px;
  margin-bottom: 10px;
}

.job-details .job-contents .job-dateline .dt-box .subtitle {
  margin-bottom: 0;
  font-weight: bold;
}

.job-details .job-contents .job-dateline .dt-box p {
  font-size: 11px;
  line-height: 12px;
  font-family: "Li Shamim";
  color: #3e3e3e;
}

.job-details .job-contents .job-dateline .dt-box .action {
  display: inline-block;
  text-align: center;
}

.job-details .job-contents .job-dateline .dt-box .action button {
  border: none;
  background-color: transparent;
}

.job-details .job-contents .job-dateline .dt-box .action button.apply {
  background-color: #0b7d5f;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
}
.top-news .single-news .news-contents .meta .time {
  display: flex;
  align-items: center;
}
.top-news .single-news .news-contents .meta .time span {
  margin-left: 6px;
}
.top-news .single-news .news-contents .meta .time img {
  width: 18px;
}
.top-news .single-news .news-body .news-img a {
  display: block;
  width: 52px;
  height: 65px;
}

.top-deals .single-deal .deal-contents h4 {
  max-width: 280px;
  padding-top: 2px;
  padding-bottom: 10px;
  padding-left: 8px;
}

.top-deals .single-deal .deal-contents .meta .time {
  display: flex;
  align-items: center;
}
.top-deals .single-deal .deal-contents .meta .time span {
  margin-left: 6px;
}
.top-deals .single-deal .deal-contents .meta .time img {
  width: 18px;
}
.top-deals .single-deal .deal-body .deal-img a {
  display: block;
  width: 52px;
  height: 65px;
}
/*.topnews {*/
/*    position: relative;*/
/*}*/
/*.topnews .section-title {*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    left: 20px;*/
/*    top: 10px;*/
/*}*/
/*.topnews .section-title h2 {*/
/*    color: #fff;*/
/*    font-size: 18px;*/
/*}*/
/*.topnews .news-img a {*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    display: block;*/
/*}*/
/*.topnews .news-img a::after {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    background-color: rgba(0, 0, 0, 0.4);*/
/*    border-radius: 20px;*/
/*}*/
/*.topnews .news-img img {*/
/*    border-radius: 20px;*/
/*    min-height: 194px;*/
/*}*/
/*.topnews .news-contents {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    padding: 10px 0 10px 20px;*/
/*    width: 100%;*/
/*}*/
/*.topnews .news-contents h4 {*/
/*    color: #fff;*/
/*    font-family: "Li Shamim";*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    font-size: 20px;*/
/*    line-height: 24px;*/
/*}*/
/*.topnews .meta {*/
/*    display: flex;*/
/*    padding-bottom: 25px;*/
/*}*/
/*.topnews .meta p {*/
/*    color: #fff;*/
/*}*/
/*.topnews .meta .category {*/
/*    padding-right: 10px;*/
/*}*/
/*.topnews .meta .time img {*/
/*    width: 12px;*/
/*    filter: brightness(1100%);*/
/*    height: 12px;*/
/*    margin-right: 7px;*/
/*}*/
/*.topnews .meta .time {*/
/*    display: flex;*/
/*    align-items: center;*/

/*}*/
section.ads .slick-dots {
  position: static;
}
section.ads .slick-dots li button:before {
  font-size: 15px;
}
