* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  background-color: #fff;
  line-height: 1;
  color: #000;
  font-size: 15px;
  height: 100vh;
}

.w100 {
  width: 100%;
}

ul {
  list-style: none;
}

.container {
  min-width: auto;
  max-width: 1300px;
  padding: 0 clamp(0.625rem, 0.523rem + 0.5102vw, 0.9375rem);
  margin: 0 auto;
  box-sizing: border-box;
}

h2 {
  font-size: clamp(1.25rem, 0.7806rem + 2.3469vw, 2.6875rem);
  line-height: clamp(1.5rem, 1.0306rem + 2.3469vw, 2.9375rem);
}

p {
  color: #555353;
  font-size: clamp(0.875rem, 0.8138rem + 0.3061vw, 1.0625rem);
  line-height: clamp(1.125rem, 1.0026rem + 0.6122vw, 1.5rem);
}

section {
  padding: clamp(2rem, 1.6327rem + 1.8367vw, 3.125rem) 0;
}

.top-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.top-header .left {
  display: flex;
  flex-direction: row;
}
.top-header .left img {
  width: 219px;
}
@media screen and (max-width: 500px) {
  .top-header .left img {
    width: 150px;
  }
}
.top-header .right img {
  width: 90px;
}
@media screen and (max-width: 500px) {
  .top-header .right img {
    width: 60px;
  }
}

.banner img {
  width: 100%;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.kidsstay .box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: clamp(1.875rem, 1.4668rem + 2.0408vw, 3.125rem);
  gap: 30px;
}
@media screen and (max-width: 1080px) {
  .kidsstay .box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .kidsstay .box {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 15px;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .kidsstay .box::-webkit-scrollbar {
    display: none;
  }
}
.kidsstay .box .column {
  display: flex;
  flex-direction: column;
  width: 25%;
  gap: 20px;
  transition: all 0.35s linear;
  background: linear-gradient(to bottom, #ff9900 0%, #ff9900 98%);
  background-size: 0px 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  padding-bottom: 10px;
}
.kidsstay .box .column:hover {
  background-size: 100% 2px;
}
.kidsstay .box .column:hover .top1,
.kidsstay .box .column:hover .top2,
.kidsstay .box .column:hover .top3,
.kidsstay .box .column:hover .top4 {
  transform: scale(1.2);
}
@media screen and (max-width: 1080px) {
  .kidsstay .box .column {
    width: 47%;
    flex-direction: row;
  }
}
@media screen and (max-width: 800px) {
  .kidsstay .box .column {
    width: 47%;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .kidsstay .box .column {
    width: 100%;
    min-width: 90%;
  }
}
.kidsstay .box .column .top {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  background: #f9f9f9;
  overflow: hidden;
}
.kidsstay .box .column .top .top1,
.kidsstay .box .column .top .top2,
.kidsstay .box .column .top .top3,
.kidsstay .box .column .top .top4 {
  background-size: cover;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  transition: transform 0.9s;
}
@media screen and (max-width: 800px) {
  .kidsstay .box .column .top .top1,
  .kidsstay .box .column .top .top2,
  .kidsstay .box .column .top .top3,
  .kidsstay .box .column .top .top4 {
    width: auto;
  }
}
.kidsstay .box .column .top .top1 {
  background-image: url(../images/seaworld.png);
}
.kidsstay .box .column .top .top2 {
  background-image: url(../images/ferrari.png);
}
.kidsstay .box .column .top .top3 {
  background-image: url(../images/waterworld.png);
}
.kidsstay .box .column .top .top4 {
  background-image: url(../images/warnerbros.png);
}
@media screen and (max-width: 1080px) {
  .kidsstay .box .column .top {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .kidsstay .box .column .top {
    width: 100%;
  }
}
.kidsstay .box .column .bottom {
  display: flex;
  flex-direction: column;
}
.kidsstay .box .column .bottom h5 {
  color: #555353;
  font-weight: 500;
  margin-bottom: 10px;
}
.kidsstay .box .column .bottom h3 {
  font-weight: 600;
  margin-bottom: clamp(1.125rem, 1.0842rem + 0.2041vw, 1.25rem);
  line-height: 20px;
}
.kidsstay .box .column .bottom p {
  font-size: clamp(0.875rem, 0.8546rem + 0.102vw, 0.9375rem);
}
@media screen and (max-width: 600px) {
  .kidsstay .box .column .bottom p {
    white-space: normal;
  }
}
@media screen and (max-width: 1080px) {
  .kidsstay .box .column .bottom {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .kidsstay .box .column .bottom {
    width: 100%;
  }
}

.packages .box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(1.875rem, 1.4668rem + 2.0408vw, 3.125rem);
}
.packages .box .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 0px 22px #FEEBEE;
  border-radius: 25px 25px 0px 0px;
  margin: 0 8px;
}
.packages .box .column .top {
  height: 300px;
  border-radius: 25px 25px 0px 0px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.packages .box .column .top.top1 {
  background-image: url(../images/ferrari-world.png);
}
.packages .box .column .top.top2 {
  background-image: url(../images/water-world.png);
}
.packages .box .column .top.top3 {
  background-image: url(../images/warner-bros.png);
}
.packages .box .column .top .duration {
  position: absolute;
  right: 0;
  top: 10%;
  background: #EE7E25;
  padding: 15px;
  border-radius: 25px 0px 0px 25px;
  display: flex;
  gap: 5px;
  box-sizing: border-box;
  font-weight: 500;
}
.packages .box .column .texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.packages .box .column .texts .inner-box {
  padding: 0px clamp(0.75rem, 0.5867rem + 0.8163vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.packages .box .column .texts .inner-box .list {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 15px;
}
.packages .box .column .texts .inner-box .list ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.packages .box .column .texts .inner-box .list ul li {
  background: #FFF2F2;
  border: 1px dashed #FBCDCD;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  color: #820C0C;
  white-space: nowrap;
}
.packages .box .column .texts .inner-box .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.packages .box .column .texts .inner-box .content .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.packages .box .column .texts .inner-box .content .header .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.packages .box .column .texts .inner-box .content .header .left h5 {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8138rem + 0.3061vw, 1.0625rem);
}
.packages .box .column .texts .inner-box .content .header .left h6 {
  color: gray;
  font-size: clamp(0.8125rem, 0.7717rem + 0.2041vw, 0.9375rem);
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}
@media screen and (max-width: 500px) {
  .packages .box .column .texts .inner-box .content .header .right svg {
    width: 15px;
  }
}
.packages .box .column .texts .inner-box .content p {
  font-size: clamp(0.875rem, 0.8546rem + 0.102vw, 0.9375rem);
}
.packages .box .column .texts .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #ebebeb;
  align-items: center;
  width: 100%;
}
.packages .box .column .texts .bottom .left {
  width: 50%;
  text-align: center;
  padding: 10px 0px;
}
.packages .box .column .texts .bottom .left h5 {
  font-size: 15px;
  font-weight: 600;
  color: #DA382D;
  cursor: pointer;
}
.packages .box .column .texts .bottom .right {
  width: 50%;
  text-align: center;
  background-color: #DA382D;
  padding: 10px 0px;
  color: #fff;
}
.packages .box .column .texts .bottom .right p {
  font-size: 13px;
  color: #fff;
}
.packages .box .column .texts .bottom .right h4 {
  font-size: clamp(0.9375rem, 0.8763rem + 0.3061vw, 1.125rem);
  font-weight: 600;
}

.attractions {
  background: #FFF9F3;
  padding: 50px 0;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .attractions {
    position: relative;
  }
}
.attractions .box {
  margin-top: 53px;
}
.attractions .box .column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0px 0px 22px #FEEBEE;
  border-radius: 11px;
  background: white;
  min-height: 430px;
  padding: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .attractions .box .column {
    margin-top: 75px;
  }
}
.attractions .box .column .image {
  background-size: cover;
  background-repeat: no-repeat;
  height: 220px;
  width: 95%;
  margin: -61px auto 0 auto;
  border-radius: 11px;
}
.attractions .box .column .image.image1 {
  background-image: url(../images/clymb.png);
}
.attractions .box .column .image.image2 {
  background-image: url(../images/yasmall.png);
}
.attractions .box .column .image.image3 {
  background-image: url(../images/yasbeach.png);
}
.attractions .box .column .texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.attractions .box .column .texts p {
  font-size: clamp(0.875rem, 0.8546rem + 0.102vw, 0.9375rem);
  min-height: 88px;
}
.attractions .box .column .texts .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #DA382D;
  color: white;
  font-weight: 500;
  padding: 10px;
  margin: auto;
  border-radius: 6px;
  line-height: 28px;
  min-width: 140px;
  cursor: pointer;
  transition: 0.5s;
}
.attractions .box .column .texts .btn:hover {
  background: #EE7E25;
  color: #000;
}
.attractions .navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: clamp(1.875rem, 1.4668rem + 2.0408vw, 3.125rem);
}
@media screen and (max-width: 600px) {
  .attractions .navigation {
    position: absolute;
    top: 67px;
  }
}
.attractions .navigation .btn {
  width: 50px;
  height: 50px;
  border: 1px solid #EE7E25;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: 0.5s;
}
.attractions .navigation .btn:active {
  background-color: #EE7E25;
}
.attractions .navigation .btn:focus {
  background-color: #EE7E25;
}
.attractions .navigation .btn:hover {
  background-color: #EE7E25;
}
.attractions .navigation .right {
  transform: scaleX(-1);
}

.hotel {
  background: #FFF9F3;
  padding: 50px 0;
}
.hotel .container {
  position: relative;
}
.hotel .column {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 900px) {
  .hotel .column {
    display: flex;
    flex-direction: column;
  }
}
.hotel .box {
  display: flex;
  flex-direction: row;
  margin-top: clamp(1.875rem, 1.4668rem + 2.0408vw, 3.125rem);
  position: relative;
}
.hotel .box .left {
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  border-radius: 10px 0px 0px 10px;
  box-shadow: 0px 0px 19px #fbe6d5;
}
@media screen and (max-width: 900px) {
  .hotel .box .left {
    width: 100%;
    height: 361px;
    border-radius: 13px 13px 0px 0px;
  }
}
@media screen and (max-width: 400px) {
  .hotel .box .left {
    height: 264px;
  }
}
.hotel .box .left.left1 {
  background-image: url(../images/whotel.jpg);
}
.hotel .box .left.left2 {
  background-image: url(../images/hilton.jpg);
}
.hotel .box .left.left3 {
  background-image: url(../images/wbhotel.jpg);
}
.hotel .box .right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
  background: #fff;
  padding: clamp(1.875rem, 1.3852rem + 2.449vw, 3.375rem);
  box-shadow: 0px 0px 19px #fbe6d5;
}
@media screen and (max-width: 900px) {
  .hotel .box .right {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .hotel .box .right {
    padding: 15px;
  }
}
.hotel .box .right .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.hotel .box .right .header .left-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hotel .box .right .header .left-header .detail {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media screen and (max-width: 500px) {
  .hotel .box .right .header .left-header .detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
.hotel .box .right .header .left-header .detail .left-detail p {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}
@media screen and (max-width: 500px) {
  .hotel .box .right .header .left-header .detail .right-detail svg {
    width: 15px;
  }
}
.hotel .box .right .header .right-header {
  width: 20px;
  height: 20px;
  fill: #DA382D;
}
.hotel .box .right .paragraph {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hotel .box .right .paragraph p {
  font-size: clamp(0.875rem, 0.8546rem + 0.102vw, 0.9375rem);
}
.hotel .box .right .footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F2F2F2;
  padding-top: 23px;
}
@media screen and (max-width: 400px) {
  .hotel .box .right .footer {
    padding-top: 14px;
  }
}
.hotel .box .right .footer .left-footer {
  cursor: pointer;
}
.hotel .box .right .footer .left-footer h3 {
  font-size: 15px;
  font-weight: 600;
  color: #DA382D;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  line-height: 0;
  gap: 10px;
}
@media screen and (max-width: 400px) {
  .hotel .box .right .footer .left-footer h3 {
    font-size: 14px;
  }
}
.hotel .box .right .footer .left-footer h3 svg {
  width: 23px;
  fill: #DA382D;
}
@media screen and (max-width: 400px) {
  .hotel .box .right .footer .left-footer h3 svg {
    width: 15px;
  }
}
.hotel .box .right .footer .right-footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media screen and (max-width: 400px) {
  .hotel .box .right .footer .right-footer {
    gap: 6px;
  }
}
.hotel .box .right .footer .right-footer .review-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.hotel .box .right .footer .right-footer .review-text h3 {
  color: #EE7E25;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 400px) {
  .hotel .box .right .footer .right-footer .review-text h3 {
    font-size: 14px;
  }
}
.hotel .box .right .footer .right-footer .review-text p {
  font-size: 14px;
  color: black;
}
@media screen and (max-width: 400px) {
  .hotel .box .right .footer .right-footer .review-text p {
    font-size: 12px;
  }
}
.hotel .box .right .footer .right-footer .review-number {
  background: #EE7E25;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 0px 14px;
}
@media screen and (max-width: 400px) {
  .hotel .box .right .footer .right-footer .review-number {
    width: 40px;
    height: 40px;
  }
}
.hotel .navigation {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 47%;
  z-index: 1;
  left: 0;
}
.hotel .navigation .nbtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  background: white;
  box-shadow: 0px 0px 28px rgba(226, 24, 24, 0.1607843137);
  transition: 0.5s;
}
.hotel .navigation .nbtn:active {
  background-color: #EE7E25;
}
.hotel .navigation .nbtn:focus {
  background-color: #EE7E25;
}
.hotel .navigation .nbtn:hover {
  background-color: #EE7E25;
}
.hotel .navigation .nbtn.right {
  transform: scaleX(-1);
}
@media screen and (max-width: 900px) {
  .hotel .navigation {
    top: 50%;
  }
}
@media screen and (max-width: 600px) {
  .hotel .navigation {
    top: 5%;
    gap: 5px;
    justify-content: center;
  }
  .hotel .navigation .nbtn {
    border: 1px solid #EE7E25;
    background: none;
    box-shadow: none;
  }
}
@media screen and (max-width: 600px) {
  .hotel .text {
    margin-bottom: 90px;
  }
}

.video {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .video {
    display: flex;
    flex-direction: column;
  }
}
.video .left {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .video .left {
    width: 100%;
    text-align: center;
  }
}
.video .left h2 {
  font-size: clamp(1.25rem, 0.5561rem + 3.4694vw, 3.375rem);
  line-height: clamp(1.375rem, 0.5179rem + 4.2857vw, 4rem);
  color: #EE7E25;
  text-transform: uppercase;
}
.video .left h2 span {
  color: #000;
}
.video .right {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .video .right {
    width: 100%;
  }
}

.btn-outer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.btn-outer .btn {
  color: #EE7E25;
  font-weight: 500;
  padding: 10px;
  margin: auto;
  border: 1px solid #EE7E25;
  border-radius: 30px;
  line-height: 28px;
  min-width: 140px;
  cursor: pointer;
  text-align: center;
  margin-top: clamp(1.875rem, 1.4668rem + 2.0408vw, 3.125rem);
  transition: 0.5s;
}
.btn-outer .btn:hover {
  background: #EE7E25;
  color: #000;
}

.info-box {
  background: #FBFBFB;
}
.info-box .outer {
  display: flex;
  flex-direction: row;
  gap: clamp(1.875rem, 1.0587rem + 4.0816vw, 4.375rem);
  margin-top: clamp(1.875rem, 1.2628rem + 3.0612vw, 3.75rem);
}
@media screen and (max-width: 1200px) {
  .info-box .outer {
    display: flex;
    flex-direction: column;
  }
}
.info-box .outer .left {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 33px;
}
@media screen and (max-width: 1200px) {
  .info-box .outer .left {
    width: 100%;
  }
}
.info-box .outer .left .info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .info-box .outer .left .info {
    gap: 12px;
    align-items: stretch;
  }
}
@media screen and (max-width: 500px) {
  .info-box .outer .left .info {
    display: flex;
    flex-direction: column;
  }
}
.info-box .outer .left .info .info-circle {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 50%;
  border: 1px dashed #DA382D;
  width: 250px;
  height: 250px;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .info-box .outer .left .info .info-circle {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 500px) {
  .info-box .outer .left .info .info-circle {
    align-items: center;
  }
}
.info-box .outer .left .info .info-circle h5 {
  font-size: clamp(1rem, 0.9184rem + 0.4082vw, 1.25rem);
  font-weight: 500;
}
.info-box .outer .left .info .info-circle h4 {
  font-size: clamp(1.125rem, 0.8801rem + 1.2245vw, 1.875rem);
  color: #EE7E25;
}
.info-box .outer .left .info .info-circle h4 span {
  font-size: clamp(0.9375rem, 0.8559rem + 0.4082vw, 1.1875rem);
  font-weight: 500;
}
.info-box .outer .left .info .info-circle p {
  font-style: italic;
  font-size: clamp(0.875rem, 0.8546rem + 0.102vw, 0.9375rem);
  text-align: center;
}
.info-box .outer .left .info .info-circle img {
  width: 50px;
  height: 50px;
}
.info-box .outer .left .qna {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-box .outer .left .qna .box {
  background: #fff;
  padding: clamp(0.9375rem, 0.8355rem + 0.5102vw, 1.25rem);
  border-radius: 14px;
  border-left: 4px solid orange;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0px 0px 27px #f5f5f5;
}
.info-box .outer .left .qna .box h4 {
  font-size: clamp(0.9375rem, 0.8763rem + 0.3061vw, 1.125rem);
  font-weight: 600;
}
.info-box .outer .left .qna .box a {
  cursor: pointer;
  color: #DA382D;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .info-box .outer .left .qna .box a {
    font-size: 12px;
  }
}
.info-box .outer .left .qna .box p {
  font-size: clamp(0.875rem, 0.8546rem + 0.102vw, 0.9375rem);
}
.info-box .outer .right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: clamp(0.9375rem, 0.6314rem + 1.5306vw, 1.875rem);
  box-shadow: 0px 0px 27px #f5f5f5;
  background: #fff;
  border-radius: 14px;
}
@media screen and (max-width: 1200px) {
  .info-box .outer .right {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .info-box .outer .right {
    display: flex;
    flex-direction: column;
  }
}
.info-box .outer .right h4 {
  font-size: clamp(0.9375rem, 0.8763rem + 0.3061vw, 1.125rem);
  font-weight: 600;
}
.info-box .outer .right p {
  font-size: clamp(0.875rem, 0.8546rem + 0.102vw, 0.9375rem);
}
.info-box .outer .right .when {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .info-box .outer .right .when {
    width: 50%;
  }
  .info-box .outer .right .when img {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .info-box .outer .right .when {
    width: 100%;
  }
}
.info-box .outer .right .flight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .info-box .outer .right .flight-info {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .info-box .outer .right .flight-info {
    width: 100%;
  }
}
.info-box .outer .right .flight-info .icon-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.info-box .outer .right .flight-info .icon-box .icon {
  width: 33%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.info-box .outer .right .flight-info .icon-box .icon.middle {
  border-left: 1px solid #E9E8E8;
  border-right: 1px solid #E9E8E8;
}
@media screen and (max-width: 500px) {
  .info-box .outer .right .flight-info .icon-box .icon svg {
    width: 40px;
    height: 40px;
  }
}

.footer-img {
  line-height: 0;
}
.footer-img img {
  width: 100%;
}

footer {
  padding: clamp(2rem, 1.6327rem + 1.8367vw, 3.125rem) 0 clamp(1.125rem, 1.0842rem + 0.2041vw, 1.25rem) 0;
  background-color: #07162D;
}
footer .footer-outer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  footer .footer-outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
  }
}
footer .footer-outer .left {
  width: 50%;
}
footer .footer-outer .left h2 {
  color: white;
}
footer .footer-outer .left h2 span {
  color: #EE7E25;
}
@media screen and (max-width: 600px) {
  footer .footer-outer .left {
    width: 100%;
  }
}
footer .footer-outer .right {
  width: 50%;
  text-align: right;
}
footer .footer-outer .right button {
  background: #EE7E25;
  color: white;
  font-weight: 500;
  padding: 10px;
  margin: auto;
  border-radius: 6px;
  line-height: 28px;
  min-width: 140px;
  cursor: pointer;
  color: black;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
footer .footer-outer .right button:hover {
  background: #fff;
}
@media screen and (max-width: 400px) {
  footer .footer-outer .right button {
    min-width: 114px;
    line-height: 18px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer-outer .right {
    width: 100%;
    text-align: center;
  }
}
footer .footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #223553;
  border-bottom: 1px solid #223553;
  padding: 15px 0px;
  margin-top: 26px;
}
@media screen and (max-width: 500px) {
  footer .footer-bottom {
    display: flex;
    flex-direction: column;
  }
}
footer .footer-bottom .column {
  width: 33%;
  display: flex;
  flex-direction: row;
  gap: 14px;
}
footer .footer-bottom .column.akbar {
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 500px) {
  footer .footer-bottom .column.akbar {
    justify-content: center;
    align-items: center;
  }
}
footer .footer-bottom .column.yas {
  justify-content: center;
  align-items: center;
}
footer .footer-bottom .column.socialicon {
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 500px) {
  footer .footer-bottom .column.socialicon {
    justify-content: center;
    align-items: center;
  }
}
footer .footer-bottom .column.socialicon svg {
  fill: #475365;
  cursor: pointer;
}
footer .footer-bottom .column.socialicon svg:hover {
  fill: #EE7E25;
}
footer .footer-bottom .column img {
  width: 210px;
}
@media screen and (max-width: 600px) {
  footer .footer-bottom .column img {
    width: 140px;
  }
}
footer .footer-bottom .column svg {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 600px) {
  footer .footer-bottom .column svg {
    width: 22px;
    height: 22px;
  }
}
footer .copy-right {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #8A919B;
}
@media screen and (max-width: 500px) {
  footer .copy-right {
    font-size: 11px;
  }
}

.map {
  width: 100%;
}
.map img {
  max-width: 100%;
}

.owl-dots {
  display: none;
}

.owl-stage-outer {
  padding-bottom: 0;
}/*# sourceMappingURL=style.css.map */