/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* FuturaPT Book */
/* NoirPro Regular */
@font-face {
  font-family: "Axiforma Light";
  src: url("../fonts/Kastelov\ -\ Axiforma\ Light.otf");
}

@font-face {
  font-family: "Axiforma SemiBold";
  src: url("../fonts/Kastelov\ -\ Axiforma\ SemiBold.otf");
}

@font-face {
  font-family: "FuturaPT Book";
  src: url("../fonts/FuturaPTBook.otf");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Axiforma Light", serif;
}

/* Colors */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #000000;
}

*:not(i){

  font-family: "Axiforma Light", serif;
}

body,
html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.15em;
  line-height: initial !important;
  font-family: "Axiforma Light", serif;
}

img {
  max-width: 100%;
  object-fit: contain;
}

/*****************************************************************************Reuseble*************************************************************************************/

.inner_section {
  width: 90%;
  margin: 0 auto;
}

.scrolled_header {
  position: fixed;
}

.transparent_heading {
  color: #000000;
  font-size: 4em;
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  opacity: .05;
}

.text_blue {
  color: #007ad0;
}

/*SECTION HEADINGS*/
.section_heading {
  text-transform: capitalize;
  font-size: 1.69em;
  margin-bottom: 35px;
  font-weight: lighter;
}


/*BUTTONS*/
.btn_container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn {
  padding: 15px 60px;
  font-size: 1em;
  text-transform: uppercase;
}

.cn-button,
.btn_blue {
  border: 2px solid #007ad0;
  color: #007ad0;
}

.cn-button:hover,
.btn_blue:hover {
  border: 2px solid #007ad0;
  background-color: #007ad0;
  color: white;
}

.default-page-wrapper p,
h1:not(.home_hero_heading) {
  width: 80%;
  margin-left: auto;
  margin-right: auto;

}

.cn-button{
  padding:5px 10px !important;
}

.default-page-wrapper p {
  margin-bottom: 30px;
}

.default-page-wrapper p:last-of-type {
  margin-bottom: 50px;
}

.h1:not(.home_hero_heading) {}


/*****************************************************************************Header section*************************************************************************************/
header,
header .inner_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

header {
  height: 120px;
  width: 100%;
  background: linear-gradient(90deg, #81bae3 0%, #0079cf 100%);
}

.logo_img {
  max-width: 90px;
}

.open_nav_btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  appearance: none;
}

.open_nav_btn span {
  position: absolute;
  left: 0;
  display: block;
  height: 2px;
  border-radius: 2px;
  width: 100%;
  transition: top .2s .25s, opacity .2s .25s, transform .2s 0s, backgroud .2s .3s;
  background-color: white;
}

.open_nav_btn span:nth-child(2) {
  top: 14px;
  right: 0;
  left: auto;
}

.open_nav_btn span:nth-child(1) {
  top: 6px;
}

.open_nav_btn span:nth-child(3) {
  top: 22px;
}

.active_hero_btn span {
  transition: background .2s, top .2s, opacity .2s, transform .2s .25s;
}

.active_hero_btn span:nth-child(1),
.active_hero_btn span:nth-child(3) {
  top: 14px;
  left: 0;
  width: 100%;
}

.active_hero_btn span:nth-child(2) {
  opacity: 0;
}

.active_hero_btn span:nth-child(1) {
  transform: rotate(45deg);
}

.active_hero_btn span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav_container {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: linear-gradient(90deg, #81bae3 0%, #0079cf 100%);
}

.dropdown-menu {
  display: block;
  text-align: right;
  padding: 20px 50px;
}

.dropdown-menu ul:first-of-type,
.dropdown-menu ul:nth-of-type(2) {
  border-bottom: 1px solid #0079cf;
}

.dropdown-menu ul:nth-of-type(2) {
  padding-top: 20px;
}

.dropdown-menu ul:nth-of-type(2) i {
  margin-right: 5px;
}

.dropdown-menu li {
  margin: 0 0 25px 0;
}

.dropdown-menu i {
  color: white;
}

.dropdown-menu>ul>li>a {
  font-size: 1em;
  color: white;
}

.dropdown-menu>ul>li>ul>li>a {
  font-size: 1em;
  text-transform: uppercase;
}

.dropdown-item {
  text-transform: capitalize;
}

.dropdown-item ul li {
  font-weight: 350;
}

.active_menu {
  display: block;
  animation-name: fadeInMenu;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeInMenu {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dropdown_social_container {
  padding-top: 20px;
}

.dropdown_social_container a {
  font-size: 20px;
  margin-right: 30px;
}

.dropdown_social_container a:last-of-type {
  margin-right: 0;
}


/***************************************************************HOME HERO SECTION*/


.home_hero {
  position: relative;
  /* overflow-x: hidden; */
  padding-top: 20px;
  background: linear-gradient(90deg, #81bae3 0%, #0079cf 100%);
}

.home_hero .inner_section {
  position: relative;
}

.home_hero_slider .swiper-slide {
  display: block;
}

.home_hero .transparent_heading,
.hero_ball {
  position: absolute;
}

.hero_ball {
  bottom: 18px;
  height: auto !important;
  width: 100%;
  padding: 10px;
}

.home_hero .transparent_heading:first-of-type {
  top: 21%;
  left: 7%;
}

.home_hero .transparent_heading:last-of-type {
  top: 35%;
  right: -15%;
}

.hero_slider_text_container {
  padding-top: 25px;
  padding-left: 10px;
}

.home_hero_heading {
  color: white;
  font-size: 1.95em;
  text-transform: uppercase;
  width: 72%;
}

.home_hero_text {
  color: white;
  font-size: .945em;
  width: 92.1%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.home_hero .swiper-button-next::after,
.home_hero .swiper-rtl .swiper-button-prev::after,
.home_hero .swiper-button-prev::after,
.home_hero .swiper-rtl .swiper-button-prev::after {
  content: "";
}

.home_hero .swiper_controll_container {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 20px;
}

.home_hero .swiper-button-prev i,
.home_hero .swiper-rtl .swiper-button-next i,
.home_hero .swiper-button-next i,
.home_hero .swiper-rtl .swiper-button-prev i {
  color: white;
  font-size: 17px;
}

.home_hero .swiper-button-prev,
.home_hero .swiper-rtl .swiper-button-next {
  left: 0;
}

.home_hero .swiper-button-next,
.home_hero .swiper-rtl .swiper-button-prev {
  right: auto;
  left: 30px;
}

.home_hero .swiper-horizontal>.swiper-pagination-bullets,
.home_hero .swiper-pagination-bullets.swiper-pagination-horizontal,
.home_hero .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -10px;
  right: 0px;
  left: auto;
  width: 20%;
}

.home_hero .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid white
}

.home_hero .swiper-pagination-bullet-active {
  background-color: white;
}

.home_hero .swiper-slide img {
  margin-top: 50px;
  margin-bottom: -10px;
}


.subscribe_hero {
  display: none;
}


/***************************************************************ABOUT SECTION*/

.about {
  padding: 60px 0;
}

.about .section_heading_container {
  margin-bottom: 40px;
  text-align: center;
}

/***************************************************************VIDEO SECTION*/
.video_section {
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 60px 0 100px 0;
}

.video_section:after,
.faqs::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/wave1-mobile.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  position: absolute;
  bottom: 0;
  left: 0%;
  pointer-events: none;
}

.template_img_container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.template_img_title {
  font-size: 1.7em;
  text-align: center;
  width: 80%;
  margin: 0 auto 40px auto;
  font-family: "Axiforma Light";
}

.template_img_container .video_container {
  position: relative;
  border-radius: 30px;
  z-index: 2;
  overflow: hidden;
}

.container_video_slider .template_img_container .video_container {
  position: relative;
  border-radius: 0;
}

/* .template_img_container .play_btn{
  position: absolute;
  cursor: pointer;
  top: 55%;
  left: 40%;
  z-index: 9;
  pointer-events: none;
} */

.play_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.template_img_container .video_container img {
  min-height: 250px;
  max-height: 560px;
  object-fit: cover;
}

.template_img_container .play_btn img {
  min-height: 50px;
  max-height: 50px;
  object-fit: cover;
}

.template_img_container .play_btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video_section .rect {
  display: block;
  position: absolute;
  margin: -100% 5% 0 5%;
  width: 90%;
  height: 200px;
  z-index: 1;
  background-image: url(../images/rect.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}


/***************************************************************PROCEDURES SECTION*/
.proc_section {
  position: relative;
  padding: 65px 0;
}

.proc_section .inner_section {
  width: 80%;
}

.proc_section .section_heading {
  text-align: center;
}

.proc_section .inner_section a {
  margin-left: auto;
  margin-right: auto;
}

.procedure {
  margin-bottom: 40px;
}

.procedure_img_container {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0 auto 45px 0;
}

.procedure_img_container .img_container {
  /* margin-left: 35px; */
  margin-top: 10px;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  height: 250px;
  width: 250px;
}

.procedure:nth-of-type(odd) .procedure_img_container .rect {
  left: 35px;
}


.procedure_img_container .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.procedure_img_container .rect {
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
  height: 250px;
  width: 250px;
}

.procedure_title {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 350;
}

/***************************************************************PROCEDURES SECTION*/

.descriprion_section {
  position: relative;
  padding: 65px 0 69px 0;
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}


.descriprion_section:after {
  content: "";
  width: 150%;
  height: 100%;
  background: url(../images/wave3.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -44%;
  right: -100%;
  pointer-events: none;
}


.descriprion_section .inner_section {
  width: 80%;
}

.descriprion_section .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.descriprion_section .swiper-wrapper .swiper-slide {
  height: auto !important;
}

.description_swiper .card {
  display: block;
  height: 100%;
  background-color: white;
  border: 1px solid #6d508a;
  border-radius: 30px;
  padding: 25px 20px 35px 20px;
}

.description_swiper .card_img {
  width:270px !important;
  height: 275px !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.description_swiper .card_img img {
  object-fit: contain;
}

.description_card_title {
  font-size: 1em;
  text-align: center;
  margin-bottom: 20px;
}

.description_card_text {
  text-align: center;
  font-size: .9em;
}

.descriprion_section .swiper_controll_container {
  position: relative;
  height: 30px;
  margin-top: 30px;
  width: 29%;
  margin-left: auto;
  margin-right: auto;
max-width: 200px;
}

.descriprion_section .swiper_controll_container * {
  font-size: 20px;
}

.descriprion_section .swiper_controll_container i{
	border-radius: 50%;
    padding: 5px;
    border: 2px solid black;

}

.descriprion_section .swiper-button-next::after,
.descriprion_section .swiper-rtl .swiper-button-prev::after,
.descriprion_section .swiper-button-prev::after,
.descriprion_section .swiper-rtl .swiper-button-prev::after {
  content: "";
}



/***********************************************Tabs*****************************************************/
.faqs {
  position: relative;
  padding: 65px 0;
}

.wave_bal_faqs {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: -10%;
  left: -40%;
  z-index: 1;
}

.faqs .section_heading {
  text-align: center;
}

.tabs {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  z-index: 2;
}

.tab {
  padding: 20px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 30px;
  background-color: #ddf0fe;
  border: 1px solid #007ad0;
}

.tab_heading_container {
  display: flex;
  position: relative;
  padding: 10px 0;
}

.tab_heading_container p {
  width: 83%;
  font-size: 1.25em !important;
  font-family: "Axiforma Light", serif;
}

.tab_content_container {
  display: none;
  padding: 20px 0;
  color: #577280;
  border-top: 1px solid #d1d9dc;
}

.tab_content_container p {
  font-size: 1.13em;
}

.active {
  display: block !important;
}

.inactive {
  display: none !important;
}

.tab .open_tab,
.tab .close_tab {
  position: absolute;
  right: 0;
  top: 10px;
}

.close_tab {
  display: none;
}



/***************************************************************BEFORE AFTER SECTION*/

.before_after_section {
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 65px 0;
  z-index: 2;
}

.before_after_section .section_heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.before_after_section .section_heading_container p {
  font-size: 17px;
}

.template_ba_swiper .swiper-button-next,
.template_ba_swiper .swiper-button-prev {
  position: relative;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  height: auto;
}

.template_ba_swiper .navigation_container {
  justify-content: space-between !important;
}

.template_ba_swiper .swiper-button-next {
  flex-direction: row;
}

.template_ba_swiper .swiper-button-prev {
  flex-direction: row;
}


.template_ba_swiper .swiper-button-next::after,
.template_ba_swiper .swiper-button-prev::after {
  content: "";
}

.template_ba_swiper .navigation_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}

.template_ba_swiper .navigation_container i {
  height: 100%;
  font-size: 20px;
  cursor: pointer;
}

.template_ba_swiper .navigation_container i {
  color: black;
}


.template_ba_swiper .swiper-button-prev:focus i,
.template_ba_swiper .swiper-button-next:focus i,
.template_ba_swiper .swiper-button-prev:focus p,
.template_ba_swiper .swiper-button-next:focus p {
  color: #17254b !important;
}

.template_ba_swiper .swiper-wrapper {
  margin-bottom: 40px;
}

.template_ba_swiper .swiper-slide {
  position: relative;
  border-radius: 30px;
  overflow: hidden;

  min-height: 300px !important;
  min-width: 300px !important;
}

.template_ba_swiper .swiper-slide>p {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.template_ba_swiper .swiper-slide .container1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
}







/***************************************************************WHERE TO FIND SECTION*/
.where_section {
  position: relative;
  padding: 65px 0;

}

.where_section .transparent_heading {
  width: 80%;
  left: 10%;
  right: 10%;
  font-size: 3em;
  position: absolute;
  top: -40px;
  text-align: center;
  opacity: .08;
  z-index: 3;
  pointer-events: none;
}

.where_section .section_heading {
  text-align: center;
}

.find_swiper .swiper-slide {
  height: auto;
}

.find_swiper .card {
  display: block;
  height: 100%;
  width: 100%;
  background-color: white;
  border: 1px solid #6d508a;
  border-radius: 30px;
  padding: 25px 20px 35px 20px;
}


.find_swiper .swiper-button-next::after,
.find_swiper .swiper-button-prev::after,
.find_swiper .swiper-button-next::after,
.find_swiper .swiper-button-prev::after {
  content: "";
}

.find_swiper .card_img {
  height: 85px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.find_swiper .swiper-slide img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.find_swiper .card_img img {
  object-fit: contain;
}

.find_swiper .card_body a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.find_swiper .card_body a p {
  font-size: 16px;
}

.find_swiper .card_body i {
  color: #007ad0;
  width: 15px;
  margin-right: 10px;
}

.blue_link {
  color: #007ad0;
  text-decoration: underline;
}

.find_swiper .swiper_controll_container {
  position: relative;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  height: 50px;
  width: 30%;

}

.find_swiper .swiper_controll_container i {
  border-radius: 50%;
  padding: 5px;
  border: 2px solid black;
}


/**************************************************************************FOOTER*/
footer {
  background-image: url(../images/footer_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 60px 25px 0 25px;
  position: relative;
}

footer object {
  position: absolute;
  bottom: 0;
  right: 0;
  height: auto;
  z-index: 9;
  pointer-event: none;
  opacity: .1 !important;
}

.back_top {
  display: flex;
  position: absolute;
  top: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background-color: #007ad0;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
}

.back_top i {
  color: white;
  margin-right: 0;
}

footer a {
  display: flex;
  color: white;
}

footer i {
  color: white;
  font-size: 20px;
  margin-right: 20px;
}

footer p {
  color: white;
  font-size: 18px;
  font-weight: lighter;
}

.location {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding-top: 26px;
}

.location a:first-of-type {
  margin-bottom: 40px;
}

.location a:last-of-type {
  margin-bottom: 26px;
}

.subscribe_footer_container {
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
}

.subscribe_footer_container p {
  width: 100%;
  margin-bottom: 20px;
}

.map {
  width: 100%;
  height: 100%;
  margin-bottom: 26px;
  position: relative;
  z-index: 10;
}

.reserved {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.reserved * {
  font-size: 13px;

  display: block;
  text-align: center;
}

.fab {
  font-family: "Font Awesome 5 Brands";
}