@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");
@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&family=Prompt: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 {
  --primary-color: #0b6573;
  --text-color: #121d2d;
  --color-background: #fff;
}

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

body {
  font-family: "Poppins", "Prompt", sans-serif;
}
html {
  scroll-behavior: smooth;
  background-color: var(--color-background);
}
.banner-group:hover .free-text {
  color: #fff;
  transition-duration: 500ms;
}
.banner-group:hover .free-border {
  opacity: 100;
}
.primary-text {
  color: var(--primary-color);
}
.primary-background {
  background-color: var(--primary-color);
}
.white-background {
  background-color: var(--color-background);
}
.trapezoid {
  clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
}
.free-text {
  color: #0b6573;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
}
.b-text-sd {
  text-shadow: 0px 0px 15px #121d2d;
}
.card {
  position: relative;
}

.menu {
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}

.menu.active {
  transform: translateX(0);
}

.card::before {
  padding: 10px;
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  translate: 12px 10px;
  transition: all 0.4s ease-in-out;
  background-image: url("./assets/svg/border-l.svg");
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet-active {
  background-color: #0b6573 !important;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.5);
  color: #0b6573 !important;
  fill: #0b6573 !important;
  stroke: #0b6573 !important;
}

.card:hover::before {
  opacity: 1;
}

.svg-tl {
  position: absolute;
  top: 0;
  left: 0;
}
.svg-bl {
  position: absolute;
  bottom: 0;
  left: 0;
}
.svg-tr {
  position: absolute;
  top: 0;
  right: 0;
}
.svg-br {
  position: absolute;
  bottom: 0;
  right: 0;
}

.pricing-table ul li:nth-child(even) {
  background-color: #e8eef5;
}

.pricing-table ul li:nth-child(odd) {
  background-color: #ffffff;
}

.pricing-table-head {
  padding: 3%;
  background-color: #0b6573;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: white;
}

.pricing-data {
  color: black;
  font-size: 20px;
  font-weight: 600;
  padding: 2% 0%;
  padding-left: 5%;
}

.package-table-head {
  padding: 9%;
  background-color: #0b6573;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: white;
}

.B60PX700 {
  font-size: 60px;
  font-weight: 700px;
}

@keyframes fadeInOut {
  0% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Fully transparent */
  }
  100% {
    opacity: 1; /* Fully visible */
  }
}

.disappearing-text {
  animation: fadeInOut 2s infinite; /* 2s duration for fade in and out, infinite loop */
}

#redlineImage {
  animation: fadeInOut 1s infinite;
}

@keyframes colorBlink {
  0% {
    color: inherit;
  }
  50% {
    color: red;
  }
  100% {
    color: inherit;
  }
}

.blink-text {
  animation: colorBlink 3s infinite; /* 1s duration, infinite loop */
}

.swal-modal .swal-text {
  text-align: center;
}
