@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1199px) {
  .container {
    padding: 0px 15px;
    max-width: 100%;
  }
}

body {
  font-family: 'DM Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #3E3E3E;
  font-size: 15px;
}

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

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #a5a3a3;
          box-shadow: inset 0 0 5px #a5a3a3;
}

::-webkit-scrollbar-thumb {
  background: #00995D;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

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

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

form {
  width: 100%;
}

form .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 525px) {
  form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

form .row .input-holder {
  margin-bottom: 20px;
}

form .row .split-2 {
  width: calc(100%/2 - 8px);
}

@media (max-width: 525px) {
  form .row .split-2 {
    width: 100%;
  }
}

form .row .fullwidth {
  width: 100%;
}

form .row input,
form .row textarea,
form .row select {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  text-indent: 10px;
  border-radius: 9px;
  border: 1px solid #222;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px;
  background: none;
}

form .row textarea {
  text-indent: 0px;
  padding: 10px;
  height: 100px !important;
}

form .btn-holder {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

form .btn-holder .filled-btn {
  padding: 10px 20px;
  color: #00995D;
}

@media (max-width: 525px) {
  form .btn-holder .filled-btn {
    width: 100%;
  }
}

.scroll-wrapper {
  position: relative;
  width: 100%;
}

.scroll-wrapper .scroll-left {
  position: absolute;
  background: white;
  left: -24px;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  z-index: 30;
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.scroll-wrapper .scroll-left:hover {
  background: #00995D;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .scroll-wrapper .scroll-left {
    left: 0px;
  }
}

@media (max-width: 525px) {
  .scroll-wrapper .scroll-left {
    width: 40px;
    height: 40px;
    left: -8px;
  }
}

.scroll-wrapper .scroll-right {
  position: absolute;
  background: white;
  right: -24px;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  z-index: 30;
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.scroll-wrapper .scroll-right:hover {
  background: #00995D;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .scroll-wrapper .scroll-right {
    right: 0px;
  }
}

@media (max-width: 525px) {
  .scroll-wrapper .scroll-right {
    width: 40px;
    height: 40px;
    right: -8px;
  }
}

.fullwidth {
  width: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222 !important;
}

h1,
h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 768px) {
  h1,
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 525px) {
  h1,
  h2 {
    font-size: 30px;
    line-height: 38px;
  }
  h1 br,
  h2 br {
    display: none;
  }
}

h4 {
  font-size: 25px;
  font-weight: 700;
}

@media (max-width: 525px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 23px;
  font-weight: 700;
}

h6 {
  font-size: 20px;
  font-weight: 500;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  text-align: justify;
  word-spacing: -1px;
}

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

.colored-text .line {
  position: absolute;
  bottom: -21px;
  left: 0px;
  width: 100%;
  display: none;
}

@media (max-width: 525px) {
  .colored-text .line {
    bottom: -12px;
  }
}

.colored-text .line img {
  width: 100%;
}

a {
  cursor: pointer;
}

button {
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
}

.filled-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 45px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 700;
  padding: 5px 10px;
  background: #66FFD9;
}

.save-btn {
  color: #00995D;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  display: none;
}

.save-btn ion-icon {
  margin-right: 5px;
}

.outline-btn {
  width: 109px;
  height: 45px;
  border: 1px solid #00995D;
  background: none;
  text-decoration: none;
  color: #00995D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.shimmer {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.461);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 290;
  display: none;
}

.gradient-text {
  background-image: linear-gradient(119deg, #2D8DFF 0%, #004699 92.19%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.gradient-text .underline {
  position: absolute;
  width: 50%;
  bottom: -22px;
  left: 95px;
}

@media (max-width: 525px) {
  .gradient-text .underline {
    display: none;
  }
}

.gradient-text .underline img {
  width: 100%;
}

.gradient-text .resize-line {
  width: 80%;
  left: 40px;
}

.gradient-text .resize-line2 {
  width: 65%;
  left: 40px;
  bottom: -25px;
}

.gradient-text .resize-line3 {
  width: 100%;
  left: 0px;
  bottom: -12px;
}

.gradient-text .resize-line4 {
  width: 70%;
  left: 40px;
  bottom: -15px;
}

#filter-button {
  width: 182px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: none;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  color: rgba(0, 0, 0, 0.47);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 525px) {
  #filter-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#filter-button .icon {
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#filter-button .icon ion-icon {
  font-size: 20px;
  color: #00995D;
}

#filter-button:hover {
  background: #8fc3d3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: white;
  border: none;
}

#filter-button:hover span {
  color: white;
}

#filter-button:hover .icon ion-icon {
  color: white;
}

.searchbar {
  max-width: 75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  width: 267px;
  height: 45px;
}

@media (max-width: 525px) {
  .searchbar {
    width: 100%;
  }
}

.searchbar input {
  height: 100%;
  width: calc(100% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
  border: none;
  padding: 0px;
}

.searchbar input[type="text"]::-webkit-input-placeholder {
  font-size: 13px;
}

.searchbar input[type="text"]:-ms-input-placeholder {
  font-size: 13px;
}

.searchbar input[type="text"]::-ms-input-placeholder {
  font-size: 13px;
}

.searchbar input[type="text"]::placeholder {
  font-size: 13px;
}

.searchbar button {
  border: none;
  background: none;
  width: 33px;
  height: 33px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.searchbar button ion-icon {
  color: #00995D;
  text-align: center;
  font-size: 20px;
  margin-right: 0px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
}

.preloader .loader-icon {
  width: 150px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.preloader .loader-icon .front {
  overflow: hidden;
  width: 150px;
  position: relative;
  z-index: 5;
  -webkit-animation: wipe 1.5s forwards linear;
          animation: wipe 1.5s forwards linear;
  overflow-x: hidden;
}

.preloader .loader-icon .front img {
  width: 150px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.preloader .loader-icon .back img {
  width: 150px;
}

@-webkit-keyframes wipe {
  from {
    width: 150px;
  }
  to {
    width: 0px;
  }
}

@keyframes wipe {
  from {
    width: 150px;
  }
  to {
    width: 0px;
  }
}

.contact-button-sticky-desktop {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 300;
}

@media (max-width: 768px) {
  .contact-button-sticky-desktop {
    bottom: 40px;
  }
}

.contact-button-sticky-desktop .options {
  width: 300px;
  height: 300px;
  position: absolute;
  top: -320px;
  right: 0;
  border-radius: 10px;
  padding: 20px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: white;
}

.contact-button-sticky-desktop .options .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 25px;
}

.contact-button-sticky-desktop .options .close ion-icon {
  width: 22px;
  height: 22px;
  border-radius: 100%;
}

.contact-button-sticky-desktop .options .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-button-sticky-desktop .options .head .icon {
  width: 52px;
  border-radius: 100%;
}

.contact-button-sticky-desktop .options .head .icon img {
  width: 100%;
}

.contact-button-sticky-desktop .options .head .info .title {
  margin-left: 10px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0px;
}

.contact-button-sticky-desktop .options .head .info .position {
  font-size: 14px;
  margin-left: 10px;
  opacity: 0.7;
}

.contact-button-sticky-desktop .options .content {
  margin-top: 20px;
  font-weight: 400;
  line-height: 25px;
}

.contact-button-sticky-desktop .options .button {
  margin-top: 10px;
}

.contact-button-sticky-desktop .options .button a {
  text-decoration: none;
  font-size: 15px;
  display: block;
  background: black;
  color: white;
  padding: 13px 20px;
  text-align: center;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.contact-button-sticky-desktop .options .button a .desk-show,
.contact-button-sticky-desktop .options .button a .mob-show {
  display: none;
}

@media (min-width: 768px) {
  .contact-button-sticky-desktop .options .button a .desk-show {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-button-sticky-desktop .options .button a .mob-show {
    display: block;
  }
}

.contact-button-sticky-desktop .options .button a ion-icon {
  margin-right: 10px;
  font-size: 20px;
}

.contact-button-sticky-desktop .options .button a:nth-child(1) {
  background: #eee;
  color: black;
}

.contact-button-sticky-desktop .options .button a:nth-child(2) {
  background: #075e54;
  color: white;
}

.contact-button-sticky-desktop button {
  width: 150px;
  height: 50px;
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 500;
  border: none;
  color: white;
  border-radius: 10px;
  -webkit-animation: borderPulse 2000ms infinite ease-out;
          animation: borderPulse 2000ms infinite ease-out;
  display: none;
}

.contact-button-sticky-desktop-active .options {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes borderPulse {
  0%,
  45% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(120, 119, 142, 0.7);
            box-shadow: 0px 0px 0px 0px rgba(120, 119, 142, 0.7);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(242, 242, 242, 0.01);
            box-shadow: 0px 0px 0px 15px rgba(242, 242, 242, 0.01);
  }
}

@keyframes borderPulse {
  0%,
  45% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(120, 119, 142, 0.7);
            box-shadow: 0px 0px 0px 0px rgba(120, 119, 142, 0.7);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(242, 242, 242, 0.01);
            box-shadow: 0px 0px 0px 15px rgba(242, 242, 242, 0.01);
  }
}

.sidemenu {
  width: 80%;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 300;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 525px) {
  .sidemenu {
    width: 100%;
  }
}

.sidemenu .flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}

.sidemenu .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sidemenu .close .icon {
  background: #F5F5F5;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
}

.sidemenu .close .icon ion-icon {
  font-size: 24px;
  font-weight: 900;
}

.sidemenu .logo {
  width: 100px;
}

.sidemenu .logo img {
  width: 100%;
}

.sidemenu ul {
  width: 100%;
  margin-top: 20px;
  height: calc(100% - 100px);
  overflow-y: scroll;
  padding: 0px 10px;
}

.sidemenu ul li {
  list-style: none;
  position: relative;
}

.sidemenu ul li:nth-child(4) {
  display: none !important;
}

.sidemenu ul li .drop-down {
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: none;
}

.sidemenu ul li .drop-down ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0px;
}

.sidemenu ul li .drop-down ul li {
  width: 100%;
}

.sidemenu ul li .drop-down ul li:nth-child(4) {
  display: block !important;
}

.sidemenu ul li .drop-down ul li a {
  border-bottom: 1px solid #3636362d;
  padding: 0px;
  display: block;
  padding: 10px;
  font-size: 16px;
  position: relative;
  color: #1B1B1B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px;
}

.sidemenu ul li .drop-down ul li a .icon {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
}

.sidemenu ul li .drop-down ul li a .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

.sidemenu ul li .drop-down ul li:last-child a {
  border: none;
}

.sidemenu ul li .drop-down ul .active a {
  color: #00995D !important;
}

.sidemenu ul li .active-drop {
  display: block;
}

.sidemenu ul li a {
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  color: #1B1B1B;
}

.sidemenu ul li a::after {
  content: '>';
  font-size: 20px;
  position: absolute;
  top: 25%;
  right: 10px;
  display: none;
}

.sidemenu ul li a ion-icon {
  margin-left: 10px;
  margin-right: 5px;
}

.sidemenu ul li a .to-rotate {
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}

.sidemenu ul li:last-child a {
  border: none;
}

.sidemenu ul .active {
  color: #00995D !important;
}

.sidemenu-active {
  right: 0;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header {
  width: 100%;
  height: 85px;
  background: white;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 250;
}

header .container {
  height: 100%;
}

header .header-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .header-wrap .logo {
  width: 130px;
}

header .header-wrap .logo a {
  width: 100%;
}

header .header-wrap .logo a img {
  width: 100%;
}

header .header-wrap .logo a .white-logo {
  display: none;
}

header .header-wrap .logo a .black-logo {
  display: block;
  width: 100%;
}

header .header-wrap nav {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  header .header-wrap nav {
    display: none;
  }
}

header .header-wrap nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .header-wrap nav ul li {
  margin-right: 50px;
  list-style: none;
  position: relative;
}

header .header-wrap nav ul li:last-child {
  margin-right: 0px;
}

header .header-wrap nav ul li:nth-child(4) {
  display: none;
}

header .header-wrap nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  text-decoration: none;
  color: black;
}

header .header-wrap nav ul li a ion-icon {
  font-style: 30px !important;
  margin-right: 5px;
  top: -7px;
}

header .header-wrap nav ul li a .to-rotate {
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}

header .header-wrap nav ul .active {
  color: #00995D;
}

header .header-wrap nav ul .drop-down {
  position: absolute;
  right: 0;
  top: 57px;
  width: 250px;
  max-height: 520px;
  background: white;
  padding: 5px;
  padding-top: 6px;
  display: none;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 16px #cfc8c885;
          box-shadow: 0px 1px 16px #cfc8c885;
}

header .header-wrap nav ul .drop-down ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .header-wrap nav ul .drop-down ul li {
  width: 100%;
  margin-right: 0px;
}

header .header-wrap nav ul .drop-down ul li:last-child a {
  border-bottom: none;
}

header .header-wrap nav ul .drop-down ul li:nth-child(4) {
  display: block !important;
}

header .header-wrap nav ul .drop-down ul li a {
  border-bottom: 1px solid #3636362d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: black;
}

header .header-wrap nav ul .drop-down ul li a:hover {
  background: #00995D;
  color: white;
}

header .header-wrap nav ul .drop-down ul li a .icon {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
}

header .header-wrap nav ul .drop-down ul li a .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header .header-wrap nav ul .drop-down ul li .active-drop {
  background: #00995D;
  color: white;
}

header .header-wrap nav ul .drop-down ul li:last-child a {
  border: none;
}

header .header-wrap nav ul .drop-down ul .active {
  color: #00995D;
}

header .header-wrap nav ul .drop-down ul .active:before {
  display: none;
}

header .header-wrap nav ul .drop-down ul .active:after {
  display: none;
}

header .header-wrap nav ul .drop-down-active {
  display: block;
}

header .header-wrap .hamburger {
  width: 31px;
  display: none;
}

@media (max-width: 768px) {
  header .header-wrap .hamburger {
    display: block;
  }
}

header .header-wrap .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: black;
  margin-bottom: 6px;
  border-radius: 10px;
}

header .header-wrap .hamburger span:last-child {
  margin: 0;
}

.active-header {
  background: #000;
}

.active-header li,
.active-header a {
  color: white !important;
}

.active-header .logo a .black-logo {
  display: none !important;
}

.active-header .logo a .white-logo {
  display: block !important;
  width: 100% !important;
}

.active-header .drop-down li,
.active-header .drop-down a {
  color: black !important;
}

.active-header .drop-down li:hover,
.active-header .drop-down a:hover {
  color: white !important;
}

.active-header .drop-down .active {
  color: #00995D !important;
}

.active-header .active {
  color: #00995D !important;
}

.active-header .hamburger span {
  background: white !important;
}

.read-more {
  color: #00995D;
  font-size: 16px;
  font-weight: 700;
}

.card-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card-wrapper:after {
  content: '';
  width: calc(100%/4 - 10px);
}

.card:hover .thumbnail {
  opacity: 0.7;
}

.card:hover .read-more {
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.card:hover .read-more::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: #00995D;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.card:hover .read-more::after {
  width: 100%;
  left: 0;
}

.destination-card-wrapper .card {
  width: 100%;
  height: 310px !important;
  position: relative;
  text-decoration: none !important;
  display: block;
}

.destination-card-wrapper .card .thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.destination-card-wrapper .card .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.destination-card-wrapper .card .gradient {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(87.38%, black), color-stop(211.66%, #000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 87.38%, #000 211.66%);
  padding: 10px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 525px) {
  .destination-card-wrapper .card .gradient {
    padding: 20px;
  }
}

.destination-card-wrapper .card .gradient .details {
  width: 100%;
}

.destination-card-wrapper .card .gradient .details .flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6px;
}

.destination-card-wrapper .card .gradient .details .flag hr {
  width: calc(100%/2 - 30px);
  background: #A5A5A5 !important;
}

.destination-card-wrapper .card .gradient .details .flag .image {
  width: 45px;
  height: 45px;
  border-radius: 100%;
}

.destination-card-wrapper .card .gradient .details .flag .image img {
  width: 100%;
}

.destination-card-wrapper .card .gradient .details .country-name {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 6px;
}

.destination-card-wrapper .card .gradient .details P {
  text-align: center;
  color: white;
  line-height: 24px;
}

.destination-card-wrapper a:link,
.destination-card-wrapper a:visited,
.destination-card-wrapper a:active {
  color: white;
}

.banner {
  width: 100%;
  height: 90vh;
  position: relative;
  margin-top: 85px;
  padding-top: 30px;
  background: #00995D;
}

@media (max-width: 768px) {
  .banner {
    margin-top: 60px;
    height: 90vh;
  }
}

.banner:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
}

.banner .float {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  width: 55%;
}

.banner .float img {
  width: 100%;
}

@media (max-width: 768px) {
  .banner .float {
    width: 100%;
  }
}

.banner .container {
  height: 100%;
  position: relative;
  z-index: 2;
}

.banner .container .banner-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .banner .container .banner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.banner .container .banner-content .left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .banner .container .banner-content .left {
    width: 100%;
  }
}

.banner .container .banner-content .left h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 60px;
  margin-bottom: 13px;
  color: white !important;
}

@media (max-width: 525px) {
  .banner .container .banner-content .left h1 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 10px;
    text-align: center;
  }
}

.banner .container .banner-content .left h3 {
  font-size: 30px;
  color: white !important;
  margin-bottom: 20px;
  display: none;
}

.banner .container .banner-content .left p {
  color: white;
  margin-bottom: 15px;
  font-weight: 500;
}

.banner .container .banner-content .left .questions {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}

@media (max-width: 525px) {
  .banner .container .banner-content .left .questions {
    font-size: 16px;
  }
}

.banner .container .banner-content .left .button-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.banner .container .banner-content .left .filled-btn {
  width: 20%;
  margin-right: 10px;
  padding: 12px;
  border-radius: 5px;
  background: #FF952B;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 525px) {
  .banner .container .banner-content .left .filled-btn {
    width: 100% !important;
    margin-bottom: 15px;
    margin-right: 0px;
  }
}

.banner .container .banner-content .left .outline-btn {
  width: 20%;
  height: 48px;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.137);
  color: white;
  font-weight: 700;
  font-size: 16px;
}

@media (max-width: 525px) {
  .banner .container .banner-content .left .outline-btn {
    width: 100% !important;
  }
}

.banner .container .banner-content .right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  .banner .container .banner-content .right {
    display: none;
  }
}

.banner .container .banner-content .right h6 {
  color: white !important;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: -10px;
  text-align: center;
}

.banner .container .banner-content .right .card-wrapper .card {
  width: 100% !important;
  height: 170px !important;
  position: relative;
  border-radius: 46.451px;
  overflow: hidden;
  text-decoration: none !important;
}

.banner .container .banner-content .right .card-wrapper .card .thumbnail {
  width: 100%;
  height: 100%;
}

.banner .container .banner-content .right .card-wrapper .card .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner .container .banner-content .right .card-wrapper .card .country-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 10px;
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner .container .banner-content .right .card-wrapper .card .country-wrap .country .flag {
  width: 46.451px;
  height: 46.451px;
}

.banner .container .banner-content .right .card-wrapper .card .country-wrap .country .flag img {
  width: 100%;
}

.banner .container .banner-content .right .card-wrapper .card .country-wrap .country .country-name {
  color: white;
}

.banner .container .banner-content .right .card-wrapper .card .country-wrap hr {
  background: #A5A5A5 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner .container .banner-content .right .card-wrapper .card .gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-radius: 0px 0px 16px 16px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(18%, rgba(0, 0, 0, 0)), color-stop(70.38%, rgba(0, 0, 0, 0.67)), color-stop(104.66%, #000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.67) 70.38%, #000 104.66%);
}

.banner .container .banner-content .right .card-wrapper a:link,
.banner .container .banner-content .right .card-wrapper a:visited,
.banner .container .banner-content .right .card-wrapper a:active {
  color: white;
}

.about {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about .left {
  width: 52%;
}

@media (max-width: 768px) {
  .about .left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.about .left h2 {
  margin-bottom: 20px;
}

.about .left .counter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about .left .counter .counts {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 525px) {
  .about .left .counter .counts {
    width: calc(100%/2) !important;
    margin-right: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    padding: 15px;
  }
  .about .left .counter .counts:nth-child(1) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .about .left .counter .counts:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 0px;
  }
  .about .left .counter .counts:nth-child(4) {
    border-right: 0px;
  }
}

.about .left .counter .counts span {
  color: #00995D;
  font-size: 30px;
  font-weight: 900;
}

.about .right {
  width: 43%;
}

@media (max-width: 768px) {
  .about .right {
    width: 100%;
  }
}

.about .right p {
  margin-bottom: 10px;
}

.features {
  background: #FCFCFC;
  padding: 20px 0px;
  margin-top: 60px;
}

@media (max-width: 525px) {
  .features {
    padding: 10px 0px;
  }
}

.features .card-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.features .card-wrapper .card {
  width: calc(100%/4);
  padding: 10px 15px;
  border-right: 1px solid #F4F4F4;
}

@media (max-width: 768px) {
  .features .card-wrapper .card {
    width: calc(100%/2 - 20px);
  }
}

@media (max-width: 525px) {
  .features .card-wrapper .card {
    width: 100%;
    border-bottom: 1px solid #F4F4F4;
    padding-bottom: 10px;
    padding: 20px 10px;
    border-right: none;
  }
  .features .card-wrapper .card:last-child {
    border-bottom: 0px;
  }
}

.features .card-wrapper .card:last-child {
  border-right: none;
  padding-right: 0px;
}

.features .card-wrapper .card:nth-child(1) {
  padding-left: 0px;
}

@media (max-width: 525px) {
  .features .card-wrapper .card:nth-child(1) {
    padding-left: 10px;
  }
}

.features .card-wrapper .card .icon {
  width: 60px;
  height: 60px;
  background: #FFF6ED;
  border-radius: 100%;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.features .card-wrapper .card .icon img {
  width: 30px;
}

.features .card-wrapper .card h5 {
  margin-bottom: 10px;
}

#video {
  width: 100%;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
  margin-top: 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 525px) {
  #video {
    height: 350px;
  }
}

#video::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(6, 6, 6, 0.301);
  z-index: 1;
  display: none;
}

#video .play {
  display: none;
}

#video .icon {
  z-index: 220;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  background: rgba(252, 252, 252, 0.623);
  cursor: pointer;
  -webkit-animation: borderPulse 2000ms infinite ease-out;
          animation: borderPulse 2000ms infinite ease-out;
  -webkit-box-shadow: 0 0 0 0 black;
          box-shadow: 0 0 0 0 black;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  display: none;
}

#video .icon ion-icon {
  font-size: 35px;
  color: #FF952B;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0px rgba(245, 244, 241, 0.7);
            box-shadow: 0 0 0 0px rgba(245, 244, 241, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(247, 246, 246, 0);
            box-shadow: 0 0 0 10px rgba(247, 246, 246, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 5px rgba(250, 249, 249, 0);
            box-shadow: 0 0 0 5px rgba(250, 249, 249, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0px rgba(245, 244, 241, 0.7);
            box-shadow: 0 0 0 0px rgba(245, 244, 241, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(247, 246, 246, 0);
            box-shadow: 0 0 0 10px rgba(247, 246, 246, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 5px rgba(250, 249, 249, 0);
            box-shadow: 0 0 0 5px rgba(250, 249, 249, 0);
  }
}

#destinations {
  width: 100%;
  margin-top: 60px;
}

#destinations .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #destinations .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#destinations .title h2 {
  width: 45%;
}

@media (max-width: 768px) {
  #destinations .title h2 {
    width: 100%;
    margin-bottom: 10px;
  }
  #destinations .title h2 br {
    display: block !important;
  }
}

#destinations .title p {
  width: 40%;
}

@media (max-width: 768px) {
  #destinations .title p {
    width: 100%;
    margin-bottom: 20px;
  }
}

.services {
  width: 100%;
  margin-top: 60px !important;
  margin-bottom: 60px;
}

.services h2 {
  margin-bottom: 40px;
}

.services .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services .view-all {
  color: #00995D;
  text-decoration: none;
}

.services .res-view-all-btn {
  display: none;
}

@media (max-width: 525px) {
  .services .view-all-btn {
    display: none;
  }
  .services .res-view-all-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
}

.services .card-wrapper {
  margin-top: 30px;
}

.services .card-wrapper .card {
  width: 100%;
  height: 300px;
  border-radius: 25px;
  background: #DFFEF6;
  position: relative;
  padding-left: 16px;
  padding-top: 16px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  color: black;
  overflow: hidden;
}

.services .card-wrapper .card:hover {
  opacity: 0.9;
}

@media (max-width: 525px) {
  .services .card-wrapper .card {
    padding-left: 10px;
  }
}

.services .card-wrapper .card h5 {
  margin-bottom: 20px;
  padding-right: 15px;
}

.services .card-wrapper .card p {
  margin-bottom: 10px;
  padding-right: 16px;
}

@media (max-width: 525px) {
  .services .card-wrapper .card .flex .image {
    width: 170px !important;
  }
}

.services .card-wrapper .card .filled-btn {
  text-decoration: none;
  margin-bottom: 15px;
  padding: 0px 18px;
  width: 40%;
  margin-top: 30px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #222;
  color: white;
}

@media (max-width: 525px) {
  .services .card-wrapper .card .filled-btn {
    padding: 0px 8px;
    width: 35%;
    left: 10px;
  }
}

.services .card-wrapper .card .filled-btn a {
  color: white;
  text-decoration: none;
}

@media (max-width: 525px) {
  .services .card-wrapper .card .filled-btn {
    margin-bottom: 20px;
  }
}

.services .card-wrapper .card .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}

.services .card-wrapper .card .flex .image {
  width: 200px;
  margin-bottom: -5px;
}

.services .card-wrapper .card .flex .image img {
  width: 100%;
}

.services .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services .box h2 {
  margin-bottom: 20px;
}

.services .box .left {
  width: 100%;
}

.services .box .right {
  width: 100%;
}

.services .box .sub {
  margin-bottom: 20px;
}

.services .box .sub img {
  width: 100%;
}

.services .box .sub ul {
  padding-left: 28px;
}

.services .box .sub ul li {
  margin-bottom: 6px;
  line-height: 25px;
}

.services .box .sub p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .services .reorder .left {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .services .reorder .right {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}

.blogs {
  width: 100%;
  margin-top: 60px;
}

.blogs .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blogs .view-all {
  color: #00995D;
  text-decoration: none;
}

.blogs .res-view-all-btn {
  display: none;
}

@media (max-width: 525px) {
  .blogs .view-all-btn {
    display: none;
  }
  .blogs .res-view-all-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.blogs .card-wrapper {
  margin-top: 30px;
}

.blogs .card-wrapper .card {
  width: calc(100%/3 - 20px);
  text-decoration: none;
  color: black;
}

@media (max-width: 768px) {
  .blogs .card-wrapper .card {
    width: calc(100%/2 - 20px);
    margin-bottom: 40px;
  }
}

@media (max-width: 525px) {
  .blogs .card-wrapper .card {
    width: 100%;
  }
}

.blogs .card-wrapper .card .thumbnail {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 25px 25px 0px 0px;
  overflow: hidden;
}

.blogs .card-wrapper .card .thumbnail img {
  width: 100%;
}

.blogs .card-wrapper .card .date {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00995D;
  margin-bottom: 10px;
}

.blogs .card-wrapper .card .date .icon {
  margin-right: 10px;
  margin-top: 4px;
}

.blogs .card-wrapper .card .date .icon ion-icon {
  font-size: 17px;
}

.blogs .card-wrapper .card h5 {
  margin-bottom: 10px;
}

.blogs .card-wrapper .card p {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 3em;
  line-height: 1.5em;
  margin-bottom: 10px;
}

#testimonials {
  width: 100%;
  margin-top: 60px;
  border-radius: 25px;
  background: #DFFEF6;
  padding: 40px 0px 40px 30px;
}

@media (max-width: 525px) {
  #testimonials {
    padding: 40px 10px;
  }
}

#testimonials h2 {
  margin-bottom: 30px;
  text-align: center;
}

#testimonials p {
  margin-bottom: 40px;
  text-align: center;
}

#testimonials .card-wrapper .card {
  height: 260px;
  padding: 20px;
  border-radius: 25px;
  background: #FFF;
}

@media (max-width: 525px) {
  #testimonials .card-wrapper .card {
    padding: 14px;
  }
}

#testimonials .card-wrapper .card .icon {
  width: 100px;
  margin-bottom: 10px;
}

#testimonials .card-wrapper .card .icon img {
  width: 100%;
}

#testimonials .card-wrapper .card p {
  margin-bottom: 10px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 7.5em;
  line-height: 1.5em;
  margin-bottom: 15px;
}

@media (max-width: 525px) {
  #testimonials .card-wrapper .card p {
    max-height: 6em;
  }
}

#testimonials .card-wrapper .card .profile {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#testimonials .card-wrapper .card .profile .profile-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
}

#testimonials .card-wrapper .card .profile .profile-icon img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

#testimonials .card-wrapper .card .profile .profile-icon .country-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  bottom: -2px;
  right: 0px;
}

#testimonials .card-wrapper .card .profile .profile-icon .country-icon img {
  width: 100%;
  border-radius: 0px !important;
}

@media (max-width: 525px) {
  #testimonials .card-wrapper .card .profile .profile-icon {
    width: 40px;
    height: 40px;
  }
}

#testimonials .card-wrapper .card .profile .profile-details {
  width: calc(100% - 55px);
}

@media (max-width: 525px) {
  #testimonials .card-wrapper .card .profile .profile-details {
    width: calc(100% - 50px);
  }
}

#testimonials .card-wrapper .card .profile .profile-details .name {
  font-weight: 500;
  margin-bottom: 5px;
}

@media (max-width: 525px) {
  #testimonials .card-wrapper .card .profile .profile-details .name {
    font-size: 15px;
  }
}

#testimonials .card-wrapper .card .profile .profile-details .sub {
  font-size: 14px;
  font-weight: 400;
}

#partners {
  width: 100%;
  margin-top: 60px;
  background: rgba(230, 230, 230, 0.534);
  padding: 25px 15px;
}

#partners h2 {
  text-align: center;
  line-height: 20px;
}

#partners h2 .colored-text .line {
  bottom: -9px;
}

.card-wrapper {
  margin-top: 30px;
}

.card-wrapper .partner-logo {
  width: 100%;
  height: 150px;
}

.card-wrapper .partner-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

footer {
  width: 100%;
  background: #000;
  padding: 60px 0px;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .container #book-now {
  width: 80%;
  margin-top: -180px;
  padding: 50px 20px;
  background: #00995D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  border-radius: 20px;
  display: none;
}

@media (max-width: 768px) {
  footer .container #book-now {
    width: 100%;
  }
}

@media (max-width: 525px) {
  footer .container #book-now {
    padding: 20px 10px;
  }
}

footer .container #book-now h3 {
  color: white !important;
  margin-bottom: 10px;
  text-align: center;
}

footer .container #book-now p {
  margin-bottom: 30px;
  width: 69%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: justify;
}

@media (max-width: 525px) {
  footer .container #book-now p br {
    display: none;
  }
}

footer .container #book-now .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container #book-now .btn-wrap .filled-btn {
  background: #FFF;
  color: #00995D;
  text-decoration: none;
  margin-right: 20px;
  padding: 10px 15px;
}

footer .container #book-now .btn-wrap .contact-us-btn {
  font-weight: 700;
  color: white;
  text-decoration: none;
}

footer .container .box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 30px;
  margin-bottom: 40px;
}

@media (max-width: 525px) {
  footer .container .box-wrap {
    border-bottom: none;
  }
}

footer .container .box-wrap .box {
  margin-right: 20px;
}

footer .container .box-wrap .box:last-child {
  margin-right: 0px;
}

footer .container .box-wrap .box p {
  display: none;
}

footer .container .box-wrap .box .logo {
  width: 130px !important;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .container .box-wrap .box .logo img {
  width: 100%;
}

footer .container .box-wrap .box p,
footer .container .box-wrap .box li,
footer .container .box-wrap .box a {
  font-size: 14px;
  font-weight: 500;
  color: white;
}

footer .container .box-wrap .box li {
  list-style: none;
  margin-bottom: 10px;
}

footer .container .box-wrap .box a {
  text-decoration: none;
}

footer .container .box-wrap .box h6 {
  font-weight: 700;
  color: white !important;
  margin-bottom: 20px;
}

footer .container .box-wrap .b1 {
  width: 22%;
}

footer .container .box-wrap .b2 {
  width: 12%;
}

footer .container .box-wrap .b3 {
  width: 20%;
}

footer .container .box-wrap .b4 {
  width: 13%;
}

footer .container .box-wrap .b5 {
  width: 35%;
}

@media (max-width: 768px) {
  footer .container .box-wrap .box {
    margin-bottom: 30px;
  }
  footer .container .box-wrap .b1 {
    width: 36%;
  }
  footer .container .box-wrap .b2 {
    width: 15%;
  }
  footer .container .box-wrap .b3 {
    width: 40%;
  }
  footer .container .box-wrap .b4 {
    width: 30%;
  }
  footer .container .box-wrap .b5 {
    width: 50%;
  }
}

@media (max-width: 525px) {
  footer .container .box-wrap .box {
    margin-bottom: 30px;
  }
  footer .container .box-wrap .b1 {
    width: 100%;
  }
  footer .container .box-wrap .b2 {
    width: 100%;
  }
  footer .container .box-wrap .b3 {
    width: 100%;
  }
  footer .container .box-wrap .b4 {
    width: 100%;
  }
  footer .container .box-wrap .b5 {
    width: 100%;
  }
}

footer .container .copyright {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 525px) {
  footer .container .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .container .copyright p {
  font-size: 14px;
  font-weight: 500;
  color: white;
}

footer .container .copyright p a {
  text-decoration: none;
  color: white;
}

@media (max-width: 525px) {
  footer .container .copyright p {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

footer .container .copyright .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 525px) {
  footer .container .copyright .social-links {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}

footer .container .copyright .social-links .icon {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 39px;
  height: 39px;
  background: #00995D;
  border-radius: 100%;
}

footer .container .copyright .social-links .icon img {
  width: 20px;
}

footer .container .copyright .social-links .icon .resize-icon {
  width: 22px;
}

#about {
  margin-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #DFFEF6;
  padding: 30px;
  border-radius: 25px;
}

@media (max-width: 768px) {
  #about {
    margin-top: 40px;
  }
}

#about .right {
  width: 100%;
}

#about .left {
  width: 80%;
}

@media (max-width: 768px) {
  #about .left {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #about .left .counter:nth-child(1) {
    padding-left: 0px;
  }
  #about .left .counter:nth-child(2) {
    padding-right: 0px;
  }
  #about .left .counter:nth-child(3) {
    padding-left: 0px;
  }
  #about .left .counter:nth-child(4) {
    padding-right: 0px;
  }
}

#about .left .counter .counts {
  margin-right: 60px;
}

@media (max-width: 768px) {
  #about .left .counter .counts {
    padding: 8px;
    margin-right: 0px;
    width: calc(100%/2 - 10px);
  }
  #about .left .counter .counts span,
  #about .left .counter .counts p {
    text-align: center !important;
  }
}

#about h1 {
  margin-bottom: 20px;
}

.about-image {
  width: 100%;
  margin-top: 60px;
  border-radius: 25px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-image {
    margin-top: 30px;
  }
}

.about-image img {
  width: 100%;
}

.about-image.res-image {
  display: none;
}

@media (max-width: 768px) {
  .about-image.res-image {
    display: block;
    margin-top: 100px;
  }
  .about-image.res-image img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-image.desk-image {
    display: none;
  }
}

#why-choose-us {
  width: 100%;
  margin-top: 60px;
}

#why-choose-us h2 {
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 525px) {
  #why-choose-us h2 {
    text-align: left;
  }
}

#why-choose-us p {
  text-align: center;
}

@media (max-width: 525px) {
  #why-choose-us p {
    text-align: left;
  }
}

#why-choose-us .card-wrapper {
  margin-top: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#why-choose-us .card-wrapper .card {
  width: calc(100%/3 - 20px);
  border-radius: 25px;
  background: #FAFAFA;
  padding: 20px;
}

@media (max-width: 768px) {
  #why-choose-us .card-wrapper .card {
    width: calc(100%/2 - 20px);
    margin-bottom: 30px;
  }
  #why-choose-us .card-wrapper .card:last-child {
    margin-bottom: 0px;
  }
}

@media (max-width: 525px) {
  #why-choose-us .card-wrapper .card {
    width: 100%;
  }
}

#why-choose-us .card-wrapper .card .icon {
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFF6ED;
  border-radius: 100%;
}

#why-choose-us .card-wrapper .card .icon img {
  width: 32px;
}

#why-choose-us .card-wrapper .card h5 {
  margin-bottom: 10px;
}

#why-choose-us .card-wrapper .card p {
  text-align: left;
}

#mission-vision {
  width: 100%;
  margin-top: 60px;
  border-radius: 25px;
  background: #DFFEF6;
  padding: 30px;
}

@media (max-width: 525px) {
  #mission-vision {
    padding: 15px;
  }
}

#mission-vision .mission {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

#mission-vision .mission .res-mission-image {
  display: none;
}

@media (max-width: 768px) {
  #mission-vision .mission {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #mission-vision .mission .res-mission-image {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  #mission-vision .mission .res-mission-image img {
    width: 100%;
  }
}

#mission-vision .mission h2 {
  width: 47%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  #mission-vision .mission h2 {
    width: 100%;
  }
}

#mission-vision .mission p {
  width: 47%;
}

@media (max-width: 768px) {
  #mission-vision .mission p {
    width: 100%;
  }
}

#mission-vision .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  #mission-vision .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#mission-vision .box .left {
  width: 47%;
}

@media (max-width: 768px) {
  #mission-vision .box .left {
    display: none;
  }
}

#mission-vision .box .left img {
  width: 100%;
}

#mission-vision .box .vision {
  width: 47%;
}

@media (max-width: 768px) {
  #mission-vision .box .vision {
    width: 100%;
  }
}

#mission-vision .box .vision .image {
  width: 100%;
  margin-bottom: 20px;
}

#mission-vision .box .vision .image img {
  width: 100%;
}

#mission-vision .box .vision h2 {
  margin-bottom: 20px;
}

#about-believe {
  width: 100%;
  margin-top: 60px;
}

#about-believe .title {
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  #about-believe .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#about-believe .title h2 {
  width: 45%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  #about-believe .title h2 {
    width: 100%;
  }
}

#about-believe .title p {
  width: 45%;
}

@media (max-width: 768px) {
  #about-believe .title p {
    width: 100%;
  }
}

#about-features {
  margin-top: 30px;
}

#services {
  margin-top: 140px !important;
  min-height: 700px;
}

@media (max-width: 525px) {
  #services {
    margin-top: 130px;
  }
}

#services .card-wrapper {
  width: 100%;
}

#services .card-wrapper .card {
  width: calc(100%/3 - 10px) !important;
  height: 320px;
}

@media (max-width: 768px) {
  #services .card-wrapper .card {
    width: calc(100%/2 - 15px) !important;
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  #services .card-wrapper .card {
    width: 100% !important;
  }
}

.destination-about {
  width: 100%;
  margin-top: 150px;
  background: #DFFEF6;
  border-radius: 25px;
  padding: 40px 50px;
}

@media (max-width: 768px) {
  .destination-about {
    padding: 40px 20px;
    margin-top: 100px;
  }
}

.destination-about .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .destination-about .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.destination-about .box .left {
  width: 49%;
}

.destination-about .box .left .res-image {
  display: none;
}

@media (max-width: 768px) {
  .destination-about .box .left {
    width: 100%;
  }
  .destination-about .box .left h1 {
    margin-bottom: 20px;
  }
  .destination-about .box .left .res-image {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .destination-about .box .left .res-image img {
    width: 100%;
  }
}

.destination-about .box .right {
  width: 46%;
}

@media (max-width: 768px) {
  .destination-about .box .right {
    width: 100%;
  }
}

.destination-about .image {
  width: 100%;
}

@media (max-width: 768px) {
  .destination-about .image {
    display: none;
  }
}

.destination-about .image img {
  width: 100%;
}

.destination-why-choose {
  margin-top: 60px;
  margin-bottom: 60px;
}

.destination-why-choose h2 {
  margin-bottom: 30px;
}

.destination-why-choose h2 br {
  display: none;
}

.destination-why-choose .card-wrapper {
  margin-bottom: 30px;
}

.destination-why-choose .card-wrapper .card {
  width: calc(100%/4 - 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 768px) {
  .destination-why-choose .card-wrapper .card {
    width: calc(100%/2 - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 525px) {
  .destination-why-choose .card-wrapper .card {
    width: 100%;
    height: auto;
  }
}

.destination-why-choose .card-wrapper .card h6 {
  margin-bottom: 10px;
  font-weight: 700;
}

.destination-why-choose .image {
  width: 100%;
}

@media (max-width: 525px) {
  .destination-why-choose .image {
    display: none;
  }
}

.destination-why-choose .image img {
  width: 100%;
}

.destination-why-choose .res-image {
  display: none;
}

@media (max-width: 525px) {
  .destination-why-choose .res-image {
    display: block;
    width: 100%;
  }
}

.destination-why-choose .res-image img {
  width: 100%;
}

.accordions {
  width: 100%;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.accordions h2 {
  text-align: center;
  margin-bottom: 30px;
}

.accordions .accordion-wrap {
  width: 75%;
}

@media (max-width: 768px) {
  .accordions .accordion-wrap {
    width: 100%;
  }
}

.accordions .accordion-wrap .row {
  background: white;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
}

.accordions .accordion-wrap .row .question {
  font-weight: 700;
  margin-bottom: 0px;
  width: 95%;
}

.accordions .accordion-wrap .row .answer {
  display: none;
}

.accordions .accordion-wrap .row .icon {
  background: #F8F8F8;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

@media (max-width: 525px) {
  .accordions .accordion-wrap .row .icon {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

.accordions .accordion-wrap .row .icon .expand {
  display: block;
  width: 20px;
}

@media (max-width: 525px) {
  .accordions .accordion-wrap .row .icon .expand {
    width: 15px;
  }
}

.accordions .accordion-wrap .row .icon .contract {
  display: none;
}

.accordions .accordion-wrap .active-accordion .question {
  margin-bottom: 10px;
}

.accordions .accordion-wrap .active-accordion .answer {
  display: block;
  width: 95%;
}

@media (max-width: 525px) {
  .accordions .accordion-wrap .active-accordion .answer {
    width: 100%;
  }
}

.accordions .accordion-wrap .active-accordion .icon .contract {
  display: block;
  width: 20px;
}

@media (max-width: 525px) {
  .accordions .accordion-wrap .active-accordion .icon .contract {
    width: 15px;
  }
}

.accordions .accordion-wrap .active-accordion .icon .expand {
  display: none;
}

#contact-banner {
  width: 100%;
  height: 62vh;
  background: #DFFEF6;
  margin-top: 85px;
  padding-top: 70px;
}

@media (max-width: 768px) {
  #contact-banner {
    height: 70vh;
  }
}

@media (max-width: 525px) {
  #contact-banner {
    height: 60vh;
  }
}

#contact-banner h1 {
  text-align: center;
}

#contact-detaiils {
  width: 100%;
  background: white;
  border-radius: 25px;
  margin-top: -200px;
}

@media (max-width: 525px) {
  #contact-detaiils {
    margin-top: -300px;
  }
}

#contact-detaiils .box {
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  #contact-detaiils .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 15px;
  }
}

#contact-detaiils .box .left {
  width: 68%;
}

@media (max-width: 768px) {
  #contact-detaiils .box .left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #contact-detaiils .box .left iframe {
    height: 300px;
  }
}

#contact-detaiils .box .right {
  width: 28%;
}

@media (max-width: 768px) {
  #contact-detaiils .box .right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}

#contact-detaiils .box .right h4 {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 525px) {
  #contact-detaiils .box .right h4 {
    font-size: 25px;
    line-height: 10px;
  }
}

#contact-detaiils .box .right h5 {
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 525px) {
  #contact-detaiils .box .right h5 {
    font-size: 20px;
  }
}

#contact-detaiils .box .right p {
  font-weight: 500;
  font-size: 16px;
}

#contact-detaiils .box .right a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

#contact-detaiils .box .right .phoneno-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact-detaiils .box .right .phoneno-wrap a {
  margin-bottom: 0px;
}

#contact-form-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #contact-form-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#contact-form-section .left {
  width: 45%;
}

@media (max-width: 768px) {
  #contact-form-section .left {
    width: 100%;
  }
}

#contact-form-section .left h2 {
  margin-bottom: 30px;
}

#contact-form-section .right {
  width: 43%;
}

@media (max-width: 768px) {
  #contact-form-section .right {
    display: none;
  }
}

#contact-form-section .right img {
  width: 100%;
}

#list-blogs {
  margin-top: 150px;
}

#list-blogs .card-wrapper:after {
  content: '';
  width: calc(100%/3 - 20px);
}

#list-blogs .card-wrapper .card {
  margin-bottom: 30px;
}

#gallery {
  margin-top: 150px;
  display: none;
}

#gallery h1 {
  margin-bottom: 30px;
}

#gallery .card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  width: 100%;
}

#gallery .card-wrapper .card {
  width: calc(100%/3);
  margin-right: 20px;
  height: 310px;
  margin-bottom: 30px;
  border: none;
  border-radius: 10px;
}

#gallery .card-wrapper .card:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  #gallery .card-wrapper .card {
    width: calc(100% / 3);
  }
}

@media (max-width: 525px) {
  #gallery .card-wrapper .card {
    width: 100%;
  }
}

#gallery .card-wrapper .card .thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

#gallery .card-wrapper .card .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#gallery .card-wrapper .card .thumbnail .thumbnail-options {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primaryColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3px 6px;
  border-radius: 5px;
}

#gallery .card-wrapper .card .thumbnail .thumbnail-options .count {
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 8px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  background: #DFFEF6;
  color: #00995D;
  border-radius: 5px;
  background: #66FFD9;
}

#gallery .card-wrapper .card .thumbnail .thumbnail-options .icon {
  background: white;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#gallery .card-wrapper .card .thumbnail .thumbnail-options .icon img {
  width: 20px;
}

#gallery .card-wrapper .card .thumbnail .gradient {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 20%;
  border-radius: 0px 0px 25px 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}

#gallery .card-wrapper .card .thumbnail .gradient h6 {
  color: white !important;
}

#inner-gallery {
  margin-top: 150px;
  display: none;
}

#inner-gallery .card-wrapper {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#inner-gallery .card-wrapper .card {
  margin-bottom: 20px;
  cursor: pointer;
  width: calc(100%/4);
  margin-right: 20px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

#inner-gallery .card-wrapper .card:hover {
  opacity: 0.5;
}

#inner-gallery .card-wrapper .card img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#inner-gallery .card-wrapper .card .expand {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.28);
  position: absolute;
  top: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#inner-gallery .card-wrapper .card .expand img {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  #inner-gallery .card-wrapper .card {
    width: calc(100% / 2);
    margin-bottom: 10px;
  }
}

@media (max-width: 425px) {
  #inner-gallery .card-wrapper .card {
    width: 100%;
  }
}

#blog-content {
  width: 100%;
  margin-top: 150px;
}

@media (max-width: 425px) {
  #blog-content {
    margin-top: 130px;
  }
}

#blog-content .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  #blog-content .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#blog-content .box .box-left {
  width: 57%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 768px) {
  #blog-content .box .box-left {
    width: 100%;
  }
}

#blog-content .box .box-left .image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}

@media (max-width: 425px) {
  #blog-content .box .box-left .image {
    width: 100%;
  }
}

#blog-content .box .box-left .image img {
  width: 100%;
  height: 100%;
}

#blog-content .box .box-left .img-details {
  width: 100%;
}

@media (max-width: 425px) {
  #blog-content .box .box-left .img-details {
    padding: 5px 0;
  }
}

#blog-content .box .box-left .img-details .date-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00995D;
  margin-bottom: 20px;
}

#blog-content .box .box-left .img-details .date-wrap .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}

#blog-content .box .box-left .img-details .date-wrap .icon ion-icon {
  font-size: 16px;
}

#blog-content .box .box-left .img-details .date-wrap .date {
  font-size: 16px;
}

#blog-content .box .box-left .img-details .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

#blog-content .box .box-left .img-details .title h1 {
  font-size: 40px;
  font-weight: 700;
  color: #00995D !important;
}

@media (max-width: 768px) {
  #blog-content .box .box-left .img-details .title h1 {
    font-size: 36px;
  }
}

@media (max-width: 525px) {
  #blog-content .box .box-left .img-details .title h1 {
    font-size: 32px;
  }
}

#blog-content .box .box-left .img-details .details-wrap {
  width: 100%;
  margin-bottom: 30px;
}

#blog-content .box .box-left .img-details .details-wrap .sub-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

#blog-content .box .box-left .img-details .details-wrap .sub-title .line {
  content: '';
  width: 8px;
  height: auto;
  margin-right: 10px;
  background: #FF952B;
  display: block !important;
  border-radius: 5px;
}

#blog-content .box .box-left .img-details .details-wrap .sub-title h6 {
  line-height: 27px;
}

@media (max-width: 525px) {
  #blog-content .box .box-left .img-details .details-wrap .sub-title h6 {
    font-size: 18px;
    line-height: 24px;
  }
}

#blog-content .box .box-right {
  width: 40%;
}

@media (max-width: 768px) {
  #blog-content .box .box-right {
    width: 100%;
  }
}

#blog-content .box .box-right h5 {
  margin-bottom: 30px;
}

#blog-content .box .box-right .latest-posts {
  width: 100%;
}

#blog-content .box .box-right .latest-posts .card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  margin-bottom: 30px;
}

#blog-content .box .box-right .latest-posts .card .thumbnail {
  width: 36%;
  border-radius: 10px;
  overflow: hidden;
}

#blog-content .box .box-right .latest-posts .card .thumbnail img {
  width: 100%;
}

#blog-content .box .box-right .latest-posts .card .short-desc {
  width: 60%;
}

#blog-content .box .box-right .latest-posts .card .short-desc .date-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00995D;
  margin-bottom: 6px;
}

#blog-content .box .box-right .latest-posts .card .short-desc .date-wrap .icon {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#blog-content .box .box-right .latest-posts .card .short-desc .date-wrap .icon ion-icon {
  font-size: 14px;
}

#blog-content .box .box-right .latest-posts .card .short-desc .date-wrap .date {
  font-size: 14px;
}

#blog-content .box .box-right .latest-posts .card .short-desc h6 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 21px;
}

#blog-content .box .box-right .latest-posts .card .short-desc p {
  color: black;
}

#blog-content .box .box-right .form-box {
  border-radius: 20px;
  width: 100%;
  padding: 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.33);
  border-radius: 20px;
}

@media (max-width: 425px) {
  #blog-content .box .box-right .form-box {
    background: #ebebeb;
    border: none;
  }
}

#blog-content .box .box-right .form-box h5 {
  font-weight: 500;
  font-size: 25px;
  line-height: 128.4%;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 425px) {
  #blog-content .box .box-right .form-box h5 {
    font-size: 16px;
  }
}

#blog-content .box .box-right .form-box form .input-holder {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

#blog-content .box .box-right .form-box form .input-holder input,
#blog-content .box .box-right .form-box form .input-holder select {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.205);
  border-radius: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 54.4%;
  color: rgba(0, 0, 0, 0.247);
  text-indent: 10px;
  font-family: "Outfit";
  outline: none;
}

#blog-content .box .box-right .form-box form .input-holder input::-moz-placeholder, #blog-content .box .box-right .form-box form .input-holder input::placeholder,
#blog-content .box .box-right .form-box form .input-holder select::-moz-placeholder,
#blog-content .box .box-right .form-box form .input-holder select::placeholder {
  color: rgba(0, 0, 0, 0.247);
}

@media (max-width: 425px) {
  #blog-content .box .box-right .form-box form .input-holder input,
  #blog-content .box .box-right .form-box form .input-holder select {
    font-size: 12px;
    height: 40px;
  }
}

#blog-content .box .box-right .form-box form .filled-btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 54.4%;
  width: 100%;
  height: 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

@media (max-width: 425px) {
  #blog-content .box .box-right .form-box form .filled-btn {
    font-size: 14px;
    height: 40px;
  }
}

#book-consultation {
  padding: 150px 0px;
  background: #DFFEF6;
}

#book-consultation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#book-consultation .container h1 {
  margin-bottom: 10px;
  text-align: center;
}

#book-consultation .container p {
  margin-bottom: 30px;
  text-align: center;
}

#book-consultation .container form {
  width: 60%;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #book-consultation .container form {
    width: 100%;
  }
}

#book-consultation .container form .row .radiobtn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#book-consultation .container form .row .radiobtn-wrap .radiobtn-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  margin-top: -15px;
  height: 45px;
}

#book-consultation .container form .row .radiobtn-wrap .radiobtn-holder input {
  width: 16px;
  margin-right: 10px;
}

.policies {
  width: 100%;
  margin-top: 150px;
}

.policies .title h1 {
  margin-bottom: 10px;
  text-align: center;
}

.policies .title p {
  margin-bottom: 40px;
  text-align: center;
}

.policies .content {
  background: #DFFEF6;
  padding: 40px;
  border-radius: 25px;
}

@media (max-width: 525px) {
  .policies .content {
    padding: 20px 10px;
  }
}

.policies .content h2 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px;
}

.policies .content p {
  margin-bottom: 20px;
}

.policies .content ul {
  margin-bottom: 20px;
  padding-left: 40px;
}

@media (max-width: 525px) {
  .policies .content ul {
    padding-left: 20px;
  }
}

.policies .content ul li {
  margin-bottom: 10px;
}

#terms-conditions .title h1 {
  text-align: left !important;
  margin-bottom: 40px;
}

.courses {
  margin-top: 60px;
  width: 100%;
}

.courses .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.courses .title select {
  border-radius: 9px;
  border: 1px solid #FF952B !important;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.courses .view-all {
  color: #00995D;
  text-decoration: none;
}

.courses .res-view-all-btn {
  display: none;
}

@media (max-width: 525px) {
  .courses .view-all-btn {
    display: none;
  }
  .courses .res-view-all-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.courses .card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.courses .card-wrapper .card {
  width: calc(100%/4 - 10px);
  margin-right: 5px;
  border: 1px solid rgba(0, 153, 92, 0.246);
  padding: 15px;
  border-radius: 25px;
}

.courses .card-wrapper .card:hover .enquireCourse-btn {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 768px) {
  .courses .card-wrapper .card {
    width: calc(100%/2);
    margin-bottom: 20px;
  }
}

@media (max-width: 525px) {
  .courses .card-wrapper .card {
    width: 100%;
  }
}

.courses .card-wrapper .card .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #FF952B;
  border-radius: 100%;
  margin-bottom: 10px;
}

.courses .card-wrapper .card .icon img {
  width: 22px;
}

.courses .card-wrapper .card h6 {
  margin-bottom: 6px;
  font-weight: 600;
}

.courses .card-wrapper .card p {
  margin-bottom: 4px;
}

.courses .card-wrapper .card .duration {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.courses .card-wrapper .card .duration span {
  font-weight: 500;
}

.courses .card-wrapper .card .enquireCourse-btn {
  background: #FF952B;
  width: 120px;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.courses .card-wrapper .card .enquireCourse-btn ion-icon {
  margin-left: 5px;
}

#all-courses {
  margin-top: 130px;
}

#all-courses .card-wrapper .card {
  margin-bottom: 20px;
}

.enquiry-popup {
  position: fixed;
  z-index: 300;
  top: 0px;
  right: 0px;
  padding: 20px 12px;
  background: white;
  width: 380px;
  height: 100%;
  display: none;
}

@media (max-width: 525px) {
  .enquiry-popup {
    width: 100%;
  }
}

.enquiry-popup .title {
  width: 100%;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.enquiry-popup .close {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(221, 219, 219, 0.253);
  border-radius: 100%;
}

.enquiry-popup .close ion-icon {
  font-size: 22px;
}

.enquiry-popup form .row {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.enquiry-popup form .row .input-holder {
  width: 100%;
  margin-bottom: 15px;
}

.enquiry-popup form .row .input-holder textarea,
.enquiry-popup form .row .input-holder input,
.enquiry-popup form .row .input-holder select {
  border: 1px solid #2222224f !important;
  width: 100%;
}

.enquiry-popup form .row .split-2 {
  width: 100%;
}

.enquiry-popup form .filled-btn {
  width: 100%;
}

.enquiry-popup-active {
  display: block;
}

#home-about {
  display: none;
}

#home-features {
  display: none;
}

.courses {
  display: none;
}

footer #book-now {
  display: none;
}
/*# sourceMappingURL=style.css.map */