/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# variables
# Utility
# Common
# Hero Section
# Feature Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
@-webkit-keyframes shineFullHover {
  100% {
    height: 100%;
    width: 100%;
    opacity: 0;
  }
}
@keyframes shineFullHover {
  100% {
    height: 100%;
    width: 100%;
    opacity: 0;
  }
}
:root {
  --visanet-font: "Red Hat Text", sans-serif;
  --visanet-heading-font: "Roboto", sans-serif;
  --visanet-text: #636363;
  --visanet-text-rgb: 99, 99, 99;
  --visanet-text-gray: #444444;
  --visanet-text-gray-rgb: 68, 68, 68;
  --visanet-base: #e50c37;
  --visanet-base-rgb: 229, 12, 55;
  --visanet-gray: #92918F;
  --visanet-gray-rgb: 146, 145, 143;
  --visanet-white: #ffffff;
  --visanet-white-rgb: 255, 255, 255;
  --visanet-white2: #eef2f5;
  --visanet-white2-rgb: 238, 242, 245;
  --visanet-black: #222222;
  --visanet-black-rgb: 34, 34, 34;
  --visanet-black2: #333333;
  --visanet-black2-rgb: 51, 51, 51;
  --visanet-black3: #1d253a;
  --visanet-black3-rgb: 29, 37, 58;
  --visanet-black4: #000000;
  --visanet-black4-rgb: 0, 0, 0;
  --visanet-black5: #0E0E0E;
  --visanet-black5-rgb: 14, 14, 14;
  --visanet-black6: #26304A;
  --visanet-black6-rgb: 38, 48, 74;
  --visanet-border-color: #dddddd;
  --visanet-border-color-rgb: 221, 221, 221;
  --section-space: 120px;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

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

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

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

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

.pr-5 {
  padding-right: 5px;
}

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

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

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

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

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-weight: 400;
  color: var(--visanet-text, #636363);
  font-size: 16px;
  line-height: 1.625;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--visanet-base, #e50c37);
  transition: all 400ms ease;
}

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

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--visanet-heading-font, "Roboto", sans-serif);
  color: var(--visanet-black, #222222);
}
@media (max-width: 767px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 767px) {
  p br {
    display: none;
  }
}

.visanet-text {
  color: var(--visanet-text, #636363);
}

.background-base {
  background-color: var(--visanet-base, #e50c37);
}

.background-white {
  background-color: var(--visanet-white, #ffffff);
}

.background-white2 {
  background-color: var(--visanet-white2, #eef2f5);
}

.background-white2 {
  background-color: var(--visanet-white2, #eef2f5);
}

.background-black {
  background-color: var(--visanet-black, #222222);
}

.background-black-2 {
  background-color: var(--visanet-black2, #333333);
}

.background-black-3 {
  background-color: var(--visanet-black3, #1d253a);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.section-space {
  padding-top: var(--section-space, 120px);
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-t {
  padding-top: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-t {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-t {
    padding-top: 80px;
  }
}

.section-space-b {
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-b {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-b {
    padding-bottom: 80px;
  }
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-25 {
  --bs-gutter-y: 25px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.gutter-y-75 {
  --bs-gutter-y: 75px;
}

.gutter-y-80 {
  --bs-gutter-y: 80px;
}

label.error {
  margin-top: 8px;
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* section title */
.sec-title {
  margin-bottom: 24px;
}
.sec-title--dark .sec-title__icon--left::before,
.sec-title--dark .sec-title__icon--right::after {
  background-color: var(--visanet-white, #ffffff);
}
.sec-title--dark .sec-title__title {
  color: var(--visanet-white, #ffffff);
}
.sec-title--center {
  margin-bottom: 41px;
  text-align: center;
}
.sec-title--center .sec-title__top {
  align-items: center;
  justify-content: center;
}
.sec-title--center .sec-title__icon {
  top: 0px;
}
.sec-title__top {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 11px;
}
.sec-title__icon {
  display: inline-flex;
  flex-shrink: 0;
  position: relative;
  top: 4px;
  font-size: 19px;
  color: var(--visanet-base, #e50c37);
}
@media (max-width: 575px) {
  .sec-title__icon {
    font-size: 17px;
  }
}
.sec-title__icon--left {
  padding-left: 15px;
}
.sec-title__icon--right {
  padding-right: 15px;
}
.sec-title__icon--left::before, .sec-title__icon--right::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--visanet-black3, #1d253a);
}
.sec-title__icon--left::before {
  left: 0px;
}
.sec-title__icon--right::after {
  right: 0px;
}
.sec-title__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sec-title__tagline {
  margin: 0px;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-size: 22px;
  color: var(--visanet-base, #e50c37);
  font-weight: 500;
  line-height: 1.318;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .sec-title__tagline {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
.sec-title__title {
  margin: 0px;
  font-family: var(--visanet-heading-font, "Roboto", sans-serif);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.228;
  color: var(--visanet-black, #222222);
}
@media (max-width: 575px) {
  .sec-title__title {
    font-size: 30px;
  }
}

/* button */
.visanet-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--visanet-base, #e50c37);
  padding: 14px 67px 14px 30px;
  transition: 500ms;
  border-radius: 100px;
}
.visanet-btn__icon-box {
  position: relative;
  position: absolute;
  top: 50%;
  right: 6px;
  z-index: 1;
  text-align: left;
  width: 42px;
  height: 42px;
  border-radius: 100px;
  transform: translateY(-50%);
  background-color: var(--visanet-white, #ffffff);
  transition: all 0.5s cubic-bezier(0.65, 0, 0.076, 1);
}
.visanet-btn__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  background-color: transparent;
  transition: all 500ms ease;
}
.visanet-btn__icon span {
  display: inline-flex;
  font-size: 14px;
  color: var(--visanet-base, #e50c37);
  transition: all 500ms ease;
}
.visanet-btn__icon span svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.visanet-btn__text {
  position: relative;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-size: 16px;
  color: var(--visanet-white, #ffffff);
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  z-index: 11;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 412px) {
  .visanet-btn__text {
    font-size: 14px;
  }
}
.visanet-btn:hover .visanet-btn__text {
  color: var(--visanet-base, #e50c37);
}
.visanet-btn:hover .visanet-btn__icon-box {
  width: calc(100% - 12px);
}
.visanet-btn:hover .visanet-btn__icon span {
  color: var(--visanet-base, #e50c37);
}
.visanet-btn--black {
  background-color: var(--visanet-black3, #1d253a);
}
.visanet-btn--black .visanet-btn__icon-box {
  background-color: var(--visanet-white, #ffffff);
}
.visanet-btn--black .visanet-btn__icon span {
  color: var(--visanet-base, #e50c37);
}
.visanet-btn--white {
  background-color: var(--visanet-white, #ffffff);
}
.visanet-btn--white .visanet-btn__text {
  color: var(--visanet-black2, #333333);
}
.visanet-btn--white:hover .visanet-btn__text {
  color: var(--visanet-white, #ffffff);
}
.visanet-btn--white .visanet-btn__icon-box {
  background-color: var(--visanet-base, #e50c37);
}
.visanet-btn--white .visanet-btn__icon span {
  color: var(--visanet-white, #ffffff);
}
.visanet-btn--white:hover .visanet-btn__icon span {
  color: var(--visanet-white, #ffffff);
}

.visanet-btn-two {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 17px 30px;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-size: 16px;
  color: var(--visanet-white, #ffffff);
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--visanet-base, #e50c37);
  transition: all 0.4s ease-in-out;
}
.visanet-btn-two::before, .visanet-btn-two::after {
  content: "";
  height: calc(50% + 1px);
  width: 0%;
  position: absolute;
  z-index: -1;
  background-color: var(--visanet-black3, #1d253a);
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.visanet-btn-two::before {
  top: 0;
  left: 0;
  right: auto;
}
.visanet-btn-two::after {
  bottom: 0;
  right: 0;
  left: auto;
}
.visanet-btn-two:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.visanet-btn-two:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.visanet-btn-two__icon {
  flex-shrink: 0;
  display: inline-flex;
  font-size: 14px;
  transition: all 500ms ease;
}
.visanet-btn-two__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.video-btn {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 25px;
  color: var(--visanet-base, #e50c37);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--visanet-white, #ffffff);
  transition: all 0.5s ease;
}
.video-btn::after {
  content: "";
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: inherit;
  border: 4px solid var(--visanet-white, #ffffff);
  transition: all 0.5s ease;
}
.video-btn:hover {
  color: var(--visanet-white, #ffffff);
  background-color: var(--visanet-base, #e50c37);
}
.video-btn:hover::after {
  border-color: var(--visanet-base, #e50c37);
}
.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* social links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--visanet-white, #ffffff);
  transition: all 500ms ease;
}
.social-links a:hover {
  border-color: var(--visanet-base, #e50c37);
  background-color: var(--visanet-base, #e50c37);
}
.social-links__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--visanet-white, #ffffff);
  transition: all 500ms ease;
}
.social-links__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.social-links a:hover .social-links__icon {
  color: var(--visanet-white, #ffffff);
  animation: slideTop 500ms;
}

/* ratings */
.visanet-ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}
.visanet-ratings__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--visanet-base, #e50c37);
  transition: all 500ms ease;
}
.visanet-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* post pagination */
.post-pagination {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .post-pagination {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .post-pagination {
    gap: 15px;
  }
}
.post-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: var(--visanet-base, #e50c37);
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  background-color: var(--visanet-white2, #eef2f5);
  border-radius: 5px;
  overflow: hidden;
  transition: all 400ms ease;
}
@media (max-width: 575px) {
  .post-pagination__btn {
    width: 45px;
    height: 45px;
  }
}
.post-pagination__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.post-pagination__btn:hover {
  color: var(--visanet-white, #ffffff);
  background-color: var(--visanet-base, #e50c37);
}
.post-pagination__btn.active {
  color: var(--visanet-white, #ffffff);
  background-color: var(--visanet-base, #e50c37);
}
.post-pagination__icon {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: var(--visanet-base, #e50c37);
  transition: all 400ms ease;
}
@media (max-width: 575px) {
  .post-pagination__icon {
    font-size: 22px;
  }
}
.post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* skill box */
.skill-box {
  position: relative;
  padding: 30px 20px 23px;
  text-align: center;
  background-color: var(--visanet-white, #ffffff);
}
@media (max-width: 575px) {
  .skill-box {
    border-radius: 10px;
    border: 1px solid var(--visanet-border-color, #dddddd);
  }
}
@media (min-width: 576px) {
  .skill-box:not(:last-child) {
    border-right: 1px solid var(--visanet-border-color, #dddddd);
  }
}
.skill-box__count {
  width: 108px;
  height: 108px;
  margin: 0px auto 18px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.skill-box__count .circle-progress {
  position: absolute;
  top: 0px;
  left: 0px;
}
.skill-box__funfact {
  margin: 0px;
  display: inline-flex;
  font-family: var(--visanet-heading-font, "Roboto", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--visanet-black2, #333333);
  transition: all 500ms ease;
}
.skill-box__title {
  margin: 0px;
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--visanet-black2, #333333);
  text-transform: capitalize;
  transition: all 500ms ease;
}
@media (min-width: 576px) and (max-width: 767px) {
  .skill-box__title {
    font-size: 18px;
  }
}

/* progress bar */
.progress-box + .progress-box {
  margin-top: 29px;
}
.progress-box__title {
  margin-bottom: 6px;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--visanet-white, #ffffff);
  line-height: 1.625;
}
@media (max-width: 430px) {
  .progress-box__title {
    font-size: 16px;
  }
}
.progress-box__bar {
  width: 100%;
  position: relative;
  height: 14px;
  border: 1px solid RGBA(var(--visanet-white-rgb, 255, 255, 255), 0.26);
  border-radius: 20px;
}
.progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: calc(100% - 4px);
  width: 0%;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background-color: var(--visanet-base, #e50c37);
  border-radius: inherit;
  transition: all 1000ms linear;
}
.progress-box__number {
  position: relative;
  position: absolute;
  bottom: calc(100% + 17px);
  right: 0px;
  padding: 2px 6px;
  font-family: var(--visanet-heading-font, "Roboto", sans-serif);
  font-size: 16px;
  color: var(--visanet-white, #ffffff);
  font-weight: 600;
  line-height: 1.625;
  border-radius: 5px;
  background-color: var(--visanet-base, #e50c37);
}
@media (max-width: 430px) {
  .progress-box__number {
    font-size: 14px;
  }
}
.progress-box__number::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  right: 3px;
  bottom: -10px;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: var(--visanet-white, #ffffff) transparent transparent transparent;
}

/* active user */
.active-user {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  padding: 11px 20px 11px 11px;
  border-radius: 100px;
  background-color: var(--visanet-white, #ffffff);
  border: 1px solid var(--visanet-border-color, #dddddd);
}
.active-user__image {
  display: inline-flex;
  align-items: center;
}
.active-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--visanet-white, #ffffff);
}
.active-user img:not(:first-child) {
  margin-left: -12px;
}
.active-user__info {
  position: relative;
}
.active-user__info::before, .active-user__info::after {
  content: "";
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0px;
  left: -12px;
  border-radius: 50px;
  background-color: var(--visanet-base, #e50c37);
}
.active-user__info::after {
  top: auto;
  bottom: 0px;
  background-color: var(--visanet-base, #e50c37);
}
.active-user__count {
  margin: 0px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.active-user__text {
  margin-bottom: -5px;
  color: var(--visanet-black, #222222);
}

/* owl slider buton, dots customize */
.visanet-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.visanet-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.visanet-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.visanet-owl__carousel--basic-nav.owl-carousel .owl-nav {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--visanet-text, #636363);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--visanet-text, #636363);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .visanet-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
  }
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--visanet-white, #ffffff);
  border-color: var(--visanet-base, #e50c37);
  background-color: var(--visanet-base, #e50c37);
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  outline: 0;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--visanet-base, #e50c37);
  transition: all 500ms ease;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  background-color: var(--visanet-base, #e50c37);
  transition: all 500ms ease;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  border-color: var(--visanet-base, #e50c37);
  background-color: var(--visanet-base, #e50c37);
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.visanet-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.visanet-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.visanet-owl__carousel--counter.owl-carousel .owl-nav {
  margin: 0px;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 1;
  transform: translateX(-50%);
}
.visanet-owl__carousel--counter.owl-carousel .owl-nav button {
  width: 38px;
  height: 6px;
  display: inline-flex;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  background-color: var(--visanet-black3, #1d253a);
  transition: all 500ms ease;
}
.visanet-owl__carousel--counter.owl-carousel .owl-nav button:hover {
  background-color: var(--visanet-base, #e50c37);
}
.visanet-owl__carousel--counter.owl-carousel .owl-nav button span,
.visanet-owl__carousel--counter.owl-carousel .owl-nav button i {
  display: none;
}
.visanet-owl__carousel--counter.owl-carousel .counter {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0px;
  font-family: var(--visanet-heading-font, "Roboto", sans-serif);
  font-size: 14px;
  color: var(--visanet-white, #ffffff);
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  background-color: var(--visanet-base, #e50c37);
}

.custom-nav {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}
.custom-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--visanet-text, #636363);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--visanet-text, #636363);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .custom-nav button {
    width: 50px;
    height: 50px;
  }
}
.custom-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.custom-nav button:hover {
  color: var(--visanet-white, #ffffff);
  border-color: var(--visanet-base, #e50c37);
  background-color: var(--visanet-base, #e50c37);
}
.custom-nav button span {
  border: none;
  outline: none;
  color: inherit;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--visanet-base, #e50c37);
}

.hammer {
  width: 22px;
  height: 22px;
  fill: var(--visanet-base, #e50c37);
}

.hammer path:nth-child(1),
.hammer path:nth-child(2) {
  animation: hammerBounce 3s ease-in-out infinite;
}

.hammer path:nth-child(3),
.hammer path:nth-child(4),
.hammer path:nth-child(5),
.hammer path:nth-child(6) {
  transform-origin: center;
  animation: hammerStrike 3s ease-in-out infinite;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--visanet-black, #222222);
  color: var(--visanet-white, #ffffff);
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--visanet-text, #636363);
  background-image: none;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  color: var(--visanet-text, #636363);
}
.ui-datepicker-calendar td a {
  border-color: var(--visanet-border-color, #dddddd);
  background-color: var(--visanet-text, #636363);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--visanet-border-color, #dddddd);
  background-color: var(--visanet-text, #636363);
  background-image: none;
  color: var(--visanet-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--visanet-white, #ffffff);
  background-color: var(--visanet-base, #e50c37);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--visanet-white, #ffffff);
  background-color: var(--visanet-base, #e50c37);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--visanet-white, #ffffff);
  color: var(--visanet-black, #222222);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--visanet-base, #e50c37);
  color: var(--visanet-white, #ffffff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/*-- daterangepicker --*/
.daterangepicker {
  border: 1px solid var(--visanet-white2, #eef2f5);
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  color: var(--visanet-black3, #1d253a);
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  padding: 5px 8px 3px;
  margin: 19px 0 0;
}

.daterangepicker::after,
.daterangepicker::before {
  display: none;
}

.daterangepicker .calendar-table thead th.month {
  color: var(--visanet-black3, #1d253a);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
}

.daterangepicker .calendar-table th.available {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: none;
  text-align: center;
  transition: all 500ms ease;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border-color: var(--visanet-black3, #1d253a);
  transition: all 500ms ease;
}

.daterangepicker .calendar-table .next:hover,
.daterangepicker .calendar-table .prev:hover {
  background-color: var(--visanet-base, #e50c37);
}

.daterangepicker .calendar-table .next:hover span,
.daterangepicker .calendar-table .prev:hover span {
  border-color: var(--visanet-white, #ffffff);
}

.daterangepicker .calendar-table thead th {
  color: var(--visanet-black3, #1d253a);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
}

.daterangepicker .calendar-table td {
  transition: all 500ms ease;
  border-color: transparent;
  background-color: var(--visanet-white2, #eef2f5);
  background-image: none;
  color: var(--visanet-black3, #1d253a);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
  border-radius: 0;
  border: 1px solid var(--visanet-white, #ffffff);
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  color: var(--visanet-black3, #1d253a);
  background-color: var(--visanet-white2, #eef2f5);
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover,
.daterangepicker td.in-range,
.daterangepicker td.active,
.daterangepicker td:hover,
.daterangepicker td.active:hover {
  background-color: var(--visanet-base, #e50c37);
  border-color: transparent;
  color: var(--visanet-white, #ffffff);
  border-radius: 0px !important;
}

.daterangepicker .drp-buttons {
  border-top: 1px solid var(--visanet-white2, #eef2f5);
  padding: 10px 0 6px;
  margin: 0 11px;
}

.daterangepicker .drp-selected {
  font-size: 13px;
  color: var(--visanet-black3, #1d253a);
  font-weight: 500;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
}

.daterangepicker .drp-buttons .btn {
  height: 30px;
  background-color: var(--visanet-base, #e50c37);
  border-radius: 5px;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-weight: 700;
  font-size: 12px;
  color: var(--visanet-white, #ffffff);
  transition: all 500ms ease;
  border: none;
  padding: 0 13px;
}

.daterangepicker .drp-buttons .btn.cancelBtn {
  background-color: var(--visanet-black3, #1d253a);
}

.daterangepicker .drp-buttons .btn.cancelBtn:hover {
  background-color: var(--visanet-base, #e50c37);
}

.daterangepicker .drp-buttons .btn:hover {
  background-color: var(--visanet-black3, #1d253a);
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--visanet-base, #e50c37);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--visanet-black, #222222);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* preloader */
.preloader {
  position: fixed;
  background-color: var(--visanet-black3, #1d253a);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--visanet-black3, #1d253a);
}
@media (min-width: 1200px) {
  .hero-section {
    padding-top: 94px;
    padding-bottom: 166px;
  }
}
.hero-section__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}
.hero-section .container {
  position: relative;
}
.hero-section__logo {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-section__content {
  text-align: center;
}
@media (min-width: 992px) {
  .hero-section__content {
    text-align: left;
  }
}
.hero-section__title {
  margin: 0;
  font-size: 38px;
  line-height: 1.23;
  color: var(--visanet-white, #ffffff);
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 80px;
  margin-bottom: 20px;
}
@media (min-width: 375px) {
  .hero-section__title {
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .hero-section__title {
    margin-top: 186px;
    font-size: 60px;
  }
}
.hero-section__text {
  margin: 0 0 30px;
  color: var(--visanet-white, #ffffff);
  font-weight: 500;
}
@media (min-width: 1200px) {
  .hero-section__text {
    margin-bottom: 52px;
    font-size: 20px;
    line-height: 36px;
  }
}
.hero-section__text br {
  display: none;
}
@media (min-width: 768px) {
  .hero-section__text br {
    display: inherit;
  }
}
.hero-section__images {
  display: none;
}
.hero-section__images img {
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 0px 4.10679px 41.0679px 5.13348px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  .hero-section__images {
    display: block;
  }
}
.hero-section__arrow {
  width: 158px;
  height: 90px;
  background-image: url(../images/visanet-landing/hero-arrow-1.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 177px;
  left: 28%;
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__arrow {
    display: block;
    bottom: 190px;
  }
}
@media (min-width: 1400px) {
  .hero-section__arrow {
    left: 29.5%;
    bottom: 190px;
  }
}
@media (min-width: 1500px) {
  .hero-section__arrow {
    left: 31.5%;
    bottom: 185px;
  }
}
@media (min-width: 1600px) {
  .hero-section__arrow {
    left: 32%;
  }
}
@media (min-width: 1700px) {
  .hero-section__arrow {
    left: 35%;
    bottom: 177px;
  }
}
.hero-section__badge {
  width: 133px;
  height: 133px;
  background-image: url(../images/visanet-landing/hero-badge-1.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 70px;
  left: 49.5%;
  -webkit-animation: sunMove 10s linear infinite;
  animation: sunMove 10s linear infinite;
  display: none;
}
@media (min-width: 1200px) {
  .hero-section__badge {
    display: block;
  }
}

@-webkit-keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.features-two {
  padding-top: 80px;
  padding-bottom: 70px;
  background-color: var(--visanet-white2, #eef2f5);
}
@media (max-width: 991px) {
  .features-two {
    padding-bottom: 40px;
  }
}
.features-two__box {
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .features-two__box {
    margin-bottom: 30px;
  }
}
.features-two__box img {
  max-height: 52px;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transform: scale(1);
}
.features-two__box:hover img {
  transform: scale(0.9);
}
.features-two__title {
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-size: 20px;
  line-height: 36px;
  color: var(--visanet-black, #222222);
  margin: 22px 0 0;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Demo Section
--------------------------------------------------------------*/
.demos-one {
  position: relative;
  padding: 120px 0 90px;
}
@media (max-width: 767px) {
  .demos-one {
    padding: 80px 0 50px;
  }
}
.demos-one__single {
  margin: 0 0 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  text-align: center;
  background-color: var(--visanet-white, #ffffff);
  box-shadow: 0px 0px 60px 10px rgba(0, 0, 0, 0.1);
}
.demos-one__single:hover {
  transform: translateY(-10px);
}
.demos-one__single:hover .demos-one__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demos-one__single:hover .demos-one__image img {
  filter: blur(2px);
}
.demos-one__image {
  position: relative;
}
.demos-one__image img {
  max-width: 100%;
  height: auto;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demos-one__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(var(--visanet-black3-rgb, 29, 37, 58), 0.8);
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demos-one__buttons .visanet-btn {
  min-width: 190.94px;
}
.demos-one__text {
  text-align: center;
  padding-top: 29px;
  padding-bottom: 32px;
}
.demos-one__text__title {
  margin: 0;
  font-family: var(--visanet-heading-font, "Roboto", sans-serif);
  font-size: 20px;
  line-height: 30px;
  color: var(--visanet-black, #222222);
  font-weight: 700;
}

/*--------------------------------------------------------------
#  Feature Section 02
--------------------------------------------------------------*/
.features-one {
  background-color: var(--visanet-white2, #eef2f5);
  padding: 107px 0 70px;
}
@media (max-width: 767px) {
  .features-one {
    padding: 70px 0 30px;
  }
}
.features-one__title {
  font-size: 50px;
  color: var(--visanet-black, #222222);
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 63px;
}
@media (max-width: 767px) {
  .features-one__title {
    font-size: 35px;
    margin-bottom: 50px;
  }
}
.features-one__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1199px) {
  .features-one__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 991px) {
  .features-one__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .features-one__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.features-one__box {
  text-align: center;
  position: relative;
  margin: 0 0 46px;
}
@media (max-width: 767px) {
  .features-one__box {
    margin-left: auto;
    margin-right: auto;
  }
}
.features-one__box__image {
  width: 131px;
  height: 135px;
  background-color: var(--visanet-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-one__box__image img {
  max-height: 121px;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transform: scale(1);
}
.features-one__box__title {
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  max-width: 131px;
  font-size: 15px;
  color: var(--visanet-black4, #000000);
  font-weight: 600;
  margin: 22px 0 0;
}
.features-one__box:hover .features-one__box__image img {
  transform: scale(0.9);
}

/*--------------------------------------------------------------
#  Footer Section
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding-top: 108px;
  background-color: var(--visanet-black4, #000000);
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 70px;
  }
}
.main-footer__bg {
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.main-footer__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: RGBA(var(--visanet-black3-rgb, 29, 37, 58), 0.95);
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer__title {
  margin: 0 0 20px;
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--visanet-white, #ffffff);
}
@media (min-width: 1200px) {
  .main-footer__title {
    font-size: 50px;
  }
}
.main-footer__text {
  margin: 0 0 27px;
  font-weight: 500;
  color: var(--visanet-white, #ffffff);
}
@media (min-width: 1200px) {
  .main-footer__text {
    font-size: 26px;
  }
}
.main-footer__copyright {
  position: relative;
  margin: 109px 0 0;
  padding: 33px 0 33px;
  border-top: 1px solid RGBA(var(--visanet-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 767px) {
  .main-footer__copyright {
    margin-top: 50px;
    padding: 23px 0 22px;
  }
}
.main-footer__copyright p {
  margin: 0;
  font-family: var(--visanet-font, "Red Hat Text", sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: RGBA(var(--visanet-white-rgb, 255, 255, 255), 0.7);
}
/*# sourceMappingURL=visanet-landing.css.map */
