* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --grey: #f0f0f0;
  --sky: rgb(16 182 220);
  --red: rgb(240 83 78);
  --sky-bg: #eaf0f5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.h6 {
  color: #646464;
}
p {
  margin-bottom: 0 !important;
}
a {
  text-decoration: none !important;
}
img {
  width: 100%;
}
section {
  padding: 70px 0;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  section {
    padding: 40px 0 !important;
    overflow: hidden !important;
  }
}

.button {
  width: 110px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: var(--sky);
  border-radius: 30px;
  color: rgb(19, 19, 19);
  font-weight: 600;
  border: none;
  position: relative;
  cursor: pointer;
  transition-duration: 0.2s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  padding-left: 8px;
  transition-duration: 0.5s;
}

.svgIcon {
  height: 25px;
  transition-duration: 1.5s;
}

.bell path {
  fill: rgb(19, 19, 19);
}

.button:hover {
  background-color: var(--red);
  transition-duration: 0.5s;
}

.button:active {
  transform: scale(0.97);
  transition-duration: 0.2s;
}

.button:hover .svgIcon {
  transform: rotate(250deg);
  transition-duration: 1.5s;
}

.common-heading h5 {
  font-size: 22px;
  color: #7e7e7e;
  font-family: "PT Serif", sans-serif;
  font-style: italic;
  line-height: 21px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  font-family: "PT Serif", serif;
  text-transform: capitalize;
}

.common-heading h2 {
  font-family: "Raleway", sans-serif;
  color: #282828;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 22px;
  font-weight: 800;
  display: block;
  /* margin-top: 14px; */
  position: relative;
}
.common-heading h2::before {
  content: " ";
  background: #ffae00;
  position: absolute;
  height: 2px;
  width: 85px;
  display: inline-block;
  bottom: -5px;
}
.common-h2 {
  font-family: "Raleway", sans-serif;
  color: #2b2b2b;
  font-size: 21px;
  text-transform: uppercase;
  line-height: 22px;
  font-weight: 800;
  display: block;
  /* margin-top: 14px; */
  position: relative;
}
.section-mb {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .mb-element {
    margin-bottom: 20px;
  }
}

/* navbar ///////////////////////////////////////////////////////////////////////////////////////////////////// */
.navbar-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.fixed-top {
  background: #02bdd6 !important;
  position: fixed;
  top: 0;
  animation: nav-animation 0.4s ease-in-out;
}

@keyframes nav-animation {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.navbar-brand img {
  width: 120px;
}

.navbar-nav {
  margin-left: auto;
  gap: 10px;
  margin-right: 0 !important;
}
/* .nav-item {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
} */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.navbar-nav .dropdown-menu {
  transition: all 0.3s ease;
}

.navbar .navbar-nav {
  margin-left: auto;
  gap: 10px;
  margin-right: 0 !important;
  /* background-color: red; */
  /* padding: 15px 0; */
}
.navbar-light .navbar-nav .nav-link {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--sky) !important;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: black !important;
}
.navbar-light .navbar-toggler {
  color: rgb(0 0 0 / 0%) !important;
  border-color: rgba(0, 0, 0, 0) !important;
}

/* banner //////////////////////////////////////////////////////////////////////////////////////////// */

.carousel-indicators {
  bottom: 14%;
}
.carousel-indicators li {
  display: inline-block;
  text-indent: 0;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: #666;
  box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.carousel-indicators .active {
  background-color: #fff;
}
/*
inspired from https://codepen.io/Rowno/pen/Afykb 
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}
/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-caption {
  font-family: "Open Sans", sans-serif;
  font-size: 2em;
  font-weight: 300;
  width: 100%;
  position: absolute;
  bottom: -12px;
  left: -30%;
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px #000000;
  animation-delay: 1.5s;
  animation-duration: 1.5s;
}
.btn-teo-caption {
  width: 155px;
  border-radius: 500px !important;
  border: 3px solid #106470;
  margin-top: 6px;
  margin-right: 21%;
  background-color: #106470;
  font-weight: bold;
  color: white;
}
.btn-teo-caption:hover {
  background-color: white;
  color: #106470;
  border: 3px solid #106470;
  transition-property: ease 1s;
}
#caption1-button {
  font-family: "Open Sans", sans-serif;
  font-size: 2em;
  font-weight: 300;
  position: absolute;
  bottom: -10px;
  left: 40%;
  color: black;
  text-decoration: none;
}

/* sliderrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.main {
  height: 95vh;
  width: 100%;
  position: relative;
  /* top: 85px; */
  cursor: pointer;
}
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide {
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.247), rgba(0, 0, 0, 0));
  z-index: 2;
}
.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slide .image-data {
  position: absolute;
  top: 40%;
  /* left: 10%; */
  /* text-align: center; */
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.image-data span.text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.image-data h2 {
  font-size: 85px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 3px;
  /* -webkit-text-stroke: 2px rgb(255, 255, 255); */
  text-align: center;
}
.swiper-button-next {
  right: 50px;
  top: 55% !important;
}
.swiper-button-prev {
  left: 50px;
  top: 55% !important;
}
.nav-btn::before,
.nav-btn::after {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}
.banner-button {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}
@media screen and (max-width: 602px) {
  .image-data h2 {
    font-size: 55px;
    font-weight: 800;
  }
}
@media screen and (max-width: 360px) {
  .image-data h2 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
  }
  .slide .image-data {
    left: 5%;
  }
  .main {
    height: 70vh;
  }
}

/* .below-info /////////////////////////////////////////////////////////////////////////////////// */
.below-info {
  background-color: var(--sky-bg);
}

/* home about /////////////////////////////////////////////////////////////////////////////////// */

.home-about .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-about .image::before {
  content: "";
  position: absolute;
  width: 97%;
  height: 95%;
  border: 3px solid rgb(243, 243, 243);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #df656500;
}
.home-about .home-about-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-about .home-about-wrapper .card {
  transform: translate(-80px);
  padding: 35px;
  background-color: var(--grey);
  border: none;
  border-radius: 0;
  position: relative;
}
.home-about .home-about-wrapper .mobile-card {
  transform: translate(80px);
  z-index: 2;
}
.home-about .home-about-wrapper .card::after {
  content: "";
  position: relative;
  content: "";
  position: absolute;
  width: 97%;
  height: 95%;
  border: 3px solid rgba(0, 255, 255, 0.24);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #df656500;
}
@media only screen and (max-width: 991px) {
  .home-about .home-about-wrapper .card {
    transform: translate(0px);
  }
  .home-about .home-about-wrapper .mobile-card {
    transform: translate(0px);
  }
}

#footer {
  background: #1f2225;
  padding: 50px 0;
  /* padding-top: 5rem; */
  /* padding-top: 7rem; */
  /* padding-bottom: 40px; */
  /* background-image: url(https://arena.km.ua/wp-content/uploads/3538533.jpg); */
}
#footer .common-h2 {
  color: white;
}
#footer2 {
  background: #f7f7f7;
  padding: 3rem;
  margin-top: 0px;
  /* padding-top: 5rem; */
  padding-top: 7rem;
  padding-bottom: 80px;
  background-image: url(../images/cards/v748-toon-111.png);
}
.logo-footer {
  max-width: 200px;
}
.social-links {
  /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
}
/* .social-links h2 {
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
} */
.social-links img {
  padding-bottom: 25px;
}
.social-icons {
  /* display: flex;
    gap: 3rem; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #777777;
}
.social-icons a {
  /* font-size: 18px; */
  /* background: #ffffff; */
  /* box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
  color: #82074a; */
  /* margin-right: 18px; */
  color: #ffffff;
}
.social-icons a:hover {
  color: #8f8f8f;
}
.social-icons a i {
  box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
  padding: 0.4rem 1rem 0.4rem 1rem;
  border-radius: 3px;
  color: var(--sky);
  font-size: 16px;
  margin-right: 12px;
}
li {
  list-style: none;
}
/* .useful-link h2 {
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
} */
.useful-link img {
  padding-bottom: 15px;
}
.use-links {
  line-height: 32px;
}
.use-links li i {
  font-size: 14px;
  padding-right: 8px;
  color: #898989;
}
.use-links li a {
  /* color: #303030; */
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}
.use-links li a:hover {
  color: #5e5e5e;
}
/* .address h2 {
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
} */
.address img {
  padding-bottom: 15px;
}
.address-links li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
.footer-about p {
  color: rgb(221, 221, 221);
}
.address-links li i {
  font-size: 16px;
  padding-right: 8px;
  color: var(--sky);
}
.address-links li i:nth-child(1) {
  padding-top: 9px;
}
.address-links .address1 {
  font-weight: 500;
  font-size: 15px;
  display: flex;
  color: white;
}
.address-links {
  line-height: 32px;
  color: #777777;
}
.copy-right-sec {
  padding: 1.8rem;
  background: #82074a;
  color: #fff;
  text-align: center;
}
.copy-right-sec a {
  color: #fcd462;
  font-weight: 500;
}
a {
  text-decoration: none;
}

/* footer section end */

.banner {
  width: 100%;
  height: 90vh;
  background-color: rgba(255, 0, 0, 0);
  position: relative;
}

#myVideo {
  position: relative;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.banner .content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.945),
    rgba(255, 255, 255, 0.041)
  );
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
  height: 90vh;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}
.banner h2 {
  font-size: 68px;
  color: white;
}
@media only screen and (max-width: 860px) {
  .banner h2 {
    font-size: 48px;
    color: white;
  }
}

/* form //////////////////////////////////////////////////////////////////////// */

.home-form [type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc00;
  border-radius: 0px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc00;
  border-radius: 0px;
  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;
}

/* .home-form //////////////////////////////////////////////////////////////////////////////// */
.home-form {
  background-color: var(--grey);
}
.home-form .info-form a p {
  color: #3b3b3b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px !important;
}

/* .testimonial //////////////////////////////////////////////////////////////////////////////// */

.testimonials-container {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(..//images/backgrounds/testimonial-bg.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.testimonials-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #050505b2;
}

.testimonials-container .common-heading {
  position: relative;
  z-index: 2;
}
.testimonials-container .common-heading h5 {
  color: var(--red);
}
.testimonials-container .common-heading h2 {
  color: white;
}

.testimonials-container .testimonial {
  height: 50vh;
  width: 80vw;
  margin: 2rem;
  padding: 45px 20px 20px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid var(--sky);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  animation: fade 2s;
  position: relative;
  z-index: 2;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.testimonials-container .testimonial img {
  height: 2rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.testimonials-container .testimonial p {
  overflow: auto;
  font-style: oblique;
  font-size: 19px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  color: white;
}

.testimonials-container p span {
  font-size: 17px;
  font-style: normal;
}

.testimonials-container .numbertext {
  font-size: 15px;
  opacity: 0.7;
  margin-top: 1.5rem;
}

.prev,
.next {
  display: inline-block;
  background: #fff;
  box-shadow: 0 2px 4px 1px rgba(50, 50, 93, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  padding: 0.5rem;
  margin: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
  color: var(--sky);
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.prev:hover,
.next:hover {
  cursor: pointer;
  transform: translateY(-4px);
}

/* .breadcrumb ///////////////////////////////////////////////////////////////////////////////// */
.breadcrumbs {
  width: 100%;
  height: 50vh;
  background-image: url(..//images/backgrounds/breadcrumb-bg.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 40px 0;
}
.breadcrumbs::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a4;
}
.breadcrumbs .container {
  position: relative;
  z-index: 2;
}
.breadcrumbs .breadcrumb {
  background-color: #fff;
  width: 172px;
  padding: 7px 15px;
}
.bread-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.bread-heading h2 {
  font-size: 69px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}
.breadcrumb-item {
  font-size: 18px;
  font-weight: 500;
}

/* contact page ////////////////////////////////////////////////////////////////////////// */
.contact-page .contact-info-wrapper {
  background-color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 25px 0;
  /* border-radius: 20px; */
  flex-direction: column;
  border: 7px solid var(--sky);
}
.contact-page .contact-inner-wrapper {
  background-color: #fff;
  display: block;
  position: relative;
}
.contact-page .contact-inner-wrapper::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 20px;
  width: 25px;
  height: 25px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.contact-page .info-wrapper {
  display: flex;
  gap: 20px;
  margin: 20px 0 25px 0;
  /* background-color: #fff; */
  padding: 0 42px;
}
.contact-page .info-wrapper .icon {
  padding: 15px;
  background-color: #f0f6fd;
  border-radius: 50px;
}
.contact-page .info-wrapper .icon img {
  width: 34px;
}
.contact-page .info-wrapper .info-text h5 {
  font-size: 16px;
  color: #8a8a8a;
}
.contact-page .info-wrapper .info-text p {
  font-size: 18px;
  color: #132742;
  line-height: 1.2em;
  font-weight: 600;
}
.contact-page .contact-info-wrapper h6 {
  font-size: 18px;
  color: #132742;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
}
.contact-page .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.contact-page .social-icon .icon img {
  width: 30px;
}
.contact-page .contact-form-wrapper form .input {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-page .contact-form-wrapper form .input input {
  background-color: rgb(233, 233, 233);
}
.contact-page .contact-form-wrapper form .input input:focus {
  outline: none;
}
.contact-page .contact-form-wrapper form .input textarea {
  background-color: rgb(233, 233, 233);
  height: 120px;
  outline: none;
}
@media only screen and (max-width: 672px) {
  .contact-page .contact-form-wrapper form .input {
    display: block;
    margin-bottom: 0px;
  }
  .contact-page .contact-form-wrapper form .input input {
    margin-bottom: 20px;
  }
}
/* gallery ////////////////////////////////////////////////////////////////////////////// */

.gal {
  font-family: Lato, sans-serif;
  margin: 0;
  padding: 70px 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(20, 20, 20, 1);
}

.gal img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1000ms;
}

.gal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  max-width: 100%;
  width: 70rem;
}

.gal figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gal figure::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
  transform-origin: center;
  opacity: 0;
  transform: scale(2);
  transition: opacity 300ms;
}

.gal figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: white;
  font-size: 1.2rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms, transform 600ms;
}

.gal a:is(:hover, :focus) figure::after {
  opacity: 1;
}

.gal a:is(:hover, :focus) figcaption {
  opacity: 1;
  transition: opacity 600ms;
}

@media (prefers-reduced-motion: no-preference) {
  .gal figcaption {
    transform: translate3d(0, 2rem, 0);
  }

  .gal figure::after {
    border-radius: 50%;
    opacity: 1;
    transform: scale(0);
    transition: transform 900ms;
  }

  .gal a:is(:hover, :focus) figure::after {
    transform: scale(2.5);
  }

  .gal a:is(:hover, :focus) figcaption {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 600ms 400ms, transform 600ms 400ms;
  }

  .gal a:is(:hover, :focus) img {
    transform: scale(1.2);
  }
}

/* amenities ////////////////////////////////////////////////////////////////////// */
.amenities {
  background-color: #fff;
}
.amenities .card {
  overflow: hidden;
  background-color: var(--sky);
  border: none;
}
.amenities .card .image {
  overflow: hidden;
  position: relative;
}
.amenities .card .image::after {
  position: absolute;
  content: "";
  bottom: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.616);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease;
}
.amenities .card .image:hover::after {
  transform: scale(1);
  width: 500px !important;
  height: 500px !important;
}
.amenities img {
  aspect-ratio: 1/1;
  object-fit: cover;
  position: relative;
  transition: all 0.3s ease;
  transform: scale(1);
}
.amenities .card h5 {
  margin-bottom: 0;
}
.amenities img:hover {
  transform: scale(1.1);
}
