@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap");
:root {
  --card-width: 250px;
  --card-height: 400px;
  /* --card-width: 200px;
  --card-height: 300px; */
  /* --card-width: 400px;
  --card-height: 600px; */
  --card-transition-duration: 800ms;
  --card-transition-easing: ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.787);
  overflow: hidden;
}
h1,
h2,
h3,
h4 {
  color: #fff !important;
}
.text-end {
  text-align: right;
}
.text-center {
  text-align: center;
}
.col-6 {
  padding: 0 5px;
  width: 50%;
  float: left;
}
.col-4 {
  padding: 0 5px;
  width: 33.33%;
  float: left;
}
.col-3 {
  padding: 0 5px;
  width: 25%;
  float: left;
}
.col-12 {
  width: 100%;
  padding: 0 5px;
}
.col-12.text-end.form-action {
  border-top: 1px dashed #8797ab;
  display: inline-block;
}
.mbl-btn {
  display: none;
}

.d-none {
  display: none;
}
.content-box {
  display: none;
}
.card-link {
  pointer-events: none;
}
.content {
  position: absolute;
  background: #114383;
  color: #fff;
  bottom: 0;
  font-size: 13px;
  border-radius: 0 80px 20px 20px;
  padding: 15px;
  /* overflow-y: scroll; */
  height: 20%;
  width: 100%;
}
.iner-data {
  width: 100%;
  float: left;
}
.inner-title {
  margin-bottom: 25px;
  text-align: center;
}

/* width */
.content::-webkit-scrollbar {
  width: 0px;
}

/* Track */
.content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.content::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.content .box {
  width: 50%;
  float: left;
  padding: 3px;
}
.inner-boxes hr {
  margin: 7px 0;
}
.content h5 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.content h5::before,
.content h5::after {
  display: inline-block;
  content: "";
  border-top: 1px solid white;
  width: 1rem;
  margin: 0px 8px;
  transform: translateY(-0.25rem);
}
.current--card .card-link {
  pointer-events: visible;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 999;
  position: relative;
}
.actions a {
  display: none;
}
.current--card .actions a {
  color: #fff;
  display: none;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #052f64;
  padding: 8px 20px;
  background: #052f64;
}

.current--card .actions {
  display: none;
  position: absolute;
  z-index: 10000;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
ul.text.desc-list {
  font-size: 13px;
  list-style: circle;
  padding: 13px 35px;
  margin: 0;
  width: 100%;
}
ul.text.desc-list li {
  margin: 8px 0;
}
ul.text.desc-list li a {
  color: #fff;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
button:focus {
  outline: none;
  border: none;
}

.app {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -5;
  filter: blur(25px);
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.app__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  opacity: 0.8;
}
.app__bg__image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(var(--image-translate-offset, 0));
  width: 180%;
  height: 180%;
  transition: transform 1000ms ease, opacity 1000ms ease;
  overflow: hidden;
}
.app__bg__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app__bg__image.current--image {
  opacity: 1;
  --image-translate-offset: 0;
}
.app__bg__image.previous--image,
.app__bg__image.next--image {
  opacity: 0;
}
.app__bg__image.previous--image {
  --image-translate-offset: -25%;
}
.app__bg__image.next--image {
  --image-translate-offset: 25%;
}

.cardList {
  position: absolute;
  width: calc(3 * var(--card-width));
  height: auto;
}
.cardList__btn {
  --btn-size: 35px;
  width: var(--btn-size);
  height: var(--btn-size);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.cardList__btn.btn--left {
  left: -5%;
}
.cardList__btn.btn--right {
  right: -5%;
}
.cardList__btn .icon {
  width: 100%;
  height: 100%;
}
.cardList__btn .icon svg {
  width: 100%;
  height: 100%;
}
.cardList .cards__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.card {
  --card-translateY-offset: 100vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(var(--card-translateX-offset))
    translateY(var(--card-translateY-offset))
    rotateY(var(--card-rotation-offset)) scale(var(--card-scale-offset));
  display: inline-block;
  width: var(--card-width);
  height: var(--card-height);
  transition: transform var(--card-transition-duration)
    var(--card-transition-easing);
  user-select: none;
}

.card::before {
  content: "";
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  transition: opacity var(--card-transition-duration)
    var(--card-transition-easing);
  opacity: calc(1 - var(--opacity));
}
.card__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.card__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
/* .card.current--card img {
  box-shadow: 0 0 20px 2px #052f6494;
} */
.card.current--card {
  --current-card-rotation-offset: 0;
  --card-translateX-offset: 0;
  --card-rotation-offset: var(--current-card-rotation-offset);
  --card-scale-offset: 1.2;
  --opacity: 0.8;
}
.card.previous--card {
  --card-translateX-offset: calc(-1 * var(--card-width) * 1.1);
  --card-rotation-offset: 25deg;
}
.card.next--card {
  --card-translateX-offset: calc(var(--card-width) * 1.1);
  --card-rotation-offset: -25deg;
}
.card.previous--card,
.card.next--card {
  --card-scale-offset: 0.9;
  --opacity: 0.4;
  filter: blur(5px);
}
.card.left-back--image,
.card.right-back--image {
  display: none;
}
.left-back--card,
.right-back--card {
  display: none;
}

.infoList {
  position: absolute;
  width: calc(3 * var(--card-width));
  height: var(--card-height);
  pointer-events: none;
}
.infoList .info__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.info {
  margin-bottom: calc(var(--card-height) / 8);
  margin-left: calc(var(--card-width) / 1.5);
  transform: translateZ(2rem);
  transition: transform var(--card-transition-duration)
    var(--card-transition-easing);
}
.info .text {
  position: relative;
  font-family: "Montserrat";
  font-size: calc(var(--card-width) * var(--text-size-offset, 0.2));
  /* white-space: nowrap; */
  color: #fff;
  width: fit-content;
}
.info .name,
.info .location {
  text-transform: uppercase;
}
.info .location {
  font-weight: 800;
}
.info .location {
  --mg-left: 40px;
  --text-size-offset: 0.12;
  font-weight: 600;
  margin-left: var(--mg-left);
  margin-bottom: calc(var(--mg-left) / 2);
  padding-bottom: 0.8rem;
}
.info .location::before,
.info .location::after {
  content: "";
  position: absolute;
  background: #f62d23;
  left: 0%;
  transform: translate(calc(-1 * var(--mg-left)), -50%);
}
.info .location::before {
  top: 50%;
  width: 20px;
  height: 5px;
}
.info .location::after {
  bottom: 0;
  width: 60px;
  height: 2px;
}
.info .description {
  --text-size-offset: 0.065;
  font-weight: 500;
}
.info.current--info {
  opacity: 1;
  display: block;
}
.info.previous--info,
.info.next--info {
  opacity: 0;
  display: none;
}

.loading__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 200;
}
.loading__wrapper img {
  display: block;
}
.loading__wrapper .loader--text {
  color: #fff;
  text-align: center;
  font-family: "Montserrat";
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.loading__wrapper .loader {
  position: relative;
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}
.loading__wrapper .loader span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: red;
  transform: scaleX(0);
  transform-origin: left;
}
/* fliping box css */
/* .flip-box {
  display: flex;
  width: 20%;
  perspective: 1000px;
} */
.flip-box {
  background-color: transparent;
  width: 200px;
  float: left;
  height: 200px;
  border: 1px;
  display: inline-block;
  perspective: 1000px;
}
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  color: white;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-box-back {
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #012550;
  border-radius: 20px;
}
/* contact form css */
input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type="submit"] {
  background-color: #04aa6d;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* griding css */
.dual-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.grid.image-grid img {
  width: 100%;
  border-radius: 10px;
  border-style: groove;
}
.grid {
  width: 50%;
  padding: 20px;
  float: left;
}
.grid h3::before,
.grid h3::after {
  display: inline-block;
  content: "";
  border-top: 1px solid white;
  width: 1rem;
  margin: 0px 8px;
  transform: translateY(-0.25rem);
}
.inner-grid-title h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.inner-grid-title h2::before,
.inner-grid-title h2::after {
  display: inline-block;
  content: "";
  border-top: 1px solid white;
  width: 1rem;
  margin: 0px 8px;
  transform: translateY(-0.25rem);
}

.grid.content-grid p {
  margin: 10px 0;
}
.content-grid ul li {
  margin: 20px 0;
  display: flex;
  align-items: center;
}
.full-grid.form-grid {
  padding: 20px;
  width: 100%;
  float: left;
}

.full-grid.form-grid h3::before,
.full-grid.form-grid h3::after {
  display: inline-block;
  content: "";
  border-top: 1px solid white;
  width: 1rem;
  margin: 0px 8px;
  transform: translateY(-0.25rem);
}

.content-grid ul li i {
  color: #fff;
  font-size: 25px;
  margin: 0 14px 0 0;
}
.content-grid ul li a {
  color: #fff;
  text-decoration: none;
}
.dual-grid.contact-dual-grid {
  display: block;
}

.dual-grid.contact-dual-grid .grid {
  width: 50%;
  float: left;
}
ul.social-icons li {
  display: inline-block;
  margin: 0 !important;
}
ul.social-icons li i {
  font-size: 18px;
}
.col-12.total-values-section h4 {
  margin: 10px 0;
  border-bottom: 1px dashed #eeeeee57;
}
.col-12.total-values-section .value {
  float: right;
}
input.form-btn {
  background: #04aa6d;
  border: #04aa6d;
  color: #fff;
  cursor: pointer;
}
.col-12.text-end.form-action .btn {
  display: inline-block;
  width: auto;
}
form.calculation_form label {
  text-transform: capitalize;
}
/* modal css start here */
.Modal {
  border-radius: 25px;
  height: 75%;
  overflow-y: auto;
  padding: 25px;
  width: 50%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #053064;
  /* z-index: 9999; */
  z-index: 100;
  color: #fff;
}
.modal-title {
  text-transform: uppercase;
}
.modal-title h2::before,
.modal-title h2::after {
  display: inline-block;
  content: "";
  border-top: 1px solid white;
  width: 1rem;
  margin: 0px 8px;
  transform: translateY(-0.25rem);
}
/* width */
.Modal::-webkit-scrollbar {
  width: 0px;
}

/* Track */
.Modal::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.Modal::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.Modal::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.Close img {
  width: 30px;
  height: 30px;
  margin: 5px 10px;
  cursor: pointer;
}
.Close {
  text-align: right;
}
.Modal h1 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
/* footer css */
.footer-section {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
}
.footer-section .row {
  display: flex;
  align-items: center;
}
.footer-section .col {
  width: 33.33%;
  float: left;
}
.footer-logo.col.col-left img {
  width: 90px;
}
.col.col-right li {
  color: #000;
}

.col.col-right li a {
  color: #052f64;
  margin: 0 5px;
}
@media only screen and (max-width: 1440px) and (min-width: 767px) {
  .Modal {
    width: 85%;
  }
  .col-3 {
    padding: 0 5px;
    width: 50%;
    float: left;
  }
}

@media only screen and (max-width: 767px) {
  .card.current--card {
    height: 400px;
    position: relative;
    top: 120px;
  }

  .app {
    overflow: hidden;
  }
  .mbl-btn {
    display: block;
    position: relative;
    top: 30%;
  }
  .cardList__btn.btn--left {
    left: 10%;
    width: auto;
  }
  .cardList__btn.btn--right {
    right: 10%;
    width: auto;
  }
  .Modal {
    border-radius: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .grid {
    width: 100%;
  }
  .full-grid.form-grid .col-3 {
    width: 100%;
  }
  .dual-grid.contact-dual-grid .grid {
    width: 100%;
  }
  .flip-box {
    width: 50%;
  }
  .iner-data {
    padding: 25px;
  }
  .footer-section .row {
    display: block;
  }
  .footer-section .col {
    width: 100% !important;
    margin: 10px 0;
    text-align: center;
  }
}
@media only screen and (min-width: 800px) {
  :root {
    --card-width: 250px;
    --card-height: 400px;
  }
}
