@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --web-wash: #fff;
  --primary: #1b1b1b;
  --secondary: #7d7e7c;
  --ternary: #d8d8d7;
  --gray: #f7f7f5;
  --border: #eaeaea;
  --accent: #e75480;
  --primary-font: "Jost", sans-serif;
  --secondary-font: "Poppins", sans-serif;
}

.stay_dark {
  --web-wash: #1b1b1b;
  --primary: #fff;
  --secondary: #d8d8d7;
  --gray: #181818;
  --border: #3c3c3c;
}

body,
html {
  color: var(--secondary);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.875em;
  font-weight: 400;
  overflow-x: clip;
  background-color: var(--web-wash);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--primary);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 400;
  line-height: 1.2em;
  font-family: "Jost", sans-serif;
}


.stay_secondary_font {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #e75480;
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--secondary);
}
table td,
table th {
  border-top: 1px solid var(--border);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--secondary);
  border: 1px solid var(--border);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--secondary);
  border-radius: 5px;
}

input,
textarea {
  color: var(--primary);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

label {
  margin-bottom: 8px;
}

/*--------------------------------------------------------------
  2. Preloader
----------------------------------------------------------------*/
.stay_preloader {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
  top: 0;
  width: 100%;
  height: 100vh;
  font-size: 80px;
  background-color: var(--web-wash);
}

.stay_preloader_in {
  width: 130px;
  height: 130px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 30px;
  border-radius: 50%;
}
.stay_preloader_in:after, .stay_preloader_in:before {
  content: "";
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  margin-left: -65px;
  margin-top: -65px;
}
.stay_preloader_in:after {
  border-color: transparent;
  border-top-color: #f594b0;
  -webkit-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
  z-index: 2;
}
.stay_preloader_in:before {
  border-color: #fbbbd3;
  opacity: 0.2;
}
.stay_preloader_in img {
  animation: sway 1s ease-in-out infinite alternate;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (min-width: 992px) {
  .stay_height_1 {
    height: 1px;
  }
  .stay_height_2 {
    height: 2px;
  }
  .stay_height_3 {
    height: 3px;
  }
  .stay_height_4 {
    height: 4px;
  }
  .stay_height_5 {
    height: 5px;
  }
  .stay_height_6 {
    height: 6px;
  }
  .stay_height_7 {
    height: 7px;
  }
  .stay_height_8 {
    height: 8px;
  }
  .stay_height_9 {
    height: 9px;
  }
  .stay_height_10 {
    height: 10px;
  }
  .stay_height_11 {
    height: 11px;
  }
  .stay_height_12 {
    height: 12px;
  }
  .stay_height_13 {
    height: 13px;
  }
  .stay_height_14 {
    height: 14px;
  }
  .stay_height_15 {
    height: 15px;
  }
  .stay_height_16 {
    height: 16px;
  }
  .stay_height_17 {
    height: 17px;
  }
  .stay_height_18 {
    height: 18px;
  }
  .stay_height_19 {
    height: 19px;
  }
  .stay_height_20 {
    height: 20px;
  }
  .stay_height_21 {
    height: 21px;
  }
  .stay_height_22 {
    height: 22px;
  }
  .stay_height_23 {
    height: 23px;
  }
  .stay_height_24 {
    height: 24px;
  }
  .stay_height_25 {
    height: 25px;
  }
  .stay_height_26 {
    height: 26px;
  }
  .stay_height_27 {
    height: 27px;
  }
  .stay_height_28 {
    height: 28px;
  }
  .stay_height_29 {
    height: 29px;
  }
  .stay_height_30 {
    height: 30px;
  }
  .stay_height_31 {
    height: 31px;
  }
  .stay_height_32 {
    height: 32px;
  }
  .stay_height_33 {
    height: 33px;
  }
  .stay_height_34 {
    height: 34px;
  }
  .stay_height_35 {
    height: 35px;
  }
  .stay_height_36 {
    height: 36px;
  }
  .stay_height_37 {
    height: 37px;
  }
  .stay_height_38 {
    height: 38px;
  }
  .stay_height_39 {
    height: 39px;
  }
  .stay_height_40 {
    height: 40px;
  }
  .stay_height_41 {
    height: 41px;
  }
  .stay_height_42 {
    height: 42px;
  }
  .stay_height_43 {
    height: 43px;
  }
  .stay_height_44 {
    height: 44px;
  }
  .stay_height_45 {
    height: 45px;
  }
  .stay_height_46 {
    height: 46px;
  }
  .stay_height_47 {
    height: 47px;
  }
  .stay_height_48 {
    height: 48px;
  }
  .stay_height_49 {
    height: 49px;
  }
  .stay_height_50 {
    height: 50px;
  }
  .stay_height_51 {
    height: 51px;
  }
  .stay_height_52 {
    height: 52px;
  }
  .stay_height_53 {
    height: 53px;
  }
  .stay_height_54 {
    height: 54px;
  }
  .stay_height_55 {
    height: 55px;
  }
  .stay_height_56 {
    height: 56px;
  }
  .stay_height_57 {
    height: 57px;
  }
  .stay_height_58 {
    height: 58px;
  }
  .stay_height_59 {
    height: 59px;
  }
  .stay_height_60 {
    height: 60px;
  }
  .stay_height_61 {
    height: 61px;
  }
  .stay_height_62 {
    height: 62px;
  }
  .stay_height_63 {
    height: 63px;
  }
  .stay_height_64 {
    height: 64px;
  }
  .stay_height_65 {
    height: 65px;
  }
  .stay_height_66 {
    height: 66px;
  }
  .stay_height_67 {
    height: 67px;
  }
  .stay_height_68 {
    height: 68px;
  }
  .stay_height_69 {
    height: 69px;
  }
  .stay_height_70 {
    height: 70px;
  }
  .stay_height_71 {
    height: 71px;
  }
  .stay_height_72 {
    height: 72px;
  }
  .stay_height_73 {
    height: 73px;
  }
  .stay_height_74 {
    height: 74px;
  }
  .stay_height_75 {
    height: 75px;
  }
  .stay_height_76 {
    height: 76px;
  }
  .stay_height_77 {
    height: 77px;
  }
  .stay_height_78 {
    height: 78px;
  }
  .stay_height_79 {
    height: 79px;
  }
  .stay_height_80 {
    height: 80px;
  }
  .stay_height_81 {
    height: 81px;
  }
  .stay_height_82 {
    height: 82px;
  }
  .stay_height_83 {
    height: 83px;
  }
  .stay_height_84 {
    height: 84px;
  }
  .stay_height_85 {
    height: 85px;
  }
  .stay_height_86 {
    height: 86px;
  }
  .stay_height_87 {
    height: 87px;
  }
  .stay_height_88 {
    height: 88px;
  }
  .stay_height_89 {
    height: 89px;
  }
  .stay_height_90 {
    height: 90px;
  }
  .stay_height_91 {
    height: 91px;
  }
  .stay_height_92 {
    height: 92px;
  }
  .stay_height_93 {
    height: 93px;
  }
  .stay_height_94 {
    height: 94px;
  }
  .stay_height_95 {
    height: 95px;
  }
  .stay_height_96 {
    height: 96px;
  }
  .stay_height_97 {
    height: 97px;
  }
  .stay_height_98 {
    height: 98px;
  }
  .stay_height_99 {
    height: 99px;
  }
  .stay_height_100 {
    height: 100px;
  }
  .stay_height_101 {
    height: 101px;
  }
  .stay_height_102 {
    height: 102px;
  }
  .stay_height_103 {
    height: 103px;
  }
  .stay_height_104 {
    height: 104px;
  }
  .stay_height_105 {
    height: 105px;
  }
  .stay_height_106 {
    height: 106px;
  }
  .stay_height_107 {
    height: 107px;
  }
  .stay_height_108 {
    height: 108px;
  }
  .stay_height_109 {
    height: 109px;
  }
  .stay_height_110 {
    height: 110px;
  }
  .stay_height_111 {
    height: 111px;
  }
  .stay_height_112 {
    height: 112px;
  }
  .stay_height_113 {
    height: 113px;
  }
  .stay_height_114 {
    height: 114px;
  }
  .stay_height_115 {
    height: 115px;
  }
  .stay_height_116 {
    height: 116px;
  }
  .stay_height_117 {
    height: 117px;
  }
  .stay_height_118 {
    height: 118px;
  }
  .stay_height_119 {
    height: 119px;
  }
  .stay_height_120 {
    height: 120px;
  }
  .stay_height_121 {
    height: 121px;
  }
  .stay_height_122 {
    height: 122px;
  }
  .stay_height_123 {
    height: 123px;
  }
  .stay_height_124 {
    height: 124px;
  }
  .stay_height_125 {
    height: 125px;
  }
  .stay_height_126 {
    height: 126px;
  }
  .stay_height_127 {
    height: 127px;
  }
  .stay_height_128 {
    height: 128px;
  }
  .stay_height_129 {
    height: 129px;
  }
  .stay_height_130 {
    height: 130px;
  }
  .stay_height_131 {
    height: 131px;
  }
  .stay_height_132 {
    height: 132px;
  }
  .stay_height_133 {
    height: 133px;
  }
  .stay_height_134 {
    height: 134px;
  }
  .stay_height_135 {
    height: 135px;
  }
  .stay_height_136 {
    height: 136px;
  }
  .stay_height_137 {
    height: 137px;
  }
  .stay_height_138 {
    height: 138px;
  }
  .stay_height_139 {
    height: 139px;
  }
  .stay_height_140 {
    height: 140px;
  }
  .stay_height_141 {
    height: 141px;
  }
  .stay_height_142 {
    height: 142px;
  }
  .stay_height_143 {
    height: 143px;
  }
  .stay_height_144 {
    height: 144px;
  }
  .stay_height_145 {
    height: 145px;
  }
  .stay_height_146 {
    height: 146px;
  }
  .stay_height_147 {
    height: 147px;
  }
  .stay_height_148 {
    height: 148px;
  }
  .stay_height_149 {
    height: 149px;
  }
  .stay_height_150 {
    height: 150px;
  }
  .stay_height_151 {
    height: 151px;
  }
  .stay_height_152 {
    height: 152px;
  }
  .stay_height_153 {
    height: 153px;
  }
  .stay_height_154 {
    height: 154px;
  }
  .stay_height_155 {
    height: 155px;
  }
  .stay_height_156 {
    height: 156px;
  }
  .stay_height_157 {
    height: 157px;
  }
  .stay_height_158 {
    height: 158px;
  }
  .stay_height_159 {
    height: 159px;
  }
  .stay_height_160 {
    height: 160px;
  }
  .stay_height_165 {
    height: 165px;
  }
  .stay_height_170 {
    height: 170px;
  }
  .stay_height_175 {
    height: 175px;
  }
  .stay_height_180 {
    height: 180px;
  }
  .stay_height_185 {
    height: 185px;
  }
  .stay_height_190 {
    height: 190px;
  }
  .stay_height_195 {
    height: 195px;
  }
  .stay_height_200 {
    height: 200px;
  }
  .stay_height_205 {
    height: 205px;
  }
  .stay_height_210 {
    height: 210px;
  }
  .stay_height_215 {
    height: 215px;
  }
  .stay_height_220 {
    height: 220px;
  }
  .stay_height_225 {
    height: 225px;
  }
  .stay_height_230 {
    height: 230px;
  }
  .stay_height_235 {
    height: 235px;
  }
  .stay_height_240 {
    height: 240px;
  }
  .stay_height_245 {
    height: 245px;
  }
  .stay_height_250 {
    height: 250px;
  }
}
@media screen and (max-width: 991px) {
  .stay_height_lg_1 {
    height: 1px;
  }
  .stay_height_lg_2 {
    height: 2px;
  }
  .stay_height_lg_3 {
    height: 3px;
  }
  .stay_height_lg_4 {
    height: 4px;
  }
  .stay_height_lg_5 {
    height: 5px;
  }
  .stay_height_lg_6 {
    height: 6px;
  }
  .stay_height_lg_7 {
    height: 7px;
  }
  .stay_height_lg_8 {
    height: 8px;
  }
  .stay_height_lg_9 {
    height: 9px;
  }
  .stay_height_lg_10 {
    height: 10px;
  }
  .stay_height_lg_11 {
    height: 11px;
  }
  .stay_height_lg_12 {
    height: 12px;
  }
  .stay_height_lg_13 {
    height: 13px;
  }
  .stay_height_lg_14 {
    height: 14px;
  }
  .stay_height_lg_15 {
    height: 15px;
  }
  .stay_height_lg_16 {
    height: 16px;
  }
  .stay_height_lg_17 {
    height: 17px;
  }
  .stay_height_lg_18 {
    height: 18px;
  }
  .stay_height_lg_19 {
    height: 19px;
  }
  .stay_height_lg_20 {
    height: 20px;
  }
  .stay_height_lg_21 {
    height: 21px;
  }
  .stay_height_lg_22 {
    height: 22px;
  }
  .stay_height_lg_23 {
    height: 23px;
  }
  .stay_height_lg_24 {
    height: 24px;
  }
  .stay_height_lg_25 {
    height: 25px;
  }
  .stay_height_lg_26 {
    height: 26px;
  }
  .stay_height_lg_27 {
    height: 27px;
  }
  .stay_height_lg_28 {
    height: 28px;
  }
  .stay_height_lg_29 {
    height: 29px;
  }
  .stay_height_lg_30 {
    height: 30px;
  }
  .stay_height_lg_31 {
    height: 31px;
  }
  .stay_height_lg_32 {
    height: 32px;
  }
  .stay_height_lg_33 {
    height: 33px;
  }
  .stay_height_lg_34 {
    height: 34px;
  }
  .stay_height_lg_35 {
    height: 35px;
  }
  .stay_height_lg_36 {
    height: 36px;
  }
  .stay_height_lg_37 {
    height: 37px;
  }
  .stay_height_lg_38 {
    height: 38px;
  }
  .stay_height_lg_39 {
    height: 39px;
  }
  .stay_height_lg_40 {
    height: 40px;
  }
  .stay_height_lg_41 {
    height: 41px;
  }
  .stay_height_lg_42 {
    height: 42px;
  }
  .stay_height_lg_43 {
    height: 43px;
  }
  .stay_height_lg_44 {
    height: 44px;
  }
  .stay_height_lg_45 {
    height: 45px;
  }
  .stay_height_lg_46 {
    height: 46px;
  }
  .stay_height_lg_47 {
    height: 47px;
  }
  .stay_height_lg_48 {
    height: 48px;
  }
  .stay_height_lg_49 {
    height: 49px;
  }
  .stay_height_lg_50 {
    height: 50px;
  }
  .stay_height_lg_51 {
    height: 51px;
  }
  .stay_height_lg_52 {
    height: 52px;
  }
  .stay_height_lg_53 {
    height: 53px;
  }
  .stay_height_lg_54 {
    height: 54px;
  }
  .stay_height_lg_55 {
    height: 55px;
  }
  .stay_height_lg_56 {
    height: 56px;
  }
  .stay_height_lg_57 {
    height: 57px;
  }
  .stay_height_lg_58 {
    height: 58px;
  }
  .stay_height_lg_59 {
    height: 59px;
  }
  .stay_height_lg_60 {
    height: 60px;
  }
  .stay_height_lg_61 {
    height: 61px;
  }
  .stay_height_lg_62 {
    height: 62px;
  }
  .stay_height_lg_63 {
    height: 63px;
  }
  .stay_height_lg_64 {
    height: 64px;
  }
  .stay_height_lg_65 {
    height: 65px;
  }
  .stay_height_lg_66 {
    height: 66px;
  }
  .stay_height_lg_67 {
    height: 67px;
  }
  .stay_height_lg_68 {
    height: 68px;
  }
  .stay_height_lg_69 {
    height: 69px;
  }
  .stay_height_lg_70 {
    height: 70px;
  }
  .stay_height_lg_71 {
    height: 71px;
  }
  .stay_height_lg_72 {
    height: 72px;
  }
  .stay_height_lg_73 {
    height: 73px;
  }
  .stay_height_lg_74 {
    height: 74px;
  }
  .stay_height_lg_75 {
    height: 75px;
  }
  .stay_height_lg_76 {
    height: 76px;
  }
  .stay_height_lg_77 {
    height: 77px;
  }
  .stay_height_lg_78 {
    height: 78px;
  }
  .stay_height_lg_79 {
    height: 79px;
  }
  .stay_height_lg_80 {
    height: 80px;
  }
  .stay_height_lg_81 {
    height: 81px;
  }
  .stay_height_lg_82 {
    height: 82px;
  }
  .stay_height_lg_83 {
    height: 83px;
  }
  .stay_height_lg_84 {
    height: 84px;
  }
  .stay_height_lg_85 {
    height: 85px;
  }
  .stay_height_lg_86 {
    height: 86px;
  }
  .stay_height_lg_87 {
    height: 87px;
  }
  .stay_height_lg_88 {
    height: 88px;
  }
  .stay_height_lg_89 {
    height: 89px;
  }
  .stay_height_lg_90 {
    height: 90px;
  }
  .stay_height_lg_91 {
    height: 91px;
  }
  .stay_height_lg_92 {
    height: 92px;
  }
  .stay_height_lg_93 {
    height: 93px;
  }
  .stay_height_lg_94 {
    height: 94px;
  }
  .stay_height_lg_95 {
    height: 95px;
  }
  .stay_height_lg_96 {
    height: 96px;
  }
  .stay_height_lg_97 {
    height: 97px;
  }
  .stay_height_lg_98 {
    height: 98px;
  }
  .stay_height_lg_99 {
    height: 99px;
  }
  .stay_height_lg_100 {
    height: 100px;
  }
  .stay_height_lg_101 {
    height: 101px;
  }
  .stay_height_lg_102 {
    height: 102px;
  }
  .stay_height_lg_103 {
    height: 103px;
  }
  .stay_height_lg_104 {
    height: 104px;
  }
  .stay_height_lg_105 {
    height: 105px;
  }
  .stay_height_lg_106 {
    height: 106px;
  }
  .stay_height_lg_107 {
    height: 107px;
  }
  .stay_height_lg_108 {
    height: 108px;
  }
  .stay_height_lg_109 {
    height: 109px;
  }
  .stay_height_lg_110 {
    height: 110px;
  }
  .stay_height_lg_111 {
    height: 111px;
  }
  .stay_height_lg_112 {
    height: 112px;
  }
  .stay_height_lg_113 {
    height: 113px;
  }
  .stay_height_lg_114 {
    height: 114px;
  }
  .stay_height_lg_115 {
    height: 115px;
  }
  .stay_height_lg_116 {
    height: 116px;
  }
  .stay_height_lg_117 {
    height: 117px;
  }
  .stay_height_lg_118 {
    height: 118px;
  }
  .stay_height_lg_119 {
    height: 119px;
  }
  .stay_height_lg_120 {
    height: 120px;
  }
  .stay_height_lg_121 {
    height: 121px;
  }
  .stay_height_lg_122 {
    height: 122px;
  }
  .stay_height_lg_123 {
    height: 123px;
  }
  .stay_height_lg_124 {
    height: 124px;
  }
  .stay_height_lg_125 {
    height: 125px;
  }
  .stay_height_lg_126 {
    height: 126px;
  }
  .stay_height_lg_127 {
    height: 127px;
  }
  .stay_height_lg_128 {
    height: 128px;
  }
  .stay_height_lg_129 {
    height: 129px;
  }
  .stay_height_lg_130 {
    height: 130px;
  }
  .stay_height_lg_131 {
    height: 131px;
  }
  .stay_height_lg_132 {
    height: 132px;
  }
  .stay_height_lg_133 {
    height: 133px;
  }
  .stay_height_lg_134 {
    height: 134px;
  }
  .stay_height_lg_135 {
    height: 135px;
  }
  .stay_height_lg_136 {
    height: 136px;
  }
  .stay_height_lg_137 {
    height: 137px;
  }
  .stay_height_lg_138 {
    height: 138px;
  }
  .stay_height_lg_139 {
    height: 139px;
  }
  .stay_height_lg_140 {
    height: 140px;
  }
  .stay_height_lg_141 {
    height: 141px;
  }
  .stay_height_lg_142 {
    height: 142px;
  }
  .stay_height_lg_143 {
    height: 143px;
  }
  .stay_height_lg_144 {
    height: 144px;
  }
  .stay_height_lg_145 {
    height: 145px;
  }
  .stay_height_lg_146 {
    height: 146px;
  }
  .stay_height_lg_147 {
    height: 147px;
  }
  .stay_height_lg_148 {
    height: 148px;
  }
  .stay_height_lg_149 {
    height: 149px;
  }
  .stay_height_lg_150 {
    height: 150px;
  }
  .stay_height_lg_151 {
    height: 151px;
  }
  .stay_height_lg_152 {
    height: 152px;
  }
  .stay_height_lg_153 {
    height: 153px;
  }
  .stay_height_lg_154 {
    height: 154px;
  }
  .stay_height_lg_155 {
    height: 155px;
  }
  .stay_height_lg_156 {
    height: 156px;
  }
  .stay_height_lg_157 {
    height: 157px;
  }
  .stay_height_lg_158 {
    height: 158px;
  }
  .stay_height_lg_159 {
    height: 159px;
  }
  .stay_height_lg_160 {
    height: 160px;
  }
}
/*--------------------------------------------------------------
  4. General
----------------------------------------------------------------*/
.stay_mb_1 {
  margin-bottom: 1px;
}

.stay_mb_2 {
  margin-bottom: 2px;
}

.stay_mb_3 {
  margin-bottom: 3px;
}

.stay_mb_4 {
  margin-bottom: 4px;
}

.stay_mb_5 {
  margin-bottom: 5px;
}

.stay_mb_6 {
  margin-bottom: 6px;
}

.stay_mb_7 {
  margin-bottom: 7px;
}

.stay_mb_8 {
  margin-bottom: 8px;
}

.stay_mb_9 {
  margin-bottom: 9px;
}

.stay_mb_10 {
  margin-bottom: 10px;
}

.stay_mb_11 {
  margin-bottom: 11px;
}

.stay_mb_12 {
  margin-bottom: 12px;
}

.stay_mb_13 {
  margin-bottom: 13px;
}

.stay_mb_14 {
  margin-bottom: 14px;
}

.stay_mb_15 {
  margin-bottom: 15px;
}

.stay_mb_16 {
  margin-bottom: 16px;
}

.stay_mb_17 {
  margin-bottom: 17px;
}

.stay_mb_18 {
  margin-bottom: 18px;
}

.stay_mb_19 {
  margin-bottom: 19px;
}

.stay_mb_20 {
  margin-bottom: 20px;
}

.stay_mb_21 {
  margin-bottom: 21px;
}

.stay_mb_22 {
  margin-bottom: 22px;
}

.stay_mb_23 {
  margin-bottom: 23px;
}

.stay_mb_24 {
  margin-bottom: 24px;
}

.stay_mb_25 {
  margin-bottom: 25px;
}

.stay_mb_26 {
  margin-bottom: 26px;
}

.stay_mb_27 {
  margin-bottom: 27px;
}

.stay_mb_28 {
  margin-bottom: 28px;
}

.stay_mb_29 {
  margin-bottom: 29px;
}

.stay_mb_30 {
  margin-bottom: 30px;
}

.stay_mb_31 {
  margin-bottom: 31px;
}

.stay_mb_32 {
  margin-bottom: 32px;
}

.stay_mb_33 {
  margin-bottom: 33px;
}

.stay_mb_34 {
  margin-bottom: 34px;
}

.stay_mb_35 {
  margin-bottom: 35px;
}

.stay_mb_36 {
  margin-bottom: 36px;
}

.stay_mb_37 {
  margin-bottom: 37px;
}

.stay_mb_38 {
  margin-bottom: 38px;
}

.stay_mb_39 {
  margin-bottom: 39px;
}

.stay_mb_40 {
  margin-bottom: 40px;
}

.stay_mb_41 {
  margin-bottom: 41px;
}

.stay_mb_42 {
  margin-bottom: 42px;
}

.stay_mb_43 {
  margin-bottom: 43px;
}

.stay_mb_44 {
  margin-bottom: 44px;
}

.stay_mb_45 {
  margin-bottom: 45px;
}

.stay_mb_46 {
  margin-bottom: 46px;
}

.stay_mb_47 {
  margin-bottom: 47px;
}

.stay_mb_48 {
  margin-bottom: 48px;
}

.stay_mb_49 {
  margin-bottom: 49px;
}

.stay_mb_50 {
  margin-bottom: 50px;
}

.stay_mb_51 {
  margin-bottom: 51px;
}

.stay_mb_52 {
  margin-bottom: 52px;
}

.stay_mb_53 {
  margin-bottom: 53px;
}

.stay_mb_54 {
  margin-bottom: 54px;
}

.stay_mb_55 {
  margin-bottom: 55px;
}

.stay_mb_56 {
  margin-bottom: 56px;
}

.stay_mb_57 {
  margin-bottom: 57px;
}

.stay_mb_58 {
  margin-bottom: 58px;
}

.stay_mb_59 {
  margin-bottom: 59px;
}

.stay_mb_60 {
  margin-bottom: 60px;
}

.stay_mb_61 {
  margin-bottom: 61px;
}

.stay_mb_62 {
  margin-bottom: 62px;
}

.stay_mb_63 {
  margin-bottom: 63px;
}

.stay_mb_64 {
  margin-bottom: 64px;
}

.stay_mb_65 {
  margin-bottom: 65px;
}

.stay_mb_66 {
  margin-bottom: 66px;
}

.stay_mb_67 {
  margin-bottom: 67px;
}

.stay_mb_68 {
  margin-bottom: 68px;
}

.stay_mb_69 {
  margin-bottom: 69px;
}

.stay_mb_70 {
  margin-bottom: 70px;
}

.stay_mb_75 {
  margin-bottom: 75px;
}

.stay_mb_80 {
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .stay_mb_lg_1 {
    margin-bottom: 1px;
  }
  .stay_mb_lg_2 {
    margin-bottom: 2px;
  }
  .stay_mb_lg_3 {
    margin-bottom: 3px;
  }
  .stay_mb_lg_4 {
    margin-bottom: 4px;
  }
  .stay_mb_lg_5 {
    margin-bottom: 5px;
  }
  .stay_mb_lg_6 {
    margin-bottom: 6px;
  }
  .stay_mb_lg_7 {
    margin-bottom: 7px;
  }
  .stay_mb_lg_8 {
    margin-bottom: 8px;
  }
  .stay_mb_lg_9 {
    margin-bottom: 9px;
  }
  .stay_mb_lg_10 {
    margin-bottom: 10px;
  }
  .stay_mb_lg_11 {
    margin-bottom: 11px;
  }
  .stay_mb_lg_12 {
    margin-bottom: 12px;
  }
  .stay_mb_lg_13 {
    margin-bottom: 13px;
  }
  .stay_mb_lg_14 {
    margin-bottom: 14px;
  }
  .stay_mb_lg_15 {
    margin-bottom: 15px;
  }
  .stay_mb_lg_16 {
    margin-bottom: 16px;
  }
  .stay_mb_lg_17 {
    margin-bottom: 17px;
  }
  .stay_mb_lg_18 {
    margin-bottom: 18px;
  }
  .stay_mb_lg_19 {
    margin-bottom: 19px;
  }
  .stay_mb_lg_20 {
    margin-bottom: 20px;
  }
  .stay_mb_lg_21 {
    margin-bottom: 21px;
  }
  .stay_mb_lg_22 {
    margin-bottom: 22px;
  }
  .stay_mb_lg_23 {
    margin-bottom: 23px;
  }
  .stay_mb_lg_24 {
    margin-bottom: 24px;
  }
  .stay_mb_lg_25 {
    margin-bottom: 25px;
  }
  .stay_mb_lg_26 {
    margin-bottom: 26px;
  }
  .stay_mb_lg_27 {
    margin-bottom: 27px;
  }
  .stay_mb_lg_28 {
    margin-bottom: 28px;
  }
  .stay_mb_lg_29 {
    margin-bottom: 29px;
  }
  .stay_mb_lg_30 {
    margin-bottom: 30px;
  }
  .stay_mb_lg_31 {
    margin-bottom: 31px;
  }
  .stay_mb_lg_32 {
    margin-bottom: 32px;
  }
  .stay_mb_lg_33 {
    margin-bottom: 33px;
  }
  .stay_mb_lg_34 {
    margin-bottom: 34px;
  }
  .stay_mb_lg_35 {
    margin-bottom: 35px;
  }
  .stay_mb_lg_36 {
    margin-bottom: 36px;
  }
  .stay_mb_lg_37 {
    margin-bottom: 37px;
  }
  .stay_mb_lg_38 {
    margin-bottom: 38px;
  }
  .stay_mb_lg_39 {
    margin-bottom: 39px;
  }
  .stay_mb_lg_40 {
    margin-bottom: 40px;
  }
  .stay_mb_lg_41 {
    margin-bottom: 41px;
  }
  .stay_mb_lg_42 {
    margin-bottom: 42px;
  }
  .stay_mb_lg_43 {
    margin-bottom: 43px;
  }
  .stay_mb_lg_44 {
    margin-bottom: 44px;
  }
  .stay_mb_lg_45 {
    margin-bottom: 45px;
  }
  .stay_mb_lg_46 {
    margin-bottom: 46px;
  }
  .stay_mb_lg_47 {
    margin-bottom: 47px;
  }
  .stay_mb_lg_48 {
    margin-bottom: 48px;
  }
  .stay_mb_lg_49 {
    margin-bottom: 49px;
  }
  .stay_mb_lg_50 {
    margin-bottom: 50px;
  }
  .stay_mb_lg_51 {
    margin-bottom: 51px;
  }
  .stay_mb_lg_52 {
    margin-bottom: 52px;
  }
  .stay_mb_lg_53 {
    margin-bottom: 53px;
  }
  .stay_mb_lg_54 {
    margin-bottom: 54px;
  }
  .stay_mb_lg_55 {
    margin-bottom: 55px;
  }
  .stay_mb_lg_56 {
    margin-bottom: 56px;
  }
  .stay_mb_lg_57 {
    margin-bottom: 57px;
  }
  .stay_mb_lg_58 {
    margin-bottom: 58px;
  }
  .stay_mb_lg_59 {
    margin-bottom: 59px;
  }
  .stay_mb_lg_60 {
    margin-bottom: 60px;
  }
  .stay_mb_lg_61 {
    margin-bottom: 61px;
  }
  .stay_mb_lg_62 {
    margin-bottom: 62px;
  }
  .stay_mb_lg_63 {
    margin-bottom: 63px;
  }
  .stay_mb_lg_64 {
    margin-bottom: 64px;
  }
  .stay_mb_lg_65 {
    margin-bottom: 65px;
  }
  .stay_mb_lg_66 {
    margin-bottom: 66px;
  }
  .stay_mb_lg_67 {
    margin-bottom: 67px;
  }
  .stay_mb_lg_68 {
    margin-bottom: 68px;
  }
  .stay_mb_lg_69 {
    margin-bottom: 69px;
  }
  .stay_mb_lg_70 {
    margin-bottom: 70px;
  }
  .stay_mb_lg_75 {
    margin-bottom: 75px;
  }
  .stay_mb_lg_80 {
    margin-bottom: 80px;
  }
}
.stay_zindex_1 {
  z-index: 1;
}

.stay_zindex_2 {
  z-index: 2;
}

.stay_zindex_3 {
  z-index: 3;
}

.stay_zindex_4 {
  z-index: 4;
}

.stay_zindex_5 {
  z-index: 5;
}

.stay_zindex_6 {
  z-index: 6;
}

.stay_zindex_7 {
  z-index: 7;
}

.stay_zindex_8 {
  z-index: 8;
}

.stay_zindex_9 {
  z-index: 9;
}

.stay_zindex_10 {
  z-index: 10;
}

.stay_fs_13 {
  font-size: 13px;
  line-height: 1.6em;
}

.stay_fs_14 {
  font-size: 14px;
  line-height: 1.6em;
}

.stay_fs_15 {
  font-size: 15px;
  line-height: 1.667;
}

.stay_fs_16 {
  font-size: 16px;
  line-height: 1.875em;
}

.stay_fs_21 {
  font-size: 21px;
  line-height: 1.286em;
}

.stay_fs_28 {
  font-size: 23px;
  line-height: 1.25em;
}

.stay_fs_38 {
  font-size: 38px;
  line-height: 1.316em;
}
@media (max-width: 1400px) {
  .stay_fs_38 {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .stay_fs_38 {
    font-size: 30px;
  }
}

.stay_fs_50 {
  font-size: 50px;
  line-height: 1.3em;
}
@media (max-width: 1400px) {
  .stay_fs_50 {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .stay_fs_50 {
    font-size: 40px;
  }
}

.stay_fs_67 {
  font-size: 67px;
  line-height: 1.12em;
}
@media (max-width: 1400px) {
  .stay_fs_67 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .stay_fs_67 {
    font-size: 46px;
  }
}

.stay_fs_89 {
  font-size: 89px;
  line-height: 1.124em;
}
@media (max-width: 1400px) {
  .stay_fs_89 {
    font-size: 78px;
  }
}
@media (max-width: 991px) {
  .stay_fs_89 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .stay_fs_89 {
    font-size: 50px;
  }
}

.stay_fs_150 {
  font-size: 150px;
  line-height: 1em;
}
@media (max-width: 991px) {
  .stay_fs_150 {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .stay_fs_150 {
    font-size: 80px;
  }
}

.stay_light {
  font-weight: 300;
}

.stay_normal {
  font-weight: 400;
}

.stay_medium {
  font-weight: 500;
}

.stay_semibold {
  font-weight: 600;
}

.stay_bold {
  font-weight: 700;
}

.stay_extra_bold {
  font-weight: 800;
}

.stay_black {
  font-weight: 900;
}

.stay_radius_3 {
  border-radius: 3px;
}

.stay_radius_5 {
  border-radius: 5px;
}

.stay_radius_7 {
  border-radius: 7px;
}

.stay_radius_10 {
  border-radius: 10px;
}

.stay_radius_15 {
  border-radius: 15px;
}

.stay_radius_20 {
  border-radius: 20px;
}

.stay_letter_spacing_1 {
  letter-spacing: 3.2px;
}
@media (max-width: 1400px) {
  .stay_letter_spacing_1 {
    letter-spacing: 2px;
  }
}
@media (max-width: 575px) {
  .stay_letter_spacing_1 {
    letter-spacing: 1px;
  }
}

.stay_mp_0 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stay_gap_y_20 {
  gap: 20px 0;
}

.stay_gap_y_24 {
  gap: 24px 0;
}

.stay_gap_y_30 {
  gap: 30px 0;
}

.stay_gap_y_35 {
  gap: 35px 0;
}

.stay_gap_y_40 {
  gap: 40px 0;
}

.stay_gap_y_45 {
  gap: 45px 0;
}

.stay_gap_y_50 {
  gap: 50px 0;
}

.stay_gap_y_60 {
  gap: 60px 0;
}
@media (max-width: 991px) {
  .stay_gap_y_60 {
    gap: 45px 0;
  }
}

.stay_gap_y_65 {
  gap: 65px 0;
}
@media (max-width: 991px) {
  .stay_gap_y_65 {
    gap: 45px 0;
  }
}

.stay_gap_y_75 {
  gap: 75px 0;
}
@media (max-width: 991px) {
  .stay_gap_y_75 {
    gap: 45px 0;
  }
}

.stay_gap_y_80 {
  gap: 80px 0;
}
@media (max-width: 991px) {
  .stay_gap_y_80 {
    gap: 45px 0;
  }
}

.stay_gap_y_90 {
  gap: 90px 0;
}
@media (max-width: 991px) {
  .stay_gap_y_90 {
    gap: 45px 0;
  }
}

.stay_row_gap_50 {
  margin-left: -25px;
  margin-right: -25px;
}
.stay_row_gap_50 > * {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1400px) {
  .stay_row_gap_50 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .stay_row_gap_50 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.stay_row_gap_60 {
  margin-left: -30px;
  margin-right: -30px;
}
.stay_row_gap_60 > * {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1400px) {
  .stay_row_gap_60 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .stay_row_gap_60 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.stay_row_gap_70 {
  margin-left: -35px;
  margin-right: -35px;
}
.stay_row_gap_70 > * {
  padding-left: 35px;
  padding-right: 35px;
}
@media (max-width: 1400px) {
  .stay_row_gap_70 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .stay_row_gap_70 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.stay_row_gap_80 {
  margin-left: -80px;
  margin-right: -80px;
}
.stay_row_gap_80 > * {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 1400px) {
  .stay_row_gap_80 {
    margin-left: -40px;
    margin-right: -40px;
  }
  .stay_row_gap_80 > * {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1199px) {
  .stay_row_gap_80 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .stay_row_gap_80 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.stay_row_gap_90 {
  margin-left: -45px;
  margin-right: -45px;
}
.stay_row_gap_90 > * {
  padding-left: 45px;
  padding-right: 45px;
}
@media (max-width: 1600px) {
  .stay_row_gap_90 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .stay_row_gap_90 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1400px) {
  .stay_row_gap_90 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .stay_row_gap_90 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1199px) {
  .stay_row_gap_90 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .stay_row_gap_90 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.stay_row_gap_100 {
  margin-left: -50px;
  margin-right: -50px;
}
.stay_row_gap_100 > * {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1400px) {
  .stay_row_gap_100 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .stay_row_gap_100 > * {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .stay_row_gap_100 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .stay_row_gap_100 > * {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.container-fluid {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.stay_plr_100 {
  padding-right: 100px;
  padding-left: 100px;
}
@media (max-width: 1600px) {
  .stay_plr_100 {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 1400px) {
  .stay_plr_100 {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  .stay_plr_100 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.stay_plr_70 {
  padding-right: 70px;
  padding-left: 70px;
}
@media (max-width: 991px) {
  .stay_plr_70 {
    padding-left: 0;
    padding-right: 0;
  }
}

hr {
  opacity: 1;
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--ternary);
}

.stay_bg_filed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.stay_bg_fixed {
  background-attachment: fixed;
}

.stay_vertical_middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
}

.stay_vertical_middle_in {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

.stay_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.stay_white_color {
  color: #fff;
}

.stay_primary_color {
  color: var(--primary);
}

.stay_secondary_color {
  color: var(--secondary);
}

.stay_ternary_color {
  color: var(--ternary);
}

.stay_accent_color {
  color: #e75480;
}

.stay_green_color {
  color: #4baf47;
}

.stay_white_bg {
  background-color: #fff;
}

.stay_primary_bg {
  background-color: var(--primary);
}

.stay_secondary_bg {
  background-color: var(--secondary);
}

.stay_ternary_bg {
  background-color: var(--ternary);
}

.stay_gray_bg {
  background-color: var(--gray);
}

.stay_accent_bg {
  background-color: #e75480;
}

.stay_pr_110 {
  padding-right: 110px;
}
@media (max-width: 1400px) {
  .stay_pr_110 {
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .stay_pr_110 {
    padding-right: 0px;
  }
}

.stay_pl_110 {
  padding-left: 110px;
}
@media (max-width: 1400px) {
  .stay_pl_110 {
    padding-left: 55px;
  }
}
@media (max-width: 991px) {
  .stay_pl_110 {
    padding-left: 0px;
  }
}

.stay_pr_100 {
  padding-right: 100px;
}
@media (max-width: 1400px) {
  .stay_pr_100 {
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .stay_pr_100 {
    padding-right: 0px;
  }
}

.stay_pl_100 {
  padding-left: 100px;
}
@media (max-width: 1400px) {
  .stay_pl_100 {
    padding-left: 55px;
  }
}
@media (max-width: 991px) {
  .stay_pl_100 {
    padding-left: 0px;
  }
}

.stay_pl_60 {
  padding-left: 60px;
}
@media (max-width: 991px) {
  .stay_pl_60 {
    padding-left: 0;
  }
}

.stay_pr_60 {
  padding-right: 60px;
}

.stay_btn {
  border: none;
  padding: 11px 30px;
  outline: none;
  color: #fff;
  background-color: #e75480;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stay_btn:hover {
  color: var(--web-wash);
  background-color: var(--primary);
}
.stay_btn.stay_color_1 {
  background-color: var(--primary);
}
.stay_btn.stay_color_1:hover {
  background-color: #fff;
  color: var(--primary);
}

.stay_btn {
  border: none;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  outline: none;
  background-color: transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.stay_btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  width: 13px;
}
.stay_btn span svg {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.stay_btn i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  color: inherit;
}
.stay_btn i:last-child {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: -19px;
  bottom: -21px;
  -webkit-transform: translate(0, 0) rotate(-45deg);
          transform: translate(0, 0) rotate(-45deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  color: currentColor;
}
.stay_btn:hover {
  background-color: #e75480;
  border-color: #e75480;
  color: #fff;
}
.stay_btn:hover i:first-child {
  -webkit-transform: translate(20px, -20px) rotate(-45deg);
          transform: translate(20px, -20px) rotate(-45deg);
}
.stay_btn:hover i:last-child {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(20px, -20px) rotate(-45deg);
          transform: translate(20px, -20px) rotate(-45deg);
}
.stay_btn.stay_white_btn {
  border-color: #fff;
  color: #fff;
}
.stay_btn.stay_white_btn:hover {
  border-color: #e75480;
}
.stay_btn.stay_accent_btn {
  background-color: #e75480;
  border-color: #e75480;
  color: #fff;
  position: relative;
}
.stay_btn.stay_accent_btn b {
  position: relative;
  z-index: 1;
  font-weight: inherit;
}
.stay_btn.stay_accent_btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.stay_btn.stay_accent_btn:hover::before {
  opacity: 1;
}
.stay_btn.stay_primary_btn {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--web-wash);
}
.stay_btn.stay_primary_btn:hover {
  background-color: #e75480;
  border-color: #e75480;
}

.stay_text_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.stay_text_btn::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: currentColor;
}
.stay_text_btn:hover {
  color: #fff;
}

.stay_form_field_2 {
  display: block;
  width: 100%;
  border: 1px solid var(--ternary);
  padding: 7px 20px;
  min-height: 47px;
  outline: none;
  background-color: transparent;
}
.stay_form_field_2:focus {
  border-color: #e75480;
}

.stay_half_ternary_bg::after {
  content: "";
  position: absolute;
  height: calc(100% - 54px);
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: var(--gray);
}
.stay_half_ternary_bg .stay_form,
.stay_half_ternary_bg .stay_form.stay_style_4 {
  margin-top: -54px;
}

.stay_form.stay_style_4 .stay_form_item,
.stay_extra_service_item .stay_form_item {
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.00002 5C4.88377 5 4.76741 4.95927 4.67866 4.87792L0.13321 0.711272C-0.0444033 0.54846 -0.0444033 0.284816 0.13321 0.122109C0.310823 -0.0405988 0.598436 -0.0407029 0.775936 0.122109L5.00002 3.99417L9.22411 0.122109C9.40172 -0.0407029 9.68933 -0.0407029 9.86683 0.122109C10.0443 0.28492 10.0444 0.548565 9.86683 0.711272L5.32138 4.87792C5.23263 4.95927 5.11627 5 5.00002 5Z" fill="white"/></svg>');
}

.stay_form.stay_style_4.stay_type_3 .stay_date_item {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-calendar-days"><path d="M8 2v4"/><path d="M16 2v4"/><rect width="18" height="18" x="3" y="4" rx="2"/><path d="M3 10h18"/><path d="M8 14h.01"/><path d="M12 14h.01"/><path d="M16 14h.01"/><path d="M8 18h.01"/><path d="M12 18h.01"/><path d="M16 18h.01"/></svg>');
}

.stay_form.stay_style_4.stay_type_5 .stay_form_item,
.stay_form.stay_style_4.stay_type_6 .stay_form_item {
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.00002 5C4.88377 5 4.76741 4.95927 4.67866 4.87792L0.13321 0.711272C-0.0444033 0.54846 -0.0444033 0.284816 0.13321 0.122109C0.310823 -0.0405988 0.598436 -0.0407029 0.775936 0.122109L5.00002 3.99417L9.22411 0.122109C9.40172 -0.0407029 9.68933 -0.0407029 9.86683 0.122109C10.0443 0.28492 10.0444 0.548565 9.86683 0.711272L5.32138 4.87792C5.23263 4.95927 5.11627 5 5.00002 5Z" fill="black"/></svg>');
}

.stay_form {
  padding: 30px;
  gap: 10px 20px;
}
.stay_form .stay_form_item {
  border: 1px solid #fff;
  padding: 0 16px;
  min-height: 47px;
}
.stay_form .stay_form_item label {
  margin: 0 5px 0 0;
}
.stay_form .stay_form_item_btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.stay_form.stay_type_1 {
  border-radius: 50px;
}
.stay_form.stay_type_1 .stay_radius_5 {
  border-radius: 20px;
}
.stay_form.stay_type_2 {
  background-color: transparent;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 30px;
}
.stay_form.stay_type_2 .stay_form_item {
  border-width: 0 0 1px 0;
}
.stay_form.stay_type_2 .stay_form_item_btn {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 172px;
}
.stay_form.stay_type_3 {
  padding: 30px 0;
}
.stay_form.stay_type_3 .stay_form_item {
  min-width: 170px;
}
.stay_form.stay_type_4 .stay_form_item {
  border-color: var(--primary);
}
.stay_form.stay_type_4 .stay_white_color {
  color: var(--primary);
}
.stay_form.stay_type_5 {
  padding: 40px 50px 50px;
}
.stay_form.stay_type_5 .stay_form_item {
  margin-bottom: 30px;
  padding-right: 0;
  padding-left: 20px;
}
.stay_form.stay_type_5 select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  background-position-x: calc(100% - 20px);
  height: 45px;
  padding: 0 40px 0px 15px;
}

.stay_form_item {
  border: 1px solid #fff;
  padding-left: 15px;
  height: 47px;
  position: relative;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-repeat: no-repeat;
  background-position-x: calc(100% - 15px);
  background-position-y: 50%;
}
.stay_form_item label {
  margin: 0;
}
.stay_form_item.stay_children_item {
  -webkit-box-flex: 1.15;
      -ms-flex: 1.15;
          flex: 1.15;
}
@media (max-width: 1400px) {
  .stay_form_item {
    padding-left: 12px;
    background-position-x: calc(100% - 12px);
  }
}

.stay_quantity_btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10px 32px 10px 15px;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 1400px) {
  .stay_quantity_btn {
    padding-right: 28px;
    padding-left: 12px;
  }
}

.stay_form.stay_style_4 {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 18px;
}
@media (max-width: 1400px) {
  .stay_form.stay_style_4 {
    gap: 10px 5px;
  }
  .stay_form.stay_style_4 .stay_btn {
    padding: 11px 15px;
  }
}
@media (max-width: 1199px) {
  .stay_form.stay_style_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stay_form.stay_style_4 .stay_form_item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.stay_form.stay_style_4 .stay_date_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: inherit;
  position: relative;
}
.stay_form.stay_style_4 .stay_date_items::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  z-index: 6;
}
@media (max-width: 1199px) {
  .stay_form.stay_style_4 .stay_date_items {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .stay_form.stay_style_4 .stay_date_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stay_form.stay_style_4 .stay_date_items .stay_date_item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.stay_form.stay_style_4 .stay_datetimes {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.stay_form.stay_style_4 .stay_date_item {
  width: 240px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 32px;
}
@media (max-width: 1400px) {
  .stay_form.stay_style_4 .stay_date_item {
    width: 235px;
    padding-right: 28px;
  }
}
@media (max-width: 1199px) {
  .stay_form.stay_style_4 .stay_date_item {
    width: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.stay_form.stay_style_4.stay_type_1 {
  padding: 0;
}
.stay_form.stay_style_4.stay_type_1 .stay_form_item {
  background-color: rgba(27, 27, 27, 0.5);
}
@media (min-width: 992px) {
  .stay_form.stay_style_4.stay_type_1 .stay_form_item {
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.stay_form.stay_style_4.stay_type_1 .stay_date_item {
  width: 250px;
}
.stay_form.stay_style_4.stay_type_2, .stay_form.stay_style_4.stay_type_4 {
  border-radius: 50px;
}
.stay_form.stay_style_4.stay_type_2 .stay_form_item,
.stay_form.stay_style_4.stay_type_2 .stay_btn, .stay_form.stay_style_4.stay_type_4 .stay_form_item,
.stay_form.stay_style_4.stay_type_4 .stay_btn {
  border-radius: 20px;
}
.stay_form.stay_style_4.stay_type_3 {
  background-color: transparent;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 30px;
}
.stay_form.stay_style_4.stay_type_3 .stay_form_item {
  border-width: 0 0 1px 0;
}
.stay_form.stay_style_4.stay_type_3 .stay_date_item {
  width: 240px;
  padding-right: 38px;
}
@media (max-width: 767px) {
  .stay_form.stay_style_4.stay_type_3 .stay_date_item {
    width: 100%;
  }
}
.stay_form.stay_style_4.stay_type_4 {
  padding: 30px 0;
}
.stay_form.stay_style_4.stay_type_5 .stay_form_item {
  border-color: var(--primary);
}
.stay_form.stay_style_4.stay_type_5 .stay_white_color,
.stay_form.stay_style_4.stay_type_5 .stay_quantity_btn {
  color: var(--primary);
}
.stay_form.stay_style_4.stay_type_6 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  gap: 20px 0;
}
.stay_form.stay_style_4.stay_type_6 .stay_form_item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border-color: var(--border);
  width: 100%;
  background-color: var(--gray);
}
.stay_form.stay_style_4.stay_type_6 .stay_white_color,
.stay_form.stay_style_4.stay_type_6 .stay_quantity_btn {
  color: var(--secondary);
}
.stay_form.stay_style_4.stay_type_6 .stay_date_items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.stay_form.stay_style_4.stay_type_6 .stay_date_items::before {
  height: 20px;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.stay_form.stay_style_4.stay_type_6 .stay_quantity_wrap .stay_quantity_dropdown {
  left: initial;
  right: -1px;
  width: calc(100% + 2px);
}
.stay_form.stay_style_4.stay_type_7 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  gap: 15px 0;
}
.stay_form.stay_style_4.stay_type_7 .stay_form_item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}
.stay_form.stay_style_4.stay_type_7 .stay_date_items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.stay_form.stay_style_4.stay_type_7 .stay_date_items::before {
  height: 20px;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.stay_form.stay_style_4.stay_type_7 .stay_form_item_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
}
.stay_form.stay_style_4.stay_type_7 .stay_form_item_group > .stay_form_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.stay_form.stay_style_4.stay_type_7 .stay_quantity_wrap .stay_quantity_dropdown {
  left: initial;
  right: 0;
}

.stay_book_now_card {
  padding: 40px 50px 50px;
}
@media (max-width: 1199px) {
  .stay_book_now_card {
    padding: 40px 35px 50px;
  }
}
.stay_book_now_card .stay_extra_service_item {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.stay_book_now_card .stay_extra_service_item:not(:last-child) {
  margin-bottom: 15px;
}
.stay_book_now_card .stay_extra_service_item .stay_checkbox input:checked + label::before {
  border-color: #fff;
  background-color: #fff;
}
.stay_book_now_card .stay_extra_service_item .stay_checkbox label::before {
  border-color: #fff;
}
.stay_book_now_card .stay_extra_service_item .stay_checkbox label::after {
  border-color: #e75480;
}
.stay_book_now_card .stay_extra_service_item .stay_form_item {
  border-width: 0;
  border-radius: 0;
  padding-left: 0;
  background-position-x: 100%;
  height: 22px;
  width: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: 15px;
}
.stay_book_now_card .stay_extra_service_item .stay_quantity_btn {
  padding: 0px 20px 0px 0px;
}
.stay_book_now_card .stay_extra_service_item .stay_quantity_wrap .stay_quantity_dropdown {
  width: 116px;
  left: initial;
  right: 0;
  margin-top: 8px;
  padding: 8px;
}
.stay_book_now_card .stay_extra_service_item_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.stay_book_now_card .stay_book_now_card_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px 15px;
}

.stay_checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding-left: 30px;
}
.stay_checkbox input {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.stay_checkbox input:checked + label::before {
  border-color: #e75480;
  background-color: #e75480;
}
.stay_checkbox input:checked + label::after {
  opacity: 1;
}
.stay_checkbox a {
  color: #e75480;
  position: relative;
  z-index: 3;
}
.stay_checkbox a:hover {
  text-decoration: underline;
}
.stay_checkbox label {
  margin: 0;
  display: inline-block;
}
.stay_checkbox label::before {
  content: "";
  height: 17px;
  width: 17px;
  border: 1px solid var(--secondary);
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 3px;
}
.stay_checkbox label::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 6px;
  border: 2px solid #fff;
  left: 6px;
  top: 9px;
  border-left: 0;
  border-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.stay_radiobox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding-left: 30px;
}
.stay_radiobox input {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.stay_radiobox input:checked + label::before {
  border-color: #e75480;
  background-color: transparent;
}
.stay_radiobox input:checked + label::after {
  opacity: 1;
}
.stay_radiobox a {
  color: #e75480;
  position: relative;
  z-index: 3;
}
.stay_radiobox a:hover {
  text-decoration: underline;
}
.stay_radiobox label {
  margin: 0;
  display: inline-block;
}
.stay_radiobox label img {
  margin-right: 10px;
}
.stay_radiobox label::before {
  content: "";
  height: 20px;
  width: 20px;
  border: 1px solid var(--secondary);
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}
.stay_radiobox label::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: #e75480;
  left: 4px;
  top: 9px;
  opacity: 0;
  border-radius: 50%;
}

.stay_payment_method_list {
  list-style: none;
  padding: 0;
}
.stay_payment_method_list li:not(:last-child) {
  margin-bottom: 16px;
}

.daterangepicker {
  border-color: var(--border);
  border-radius: 5px;
  font-family: var(--primary);
  background-color: var(--web-wash);
}
.daterangepicker:after, .daterangepicker::before {
  display: none;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: var(--web-wash);
}
.daterangepicker .calendar-table {
  background-color: var(--web-wash);
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  font-size: 14px;
  padding: 2px 5px;
  width: 33px;
}
.daterangepicker .calendar-table th {
  color: var(--primary);
  font-weight: 600;
}
.daterangepicker .calendar-table td {
  color: var(--secondary);
}
.daterangepicker td.in-range {
  background-color: rgba(170, 132, 83, 0.2);
  color: var(--primary);
}
.daterangepicker td.available:hover {
  background-color: rgba(170, 132, 83, 0.35);
  color: #e75480;
}
.daterangepicker th.available:hover {
  background-color: var(--border);
  color: #e75480;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #e75480;
  color: #fff;
}
.daterangepicker .drp-buttons {
  border-color: var(--border);
}
.daterangepicker .drp-calendar {
  display: none;
  max-width: 320px;
}
.daterangepicker td.disabled,
.daterangepicker option.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.daterangepicker .applyBtn.btn.btn-primary {
  background-color: #e75480;
  font-weight: 500;
  font-size: 14px;
  border-color: #e75480;
  padding: 4px 12px;
  border-radius: 5px;
}
.daterangepicker .applyBtn.btn.btn-primary:hover {
  background-color: var(--primary);
  color: var(--web-wash);
  border-color: var(--primary);
}
.daterangepicker .drp-selected {
  display: none;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border-color: var(--primary);
}
.daterangepicker .drp-buttons .btn.btn-default {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
.daterangepicker .drp-buttons .btn.btn-default:hover {
  color: var(--secondary);
}
.daterangepicker .calendar-table {
  border-color: var(--web-wash);
}

.stay_quantity_wrap .stay_quantity_dropdown {
  display: none;
  position: absolute;
  background-color: var(--web-wash);
  width: 300px;
  right: 0;
  top: 100%;
  margin-top: 5px;
  padding: 20px 20px;
  border-radius: 5px;
  border: 1px solid var(--border);
  z-index: 10;
}
.stay_quantity_wrap.active .stay_quantity_dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stay_quantity_dropdown_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.stay_count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.stay_count .stay_quantity_decrement,
.stay_count .stay_quantity_increment {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  height: 30px;
  width: 30px;
  font-size: 14px;
  border-radius: 5px;
}
.stay_count .stay_quantity_decrement:hover,
.stay_count .stay_quantity_increment:hover {
  background-color: var(--border);
}
.stay_count .stay_quantity_number {
  min-width: 40px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border-color: var(--ternary);
  background: transparent;
  font-weight: normal;
  color: var(--primary);
  border-radius: 5px;
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover,
.ui-button:hover,
html .ui-button.ui-state-disabled:hover:hover,
html .ui-button.ui-state-disabled:active:hover {
  background-color: var(--ternary);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border-color: #e75480;
  background-color: #e75480 !important;
  color: #fff !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #e75480;
}

.ui-datepicker {
  width: 320px;
  padding: 5px;
}
.ui-datepicker table th {
  color: var(--primary);
}

.ui-widget.ui-widget-content {
  border-color: var(--ternary);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 5px;
}

.ui-datepicker .ui-datepicker-header {
  padding: 5px 0;
}

.ui-widget-header {
  border: none;
  background: transparent;
  color: var(--primary);
  font-weight: bold;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 5px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 5px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 5px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 5px;
}

.stay_play_btn {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

.stay_play_btn_2 {
  background-color: rgba(27, 27, 27, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 115px;
  height: 115px;
}
.stay_play_btn_2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stay_play_btn_2 svg {
  position: relative;
  z-index: 2;
}
.stay_play_btn_2:hover::before {
  opacity: 1;
}
.stay_play_btn_2.stay_color_1 {
  background-color: #e75480;
}

.stay_play_btn_3 {
  position: relative;
  display: block;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stay_play_btn_3:before, .stay_play_btn_3:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  background: #e75480;
  border-radius: 50%;
}
.stay_play_btn_3:before {
  z-index: 0;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}
.stay_play_btn_3:after {
  z-index: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.stay_play_btn_3 svg {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.stay_video_block {
  height: 670px;
}
@media (max-width: 991px) {
  .stay_video_block {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .stay_video_block {
    height: 420px;
  }
  .stay_video_block .stay_play_btn {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
            transform: translate(-50%, -50%) scale(0.7);
  }
}
.stay_video_block .stay_video_block_bg {
  border-radius: inherit;
}
.stay_video_block .stay_video_block_title {
  background: -webkit-gradient(linear, left top, left bottom, from(#191919), to(rgba(125, 126, 124, 0.3)));
  background: linear-gradient(180deg, #191919 0%, rgba(125, 126, 124, 0.3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stay_video_block.stay_color_1 .stay_video_block_title {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(126, 124, 124, 0.3)));
  background: linear-gradient(180deg, #fff 0%, rgba(126, 124, 124, 0.3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stay_video_block.stay_type_1 {
  height: 750px;
}
@media (max-width: 1400px) {
  .stay_video_block.stay_type_1 {
    height: 600px;
  }
  .stay_video_block.stay_type_1 .stay_play_btn_2 {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media (max-width: 991px) {
  .stay_video_block.stay_type_1 {
    height: 450px;
  }
  .stay_video_block.stay_type_1 .stay_play_btn_2 {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.stay_video_block.stay_type_2 {
  height: 800px;
  border-radius: 25em 25em 0 0;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .stay_video_block.stay_type_2 {
    height: 600px;
  }
  .stay_video_block.stay_type_2 .stay_play_btn_2 {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media (max-width: 991px) {
  .stay_video_block.stay_type_2 .stay_play_btn_2 {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.stay_video_block.stay_type_2 .stay_video_block_border {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  top: 30px;
  z-index: 2;
  border-radius: inherit;
  border: 1px solid #e75480;
}
.stay_video_block.stay_type_3 {
  height: 800px;
}
@media (max-width: 991px) {
  .stay_video_block.stay_type_3 {
    height: 500px;
  }
  .stay_video_block.stay_type_3 .stay_play_btn_2 {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.stay_video_block.stay_type_4 {
  height: 550px;
}
.stay_video_block.stay_type_4 .stay_play_btn_2 {
  scale: 0.7;
}
.stay_video_block.stay_type_5 {
  height: 650px;
}
@media (max-width: 1199px) {
  .stay_video_block.stay_type_5 {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .stay_video_block.stay_type_5 {
    height: 450px;
  }
}
.stay_video_block.stay_type_5 .stay_play_btn_2 {
  scale: 0.7;
}
.stay_video_block.stay_type_6 {
  height: 425px;
}
.stay_video_block.stay_type_6 .stay_play_btn_2 {
  scale: 0.7;
}

.stay_rating {
  width: 92px;
  height: 14px;
  position: relative;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.stay_rating i {
  margin-right: 3px;
}
.stay_rating .stay_rating_percentage {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.stay_rating .stay_rating_percentage {
  width: 50%;
}

.stay_list li {
  padding-left: 40px;
  position: relative;
}
.stay_list li:not(:last-child) {
  margin-bottom: 18px;
}
.stay_list svg {
  color: #e75480;
  position: absolute;
  left: 0;
  top: 3px;
}
.stay_list b {
  font-weight: 500;
  color: var(--primary);
}

.stay_list .stay_list_icon {
  height: 50px;
  width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: absolute;
  top: 27px;
  right: 0;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  overflow: hidden;
}
.stay_list .stay_list_icon svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.stay_list .stay_list_icon svg:first-child {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.stay_list .stay_list_icon svg:last-child {
  position: absolute;
  left: -10px;
  bottom: -10px;
}
.stay_list .stay_list_icon:hover svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.stay_list .stay_list_icon:hover svg:first-child {
  -webkit-transform: translate(30px, -30px);
          transform: translate(30px, -30px);
}
.stay_list .stay_list_icon:hover svg:last-child {
  left: 18px;
  bottom: 18px;
}
.stay_list .stay_list_in {
  position: relative;
  z-index: 12;
  padding: 20px 60px 20px 0;
}
.stay_list li {
  border-bottom: 1px solid var(--secondary);
}
.stay_list li h2 {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.stay_list li:hover h2 {
  color: #e75480;
}
.stay_list li:hover .stay_list_icon {
  background-color: #e75480;
  color: #fff;
}

.stay_list.stay_style_3 {
  display: grid;
  grid-gap: 15px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  max-width: 550px;
}
.stay_list.stay_style_3 li {
  position: relative;
  padding-left: 30px;
}
.stay_list.stay_style_3 li img {
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
}

.stay_grid_style_1,
.stay_grid_style_3 {
  display: grid;
  grid-gap: 0px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
}

@media (max-width: 767px) {
  .stay_grid_style_1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .stay_grid_style_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.stay_grid_style_1 .stay_grid_item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.stay_grid_style_1 .stay_grid_item:first-child .stay_gallery_item {
  height: 100%;
}
@media (max-width: 575px) {
  .stay_grid_style_1 .stay_grid_item:first-child {
    grid-column: initial;
    grid-row: initial;
  }
}
.stay_grid_style_1 .stay_grid_item:nth-child(2) {
  grid-row: span 2;
}
@media (max-width: 575px) {
  .stay_grid_style_1 .stay_grid_item:nth-child(2) {
    grid-row: initial;
  }
}
.stay_grid_style_1 .stay_grid_item:nth-child(2) .stay_gallery_item {
  height: 100%;
}

.stay_grid_style_2 {
  display: grid;
  grid-gap: 24px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
}
@media (max-width: 991px) {
  .stay_grid_style_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .stay_grid_style_2 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px 0;
  }
}
@media (min-width: 576px) {
  .stay_grid_style_2 .stay_grid_item:nth-child(4) {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .stay_grid_style_3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .stay_grid_style_3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.stay_grid_style_3 .stay_grid_item:first-child {
  grid-row: span 2;
}
@media (max-width: 575px) {
  .stay_grid_style_3 .stay_grid_item:first-child {
    grid-row: initial;
  }
}
.stay_grid_style_3 .stay_grid_item:first-child .stay_gallery_item {
  height: 100%;
}
.stay_grid_style_3 .stay_grid_item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}
.stay_grid_style_3 .stay_grid_item:nth-child(3) .stay_gallery_item {
  height: 100%;
}
@media (max-width: 575px) {
  .stay_grid_style_3 .stay_grid_item:nth-child(3) {
    grid-column: initial;
    grid-row: initial;
  }
}

.stay_grid_style_4 {
  display: grid;
  grid-gap: 24px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
}
@media (max-width: 1199px) {
  .stay_grid_style_4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .stay_grid_style_4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .stay_grid_style_4 .stay_grid_item:first-child {
    grid-column: span 2;
  }
}

.stay_gallery_item {
  padding-top: 100%;
}
.stay_gallery_item .stay_gallery_item_hover {
  position: absolute;
  left: 50px;
  right: 50px;
  top: 50px;
  bottom: 50px;
  z-index: 1;
  background: rgba(27, 27, 27, 0.3);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 15px;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.stay_gallery_item:hover .stay_gallery_item_hover {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.stay_gallery_item.stay_style_3 {
  height: 465px;
}
@media (max-width: 1400px) {
  .stay_gallery_item.stay_style_3 {
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .stay_gallery_item.stay_style_3 {
    height: 335px;
  }
}
@media (max-width: 991px) {
  .stay_gallery_item.stay_style_3 {
    height: 380px;
  }
}
@media (max-width: 767px) {
  .stay_gallery_item.stay_style_3 {
    height: 275px;
  }
}
@media (max-width: 575px) {
  .stay_gallery_item.stay_style_3 {
    height: 400px;
  }
}
.stay_gallery_item.stay_style_3 .stay_gallery_item_hover {
  position: absolute;
  left: 24px;
  top: 24px;
  right: 24px;
  bottom: 24px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 40px 20px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.stay_gallery_item.stay_style_3 .stay_hover_icon {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.stay_gallery_item.stay_style_3 .stay_hover_icon svg {
  opacity: 0;
  -webkit-transform: scale(4);
          transform: scale(4);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.stay_gallery_item.stay_style_3:hover .stay_gallery_item_hover {
  opacity: 1;
}
.stay_gallery_item.stay_style_3:hover .stay_hover_icon svg {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.stay_gallery_item.stay_style_3.stay_type_1 {
  height: 615px;
}
@media (max-width: 1400px) {
  .stay_gallery_item.stay_style_3.stay_type_1 {
    height: 460px;
  }
}
@media (max-width: 1199px) {
  .stay_gallery_item.stay_style_3.stay_type_1 {
    height: 410px;
  }
}
@media (max-width: 991px) {
  .stay_gallery_item.stay_style_3.stay_type_1 {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .stay_gallery_item.stay_style_3.stay_type_1 {
    height: 380px;
  }
}
@media (max-width: 575px) {
  .stay_gallery_item.stay_style_3.stay_type_1 {
    height: 400px;
  }
}

.stay_gallery_3_wrap {
  position: relative;
}
.stay_gallery_3_wrap::before {
  content: "";
  position: absolute;
  height: 600px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary);
}
.stay_gallery_3_wrap .container {
  position: relative;
}

.stay_custom_pointer_wrap {
  position: relative;
}
.stay_custom_pointer_wrap .stay_mouse_point {
  position: absolute;
  z-index: 10;
}
.stay_custom_pointer_wrap .stay_mouse_point {
  height: 115px;
  width: 115px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -58%) scale(0);
          transform: translate(-50%, -58%) scale(0);
  display: none;
  background-color: rgba(27, 27, 27, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity ease 0.3s, -webkit-transform ease 0.3s;
  transition: opacity ease 0.3s, -webkit-transform ease 0.3s;
  transition: transform ease 0.3s, opacity ease 0.3s;
  transition: transform ease 0.3s, opacity ease 0.3s, -webkit-transform ease 0.3s;
}
.stay_custom_pointer_wrap .stay_mouse_point {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--primary);
  font-family: "Jost", sans-serif;
  font-size: 38px;
  white-space: nowrap;
  margin: 15px 0 0 15px;
  padding: 8px 30px 8px 20px;
  line-height: 1.4em;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity ease 0.3s, -webkit-transform ease 0.3s;
  transition: opacity ease 0.3s, -webkit-transform ease 0.3s;
  transition: transform ease 0.3s, opacity ease 0.3s;
  transition: transform ease 0.3s, opacity ease 0.3s, -webkit-transform ease 0.3s;
}
.stay_custom_pointer_wrap .stay_mouse_point.stay_style_3 {
  width: 330px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  -webkit-transition: opacity ease 0.4s, -webkit-transform ease 0.4s;
  transition: opacity ease 0.4s, -webkit-transform ease 0.4s;
  transition: transform ease 0.4s, opacity ease 0.4s;
  transition: transform ease 0.4s, opacity ease 0.4s, -webkit-transform ease 0.4s;
  pointer-events: none;
}
.stay_custom_pointer_wrap:hover .stay_mouse_point {
  opacity: 1;
  -webkit-transform: translate(-50%, -58%) scale(1);
          transform: translate(-50%, -58%) scale(1);
}
@media (max-width: 991px) {
  .stay_custom_pointer_wrap:hover .stay_mouse_point {
    -webkit-transform: translate(-50%, -58%) scale(0.6);
            transform: translate(-50%, -58%) scale(0.6);
  }
}
.stay_custom_pointer_wrap:hover .stay_mouse_point.stay_style_3 {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.stay_custom_pointer_wrap:hover .stay_mouse_point {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.stay_review_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 10px 25px 8px rgba(27, 27, 27, 0.04);
          box-shadow: 0px 10px 25px 8px rgba(27, 27, 27, 0.04);
  gap: 20px;
  padding-right: 20px;
}
.stay_review_box .stay_review_box_left {
  padding: 15px 20px;
  border-right: 1px solid var(--border);
}

.stay_hover_layer,
.stay_hover_layer_1,
.stay_hover_layer_2,
.stay_hover_layer_4 {
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: perspective(600px) translate3d(0, 0, 0);
          transform: perspective(600px) translate3d(0, 0, 0);
}

.stay_section_heading_wrap_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 15%;
}
@media (max-width: 1400px) {
  .stay_section_heading_wrap_1 {
    gap: 0 8%;
  }
}
@media (max-width: 1199px) {
  .stay_section_heading_wrap_1 {
    gap: 30px 3%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.stay_section_heading_wrap_1 .stay_section_heading_icon {
  -webkit-animation: rotate-anim 40s infinite;
          animation: rotate-anim 40s infinite;
}
@media (max-width: 991px) {
  .stay_section_heading_wrap_1 .stay_section_heading_icon {
    display: none;
  }
}

@media (max-width: 575px) {
  .stay_section_heading br {
    display: none;
  }
}
.stay_section_heading.stay_type_1 .stay_section_subtitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.stay_section_heading.stay_type_1 .stay_section_subtitle::after {
  content: "";
  display: block;
  height: 1px;
  width: 50px;
  background-color: #e75480;
}

.stay_accordians .stay_accordian_toggle {
  height: 14px;
  width: 14px;
  display: inline-block;
  position: absolute;
  top: 28px;
  left: 0;
}
.stay_accordians .stay_accordian_toggle::before, .stay_accordians .stay_accordian_toggle::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  border-radius: 3px;
}
.stay_accordians .stay_accordian_toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stay_accordians .stay_accordian_head {
  position: relative;
  padding: 18px 0 18px 26px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stay_accordians .stay_accordian_body {
  padding-bottom: 18px;
}
.stay_accordians .stay_accordian_body p {
  margin: 0;
}
.stay_accordians .stay_accordian:not(:last-child) {
  border-bottom: 1px solid #e75480;
}
.stay_accordians .stay_accordian.active .stay_accordian_head {
  padding-bottom: 5px;
}
.stay_accordians .stay_accordian.active .stay_accordian_toggle::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.stay_shape_wrap .stay_shape_1 {
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.stay_shape_wrap > *:not(.stay_shape_1) {
  position: relative;
  z-index: 3;
}

.stay_google_map {
  height: 600px;
}
@media (max-width: 991px) {
  .stay_google_map {
    height: 400px;
  }
}
.stay_google_map iframe {
  border: none;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  height: 100%;
  width: 100%;
}
.stay_google_map.stay_type_1 {
  height: 850px;
}
@media (max-width: 991px) {
  .stay_google_map.stay_type_1 {
    height: 550px;
  }
}
@media (max-width: 575px) {
  .stay_google_map.stay_type_1 {
    height: 450px;
  }
}

.stay_page_heading {
  height: 600px;
  padding: 150px 0 50px;
}
@media (max-width: 1400px) {
  .stay_page_heading {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .stay_page_heading {
    height: 400px;
    padding: 120px 0 50px;
  }
}
.stay_page_heading.stay_size_1 {
  height: 300px;
}
.stay_page_heading.stay_size_2 {
  height: 500px;
}

.stay_page_heading_2 {
  height: 650px;
  padding: 160px 0 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.stay_page_heading_2 .container {
  position: relative;
  z-index: 1;
}
.stay_page_heading_2:after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(transparent));
  background-image: linear-gradient(0, rgba(0, 0, 0, 0.7), transparent);
  bottom: -2px;
  content: "";
  height: 50%;
  position: absolute;
  width: 100%;
}
.stay_page_heading_2 .stay_page_heading_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .stay_page_heading_2 .stay_page_heading_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-align: center;
  }
}
.stay_page_heading_2 .stay_page_heading_in p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}
.stay_page_heading_2 .breadcrumb {
  margin-bottom: 0;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: inherit;
}
.stay_page_heading_2 .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}
.stay_page_heading_2 .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.stay_sticky_1 {
  position: sticky;
  top: 0;
}

.stay_moving_text_wrap {
  overflow-x: hidden;
}
.stay_moving_text_wrap:hover .stay_moving_text {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.stay_moving_text_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

.stay_moving_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 5px;
  -webkit-animation: slide-left 10s linear infinite;
          animation: slide-left 10s linear infinite;
}
.stay_moving_text > * {
  margin: 0 20px;
}

.stay_moving_text_wrap .stay_moving_text {
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
.stay_moving_text_wrap:hover .stay_moving_text {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.stay_moving_text_wrap.stay_type_1 {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  margin-left: -10px;
  width: calc(100% + 20px);
}
@media (max-width: 1400px) {
  .stay_moving_text_wrap img {
    max-height: 85px;
  }
}
@media (max-width: 991px) {
  .stay_moving_text_wrap img {
    max-height: 62px;
  }
}

@-webkit-keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.stay_half_bg .stay_half_bg_right {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 50%;
}
@media (max-width: 991px) {
  .stay_half_bg .stay_half_bg_right {
    width: 100%;
  }
}
.stay_half_bg > *:not(.stay_half_bg_right) {
  position: relative;
  z-index: 5;
}

.stay_full_width_right {
  width: 100vw;
}
.stay_full_width_right .stay_iconbox.stay_style_3 {
  width: 416px;
}
@media (max-width: 991px) {
  .stay_full_width_right .stay_iconbox.stay_style_3 {
    width: 350px;
  }
}
@media (max-width: 400px) {
  .stay_full_width_right .stay_iconbox.stay_style_3 {
    width: 330px;
  }
}

.stay_width_left_50_vw {
  height: 100%;
  width: 50vw;
  margin-left: calc(101.8% - 50vw);
}
@media (max-width: 991px) {
  .stay_width_left_50_vw {
    margin-left: 0;
    width: 100%;
  }
}

.stay_width_right_50_vw {
  width: calc(50vw - 1.8%);
}
@media (max-width: 991px) {
  .stay_width_right_50_vw {
    width: 100%;
  }
}

.stay_width_right_50_vw-110 {
  width: calc(50vw - 110px);
}
@media (max-width: 1400px) {
  .stay_width_right_50_vw-110 {
    width: calc(50vw - 55px);
  }
}
@media (max-width: 991px) {
  .stay_width_right_50_vw-110 {
    width: 100%;
  }
}

.faq_thumb_1 {
  height: 700px;
}
@media (max-width: 991px) {
  .faq_thumb_1 {
    height: 500px;
  }
}

.stay_tab {
  display: none;
}
.stay_tab.active {
  display: block;
}

.stay_tabs .stay_tabs_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
}

.stay_tab_links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #313131;
  border-radius: 20px;
}
.stay_tab_links li {
  border-radius: inherit;
}
.stay_tab_links li.active a {
  background-color: #e75480;
  color: #fff;
}
.stay_tab_links a {
  display: inline-block;
  padding: 11px 40px;
  border-radius: inherit;
}
@media (max-width: 991px) {
  .stay_tab_links a {
    padding: 11px 30px;
  }
}
@media (max-width: 575px) {
  .stay_tab_links a {
    padding: 11px 17px;
  }
}

.stay_tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.stay_tab_links {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 306px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.stay_tab_links li {
  height: 171px;
  width: 100%;
}
.stay_tab_links li a {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}
.stay_tab_links li img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.stay_tab_links li.active a {
  -webkit-box-shadow: 0 0 0px 2px #e75480;
          box-shadow: 0 0 0px 2px #e75480;
}

@-webkit-keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-anim {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.stay_contact_info_boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 25px 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.stay_contact_info_boxes .stay_iconbox.stay_style_4 {
  max-width: 320px;
}
@media (max-width: 1199px) {
  .stay_contact_info_boxes {
    gap: 25px 20px;
  }
}
@media (max-width: 767px) {
  .stay_contact_info_boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.stay_author_card .stay_author_img {
  width: 250px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 15px;
  border-radius: 50%;
}
.stay_author_card .stay_author_img svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.stay_author_card .stay_author_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}
.stay_author_card .stay_author_meta img {
  max-height: 100px;
}
.stay_author_card .stay_author_name span {
  display: inline-block;
  position: relative;
  padding: 0 15px;
}
.stay_author_card .stay_author_name span::before, .stay_author_card .stay_author_name span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background-color: var(--border);
  top: 50%;
}
.stay_author_card .stay_author_name span::before {
  left: 100%;
}
.stay_author_card .stay_author_name span::after {
  right: 100%;
}

.stay_booking_card {
  border: 1px solid var(--ternary);
  padding: 20px 30px;
}
.stay_booking_card .stay_booking_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 20px;
}

.stay_booking_info_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 0;
}
.stay_booking_info_list li:not(:last-child) {
  border-bottom: 1px solid var(--ternary);
}

.lg-thumb.lg-group {
  margin-left: auto;
  margin-right: auto;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #e75480;
}

.lg-img-wrap {
  padding: 50px 70px !important;
}

.lg-sub-html {
  color: var(--primary);
  display: none;
}

.lg-actions .lg-prev {
  left: 15px;
}

.lg-actions .lg-next {
  right: 15px;
}

.stay_debit_card_box {
  display: none;
}

.stay_expent_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .stay_expent_section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.stay_expent_section .stay_hover_active {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .stay_expent_section .stay_hover_active.active {
    -webkit-box-flex: 1.1;
        -ms-flex: 1.1;
            flex: 1.1;
  }
}

.stay_sticky_top_100 {
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .stay_mobile_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .stay_mobile_reverse_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .stay_form_heading_1 br {
    display: none;
  }
  .stay_row_gap_lg_10 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .stay_row_gap_lg_10 > * {
    padding-left: 5px;
    padding-right: 5px;
  }
  .stay_gap_y_lg_80 {
    gap: 80px 0;
  }
}
.stay_slider {
  position: relative;
}

.slick-arrow {
  cursor: pointer;
}
.slick-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stay_remove_overflow .slick-list {
  overflow: visible;
}
.stay_remove_overflow .slick-slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.stay_remove_overflow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.stay_slider_gap_24 .slick-slide {
  padding-left: 12px;
  padding-right: 12px;
}
.stay_slider_gap_24 .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.stay_slider_gap_30 .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}
.stay_slider_gap_30 .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 991px) {
  .stay_slider_gap_30 .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }
  .stay_slider_gap_30 .slick-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.stay_slider_gap_40 .slick-slide {
  padding-left: 20px;
  padding-right: 20px;
}
.stay_slider_gap_40 .slick-list {
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 1400px) {
  .stay_slider_gap_40 .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }
  .stay_slider_gap_40 .slick-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.stay_slider_gap_60 .slick-slide {
  padding-left: 30px;
  padding-right: 30px;
}
.stay_slider_gap_60 .slick-list {
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 1400px) {
  .stay_slider_gap_60 .slick-slide {
    padding-left: 12px;
    padding-right: 12px;
  }
  .stay_slider_gap_60 .slick-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.stay_show_shadow_20 .slick-list {
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.stay_slider_arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.stay_slider_arrows .stay_left_arrow,
.stay_slider_arrows .stay_right_arrow {
  height: 60px;
  width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: absolute;
  top: 30%;
  z-index: 5;
}
.stay_slider_arrows .stay_left_arrow:hover,
.stay_slider_arrows .stay_right_arrow:hover {
  color: #e75480;
}
.stay_slider_arrows .stay_left_arrow {
  left: 0px;
}
.stay_slider_arrows .stay_right_arrow {
  right: -2px;
}

.stay_slider_arrows .stay_left_arrow,
.stay_slider_arrows .stay_right_arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stay_slider_arrows .stay_left_arrow:hover:hover,
.stay_slider_arrows .stay_right_arrow:hover:hover {
  color: #e75480;
}
.stay_slider_arrows .stay_right_arrow {
  right: calc((100vw - 1300px) / 2 / 2);
  margin-right: -28px;
}
@media (max-width: 1400px) {
  .stay_slider_arrows .stay_right_arrow {
    right: calc((100vw - 1140px) / 2 / 2);
    margin-right: -22px;
  }
}
@media (max-width: 1199px) {
  .stay_slider_arrows .stay_right_arrow {
    right: calc((100vw - 960px) / 2 / 2);
    margin-right: -22px;
  }
}
@media (max-width: 1050px) {
  .stay_slider_arrows .stay_right_arrow {
    margin-right: 0px;
  }
}
.stay_slider_arrows .stay_left_arrow {
  left: calc((100vw - 1300px) / 2 / 2);
  margin-left: -28px;
}
@media (max-width: 1400px) {
  .stay_slider_arrows .stay_left_arrow {
    left: calc((100vw - 1140px) / 2 / 2);
    margin-left: -22px;
  }
}
@media (max-width: 1199px) {
  .stay_slider_arrows .stay_left_arrow {
    left: calc((100vw - 960px) / 2 / 2);
    margin-left: -22px;
  }
}
@media (max-width: 1050px) {
  .stay_slider_arrows .stay_left_arrow {
    margin-left: 0px;
  }
}

.stay_slider_arrows.stay_style_3 .stay_left_arrow,
.stay_slider_arrows.stay_style_3 .stay_right_arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .stay_slider_arrows.stay_style_3 .stay_left_arrow,
  .stay_slider_arrows.stay_style_3 .stay_right_arrow {
    top: 35%;
  }
}
.stay_slider_arrows.stay_style_3 .stay_left_arrow:hover,
.stay_slider_arrows.stay_style_3 .stay_right_arrow:hover {
  color: #e75480;
}
.stay_slider_arrows.stay_style_3 .stay_left_arrow {
  left: 6.6%;
}
@media (max-width: 1199px) {
  .stay_slider_arrows.stay_style_3 .stay_left_arrow {
    left: 30px;
  }
}
.stay_slider_arrows.stay_style_3 .stay_right_arrow {
  right: 6.6%;
}
@media (max-width: 1199px) {
  .stay_slider_arrows.stay_style_3 .stay_right_arrow {
    right: 30px;
  }
}

.stay_slider_arrows.stay_style_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.stay_slider_arrows.stay_style_4 .stay_left_arrow,
.stay_slider_arrows.stay_style_4 .stay_right_arrow {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--ternary);
  border-radius: 50%;
  color: var(--primary);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.stay_slider_arrows.stay_style_4 .stay_left_arrow:hover,
.stay_slider_arrows.stay_style_4 .stay_right_arrow:hover {
  background-color: #e75480;
  color: #fff;
}

.stay_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stay_pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 65px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 15px;
}
@media (max-width: 991px) {
  .stay_pagination ul {
    margin-top: 40px;
    gap: 8px;
  }
}
.stay_pagination li {
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 2px solid var(--primary);
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stay_pagination li.slick-active {
  background-color: #e75480;
  border-color: #e75480;
}
.stay_pagination button {
  display: none;
}
.stay_pagination.stay_type_1 {
  position: absolute;
  z-index: 5;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 15%;
}
.stay_pagination.stay_type_1 ul {
  margin: 0;
}
.stay_pagination.stay_type_1 li {
  border-color: #fff;
}
.stay_pagination.stay_type_1 li.slick-active {
  border-color: #e75480;
}
.stay_pagination.stay_type_2 ul, .stay_pagination.stay_type_3 ul {
  margin-top: 50px;
}
.stay_pagination.stay_type_2 li, .stay_pagination.stay_type_3 li {
  height: 10px;
  width: 10px;
  background-color: var(--secondary);
  border: none;
}
.stay_pagination.stay_type_2 li.slick-active, .stay_pagination.stay_type_3 li.slick-active {
  background-color: #e75480;
}
.stay_pagination.stay_type_3 {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc((100% - 1296px) / 2);
}
@media (max-width: 1400px) {
  .stay_pagination.stay_type_3 {
    width: calc((100% - 1116px) / 2);
  }
}
@media (max-width: 1199px) {
  .stay_pagination.stay_type_3 {
    width: calc((100% - 936px) / 2);
  }
}
@media (max-width: 991px) {
  .stay_pagination.stay_type_3 {
    width: 100%;
    position: initial;
    -webkit-transform: initial;
            transform: initial;
  }
}
.stay_pagination.stay_type_3 ul {
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 991px) {
  .stay_pagination.stay_type_3 ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 40px;
  }
}
.stay_pagination.stay_type_4 {
  position: absolute;
  bottom: 423px;
  width: 100%;
}
.stay_pagination.stay_color_1 li {
  border-color: #fff;
}
.stay_pagination.stay_color_1 li.slick-active {
  border-color: #e75480;
}

.stay_slider_number span,
.stay_slider_number span {
  display: inline-block;
  position: relative;
}
.stay_slider_number .stay_current_number,
.stay_slider_number .stay_current_number {
  color: #e75480;
}
.stay_slider_number .stay_slider_number_seperator,
.stay_slider_number .stay_slider_number_seperator {
  display: inline-block;
  background-color: var(--primary);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  position: relative;
}

.stay_slider_number {
  position: absolute;
  bottom: 6px;
  right: calc((100vw - 1300px) / 2 / 2);
  margin-right: -18px;
}
.stay_slider_number .stay_current_number {
  top: -10px;
  font-size: 50px;
}
.stay_slider_number .stay_total_numbers {
  top: 10px;
}
.stay_slider_number .stay_slider_number_seperator {
  height: 56px;
  width: 1px;
  top: 15px;
}
@media (max-width: 1400px) {
  .stay_slider_number {
    right: calc((100vw - 1140px) / 2 / 2);
  }
}
@media (max-width: 1199px) {
  .stay_slider_number {
    right: 40px;
    margin-right: 0;
  }
}

.stay_slider_number {
  font-size: 160px;
  line-height: 1em;
  padding-bottom: 80px;
}
.stay_slider_number .stay_current_number {
  top: -35px;
  font-size: 215px;
}
.stay_slider_number .stay_total_numbers {
  top: 35px;
}
.stay_slider_number .stay_slider_number_seperator {
  height: 240px;
  width: 4px;
  top: 70px;
}

.stay_hover_show_arrows .stay_slider_arrows .stay_left_arrow,
.stay_hover_show_arrows .stay_slider_arrows .stay_right_arrow {
  opacity: 0;
}
.stay_hover_show_arrows:hover .stay_slider_arrows .stay_left_arrow,
.stay_hover_show_arrows:hover .stay_slider_arrows .stay_right_arrow {
  opacity: 1;
}

@media (max-width: 991px) {
  .stay_slider_navigation {
    position: absolute;
    z-index: 8;
    bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.stay_slider_navigation .stay_swiper_button_prev,
.stay_slider_navigation .stay_swiper_button_next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}
.stay_slider_navigation .stay_swiper_button_prev:hover,
.stay_slider_navigation .stay_swiper_button_next:hover {
  color: #e75480;
}
@media (max-width: 991px) {
  .stay_slider_navigation .stay_swiper_button_prev,
  .stay_slider_navigation .stay_swiper_button_next {
    position: initial;
    -webkit-transform: initial;
            transform: initial;
  }
}
.stay_slider_navigation .stay_swiper_button_prev {
  left: 6.6%;
}
@media (max-width: 1199px) {
  .stay_slider_navigation .stay_swiper_button_prev {
    left: 3%;
  }
}
.stay_slider_navigation .stay_swiper_button_next {
  right: 6.6%;
}
@media (max-width: 1199px) {
  .stay_slider_navigation .stay_swiper_button_next {
    right: 3%;
  }
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide .stay_hero .stay_hero_text {
  position: relative;
  top: 10px;
  opacity: 0;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.swiper-slide.swiper-slide-active .stay_hero .stay_hero_text {
  top: 0;
  opacity: 1;
  -webkit-transition: all 0.9s ease 0.9s;
  transition: all 0.9s ease 0.9s;
}

.slick-vertical.stay_gallery_slider_nav {
  margin-top: -12px;
  margin-bottom: -12px;
}
.slick-vertical.stay_gallery_slider_nav .slick-slide {
  border: none;
  padding: 12px 0;
}
@media (max-width: 991px) {
  .slick-vertical.stay_gallery_slider_nav {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .slick-vertical.stay_gallery_slider_nav .slick-slide {
    border: none;
    padding: 5px 0;
  }
}
.slick-vertical .stay_gallery_slider_thumb_mini {
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.slick-vertical .stay_gallery_slider_thumb_mini::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid #e75480;
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.slick-vertical .slick-current .stay_gallery_slider_thumb_mini::before {
  opacity: 1;
}

.stay_left_arrow_gallery,
.stay_right_arrow_gallery {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: var(--web-wash);
  background-color: var(--primary);
  top: 50%;
  margin-top: -25px;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.stay_left_arrow_gallery:hover,
.stay_right_arrow_gallery:hover {
  background-color: #e75480;
}

.stay_left_arrow_gallery {
  left: 25px;
}

.stay_right_arrow_gallery {
  right: 25px;
}

.stay_gallery_hover_show_nav .stay_left_arrow_gallery,
.stay_gallery_hover_show_nav .stay_right_arrow_gallery {
  opacity: 0;
}
.stay_gallery_hover_show_nav:hover .stay_left_arrow_gallery,
.stay_gallery_hover_show_nav:hover .stay_right_arrow_gallery {
  opacity: 1;
}

.stay_gallery_slider_thumb_item_2 {
  height: 750px;
}
@media (max-width: 1400px) {
  .stay_gallery_slider_thumb_item_2 {
    height: 600px;
  }
}
@media (max-width: 1199px) {
  .stay_gallery_slider_thumb_item_2 {
    height: 500px;
  }
}

.stay_gallery_slider_nav_2_wrap {
  width: 100%;
  position: absolute;
  bottom: 35px;
}
@media (max-width: 767px) {
  .stay_gallery_slider_nav_2_wrap {
    bottom: 25px;
  }
}
.stay_gallery_slider_nav_2_wrap .stay_price_per {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  bottom: 4px;
}
.stay_gallery_slider_nav_2_wrap .stay_price {
  margin-top: 5px;
}

.stay_gallery_slider_nav_2 {
  width: 480px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .stay_gallery_slider_nav_2 {
    width: 350px;
  }
}
@media (max-width: 991px) {
  .stay_gallery_slider_nav_2 {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .stay_gallery_slider_nav_2 {
    margin-right: auto;
  }
}
.stay_gallery_slider_nav_2 .slick-slide {
  padding-left: 5px;
  padding-right: 5px;
}
.stay_gallery_slider_nav_2 .slick-slide.slick-current .stay_gallery_slider_thumb_mini_2::before {
  border-width: 2px;
  border-color: #e75480;
}
.stay_gallery_slider_nav_2 .slick-list {
  margin-left: -5px;
  margin-right: -5px;
}

.stay_gallery_slider_thumb_mini_2 {
  height: 120px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1199px) {
  .stay_gallery_slider_thumb_mini_2 {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .stay_gallery_slider_thumb_mini_2 {
    height: 60px;
  }
}
.stay_gallery_slider_thumb_mini_2::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.stay_gallery_slider_nav_2_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .stay_gallery_slider_nav_2_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
  }
}

.stay_gallery_slider_thumb_2 {
  position: relative;
}
.stay_gallery_slider_thumb_2:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(transparent));
  background: linear-gradient(0, rgba(0, 0, 0, 0.6), transparent);
  bottom: -2px;
  content: "";
  height: 30%;
  position: absolute;
  width: 100%;
}
@media (max-width: 767px) {
  .stay_gallery_slider_thumb_2:after {
    height: 50%;
  }
}

.stay_left_arrow_gallery_2,
.stay_right_arrow_gallery_2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
  color: #e75480;
}
.stay_left_arrow_gallery_2:hover,
.stay_right_arrow_gallery_2:hover {
  color: #fff;
}

.stay_left_arrow_gallery_2 {
  left: 5%;
}

.stay_right_arrow_gallery_2 {
  right: 5%;
}

@media (max-width: 991px) {
  .stay_mobile_hide {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .stay_mobile_show {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .stay_mobile_hide_md {
    display: none !important;
  }
}
@media (min-width: 767px) {
  .stay_mobile_show_md {
    display: none !important;
  }
}
.stay_pcb_header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  z-index: 101;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.stay_pcb_header {
  background-color: var(--web-wash);
}
.stay_pcb_header .stay_main_header_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stay_pcb_header .stay_main_header_in {
  height: 100px;
}
.stay_pcb_header .stay_main_header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (max-width: 1199px) {
  .stay_pcb_header .stay_main_header_right {
    padding-right: 45px;
    padding-left: 15px;
  }
}
.stay_pcb_header .stay_nav_list > li > a {
  text-transform: uppercase;
}
.stay_pcb_header {
  background: transparent;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
@media (min-width: 1200px) {
  .stay_pcb_header .stay_nav_list > li > a {
    color: #fff;
    font-size: 15px;
    position: relative;
  }
  .stay_pcb_header .stay_nav_list > li > a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #e75480;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: width 0.3s cubic-bezier(0.88, 0.68, 0.46, 0.62);
    -khtml-transition: width 0.3s cubic-bezier(0.88, 0.68, 0.46, 0.62);
    -moz-transition: width 0.3s cubic-bezier(0.88, 0.68, 0.46, 0.62);
    -ms-transition: width 0.3s cubic-bezier(0.88, 0.68, 0.46, 0.62);
    -o-transition: width 0.3s cubic-bezier(0.88, 0.68, 0.46, 0.62);
    transition: width 0.3s cubic-bezier(0.88, 0.68, 0.46, 0.62);
  }
  
  .stay_pcb_header .stay_nav_list > li > a:hover::after {
    width: 100%;
  }
  .stay_pcb_header .stay_nav_list > li > a:hover {
    color: #e75480;
  }
  .stay_pcb_header .stay_nav_list > li > a.active::after {
    width: 100%;
    background-color: #aa346b;
  }
  .stay_pcb_header .stay_nav_list > li > a.active {
    color: #aa346b;
  }
}
.stay_pcb_header .stay_btn {
  border-radius: 5px;
  color: #e75480;
  font-weight: 700;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
}
.stay_pcb_header .stay_btn:hover {
  background-color: #e75480;
  border-color: #e75480;
  color: #fff;
}
.stay_pcb_header.stay_type_1 {
  background-color: transparent;
  border-bottom: 1px solid var(--ternary);
}

.stay_pcb_header.stay_sticky_active {
  background-color: var(--web-wash);
  -webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
          box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.stay_pcb_header_full_width .container {
  max-width: 100%;
  padding: 0 100px;
}

@media screen and (max-width: 1199px) {
  .stay_main_header .container {
    max-width: 100%;
  }
  .stay_pcb_header .stay_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.stay_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stay_sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.stay_pcb_branding {
  display: inline-block;
}
.stay_pcb_branding + .stay_nav {
  margin-left: 80px;
}
@media (max-width: 1600px) {
  .stay_pcb_branding + .stay_nav {
    margin-left: 40px;
  }
}

.stay_main_header .container-fluid {
  padding-right: 100px;
  padding-left: 100px;
}
@media (max-width: 1600px) {
  .stay_main_header .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 1400px) {
  .stay_main_header .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (max-width: 1199px) {
  .stay_main_header .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .stay_main_header {
    position: relative;
  }
  .stay_main_header_center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .stay_pcb_header .stay_main_header_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 300px);
  }
  .stay_pcb_header .stay_main_header_left {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stay_main_header_left .stay_pcb_branding {
    display: flex;
    width: 150px;
    /*! background: #fff; */
    border-radius: 4px;
    /*! border: 1px solid #f687a7; */
    padding: 2px;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    height: 150px;
    justify-content: center;
    align-items: center;
    animation: sway2 5s infinite;
    transform-origin: 50% 100% 0;
  }
  @keyframes sway2 {
    0%, 100%{ transform: rotate(-6deg);}
    50%{ transform: rotate(6deg); }
}
  .stay_main_header_left .stay_pcb_branding img{
    /* width: 100%; */
    width: 125px;
  }
  .stay_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    line-height: 1.6em;
  }
  .stay_nav .stay_nav_list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: inherit;
  }
  .stay_nav .stay_nav_list > li {
    margin-right: 25px;
    height: inherit;
  }
  .stay_nav .stay_nav_list > li:last-child {
    margin-right: 0;
  }
  .stay_nav .stay_nav_list > li > a {
    padding: 10px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
  }
  .stay_nav .stay_nav_list > li > ul {
    left: 0;
    top: calc(100% + 15px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .stay_nav .stay_nav_list > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .stay_nav .stay_nav_list > li.menu-item-has-children > a {
    position: relative;
  }
  .stay_nav .stay_nav_list > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border: 2px solid currentColor;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-left: 0;
    border-top: 0;
    margin-left: 6px;
    position: relative;
    top: -1px;
    border-radius: 0px 0px 2px 0px;
  }
  .stay_nav .stay_nav_list > li ul {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
  }
  .stay_nav .stay_nav_list li:not(.stay_mega_menu) {
    position: relative;
  }
  .stay_nav .stay_nav_list ul {
    width: 230px;
    background-color: var(--web-wash);
    position: absolute;
    border-top: 2px solid #e75480;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
            box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    border-radius: 0 0 5px 5px;
  }
  .stay_nav .stay_nav_list ul li:hover ul {
    top: 0px;
  }
  .stay_nav .stay_nav_list ul li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .stay_nav .stay_nav_list ul a {
    display: block;
    line-height: inherit;
    padding: 10px 20px;
  }
  .stay_nav .stay_nav_list ul ul {
    top: 15px;
    left: 100%;
  }
  .stay_nav + .stay_toolbox {
    margin-left: 40px;
  }
  .stay_menu_toggle,
  .stay_menu_dropdown_toggle {
    display: none;
  }
  .stay_nav .stay_nav_list .stay_mega_menu {
    position: relative;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper {
    width: 1296px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: fixed;
    top: 100px !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 5px 15px 10px;
    border-top: 2px solid #e75480;
    border-radius: 0 0 5px 5px;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper a {
    padding: 7px 10px;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper .menu-item-has-children {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 10px 0;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper .menu-item-has-children > a {
    font-size: 18px;
    font-weight: 600;
    pointer-events: none;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper .menu-item-has-children > a:hover {
    background-color: transparent;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper .menu-item-has-children ul {
    position: initial;
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper .menu-item-has-children ul a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper.stay_with_thumb {
    display: grid !important;
    grid-gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    padding: 25px 25px 20px 25px;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper.stay_with_thumb img {
    border: 1px solid var(--border);
    border-radius: 7px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 8px;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper.stay_with_thumb a {
    padding: 0;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 500;
  }
  .stay_nav .stay_nav_list .stay_mega_wrapper.stay_with_thumb a:hover img {
    border-color: #d5d4d4;
  }
  .stay_nav .stay_nav_list .stay_mega_menu:hover .stay_mega_wrapper li ul {
    opacity: 1;
    visibility: visible;
  }
  .stay_nav .stay_nav_list > li ul:not(.stay_mega_wrapper) .menu-item-has-children > a {
    position: relative;
  }
}
@media screen and (max-width: 1400px) {
  .stay_nav .stay_nav_list .stay_mega_wrapper {
    width: 1116px !important;
  }
  .stay_pcb_header_full_width .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .stay_nav .stay_nav_list .stay_mega_wrapper {
    width: 100% !important;
  }
  .stay_pcb_header_full_width .container {
    padding: 0 15px;
  }
  .stay_menu_dropdown_toggle {
    position: absolute;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 23px 18px;
    cursor: pointer;
    z-index: 3;
  }
  .stay_menu_dropdown_toggle span {
    display: block;
    position: relative;
    height: 10px;
    width: 10px;
  }
  .stay_menu_dropdown_toggle span:before, .stay_menu_dropdown_toggle span:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 2px;
    width: 10px;
    background-color: currentColor;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .stay_menu_dropdown_toggle span:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .stay_menu_dropdown_toggle.active span:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .menu-item-has-children .menu-item-has-children .stay_menu_dropdown_toggle {
    padding: 20px 18px;
  }
  .stay_pcb_branding {
    position: relative;
    z-index: 101;
    display: block;
    width: 108px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #f687a7;
    padding: 2px;
  }
  .stay_nav .stay_nav_list {
    position: fixed;
    width: 100vw;
    left: -100vw;
    background-color: #1b1b1b;
    color: #fff;
    padding: 10px 0;
    top: 0;
    overflow: auto;
    height: 100vh;
    line-height: 1.6em;
    padding-top: 110px;
  }
  .stay_nav .stay_nav_list img {
    display: none;
  }
  .stay_nav .stay_nav_list.stay_active {
    left: 0vw;
  }
  .stay_nav .stay_nav_list ul {
    padding-left: 15px;
    display: none;
  }
  .stay_pcb_header .stay_nav_list > li:first-of-type {
    border-top: 2px solid #f687a7;
  }
  .stay_nav .stay_nav_list a {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
  }
  .stay_nav .stay_nav_list > li > a {
    font-size: 18px;
    line-height: 22px;
  }
  .stay_nav .menu-item-has-children {
    position: relative;
  }
   .stay_nav_list {
    background-color: #1b1b1b;
    color: #fff;
  }
  /*Mobile Menu Button*/
  .stay_menu_toggle {
    display: inline-block;
    width: 30px;
    height: 27px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 30px;
    color: var(--primary);
  }
  .stay_menu_toggle span,
  .stay_menu_toggle span:before,
  .stay_menu_toggle span:after {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    display: block;
  }
  .stay_menu_toggle span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .stay_menu_toggle span:before {
    content: "";
    position: absolute;
    margin-top: -9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
            transition-delay: 0.2s, 0s;
  }
  .stay_menu_toggle span:after {
    content: "";
    position: absolute;
    margin-top: 9px;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s;
            transition-delay: 0.2s, 0s;
  }
   .stay_menu_toggle {
    color: #fff;
  }
  .stay_pcb_header .stay_menu_toggle {
    top: 50%;
    right: 0px;
    margin-top: -13px;
  }
  .stay_toggle_active span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .stay_toggle_active span:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s;
            transition-delay: 0s, 0.2s;
  }
  .stay_toggle_active span:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s;
            transition-delay: 0s, 0.2s;
  }
  .stay_nav .stay_nav_list a {
    position: relative;
  }
  .stay_pcb_header .stay_main_header_in {
    height: 80px;
  }
  .stay_pcb_header .current-menu-item > a:before {
    display: none;
  }
  .stay_pcb_header .stay_main_header_center .stay_pcb_branding {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .stay_pcb_header {
    top: 0;
  }
  .stay_has_main_nav {
    display: none;
  }
  .stay_pcb_header .stay_btn {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 991px) {
  .stay_pcb_header .container {
    max-width: 100%;
  }
  .stay_pcb_header .stay_action_box > *:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 575px) {
  .stay_pcb_header .stay_btn {
    display: none;
  }
}

/* hero css */
.stay_hero {
  height: calc(100vh - 80px);
  padding: 100px 0 50px;
  max-height: 1100px;
}
@media (max-width: 991px) {
  .stay_hero {
    padding: 100px 0;
    height: 100vh;
  }
}
@media (max-width: 575px) {
  .stay_hero {
    min-height: 500px;
  }
  .stay_hero .stay_hero_title br {
    display: none;
  }
}

.stay_hero .stay_hero_subtitle{
  padding: 0 37px;
}
@media (max-width: 1400px) {
  .stay_hero .stay_hero_subtitle {
    padding: 0 25px;
  }
}
@media (max-width: 575px) {
  .stay_hero .stay_hero_subtitle {
    padding: 0;
  }
}
.stay_hero .stay_hero_subtitle img {
  top: 7px;
}
@media (max-width: 575px) {
  .stay_hero .stay_hero_subtitle img {
    display: none;
  }
}

.pogoSlider{
  padding-left: 0;
  padding-right: 0;
}
.lbox-caption{
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 10px 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.lbox-caption h3 {
  margin-top: 0px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 2px 2px 2px #000;
}
.lbox-caption h3 span, .lbox-caption h1 span, .lbox-caption h5 span {
  background: rgba(0,0,0,0.3);
  padding: 4px;
}
.lbox-caption h1 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 2px 2px 2px #000;
  font-family: 'Montserrat', sans-serif;
}
.lbox-caption h5 {
  color: #ffffff;
  font: 400 35px 'Petit Formal Script', cursive;
    font-weight: 400;
    line-height: normal;
  font-weight: 400;
  line-height: normal;
  text-shadow: 2px 2px 2px #000;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 2.4px;
  font-family: "Tangerine", cursive;
}
.pogoSlider-slide{
    height: 700px;
}
.ulockd-home-slider{
    background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  color: white;
}
.pogoSlider-dir-btn.pogoSlider-dir-btn--prev{
  top:50%;
  margin-top:-10px;
  background: no-repeat 50%/100% 100%;
  background-image: none;
  background-image: url(../images/prev.png);
  width: 48px;
  height: 48px;
  border: none;
  -webkit-transform: unset;
  -ms-transform: u;
  transform: unset;
  opacity: .6;
}
.pogoSlider-dir-btn.pogoSlider-dir-btn--next{
  top:50%;
  margin-top:-10px;
  background: no-repeat 50%/100% 100%;
  background-image: none;
  background-image: url(../images/next.png);
  width: 48px;
  height: 48px;
  border: none;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  opacity: .6;
}
.pogoSlider-dir-btn.pogoSlider-dir-btn--prev:hover{
    opacity: 1;
}
.pogoSlider-dir-btn.pogoSlider-dir-btn--next:hover{
    opacity: 1;
}
.pogoSlider-nav-btn {
  background:#ccc;
  background:rgba(255,255,255,.5);
  border:none;
  border-radius:50%;
  width:20px;
  height:20px;
  box-shadow:0 1px 1px rgba(0,0,0,.1);
  cursor:pointer;
  background: #feb9d1d9 !important;
  color: #fff;
  height: 20px;
  width: 20px;
  line-height: 30px;
  margin: 10px 5px;
  -webkit-border-radius: 0px 50px 50px 50px;
  -moz-border-radius: 0px 50px 50px 50px;
  border-radius: 0px 50px 50px 50px;
}
.pogoSlider-nav-btn--selected {
  background:#fc85a9 !important;
  box-shadow:0 1px 1px rgba(0,0,0,.3)
}
@media (max-width: 998px){
  .lbox-caption{
    display: none;
  }
  .pogoSlider{
    height: 250px;
  }
  .pogoSlider-slide {
    height: 250px !important;
    background-position: bottom !important;
    background-size: 100% !important;
  }
  .stay_pcb_header{
    position: relative;
  }
  .stay_pcb_header {
    background: #fc83a8;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.fixed-header{
  background: rgba(0, 0, 0, 0.2) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 99;
  position: fixed;
  top: 0px;
  left: 0;
  margin-top: 0em;
  width: 100%;
  transition: background-color 0.3s ease;
}

.property-deta{
  padding: 70px 0;
  background: url(../images/bg-set.png);
  background-size: 100%;
}
.property-deta .title_bx{
  margin-bottom: 30px;
}
.title_bx{
  margin-bottom: 70px;
}
.title_bx .subtitle {
  position: relative;
  font-size: 38px;
  line-height: 36px;
  text-transform: capitalize;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  color: #e75480;
  margin: 0 0 15px;
}
.title_bx h1{
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
}
.title_bx img{
  margin: 10px 0;
  width: auto;
}
.bg-vector {
  position: absolute;
  background: url(../images/bg-title.svg) center top no-repeat;
  z-index: 0;
  -webkit-animation: shape-animation 3s infinite;
  animation: shape-animation 3s infinite;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
  width: 342px;
  height: 44px;
}

@keyframes shape-animation {
  0% {
    width: 0; }
  15% {
    width: 95%; }
  85% {
    opacity: 1; }
  90% {
    width: 95%;
    opacity: 0; }
  to {
    width: 0;
    opacity: 0; } 
}
.title_bx h1 span {
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-size: 70px;
}
.pro_detl {
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  padding: 10px;
  border-radius: 4px;
}
.pro_detl a{
  /* background-color: #1b1b1b; */
  border-radius: 5px;
  position: relative;
  display: block;
  overflow: hidden;
}
.pro_detl a::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
  border: 1px solid #fff;
  z-index: 2;
  background: rgba(0,0,0,0.2);
  border-radius: 5px;
}
.pro_detl a:hover::before{
  background: transparent;
  border: 1px solid #e75480;
  top: 5px;
  bottom: 5px;
  right: 5px;
  left: 5px;
  transition: top 0.6 ease;
  transition: bottom 0.6 ease;
  transition: right 0.6 ease;
  transition: left 0.6 ease;
}
.pro_detl a img {
  position: relative;
  max-height: 225px;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background-size: cover;
}
.pro_detl a img:nth-child(1) {
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  position: absolute;
  top: 0;
  left: 0;
}
.pro_detl a:hover img:nth-child(1) {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.pro_detl a:hover img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.pro_detl_data h2 {
  margin: 0.2em 0 15px 0;
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  color: #1c1c1c;
  font-size: 33px;
  text-align: center;
}
.pro_detl_data p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #505050;
  border: 1px solid #e75480;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  min-height: 132px;
}
.pro_detl_data ul{
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pro_detl_data ul li{
  border: 1px solid #e75480;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
.pro_detl_data ul li i{
  font-size: 20px;
  margin-right: 10px;
  color: #e75480;
}
.pro_detl_data ul li span{
  font-weight: 700;
  font-family: "Jost", sans-serif;
  color: #505050;
  font-size: 19px;
}
.pro_detl a:hover{
  color: #e75480;
}
.pro_detl_data ul li:nth-child(4){
  border: none;
  background: none;
  padding: unset;
  border-radius: unset;
}
.pro_detl_data ul li a{
  font-size: 15px;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  color: #505050 !important;
  padding: 10px 10px !important;
}
.pro_detl_data ul li a:hover{
  background: #e75480 !important;
  color: #fff !important;
  border-color: #e75480 !important;
}
.pro_detl_data ul li a::before{
  content: unset;
}
.img-set-ex.one{
  position: absolute;
  bottom: 0px;
  rotate: 40deg;
  left: -10px;
}
.img-set-ex.two{
  position: absolute;
  top: 0px;
  rotate: 220deg;
  right: -10px;
}
.img-set-ex img{
  opacity: 0.5;
  width: 141px;
}
.img-left {
  position: absolute;
  bottom: 0;
  right: 0;
}
.img-left img{
  width: 175px;
}
.new_sec_pad{
  padding: 70px 0;
  position: relative;
}
.new_sec_pad::before{
  content: "";
  background: url(../images/dot_bg.png);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.top_lft_img{
  position: absolute;
  top: 0;
}
.top_lft_img img{
  width: 200px;
}
.top_rgt_img {
  position: absolute;
  top: 0;
  right: 0;
}

.btm_rig_img{
  position: absolute;
  bottom: 0;
  right: 0;
}
.btm_lft_img{
  position: absolute;
  bottom: 0;
  left: 0;
}
.btm_rig_img img, .btm_lft_img img{
  width: 170px;
  transform-origin: bottom center;
}

@keyframes sway {
  0% {
      transform: rotateZ(0deg);
  }

  50% {
      transform: rotateZ(-5deg);
  }

  100% {
      transform: rotateZ(0deg);
  }
}

.row-imgs {
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  padding: 5px;
  margin: 10px 0;
  border-radius: 5px;
}
.row-imgs .fotorama__wrap--css3 .fotorama__html, .fotorama__wrap--css3 .fotorama__stage .fotorama__img {
  border-radius: 5px !important;
}
.fotorama__nav-wrap{
  margin: 5px !important;
  border-top: 1px solid #e75480 !important;
  padding-top: 5px !important;
}
.row-imgs .fotorama .fotorama__wrap .fotorama__nav-wrap{
  display: none !important;
}
.row-details h2{
  font-family: "Playfair Display", Arial, serif;
  font-size: 38px;
  font-weight: 400;
  padding-bottom: 15px;
}
.row-details::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: #e75480;
  border-radius: 2px;
}
.row-details::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  left: 10px;
  background: #FFFFFF;
  /*-webkit-animation: section-title-run 5s infinite linear;*/
  /*animation: section-title-run 5s infinite linear;*/
}
@-webkit-keyframes section-title-run {
  0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}
.live-frame iframe{
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  padding: 5px;
  margin: 10px 0;
  border-radius: 5px;
  width: 100%;
  height: 350px;
}

.banner-set img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center bottom;
}
@media (max-width: 767px){
    .live-frame iframe{
        height: 250px;
    }
    .banner-set img{
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    .top_rgt_img{
        display: none;
    }
    .property-deta{
        background: transparent;
        background-color: #f2f5ff;
    }
}
@media (max-width: 998px){
  .img-set-ex.one, .img-set-ex.two{
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 998px) {
  .banner-set img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}

.row-cont-sh p{
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.row-cont-sh a {
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  color: #e75480;
  border-color: #e75480;
}
.row_ig_img_list ul{
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.row_ig_img_list ul li {
  display: inline-block;
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  max-width: 23%;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
}
.row_ig_img_list ul li img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}
.new-dv-str{
  padding: 50px 0;
}
.s-single-services{
  float: left;
width: 100%;
}
.second-services-content h5 {
font-weight: 600;
margin-bottom: 0px;
transition: .3s;
font-family: 'Poppins', sans-serif;
letter-spacing: 0;
font-size: 18px;
color:#687068;
}
.second-services-content p {
margin-top: 18px;
margin-bottom: 0;
}
.second-services-content a {
font-size: 14px;
font-weight: 500;
color: #6e6e6e;
position: relative;
transition: .5s;
}

.second-services-content a::after {
left: -40px;
right: unset;
opacity: 0;
}
.s-single-services {
transition: .3s;
padding: 30px;
border: 5px solid rgb(253, 239, 237);
min-height: 410px;
}
.s-single-services:hover {background: #fff;}
.s-single-services:hover .second-services-content h5{color: #d29751;}
.s-single-services:hover .second-services-content a{color: #d29751;}

.s-single-services.active {border-color: #fff7ee; background:#fff7ee;}
.s-single-services.active .services-icon i{color:#d29751;}
.s-single-services.active .second-services-content h5{color: #d29751;}
.s-single-services.active .second-services-content a{color: #d29751;}
.services-ico2{
  margin-bottom: 30px;
}
.services-ico2 i {
  font-size: 30px;
  background: #f5f8fa;
  border-radius: 50%;
  color: #383838;
  height: 75px;
  width: 75px;
  line-height: 75px;
  text-align: center;
}


.s-single-services.active .services-ico2 i {
  background: #f687a7;
  color: #fff;
}
.second-services-content2 h5{
  font-family: "Playfair Display", Arial, serif;
  font-size: 30px;
  margin-bottom: 10px;
  position: relative;
}
.second-services-content2 h5::after {
  width: 50px;
  height: 2px;
  background: #f687a7;
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
}
.second-services-content2 p {
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.rev-srt{
  padding: 50px 0;
  background: rgb(253, 239, 237);
  position: relative;
}
.rev-srt .rev-cust-img-rig{
  position: absolute;
  top: 3.5%;
  z-index: 1;
}

.rev-cust-img-rig img{
    width: 72%;
}
.rev-srt .rev-cust-img-lft {
  position: absolute;
  top: 3.5%;
  right: -5.4rem;
  z-index: 1;
}
.rev-cust-img-lft img{
    width: 72%;
}
.rev-wid{
  border: 1px solid #e75480;
  background: linear-gradient(125deg,rgba(99,171,69,0.1) 0%,rgba(251,176,59,0.1) 100%);
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
}


/* back to top button css starts */
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgb(0, 0, 0);
  background: #e75480;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
  border: 2px solid #aa346b;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 10px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #e75480;
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}

@media (max-width: 998px){
    .pro_detl, .s-single-services{
        margin: 10px 0;
    }
    .s-single-services{
        background: rgb(253, 239, 237);
        border: 5px solid #f687a7;
    }
    .property-deta{
        background-size: 100%;
    }
    .row-details h2{
        font-size: 26px;
        margin-top: 20px;
    }
    .btm_rig_img img, .btm_lft_img img{
        width: 90px;
    }
    .rev-wid{
        margin-top: 40px;
    }
    .rev-srt .rev-cust-img-rig {
      position: absolute;
      top: 7.3%;
      z-index: 1;
      left: 15px;
    }
    .rev-srt .rev-cust-img-lft {
      position: absolute;
      top: 7.3%;
      right: 15px;
      z-index: 1;
    }
    .rev-cust-img-rig img, .rev-cust-img-lft img {
      width: 130px;
    }
    .property-deta .title_bx {
      margin-bottom: 30px;
    }
}


.memory-section {
  padding-bottom: 50px;
  overflow: hidden;
}
.memory-item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(32, 32, 32, 0.15);
  box-shadow: 0 0 30px rgba(32, 32, 32, 0.15);
  padding: 30px 40px;
  position: relative;
  z-index: 1;
  margin: 50px 0;
  border: 3px solid #e75480;
  background: rgb(253, 239, 237);
  border-radius: 4px;
}
.memory-item::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 38px;
  background-color: #e75480;
  top: -5px;
  left: -34px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.memory-item::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 38px;
  background-color: #e75480;
  top: -20px;
  left: -20px;
}
.memory-item .memory-content h2 {
  font-size: 20px;
  color: #1b1b1b;
  margin: 10px 0 10px 0;
  position: relative;
  padding-bottom: 10px;
  line-height: 30px;
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.memory-item .memory-content h2::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 75px;
  background-color: #e75480;
  bottom: 0;
}
.memory-item .memory-content p {
  font-size: 19px;
  margin: 0 0 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.memory-item .memory-btn {
  margin-top: 20px;
}
.bg-chg-srt{
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  color: #fff;
  border-color: #e75480;
  font-family: "Jost", sans-serif;
  padding: 10px 15px;
  background: #e75480;
}

.bg-chg-srt:hover{
    color: #e75480;
    background: transparent;
}
.bg-chg{
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  color: #e75480;
  border-color: #e75480;
  font-family: "Jost", sans-serif;
  padding: 10px 15px;
}
.bg-chg:hover {
  color: #fff;
}
.memory-image img {
  position: relative;
  left: -100px;
  max-width: 115%;
  height: 519px;
  object-fit: cover;
}
.memory-image{
  position: relative;
}



.cstm-memory-section {
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.cstm-memory-item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(32, 32, 32, 0.15);
  box-shadow: 0 0 30px rgba(32, 32, 32, 0.15);
  padding: 30px 40px;
  position: relative;
  z-index: 1;
  margin: 50px 0;
  border: 3px solid #e75480;
  background: rgb(253, 239, 237);
  border-radius: 4px;
  min-height: 360px;
}
.cstm-memory-item::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 38px;
  background-color: #e75480;
  top: -5px;
  right: -34px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cstm-memory-item::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 38px;
  background-color: #e75480;
  top: -20px;
  right: -20px;
}
.cstm-memory-item .cstm-memory-content h2 {
  font-size: 20px;
  color: #1b1b1b;
  margin: 10px 0 10px 0;
  position: relative;
  padding-bottom: 10px;
  line-height: 30px;
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.cstm-memory-item .cstm-memory-content h2::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 75px;
  background-color: #e75480;
  bottom: 0;
}
.cstm-memory-item .cstm-memory-content p {
  font-size: 19px;
  margin: 0 0 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.cstm-memory-item .cstm-memory-btn {
  margin-top: 20px;
}
.cstm-memory-image img {
  position: relative;
  right: 30px;
  max-width: 120%;
  height: 519px;
  object-fit: cover;
}
.cstm-memory-image{
  position: relative;
}


.overlay {
  position: absolute;
  bottom: 16px;
  left: -100px;
  right: 0;
  background-color: rgba(255,255,255,0.6);
  background-color: rgba(253, 239, 237, 0.67);
  overflow: hidden;
  width: 115%;
  height: 100%;
  -webkit-transform: scale(0);
  transition: .3s ease;
  top: 0;
}



.memory-image:hover .overlay {

  transform: scale(1)

}



.text {

  color: #000;

  font-size: 20px;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  text-align: center;
  width: 80%;
  display: block;

}
.text ul {
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.text ul li {
  display: inline-block;
  list-style: none;
  padding: 10px 5px;
  color: #fff;
  font-size: 18px;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
  background: #e75480bf;
  margin: 10px 5px;
  border-radius: 4px;
  border-radius: 5px;
  color: #e75480;
  font-weight: 700;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
}


.text a {
  display: block;
  background: #e75480bf;
  color: #e75480;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  width: 30%;
  border: 1px solid #e75480;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  font-weight: 600;
  margin: auto;
}
.text a:hover{
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.cstm-memory-image:hover .overlay {

  transform: scale(1)

}
.cstm-memory-image .overlay {
  position: absolute;
  bottom: 16px;
  left: -30px;
  right: 0;
  background-color: rgba(255,255,255,0.6);
  background-color: rgba(253, 239, 237, 0.67);
  overflow: hidden;
  width: 120%;
  height: 100%;
  -webkit-transform: scale(0);
  transition: .3s ease;
  top: 0;
}
@media (max-width: 998px) {
  .memory-image img {
    position: unset;
    left: unset;
    max-width: 100%;
    height: auto;
  }
  .cstm-memory-image img {
    position: unset;
    right: unset;
    max-width: 100%;
    height: auto;
  }
}



.pogoSlider {
  width: 100%;
  height: 700px;
  padding-bottom: 0 !important;
  position: relative;
  overflow: hidden;
}
/*.pogoSlider-slide::before{*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;left: 0;right: 0;bottom: 0;*/
/*  background-color: #000;*/
/*  opacity: 0.2;*/
/*  z-index: 1;*/
/*}*/
.star3{
  position: absolute;
  bottom: 0;
  right: -40px;
  z-index: 1;
}
@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 100px;
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.star1{
  position: absolute;
  top: 9%;
  left: 3%;
  z-index: 1;
}
.star1 img, .star4 img{
  width: 60px;
}
.star2{
  position: absolute;
  top: -10px;
  right: -30px;
  transform-origin: 50% 100% 0;
  z-index: 1;
}
.star2 img, .star5 img{
  width: 90px;
}
.star3 img, .star6 img{
  width: 80px;
}
.star4 {
  position: absolute;
  top: 0;
  left: 90%;
  z-index: 1;
}
.star5{
  position: absolute;
  bottom: -39px;
  left: -30px;
  transform-origin: 50% 100% 0;
  z-index: 1;
}

.star6 {
  position: absolute;
  bottom: 0;
  right: -15px;
  z-index: 1;
}
.tp-copyright-5__area {
  background: #D3D3D3;
}
.tp-copyright-5__border {
  padding: 14px 0;
}
.tp-copyright-5__text span {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.tp-copyright-5__text span strong {
  color: #aa346b;
  background: #aa346b;
    background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tp-copyright-5__text a {
  margin: 0 10px;
}
.tp-copyright-5__social-box {
  margin-left: 10px;
}
.tp-copyright-5__social-box a {
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s;
  margin-left: 20px;
  border-radius: 50%;
  border: 2px solid #aa346b;
  background: #e75480;
}
.tp-copyright-5__social-box a:first-child {
  margin-left: 0;
}
.tp-copyright-5__social-box a i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.tp-copyright-5__social-box a:hover {
  background: linear-gradient(93.19deg, #FF4D8D 15.64%, #507EFB 84.55%);
  color: #fff;
}
.tp-copyright-5__text a {
  margin: 0 10px;
}
.tp-copyright-5__text span {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.tp-copyright-5__text span {
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
}
.m000{
  margin: 0 !important;
}

/* inner page css */

.bread-sec {
  background-image: url(../images/bg-in.jpg);
  background-attachment: fixed;
  background-size: 100%;
  background-position: bottom bottom;
  position: relative;
  /*padding: 100px 0 50px;*/
  padding: 150px 0 75px;
}
.bread-sec::before{
  content: "";
  position: absolute;
  top: 0;left: 0;right: 0;bottom: 0;
  background: #000;
  opacity: 0.3;
}
.bread h1 {
  text-transform: capitalize;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-size: 60px;
  margin: 0;
  color: #333;
  text-shadow: 1px 1px 1px #e75480;
}
.bread img{
  filter: drop-shadow(0px 0px 0.75rem crimson);
}
.main-prop-detail {
  padding: 50px 20px;
  background: rgb(253, 239, 237);
}
.draggable {
  cursor: url(../images/cursor.png) 16 9, ew-resize !important;
}
.slick-vertical.stay-pcb-prop-srt {
  margin-top: 0;
  margin-bottom: 0;
}
.slick-vertical.stay-pcb-prop-srt .slick-slide {
  border: none;
  padding: 5px 0;
}
@media (max-width: 991px) {
  .slick-vertical.stay-pcb-prop-srt {
    margin-top: -5px;
    margin-bottom: -5px;
  }
  .slick-vertical.stay-pcb-prop-srt .slick-slide {
    border: none;
    padding: 5px 0;
  }
}
.slick-vertical .stay-prop-gal-small {
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.slick-vertical .stay-prop-gal-small::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--accent);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.slick-vertical .stay-prop-gal-small img{
  width: 100%;
  height: 112px;
  object-fit: cover;
}
.slick-vertical .slick-current .stay-prop-gal-small::before {
  opacity: 1;
}

.stay-prop-lft-side, .stay-prop-rgt-side {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: var(--web-wash);
  background-color: var(--primary);
  top: 50%;
  margin-top: -25px;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.stay-prop-lft-side:hover,
.stay-prop-rgt-side:hover {
  background-color: var(--accent);
}

.stay-prop-lft-side {
  left: 25px;
}

.stay-prop-rgt-side {
  right: 25px;
}

.stay-prop-nav .stay-prop-lft-side,
.stay-prop-nav .stay-prop-rgt-side {
  opacity: 0;
}
.stay-prop-nav:hover .stay-prop-lft-side,
.stay-prop-nav:hover .stay-prop-rgt-side {
  opacity: 1;
}
.stay-prop-gal-sec {
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  padding: 5px;
  /* margin: 10px 0; */
  border-radius: 5px;
}
.set-mini {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  padding: 5px;
  /* margin: 10px 0; */
  border-radius: 5px;
}
.stay-prop-nav {
  height: 474px;
  margin: 0;
  padding: 0;
}
.stay-prop-gal-sec_item img {
  height: 460px !important;
  border-radius: 5px;
  width: auto;
  margin: auto;
}
.stay-prop-gal-sec_item{
  position: relative;
}
.stay-prop-gal-sec_item p{
  position: absolute;
  bottom: 0;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
  width: 80%;
  transform: translate(-50%, 0);
  left: 50%;
  text-align: center;
  border-radius: 4px;
}
.set-mini .stay-pcb-prop-srt .slick-list.draggable{
  cursor: pointer !important;
}
.slp-det, .foto, .overview, .amenities, .calender, .policies, .reviews-inn, .loc{
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  margin: 20px 0;
}
.slp-inn {
  padding: 8px 8px;
  margin: 5px 10px;
  border: 1px solid rgba(0,0,0,.1);
  background: #eee;
  text-align: center;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  border-radius: 3px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  display: flex;
  align-items: center;
}
.slp-inn i {
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  font-size: 23px;
  height: 50px;
  width: 50px;
  box-shadow: 1px 1px 1px #000;
  text-align: center;
  line-height: 45px;
  margin-right: 10px;
  border-radius: 50px;
  border: 2px solid #aa346b;
  background: #e75480;
}
.overview h2, .amenities h2, .calender h2, .policies h2, .reviews-inn h2, .loc h2{
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  font-size: 32px;
  text-align: left;
  padding: 5px 0;
  border-bottom: 2px solid #e75480;
  margin: 0px 0 13px;
  text-transform: capitalize;
}
.overview p{
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.overview a{
  position: relative;
  color: #dc4358;
  font-size: 17px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.overview a::before {
  display: block;
  content: "";
  padding-top: 4px;
  border-bottom: 2px solid #dc4358;
  transform: scaleX(0);
  transform-origin: 0 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  transition: transform .2s ease-in-out;
}

.overview a:hover {
  color: #1b1b1b;
}
.overview a:hover::before {
  transform: scaleX(1);
  transform-origin: 0 50%;
  transition-delay: .2s;
}
.slide{
  margin-bottom: 10px;
}
.coma:hover .slp-inn{
  background-color: #e75480;
  border-color: #e75480;
  color: #fff;
  transition: .5s ease-in;
}
.coma:hover .slp-inn i{
  background: rgb(253, 239, 237);
  color: #1b1b1b;
  box-shadow: 1px 1px 1px #e75480;
  border: 2px solid #1b1b1b;
  transition: .5s ease-in;
}
.amenities h4, .policies h4 {
  background: #eee;
  padding: 15px 10px;
  border-bottom: 1px solid #e75480;
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
}
.amenities ul {
  list-style-type: none;
  padding: 10px 0 0;
  margin: 0 0 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.amenities ul li {
  display: inline-block;
  list-style: none;
  padding: 10px;
  color: #333;
  font-size: 18px;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  max-width: 32%;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  border-bottom: 1px solid #e75480;
  margin: 5px;
}
.amenities ul li i {
  color: #e75480;
  margin-right: 5px;
}
.policies p {
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  color: #333;
}
.set-mini .stay-pcb-prop-srt .slick-list.draggable{
  height: 460px !important;
}
.house-rule {
  margin: 0;
}
.house-rule p {
  border-bottom: 1px solid #ccc;
  font-size: 17px;
  padding-bottom: 10px;
}
.house-rule ul {
  list-style-type: none;
  padding: 10px 0 0;
  margin: 0 0 20px;
}
.house-rule ul li {
  width: 100%;
  display: block;
  font-size: 17px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  color: #333;
  margin-bottom: 10px;
}
.house-rule ul li i {
  color: #e75480;
  margin-right: 10px;
  font-size: 13px;
}
.cstm-frame-srt {
  padding: 5px 10px;
  background: #fff;
  margin: 0 0 15px;
  position: sticky;
  top: 100px;
  border: 1px solid #ddd;
  height: 550px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  margin: 20px 0;
  scrollbar-color: #FF69B4 #aa346b;
}
.cstm-frame-srt h2 {
  color: #e75480;
  text-align: center;
  font-size: 40px;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  margin: 0;
}
.cstm-frame-srt img {
  margin-bottom: 15px;
}
#map{
  width: 100%;
  height: 400px;
  }
.modal-open{
  padding-right: 0 !important;
}
.modal-header{
  padding-bottom: 5px;
  padding-top: 5px;
}
.modal-body {
  background: rgb(253, 239, 237);
  height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e75480 #aa346b;
}
@media (max-width: 767px){
    .modal-header{
      padding-bottom: 1rem;
      padding-top: 1rem;
    }
    .modal-body{
        height: auto;
    }
}
.form-srt {
  background: #fff;
  text-align: left;
  border: 1px solid #e75480;
  /* background: rgb(253, 239, 237); */
  padding: 0 15px;
  border-radius: 5px;
}
.form-srt h2 {
  line-height: 30px;
  color: #e73e6f;
  margin-bottom: 30px;
  border-bottom: 1px solid #e73e6f;
  width: fit-content;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-size: 47px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.form-group {
  margin-bottom: 1rem;
}
.form-srt .contactForm .form-control {
  border: none;
  background: #f4efeb;
  padding: 20px;
  height: 50px;
  box-shadow: none;
}
.get-in {
  background: #fff;
  text-align: center;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  border: 1px solid #e75480;
  /* background: rgb(253, 239, 237); */
  padding: 5px;
  border-radius: 5px;
}
.get-in {
  position: sticky;
  top: 10px;
}
.get-in h2 {
  margin-top: 20px;
  line-height: 30px;
  color: #e73e6f;
  margin-bottom: 20px;
  border-bottom: 1px solid #e73e6f;
  width: fit-content;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-size: 47px;
  margin-left: auto;
  margin-right: auto;
}
.get-in ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.javacod ul{
  padding: 0 !important;
}
.get-in ul li {
  margin: 10px 0;
  font-size: 16px;
  display: block;
  border-bottom: 1px solid #e7548096;
  padding-bottom: 10px;
  text-align: left;
}
.get-in ul li a {
  color: #212741;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.get-in ul li a i {
  color: #fff;
  font-size: 23px;
  height: 50px;
  width: 50px;
  box-shadow: 1px 1px 1px #000;
  text-align: center;
  line-height: 45px;
  margin-right: 10px;
  border-radius: 50px;
  border: 2px solid #aa346b;
  background: #e75480;
}
.get-in ul {
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
}
.javacod ul li {
  border: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  margin-left: 5px;
  font-size: 18px;
  display: block;
  text-align: left;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.get-in ul li a:hover i {
  background: rgb(253, 239, 237);
  color: #1b1b1b;
  box-shadow: 1px 1px 1px #e75480;
  border: 2px solid #1b1b1b;
  transition: .5s ease-in;
}
.form-srt .contactForm .form-control {
  border: none;
  background: #f4efeb;
  padding: 20px;
  height: 50px;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
textarea.form-control {
  min-height: 140px !important;
}
.form-srt .contactForm .form-control:hover {
  background: #e754805c;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  border-radius: 5px;
}
.a-pd{
  padding: 5px 10px;
}
h1#exampleModalLabel {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 25px !important;
}
#exampleModal {
  padding-right: 0 !important;
  overflow: hidden;
}

.special {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
}
.special h2 {
  width: fit-content;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  font-size: 24px;
  text-align: left;
  padding: 5px 0;
  border-bottom: 2px solid #e75480;
  margin: 0px 0 13px;
  text-transform: capitalize;
}
.special p {
  font-size: 17px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}

.special p a {
  color: #e75480;
  border-bottom: 1px solid #e75480;
  position: relative;
  z-index: 1;
  font-weight: 700;
  padding: 2px;
  font-size: 18px;
  text-transform: capitalize;
}
.special p a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom center;
  background: #e75480;
  z-index: -1;
  transition: transform 0.3s;
}
.special p a:hover::after {
    transform: scaleY(1);
}
.special p a:hover {
  color: #fff;
  border-bottom: 1px solid #aa346b;
}
.special ul{
  list-style: circle;
  padding-left: 20px;
  margin-bottom: 20px;
}
.special ul li {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.underline-blk{
    border-bottom: 1px solid #333;
}
.sign {
  width: 200px;
  border: 1px solid #e75480;
  background: rgb(253, 239, 237);
  padding: 5px;
  margin: 10px 0;
  border-radius: 5px;
}
.sign img {
  width: 100%;
  border-radius: 5px;
}
.people img, .site-scan img {
  width: 100%;
  background: rgb(253, 239, 237);
  border: 2px solid #e75480;
  padding: 5px;
  border-radius: 4px;
}

@media (max-width: 767px){
    .site-scan img{
  width: 150px;
  margin: 20px auto 0;
  display: block;
}
}

h2.thing-head-h2{
  background: #fff;
  padding: 15px 10px;
  border-bottom: 1px solid #e75480;
  font-size: 25px;
  margin: 20px 0;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  text-align: center;
  border-radius: 5px;
}
.thing-box {
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #A3D9F6;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
}
.thing-img {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.thing-img img {
  height: 225px;
  object-fit: cover;
  width: 100%;
}
.thing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.thing-box:hover {
  border: 1px solid #FF69B4;
}
.thing-box:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {	left: 125%;	}
}

@keyframes shine {
	100% {	left: 125%;	}
}
.thing-para h2 {
  font-family: Sans-Serif;
  text-transform: uppercase;
  color: #000;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  margin: 20px 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thing-para hr {
  background: #e75480;
  height: 3px;
  width: 42px;
  border: none;
  margin: 10px auto;
}
.thing-para p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
}
.new-btn-dj{
    margin: 20px 0;
}
.full-size-img-srt{
  position: absolute;
  top: 10px;
  right: 5px;
  color: #fff;
  font-size: 16px;
  height: 35px;
  width: 35px;
  margin-right: 5px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: var(--primary);
}
.stay-prop-nav:hover .full-size-img-srt{
    opacity: 1;
}
.full-size-img-srt:hover{
  background: var(--accent);
  color: #fff;
}
.fancybox-caption__body {
  max-height: 20vh;
  overflow: auto;
  pointer-events: all;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
.mob-vw{
    display: none;
}
.stay_nav .stay_nav_list > li > a span{
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
    font-family: "Poppins", sans-serif;
}
.events-srt img{
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e75480;
    background: rgb(253, 239, 237);
    padding: 5px;
    margin: 10px 0;
}
.coming-soon-btn{
    margin: 50px 0;
    text-align: center;
}
.coming-soon-btn a {
  border: 2px solid #e75480;
  background: #e75480;
  color: #ffffff;
  padding: 15px 40px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
}

.coming-soon-btn a:hover {
  box-shadow: 0 10px 15px 0 rgba(182,191,4,0.1);
  background: rgb(253, 239, 237);
  color: #e75480;
  transform: translateY(-5px);
}

.event-card {
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 10px 20px 0 rgba(0, 2, 10, 0.1);
  border: 1px solid #e75480;
  margin: 10px 0;
  min-height: 350px;
}
.event-card .user-block {
  position: relative;
  padding: 15px;
}
.event-card .user-block .user-info h3 {
  margin: 0 0 2px 0;
  font-size: 17px;
  color: #162b39;
  font-weight: 600;
  background: #eee;
  padding: 10px 10px;
  border-bottom: 1px solid #e75480;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  border-radius: 4px;
}
.event-card .user-block .user-info h3 em {
  color: #8492a6;
  font-style: normal;
}

.event-card article figure {
  margin: 0;
}
.event-card article figure img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.event-card article .article-info {
  position: relative;
  padding: 15px;
}

.event-card article .article-info h2 {
  margin: 0 0 3px 0;
  color: #162b39;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
.mob-vw-hm{
    display: none;
}

@media (max-width: 767px){
   .pl-cstm{
    padding-left: 30px;
    padding-right: 30px;
  }
  .event-card article figure img{
    height: 100%;
  }
  .event-card{
      min-height: auto;
  }
  .pogoSlider{
      height: 250px;
  }
  .star1, .star2, .star3, .star4, .star5, .star6{
    display: none;
  }
  .tp-copyright-5__text a{
      display: block;
  }
  .overlay, .cstm-memory-image .overlay{
    left: 0;
    width: 100%;
  }
  .text ul{
    padding: 0;
    margin-bottom: 10px;
  }
  .text ul li, .text a{
    font-size: 14px;
    font-weight: 600;
  }
  .text a{
    width: fit-content;
  }
  .bread-sec {
    background-image: url(../images/bg-in.jpg);
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 50px 0 50px;
    display: block;
  }
  .bread h1 {
    text-transform: capitalize;
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-size: 35px;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 1px 1px 1px #e75480;
  }
  .main-prop-detail{
    padding: 10px 0 50px 0;
  }
  .set-mini .stay-pcb-prop-srt .slick-list{
    height: 190.2px !important;
    padding: 0px;
  }
  .stay-prop-nav {
    height: auto;
  }
  .stay-prop-gal-sec_item img {
    height: 225px !important;
    object-fit: cover;
  }
  .stay-prop-lft-side, .stay-prop-rgt-side{
    height: 35px;
    width: 35px;
    margin-top: -10px;
  }
  .stay-prop-lft-side svg, .stay-prop-rgt-side svg{
    width: 15px !important;
    height: 15px !important;
  }
  .full-size-img-srt svg {
    width: 18px !important;
    height: 18px !important;
  }
  .stay-prop-rgt-side{
    right: 10px;
  }
  .stay-prop-lft-side {
    left: 10px;
  }
  .ctr-wid{
    width: 100%;
  }
  .ctr-wid-no{
    display: none;
  }
  .coma-set .col-4{
    width: 50%
  }
  .slp-inn {
    padding: 8px 8px;
    margin: 5px;
    border: 1px solid rgba(0,0,0,.1);
    background: #eee;
    text-align: center;
    border: 1px solid #e75480;
    background: rgb(253, 239, 237);
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #505050;
  }
  .stay-prop-gal-sec_item p{
    line-height: 18px;
    width: 90%;
    padding: 5px;
    font-size: 13px;
  }
  .slp-inn i{
    font-size: 16px;
    height: 35px;
    width: 35px;
    line-height: 30px;
  }
  .amenities ul li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .stay-prop-nav .stay-prop-lft-side, .stay-prop-nav .stay-prop-rgt-side, .full-size-img-srt{
      opacity: 1;
  }
  .modal-body {
      background: rgb(253, 239, 237);
      padding: 10px 0px;
      height: 650px;
      overflow-x: hidden;
      overflow-y: auto;
      scrollbar-width: thin;
      margin: 0;
      scrollbar-color: #FF69B4 #aa346b;
    }
    .form-srt{
        margin: 20px 0;
    }
    .dk-vw{
        display: none;
    }
    .mob-vw{
      padding: 20px;
      background: #fff;
      border-radius: 4px;
      margin: 20px 0;
      display: block;
    }
    .mob-vw .cstm-frame-srt {
        position: unset;
        border: 1px solid #ddd;
        height: unset;
        overflow-x: unset;
        overflow-y: unset;
        scrollbar-width: unset;
    }
    .thing-box{
        height: auto;
    }
    .dsk-vw-hm{
        display: none;
    }
    .pogoSlider-dir-btn.pogoSlider-dir-btn--next{
        background-image: url(../images/next-wh.png);
        opacity: 1;
    }
    .pogoSlider-dir-btn.pogoSlider-dir-btn--prev{
        background-image: url(../images/prev-wh.png);
        opacity: 1;
    }
    .mob-vw-hm{
        display: block;
    }
    .pogoSlider--navBottom .pogoSlider-nav{
        display: none;
        }

}

@media (min-width: 768px) and (max-width: 998px) {
  .amenities ul li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pogoSlider, .pogoSlider-slide{
      height: 500px !important;
  }
}

@media (min-width: 250px) and (max-width: 380px){
.pogoSlider--navBottom .pogoSlider-nav{
display: none;
}
.pogoSlider, .pogoSlider-slide {
height: 220px !important;
}
.rev-srt .rev-cust-img-rig {
position: absolute;
top: 6.6%;
z-index: 1;
left: 15px;
}
.rev-srt .rev-cust-img-lft {
position: absolute;
top: 6.6%;
right: 15px;
z-index: 1;
}
.slp-inn{
padding: 8px 6px;
font-size: 13px;
}
.slp-inn i {
font-size: 14px;
height: 30px;
width: 30px;
line-height: 25px;
}
.no-cap ul {
overflow: hidden;
background: #fff;
margin-bottom: 20px;
display: flex;
padding: 0;
align-items: center;
}
    
}

@media (min-width: 400px) and (max-width: 425px){
    .rev-srt .rev-cust-img-rig, .rev-srt .rev-cust-img-lft{
        top: 6.3% !important;
    }
}