.content_3_first_slider {
  min-height: 80vh;
  position: relative;
}
.content_3_first_slider .content_3_slides {
  width: 100%;
}
.content_3_first_slider article {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  position: absolute;
  left: 0;
  top: 0;
}
.content_3_first_slider article.active img {
  opacity: 1;
  transition-delay: 0s;
  transform: scale(1.01);
}
.content_3_first_slider article.active h2 {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.45s;
}
.content_3_first_slider article.active p {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.6s;
}
.content_3_first_slider article::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000000 0.26%, rgba(0, 0, 0, 0.1) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.content_3_first_slider .content_3_inner {
  position: relative;
  z-index: 1;
}
.content_3_first_slider img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  opacity: 0;
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 0.3s;
}
.content_3_first_slider .content_3_inner {
  max-width: 480px;
  text-align: center;
  color: #fff;
}
.content_3_first_slider h2 {
  padding: 0 0 30px;
  font-size: 48px;
  line-height: 1.33;
  font-weight: 600;
  opacity: 0;
  transform: translate(0, -40px);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 0s;
}
.content_3_first_slider p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  opacity: 0;
  transform: translate(0, -30px);
  transition: 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 0s;
}
.content_3_first_slider .content_3_arrows a {
  display: block;
  width: 60px;
  height: 60px;
  box-shadow: inset 0 0 0 1px #fff;
  position: absolute;
  right: 20px;
  top: calc(50% - 30px);
  border-radius: 50%;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_first_slider .content_3_arrows a:hover {
  background-color: #08254D;
}
.content_3_first_slider .content_3_arrows a::before {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  left: calc(50% - 4px);
  width: 14px;
  height: 14px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translate(-50%, -50%) rotate(45deg);
}
.content_3_first_slider .content_3_arrows a.prev {
  left: 20px;
  transform: rotate(180deg);
}

.content_3_categories_wrapper {
  padding: 80px 0;
}
.content_3_categories_wrapper > div {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.content_3_header_sides {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 40px;
}
.content_3_header_sides h2 {
  font-size: 36px;
  line-height: 1.33;
  font-weight: 600;
}
.content_3_header_sides .link a {
  display: inline-block;
  background-color: #06AED5;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 20px;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 24px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_header_sides .link a:hover {
  background: #157f97;
}

.content_3_hotels_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 30px;
  padding: 0 0 60px;
}
.content_3_hotels_grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}

.content_3_hotel_item {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.content_3_hotel_item:hover img {
  transform: scale(1.05);
}
.content_3_hotel_item .image {
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.content_3_hotel_item .image::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, rgba(8, 37, 77, 0) 0%, rgba(8, 37, 77, 0) 100%);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 1;
}
.content_3_hotel_item .image a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.content_3_hotel_item span {
  display: inline-block;
  padding: 8px 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.33;
  background-color: #F0C808;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 1;
}
.content_3_hotel_item img {
  width: 100%;
  transition: 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_hotel_item .inner {
  padding: 24px;
  line-height: 1.5;
}
.content_3_hotel_item a {
  color: #08254D;
  text-decoration: none;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_hotel_item a:hover {
  color: #0a91b0;
}
.content_3_hotel_item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
}
.content_3_hotel_item p {
  padding: 0 0 4px;
  font-size: 14px;
  color: rgba(8, 37, 77, 0.6);
}
.content_3_hotel_item h4 {
  font-size: 14px;
  font-weight: 600;
}
.content_3_hotel_item .link {
  padding: 12px 0 0;
}
.content_3_hotel_item .link a {
  display: inline-block;
  background-color: #06AED5;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 24px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_hotel_item .link a:hover {
  background: #157f97;
}

.content_3_stars em {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.9em;
  margin-right: 0.9em;
  margin-bottom: 2em;
  border-right: 0.3em solid transparent;
  border-bottom: 0.7em solid #F0C808;
  border-left: 0.3em solid transparent;
  font-size: 8px;
}
.content_3_stars em::before, .content_3_stars em::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.6em;
  left: -1em;
  border-right: 1em solid transparent;
  border-bottom: 0.7em solid #F0C808;
  border-left: 1em solid transparent;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}
.content_3_stars em::after {
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.content_3_faq_wrapper {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.content_3_faq_wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(8, 37, 77, 0.75);
  position: absolute;
  left: 0;
  bottom: 0;
}
.content_3_faq_wrapper > div {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content_3_faq_wrapper h2 {
  padding: 0;
  margin: 0 0 40px;
  font-size: 48px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.content_3_faq_wrapper h2::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F0C808;
  position: absolute;
  left: calc(50% - 40px);
  top: 100%;
}

.content_3_faq_accordion {
  max-width: 900px;
  margin: 0 auto;
}
.content_3_faq_accordion article {
  background-color: rgba(8, 37, 77, 0.1);
  margin: 0 0 12px;
  box-shadow: inset 0 0 0 1px rgba(240, 200, 8, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_faq_accordion article.show_me {
  background-color: #08254d;
}
.content_3_faq_accordion article.show_me h4 a::before {
  transform: rotate(135deg);
}
.content_3_faq_accordion h4 a {
  display: block;
  width: 100%;
  padding: 20px 64px 20px 32px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.62;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_faq_accordion h4 a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url(../img/accordion_plus.svg);
  background-size: contain;
  position: absolute;
  right: 16px;
  top: calc(50% - 16px);
  transform: rotate(0deg);
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_faq_accordion .inner {
  height: 0;
  padding: 0 32px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: justify;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_faq_accordion .inner p {
  padding: 0 0 16px;
}

.content_3_uni_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  background-color: #08254D;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50%;
  position: relative;
}
.content_3_uni_head::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 37, 77, 0.8);
}
.content_3_uni_head > div {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  position: relative;
}
.content_3_uni_head h1 {
  padding: 90px 0 20px;
  font-size: 48px;
  line-height: 1.33;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.content_3_about_wrapper {
  padding: 80px 0 60px;
  position: relative;
}
.content_3_about_wrapper > div {
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.content_3_about_sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
}
.content_3_about_sides .image {
  position: relative;
}
.content_3_about_sides img {
  max-width: 100%;
}
.content_3_about_sides h2 {
  padding: 0 0 12px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
}
.content_3_about_sides .text {
  font-size: 16px;
  line-height: 1.33;
  color: rgba(0, 0, 0, 0.75);
}
.content_3_about_sides .text p {
  padding: 0 0 20px;
}
.content_3_about_sides li {
  padding: 0 0 0 16px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.33;
  color: #08254D;
  position: relative;
}
.content_3_about_sides li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  box-shadow: inset 0 0 0 2px #08254D;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

.content_3_advantages_wrapper {
  padding: 120px 0 120px;
  background-size: cover;
  background-position: 50%;
  position: relative;
}
.content_3_advantages_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 37, 77, 0.8);
}
.content_3_advantages_wrapper > div {
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.content_3_advantages_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 30px;
}
.content_3_advantages_grid article {
  text-align: center;
}
.content_3_advantages_grid h3 {
  padding: 0 0 20px;
  font-size: 48px;
  line-height: 1.33;
  font-weight: 600;
  color: #fff;
}
.content_3_advantages_grid p {
  font-size: 16px;
  line-height: 1.33;
  color: #F0C808;
}

.content_3_team_wrapper {
  padding: 60px 0 60px;
}
.content_3_team_wrapper > div {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content_3_team_wrapper h2 {
  padding: 0 0 20px;
  font-size: 36px;
  line-height: 1.33;
  font-weight: 600;
}

.content_3_team_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 20px;
}

.content_3_team_item {
  position: relative;
}
.content_3_team_item .image {
  font-size: 0;
}
.content_3_team_item img {
  width: 100%;
}
.content_3_team_item .inner {
  padding: 20px 0;
  line-height: 1.33;
  text-align: center;
}
.content_3_team_item h3 {
  padding: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}
.content_3_team_item p {
  padding: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  color: #06AED5;
}
.content_3_team_item ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content_3_team_item li {
  display: inline-block;
  padding: 0 8px;
}
.content_3_team_item li img {
  width: 24px;
}
.content_3_team_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.content_3_contacts_wrapper {
  padding: 60px 0;
}
.content_3_contacts_wrapper > div {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.content_3_contact_map {
  padding: 0 0 40px;
}
.content_3_contact_map iframe {
  width: 100%;
  height: 480px;
}

.content_3_contact_sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 60px;
}

.content_3_cotacts_info header {
  padding: 0 0 32px;
  margin: 0 0 32px;
  color: #000;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}
.content_3_cotacts_info header p {
  font-size: 14px;
  line-height: 1.33;
  color: rgba(0, 0, 0, 0.75);
}
.content_3_cotacts_info h2 {
  padding: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.33;
}

.content_3_contacts_list li {
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content_3_contacts_list p {
  padding: 0 0 2px;
  font-size: 14px;
  line-height: 1.33;
  color: #333;
}
.content_3_contacts_list h3 {
  flex-basis: 50%;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
.content_3_contacts_list h3 a {
  color: #08254D;
  text-decoration: none;
}

.content_3_contacts_form {
  padding: 48px;
  background-color: white;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
}
.content_3_contacts_form h2 {
  padding: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: #08254D;
  line-height: 1.33;
}
.content_3_contacts_form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 16px;
}

.content_3_input_item {
  margin: 0 0 16px;
}
.content_3_input_item input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_input_item input::placeholder {
  color: rgba(97, 102, 121, 0.5);
}
.content_3_input_item input:focus {
  border-color: rgba(0, 0, 0, 0.4);
}
.content_3_input_item textarea {
  display: block;
  width: 100%;
  height: 120px;
  padding: 20px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 1.2;
  resize: none;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_input_item textarea::placeholder {
  color: rgba(97, 102, 121, 0.5);
}
.content_3_input_item textarea:focus {
  border-color: rgba(0, 0, 0, 0.4);
}

.content_3_form_button a, .content_3_form_button button {
  display: block;
  width: 100%;
  padding: 8px 60px;
  border: none;
  font-size: 17px;
  line-height: 1.64;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background-color: #08254D;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_form_button a:hover, .content_3_form_button button:hover {
  background-color: #06AED5;
}
.content_3_form_button a:disabled, .content_3_form_button button:disabled {
  background-color: rgba(0, 0, 0, 0.3);
  cursor: auto;
}

.content_3_uni_wrapper {
  padding: 60px 0;
}
.content_3_uni_wrapper > div {
  max-width: 1080px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.content_3_content_text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.75);
}
.content_3_content_text::after {
  content: "";
  display: block;
  clear: both;
}
.content_3_content_text p {
  padding: 0 0 20px;
}
.content_3_content_text h3 {
  padding: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #08254D;
  position: relative;
}
.content_3_content_text h3::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 14px;
}
.content_3_content_text strong {
  font-weight: 600;
}
.content_3_content_text hr {
  height: 1px;
  margin: 0 0 20px;
  border: none;
  border-bottom: 1px dashed #08254D;
}
.content_3_content_text ul {
  padding: 0 0 20px;
}
.content_3_content_text li {
  margin: 0 0 12px;
  padding: 0 0 0 20px;
  position: relative;
}
.content_3_content_text li::before {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 12px;
  width: 6px;
  border-bottom: 2px solid #08254D;
  border-right: 2px solid #08254D;
  position: absolute;
  left: 0;
  top: 2px;
}

.content_3_testimonials_wrapper {
  padding: 60px 0;
  background-color: #ffffff;
}
.content_3_testimonials_wrapper > div {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content_3_testimonials_wrapper h2 {
  padding: 0 0 30px;
  font-size: 36px;
  line-height: 1.33;
  font-weight: 600;
  text-align: center;
}

.content_3_testimonials_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 40px;
  padding: 0 0 90px;
}
.content_3_testimonials_grid article {
  padding: 32px 24px;
  background-color: #f0f0f0;
}
.content_3_testimonials_grid p {
  padding: 20px 0 30px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.75);
}

.content_3_person {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content_3_person img {
  width: 50px;
  border-radius: 50%;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.content_3_person div {
  width: calc(100% - 64px);
}
.content_3_person h3 {
  padding: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}
.content_3_person span {
  padding: 0 0 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}

.content_3_cta_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  padding: 48px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  position: relative;
}
.content_3_cta_block::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_cta_block h3 {
  padding: 0 0 20px;
  font-size: 36px;
  color: #fff;
  line-height: 1.5;
  position: relative;
}
.content_3_cta_block .link {
  position: relative;
}
.content_3_cta_block .link a {
  display: inline-block;
  background-color: #06AED5;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 16px 24px;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.content_3_cta_block .link a:hover {
  background: #157f97;
}

@media (min-width: 240px) and (max-width: 1023px) {
  .content_3_first_slider article {
    padding: 0 90px;
  }
  .content_3_first_slider .arrows a {
    width: 48px;
    height: 48px;
    right: -1px;
    border-radius: 50% 0 0 50%;
  }
  .content_3_first_slider .arrows a.prev {
    left: -1px;
  }
  .content_3_first_slider h2 {
    padding: 0 0 20px;
    font-size: 32px;
  }
  .content_3_first_slider p {
    font-size: 14px;
  }
  .content_3_categories_wrapper {
    padding: 30px 0;
  }
  .content_3_header_sides {
    display: block;
    text-align: center;
  }
  .content_3_header_sides h2 {
    padding: 0 0 20px;
    font-size: 32px;
  }
  .content_3_categories_grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 40px;
  }
  .content_3_category_item .inner {
    padding: 20px;
  }
  .content_3_category_item h3 {
    padding: 0 0 8px;
    font-size: 21px;
  }
  .content_3_category_item p {
    font-size: 14px;
  }
  .content_3_category_item span {
    font-size: 14px;
  }
  .content_3_hotels_grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .content_3_faq_wrapper {
    padding: 40px 0;
  }
  .content_3_faq_wrapper h2 {
    font-size: 24px;
  }
  .content_3_faq_accordion h4 a {
    font-size: 16px;
  }
  .content_3_uni_head {
    min-height: 240px;
  }
  .content_3_uni_head h1 {
    padding: 120px 0 20px;
    font-size: 32px;
  }
  .content_3_about_wrapper {
    padding: 40px 0;
  }
  .content_3_about_sides {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .content_3_about_sides h2 {
    font-size: 24px;
  }
  .content_3_advantages_wrapper {
    padding: 60px 0;
  }
  .content_3_advantages_grid {
    grid-template-columns: 1fr;
  }
  .content_3_advantages_grid h3 {
    font-size: 32px;
  }
  .content_3_team_wrapper {
    padding: 40px 0;
  }
  .content_3_team_wrapper h2 {
    font-size: 24px;
  }
  .content_3_team_grid {
    grid-template-columns: 1fr;
  }
  .content_3_contacts_wrapper {
    padding: 40px 0;
  }
  .content_3_contact_sides {
    grid-template-columns: 1fr;
  }
  .content_3_contact_map iframe {
    height: 60vw;
  }
  .content_3_contacts_form {
    padding: 24px;
  }
  .content_3_hotel_content {
    padding: 40px 0;
  }
  .content_3_hotel_sides {
    flex-wrap: wrap;
  }
  .content_3_hotel_sides .content {
    width: 100%;
  }
  .content_3_hotel_aside {
    width: 100%;
  }
  .content_3_hotel_about {
    padding: 20px;
  }
  .content_3_hotel_about h2 {
    font-size: 24px;
  }
  .content_3_amenities_list {
    grid-template-columns: 1fr;
  }
  .content_3_testimonials_wrapper h2 {
    font-size: 24px;
  }
  .content_3_testimonials_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 0 40px;
  }
  .content_3_cta_block {
    padding: 32px;
  }
  .content_3_cta_block h3 {
    font-size: 24px;
  }
}
