@font-face {
  font-family: "Outfit";
  font-weight: 300;
  src: url("./fonts/Outfit-Light.ttf");
}
@font-face {
  font-family: "Outfit";
  font-weight: 400;
  src: url("./fonts/Outfit-Regular.ttf");
}
@font-face {
  font-family: "Outfit";
  font-weight: 500;
  src: url("./fonts/Outfit-Medium.ttf");
}
@font-face {
  font-family: "Outfit";
  font-weight: 600;
  src: url("./fonts/Outfit-SemiBold.ttf");
}
@font-face {
  font-family: "Outfit";
  font-weight: 700;
  src: url("./fonts/Outfit-Bold.ttf");
}
@font-face {
  font-family: "Outfit";
  font-weight: 800;
  src: url("./fonts/Outfit-ExtraBold.ttf");
}
@font-face {
  font-family: "Outfit";
  font-weight: 900;
  src: url("./fonts/Outfit-Black.ttf");
}

body {
  font-family: Montserrat, sans-serif;
}

.font-outfit {
  font-family: Outfit, sans-serif;
}

.box-clip {
  clip-path: polygon(95% 0%, 100% 20%, 100% 100%, 0 100%, 0 0);
}

@keyframes slide-reveal {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rollFromRight {
  from {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.swiperProductThumb .swiper-slide-thumb-active {
  background-color: #005296;
}
.swiperProductThumb .swiper-slide-thumb-active .active-index {
  color: white;
}
.swiperProductThumb .swiper-slide-thumb-active .active-title {
  color: white;
}

.swiperProduct .swiper-slide-active .slide-logo {
  animation: slide-reveal 0.5s forwards;
}

.swiperProduct .swiper-slide-active .slide-title {
  animation: slide-reveal 0.5s forwards;
  animation-delay: 0.2s;
}
.swiperProduct .swiper-slide-active .slide-desc {
  animation: slide-reveal 0.5s forwards;
  animation-delay: 0.4s;
}
.swiperProduct .swiper-slide-active .slide-button {
  animation: slide-reveal 0.5s forwards;
  animation-delay: 0.6s;
}

.swiperProduct .slide-image {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.swiperProduct .swiper-slide-active .slide-image {
  animation: rollFromRight 0.8s forwards;
  animation-delay: 0.6s;
}

.card {
  border-radius: 20px;
  background: #003867;
  padding: 5px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
  transform: scale(1.05);
}

.card .top-section {
  aspect-ratio: 1/1;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    45deg,
    rgba(0, 56, 103, 0.7) 0%,
    rgba(0, 56, 103, 1) 100%
  );
  position: relative;
}

.card .top-section .card-border {
  border-bottom-right-radius: 10px;
  height: 30px;
  width: 50%;
  background: white;
  background: #003867;
  position: relative;
  transform: skew(-40deg);
  box-shadow: -10px -10px 0 0 #003867;
}

.card .top-section .card-border::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  right: -15px;
  background: rgba(255, 255, 255, 0);
  border-top-left-radius: 10px;
  box-shadow: -5px -5px 0 2px #003867;
}

.card .top-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  background: rgba(255, 255, 255, 0);
  height: 15px;
  width: 15px;
  border-top-left-radius: 15px;
  box-shadow: -5px -5px 0 2px #003867;
}

.card .top-section .icons {
  position: absolute;
  top: -2px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
}

.card .top-section .icons .logo {
  height: 100%;
  padding: 7px 0 7px 15px;
}

.card .top-section .icons .logo .top-section {
  height: 100%;
}

.card .bottom-section {
  margin-top: 15px;
  padding: 10px 5px;
}

.card .bottom-section .title {
  display: block;
  font-size: 17px;
  font-weight: bolder;
  color: white;
  text-align: center;
  letter-spacing: 2px;
}
