/* HOSPITALS PAGE STYLE 991 line */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0 auto;
  padding: 0 auto;
  box-sizing: border-box;
  font-family: Roboto;
}

body {
  overflow-x: hidden;
}
.contanier {
  width: 90%;
  margin: 0 auto;
}
.row {
  display: flex;
}

/* LANG MENU */
/* Стили для ссылки */
.language-link {
  cursor: pointer;
  text-decoration: underline;
  color: #00A3D0;
}

/* Стили для меню */
.language-menu {
  display: none;
  position: absolute;
  text-align: center;
  right: 116px;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .language-menu {
    top: 80px;
    right: 0px;
  }
}

/* Стили для элементов меню */
.language-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Стили для элементов меню при наведении */
.language-menu a:hover {
  background-color: #ddd;
}

/* WHATSAPP ICON */

.hidden {
  display: none;
}

.sticky-button {
  position: fixed;
  background-color: #25d366;
  bottom: 20px;
  right: 20px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 320px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #505050;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25d366;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: "just now";
  display: inline-block;
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button svg {
  width: 20px;
  height: 20px;
  fill: #505050;
  margin-left: auto;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
}

.chat-menu:checked + .sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

/* HEADER START */

.header {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  z-index: 10;
  /* background: #ffffff75; */
  /* background-color: #313131; */
  background: white;
}

header {
	 display: -webkit-box;
	 display: -moz-box;
	 display: -ms-flexbox;
	 display: -webkit-flex;
	 display: flex;
	 max-width: 80%;
	 margin: 0 auto;
}
 /* h1 {
	 color: #fff;
	 margin: 5px;
	 padding: 0px;
} */

.header_logo {
  width: 8%;
}

.header_logo img {
  width: 100%;
  display: block;
}

.container {
  margin: 10px auto;
  max-width: 1200px;
  padding: 10px;
}

/* --- Hamburger Functionality --- */

.mob_lang {
  /* display: none; */
  display: flex;
  align-items: center;
  /* border: 1px dotted red; */
}

div.menu-link {
  padding: 1em;
  color: black;
}

/* When screen is small, center content and animate transitions. */
nav[role=navigation] {
  clear: both;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  margin: 70px 0px 0px -50px;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Positioning when nav does appear in small screen mode */
nav[role=navigation].open {
  max-height: 100vh;
  /* margin-bottom: 10px; */
  margin-top: 80px;
}

/* When in small screen, center the list */
nav[role=navigation] ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav[role=navigation] ul li {
  list-style: none;
  /* border-bottom: 1px solid #EEE; */
}

nav[role=navigation] li a {
  display: block;
  padding: 0.8em;
  /* color: #fff; */
  color: #444;
  text-decoration: none;
  /* text-align: center; */
}

/* Style for larger screens. Hide the menu button, and show the normal navigation menu. */
/* Credit: https://codepen.io/bradfrost/pen/sHvaz */
@media screen and (min-width: 65em) {
  div.menu-link {
    display: none;
  }

  nav[role=navigation] {
    max-height: none;
    margin: 0px;
  }

  nav[role=navigation] ul {
    margin: 0 0 0 -0.25em;
    border: 0;
    text-align: right;
  }

  nav[role=navigation] li {
    display: inline-block;
    margin: 0 0.25em;
  }

  nav[role=navigation] li a {
    border: 0;
  }
}

@media screen and (max-width: 65em) {
  .header {
    /* border: 1px dotted red; */
    /* height: 8vh; */
    padding-bottom: 0px;
    padding-top: 10px !important;
  }

  .desk_lang {
    display: none;
  }

  .mob_lang {
    display: block;
    position: absolute;
    top: 24px;
    right: 80px;
  }

  .mob_lang a {
    color: black;
    text-decoration: none;
  }

  .header_logo {
    width: 25%;
  }

  div.menu-link .icon {
    /* top: 30px !important; */
    top: 50px;
  }

  div.menu-link .icon:before {
    width: 25px !important;
    height: 3px !important;
  }

  div.menu-link .icon {
    width: 25px !important;
    height: 3px !important;
  }

  div.menu-link .icon:after {
    width: 25px !important;
    height: 3px !important;
  }

  nav[role=navigation] ul li {
    border-bottom: 1px solid #EEE;
  }
}

@media screen and (max-width: 45em) {
  div.menu-link .icon {
    top: 30px !important;
  }

  nav[role=navigation] ul li {
    border-bottom: 1px solid #EEE;
  }
}

/* --- Hamburger Appearance & Animation --- */
/* Credit: https://codepen.io/mblode/pen/evjfn */
div.menu-link {
  width: 30px;
  top: 100px;
  left: 120px;
  transition-duration: 0.5s;
}

div.menu-link .icon {
  transition-duration: 0.5s;
  position: absolute;
  height: 4px;
  width: 30px;
  top: 40px;
  background-color: black;
}

div.menu-link .icon:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: black;
  content: "";
  top: -10px;
}

div.menu-link .icon:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: black;
  content: "";
  top: 10px;
}

div.menu-link.open .icon {
  transition-duration: 0.5s;
  background: transparent;
}

div.menu-link.open .icon:before {
  transform: rotateZ(45deg) scaleX(1.25) translate(6.5px, 6.5px);
}

div.menu-link.open .icon:after {
  transform: rotateZ(-45deg) scaleX(1.25) translate(6px, -6px);
}

div.menu-link:hover {
  cursor: pointer;
}
/* SLIDER WRAPPER STYLES */

.slider_wrapper {
  position: relative;
}

.owl-nav {
  top: 50%;
  width: 100%;
  position: absolute;
}

.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 20px;
  padding: 20px;
}

.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 20px;
}

.owl-carousel .owl-nav button.owl-prev img {
  width: 90%;
}

.owl-carousel .owl-nav button.owl-next img {
  width: 90%;
}

.green_color {
  color: #9dca4b;
}

.blue_color {
  color: #00a3d0;
}

.slide_card {
  height: 100vh;
}

.first_slide_card {
  height: 100%;
  display: flex;
  justify-content: start;
}

.first_left_side {
  width: 50%;
  display: flex;
  align-items: center;
  background: #ecf3df;
}

.first_cont_title {
  width: 80%;
  text-align: center;
  margin-bottom: 30px;
}

.first_cont_title h1 {
  color: black;
  font-size: 3vw;
  font-family: "Roboto", sans-serif;
}

.first_cont_desc {
  width: 60%;
  margin-bottom: 30px;
  text-align: center;
}

.first_cont_desc p {
  color: black;
  font-family: "Roboto", sans-serif;
}

.first_cont_button {
  text-align: center;
}
/*how it works*/
.howItWorks {
  width: 100%;
  margin-top: 4%;
}
.howTitle {
  display: flex;
  flex-direction: column;
}
.howTitle span {
  width: 24%;
  height: 4px;
  color: #9dca4b;
  background-color: #9dca4b;
  border-radius: 5px;
  display: inline-block;
}
.howTitle h2 {
  font-size: 50px;
  font-weight: bold;
}
.howItWorks .howSteps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3%;
  width: 100%;
}

.howItWorks .howSteps .step1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33.3%;
}
.howItWorks .howSteps .step1 .step {
  background-color: #00a3d0;
  border-radius: 50%;
  padding: 5%;
}

.step p {
  display: block;
}

.text {
  display: block;
}

.item p {
  display: block;
}

.howItWorks .howSteps .step1 .text {
  width: 60%;
  font-size: 20px;
  text-align: center;
  color: #000000;
}



.first_cont_button a button {
  width: 30%;
  height: 40px;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 5px;
  color: black;
  background: none;
  cursor: pointer;
  font-weight: 500;
  border: 2px solid #00a3d0;
  transition: all 0.3s ease 0s;
}

.first_cont_button a button:hover {
  background: #00a3d0;
}

.first_right_side {
  width: 50%;
  display: flex;
  align-items: end;
  background: #9dca4b;
}

.first_right_side img {
  width: 60% !important;
  display: block;
}

.second_card {
  height: 100%;
  background: url(../img/second_slider_bg.png) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second_cont {
  width: 50%;
  text-align: center;
  color: white;
  font-family: "Roboto", sans-serif;
}

.second_title {
  color: #9dca4b;
  margin-bottom: 20px;
}

.second_desc {
  margin-bottom: 30px;
}

.second_link a {
  color: #00a3d0;
}

.third_card {
  background: url(../img/third_slide_bg.png) no-repeat;
  background-size: cover;
}

.main {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  font-family: "Roboto", sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #9dca4b;
  font-size: 4rem;
}

.roller {
  height: 4.125rem;
  line-height: 4rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#spare-time {
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 1rem;
  margin-top: 0;
  color: #a8dadc;
}

.roller #rolltext {
  position: absolute;
  top: 0;
  animation: slide 5s infinite;
}

@keyframes slide {
  0% {
    top: 0;
  }

  25% {
    top: -4rem;
  }

  50% {
    top: -8rem;
  }

  72.5% {
    top: -12.25rem;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    text-align: center;
    text-transform: uppercase;
    color: #f1faee;
    font-size: 2.125rem;
  }

  .roller {
    height: 2.6rem;
    line-height: 2.125rem;
  }

  #spare-time {
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }

  .roller #rolltext {
    animation: slide-mob 5s infinite;
  }

  @keyframes slide-mob {
    0% {
      top: 0;
    }

    25% {
      top: -2.125rem;
    }

    50% {
      top: -4.25rem;
    }

    72.5% {
      top: -6.375rem;
    }
  }
}

/* SWIZ SECTION STYLES */

.swiz_title_wrapper {
  padding-top: 80px;
  background: #ECF3DF;
  text-align: center;
}

.swiz_title {
  width: 60%;
  margin: 0 auto;
}

.swiz_title img {
  width: 20%;
  display: block;
  margin-bottom: 20px;
}

.swiz_sec_wrapper {
  background: #ECF3DF;
  padding: 80px 0px 80px 0px;
}

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

.swiz_sec_row {
  display: flex;
}

.swiz_left {
  width: 50%;
  position: relative;
}

.swiz_sec_row_title {
  width: 80%;
}

.swiz_sec_row_title h2 {
  font-size: 2vw;
}

.swiz_sec_row_desc {
  display: flex;
  justify-content: start;
}

.swiz_sec_row_desc p {
  width: 60%;
  color: black;
}

.swiz_right {
  width: 50%;
  position: relative;
}

.swiz_right img {
  width: 100%;
  display: block;
}

.swiz_cont {
  position: absolute;
  top: 20px;
  /* left: 20px; */
}

.swiz_cont_title{
  color: #00A3D0;
  padding-left: 20px;
  margin-bottom: 50px;
}

.swiz_cont_desc {
  width: 60%;
  text-align: center;
  opacity: 0;
  color: black;
  transition: all 0.3s ease 0s;
}

.swiz_right:hover .swiz_cont_desc {
  opacity: 1;
  background: #00000057;
  padding: 20px;
  border-radius: 20px;
}

.swiz_left:hover .swiz_cont_desc {
  opacity: 1;
  background: #00000057;
  padding: 20px;
  border-radius: 20px
}

.swiz_second_row {
  margin-top: 1%;
  margin-bottom: 1%;
}

.second_row_left {
  width: 40%;
  margin-right: 0.5%;
}

.second_row_left img {
  width: 100%;
  display: block;
}

.second_row_right {
  width: 60%;
  margin-left: 0.5%;
}

.second_row_right img {
  width: 100%;
  height: 100%;
}

.swiz_third_row {
  margin-top: 0.5%;
}

.swiz_third_left {
  width: 60%;
  margin-right: 0.5%;
}

.swiz_third_left img {
  width: 100%;
  height: 100%;
  display: block;
}

.swiz_third_right {
  width: 40%;
  margin-left: 0.5%
}

.swiz_third_right img {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1000px) {
  .swiz_sec_row {
    flex-direction: column;
  }

  .swiz_left {
    width: 100%;
  }

  .swiz_sec_row_title h2 {
    font-size: 5vw;
  }

  .swiz_sec_row_desc p {
    text-align: center;
    margin-bottom: 20px;
  }

  .swiz_right {
    width: 100%;
  }

  .swiz_cont_desc {
    opacity: 1;
    background: #00000057;
    padding: 20px;
    border-radius: 20px;
  }

  .second_row_right {
    margin-left: 0;
    margin-top: 1%;
  }

  .second_row_right img {
    height: 250px;
  }
}

/* SWIZ SECTION */

/* --- QUALITY --- */

.quality_section_wrapper {
  padding: 60px 0px 60px 0px;
  background: #ecf3df;
}

.quality_section {
  width: 90%;
}

.quality_title {
  margin-bottom: 40px;
}

.quality_title h2 {
  color: #000000;
  font-size: 3vw;
  font-family: "Roboto", sans-serif;
}

.quality_row {
  display: flex;
}

.quality_card {
  width: 30%;
  padding: 20px;
  background: #9dca4b;
  border-radius: 20px;
  box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.2);
}

.quality_card h2,
p {
  color: white;
  font-family: "Roboto", sans-serif;
}

.quality_left {
  text-align: center;
  margin-bottom: 20px;
}

.quality_left img {
  width: 20%;
}

.quality_right {
  text-align: center;
  margin-bottom: 10px;
}

.quality_lower {
  text-align: center;
}

/* HOSPITALS STYLES */

.hospital_section_wrapper {
  padding: 60px 0px 60px 0px;
  background: url(../img/main_tour_bg.png) no-repeat;
  background-size: cover;
}

.hospital_section {
  width: 90%;
}

.hospital_main_title {
  margin-bottom: 30px;
}

.hospital_main_title h2 {
  color: white;
  font-size: 3vw;
  font-family: "Roboto", sans-serif;
}

.hosp_card_wrapper {
  color: white;
  margin-bottom: 40px;
}

.hosp_card {
  width: 90%;
}

.hosp_img {
  background: #cccccc;
}

.hosp_lower {
  padding: 20px;
  background: #9dca4b;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.hosp_title {
  margin-bottom: 20px;
}

.hosp_title h3 {
  font-size: 2vw;
  font-family: "Roboto", sans-serif;
}

.hosp_location {
  margin-bottom: 10px;
}

.hosp_location p {
  font-family: "Roboto", sans-serif;
}

.hosp_link a {
  color: #00a3d0;
  font-family: "Roboto", sans-serif;
}

.hospital_carousel .owl-nav button.owl-prev {
  left: -40px;
}

.hospital_carousel .owl-nav button.owl-next {
  right: -40px;
}

/* TOURS STYLES */

.tour_main_title {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.tour_main_title h2 {
  font-size: 3vw;
  font-family: "Roboto", sans-serif;
}

.tours_wrapper {
  background: #ecf3df;
  padding: 60px 0px 60px 0px;
}

.tours {
  width: 90%;
  margin-bottom: 40px;
}

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

.tour_title {
  margin-bottom: 20px;
}

.tour_title h2 {
  font-family: "Roboto", sans-serif;
}

.tour_desc {
  margin-bottom: 20px;
}

.tour_desc ul li {
  font-family: "Roboto", sans-serif;
}

.tour_number {
  text-align: center;
}

.tour_number a {
  color: #00a3d0;
  font-family: "Roboto", sans-serif;
}

.tour_card_text_cont {
  padding: 20px;
  background: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.tours_carousel .owl-nav button.owl-prev {
  left: -40px;
}

.tours_carousel .owl-nav button.owl-next {
  right: -40px;
}

.tour_more_button {
  text-align: center;
}

.tour_more_button a button {
  width: 15%;
  height: 40px;
  box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.2);
  background: none;
  border-radius: 10px;
  border: 2px solid #9dca4b;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.tour_more_button a button:hover {
  color: white;
  background: #9dca4b;
}

/* ABOUT SECTION STYLES */

.about_sec_wrapper {
  background: #ecf3df;
  padding-top: 60px;
  padding-bottom: 60px;
}

.about_sec {
  width: 90%;
}

.about_main_title {
  margin-bottom: 100px;
}

.about_main_title h2 {
  font-size: 3vw;
  font-family: "Roboto", sans-serif;
}

.about_upper {
  margin-bottom: 100px;
  text-align: center;
  position: relative;
  /* height: 450px; */
  display: flex;
  align-items: center;
  /* border: 1px dotted red; */
}

.about_upper_vid_cover {
  /* width: 50%;
  height: 98%; */
  width: 648px;
  height: 364.500px;
  position: relative;
  transition: all 0.3s ease 0s;
  /* border: 1px dotted black; */
}

.about_upper_vid_cover:hover {
  transform: scale(1.025) !important;
}

.about_upper_vid_cover iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1400px) {
  .about_upper_vid_cover {
    width: 648px;
    height: 365px;
  }
}

@media screen and (max-width: 1400px) {
  .about_upper_vid_cover {
    width: 558px;
    height: 314px;
  }
}

@media screen and (max-width: 1200px) {
  .about_upper_vid_cover {
    width: 468px;
    height: 263px;
  }
}

@media screen and (max-width: 1000px) {
  .about_upper_vid_cover {
    width: 348px;
    height: 195px;
  }
}

/* @media screen and (max-width: 1000px) {
  .about_upper_vid_cover {
    height: 70%;
  }
}

@media screen and (max-width: 1400px) {
  .about_upper_vid_cover {
    height: 65%;
  }
} */

/* .about_upper iframe {
  width: 50%;
  height: 24vw;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* border-radius: 20px; */
/* } */

/* .about_upper iframe:hover .ytp-cued-thumbnail-overlay-image { */
  /* width: 50.5%;
  height: 24.5vw; */
  /* background-size: 110% !important; */
/* } */

.about_lower_wrapper {
  display: flex;
}

.about_lower_left {
  width: 50%;
}

.about_lower_left img {
  width: 90%;
}

.about_lower_right {
  width: 50%;
}

.about_lower_right_title {
  text-align: center;
}

.about_lower_right_title h2 {
  color: black;
  font-family: "Roboto", sans-serif;
  margin-bottom: 30px;
}

.about_lower_right_desc {
  width: 60%;
  text-align: center;
  margin-bottom: 20px;
}

.about_lower_right_desc p {
  display: block;
  color: black;
  font-family: "Roboto", sans-serif;
}

.about_more {
  text-align: center;
}

.about_more a {
  color: #00a3d0;
  font-family: "Roboto", sans-serif;
}

/* LEARN MORE */

.upper_more {
  padding: 25px;
  text-align: center;
  background: #e9fcc5;
}

.upper_more h2 {
  font-family: "Roboto", sans-serif;
}

.lower_more {
  padding: 25px;
  text-align: center;
  background: #9dca4b;
}

.lower_more a button {
  width: 15%;
  height: 40px;
  background: white;
  color: #9dca4b;
  border-radius: 10px;
  outline: none;
  border: none;
  box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.lower_more a button:hover {
  color: white;
  background: #00a3d0;
}

/* Partners */

.partners_section_wrapper {
  padding-top: 60px;
  background: #e9fcc5;
}

.partners_section {
  width: 90%;
}

.partner_card {
  width: 50%;
}

/* CONTACT US */

.main_p_contact_wrapper {
  background: url(../img/contact_us.png) no-repeat;
  background-size: cover;
  color: white;
  padding: 80px 0px 80px 0px;
}

.main_p_contact {
  width: 90%;
  margin: 0 auto;
  display: flex;
}

.main_p_contact_left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main_p_contact_left_upper h2 {
  font-size: 2vw;
  font-family: "Roboto", sans-serif;
}

.main_p_contact_left_lower_media_images {
  text-align: center;
}

.main_p_contact_left_lower_media_images a img {
  width: 2vw;
}

.main_p_contact_left_lower_media_images a:not(:last-child) {
  margin-right: 20px;
}

.main_p_contact_right {
  width: 60%;
}

.main_p_contact_right form {
  width: 60%;
}

.main_p_contact_right label {
  color: white;
  font-family: "Roboto", sans-serif;
}

.main_p_contact_right input {
  width: 100%;
  height: 50px;
  color: white;
  background: #ffffff40;
  border: 2px solid #9dca4b;
  border-radius: 8px;
  padding-left: 10px;
  outline: none;
}

.main_p_contact_right input::placeholder {
  color: #b0b0b0;
  opacity: 1;
  /* Firefox */
}

#messabox {
  width: 100%;
  height: 120px;
  border: 2px solid #9dca4b;
  border-radius: 8px;
  padding: 10px 0px 0px 10px;
  font-family: "Roboto", sans-serif;
  background: #ffffff40;
  color: grey;
}

.main_p_contact_right button {
  width: 30%;
  height: 40px;
  background: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #9dca4b;
  transition: all 0.3s ease 0s;
}

.main_p_contact_right button:hover {
  background: #9dca4b;
}

/* FOOTER STYLES */

.footer_wrapper {
  padding: 60px 0px 20px 0px;
}

footer {
  width: 90%;
  display: flex;
  margin-bottom: 40px;
}

.footer_left_side {
  width: 30%;
}

.footer_logo {
  margin-bottom: 40px;
}

.footer_info ul li {
  list-style: none;
  font-family: "Roboto", sans-serif;
}

.footer_info ul li a {
  color: black;
  font-size: 15px;
}

.footer_info ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer_phone img {
  width: 6%;
  margin-right: 15px;
}

.footer_location img {
  width: 5%;
  margin-right: 15px;
}

.footer_mail img {
  width: 6%;
  margin-right: 15px;
}

.footer_middle_side {
  width: 30%;
}

.footer_middle_side h3 {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}

.footer_middle_side ul li {
  list-style: none;
  font-family: "Roboto", sans-serif;
}

.footer_middle_side ul li a {
  color: black;
}

.footer_middle_side ul li:not(:last-child) {
  margin-bottom: 15px;
  /* border: 1px dotted red; */
}

.footer_right_side {
  width: 30%;
}

.footer_right_side iframe {
  width: 100%;
  height: 400px;
}

.note_footer {
  text-align: center;
}

.note_footer a {
  color: black;
  font-size: 1vw;
  font-family: "Roboto", sans-serif;
}

.parallax {
  height: 100vh;
  background-image: url('../img/parallax.jpg'); /* Arka plan resmi */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  max-width: 1500px !important;
}

.parallax-inner {
  position: relative;
  z-index: 999;
  width: 100%;
}

.content {
  padding: 20px;
  background-color: #f0f0f0;
}

/* HOSPITALS PAGE STYLES */

.hospital_preview {
  /* height: 50vh; */
  background: url(../img/hospitals/hospitals_bg.png) no-repeat;
  background-size: cover;
  padding: 7vw 0vw 4vw 0vw;
}

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

.hospital_prev_title h2 {
  color: #9dca4b;
  font-size: 3.5vw;
  font-family: "Roboto", sans-serif;
}

.hospital_prev_description {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.hospital_prev_description p {
  font-size: 1.5vw;
}

.hos_cards_preview_wrapper {
  padding-top: 40px;
}

.hospital_cards_preview {
  width: 100%;
  margin: 0 auto;
}

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

.hospital_cards_preview_title h2 {
  font-size: 2vw;
  font-family: "Roboto", sans-serif;
}

.cardBox {
  float: left;
  font-size: 1.2em;
  margin: 1% 0 0 1%;
  perspective: 800px;
  transition: all 0.3s ease 0s;
  width: 23.7%;
  color: black;
  font-family: "Roboto", sans-serif;
}

.cardBox:hover .card {
  transform: rotateY(180deg);
}

.card {
  /* background: #222; */
  cursor: default;
  height: 200px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease 0s;
  width: 100%;
  /* width: 28vw; */
  -webkit-animation: giro 1s 1;
  animation: giro 1s 1;
  border-radius: 30px;
}

.card p {
  margin-bottom: 1.8em;
}

.card .front,
.card .back {
  backface-visibility: hidden;
  box-sizing: border-box;
  color: white;
  display: block;
  font-size: 1.5vw;
  height: 100%;
  padding: 0.8em;
  position: absolute;
  text-align: center;
  width: 100%;
  border-radius: 30px;
}

@media screen and (max-width: 1000px) {
  .card .front,
  .card .back {
    font-size: 4vw;
  }
}

.card .front {
  background: hsla(193, 100%, 41%, 1);
  background: linear-gradient(45deg, hsla(193, 100%, 41%, 1) 0%, hsla(81, 55%, 54%, 1) 100%);
  background: -moz-linear-gradient(45deg, hsla(193, 100%, 41%, 1) 0%, hsla(81, 55%, 54%, 1) 100%);
  background: -webkit-linear-gradient(45deg, hsla(193, 100%, 41%, 1) 0%, hsla(81, 55%, 54%, 1) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00A3D0", endColorstr="#9DCA4B", GradientType=1);

  /* color: black;
  border: 2px solid #00A3D0; */
}

.card .front img {
  width: 50%;
  /* border: 1px solid red; */
}

.card .back {
  transform: rotateY(180deg);
}

.card .back a {
  padding: 0.3em 0.5em;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 1px;
  font-size: 0.9em;
  transition: all 0.2s ease 0s;
}

.card .back a:hover {
  background: #fff;
  color: #333;
  text-shadow: 0 0 1px #333;
}

.cardBox .card .back {
  background: #9dca4b;
}

@-webkit-keyframes giro {
  from {
    transform: rotateY(180deg);
  }

  to {
    transform: rotateY(0deg);
  }
}

@keyframes giro {
  from {
    transform: rotateY(180deg);
  }

  to {
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .cardBox {
    margin-left: 2.8%;
    margin-top: 3%;
    width: 46%;
  }

 
  .card {
    height: 285px;
  }

  .cardBox:last-child {
    margin-bottom: 3%;
  }
  .about-upper{
    width: 100%;
  }
  .tour{
    gap: 40px;
  }
  .category a{
    width: 50% !important;
  }
  .tour-card{
    width: 50% !important;
  }
  .category{
    width: 50% !important;
  }
  .hospital_cards_preview_title h2{
    font-size: 25px
  }
  .hospital_prev_description p{
    font-size: 14px !important;
  }
}

@media screen and (max-width: 480px) {
  .cardBox {
    width: 94.5%;
  }

  .card {
    height: 260px;
  }
  .about-upper{
    width: 100%;
  }
  .tour{
    gap: 40px;
  }
  .category a{
    width: 80% !important;
  }
  .category{
    width: 80% !important;
  }
  .hospital_cards_preview_title h2{
    font-size: 25px
  }
  .hospital_prev_description p{
    font-size: 14px !important;
  }
}
/* HOSPITALS PAGE END */

/* ADAPTATION */

@media only screen and (max-width: 900px) {

  .slide_card {
    /* height:fit-content; */
  }

  .first_slide_card {
    flex-direction: column;
  }

  .first_left_side {
    width: 100%;
    height: 50%;
    padding: 100px 0px 20px 0px;
  }

  .first_cont_title h1 {
    font-size: 5vw;
  }

  .first_cont_desc p {
    font-size: 3.5vw;
  }

  .first_right_side {
    width: 100%;
    height: 50%;
  }

  /* QUALITY SECTION */

  .quality_title h2 {
    font-size: 6vw;
  }

  .quality_row {
    flex-direction: column;
  }

  .quality_card {
    width: 90%;
    margin-bottom: 40px;
  }

  /* HOSPITALS */

  .hospital_main_title h2 {
    font-size: 6vw;
  }

  .hosp_card {
    width: 75%;
  }

  .hosp_title h3 {
    font-size: 4.5vw;
  }

  .hospital_carousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .hospital_carousel .owl-nav button.owl-next {
    right: -20px;
  }

  .tour_more_button a button {
    width: 60%;
  }

  /* TOURS ADAPTIVE */

  .tour_main_title h2 {
    font-size: 6vw;
  }

  .tour_card {
    width: 75%;
  }

  .tours_carousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .tours_carousel .owl-nav button.owl-next {
    right: -20px;
  }

  /* ABOUT PAGE */

  .about_upper_vid_cover iframe {
    position: relative;
    /* height: 205px; */
  }

  .about_main_title h2 {
    font-size: 6vw;
  }

  .about_lower_wrapper {
    flex-direction: column;
  }

  .about_lower_left {
    width: 100%;
    text-align: center;
  }
  

  .about_lower_right {
    width: 100%;
  }

  .about_lower_right_desc {
    width: 90%;
  }

  /* GET HELP SECTION ADAPTIVE */

  .lower_more a button {
    width: 50%;
  }

  /* CONTACT SECTION */

  .main_p_contact {
    flex-direction: column;
  }

  .main_p_contact_left {
    width: 100%;
    margin-bottom: 40px;
  }

  .main_p_contact_left_upper h2 {
    font-size: 4.5vw;
    margin-bottom: 40px;
  }

  .main_p_contact_left_lower_media_images a img {
    width: 4.5vw;
  }

  .main_p_contact_right {
    width: 100%;
  }

  /* footer */

  footer {
    flex-direction: column;
  }

  .footer_left_side {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer_middle_side {
    width: 100%;
    margin-bottom: 40px;
    /* text-align: center; */
  }

  .footer_right_side {
    width: 100%;
  }

  .note_footer a {
    font-size: 2vw;
  }
}



.main_p_contact_left_upper h2 {
  color: #fff;
  font-family: Roboto;
  font-size: 50px;
  font-style: normal;
  font-weight: bold;
}

.main_p_contact_left_lower h2 {
  text-align: center;
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.4px;
}




@media screen and (max-width:960px) {
    .doctors{
        width: 100%;
        
    }
    .doctors.row h2{
        font-size: 28px;
    }
    .allDoctors .box{
        flex-direction: column;
        gap: 10px;
    }
   .groupAsistance{
    display: flex;
    flex-direction: column;
   }
}

@media screen and (max-width:500px) {
    .doctors{
        width: 100%;
    }
    .doctors.row h2{
        font-size: 20px;
    }
    .allDoctors .box .cardWrapper{
       width: 100%;
    }
    .allDoctors .box .cardWrapper img{
        width: 100%;
    }

}

@media screen and (max-width:960px) {
    .medicalTour{
        width: 100%;
    }
    .textInfo h2{
        font-size: 25px !important;
    }
    .textInfo p{
        font-size: 18px !important;
    } 
    .discover{
        width: 100%;
    }
    .row h2{
        font-size: 25px !important;
    }
    .category{
        width: 60%;
    }
    .tour{
        flex-wrap: wrap;
        width: 60%;
    }
   .medicalComponents{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
   }
   .rightComp img{
    width: 60%;
   }
   .medicalComponents .rightComp{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
   }

   /* IFRAME SECTION */

   /* .about_upper iframe {
      width: 100% !important;
      height: 60%;
   }

   .about_upper iframe:hover {
    
   } */

   .about_upper_vid_cover {
    width: 100%;
    height: 50%;
   }
}


@media screen and (max-width:750px) {
    .category{
        width: 80%;
        flex-direction: column;
        align-items: center;
        
        margin:5% 0 0 0 ;
    }
    .howItWorks .howSteps{
      flex-direction: column;
    }
    .howTitle h2{
      font-size: 35px !important;
    }
    .main_p_contact_left_upper h2{
      font-size: 30px !important;
    }
    .category a{
        width: 50%;
        margin: 0 0 3% 0;
    }
    .contanier h2 {
        font-size: 25px;
    }
    .about-upper p{
        font-size: 15px;
    }
    .main_p_contact_left_upper h2{
        font-size: 30px;
    }
    .groupAsistance img{
        width: 50%;
    }
    .textGroup{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    tr{
        display: flex;
        flex-direction: column;
    }
    .table table td span{
        font-size: 20px;
    }
    .tableSec .tableText h2{
        font-size: 20px;
    }
    .table table td{
        font-size: 18px;
    }
    .airportComp{
        display: flex;
        flex-direction: column;
    }
    .airportComp .rightComp h2{
        font-size: 25px !important;
    }
    .airportComp .rightComp p{
        font-size: 20px;
    }
    .airportComp .rightComp .second{
        font-size: 20px;
    }
    .howItWorks .howSteps .step1{
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
    .groupAsistance .textGroup p{
        width: 80%;
        margin: 0;
    }
    .parallax .row{
      flex-wrap: wrap;
      width: 100%;
    }
    .parallax .row .row1{
      margin-bottom: 25px;
    }
    .tour-card{
      width: 90% !important;
    }
    .about-upper{
      width: 100% !important;
    }
}

.medicalTour {
  width: 100%;
}


.howTitle h2{
  color: #000;
font-family: Roboto;
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 70px; /* 140% */
letter-spacing: 1px;
}

.category {
  display: flex;
  gap: 20px;
}

.content {
  display: none;
}

.content.active {
  display: block;
}

.content p{
  color: black;
  font-size: 40px;
}


.medicalTour .row {
  background-image: url(../img/medical/main_tour_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
}

.medicalTour .row .textInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  
}

.medicalTour .row .textInfo h2 {
  color: #9dca4b;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.medicalTour .row .textInfo p {
  color: #fff;
  font-family: Roboto;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.discover {
  width: 100%;
  background-color: #ecf3df;
}
.discover .row {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.discover .row h2 {
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 5%;
}
.category {
  display: flex;
  width: 38%;
  margin-top: 4%;
  align-items: center;
  justify-content: center;
}
.category a {
  margin-right: 5%;
  text-decoration: none;
  list-style: none;
  border-radius: 20px;
  border: 2px solid #000;
  padding: 3%;
  width: 35%;
  height: 63px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5%;
}
.discover .row span {
  width: 195px;
  height: 2px;
  display: inline-block;
  background: #00a3d0;
}

/*tours*/
.tour {
  width: 90%;
  margin-bottom: 40px;
  display: flex;
}

.tour-card {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 4px 13px 5px 0px rgba(0,0,0,0.75);
}

.tour-title {
  margin-bottom: 20px;
}

.tour-title h2 {
  font-family: "Roboto", sans-serif;
}

.tour-desc {
  margin-bottom: 20px;
}

.tour-desc ul li {
  font-family: "Roboto", sans-serif;
}

.tour-number {
  text-align: center;
  padding-bottom: 4%;
}

.tour-number a {
  color: #00a3d0;
  font-family: "Roboto", sans-serif;
}

.tour-img {
  width: 100%;
}

.tour-img img {
  width: 100%;
}
.tour-card_text_cont{
  padding: 6%;
}
/* .videoSec {
  width: 100%;
  margin-top: 5%;
}

.videoSec .contanier {
  width: 85%;
} */
.videoSec h2 {
  color: #000;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}

.about-upper {
  /* width: 85%;
  height: 100%;
  padding: 5%; */
  padding-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.about-upper p {
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  width: 76%;
  margin-top: 2%;
}


.customerInfo {
  display: flex;
  gap: 5%;
  width: 100%;
}

.customerInfo .name {
  width: 50%;
}

.customerInfo .surname {
  width: 50%;
}

.main_p_contact_left_upper h2 {
  color: #fff;
  font-family: Roboto;
  font-size: 50px;
  font-style: normal;
  font-weight: bold;
}

.main_p_contact_left_lower h2 {
  text-align: center;
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.4px;
}



.category {
    display: flex;
    gap: 20px;
  }

  .content {
    display: none;
  }

  .content.active {
    display: block;
  }

  .content p{
    color: black;
    font-size: 40px;
  }



  .parallax {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    position: relative;
    max-width: 1340px;
  }

  .parallax .container {
    width: 100%;
    height: 100%;
    background-image: url(../img/parallax.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
  }

  .parallax .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .parallax .row {
    display: flex;
    justify-content: space-around;
    color: white;
  }

  .row1 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
.row1 p {
  font-size: 30px;
}
  .row1 i {
    font-size: 2rem;
  }

  .row1 p span{
    font-size: 16px;
  }

  swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }

  


  .clientsMessage{
    width: 100%;
    background-color: #ecf3df;
  }

  .clientsMessage .row{
    flex-direction: column;
  }


  .owlCard{
    display: flex !important;
    height: 60vh;

  }
.owl-drag{
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.clientsMessage .row h2{
  margin-top: 5%;
  color: #000;
font-family: Roboto;
font-size: 50px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.owl-carousel .owl-nav button.owl-prev{
  font-size: 30px !important;
  position: absolute !important;
}
.owl-theme .owl-dots{
  display: none;
}
.owl-carousel .owl-nav button.owl-next{
  font-size: 30px !important;
}
.owlCard .item{
  box-shadow: 0 0 15px 5px rgb(255 255 255 / 8%);
    background: #9dca4b;
    border-radius: 6px;
    padding-top: 45px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 10;
    transition: transform 0.3s;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10%;
    height: 250px;
}


