.banner-center-caption {
  position: absolute;
  z-index: 50;
  width: 100%;
  height: 100%;
  margin-bottom: 200px;
  /* background: linear-gradient(#ff7c5b88, #17a3b878); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loadedTaxi {
  width: 300px;
  position: absolute;
  left: 0;
  bottom: -75px;
  overflow-y: visible;
  background-repeat: repeat-x;
  animation: animatedImage 10s linear infinite;
}

.loadedTaxiTyre {
  width: 50px;
  position: relative;
  bottom: 25px;
  left: 35px;
  animation: animateTyre 500ms linear infinite;
}
.loadedTaxiTyreRight {
  width: 50px;
  position: relative;
  bottom: 75px;
  left: 200px;
  animation: animateTyre 500ms linear infinite;
}

.driverGirl {
  width: 100px;
  position: absolute;
  top: 18px;
  right: 40px;
  animation: animateGirl 1.5s linear infinite;
}
@keyframes animateGirl {
  0% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}

@keyframes animateTyre {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(100deg);
  }
}

@keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -300px 0;
  }
}
@-moz-keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -300px 0;
  }
}
@-webkit-keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -300px 0;
  }
}
@-ms-keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -300px 0;
  }
}
@-o-keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -300px 0;
  }
}

#animate-area {
  width: 100%;
  margin-top: 0px;
  padding: 4em 1em;
  z-index: 10;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  background-image: url('<?= base_url()?>assets/frantweb/images/background/skyline.jpg');
  background-position: top;
  background-size: auto;
  /* background-size: 100% 700px; */
  animation: animatedBackground 10s linear infinite;
  -moz-animation: animatedBackground 10s linear infinite;
  -webkit-animation: animatedBackground 10s linear infinite;
  -ms-animation: animatedBackground 10s linear infinite;
  -o-animation: animatedBackground 10s linear infinite;
}

@keyframes animatedImage {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

@keyframes showTopText {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  40%,
  60% {
    transform: translate3d(0, 50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes showBottomText {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.animated-title {
  color: white;
  font-family: Roboto, Arial, sans-serif;
  height: 40%;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  line-height: normal;
}
.animated-title > div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.animated-title > div div {
  font-size: 33px;
  font-weight: bolder;
  position: absolute;
}
.animated-title > div div span {
  display: block;
}
.animated-title > div.text-top {
  border-bottom: 5px solid #17a2b8;
  top: 0;
  width: 100;
  max-width: 720px;
  margin: 0 auto;
}
.animated-title > div.text-top div {
  animation: showTopText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}
.animated-title > div.text-top div span:first-child {
  color: #ff7c5b;
}
.animated-title > div.text-bottom {
  bottom: 0;
}
.animated-title > div.text-bottom div {
  animation: showBottomText 0.5s;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
  font-size: 15px;
  font-weight: normal;
  padding-top: 5px;
}
.custom-booking-container {
  width: 100%;
  max-width: 720px;
  margin: 1em auto;
  z-index: 100;
  background: #17a3b8e0;
  padding: 1em;
  border-radius: 5px;
  font-size: 15px;
}
.custom-booking-container h5 {
  padding-left: 15px;
  color: white;
  font-size: 15px;
}
.custom-booking-form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-booking-form div {
  width: 100%;
  padding: 15px;
}
.custom-booking-form div select,
input {
  width: 100%;
  padding: 4px;
  border-radius: 4px;
}
.custom-booking-form div select {
  padding: 8px;
  min-width: 300px;
}
.small-btn-info {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 14px;
  line-height: 25px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  word-wrap: normal;
  padding: 7px;
  border-radius: 4px;
  background: #17a2b8;
  z-index: 1;
  box-shadow: 0px 15px 25px 0px rgba(255, 124, 91, 0.3);
  transition: all 500ms ease;
  border: none;
}

.small-theme-btn {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 14px;
  line-height: 25px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  word-wrap: normal;
  padding: 7px;
  border-radius: 4px;
  background: #ff7c5b;
  z-index: 1;
  box-shadow: 0px 15px 25px 0px rgba(255, 124, 91, 0.3);
  transition: all 500ms ease;
  border: none;
}

.small-theme-btn:hover {
  background: #061a3a;
}

.small-theme-btn:before,
.small-btn-info:before {
  /* webkit-transition-duration: 800ms; */
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: '';
  top: 110%;
  left: 50%;
  background: #061a3a;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition-duration: 800ms;
  border-radius: 50%;
  z-index: -1;
}

.small-theme-btn:hover:before,
.small-btn-info:hover:before {
  top: -40%;
}

.theme-packages-section {
  width: 100%;
  display: flex;
  height: 60px;
  border-top: 1px solid white;
  /* overflow-x: hidden; */
}

.theme-packages-section div {
  border: 1px solid white;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #17a2b8;
  transition: all 500ms ease-in;
  cursor: pointer;
  transition: height 500ms ease-in;
  height: 60px;
  padding: 1em;
}
.theme-packages-section div h3 {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.theme-packages-section div:hover {
  height: 250px;
  z-index: 100;
  align-items: flex-end;
}
.theme-packages-section div:hover button {
  background-color: #ff7c5b;
  color: white;
}

.tour-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1em;
}

.features-container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2em;
}
.features-container .feature-card {
  width: 100%;
  min-width: 100px;
  height: auto;
  padding: 1em;
  background: white;
  border-radius: 10px;
  filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03))
    drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
}

.feature-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

img {
  display: inline-block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.feature-card div {
  display: flex;
  justify-content: center;
}

.feature-icon img {
  width: 60px;
}
.feature-card h2 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 1em;
}

.outline-theme-btn {
  padding: 1px 4px;
  background-color: transparent;
  border: 2px solid #ff7c5b;
  border-radius: 5px;
  color: #ff7c5b;
  font-size: 12px;
  font-weight: bold;
}

.outline-theme-btn:hover {
  background-color: #ff7c5b;
  color: white;
}

.carPackages {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2em 0;
}
.carPackages > div {
  width: 100%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.carPackages div img {
  width: 90%;
  object-fit: contain;
}
.carPackages > div > div h2 {
  font-weight: bolder;
  font-size: 20px;
  color: #ff7c5b;
}

.tour-block-one .inner-box .lower-content h4 del {
  font-size: 14px;
  font-weight: normal;
  color: gray !important;
}

.top-info {
  width: 100%;
  padding: 0em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auto-container {
  max-width: 1280px;
}

.testimonial-block-one .inner-box .author-box .thumb-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -47px;
  background: #ffffff;
  padding: 7px;
  border-radius: 50%;
  box-shadow: 0px 20px 40px 0px rgb(6 26 58 / 20%);
}

.paikatext {
  font-size: 12px;
  background: #17a2b8;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
  color: #fff;
}

.internationalContainer {
  background: linear-gradient(#ff7c5b88, #17a3b878),
    url('./images/international/intbg.jpg');
  background-position: center;
  background-size: cover;
}
.internationalContainer > div {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 1280px;
  padding: 4em 1em;
  margin: 0 auto;
}

.internationalImages {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.internationalImages > div {
  aspect-ratio: 1/1;
  width: 25%;
  margin: 1em;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 300ms ease;
}

.internationalImages .packageInfo {
  background-color: white;
  border: 10px;
  text-align: center;
  padding: 10px;
}
.internationalImages .packageInfo h4,
p {
  font-size: 16px;
  line-height: normal;
}

.internationalImages img {
  border: 10px solid white;
  border-bottom: none;
}

.internationalForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-span: 1fr;
}
.internationalForm form {
  width: 400px;
  height: auto;
  background-color: #061a3abb;
  padding: 2em;
  margin: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.internationalForm form div {
  width: 100%;
  margin: 1em 0;
}
.internationalForm form label {
  color: white;
}

@media only screen and (max-width: 1200px) {
  .tour-packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
  }
}

@media only screen and (max-width: 950px) {
  .features-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
  }

  .features-container .feature-card h2 {
    font-size: 15px;
  }
  .theme-packages-section {
    width: 100%;
    height: 120px;
    flex-wrap: wrap;
  }
  .theme-packages-section > div {
    width: 50%;
  }
}

@media only screen and (max-width: 810px) {
  .tour-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
  }
  .banner-center-caption {
    padding: 0 1em;
  }
  .animated-title {
    height: 75%;
  }
  .carPackages {
    flex-wrap: wrap;
  }
  .carPackages > div {
    background-color: white;
    width: 40%;
    min-width: 150px;
    filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03))
      drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
    border-radius: 10px;
    padding: 1em;
    margin: 10px;
  }
  .internationalContainer > div {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1280px;
    padding: 4em 1em;
    margin: 0 auto;
  }
  .internationalImages .packageInfo h4,
  p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 710px) {
  .internationalForm form {
    min-width: auto;
    width: 100%;
  }
  .internationalImages > div {
    width: 40%;
  }

  .theme-packages-section div h3 {
    font-size: 12px;
  }

  .outline-theme-btn {
    font-size: 8px;
  }

  .custom-booking-container {
    margin-top: -5em;
  }

  .custom-booking-container h4 {
    padding: 5px;
  }

  .custom-booking-container h5 {
    padding-left: 5px;
    color: white;
    font-size: 15px;
  }

  .custom-booking-form {
    flex-wrap: wrap;
  }

  .custom-booking-form div {
    max-width: 100% !important;
    padding: 5px;
  }
  .custom-booking-form div:nth-child(2) {
    display: none !important;
  }

  .custom-booking-form .small-theme-btn {
    width: 100%;
  }

  .custom-booking-form div select,
  input,
  button {
    max-width: 100%;
    font-size: 10px !important;
  }

  .tour-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
  }
}

.news-block-one .inner-box {
  position: relative;
  display: block;
  padding: 1em;
  margin: 0.5em;
  background-color: white;
  border-radius: 10px;
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04))
    drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  overflow: hidden;
}
.news-block-one .inner-box .image-box .post-date {
  position: absolute;
  left: 20px;
  top: 28px;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  background: #ffffff;
  border-radius: 25px;
  padding: 5px 20px 3px 55px;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%);
}

.btn-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.small-btn-info {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 14px;
  line-height: 25px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  word-wrap: normal;
  padding: 7px;
  border-radius: 4px;
  background: #17a2b8;
  z-index: 1;
  box-shadow: 0px 15px 25px 0px rgb(255 124 91 / 30%);
  transition: all 500ms ease;
  border: none;
}
.tour-block-one .inner-box .lower-content .btn-box a {
  width: 50%;
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  color: #061a3a;
  font-weight: 500;
  border: 1px solid #e4e8e9;
  border-radius: 4px;
  padding: 10px 10px;
  text-align: center;
}
.tourBlockContainer {
  border-radius: 10px;
  padding: 2em;
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 8%);

  margin-bottom: 30px;
}

.tourBlock {
  min-height: 250px;
  display: flex;
  align-items: center;
}
.packageImageContainer {
  width: 35%;
  position: relative;
}

.packageImageContainer a {
  width: 100%;
  height: 100%;
}
.packageImageContainer a img {
  width: 100%;
  min-height: 250px;
  border-radius: 10px;
}

.packageContentContainer {
  width: 65%;
  margin-left: 2em;
}
.packageContentContainer .rating span {
  font-size: 14px;
}
.packageContentContainer h3 {
  margin-bottom: 0.5em;
}
.packageContentContainer h3 a {
  color: #061a3a;
  font-size: 21px;
  font-weight: 500;
}

.packageContentContainer h4 {
  color: #ff7c5b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.packageContentContainer h4 span {
  font-weight: 400;
  font-size: 16px;
  color: gray;
}
.packageContentContainer .btnBox {
  margin-top: 0.5em;
}
.packageContentContainer .btnBox a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  color: #061a3a;
  font-weight: 500;
  border: 1px solid #e4e8e9;
  border-radius: 4px;
  padding: 11px 21px;
  text-align: center;
}

@media only screen and (max-width: 760px) {
  .tourBlock {
    flex-direction: column;
  }
  .packageImageContainer {
    width: 100%;
  }
  .packageContentContainer {
    width: 100%;
    margin-left: 0em;
    margin-top: 1em;
  }
  .packageContentContainer .btnBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .packageContentContainer .btnBox a {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 26px;
    color: #061a3a;
    font-weight: 500;
    border: 1px solid #e4e8e9;
    border-radius: 4px;
    padding: 5px 6px;
    text-align: center;
  }
  .packageContentContainer .btnBox a:nth-child(2) {
    margin: auto 1em;
  }
}
