@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.button {
  position: relative;
}

.psuedo-text {
  color: #fff;
  position: relative;
  top: 0;
  height: 100%;
  width: 100%;
  display: inline;
  height: auto;
  font-size: 1rem;
  font-size: 600;
  transition: 0.25s ease-in;
  transition-delay: 0.1s;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .psuedo-text {
    font-size: 0.875rem;
  }
}

.button-mat {
  color: #5533ff;
  border: 0px transparent;
  border-radius: 0.3rem;
  transition: 0.3s ease-in-out;
  transition-delay: 0.35s;
  overflow: hidden;
  position: relative;
  padding: 10px 20px;
  background: #26ABE3;
}
@media (max-width: 767px) {
  .button-mat {
    display: none;
  }
}

.button-mat:before {
  content: "";
  display: block;
  background: #0E7CC2;
  position: absolute;
  width: 200%;
  height: 500%;
  border-radius: 100%;
  transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
}

.button-mat:hover .psuedo-text {
  color: white;
}

.button-mat:hover {
  color: transparent;
}

.btn--5:before {
  transform: translate(-120%, -50%) translateZ(0);
}

.btn--5:hover:before {
  transform: translate(-45%, -34%) translateZ(0);
}

.form-group,
.form-floating {
  position: relative;
}
.form-group input,
.form-group .form-select,
.form-floating input,
.form-floating .form-select {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
  font-size: 0.875rem;
  transition: all 0.4s ease;
  color: #101010;
  border: 1px solid #c2c2c2;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus,
.form-group select:focus,
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating .form-select:focus,
.form-floating select:focus {
  color: #5a5a59;
  outline: 0;
  box-shadow: none;
  border: 1px solid #c2c2c2;
  transition: all 0.6s ease-in-out;
}
.form-group textarea,
.form-floating textarea {
  height: 120px;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  resize: none;
  color: #5a5a59;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ced4da;
  transition: all 0.4s ease;
}
.form-group ::-moz-placeholder, .form-floating ::-moz-placeholder {
  color: #101010;
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.form-group ::placeholder,
.form-floating ::placeholder {
  color: #101010;
  font-weight: 400;
  font-size: 0.875rem;
  /* Firefox */
}
.form-group :-ms-input-placeholder,
.form-floating :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #101010;
  font-weight: 400;
}
.form-group ::-ms-input-placeholder,
.form-floating ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #101010;
  font-weight: 400;
}

.form-label {
  margin-bottom: 0.2rem;
  color: #000;
}

a {
  text-decoration: none;
  transition: all 0.5s;
  color: #26ABE3;
}
a:hover {
  text-decoration: none;
}

button {
  outline: 0 !important;
}
button:focus {
  outline: 0 !important;
}

img {
  width: 100%;
}

p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #4d4b4b;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
}

section {
  padding: 80px 0px;
}
@media (max-width: 767px) {
  section {
    padding: 60px 0px;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}
.header .header_box {
  border-radius: 0px 0px 15px 15px;
  -webkit-border-radius: 0px 0px 15px 15px;
  -moz-border-radius: 0px 0px 15px 15px;
  -ms-border-radius: 0px 0px 15px 15px;
  -o-border-radius: 0px 0px 15px 15px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.header .header_box .logo {
  display: inline-block;
  width: 160px;
  height: 70px;
  background: url(../images/logo.svg);
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 9999;
}
@media (max-width: 767px) {
  .header .header_box .logo {
    height: 50px;
  }
}
.header .header_box .right {
  display: flex;
  align-items: center;
}
.header .header_box .right .call {
  padding-right: 0.5rem;
}
@media (max-width: 480px) {
  .header .header_box .right .call svg {
    width: 30px;
  }
}
.header .header_box .right .whtp {
  padding-right: 1rem;
}
.header .header_box .right .text {
  padding-right: 1.5rem;
  color: #101010;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .header .header_box .right .text {
    display: none;
  }
}
.header .header_box .right .text span {
  color: #4d4b4b;
  display: block;
  font-size: 0.813rem;
  font-weight: 400;
}
.header .header_box .right .text a {
  color: #101010;
}
.header .header_box .right .booknew {
  margin-left: 1rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  background: #0E7CC2;
  padding: 1rem;
  color: #fff;
}

.banner {
  position: relative;
  background: url(../images/banner.svg);
  background-size: cover;
  display: flex;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .banner {
    background-position: right;
  }
}
@media (max-width: 767px) {
  .banner {
    padding: 40px;
    height: 80vh;
  }
}
.banner .content h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  text-shadow: -1px 3px 2px rgba(0, 0, 0, 0.16);
  font-family: "Unbounded", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner .content h1 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner .content h1 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .banner .content h1 {
    font-size: 3rem;
    padding: 80px 40px;
  }
}
@media (max-width: 767px) {
  .banner .content h1 {
    font-size: 2.5rem;
  }
}
.banner .btn {
  transition: all 0.4s ease-in-out;
  font-size: 1rem;
  background: #fff;
}
.banner .btn svg {
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
}
.banner .btn:hover svg {
  margin-left: 15px;
}

.welcome {
  width: 100%;
  position: relative;
}
.welcome .shape_two {
  position: absolute;
  left: 20px;
  bottom: 0px;
  width: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .welcome .shape_two {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .welcome .shape_two {
    display: none;
  }
}
.welcome .shape_two svg {
  fill: #0e7cc2;
}
.welcome h2 {
  font-size: 2.5rem;
  font-family: "Unbounded", sans-serif;
  color: #26ABE3;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .welcome h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .welcome h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .welcome h2 {
    font-size: 2rem;
  }
}
.welcome h2::after {
  position: absolute;
  content: "";
  width: 75px;
  height: 4px;
  background: #0E7CC2;
  margin: 0 auto;
  bottom: -5px;
  left: 0;
}
.welcome p {
  line-height: 30px;
  font-size: 0.938rem;
}
.welcome .content {
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .welcome .content {
    padding-right: 0;
  }
}
.welcome .img_box img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.mission_vision {
  background: rgb(255, 255, 224);
  background: linear-gradient(96deg, rgb(255, 255, 224) 0%, rgb(249, 249, 235) 100%);
  position: relative;
}
.mission_vision h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .mission_vision h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .mission_vision h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .mission_vision h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .mission_vision h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .mission_vision h3 {
    font-size: 1.6rem;
  }
}
.mission_vision .shape_one {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .mission_vision .shape_one {
    width: 160px;
  }
}
@media (max-width: 992px) {
  .mission_vision .shape_one {
    display: none;
  }
}
.mission_vision .flip-container {
  perspective: 1000px;
}
.mission_vision .flip-card {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  width: 100%;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .mission_vision .flip-card {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .mission_vision .flip-card {
    height: 400px;
  }
}
.mission_vision .flip-card img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mission_vision .flip-container:hover .flip-card {
  transform: rotateY(180deg);
}
.mission_vision .flip-card-front, .mission_vision .flip-card-back {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: absolute;
  width: 100%;
  height: 350px;
  backface-visibility: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .mission_vision .flip-card-front, .mission_vision .flip-card-back {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .mission_vision .flip-card-front, .mission_vision .flip-card-back {
    height: 400px;
  }
}
.mission_vision .flip-card-front {
  background-color: #fff;
}
.mission_vision .flip-card-back {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #26ABE3;
  transform: rotateY(180deg);
  display: flex;
  padding: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mission_vision .flip-card-back img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.mission_vision .flip-card-back p {
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .mission_vision .flip-card-back p {
    font-size: 0.813rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .mission_vision .flip-card-back p {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .mission_vision .flip-card-back p {
    font-size: 0.813rem;
  }
}

.whatweoffer {
  background: url(../images/service_bg.webp);
  background-size: cover;
}
.whatweoffer p {
  text-align: center;
}
.whatweoffer h3 {
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Unbounded", sans-serif;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .whatweoffer h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .whatweoffer h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .whatweoffer h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .whatweoffer h3 {
    font-size: 1.6rem;
  }
}
.whatweoffer h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Unbounded", sans-serif;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .whatweoffer h4 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .whatweoffer h4 br {
    display: none;
  }
}
.whatweoffer .service-box {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.4s ease-in-out;
  padding: 1.5rem;
  text-align: center;
  background: none;
}
.whatweoffer .service-box h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}
.whatweoffer .service-box .service-img {
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 300px;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.whatweoffer .service-box .service-img img {
  transition: all 0.4s ease-in-out;
  border-radius: 30%;
  -webkit-border-radius: 30%;
  -moz-border-radius: 30%;
  -ms-border-radius: 30%;
  -o-border-radius: 30%;
}
.whatweoffer .service-box p {
  transition: all 0.4s ease-in-out;
  text-align: center;
  color: #fff;
}
.whatweoffer .service-box:hover {
  background: #fff;
}
.whatweoffer .service-box:hover h3 {
  color: #26ABE3;
}
.whatweoffer .service-box:hover p {
  color: #4d4b4b;
}
.whatweoffer .service-box:hover .service-img img {
  border: 4px solid #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.whatweoffer .flip-container {
  perspective: 1000px;
}
.whatweoffer .flip-card {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  width: 100%;
  height: 300px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .whatweoffer .flip-card {
    height: 450px;
  }
}
@media (max-width: 480px) {
  .whatweoffer .flip-card {
    height: 400px;
  }
}
.whatweoffer .flip-card img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.whatweoffer .flip-container:hover .flip-card {
  transform: rotateY(180deg);
}
.whatweoffer .flip-card-front, .whatweoffer .flip-card-back {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: absolute;
  width: 100%;
  height: 300px;
  backface-visibility: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .whatweoffer .flip-card-front, .whatweoffer .flip-card-back {
    height: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .whatweoffer .flip-card-front, .whatweoffer .flip-card-back {
    height: 450px;
  }
}
@media (max-width: 480px) {
  .whatweoffer .flip-card-front, .whatweoffer .flip-card-back {
    height: 400px;
  }
}
.whatweoffer .flip-card-front {
  background-color: #fff;
}
.whatweoffer .flip-card-back {
  background-color: #f1f1f1;
  transform: rotateY(180deg);
  display: flex;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.whatweoffer .flip-card-back img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .whatweoffer .flip-card-back p {
    font-size: 0.813rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .whatweoffer .flip-card-back p {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .whatweoffer .flip-card-back p {
    font-size: 0.813rem;
  }
}
.whatweoffer .flip-card-back .bold {
  font-weight: 700;
  color: #0E7CC2;
}
.whatweoffer .btn_2 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  background: #0E7CC2;
  padding: 0.5rem 1rem;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .whatweoffer .btn_2 {
    font-size: 0.813rem;
  }
}
.whatweoffer .btn_2:hover {
  background: #26ABE3;
  color: #fff;
}

.founder {
  background: url(../images/petteren.webp);
}
.founder .content {
  padding: 2.5rem;
  background: #f1f1f1;
  transform: translateX(-50px);
  position: relative;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .founder .content {
    padding: 1.8rem;
  }
}
@media (max-width: 767px) {
  .founder .content {
    transform: translateX(0);
    padding: 1.8rem;
  }
}
.founder .content::before {
  position: absolute;
  content: url(../images/shape3.svg);
  width: 100px;
  height: 100px;
  top: -50px;
  right: -50px;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .founder .content::before {
    display: none;
  }
}
.founder .content h4 {
  font-family: "Unbounded", sans-serif;
  color: #26ABE3;
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .founder .content h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .founder .content h4 {
    font-size: 1.5rem;
  }
}
.founder .content h4 span {
  display: block;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #4d4b4b;
}
.founder .founders {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.founder .founders img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 10px solid #0E7CC2;
}

.how-it-works {
  background: #26ABE3 url(../images/shape4.svg);
  position: relative;
}
.how-it-works .shape5 {
  position: absolute;
  left: 2%;
  bottom: 2%;
}
@media (max-width: 767px) {
  .how-it-works .shape5 {
    display: none;
  }
}
.how-it-works .shape6 {
  position: absolute;
  right: 2%;
  top: 20%;
}
@media (max-width: 767px) {
  .how-it-works .shape6 {
    display: none;
  }
}
.how-it-works .heading {
  width: 100%;
  margin-bottom: 2rem;
}
.how-it-works .heading p {
  color: #fff;
  text-align: center;
}
.how-it-works h3 {
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Unbounded", sans-serif;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .how-it-works h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .how-it-works h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .how-it-works h3 {
    font-size: 2rem;
  }
}
.how-it-works .contact_form {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #fff;
  padding: 2rem;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.how-it-works .contact_form h4 {
  color: #000;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Unbounded", sans-serif;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .how-it-works .contact_form h4 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .how-it-works .contact_form h4 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .how-it-works .contact_form h4 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .how-it-works .contact_form h4 {
    font-size: 1.6rem;
  }
}
.how-it-works .contact_form .btn_2 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  background: #0E7CC2;
  padding: 0.5rem 2rem;
  color: #fff;
  border: none;
  font-weight: 600;
}
.how-it-works .contact_form .btn_2:hover {
  background: #26ABE3;
}
.how-it-works .works {
  transition: all 0.4s ease-in-out;
  background: #0E7CC2;
  padding: 5rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .how-it-works .works {
    padding: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .how-it-works .works {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .how-it-works .works {
    padding: 1.5rem;
  }
}
.how-it-works .works .number {
  transition: all 0.4s ease-in-out;
  width: 80px;
  height: 80px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  font-family: "Unbounded", sans-serif;
  color: #0E7CC2;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  left: 1.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .how-it-works .works .number {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .how-it-works .works .number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .how-it-works .works .number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
  }
}
.how-it-works .works h4 {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .how-it-works .works h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .how-it-works .works h4 {
    font-size: 1.2rem;
  }
}
.how-it-works .works p {
  color: #fff;
}
.how-it-works .works:hover {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
@media (max-width: 1200px) {
  .how-it-works .works:hover {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
}
.how-it-works .works:hover .number {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transform: translateX(10px);
}
@media (max-width: 1200px) {
  .how-it-works .works:hover .number {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    transform: translateX(0px);
  }
}

.diener_bg {
  background: #0E7CC2 url(/images/shape7.png) no-repeat right bottom;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .diener_bg {
    background-image: none;
  }
}
.diener_bg .shape7 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .diener_bg .shape7 {
    display: none;
  }
}
.diener_bg .shape7 svg {
  fill: rgba(29, 29, 29, 0.1607843137);
  width: 300px;
}
.diener_bg .diener {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 8px solid #fff;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .diener_bg .diener {
    width: 250px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .diener_bg .diener {
    width: 200px;
  }
}
.diener_bg .diener img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.diener_bg .quotes {
  padding-left: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .diener_bg .quotes {
    padding-left: 0;
  }
}
.diener_bg .quotes .icon {
  position: absolute;
  left: 0;
  top: -45px;
  content: "";
}
.diener_bg .quotes .icon svg {
  transform: skew(-10deg, 0deg);
}
@media (max-width: 767px) {
  .diener_bg .quotes .icon svg {
    display: none;
  }
}
.diener_bg .quotes p {
  color: #fff;
  font-size: 1.2rem;
  font-style: italic;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .diener_bg .quotes p {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .diener_bg .quotes p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .diener_bg .quotes p {
    font-size: 0.875rem;
  }
}
.diener_bg .quotes h5 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
  color: #fff;
}
.diener_bg .quotes h5 span {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  display: block;
}

.impact_stories {
  width: 100%;
  background: url(../images/shape8.png) no-repeat center #EBF3FF;
}
.impact_stories h3 {
  color: #0E7CC2;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Unbounded", sans-serif;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .impact_stories h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .impact_stories h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .impact_stories h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .impact_stories h3 {
    font-size: 1.6rem;
  }
}
.impact_stories .stories {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  margin-top: 2rem;
  background: rgb(242, 242, 207);
  background: linear-gradient(180deg, rgb(242, 242, 207) 0%, rgb(235, 243, 255) 100%);
}
.impact_stories .stories .quote {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 20px;
  top: -30px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .impact_stories .stories .quote svg {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .impact_stories .stories .quote svg {
    width: 80px;
  }
}

.partners {
  background: #0e7cc2;
}
.partners h5 {
  font-size: 1.4rem;
  color: #fff;
  line-height: 30px;
  font-weight: 300;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .partners h5 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .partners h5 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .partners h5 {
    font-size: 1rem;
  }
}
.partners h5 span {
  font-weight: 700;
}
.partners .partner_logo {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #fff;
}
.partners .partner_logo img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.disclaimer {
  background: #f1f1f1;
  position: relative;
}
.disclaimer p {
  text-align: center;
}
.disclaimer h3 {
  color: #26ABE3;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Unbounded", sans-serif;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .disclaimer h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .disclaimer h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .disclaimer h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .disclaimer h3 {
    font-size: 1.6rem;
  }
}
.disclaimer .btn_2 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  background: #0E7CC2;
  padding: 1rem;
  color: #fff;
  border: none;
  font-weight: 600;
}
.disclaimer .btn_2:hover {
  background: #26ABE3;
}

.bookanappointment {
  background: #faf8f8 url(../images/counseling-pattern.webp);
}
.bookanappointment .consult {
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .bookanappointment .consult {
    padding-left: 0;
  }
}
.bookanappointment .consult h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .bookanappointment .consult h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .bookanappointment .consult h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .bookanappointment .consult h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .bookanappointment .consult h3 {
    font-size: 1.6rem;
  }
}
.bookanappointment .consult .btn_2 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  background: #0E7CC2;
  padding: 1rem 2rem;
  color: #fff;
  border: none;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}
.bookanappointment .consult .btn_2:hover {
  background: #26ABE3;
}
.bookanappointment img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

footer {
  position: relative;
  background: white;
  z-index: 1;
}
footer .leftbox {
  padding: 60px 0px;
}
@media (max-width: 767px) {
  footer .leftbox {
    padding: 40px 0 0 0;
  }
}
footer .leftbox img {
  width: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  footer .leftbox img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  footer .leftbox img {
    width: 160px;
  }
}
footer .leftbox .footer-contact {
  position: relative;
  margin: 20px 0;
}
footer .leftbox .footer-contact ul {
  position: relative;
  padding: 0px;
}
footer .leftbox .footer-contact ul li {
  position: relative;
  padding-left: 34px;
  line-height: 22px;
  padding-bottom: 10px;
  font-size: 1rem;
  color: #101010;
  list-style: none;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  footer .leftbox .footer-contact ul li {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  footer .leftbox .footer-contact ul li {
    font-size: 0.875rem;
  }
}
footer .leftbox .footer-contact ul li a {
  color: #101010;
}
footer .leftbox .footer-contact ul li i {
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 1.2rem;
  color: #26ABE3;
}
footer .form {
  background: #26ABE3;
  padding: 0px 40px;
}
@media (max-width: 480px) {
  footer .form {
    padding: 0px 20px;
  }
}
@media (max-width: 767px) {
  footer .form {
    margin-bottom: 0px;
  }
}
footer .form .ftrbox {
  padding: 60px 0px 20px 0px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .form .ftrbox {
    padding: 40px 0 0 0;
  }
}
footer .form .ftrbox .p-l-20 {
  padding-left: 1.5rem;
}
footer .form .ftrbox .getlink {
  width: 50%;
}
footer .form .ftrbox .getlink h4 {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  footer .form .ftrbox .getlink h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  footer .form .ftrbox .getlink h4 {
    font-size: 1.2rem;
  }
}
footer .form .ftrbox .getlink h5 {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  text-align: right;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  footer .form .ftrbox .getlink h5 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  footer .form .ftrbox .getlink h5 {
    font-size: 1.2rem;
  }
}
footer .form .ftrbox .getlink ul {
  margin-left: 0;
  padding-left: 0;
}
footer .form .ftrbox .getlink ul li {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0 0.5rem;
  color: #fff;
}
footer .form .ftrbox .getlink ul li a {
  color: #fff;
}
footer .form .ftrbox .socail_link ul {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}
footer .form .ftrbox .socail_link ul li {
  padding: 0.5rem 0;
  list-style: none;
  color: #fff;
  font-size: 1rem;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  footer .form .ftrbox .socail_link ul li {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  footer .form .ftrbox .socail_link ul li {
    font-size: 0.875rem;
  }
}
footer .form .ftrbox .socail_link ul li img {
  padding-left: 1rem;
  width: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  footer .form .ftrbox .socail_link ul li img {
    width: 30px;
  }
}
@media (max-width: 767px) {
  footer .form .ftrbox .socail_link ul li img {
    padding-left: 0.5rem;
  }
}
footer .form .ftrbox .socail_link ul li::before {
  display: none;
}
footer .form .powered {
  width: 100%;
  padding: 20px 0px;
}
@media (max-width: 767px) {
  footer .form .powered {
    padding: 20px 0px 50px 0;
  }
}
footer .form .powered p {
  color: #fff;
  padding-bottom: 0;
  text-align: right;
}
@media (max-width: 767px) {
  footer .form .powered p {
    text-align: center;
  }
}
footer::before {
  position: absolute;
  content: "";
  width: 30%;
  background: #26ABE3;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  footer::before {
    display: none;
  }
}

.terms {
  width: 100%;
  padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .terms {
    padding-top: 100px;
  }
}
.terms h1 {
  font-family: "Unbounded", sans-serif;
  color: #26ABE3;
  font-size: 2.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .terms h1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .terms h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .terms h1 {
    font-size: 1.6rem;
  }
}
.terms h2 {
  font-family: "Unbounded", sans-serif;
  color: #26ABE3;
}
.terms h4 {
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .terms h4 {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .terms h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .terms h4 {
    font-size: 1.2rem;
  }
}
.terms h5 {
  font-weight: 500;
}
.terms strong {
  font-weight: 500;
}
.terms .blog_box {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.terms .blog_box .blog-img {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  background: #26ABE3;
  position: relative;
}
.terms .blog_box .blog-img img {
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.terms .blog_box .blog-img .calendar {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 5px 10px;
  color: #fff;
  font-size: 0.938rem;
  position: absolute;
  background: #26ABE3;
  left: 10px;
  bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .blog_box .blog-img .calendar {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .terms .blog_box .blog-img .calendar {
    font-size: 0.813rem;
  }
}
.terms .blog_box .contents {
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  padding: 1.5rem;
  background: #fff;
}
@media (max-width: 767px) {
  .terms .blog_box .contents {
    padding: 1rem;
  }
}
.terms .blog_box .contents .calendar_2 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #101010;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .blog_box .contents .calendar_2 {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .terms .blog_box .contents .calendar_2 {
    font-size: 0.813rem;
  }
}
.terms .blog_box .contents h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-weight: 600;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  color: #4d4b4b;
  font-size: 1rem;
  line-height: 28px;
  height: 54px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .blog_box .contents h4 {
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .terms .blog_box .contents h4 {
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 0.875rem;
  }
}
.terms .blog_box .contents p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-weight: 400;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  color: #4d4b4b;
  font-size: 0.875rem;
  line-height: 28px;
  height: 90px;
}
.terms .blog_box .contents .btn_3 {
  color: #fff;
  border: none;
  font-size: 1rem;
  background: #0E7CC2;
  padding: 8px 15px;
}
.terms .blog_box .contents .btn_3:hover {
  letter-spacing: 0.1rem;
}
.terms .blog_box:hover .blog-img img {
  opacity: 0.6;
}
.terms .contents img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
}
.terms .contents h4 {
  font-size: 2rem;
  color: #4d4b4b;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .contents h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .terms .contents h4 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .contents h5 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .terms .contents h5 {
    font-size: 1.1rem;
  }
}
.terms .contents ul li {
  font-size: 0.875rem;
  color: #4d4b4b;
  list-style: none;
  font-weight: 300;
  padding: 5px 0;
  line-height: 30px;
  padding-left: 15px;
  position: relative;
}
.terms .contents ul li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: #26ABE3;
  font-weight: 600;
  margin-right: 10px;
}
.terms .recent {
  background: #fff;
  border: 1px solid #c6c6c6;
}
.terms .recent h3 {
  font-size: 2rem;
  color: #4d4b4b;
  font-weight: 600;
  padding: 1.5rem 1.5rem 0rem 1.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .terms .recent h3 {
    font-size: 1.8rem;
    padding: 1rem 0 0rem 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .recent h3 {
    padding: 1rem 0 0rem 1rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .terms .recent h3 {
    padding: 1rem 0 0rem 1rem;
    font-size: 1.4rem;
  }
}
.terms .recent ul {
  padding-left: 0;
}
.terms .recent ul li {
  list-style: none;
  border-bottom: 1px solid #c6c6c6;
  padding: 0;
}
.terms .recent ul li::before {
  display: none;
}
.terms .recent ul li:last-child {
  border-bottom: none;
}
.terms .recent ul li .lists {
  width: 100%;
  padding: 1.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .terms .recent ul li .lists {
    padding: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .recent ul li .lists {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .terms .recent ul li .lists {
    padding: 1rem;
  }
}
.terms .recent ul li .lists .calendar {
  padding: 0 0 10px 0;
  color: #4d4b4b;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .recent ul li .lists .calendar {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .terms .recent ul li .lists .calendar {
    font-size: 0.813rem;
    padding: 0;
  }
}
.terms .recent ul li .lists h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #4d4b4b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-weight: 400;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 28px;
  height: 54px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .recent ul li .lists h4 {
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .terms .recent ul li .lists h4 {
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 0.875rem;
  }
}
.terms .recent ul li .lists .btn_3 {
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .recent ul li .lists .btn_3 {
    font-size: 0.813rem;
  }
}
@media (max-width: 480px) {
  .terms .recent ul li .lists .btn_3 {
    font-size: 0.813rem;
  }
}
.terms .digit-list {
  list-style-type: none;
  counter-reset: item;
  padding-left: 20px;
}
.terms .digit-list li {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  padding: 5px 0;
  list-style: decimal;
}
.terms .digit-list li h4 {
  display: inline-block;
  font-size: 1.2rem;
}
.terms .digit-list li .default-bullet {
  list-style-type: disc; /* Default, but you can specify it */
}
.terms .digit-list li .default-bullet li {
  list-style: none;
  font-size: 0.875rem;
  font-weight: 300;
  color: #4d4b4b;
  line-height: 30px;
}
.terms .digit-list li .default-bullet li::before {
  content: "•";
  color: #26ABE3;
  font-weight: 600;
  margin-right: 10px;
}
.terms .default-bullet {
  list-style-type: disc; /* Default, but you can specify it */
}
.terms .default-bullet li {
  list-style: none;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 30px;
  color: #4d4b4b;
  padding: 5px 0;
}
.terms .default-bullet li::before {
  content: "•";
  color: #26ABE3;
  font-weight: 600;
  margin-right: 10px;
}
.terms .default-bullet li strong {
  font-weight: 500;
}
.terms .accordion {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .terms .accordion {
    margin-top: 1rem;
  }
}
.terms .accordion ul li {
  padding: 2px 0px;
  font-size: 0.875rem;
  color: #4d4b4b;
  font-weight: 300;
}
.terms .accordion-button {
  color: #101010;
  font-size: 0.875rem;
  line-height: 24px;
}
.terms .accordion-button:focus {
  z-index: 3;
  border-color: 0 !important;
}
.terms .accordion-flush .accordion-item .accordion-button,
.terms .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 10px;
}
.terms .accordion-item {
  border-bottom: var(--bs-accordion-border-width) solid #999da2;
}
.terms .accordion-item .accordion-header {
  font-family: "Poppins", sans-serif;
}
.terms .accordion-item .accordion-button {
  font-size: 1.1rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .terms .accordion-item .accordion-button {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .terms .accordion-item .accordion-button {
    font-size: 0.875rem;
    padding: 10px;
  }
}
.terms .accordion-item .accordion-button:not(.collapsed) {
  background: #26ABE3;
  color: #fff;
  margin-top: 1rem;
}
.terms .accordion-button:not(.collapsed)::after {
  color: #fff !important; /* Change the color to your preferred color */
  background-image: none;
  content: "\f2ea";
  font-size: 2rem;
  font-family: bootstrap-icons !important;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.terms .accordion-button.collapsed::after {
  color: #6c757d !important; /* Example: Replace with your $paragraph color */
  background-image: none;
  content: "\f4fe"; /* Unicode for 'minus' icon from Bootstrap Icons */
  font-size: 1.5rem;
  font-family: "bootstrap-icons" !important;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking {
  padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .booking {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .booking {
    padding-top: 100px;
  }
}

.contact_form {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #fff;
  padding: 3rem;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .contact_form {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .contact_form {
    padding: 1.5rem;
  }
}
.contact_form h1 {
  color: #0E7CC2;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Unbounded", sans-serif;
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact_form h1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .contact_form h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .contact_form h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .contact_form h1 {
    font-size: 1.4rem;
  }
}
.contact_form h4 {
  font-weight: 300;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .contact_form h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .contact_form h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .contact_form h4 {
    font-size: 1rem;
  }
}
.contact_form .pick_time {
  width: 100%;
  padding: 2rem;
  display: flex;
  margin-bottom: 1.5rem;
  border: 1px solid #D0D3D5;
  background: aliceblue;
}
@media (max-width: 767px) {
  .contact_form .pick_time {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact_form .pick_time {
    padding: 1.5rem;
  }
}
.contact_form .pick_time .consult {
  width: 40%;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .contact_form .pick_time .consult {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .contact_form .pick_time .consult {
    width: 100%;
    margin-bottom: 1rem;
    padding-right: 0;
  }
}
.contact_form .pick_time .consult .form-group {
  position: relative;
}
.contact_form .pick_time .consult .form-group i {
  position: absolute;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.54);
  content: "";
  right: 10px;
  bottom: 7px;
}
.contact_form .pick_time .consult label {
  color: #000;
  font-size: 1rem;
}
.contact_form .pick_time .times {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .contact_form .pick_time .times {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .contact_form .pick_time .times {
    width: 100%;
  }
}
.contact_form .pick_time .times .appointment-calendar__day-part {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 33.3%;
  padding: 0.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .contact_form .pick_time .times .appointment-calendar__day-part {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .contact_form .pick_time .times .appointment-calendar__day-part {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contact_form .pick_time .times .appointment-calendar__day-part {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .contact_form .pick_time .times .appointment-calendar__day-part {
    width: 100%;
    padding: 0;
  }
}
.contact_form .pick_time .times .appointment-calendar__day-part .day-part-title {
  font-size: 1rem;
  color: #000;
}
.contact_form .pick_time .times .appointment-calendar__day-part .appointment-calendar__day-part-items {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 6.66667px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #0E7CC2;
}
.contact_form .pick_time .times .appointment-calendar__day-part .active {
  background-color: #0E7CC2;
  color: #fff;
}
.contact_form .btn_2 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  background: #0E7CC2;
  padding: 0.5rem 2rem;
  color: #fff;
  border: none;
  font-weight: 600;
}
.contact_form .btn_2:hover {
  background: #26ABE3;
}

.mbsc-ios.mbsc-page {
  background: #fff;
  color: #000;
}

.demo-week-view input {
  width: 100%;
  margin: 0 0 5px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-family: arial, verdana, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.demo-week-view .mbsc-page {
  padding: 1em;
}

.modal .lists {
  width: 100%;
}
.modal .lists ul {
  padding-left: 0;
}
.modal .lists ul li {
  list-style: none;
  padding: 5px 0px;
}
.modal .lists ul li span {
  color: #0E7CC2;
}

.keyframe5 {
  position: relative;
  animation-name: animation-7;
  animation-duration: 90s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

@keyframes animation-7 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1000deg);
  }
}
@media (max-width: 768px) {
  .wow {
    visibility: visible !important; /* Ensure the element is visible without animation */
    animation-name: none !important; /* Disable the animation */
  }
}
.button_fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px;
  display: none;
  background: #0E7CC2;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  z-index: 999;
}
.button_fixed:hover {
  color: #fff;
  background: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .button_fixed {
    display: block;
  }
}/*# sourceMappingURL=main.css.map */