/* Default Css */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: #99CBDA;
}

body {
  color: #8F9094;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #1B1C25;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

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

.form-control:focus {
  color: #FFFFFF;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #99CBDA;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #99CBDA;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #99CBDA;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #8F9094;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #8F9094;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #99CBDA;
  background: #99CBDA;
}
.btn-theme:hover {
  background: #99CBDA;
  color: #fff;
  border-color: #99CBDA;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #99CBDA;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #99CBDA;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

[data-overlay] {
  position: relative;
  z-index: 1;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
}

[data-overlay=light]::before {
  background-color: #fff;
}

[data-overlay=dark]::before {
  background-color: #000a2d;
}

[data-overlay=theme]::before {
  background-color: #99CBDA;
}

[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

@media (min-width: 1400px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1326px;
  }
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.mobile-menu-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9999;
}
.mobile-menu-wrapper .menu-close {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  background: #dc3545;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}
.mobile-menu-wrapper .menu-overlay {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  cursor: url(../img/icon/close.png), auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mobile-menu-wrapper .agenia-mobile-menu {
  background: #fff;
  width: 375px;
  height: 100%;
  top: 0;
  z-index: 99;
  position: fixed;
  left: -100%;
  opacity: 0;
  visibility: hidden;
  padding: 30px 15px;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow-y: auto;
}
.mobile-menu-wrapper.active .menu-overlay {
  visibility: visible;
  left: 0;
  opacity: 1;
}
.mobile-menu-wrapper.active .agenia-mobile-menu {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.agenia-mobile-menu .mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}
.agenia-mobile-menu .mean-container .mean-bar a.meanmenu-reveal {
  display: none !important;
}
.agenia-mobile-menu .mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.agenia-mobile-menu .mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.agenia-mobile-menu .mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0 !important;
}
.agenia-mobile-menu .mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #000;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: 500;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand {
  margin-top: 0;
  padding: 0 !important;
  display: inline-block;
  width: 40px !important;
  height: 45px;
  line-height: 50px;
  font-weight: 400;
  border-left: 2px solid rgba(0, 0, 0, 0.2) !important;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand:hover {
  background: transparent;
  color: #99CBDA;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand:before {
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand.mean-clicked {
  color: #99CBDA;
}
.agenia-mobile-menu .mean-container .mean-nav ul li .mean-expand.mean-clicked:before {
  content: "\f068";
}
.agenia-mobile-menu .mean-container .mean-nav ul li .sub-menu li a {
  width: 80%;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #222;
  padding: 10px 10%;
  opacity: 1;
}

.dropdown-toggle::after {
  border: 0;
  vertical-align: middle;
}

.mean-expand:after {
  display: none;
}

.header-area {
  padding: 24px 0;
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
}

.logo {
  display: inline-block;
}
.logo a {
  display: inline-block;
}
.logo img {
  max-width: 86px;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  display: inline-block;
  margin-right: 40px;
}
.main-menu ul li:hover > a {
  color: #99CBDA;
}
.main-menu ul li a {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: #fff;
  padding: 14px 0;
}
.main-menu ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu ul .has-dropdown > a:after {
  border: 0;
  vertical-align: middle;
}
.main-menu ul .has-dropdown:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #2A2C33;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown .sub-menu li {
  display: block;
  margin-right: 0;
}
.main-menu ul .has-dropdown .sub-menu li:hover > a {
  background: #99CBDA;
  color: #fff;
}
.main-menu ul .has-dropdown .sub-menu li a {
  display: block;
  padding: 10px 15px;
}

.menu-lock > a:after {
  content: "\f023";
  font-family: "Font Awesome 6 Pro";
  margin-left: 10px;
}

.menu-bar {
  margin-left: 30px;
}
.menu-bar a {
  color: #fff;
  font-size: 30px;
  transform: translateY(2px);
  display: inline-block;
}

.header-btn a {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1B1C25;
  padding: 14px 36px;
  background: #99CBDA;
  border-radius: 50px;
}
.header-btn a:hover {
  background: #fff;
  color: #000;
}

.welcome-area {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -999;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.welcome-area.active {
  z-index: 999;
  opacity: 1;
}
.welcome-area .welcome-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.welcome-area .welcome-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 856px;
  margin: 0 auto;
  background: #2A2C33;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 32px;
  z-index: 9;
  padding: 20px 86px 60px;
  text-align: center;
}
.welcome-area .welcome-wrap .text p {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #fff;
}
.welcome-area .welcome-wrap .text .welcome-close {
  display: inline-block;
  padding: 16px 70px;
  background: #99CBDA;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1B1C25;
  margin-top: 20px;
}

.header-right-menu {
  margin-left: 20px;
}
.header-right-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-right-menu ul li {
  display: inline-block;
  margin-right: 40px;
}
.header-right-menu ul li:last-child {
  margin-right: 0;
}
.header-right-menu ul li:hover > a {
  color: #fff;
  background: #8B43FE;
}
.header-right-menu ul li a {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: #0E0E0E;
  padding: 14px 36px;
  background: #fff;
  border-radius: 100px;
}
.header-right-menu ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.header-right-menu ul .has-dropdown > a:after {
  border: 0;
  vertical-align: middle;
}
.header-right-menu ul .has-dropdown:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.header-right-menu ul .has-dropdown .sub-menu {
  position: absolute;
  right: 0;
  top: 120%;
  width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.header-right-menu ul .has-dropdown .sub-menu li {
  display: block;
  margin-right: 0;
  overflow: hidden;
}
.header-right-menu ul .has-dropdown .sub-menu li:first-child {
  border-radius: 5px 5px 0 0;
}
.header-right-menu ul .has-dropdown .sub-menu li:last-child {
  border-radius: 0 0 5px 5px;
}
.header-right-menu ul .has-dropdown .sub-menu li:hover > a {
  background: #99CBDA;
  color: #fff;
}
.header-right-menu ul .has-dropdown .sub-menu li a {
  display: block;
  padding: 10px 15px;
  border-radius: 0;
}

.hero-area {
  position: relative;
  z-index: 1;
  padding-top: 240px;
  padding-bottom: 352px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-area {
    padding-top: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 150px;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-area {
    padding-top: 150px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .hero-area {
    padding-top: 100px;
    padding-bottom: 0;
  }
}
.hero-area .hero-thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .hero-thumb {
    width: 50%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-area .hero-thumb {
    position: relative;
    text-align: right;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-thumb {
    position: relative;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .hero-area .hero-thumb {
    position: relative;
    text-align: right;
  }
}
.hero-area .hero-thumb .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-area .hero-thumb .play-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 172px;
  height: 172px;
  background: rgba(0, 0, 0, 0.31);
  backdrop-filter: blur(13.76px);
  border-radius: 100%;
  color: #fff;
  font-size: 50px;
}
@media (max-width: 767px) {
  .hero-area .hero-thumb .play-btn a {
    width: 100px;
    height: 100px;
    font-size: 25px;
  }
}
.hero-area .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.hero-area .shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}
.hero-area .shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -2px;
  color: #fff;
  max-width: 696px;
  margin-bottom: 32px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content h1 {
    font-size: 58px;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 34px;
    line-height: 60px;
  }
}
.hero-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: #8F9094;
  opacity: 0.8;
  max-width: 660px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero-content p {
    font-size: 14px;
  }
}
.hero-content .hero-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 30px;
  margin-top: 40px;
}
.hero-content .hero-btn-wrap .hero-btn {
  padding: 18px 20px;
  background: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1B1C25;
}
.hero-content .hero-btn-wrap .hero-btn i {
  margin-right: 8px;
}
.hero-content .hero-btn-wrap .hero-btn .fa-apple {
  font-size: 20px;
}

.schedule-area {
  background: #1B1C25;
}

.schedule-wrap {
  padding: 30px 154px;
  background: #2A2C33;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 24px;
  margin-top: -120px;
  position: relative;
  z-index: 5;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .schedule-wrap {
    padding: 30px 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .schedule-wrap {
    padding: 30px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .schedule-wrap {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .schedule-wrap {
    padding: 30px 30px;
  }
}
.schedule-wrap .schedule-content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -1.25px;
  color: #fff;
  max-width: 552px;
}
@media (max-width: 767px) {
  .schedule-wrap .schedule-content h2 {
    font-size: 32px;
    line-height: 48px;
  }
}
.schedule-wrap .schedule-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #8F9094;
  max-width: 446px;
}
.schedule-wrap .schedule-btn {
  text-align: center;
}
.schedule-wrap .schedule-btn a {
  display: inline-block;
  padding: 12px 56px;
  background: #99CBDA;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1B1C25;
  border-radius: 100px;
}

.faq-area {
  position: relative;
  z-index: 2;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faq-wrapper {
  padding: 60px 24px;
  background: #2A2C33;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 32px;
}
.faq-wrapper .accordion .accordion-item {
  margin-bottom: 17px;
  background: #2A2C33;
  border: 1px solid #414248;
  border-radius: 12px;
  overflow: hidden;
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button {
  background: #2A2C33;
  padding: 16px 24px;
  box-shadow: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .faq-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    padding-right: 80px;
    font-size: 18px;
  }
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button:before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 30px;
  z-index: 2;
  width: 48px;
  height: 32px;
  background: #99CBDA;
  border-radius: 12px;
  text-align: center;
  color: #1F2128;
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button.collapsed:before {
  content: "+";
}
.faq-wrapper .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 24px 16px;
  color: #8F9094;
}
.faq-wrapper .accordion .accordion-item .accordion-collapse .accordion-body:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #414248;
  margin-bottom: 16px;
}

.team-modal .btn-close {
  background: none;
  color: #fff;
  font-size: 16px;
  opacity: 1;
  margin-right: 5px;
}
.team-modal.modal {
  --bs-modal-bg: #2A2C33 !important;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
}
.team-modal .modal-content {
  border-radius: 32px;
}
.team-modal .modal-header {
  border: 0;
}
.team-modal .team-modal-wrapper {
  padding: 30px 110px 90px;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-modal .team-modal-wrapper {
    padding: 40px 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team-modal .team-modal-wrapper {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .team-modal .team-modal-wrapper {
    padding: 30px 15px;
  }
}
.team-modal .team-modal-wrapper .thumb {
  text-align: center;
  margin-bottom: 20px;
}
.team-modal .team-modal-wrapper .thumb img {
  width: 260px;
  border-radius: 44px;
}
.team-modal .team-modal-wrapper .content h5 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 0;
}
.team-modal .team-modal-wrapper .content .subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: #868686;
}
.team-modal .team-modal-wrapper .content .text {
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #868686;
  margin-top: 20px;
}

.latest-news {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .latest-news {
    background-position: center left;
  }
}

.latest-news-content {
  max-width: 578px;
  margin: 0 auto;
  text-align: center;
}
.latest-news-content h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #1B1C25;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .latest-news-content h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
.latest-news-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.25px;
  color: #4C4D53;
  margin: 0 auto;
  max-width: 450px;
}
@media (max-width: 767px) {
  .latest-news-content p {
    font-size: 16px;
  }
}
.latest-news-content .subscribe-wrap {
  margin-top: 48px;
}
.latest-news-content .subscribe-wrap .input-wrap {
  position: relative;
  z-index: 1;
}
.latest-news-content .subscribe-wrap .input-wrap input {
  width: 100%;
  background: #FFFFFF;
  border-radius: 100px;
  height: 70px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #0E0E0E;
  border: 0;
  padding: 5px 22px;
}
.latest-news-content .subscribe-wrap .input-wrap input::-webkit-input-placeholder {
  color: #565656;
}
.latest-news-content .subscribe-wrap .input-wrap input:-moz-placeholder {
  color: #565656;
}
.latest-news-content .subscribe-wrap .input-wrap input::-moz-placeholder {
  color: #565656;
}
.latest-news-content .subscribe-wrap .input-wrap input:-ms-input-placeholder {
  color: #565656;
}
.latest-news-content .subscribe-wrap .input-wrap button {
  height: 52px;
  background: #99CBDA;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1B1C25;
  border: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 20px;
}

.pricing-title h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #fff;
}
@media (max-width: 767px) {
  .pricing-title h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
.pricing-title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: #8F9094;
  max-width: 562px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .pricing-title p {
    font-size: 16px;
  }
}

.pricing-wrap {
  background: #2A2C33;
  border: 1px solid #4C4D53;
  border-radius: 20px;
  padding: 24px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-wrap .title {
  color: #99CBDA;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}
.pricing-wrap .price {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 24px;
}
.pricing-wrap .price span {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #8F9094;
  width: 120px;
  padding-left: 5px;
}
.pricing-wrap .list {
  padding-top: 24px;
  border-top: 1px solid #E7EBFB;
}
.pricing-wrap .list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-wrap .list ul li {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #8F9094;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.pricing-wrap .list ul li i {
  background: #37D5D6;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 10px;
}
.pricing-wrap .info {
  margin-top: 24px;
}
.pricing-wrap .info p {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #fff;
}
.pricing-wrap .price-btn {
  margin-top: 24px;
  text-align: center;
}
.pricing-wrap .price-btn a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #99CBDA;
  display: inline-block;
  padding: 12px 43px;
  border: 1.5px solid #99CBDA;
  border-radius: 100px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .pricing-wrap .price-btn a {
    padding: 12px 23px;
  }
}

.pricing-wrap-2 {
  background: #2A2C33;
  border: 1px solid #4C4D53;
  border-radius: 20px;
  padding: 24px 28px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pricing-wrap-2 .content {
  max-width: 350px;
}
.pricing-wrap-2 .title {
  color: #99CBDA;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}
.pricing-wrap-2 .price {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.pricing-wrap-2 .price span {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #868686;
  width: 120px;
  padding-left: 5px;
}
.pricing-wrap-2 .list {
  margin-bottom: 8px;
}
.pricing-wrap-2 .list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-wrap-2 .list ul li {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #8F9094;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.pricing-wrap-2 .list ul li i {
  background: #37D5D6;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 10px;
}
.pricing-wrap-2 .info {
  margin-top: 24px;
}
.pricing-wrap-2 .info p {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #fff;
}
.pricing-wrap-2 .price-btn {
  margin-top: 24px;
  text-align: center;
}
.pricing-wrap-2 .price-btn a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #99CBDA;
  display: inline-block;
  padding: 12px 43px;
  border: 1.5px solid #99CBDA;
  border-radius: 100px;
}

.info-title h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #8F9094;
}

.wpcf7-spinner {
  display: none;
}

.pricing-area {
  position: relative;
  z-index: 1;
}
.pricing-area .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.pricing-area .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.mission-wrapper {
  padding: 60px 36px;
  background: #2A2C33;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 32px;
  margin-bottom: 30px;
}
.mission-wrapper h4 {
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 28px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mission-wrapper h4 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .mission-wrapper h4 {
    font-size: 30px;
    line-height: 45px;
  }
}
.mission-wrapper p {
  max-width: 1224px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #8F9094;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mission-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .mission-wrapper p {
    font-size: 16px;
  }
}

.policy-wrapper {
  padding: 60px 36px;
  background: #FFFFFF;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 32px;
  margin-bottom: 30px;
}
.policy-wrapper h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #0E0E0E;
  margin-bottom: 28px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .policy-wrapper h3 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .policy-wrapper h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
.policy-wrapper .text {
  max-width: 1224px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #868686;
}
@media (min-width: 768px) and (max-width: 991px) {
  .policy-wrapper .text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .policy-wrapper .text {
    font-size: 16px;
  }
}
.policy-wrapper .text ul li {
  color: #0E0E0E;
}
.policy-wrapper .text h2, .policy-wrapper .text h3, .policy-wrapper .text h4, .policy-wrapper .text h5, .policy-wrapper .text h6 {
  font-weight: 700;
  color: #0E0E0E;
}
.policy-wrapper .text h3, .policy-wrapper .text h4 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.75px;
}

.about-wrapper {
  padding: 60px 36px;
  background: #2A2C33;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 32px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-wrapper {
    padding: 30px 15px;
  }
}
@media (max-width: 767px) {
  .about-wrapper {
    padding: 30px 15px;
  }
}
.about-wrapper h4 {
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 28px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-wrapper h4 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .about-wrapper h4 {
    font-size: 30px;
    line-height: 45px;
  }
}
.about-wrapper p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #8F9094;
  margin-bottom: 62px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-wrapper p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .about-wrapper p {
    font-size: 16px;
  }
}

.about-img-wrapper {
  padding: 0px 26px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .about-img-wrapper {
    padding: 0;
  }
}
.about-img-wrapper img {
  border-radius: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-img-wrapper img {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .about-img-wrapper img {
    border-radius: 10px;
  }
}
.about-img-wrapper .about-shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.about-img-wrapper .about-shape a {
  display: inline-block;
}
@media (max-width: 767px) {
  .about-img-wrapper .about-shape a img {
    width: 50px;
  }
}

.info-wrapper {
  padding: 60px 36px;
  background: #2A2C33;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-wrapper {
    padding: 30px 15px;
  }
}
@media (max-width: 767px) {
  .info-wrapper {
    padding: 30px 15px;
  }
}
.info-wrapper h4 {
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 28px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-wrapper h4 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  .info-wrapper h4 {
    font-size: 30px;
    line-height: 45px;
  }
}

.info-p-wrap {
  text-align: center;
}
.info-p-wrap p {
  display: inline-block;
  max-width: 996px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  letter-spacing: -0.75px;
  color: #FFFFFF;
  background: #35373D;
  border-radius: 16px;
  padding: 20px;
  margin: 0 auto 28px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .info-p-wrap p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .info-p-wrap p {
    font-size: 16px;
  }
}

.cta-area {
  background: #0E0E0E;
  position: relative;
  z-index: 1;
}
.cta-area .shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.cta-area .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-wrap {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta-wrap {
    text-align: center;
  }
}
.cta-wrap h4 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -1.25px;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .cta-wrap h4 {
    font-size: 30px;
    line-height: 45px;
  }
}
.cta-wrap p {
  max-width: 442px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #868686;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-wrap p {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cta-wrap p {
    margin: 0 auto;
  }
}

.cta-btn a {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0E0E0E;
  padding: 12px 56px;
  background: #FFFFFF;
  border-radius: 100px;
}

.cta-btns {
  margin-top: 20px;
}
.cta-btns a {
  display: inline-block;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .cta-btns a {
    margin: 10px;
  }
}

.mission-area {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.t-top-wrap h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .t-top-wrap h2 {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-top-wrap h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .t-top-wrap h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
.t-top-wrap p {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.75px;
  color: #8F9094;
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-top-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .t-top-wrap p {
    font-size: 16px;
  }
}
.t-top-wrap p a {
  display: inline;
  text-decoration-line: underline;
  color: #99CBDA;
}

.team-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 52px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-title {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team-title {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .team-title {
    font-size: 30px;
    line-height: 45px;
  }
}

.team-wrapper {
  border: 1px solid #626469;
  border-radius: 28px;
  margin-bottom: 40px;
  overflow: hidden;
}
.team-wrapper .team-img img {
  width: 100%;
}
.team-wrapper .team-content {
  background: #2A2C33;
  padding: 28px 20px;
}
.team-wrapper .team-content h5 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .team-wrapper .team-content h5 {
    font-size: 22px;
    line-height: 30px;
  }
}
.team-wrapper .team-content .subtitle {
  min-height: 48px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: -0.25px;
  color: #8F9094;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .team-wrapper .team-content .subtitle {
    font-size: 16px;
  }
}
.team-wrapper .team-content .content {
  position: relative;
  z-index: 1;
}
.team-wrapper .team-content .content .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #626469;
}
.team-wrapper .team-content .content .read-more {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #2A2C33;
  padding: 0 5px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration-line: underline;
  color: #99CBDA;
}

.therapists-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 80px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .therapists-title {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .therapists-title {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .therapists-title {
    font-size: 30px;
    line-height: 45px;
  }
}

.team-area {
  position: relative;
  z-index: 1;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

.team-shape {
  position: absolute;
  z-index: -1;
  top: -130px;
  right: 0;
}

.contact-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 65px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-title {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-title {
    font-size: 30px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 30px;
  }
}

.contact-form {
  padding: 60px 138px 40px;
  background: #2A2C33;
  box-shadow: 0px 16px 80px rgba(79, 86, 111, 0.11);
  border-radius: 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-form {
    padding: 60px 80px 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form {
    padding: 50px 60px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding: 30px 30px;
  }
}
.contact-form .input-wrap {
  margin-bottom: 16px;
}
.contact-form .input-wrap label {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 4px;
}
.contact-form .input-wrap input {
  padding: 16px;
  height: 56px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: #2A2C33;
  border: 1px solid #CFCFCF;
  border-radius: 100px;
}
.contact-form .input-wrap input::-webkit-input-placeholder {
  color: #8F9094;
}
.contact-form .input-wrap input:-moz-placeholder {
  color: #8F9094;
}
.contact-form .input-wrap input::-moz-placeholder {
  color: #8F9094;
}
.contact-form .input-wrap input:-ms-input-placeholder {
  color: #8F9094;
}
.contact-form .input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form .input-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.contact-form .input-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.contact-form .input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form .input-wrap textarea {
  padding: 16px;
  height: 120px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: #2A2C33;
  border: 1px solid #CFCFCF;
  border-radius: 12px;
}
.contact-form .input-wrap textarea::-webkit-input-placeholder {
  color: #868686;
}
.contact-form .input-wrap textarea:-moz-placeholder {
  color: #868686;
}
.contact-form .input-wrap textarea::-moz-placeholder {
  color: #868686;
}
.contact-form .input-wrap textarea:-ms-input-placeholder {
  color: #868686;
}
.contact-form .input-wrap textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form .input-wrap textarea:focus:-moz-placeholder {
  color: transparent;
}
.contact-form .input-wrap textarea:focus::-moz-placeholder {
  color: transparent;
}
.contact-form .input-wrap textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form .input-wrap select {
  padding: 0 16px;
  height: 56px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: #2A2C33;
  border: 1px solid #CFCFCF;
  border-radius: 100px;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.contact-form .input-wrap .select-wrap {
  position: relative;
  z-index: 1;
}
.contact-form .input-wrap .select-wrap:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.contact-form .input-submit input {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1B1C25;
  padding: 16px 74px;
  background: #99CBDA;
  border-radius: 100px;
  border: none;
  height: 60px;
}

.contact-popover .popover-arrow {
  transform: translate3d(20px, 0px, 0px) !important;
}

.contact-area {
  position: relative;
  z-index: 1;
  padding-top: 240px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-area {
    padding-top: 130px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-area {
    padding-top: 130px;
  }
}
@media (max-width: 767px) {
  .contact-area {
    padding-top: 130px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .approach-thumb {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .approach-thumb {
    text-align: center;
  }
}
.approach-thumb > img {
  max-width: 289px !important;
}
.approach-thumb .shape {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .approach-thumb .shape {
    left: -80px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .approach-thumb .shape {
    left: -140px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .approach-thumb .shape {
    left: -120px;
  }
}

.approach-content .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -1.25px;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .approach-content .title {
    font-size: 30px;
    line-height: 45px;
  }
}
.approach-content .content-wrapper {
  position: relative;
  z-index: 1;
}
.approach-content .content-wrapper .box-1 {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.approach-content .content-wrapper p {
  max-width: 558px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: rgba(143, 144, 148, 0.8);
  margin-left: 50px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .approach-content .content-wrapper p {
    font-size: 16px;
  }
}

.approach-area {
  background: #1B1C25;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.approach-area .approach-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.virtual-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.virtual-area .approach-thumb {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .virtual-area .approach-thumb {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .virtual-area .approach-thumb {
    text-align: center;
  }
}
.virtual-area .approach-thumb .shape-1 {
  position: absolute;
  z-index: -1;
  top: 35px;
  right: 0;
  width: 600px;
}
@media (max-width: 767px) {
  .virtual-area .approach-thumb .shape-1 {
    top: 0;
    right: -100px;
  }
}
.virtual-area .shape-2 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}

.support-area {
  background: #1B1C25;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.support-area .shape-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.about-work-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-work-title h4 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .about-work-title h4 {
    font-size: 30px;
    line-height: 45px;
  }
}

.about-content {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-content {
    border-radius: 10px;
  }
}
.about-content > img {
  width: 100%;
}
.about-content .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.about-content .play-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 100%;
  font-size: 30px;
  color: #0E0E0E;
}
@media (max-width: 767px) {
  .about-content .play-btn a {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}

.login-content h5 {
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .login-content h5 {
    font-size: 30px;
    line-height: 45px;
  }
}
.login-content p {
  max-width: 441px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: rgba(143, 144, 148, 0.7);
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .login-content p {
    font-size: 16px;
  }
}
.login-content .login-btn a {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1B1C25;
  background: #99CBDA;
  border-radius: 100px;
  padding: 12px 55px;
  margin-bottom: 10px;
}

.login-area {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login-area {
    padding-top: 100px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .login-area {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.login-area .thumb {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  text-align: right;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .login-area .thumb {
    width: 56%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .login-area .thumb {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .login-area .thumb {
    position: static;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .login-area .thumb {
    position: static;
    margin-top: 30px;
  }
}
.login-area .thumb img {
  max-width: 100%;
}
.login-area .shape-1 {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.login-area .shape-2 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 205px;
}

.footer-area {
  position: relative;
  z-index: 1;
}
.footer-area .footer-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-shape-1 {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-area .footer-shape-1 {
    display: none;
  }
}
.footer-area .footer-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-shape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-area .footer-shape-2 {
    display: none;
  }
}
.footer-area .footer-shape-3 {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  transform: translateX(-50%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-shape-3 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-shape-3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-area .footer-shape-3 {
    display: none;
  }
}

.footer-menu {
  margin-left: 100px;
}
@media (max-width: 767px) {
  .footer-menu {
    margin: 20px 0 0;
  }
}
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu ul li {
  display: inline-block;
  margin-right: 34px;
}
.footer-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #8F9094;
}

.footer-social a {
  color: #8F9094;
  margin-right: 26px;
}
.footer-social a:hover {
  color: #99CBDA;
}

.footer-widget {
  margin-bottom: 30px;
}
.footer-widget .widget_title h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 25px;
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
  display: block;
  margin-bottom: 10px;
}
.footer-widget ul li a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #8F9094;
}
.footer-widget ul li a:hover {
  color: #99CBDA;
}

.footer-widget.widget_media_image img {
  max-width: 85px !important;
}

/*------------------------------------------------------------------------------
	Template Name: Starter Project Template.
-------------------------------------------------------------------------------*/

/*# sourceMappingURL=main.css.map */
