* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  &::before,
  &::after {
    box-sizing: border-box;
  }
}

@font-face {
  font-family: "content_font";
  font-weight: 400;
  src: url(assets/fonts/Gidole-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "heading_font_lt";
  font-weight: 400;
  src: url(assets/fonts/CinzelDecorative-Regular.ttf) format("truetype");
}
html {
  line-height: 1.3;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 10px;
  overflow: hidden;
}

main {
  display: block;
}

:root {
  --col-primary: rgb(172, 80, 128);
  --transition: all 0.3s ease-in-out;
}

.hm_container {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
}

.row {
  display: flex;
}

.col-6 {
  width: 50%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* line-height: 1.3; */
  font-family: "Cinzel Decorative", serif;
}
.copyright {
  font-size: 20px;
  color: #666;
  padding-top: 20px;
  font-weight: normal;
  font-family: "content_font";
}
.privacy {
  padding: 160px 15px 30px 15px;
  font-family: "content_font";
  font-weight: 500;
  font-size: 18px !important;
}
.privacy .hd_cont {
  padding-top: 40px;
}
.privacy h1 {
  font-family: "heading_font_lt";
  font-weight: 500;
  font-size: 40px;
  color: var(--col-primary);
}

.privacy .accordion-title {
  font-family: "content_font";
  font-weight: 500;
  font-size: 24px !important;
  color: var(--col-primary);
}

.privacy h2 {
  font-family: "content_font";
  font-weight: 500;
  font-size: 24px !important;
  color: var(--col-primary);
}
.privacy a {
  color: var(--col-primary) !important;
}
h2 {
  font-family: "heading_font_lt";
  font-weight: 500;
  font-size: 40px;
  color: var(--col-primary);
}
h3 {
  font-family: "heading_font_lt";
  font-weight: 500;
  font-size: 40px;
  color: var(--col-primary);
}

h4 {
  font-size: 26px;
  line-height: 42px;
  font-weight: 400;
  font-family: "Cinzel Decorative", serif;
  text-transform: uppercase;
}

h5 {
  color: var(--col-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
  text-transform: uppercase;
  font-family: "content_font";
  letter-spacing: 2px;
}

.custom_p {
  font-size: 24px;
  line-height: 28px;
  color: var(--col-primary);
  font-family: "content_font";
}

img {
  display: block;
  height: auto;
  object-fit: cover;
}

.copyright a{color: #ac5080;}

/* ============================================== */
/* home */
/* ============================================== */

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  padding: 20px;
  border-radius: 15px;
  max-width: 850px;
  width: 100%;
  position: relative;
  animation: slideDown 0.3s ease-out;
}
.new_modal {
  max-width: 950px;
  width: 100%;
  min-height: 75vh;
  display: grid;
  place-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: none;
  z-index: 1000;
  animation: zoomIn 0.5s ease-out;
}
.modal_ct h3 {
  font-size: 40px;
  margin-bottom: 10px;
  font-family: sans-serif;
}
.modal_ct p {
  max-width: 446px;
  margin: 0 auto;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: sans-serif;
  color: #616161;
}
.modal_ct img {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 150px;
}

/* @keyframes zoomIn {
  from {
      transform: scale(0.8);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
} */

.modal_ct button {
  margin-top: 7px;
  font-size: 16px;
  border-radius: 27px;
  padding: 9px 22px;
  background: #000;
  color: white;
  border: none;
  cursor: pointer;
}

@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 38px;
  right: 38px;
  font-size: 17px;
  cursor: pointer;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  border: 1px solid #252424;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
  font-size: 20px;
}

input,
textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.submit_btn {
  margin-top: 20px;
  padding: 10px;
  background-color: #ac5080;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit_btn:hover {
  background-color: #8a3f6a;
}

.home-section {
  margin-top: 130px;
  width: 100%;
  background-color: #ffffff;
  display: grid;
  place-content: center;
}

.book_btn {
  width: 240px;
  height: 60px;
  border-radius: 50px;
  background-image: linear-gradient(135deg, #fff9f7 0%, #d2d2d2 100%);
  box-shadow: 0 16px 20px -6px rgba(150, 150, 150, 0.5);
  outline: none;
  cursor: pointer;
  border: none;
  font-size: 24px;
  font-family: "content_font";
  color: var(--col-primary);
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  margin-bottom: 20px;
}

.book_btn:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.book_btn:active {
  opacity: 0.5;
}

/* form*/

.form {
  width: 100%;
  background-color: #fff;
  padding: 50px;
  box-shadow: 0px 0px 0px 4px rgba(52, 52, 53, 0.185);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}

.fm_row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.formcontrol_wrapper {
  width: 100%;
  position: relative;
}

.title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a202c;
}

.label {
  color: rgb(0, 0, 0);
  margin-bottom: 4px;
}

.input {
  padding: 0px 25px;
  color: #0b1c19;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  height: 50px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #204b45;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}

.txt_input {
  padding: 0px 25px;
  color: #0b1c19;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;

  position: relative;
  border-radius: 4px;
  border: 1px solid #204b45;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}

.input::placeholder {
  color: #313131;
}

.txt_input::placeholder {
  color: #313131;
}

.input:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px #9b9b9b;
  border: #2b9c4e;
  outline: none;
}

.txt_input:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px #9b9b9b;
  border: #2b9c4e;
  outline: none;
}

/* .input:valid {
  border: 1px solid green;
} */

/* .input:invalid {
  border: 1px solid rgba(14, 14, 14, 0.205);
} */

input.error,
textarea.error {
  border: 2px solid rgb(255 124 124);
}

input.error:focus,
textarea.error:focus {
  border: 2px solid rgb(255 124 124);
}

input.error + .error-message,
textarea.error + .error-message {
  font-family: "content_font";
  color: rgb(255, 66, 66);
  letter-spacing: 0.5px;
  font-size: 14px;
}

.error-message {
  position: absolute;
  bottom: -22px;
}

.submit {
  cursor: pointer;
  border-radius: 50px;
  background: #ac5080;
  color: #ffffff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  padding: 0px 61px;
  margin-top: 38px;
  border: none;
  display: flex;
  width: fit-content;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit:hover {
  background: #9c4472;
}

.row {
  display: flex;
}


@media (min-width: 3000px) {
.hm_container{
max-width: 1500px;
  }
}
@media (min-width: 3000px) {
.hm_container{
max-width: 1500px;
  }
}
/* ✅ home page video */
.video-container {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 3000px) {
  .video-container {
    height: 850px;
  }
}
.controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );
  display: flex;
  align-items: center;
  padding: 10px;
}

.play-button {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: -274px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.progress-bar-container {
  flex-grow: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: #ffffff;
  width: 0%;
}

.mute-button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
/* ============================================ */
/* about */
/* ============================================ */
.about_section {
  position: relative;
  margin-top: 12px;
  margin-bottom: 88px;
}

.ct_row {
  display: none;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
}

.ct_row .ct_left {
  width: 56%;
  margin-top: 65px;
}

.ct_row .ct_left h2 {
  position: relative;
  line-height: 50px;
  font-size: 40px;
  /* &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -48px;
    width: 177px;
    height: 3px;
    background-color: #ac5080;
    border-radius: 10px;
  }

  &::before {
    content: "";
    position: absolute;
    width: 3px;
    left: 174px;
    top: 139px;
    height: 17px;
    background-color: #ac5080;
    border-radius: 10px;
  } */
}

.ct_row .ct_left p {
  max-width: 640px;
  letter-spacing: 0.5px;
  line-height: 38px;
  margin-top: 50px;
}

.ct_row .ct_right {
  width: 44%;

  img {
    max-width: 600px;
    width: 100%;
    /* margin-left: -50px; */
  }
}

/* ======================================= */
/* room-1 */
/* ======================================= */

.room_1_block {
  margin-bottom: 40px;
}

.room_1_block .ct_row {
  flex-direction: row-reverse;

  .ct_left {
    width: 54%;
    p {
      margin-top: 40px;
    }
  }

  .ct_right {
    width: 46%;
    height: 694px;

    img {
      width: 500px;
    }

    video {
      max-width: 470px;
      width: 100%;
    }
  }
}

/* ======================================================== */
/* room space */
/* ======================================================== */

.room_space_section {
  width: 100%;
  background-image: url(assets/images/room5.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 76px;
  margin-bottom: 70px;
}

.room_space {
  background-color: #ac5080bf;
  width: 64%;
  height: 100%;
  padding: 30px;
  padding-bottom: 50px;
  margin-right: auto;
}

.room_space h2 {
  position: relative;
  line-height: 50px;
  font-size: 40px;
  color: #fff;
}
.room_space .hd_text {
  &::after {
    background-color: #fff;
  }
  &::before {
    background-color: #fff;
  }
}
.room_space p {
  margin-top: 15px !important;
  letter-spacing: 1px;
  word-spacing: 2px;
  line-height: 40px;
  color: #fff;
}

.room_space p:first-of-type {
  margin-top: 50px;
}

.room_space .cs_row {
  display: flex;
  margin-top: 45px;
}

.room_space .cs_row .col-6 {
  width: 50%;
  display: flex;
  gap: 10px;

  img {
    height: 49px;
  }

  h4 {
    letter-spacing: 1px;
    color: #fff;

    span {
      display: block;
      font-size: 20px;
      line-height: 26px;
      font-weight: 400;
      font-family: "content_font";
    }
  }
}

/* ============================================ */
/* room_2 */
/* ============================================ */
.room_2 {
  margin-bottom: 90px;
}

.room_2_block .ct_row {
  flex-direction: row-reverse;

  .ct_left {
    width: 57%;
    margin-top: 0px;

    h2 {
      &::before {
        top: 74px;
      }

      &::after {
        bottom: -33px;
      }
    }
  }

  .ct_right {
    width: 43%;

    img {
      width: 552px;
    }

    .book_btn {
      margin: 0 auto;
      margin-top: -20px;
      display: block;
    }
  }
}

.features {
  margin-top: 70px;

  .ft_item {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;

    img {
      height: 50px;
    }

    .ft_text {
      max-width: 540px;
      margin-top: 0px;
      font-size: 24px;
      line-height: 33px;
      font-weight: 300;
      color: #000;
      font-family: "content_font";

      span {
        color: var(--col-primary);
      }
    }
  }
}

.features .ft_item:last-of-type {
  margin-bottom: 0px;
}

/* =============================================== */
/* room_3 */
/* =============================================== */
.room_3_block {
  margin-bottom: 130px;
}
.sofa-icon {
  height: 32px !important;
}
.room_3_block .ct_row {
  .ct_left {
    width: 57%;
    margin-top: 0px;

    h2 {
      &::before {
        top: 79px;
      }

      &::after {
        bottom: -33px;
      }
    }
  }

  .ct_right {
    width: 43%;

    img {
      width: 552px;
    }

    .book_btn {
      margin: 0 auto;
      margin-top: -20px;
      display: block;
    }
  }
}

/* ======================================= */
/* gallery */
/* ======================================= */

.gl_1,
.gl_2 {
  margin-bottom: 100px;
}

.gl_3 {
  margin-bottom: 80px;
}

.glr_block {
  h2 {
    position: relative;
    line-height: 50px;
    font-size: 40px;
  }
}
.glr_icon {
  height: 66px;
}
.icn {
  width: 55px !important;
  height: 34px;
}
.icn2 {
  width: 48px !important;
  height: 47px;
}
.icn3 {
  width: 57px !important;
  height: 38px;
}
.glr_wrapper {
  margin-top: 80px;
  display: flex;
  gap: 10px;
}

.glr_wrapper .col-4 .glr_top {
  max-width: 415px;
  width: 100%;
  height: 270px;
  overflow: hidden;

  img {
    width: 420px;
    object-fit: cover;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;

    &:hover {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
}

.glr_wrapper .col-4 .glr_bottom {
  min-height: 275px;
  margin-top: 10px;
  border: 1px solid #000000;
  padding-left: 20px;
  /* padding-bottom: 20px; */
  padding-top: 10px;
  padding-right: 10px;

  img {
    width: 45px;
    margin-left: auto;
  }

  .glr_title {
    font-size: 24px;
    line-height: 28px;
    color: var(--col-primary);
    font-family: "content_font";
    letter-spacing: 0.1em;
    line-height: 38px;
  }

  .glr_p {
    font-size: 24px;
    line-height: 34px !important;
    color: #000;
    font-family: "content_font";
    letter-spacing: 0.5px;
    line-height: 38px;
    padding-right: 10px;
  }
}

/* ================================ */
/* Room4 */
/* ================================ */

.room_4 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.room_4_block .ct_row {
  flex-direction: row-reverse;

  .ct_left {
    width: 45%;
    p {
      letter-spacing: 0px;
      line-height: 32px;
      margin-top: 75px;
    }
  }

  .ct_right {
    width: 55%;

    img {
      width: 600px;
    }

    .book_btn {
      margin: 0 auto;
      margin-top: -20px;
      display: block;
    }
  }
}

/* ================================ */
/* Booking */
/* ================================ */
.booking_section {
  padding-block: 110px;
  background-image: url(assets/images/Room.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 80px;
}

.book_now {
  max-width: 650px;

  h2 {
    line-height: 50px;
    font-size: 40px;
    span {
      display: block;
      position: relative;
    }
  }

  .custom_p {
    margin-top: 46px;
    letter-spacing: 0.5px;
    word-spacing: 1px;
    text-align: justify;
  }

  .book_btn {
    margin-top: 50px;
    margin-inline: auto;
    display: block;
  }
}

/* ==================================== */
/* testimonials */
/* ==================================== */
.testimomials_section {
  margin-bottom: 80px;
  text-align: center;

  h2 {
    line-height: 50px;
    font-size: 40px;
    margin-bottom: 90px;
  }
}

.testimomials {
  display: flex;
  gap: 50px;
}

.ts_item {
  padding: 25px;
  padding-inline: 50px;
  border: 1px solid #ac5080;

  img {
    width: 40px;
    margin-inline: auto;
  }

  p {
    font-size: 24px;
    color: var(--col-primary);
    font-family: "content_font";
    line-height: 35px;
    margin-bottom: 80px;
    margin-top: 36px;
  }

  span {
    font-size: 18px;
    line-height: 24px;
    color: var(--col-primary);
    font-family: "content_font";
    margin-bottom: 20px;
    display: block;
  }
}
#thankYouModal {
  display: none;
}
/* ============================================ */
/* Responsive */
/* ============================================ */
@media (max-width: 1650px) {
  .testimomials {
    gap: 30px;
  }
}
@media (max-width: 1450px) {
  .testimomials {
    gap: 25px;
  }
  .ts_item {
    padding-block: 25px;
    padding-inline: 25px;
  }
}
@media (max-width: 1440px) {
  .video-container {
    margin-top: -30px;
  }
}
@media (max-width: 1408px) {
  .testimomials {
    gap: 20px;
  }
  .ts_item {
    padding-block: 25px;
    padding-inline: 20px;
  }
}

@media (max-width: 950px) {
  .home-section {
    overflow: hidden;
  }

  .video-container {
    margin-top: -90px;
  }
}

/* ============================================= */
/* ✅ for 1300px wide screen */
/* ============================================= */

@media (max-width: 1300px) {
  h2 {
    font-size: 32px;
  }
  .home-section {
    overflow: hidden;
  }

  .video-container {
    /* margin-top: -50px; */

    width: 100%;
    height: auto;
    video {
      width: 100vw;
      height: 100%;
      object-fit: contain;
    }
  }
  /* ---------------------------about */
  .about_block {
    .ct_row {
      .ct_left {
        width: 50%;
        h2 {
          &::before {
            top: 189px;
          }
        }
        p {
          padding-right: 35px;
          font-size: 22px;
          margin-top: 50px;
        }
      }
    }
  }
  /* ---------------------------room-1 */
  .room_1_block .ct_row {
    flex-direction: row-reverse;

    .ct_left {
      width: 50%;
      p {
        margin-top: 40px;
      }
    }

    .ct_right {
      width: 50%;
      height: 654px;
    }
  }
  /* ---------------------------room-space */
  .room_space_section {
    padding-left: 65px;
  }
  .room_space {
    width: 61%;
    h2 {
      &::after {
        bottom: -31px;
      }
      &::before {
        top: 77px;
      }
    }
    p {
      letter-spacing: 0.5px;
      word-spacing: 1px;
      line-height: 35px;
    }
  }
  /* -------------------------room-2 */
  .room_2_block {
    padding-inline: 30px;
    .ct_row {
      .ct_left {
        width: 52%;
      }
      .ct_right {
        width: 48%;
      }
    }
    .features {
      padding-right: 50px;
      .ft_item {
        margin-bottom: 45px;
        p {
          font-size: 22px;
          line-height: 30px;
        }
      }
    }
  }
  /* -------------------------room-3 */
  .room_3_block {
    padding-inline: 50px;
    .ct_row {
      .ct_left {
        width: 55%;
      }
      .ct_right {
        width: 45%;
      }
    }
    .features {
      padding-right: 50px;
      .ft_item {
        margin-bottom: 45px;
        p {
          font-size: 22px;
          line-height: 30px;
        }
      }
    }
  }
  /* -------------------------gallery */
  .glr_block {
    padding-inline: 50px;
  }
  .glr_wrapper .col-4 .glr_top {
    max-width: 374px;
  }
  /* -------------------------room_4 */
  .room_4 {
    padding-inline: 50px;
  }
  .room_4_block .ct_row {
    .ct_left {
      p {
        margin-top: 50px;
      }
    }
  }
  /* -------------------------booking */

  .booking_section .book_block {
    padding-left: 50px;
  }
  /* -------------------------booking */
  .testimomials_section {
    margin-bottom: 60px;
  }
  .testimomials {
    padding-inline: 50px;

    .ts_item {
      padding: 20px;
      padding-inline: 30px;
      p {
        margin-bottom: 30px;
      }
    }
  }
}

/* ============================================= */
/* ✅ for 1226px wide screen */
/* ============================================= */

@media (max-width: 1226px) {
  h2 {
    font-size: 32px;
  }
  .home-section {
    overflow: hidden;
  }

  .video-container {
    margin-top: -2px;
  }
  /* ---------------------------about */
  .about_block {
    .ct_row {
      .ct_left {
        width: 55%;
        padding-left: 30px;
        p {
          padding-right: 35px;
          font-size: 22px;
          margin-top: 50px;
        }
      }
      .ct_right {
        width: 45%;
        img {
          max-width: 550px;
          width: 100%;
        }
      }
    }
  }
}

/* ============================================= */
/* ✅ for 1170px wide screen */
/* ============================================= */

@media (max-width: 1170px) {
  h2 {
    font-size: 30px;
  }
  .home-section {
    overflow: hidden;
  }

  /* ---------------------------about */
  .about_block {
    .ct_row {
      .ct_left {
        width: 55%;
        padding-left: 30px;
        p {
          padding-right: 35px;
          font-size: 22px;
          margin-top: 40px;
        }
      }
      .ct_right {
        width: 45%;
      }
    }
  }
}

@media (max-width: 1300px) {
  .room_space {
    & h2 {
      &::before {
        top: 72px;
      }
    }
  }
  .room_2_block .ct_row {
    .ct_left {
      h2 {
        &::before {
          top: 123px;
        }
      }
    }
  }
}
/* ============================================= */
/* ✅ for 1230px wide screen */
/* ============================================= */
@media (max-width: 1230px) {
  .room_2_block {
    .ct_row {
      .ct_left {
        .features {
          .ft_item {
            margin-bottom: 30px;
          }
        }
      }
      .ct_right {
        img {
          width: 430px;
        }
      }
    }
  }
  /* room 3  */
  .room_3_block {
    .ct_row {
      .ct_left {
        .features {
          margin-bottom: 30px;
        }
      }
      .ct_right {
        img {
          width: 480px;
        }
      }
    }
  }
}
/* ============================================= */
/* ✅ for 1100px wide screen */
/* ============================================= */

@media (max-width: 1110px) {
  .home-section {
    overflow: hidden;
  }

  .video-container {
    /* margin-top: -63px; */
  }

  /* --------------about */
  .about_block {
    .ct_row {
      flex-direction: column;
      align-items: center;
      gap: 35px;
      padding-left: 0px;
      .ct_left {
        width: 100%;
        max-width: 650px;
        h2 {
          &::before {
            top: 142px;
          }
          &::after {
            bottom: -40px;
          }
        }
        p {
          margin-top: 80px;
        }
      }
      .ct_right {
        width: 100%;
        max-width: 575px;
      }
    }
  }

  /* --------------room-1 */
  .room_1_block .ct_row {
    flex-direction: column-reverse;
    align-items: center;
    .ct_left {
      width: 100%;
      max-width: 650px;
      p {
        padding-right: 40px;
        word-wrap: break-word;
        text-align: justify;
      }
    }

    .ct_right {
      width: 100%;
      max-width: 570px;
    }
  }

  /* --------------room-space */
  .room_space_section {
    .room_space {
      background-color: #ac5080bf;
      width: 100%;
      max-width: 720px;
      height: 100%;
      padding: 30px;
      padding-bottom: 50px;
      margin-right: auto;
    }
  }

  /* --------------room-2 */
  .room_2_block {
    padding: 0;
    .ct_row {
      .ct_left {
        width: 60%;
        padding-left: 20px;
        h2 {
          font-size: 27px;
        }
        p {
          padding-right: 35px;
          font-size: 20px;
          text-align: justify;
        }
        .features {
          .ft_item {
            align-items: flex-start;
          }
        }
      }
      .ct_right {
        width: 40%;
        img {
          width: 400px;
        }
        .book_btn {
          font-size: 20px;
          width: 206px;
          height: 52px;
        }
      }
    }
  }

  /* --------------room-3 */
  .room_3_block {
    padding: 0;
    .ct_row {
      .ct_left {
        width: 60%;
        padding-left: 20px;
        h2 {
          font-size: 27px;
        }
        p {
          padding-right: 35px;
          font-size: 20px;
        }
        .features {
          padding-right: 20px;
          .ft_item {
            align-items: flex-start;
            p {
              text-align: justify;
            }
          }
        }
      }
      .ct_right {
        width: 40%;
        img {
          width: 400px;
        }
        .book_btn {
          font-size: 20px;
          width: 206px;
          height: 52px;
        }
      }
    }
  }

  /* --------------gallery*/
  .glr_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    .col-4 {
      width: 100%;
      max-width: 500px;
      .glr_top {
        max-width: 100%;
        img {
          width: 100%;
        }
      }
    }
  }

  /* --------------room-4 */

  .room_4_block .ct_row {
    flex-direction: column-reverse;
    align-items: center;
    .ct_left {
      width: 100%;
      max-width: 650px;
      h2 {
        max-width: 500px;
      }
      p {
        padding-right: 40px;
        word-wrap: break-word;
        text-align: justify;
      }
    }

    .ct_right {
      width: 100%;
      max-width: 570px;
    }
  }

  /* --------------booking */
  .book_now {
    max-width: 615px;
    .book_btn {
      width: 206px;
      height: 52px;
      font-size: 20px;
    }
  }

  /* --------------testimomials */
  .testimomials_section {
    h2 {
      margin-bottom: 70px;
    }
  }
  .testimomials {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    .ts_item {
      width: 100%;
      max-width: 345px;
      padding: 25px;
      padding-inline: 30px;
      p {
        margin-bottom: 30px;
      }
    }
  }
}

/* ============================================= */
/* ✅ for 960px wide screen */
/* ============================================= */

@media (max-width: 940px) {
  .room_2_block {
    .ct_row {
      flex-direction: column-reverse;
      align-items: center;

      .ct_left {
        width: 100%;
      }
      .ct_right {
        width: 100%;
        margin-bottom: 25px;
        img {
          margin-inline: auto;
        }
      }
    }
  }

  .room_3_block {
    padding: 0;
    .ct_row {
      flex-direction: column-reverse;
      .ct_left {
        width: 100%;
      }
      .ct_right {
        width: 100%;
        img {
          margin-inline: auto;
        }
      }
    }
  }
}

/* ============================================= */
/* ✅ for 550px wide screen */
/* ============================================= */

@media (max-width: 550px) {
  .book_btn {
    font-size: 16px !important;
    width: 160px !important;
    height: 42px !important;
  }
  h2 {
    font-size: 24px !important;
    line-height: 34px !important;
    &::after {
      height: 2px !important;
      width: 160px !important;
    }
    &::before {
      width: 2px !important;
      left: 159px !important;
    }
  }
  /* ---------------------------home */
  .home-section {
    margin-top: 104px;
    .video-container {
      padding: 0;
      margin-top: 13px;
      height: auto;

      video {
        width: 100vw;
        display: block;
        object-fit: contain;
      }
    }
  }
  /* ---------------------------about */
  .about_section {
    margin-bottom: 50px;
  }

  .about_section .about_block .ct_row {
    .ct_left {
      margin-top: 10px;
      padding-left: 20px;
    }
    h2 {
      max-width: 400px;
      &::after {
        bottom: -29px;
      }
      &::before {
        top: 121px;
      }
    }
    .custom_p {
      margin-top: 35px;
      font-size: 18px;
      line-height: 26px;
      padding-right: 0px;
      text-align: justify;
    }
    img {
      max-width: 500px;
      width: 100%;
    }
  }
  .room_1 .room_1_block .ct_row {
    .ct_left {
      margin-top: 20px;
      h2 {
        max-width: 320px;
        &::before {
          top: 85px;
        }
        &::after {
          bottom: -27px;
        }
      }
      p {
        margin-top: 35px;
        font-size: 17px;
        line-height: 25px;
      }
    }
    .ct_right {
      width: 100%;
      height: auto;
      video {
        width: 310px;
      }
    }
  }

  /* --------------room-space */
  .room_space_section {
    padding: 20px;
    .room_space {
      max-width: 100%;
      padding-bottom: 30px;
      h2 {
        max-width: 320px;
        &::after {
          bottom: -16px;
        }
        &::before {
          top: 41px;
        }
      }
      .custom_p {
        margin-top: 28px;
        font-size: 17px;
        line-height: 24px;
        text-align: justify;
      }
      .cs_row {
        margin-top: 28px;
        flex-direction: column;
        gap: 16px;
        .col-6 {
          width: 100%;
          img {
            height: 42px;
          }
          h4 {
            font-size: 20px;
            line-height: 23px;
            span {
              font-size: 17px;
            }
          }
        }
      }
    }
  }
  /* --------------room-2 */
  .room_2 {
    margin-bottom: 35px;
  }
  .room_2_block .ct_row {
    padding-inline: 20px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    .ct_left {
      width: 100%;
      padding-left: 0px;
      p {
        word-wrap: break-word;
        text-align: justify;
      }
      .features {
        padding-right: 0px;
        margin-top: 40px;
        .ft_item {
          align-items: flex-start;
          margin-bottom: 13px;
          img {
            height: 35px;
          }
          p {
            text-align: justify;
            padding-right: 0px;
            font-size: 17px;
            line-height: 25px;
            word-spacing: 0.7px;
          }
        }
      }
    }

    .ct_right {
      width: 100%;
      img {
        width: 100%;
      }
      .book_btn {
        margin-top: 0px;
      }
    }
  }

  /* --------------room-3 */
  .room_3 {
    margin-bottom: 25px;
  }
  .room_3_block {
    margin-bottom: 0px;
  }
  .room_3_block .ct_row {
    padding-inline: 20px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    .ct_left {
      width: 100%;
      padding-left: 0px;
      h2 {
        max-width: 500px;
        &::before {
          top: 82px;
        }
        &::after {
          bottom: -23px;
        }
      }
      .features {
        padding-right: 0px;
        margin-top: 40px;
        margin-bottom: 0px;
        .ft_item {
          margin-bottom: 13px;
          align-items: flex-start;

          img {
            height: 35px;
          }
          p {
            text-align: justify;
            padding-right: 0px;
            font-size: 17px;
            line-height: 23px;
            word-spacing: 0.7px;
          }
        }
      }
    }

    .ct_right {
      width: 100%;
      img {
        width: 100%;
      }
      .book_btn {
        margin-top: 0px;
      }
    }
  }
  /* --------------- gallery */
  .gallery_section {
    margin-bottom: 50px;
    padding-inline: 20px;
  }

  .glr_block {
    width: 100%;
    padding: 0px;
  }

  .gallery_section .glr_block .glr_wrapper {
    margin-top: 50px;
    .glr_top {
      height: 200px;
    }
    .glr_bottom {
      min-height: 210px;
      p {
        word-wrap: break-word;
        text-align: justify;
        font-size: 17px;
        line-height: 26px !important;
        word-spacing: 0.7px;
      }
      .glr_p {
        word-wrap: break-word;
        text-align: justify;
        font-size: 17px;
        line-height: 26px !important;
        word-spacing: 0.7px;
      }
      img {
        width: 38px;
      }
    }
  }
  /* --------------room-4 */
  .room_4 {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-inline: 20px;
  }
  .room_4_block .ct_row {
    padding-inline: 0px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    .ct_left {
      width: 100%;
      margin-top: 0px;
      h2 {
        max-width: 500px;
      }
      .custom_p {
        margin-top: 28px;
        padding-right: 0;
        font-size: 17px;
        line-height: 24px;
        text-align: justify;
      }
    }

    .ct_right {
      width: 100%;
      img {
        width: 100%;
      }
    }
  }
  /* --------------booking */
  .booking_section {
    padding-inline: 20px;
    padding-block: 50px;
    margin-bottom: 50px;
    .book_block {
      width: 100%;
      padding: 0px;

      h2 span {
        margin-bottom: 0;
        &::before {
          top: 73px;
        }
        &::after {
          bottom: -16px;
        }
      }
      p {
        margin-top: 20px;
        font-size: 17px;
        line-height: 24px;
        text-align: justify;
      }
    }
  }
  /* --------------testimomials */
  .testimomials_section {
    padding-inline: 20px;
    h2 {
      max-width: 250px;
      margin-inline: auto;
      margin-bottom: 30px;
    }
    .testimomials {
      padding-inline: 0px;
      .ts_item {
        width: 100%;
        max-width: 300px;
        padding: 25px;
        padding-inline: 30px;
        p {
          margin-bottom: 20px;
          margin-top: 25px;
          font-size: 17px;
          line-height: 24px;
        }
      }
    }
  }
  /* ---------------------------form */
  .form {
    padding: 30px;
    .fm_row {
      flex-direction: column;
      gap: 15px;
      margin-bottom: 15px;
      .formcontrol_wrapper {
        input {
          padding: 0px 18px;
          height: 40px;
        }
      }
    }
    .submit {
      margin-top: 15px;
      padding: 0px 40px;
      font-size: 17px;
      line-height: 45px;
    }
  }
  input.error + .error-message,
  textarea.error + .error-message {
    font-size: 13px;
  }
  .error-message {
    bottom: -19px;
  }
}

/* ============================================= */
/* ✅ for 385px wide screen */
/* ============================================= */

@media (max-width: 385px) {
  .book_btn {
    font-size: 16px !important;
    width: 140px !important;
    height: 40px !important;
  }
  h2 {
    font-size: 20px;
    line-height: 32px !important;
    &::after {
      height: 2px !important;
      width: 130px !important;
    }
    &::before {
      width: 2px !important;
      left: 129px !important;
    }
  }
  /* ---------------------------home */
  .video-container {
    height: 270px;
    video {
      width: 100vw;
      display: block;
      object-fit: contain;
    }
  }
  /* ---------------------------about */

  .about_section {
    margin-bottom: 50px;
  }
  /* ---------------------------room-1 */
  .room_1 .room_1_block .ct_row {
    .ct_left {
      h2 {
        max-width: 320px;
        &::before {
          top: 82px;
        }
      }
      p {
        padding-right: 0px;
      }
    }
    .ct_right {
      video {
        max-width: 300px;
        width: 100%;
        height: 408px;
      }
    }
  }
  /* --------------room-space */
  .room_space_section {
    margin-bottom: 40px;
    padding: 17px;
    .room_space {
      padding: 22px;
      padding-bottom: 28px;
      h2 {
        max-width: 280px;
        &::after {
          bottom: -13px;
        }
        &::before {
          top: 68px;
        }
      }
      .custom_p {
        margin-top: 25px;
        font-size: 17px;
        line-height: 24px;
        text-align: justify;
      }
      .cs_row {
        margin-top: 28px;
        flex-direction: column;
        gap: 16px;
        .col-6 {
          width: 100%;
          img {
            height: 35px;
          }
          h4 {
            font-size: 18px;
            span {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
  /* --------------room-2 */
  .room_2 {
    margin-bottom: 30px;
  }
  .room_2_block .ct_row {
    gap: 25px;
    .ct_left {
      width: 100%;
      padding-left: 0px;
      h2 {
        font-size: 22px;
        max-width: 450px;
        &::before {
          top: 75px;
        }
        &::after {
          bottom: -20px;
        }
      }

      .features {
        margin-top: 42px;
        padding-right: 0px;
        .ft_item {
          align-items: flex-start;
          margin-bottom: 12px;
          img {
            height: 35px;
          }
          p {
            text-align: justify;
            padding-right: 0px;
            font-size: 17px;
            line-height: 22px;
            word-spacing: 0.7px;
          }
        }
      }
    }

    .ct_right {
      width: 100%;
      img {
        width: 100%;
      }
      .book_btn {
        margin-top: 0px;
      }
    }
  }
  /* --------------room-3 */
  .room_3 {
    margin-bottom: 40px;
  }
  .room_3_block .ct_row {
    gap: 25px;
    .ct_left {
      h2 {
        font-size: 22px;
        max-width: 450px;
        &::before {
          top: 75px;
        }
        &::after {
          bottom: -20px;
        }
      }
      .features {
        margin-top: 42px;
        padding-right: 0px;
        .ft_item {
          align-items: flex-start;
          margin-bottom: 12px;
          img {
            height: 35px;
          }
          p {
            text-align: justify;
            padding-right: 0px;
            font-size: 17px;
            line-height: 22px;
            word-spacing: 0.7px;
          }
        }
      }
    }
  }
  /* --------------gallery */
  .gallery_section {
    margin-bottom: 50px;
  }
  .glr_block {
    h2 {
      &::before {
        top: 75px;
      }
      &::after {
        bottom: -21px;
      }
    }
  }
  .gallery_section .glr_block .glr_wrapper {
    margin-top: 50px;
    .glr_top {
      height: 200px;
    }
    .glr_bottom {
      min-height: 205px;

      .glr_p {
        line-height: 23px !important;
      }
    }
  }
  /* ----------------------- room-4 */
  .room_4 {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-inline: 20px;
  }
  .room_4_block .ct_row {
    gap: 25px;
    .ct_left {
      h2 {
        max-width: 500px;
        &::before {
          top: 79px;
        }
        &::after {
          bottom: -23px;
        }
      }
      .custom_p {
        margin-top: 45px;
        padding-right: 0;
        font-size: 17px;
        line-height: 24px;
        text-align: justify;
      }
    }

    .ct_right {
      width: 100%;
      img {
        width: 100%;
      }
    }
  }
  /* --------------booking */
  .booking_section {
    padding-block: 40px;
    margin-bottom: 40px;
    .book_block {
      h2 span {
        margin-bottom: 0;
        &::before {
          top: 70px;
        }
        &::after {
          bottom: -16px;
        }
      }
    }
  }
  /* --------------testimomials */
  .testimomials_section {
    padding-inline: 20px;
    h2 {
      max-width: 250px;
      margin-inline: auto;
      margin-bottom: 25px;
    }
    .testimomials {
      padding-inline: 0px;
      .ts_item {
        padding: 20px;

        p {
          margin-bottom: 18px;
          margin-top: 23px;
          font-size: 17px;
          line-height: 23px;
        }
      }
    }
  }
}
/* ============================================= */
/* ✅ for 325px wide screen */
/* ============================================= */

@media (max-width: 325px) {
  .glr_block {
    h2 {
      &::before {
        top: 110px;
      }
      &::after {
        bottom: -21px;
      }
    }
  }
}
/* ============================================= */
/* header */
/* ============================================= */

.header_section {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  height: 130px;
  padding: 20px 50px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
}

.header_section.shrunk {
  height: 84px;
  img {
    width: 130px;
  }
}
@media (max-width: 668px) {
  .header_section.shrunk .header_container {
    /* flex-direction: row; */


    img {
      width: 90px;
      margin-inline: auto;
    }
  }
}

.header_container {
  max-width: 1236px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.header_icon img {
  width: 176px;
  object-fit: cover;
  height: auto;
  margin-inline: auto;
}

.header_nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  .nav_link {
    text-decoration: none;
    color: #ac5080;
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
    margin-right: 40px;
    &:last-child {
      margin-right: 0;
    }
  }
}

.nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ac5080;
  transition: width 0.3s ease;
}

.nav_link:hover::after {
  width: 100%;
}

/* ✅ for tab View */
@media screen and (max-width: 840px) {
  .header_section {
    padding-inline: 45px;
  }
  .header_nav {
    justify-content: center;
    row-gap: 8px;
    .nav_link {
      font-size: 18px;
      margin-right: 25px;
    }
  }
}
/* ============================================ */
/* ✅ for Mobile View */
/* ============================================ */
@media screen and (max-width: 688px) {
  .header_section {
    padding-inline: 10px;
    padding-top: 10px;
    padding-bottom: 5px;
    height: auto;
  }

  .header_container {
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .header_icon {
    img {
      width: 146px;
    }
  }
  .header_section.shrunk {
    height: 104px;
  }
  .header_nav {
    margin-top: 0px;
    .nav_link {
      font-size: 16px;
    }
  }
}
/* ============================================ */
/* ✅ for Mobile View 490px */
/* ============================================ */

@media screen and (max-width: 490px) {
  .home-section {
    margin-top: 104px;
  }
  .video-container {
    margin-top: 20px;
    /* height: 230px; */
    video {
      width: 100vw;
      display: block;
      object-fit: contain;
    }
  }

  .header_icon {
    img {
      width: 146px;
    }
  }
  .header_nav {
    margin-top: 0px;
    .nav_link {
      font-size: 14px;
    }
  }
}
/* ======================================== */
/* footer */
/* ======================================== */
.footer_section {
  width: 100%;

  padding-bottom: 78px;
}
.ft_container {
  max-width: 1182px;
  width: 100%;
  margin: 0 auto;
}

.ft_image {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

/* For screens with a minimum width of 3000px */
@media (min-width: 3000px) {
  .ft_image {
    height: 720px;
    img{
      height: 100%;
      object-fit: cover; 
      object-position: top; 
    }
  }
}

.ft_image img {
  width: 100%;
}
.ft_heading {
  font-family: "heading_font_lt";
  color: #ac5080;
  font-size: 40px;
  line-height: 45px;
  margin-top: 24px;
  margin-bottom: 42px;
  font-weight: 400;
  letter-spacing: 0.6px;
  span {
    display: block;
    overflow: hidden;
    margin-top: 10px;
  }
}
.ft_bottom {
  display: flex;
  align-items: center;
  .ft_left {
    width: 50%;
  }
  .ft_right {
    width: 50%;
  }
}
.ft_bottom {
  display: flex;
  flex-direction: row;
}
.ft_bottom .ft_left {
  width: 50%;
  display: flex;
  gap: 115px;
}
.ft_bottom .ft_left .ft_col {
  p,
  span {
    font-family: "content_font";
    font-size: 24px;
    font-weight: 400;
    color: #ac5080;
    margin-bottom: 28px;
    line-height: 28px;
  }
  a {
    font-family: "content_font";
    font-size: 24px;
    font-weight: 400;
    color: #ac5080;
    text-decoration: none;
    line-height: 28px;
  }
}
.ft_right {
  width: 50%;
  padding-left: 52px;
}
.follow_us {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 23px;
  border: 1px solid #ac5080;
  p {
    font-family: "content_font";
    font-size: 24px;
    font-weight: 400;
    color: #ac5080;
    letter-spacing: 2px;
    line-height: 28px;
  }
}
.social_wrapper {
  display: flex;
  gap: 25px;
}

.social_wrapper a {
  display: block;
}

.social_wrapper a img {
  width: 35px;
}

.social_wrapper a:nth-child(3) img {
  width: 48px;
}
.footer-container {
  overflow: hidden;
  width: 100%;
  clear: both;
}

/* ============================================= */
/* ✅ for 1300px wide screen */
/* ============================================= */
@media (max-width: 1300px) {
  .footer_section {
    padding-bottom: 45px;
  }
  .ft_container {
    padding-inline: 40px;
  }
  .ft_heading {
    font-size: 34px;
    line-height: 40px;
  }
  .ft_image {
    height: 392px;
  }
  .ft_bottom p {
    margin-bottom: 10px;
  }

  .ft_bottom .ft_left .ft_col {
    p,
    span,
    a {
      font-size: 22px;
    }
  }
}
/* ======================================= */
@media (max-width: 1024px) {
  .ft_image {
    height: 345px;
  }
  .ft_bottom .ft_left {
    width: 50%;
    display: flex
;
    gap: 15px;
}
.follow_us {
  flex-direction: column;
  min-height: 85px;
    padding-block: 10px;
  p{
    white-space: nowrap;
  }
}
}
@media (max-width: 915px) {
  .ft_image {
    height: 310px;
  }
}
@media (max-width: 900px) {
  .ft_image {
    height: 300px;
  }
}
@media (max-width: 875px) {
  .ft_image {
    height: 260px;
  }
}
@media (max-width: 768px) {
  .ft_image {
    height: 236px;
  }
  .ft_bottom {
    flex-direction: column ;
    .ft_left {
      width: 100%;
      margin-inline: auto;
    }
    .ft_right {
      width: 100%;
      padding-left: 0px;
      .follow_us{
        margin-top: 20px;
      }
  }
}
}
@media (max-width: 688px) {
  .ft_image {
    height: 244px;
  }
}
@media (max-width: 588px) {
  .ft_image {
    height: 204px;
}
}
/* ============================================= */
/* ✅ for 550px wide screen */
/* ============================================= */

@media (max-width: 550px) {
  .footer_section {
    .ft_image {
      height: 114px;
    }
  }

  .ft_container {
    padding-inline: 0px;
    .ft_heading {
      padding-left: 20px;
      font-size: 24px;
      line-height: 24px;
      margin-bottom: 20px;
      span {
        font-size: 24px;
        line-height: 30px;
        margin-top: 0px;
      }
    }
  }
  .ft_bottom {
    flex-direction: column;
    padding-inline: 20px;
    .ft_left {
      width: 100%;
      flex-direction: column;
      gap: 15px;
      .ft_col p {
        margin-bottom: 5px;
      }
      .ft_col p,
      .ft_col span,
      .ft_col a {
        font-size: 19px;
        line-height: 24px;
      }
    }
    .ft_right {
      padding-left: 0px;
      width: 100%;
      .follow_us {
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        margin-top: 15px;
        padding-inline: 12px;

        p {
          font-size: 17px;
          margin-bottom: 5px;
          line-height: 24px;
        }
        .social_wrapper {
          a img {
            width: 25px;
          }
        }
      }
    }
  }
}

@media (max-width: 414px) {
  .about_block {
    .ct_row {
      .ct_left {
        h2 {
          &::before {
            top: 112.5px;
          }
        }
      }
    }
  }
}
@media screen and (max-width: 1298px) {
  .about_block {
    .ct_row {
      .ct_left {
        margin-top: 10px;
        h2 {
          &::before {
            top: 188px;
          }
        }
      }
    }
  }
  .room_1_block .ct_row {
    & .ct_left {
      & h2 {
        &::before {
          top: 139px;
        }
      }
    }
  }
  .room_4_block .ct_row {
    & .ct_right {
      img {
        max-width: 520px;
        width: 100%;
      }
    }
  }
}
@media (max-width: 390px) {
  /* about */
  .about_block {
    .ct_row {
      .ct_left {
        h2 {
          &::before {
            top: 112px;
          }
        }
      }
    }
  }
}

@media (max-width: 375px) {
  .about_section {
    & .about_block {
      & .ct_row {
        & .ct_left {
          & h2 {
            &::before {
              top: 115px;
            }
          }
        }
      }
    }
  }
  .room_4_block .ct_row {
    & .ct_right {
      img {
        width: 270px;
      }
    }
  }
}

.hd_text {
  padding-bottom: 30px;
  position: relative;
  h2 {
    margin-bottom: 0px;
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 176px;
    height: 3px;
    background-color: #ac5080;
    border-radius: 10px;
  }
  &::before {
    content: "";
    position: absolute;
    left: 175px;
    bottom: -8px;
    width: 3px;
    height: 18px;
    background-color: #ac5080;
    border-radius: 10px;
  }
}

@media (max-width: 700px) {
  .copyright {
    font-size: 18px;
    padding: 20px;
  }
  .hd_text {
    h2 {
      margin-bottom: 0px;
    }
    padding-bottom: 20px;
    position: relative;
    &::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 131px;
      height: 3px;
      background-color: #ac5080;
      border-radius: 10px;
    }
    &::before {
      content: "";
      position: absolute;
      left: 130px;
      bottom: -6px;
      width: 3px;
      height: 14px;
      background-color: #ac5080;
      border-radius: 10px;
    }
  }
}
