/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Metamorphous&amp;family=Tilt+Neon&amp;display=swap");

@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/playfair/PlayfairDisplay-SemiBold.ttf);
}
/* fonts */

/* universal */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary_font: "Playfair Display";
  --secondary_font: "Metamorphous";
  --primary_gradient: linear-gradient(
    180deg,
    #000 20.83%,
    rgba(0, 0, 0, 0.25) 100%
  );
  --primary_color: #d7a469;
  --black: #000000;
  --white: #ffffff;
}

/* universal */

/* Hero Slider Start */

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero_shape img {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9 !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide-prev .slide_img,
.swiper-slide-active .slide_img,
.swiper-slide-duplicate-active .slide_img {
  animation: zoom 10s 1s ease forwards;
  -webkit-animation: zoom 25s 1s ease forwards;
}

@keyframes zoom {
  from {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  to {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
}

.hero_content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

.hero_content .hero_header {
  font-family: var(--primary_font);
  font-size: 2.5em;
  font-weight: 700;
  color: var(--white);
  line-height: 90px;
  opacity: 0;
  transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}

.hero_content h5 {
  font-family: var(--primary_font);
  font-size: 1.5em;
  font-weight: 700;
  color: var(--white);
  line-height: 25px; 

}

.swiper-slide-active .hero_content .hero_header {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transition-delay: 0.6s;
  opacity: 1;
}

.hero_content .hero_sub_header {
  font-family: var(--secondary_font);
  padding: 5px 20px;
  color: #fff;
  font-size: 1.2em;
  display: inline-block;
  border-top: 4px solid var(--primary_color);
  border-bottom: 4px solid var(--primary_color);
  border-radius: 15px 0;
  margin-bottom: 10px;
  background-color: #d7a46966;
  opacity: 0;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}

.swiper-slide-active .hero_content .hero_sub_header {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition-delay: 0.6s;
  opacity: 1;
}

.hero_content .hero_btn {
  margin-top: 30px;
  transform: translateY(60px);
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
  opacity: 0;
}

.swiper-slide-active .hero_content .hero_btn {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transition-delay: 0.6s;
  opacity: 1;
}

.hero_content .hero_btn a {
  text-decoration: none;
  font-size: 0.8em;
  font-family: var(--secondary_font);
  color: var(--white);
  background-color: var(--primary_color);
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px 0;
  transition: 0.5s;
  margin: auto;
}

.hero_content .hero_btn a .hero_btn_icon {
  width: 22px;
  margin-left: 8px;
  transition: 0.5s;
}

.hero_content .hero_btn a:hover .hero_btn_icon {
  transform: translateX(6px);
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
}

.swiper-pagination {
  right: 60px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #d7a469 !important;
  width: 28px;
  height: 110px;
  border-radius: 30px;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--white) !important;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 1 !important;
  z-index: 999 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid var(--white) !important;
  outline-offset: 4px !important;
}

@media screen and (max-width: 1200px) {
  .hero_content .hero_header {
    font-size: 3em;
    line-height: 70px;
  }

  .hero_content .hero_sub_header {
    padding: 5px 20px;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 990px) {
  .hero_content .hero_header {
    font-size: 1.4em;
    line-height: 50px;
  }

  .hero_content .hero_sub_header {
    padding: 5px 20px;
    font-size: 0.9em;
  }

  .hero_content .hero_btn a {
    font-size: 0.9em;
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .swiper-pagination {
    display: none;
  }
}

/* Hero Slider End */

/* Reservation Start */

#reservation {
  position: relative;
  width: 100%;
  margin-top: -100px;
  z-index: 999 !important;
}

.reservation_form {
  background-color: var(--black);
  padding: 25px 40px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.reservation_content h3 {
  text-align: center;
  font-size: 1.6em;
  font-family: var(--secondary_font);
  color: var(--white);
  margin-bottom: 20px;
}

.reservation_content label {
  font-family: var(--secondary_font);
  font-size: 1em;
  color: var(--white);
}

/* Custom select */

.select {
  width: 100%;
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
}

.select_box {
  position: relative;
  border-bottom: 1px solid var(--primary_color);
  padding: 4px 0 5px;
}

.select_box::after {
  content: "";
  position: absolute;
  bottom: -2.5px;
  left: 0px;
  width: 4px;
  height: 4px;
  background-color: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.select_box::before {
  content: "";
  position: absolute;
  bottom: -2.5px;
  right: 0px;
  width: 4px;
  height: 4px;
  background-color: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.custom-select select {
  display: none;
}

.custom-select {
  color: var(--white);
  padding: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-size: 1em;
  font-family: var(--secondary_font);
}

.custom-select .custom-select {
  position: relative;
  background-image: url(../img/icons/chevran_icon.svg) !important;
  background-repeat: no-repeat;
  background-position: right;
  background-size: 18px;
}

.custom-select .custom-select:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 12px;
  font-size: 17px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.select-options {
  min-width: 150px;
  max-height: 200px;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 20;
  list-style: none;
  background-color: var(--white);
  border-radius: 5px;
  border: 1px solid var(--primary_color);
}

.select-options li {
  margin: 0;
  text-align: center;
  padding: 10px !important;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  font-size: 14px;
  color: var(--black);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.select-options li:hover {
  background: var(--primary_color);
  color: var(--white);
}

.select-options li[rel="hide"] {
  display: none;
}

.select-options::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
  border-radius: 0 0 5px 0;
}

.select-options::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--primary_color);
}

.reservation_date {
  display: flex;
  align-items: center;
  position: relative;
}

.datepicker {
  display: block !important;
  width: 100% !important;
}

.reservation_date .datepicker_input {
  background: transparent !important;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--primary_color);
  color: var(--white);
  font-family: var(--secondary_font);
  display: block;
  width: 100%;
  padding: 5px 0 5px 15px;
  margin-left: 5px;
  position: relative;
}

.reservation_date .dot::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 45px;
  width: 4px;
  height: 4px;
  background-color: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.reservation_date .dot::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -5px;
  width: 4px;
  height: 4px;
  background-color: var(--primary_color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.reservation_btn {
  text-align: center;
  margin-top: 50px;
}

.reservation_btn button {
  border: none;
  outline: none;
  background: transparent;
  border: 3px solid var(--primary_color);
  padding: 10px 40px;
  font-family: var(--secondary_font);
  color: var(--white);
  font-size: 1.1em;
  border-radius: 8px 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.reservation_btn button:hover {
  background-color: var(--primary_color);
}

/* Date Picker Start */
.datepicker__header {
  background: transparent !important;
}

.datepicker__title {
  color: var(--black) !important;
  font-family: var(--primary_font) !important;
  font-size: 1.4em !important;
}

.datepicker__prev {
  background-image: url(../icons/datepicker_left_arrow.html) !important;
}
.datepicker__next {
  background-image: url(../icons/datepicker_right_arrow.html) !important;
}

.datepicker__prev:hover,
.datepicker__next:hover {
  background-color: transparent !important;
}

.datepicker__wrapper {
  border-color: var(--primary_color) !important;
}

.datepicker__cal tr {
  font-family: var(--secondary_font) !important;
}

.datepicker__cal th {
  font-family: var(--secondary_font) !important;
  color: var(--primary_color) !important;
  font-size: 10px !important;
}

.is-otherMonth {
  color: #d2d2d2 !important;
}

.datepicker__day.is-today div::after {
  box-shadow: inset 0 0 0 1px var(--primary_color) !important;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.datepicker__day.is-today div {
  border-color: var(--primary_color) !important;
  color: var(--black) !important;
  border: 0 !important;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.datepicker__day.is-selected div {
  background: var(--primary_color) !important;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.datepicker__day.is-selected div::after {
  background: var(--primary_color) !important;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.datepicker__day div {
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
}

.datepicker__day div:hover {
  background: var(--primary_color) !important;
  color: var(--white) !important;
}

@media screen and (max-width: 768px) {
  .reservation_content {
    margin-bottom: 40px;
  }

  .reservation_content:last-child {
    margin-bottom: 40px;
  }
}

/* Date Picker End */

/* Reservation End */

/* About Start */

#about {
  padding: 40px 0;
  overflow: hidden;
}

.about_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.about_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: #D7A469;
  text-align: center;
  margin: 20px 0;
}

.about_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.about_header .header_shape img {
  width: 100%;
}

.about_content {
  margin-top: 30px;
}

.about_content img {
  width: 100%;
/*  aspect-ratio: 16/10;*/
  border-radius: 8px 0;
}

.about_content h2 {
  font-family: var(--primary_font);
  font-size: 2em;
  word-spacing: 3px;
  color: var(--black);
  text-align: left;
}

.about_content p {
  text-align: left;
  color: #000;
  font-family: var(--secondary_font);
  font-size: 0.9em;
  margin: 20px 0;
}

.about_content_text {
  padding: 0 30px;
}

.about_btn {
  text-align: left;
}

.about_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: var(--white);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.about_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

@media screen and (max-width: 1200px) {
  .about_content p {
    margin: 25px 0 30px;
  }
}

@media screen and (max-width: 990px) {
  .about_header h3 {
    font-size: 1.1em;
  }

  .about_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .about_header .header_shape {
    width: 180px;
    margin: 0 auto 0px;
  }

  .about_content {
    margin-top: 50px;
  }

  .about_content p {
    margin: 25px 0 30px;
  }

  .about_content h2 {
    font-size: 2em;
  }
}

/* About End */

/* Service Start */

#service {
  padding: 0 0 45px;
}

.service_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.service_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: #D7A469;
  text-align: center;
  margin: 20px 0;
}

.service_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.service_header .header_shape img {
  width: 100%;
}

.service_card {
  height: 260px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  border: 2px solid var(--primary_color);
  border-radius: 15px 0;
  margin: 40px 5px 0;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.service_card .service_card_icon {
  width: 65px;
  height: 65px;
  margin: auto;
}

.service_card .service_card_icon svg {
  width: 100%;
  height: 100%;
}

.service_card .service_card_icon svg path,
.service_card .service_card_icon svg circle {
  stroke: var(--primary_color);
  transition: all 0.5s ease-in-out;
}

.service_card:hover .service_card_icon svg path,
.service_card:hover .service_card_icon svg circle {
  stroke: #c7812f !important;
}

.service_card h1 {
  font-family: var(--primary_font);
  font-size: 1.3em;
  color: var(--black);
  text-align: center;
/*  word-spacing: 10px;*/
  margin: 30px 0 0;
}

.service_card p {
  font-family: var(--secondary_font);
  font-size: 1em;
  color: #000;
  text-align: center;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}

.service_card_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #ffdbb0;
  border-radius: 13px 0;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

.service_card_overlay img {
  width: 60px;
  z-index: 9999 !important;
}

.service_card_overlay img:nth-child(1) {
  position: absolute;
  top: -35px;
  right: -35px;
}
.service_card_overlay img:nth-child(2) {
  position: absolute;
  bottom: -35px;
  left: -35px;
  transform: rotate(-180deg);
}

.service_card:hover .service_card_overlay {
  opacity: 1;
  user-select: auto;
  pointer-events: visible;
}

.service_card:hover.service_card {
  border-color: #c7812f;
}

.service_card:hover.service_card p {
  color: var(--black);
}

@media screen and (max-width: 990px) {
  .service_header h3 {
    font-size: 1.1em;
  }

  .service_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .service_header .header_shape {
    width: 180px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 575px) {
  .service_card {
    width: 85%;
    height: 280px;
    display: grid;
    align-content: space-between;
    padding: 20px;
    margin: 40px auto 0;
  }
}

/* Service End */

/* Choose Room Start */

#choose_room {
  padding: 0 0 100px;
}

.choose_room_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.choose_room_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: #D7A469;
  text-align: center;
  margin: 20px 0;
}

.choose_room_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.choose_room_header .header_shape img {
  width: 100%;
}

.choose_room_card {
  width: 100%;
  height: 420px;
  border-radius: 25px 0;
  position: relative;
  margin-top: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.choose_room_card_border_right,
.choose_room_card_border_left {
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 99 !important;
  transition: all 1s;
}

.choose_room_card_border_right {
  top: 0;
  right: 0;
  border-right: 6px solid var(--primary_color);
}

.choose_room_card_border_left {
  bottom: 0;
  left: 0;
  border-left: 6px solid var(--primary_color);
}

.choose_room_card:hover .choose_room_card_border_right,
.choose_room_card:hover .choose_room_card_border_left {
  border-radius: 25px 0;
  height: 100%;
}

.choose_room_card:hover .choose_room_card_overlay {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
  transform: scale(1);
}

.choose_room_card .choose_room_card_img {
  width: 100%;
  height: 100%;
  border-radius: 25px 0;
}

.choose_room_card_overlay {
  position: absolute;
  width: calc(100% - 12px);
  margin: auto;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  align-content: space-between;
  border-radius: 25px 0;
  padding: 20px;
  opacity: 0;
  transform: scale(0.6);
  user-select: none;
  pointer-events: none;
  transition: 1s ease-in-out;
  z-index: 999 !important;
}

.choose_room_card_overlay_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  height: 100%;
  border-radius: 25px 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: all 0.5s 0.9s;
  opacity: 0;
}

.choose_room_card:hover .choose_room_card_overlay_bg {
  opacity: 1;
}

.choose_room_card_head h3 {
  font-family: var(--primary_font);
  color: var(--white);
  font-size: 1.6em;
  text-align: center;
  word-spacing: 6px;
}

.choose_room_card_head p {
  font-family: var(--secondary_font);
  color: var(--white);
  font-size: 1em;
  text-align: center;
}

.choose_room_card_btn {
  display: flex;
  justify-content: center;
}

.choose_room_card_btn a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px 0;
  margin: 0 8px;
}

.choose_room_card_btn a img {
  width: 24px;
}

.choose_room_card_rating {
  text-align: center;
}

.choose_room_card_rating a {
  text-decoration: none;
  color: #f4a329;
  font-size: 1em;
  margin: 0 1px;
}

.choose_room_card_rating a:hover {
  color: #f4a329;
}

.choose_room_card_desc p {
  font-family: var(--secondary_font);
  font-size: 1em;
  text-align: center;
  color: var(--white);
  margin-bottom: 0;
}

.choose_room_card_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.choose_room_card_price p {
  font-family: var(--secondary_font);
  font-size: 1.3em;
  color: var(--white);
  margin-bottom: 0;
}

.choose_room_card_price p span {
  font-size: 0.6em;
  font-weight: 500;
}

.choose_room_card_price_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.choose_room_card_price_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

.choose_room_btn {
  text-align: center;
  margin-top: 50px;
}

.choose_room_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: var(--white);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.choose_room_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

@media screen and (max-width: 990px) {
  .choose_room_header h3 {
    font-size: 1.1em;
  }

  .choose_room_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .choose_room_header .header_shape {
    width: 180px;
    margin: 0 auto 0;
  }
}

@media screen and (max-width: 768px) {
  .choose_room_card_price_btn a {
    width: 140px;
    padding: 9px 0;
  }
}

@media screen and (max-width: 575px) {
  .choose_room_card {
    height: 320px;
  }

  .choose_room_card_price_btn a {
    width: 110px;
    padding: 8px 0;
    font-size: 0.8em;
  }

  .choose_room_card_price p {
    font-size: 0.9em;
  }

  .choose_room_card_price p span {
    font-size: 1em;
  }

  .choose_room_card_head h3 {
    font-size: 1.2em;
  }

  .choose_room_card_head p {
    font-size: 0.9em;
  }

  .choose_room_card_desc p {
    font-size: 0.7em;
  }
}

/* Choose Room End */

/* Video Start*/

#video {
  position: relative;
}

.video_content img {
  width: 100%;
/*  aspect-ratio: 10/4;*/
}

.video_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.video_title h3 {
  font-family: var(--secondary_font);
  font-size: 1.8em;
  color: #fff;
  white-space: nowrap;
}

.video_title h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: var(--white);
  margin: 15px 0 50px;
  white-space: nowrap;
  text-transform: uppercase;
}

.video_play_btn {
  text-decoration: none;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  border: 3px solid var(--primary_color);
  border-radius: 50%;
  margin: auto;
  cursor: pointer;
  transition: 0.5s;
}

.video_play_btn:hover {
  background-color: var(--primary_color);
}

.video_play_btn i {
  font-size: 2.5em;
  color: var(--white);
  text-align: center;
}

.video_modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  z-index: 9999999 !important;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100% !important;
}

.modal__content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 16/9;
}

.modal__content .js-modal-close {
  position: absolute;
  right: -25px;
  top: -30px;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

.modal__content iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 1200px) {
  .video_title h3 {
    font-family: var(--secondary_font);
    font-size: 1.1em;
    color: var(--black);
  }

  .video_title h1 {
    font-size: 2.8em;
  }

  .video_play_btn {
    width: 70px;
    height: 70px;
  }

  .video_play_btn i {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 768px) {
  .video_title h3 {
    font-size: 1em;
  }

  .video_title h1 {
    font-size: 1.2em;
    margin: 15px 0 20px;
  }

  .video_content img {
    width: 100%;
    aspect-ratio: 10/6;
  }
}

@media screen and (max-width: 575px) {
  .video_play_btn {
    width: 50px;
    height: 50px;
  }

  .video_play_btn i {
    font-size: 1.6em;
  }

  .modal__content {
    width: 80%;
  }
}

/* Video End */

/* Counter Start */

#counter {
  background: url(../img/counter_bg_img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 35px;
  padding: 45px 0;
}

.counter_items h2 {
  font-family: var(--primary_font);
  font-size: 2.5em;
  color: var(--primary_color);
  text-align: center;
}

.counter_items .counter_text {
  text-align: center;
}

.counter_items span {
  font-family: var(--secondary_font);
  font-size: 1.8em;
  color: var(--white);
  text-align: center;
  margin: 25px 0 0;
}

@media screen and (max-width: 990px) {
  .counter_items h2 {
    font-size: 2em;
  }
  .counter_items p {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .counter_items p {
    font-size: 1.5em;
    margin: 20px 0 0;
  }

  .counter_row {
    gap: 60px;
  }
}

/* Counter End */

/* Gallery Start */

#gallery {
  padding: 0 0 40px;
}

.gallery_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.gallery_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: #D7A469;
  text-align: center;
  margin: 20px 0;
}

.gallery_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.gallery_header .header_shape img {
  width: 100%;
}

.gallery_cards {
  position: relative;
  border-radius: 10px 0;
  overflow: hidden;
  margin-top: 25px;
}

.gallery_cards img {
  width: 100%;
  border-radius: 10px 0;
}

.gallery_cards:hover .gallery_card_overlay {
  opacity: 1;
  user-select: all;
  pointer-events: all;
}

.gallery_card_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.gallery_card_btn .gallery_btn {
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary_color);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}

.gallery_card_btn .gallery_btn i {
  text-decoration: none;
  color: var(--white);
}

.gallery_card_btn .gallery_btn:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

.gallery_card_btn .gallery_btn {
  text-decoration: none;
  color: var(--white);
  font-size: 1.8em;
}

.gallery_more_btn {
  text-align: center;
  margin-top: 50px;
}

.gallery_more_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: var(--white);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.gallery_more_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

/* Gallery Image Previewer */
.preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: #fff;
  max-width: 900px;
  width: 80%;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  z-index: 999999 !important;
  border-top: 5px solid var(--primary_color);
  border-bottom: 5px solid var(--primary_color);
  border-radius: 15px 0;
}
.preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details {
  display: flex;
  align-items: center;
  padding: 12px 15px 12px 10px;
  justify-content: space-between;
}
.preview-box .details .title {
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p {
  margin: 0 5px;
}
.details .title p.current-img {
  font-weight: 500;
}
.details .icon {
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}
.preview-box .image-box {
  display: flex;
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: contain;
  position: relative;
}
.image-box .slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
}
.slide.prev {
  left: -60px;
}
.slide.next {
  right: -60px;
}
.image-box img {
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999 !important;
}

@media screen and (max-width: 990px) {
  .gallery_header h3 {
    font-size: 1.1em;
  }

  .gallery_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .gallery_header .header_shape {
    width: 180px;
    margin: 0 auto 0;
  }
}

@media screen and (max-width: 575px) {
  .preview-box {
    width: 100%;
  }

  .slide.prev {
    left: 0px;
  }
  .slide.next {
    right: 0px;
  }
}

/* Gallery End */

/* Blog Start */

#blog {
  padding: 0 0 100px;
}

.blog_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.blog_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: var(--black);
  text-align: center;
  margin: 20px 0;
}

.blog_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.blog_header .header_shape img {
  width: 100%;
}

.blog_content {
  margin-top: 30px;
}

.blog_img {
  perspective: 500px;
  transform-style: preserve-3d;
}

.blog_content img {
  width: 100%;
  aspect-ratio: 16/11;
  border: 1px solid var(--primary_color);
  border-radius: 10px;
  transition: 0.6s ease all;
}

.blog_content img.right {
  transform: perspective(800px) rotateY(-20deg) scale(0.9) rotateX(0deg);
  -webkit-transform: perspective(800px) rotateY(-20deg) scale(0.9) rotateX(0deg);
  -moz-transform: perspective(800px) rotateY(-20deg) scale(0.9) rotateX(0deg);
  -ms-transform: perspective(800px) rotateY(-20deg) scale(0.9) rotateX(0deg);
  -o-transform: perspective(800px) rotateY(-20deg) scale(0.9) rotateX(0deg);
}

.blog_content img.left {
  transform: perspective(800px) rotateY(20deg) scale(0.9) rotateX(0deg);
  -webkit-transform: perspective(800px) rotateY(20deg) scale(0.9) rotateX(0deg);
  -moz-transform: perspective(800px) rotateY(20deg) scale(0.9) rotateX(0deg);
  -ms-transform: perspective(800px) rotateY(20deg) scale(0.9) rotateX(0deg);
  -o-transform: perspective(800px) rotateY(20deg) scale(0.9) rotateX(0deg);
}

.blog_content img:hover {
  transform: rotateY(0deg) scale(1) rotateX(0deg);
}

.blog_content h4 {
  font-size: 1.2em;
  font-family: var(--secondary_font);
  color: var(--primary_color);
}

.blog_content h2 {
  font-size: 2em;
  font-family: var(--primary_font);
  color: var(--black);
  margin: 20px 0;
}

.blog_content p {
  font-size: 1em;
  font-family: var(--secondary_font);
  color: var(--primary_color);
}

.blog_btn {
  margin-top: 25px;
}

.blog_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-left: 3px solid var(--primary_color);
  border-right: 3px solid var(--primary_color);
  background-color: var(--white);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.blog_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

@media screen and (max-width: 990px) {
  .blog_header h3 {
    font-size: 1.1em;
  }

  .blog_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .blog_header .header_shape {
    width: 180px;
    margin: 0 auto 0;
  }

  .blog_content h2 {
    margin: 20px 0;
  }
}

/* Blog End */

/* Food Menu Start */

#menu {
  padding: 0 0 100px;
}

.menu_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.menu_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: var(--black);
  text-align: center;
  margin: 20px 0;
}

.menu_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.menu_header .header_shape img {
  width: 100%;
}

.menu_item_head {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 10px;
  overflow: hidden;
  background: url(../img/new/26.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  overflow: hidden;
}

.restaurent_head_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.menu_item_head:hover .restaurent_head_overlay {
  opacity: 1;
  pointer-events: all;
  user-select: all;
}

.menu_item_btn {
  text-align: center;
}

.menu_item_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.menu_item_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.menu_item {
  margin-top: 20px;
}

.menu_details {
  padding: 15px;
}

.menu_img {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 10px 0;
}

.menu_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0;
}

.menu_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu_title h2 {
  font-family: var(--primary_font);
  font-size: 1.6em;
  color: var(--black);
}

.menu_price {
  font-size: 2em;
  font-weight: 700;
  color: var(--black);
  font-family: var(--primary_font);
}

.menu_details p {
  font-family: var(--secondary_font);
  color: var(--primary_color);
  font-size: 1em;
  margin: 25px 0;
}

.menu_price span {
  color: var(--primary_color);
}

.menu_btn a {
  text-decoration: none;
  display: inline-block;
  width: 160px;
  border-top: 3px solid var(--primary_color);
  border-bottom: 3px solid var(--primary_color);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 9px 0;
  color: var(--black);
  text-align: center;
  font-family: var(--secondary_font);
  font-size: 1em;
  border-radius: 8px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.menu_btn a:hover {
  background-color: var(--primary_color);
  color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1),
    0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

@media screen and (max-width: 1400px) {
  .menu_item_img {
    width: 180px;
    height: 200px;
  }
}

@media screen and (max-width: 1200px) {
  .menu_item_img {
    width: 160px;
    height: 180px;
  }

  .menu_item_btn a {
    width: 120px;
    padding: 8px 0;
    font-size: 0.8em;
  }

  .menu_item_details h2 {
    font-size: 1.4em;
  }

  .menu_item_details p {
    font-size: 1em;
    margin: 30px 0 40px;
  }
}

@media screen and (max-width: 990px) {
  .menu_header h3 {
    font-size: 1.1em;
  }

  .menu_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .menu_header .header_shape {
    width: 180px;
    margin: 0 auto 40px;
  }

  .menu_item_head {
    height: 400px;
  }

  .menu_item_img {
    width: 200px;
    height: 220px;
    margin: 0 auto 25px;
  }

  .menu_item {
    justify-content: center;
  }

  .menu_item_details h2 {
    font-size: 1.6em;
  }

  .menu_item_details p {
    margin: 20px 0 30px;
  }
}

/* Food Menu End */

/* Testimonial Start */

#testimonial {
  padding: 40px 0 40px;
}

.testimonial_header h3 {
  font-family: var(--secondary_font);
  font-size: 1.4em;
  color: var(--black);
  text-align: center;
}

.testimonial_header h1 {
  font-family: var(--primary_font);
  font-size: 3em;
  color: #D7A469;
  text-align: center;
  margin: 20px 0;
}

.testimonial_header .header_shape {
  width: 230px;
  margin: 0 auto 20px;
}

.testimonial_header .header_shape img {
  width: 100%;
}

.content-area {
  background: var(--white);
  border-radius: 10px;
  margin: 15px 5px 20px;
  position: relative;
  transition: 0.5s;
}
.content {
  padding: 30px;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot {
  width: 8px !important;
  height: 8px !important;
  background-color: var(--primary_color) !important;
  display: inline-block;
  margin: 0 8px;
  border-radius: 50%;
  opacity: 0.8;
}

.owl-dot.active {
  outline: 2px solid var(--primary_color) !important;
  outline-offset: 3px;
}

.client {
  display: flex;
  align-items: center;
}

.client_right {
  justify-content: end;
}

.client_avatar {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-right: 25px;
}

.client_avatar .client_avatar_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.client_avatar .avatar_quote_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
}

.client_avatar .avatar_quote_img img {
  width: 100%;
  height: 100%;
}

.client_right .client_info {
  text-align: right;
}

.client_right .client_avatar {
  margin-left: 25px;
  margin-right: 0;
}

.client_right .avatar_quote_img {
  bottom: 0;
  left: 0;
}

.client .client_info h2 {
  font-family: var(--primary_font);
  font-size: 2em;
  color: var(--black);
}

.client .client_info p {
  font-family: var(--secondary_font);
  font-size: 1em;
  text-transform: uppercase;
  color: var(--primary_color);
  margin-bottom: 0;
}

.client_message p {
  font-family: var(--secondary_font);
  font-size: 1em;
  color: #000;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 25px;
}

.testimonial_card_border_right,
.testimonial_card_border_left {
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 99 !important;
  transition: all 1s;
}

.testimonial_card_border_right {
  top: 0;
  right: 0;
  border-right: 3px solid var(--primary_color);
}

.testimonial_card_border_left {
  bottom: 0;
  left: 0;
  border-left: 3px solid var(--primary_color);
}

.content-area:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.content-area:hover .testimonial_card_border_right,
.content-area:hover .testimonial_card_border_left {
  border-radius: 10px 0;
  height: 100%;
}

.client_right .client_info {
  width: calc(100% - 140px);
}
.client_left .client_info {
  width: calc(100% - 140px);
}

@media screen and (max-width: 990px) {
  .testimonial_header h3 {
    font-size: 1.1em;
  }

  .testimonial_header h1 {
    font-size: 2em;
    margin-top: 10px;
  }

  .testimonial_header .header_shape {
    width: 180px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 575px) {
  .client_avatar {
    width: 80px;
    height: 80px;
  }

  .client_avatar .avatar_quote_img {
    width: 30px;
    height: 30px;
  }

  .client_right .client_info {
    width: calc(100% - 80px);
  }
  .client_left .client_info {
    width: calc(100% - 80px);
  }

  .client .client_info h2 {
    font-size: 1.4em;
  }

  .client .client_info p {
    font-size: 0.8em;
  }

  .client_message p {
    font-size: 0.8em;
  }

  .content {
    padding: 30px 20px;
  }

  .client .client_avatar {
    margin-right: 15px;
    margin-left: 0;
  }

  .client_right .client_avatar {
    margin-left: 15px;
    margin-right: 0;
  }
}

/* Testimonial End */
