@keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}


.flipInY {
  animation-name: flipInY;
}

.slideInUp {
  animation-name: slideInUp;
}

.slideInDown {
  animation-name: slideInDown;
}

.slideInLeft {
  animation-name: slideInleft;
}

.slideInRight {
  animation-name: slideInRight;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeOut {
  animation-name: fadeIn;
  animation-direction: reverse;
}

.zoomIn {
  animation-name: zoomIn;
}

.zoomOut {
  animation-name: zoomIn;
  animation-direction: reverse;
}

.zoomReverseIn {
  animation-name: zoomReverseIn;
}

.zoomReverseOut {
  animation-name: zoomReverseIn;
  animation-direction: reverse;
}

.flipInY {
  animation-name: flipInY;
}

.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}

[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}



.clip {
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 100% 100%, 25% 100%, 0% 60%, 10% 20%);
  background-image: linear-gradient(to right top, #112d46, #0b3763, #19407f, #37469a, #5c49b1, #6643ab, #6f3da4, #76369d, #602b7e, #4a2160, #351744, #210d2a);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  opacity: .5;
}

.page-title {
  color: white;
}



.main {
  background-color: #2C3444;
}

.title-wrapper {
  justify-content: center;
  text-align: center;
  font-size: 28px;
  color: white;
  border-top: 1px solid #606060;
  border-bottom: 1px solid #606060;
  padding: 15px 0 20px 0;
  font-weight: 700;
  /* font-family: Quicksand; */
  line-height: 35px;
  display: flex;
}


.platform-card-title {
  font-size: 25px;
  font-weight: bolder;
  text-align: center;
}

.hero-text {
  font-size: 17px;
}

.csb-2 {
  display: flex;
  flex-direction: row-reverse;
  padding: 1em 0 1em 0;
  gap: 50px;
  align-items: center;
}

.csb-2>img {
  width: 50%;
  min-width: 50%;
  border-radius: 8px;
}

.csb-text-wrapper-white {
  display: flex;
  gap: 25px;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  height: 315px;
  color: white !important;
}

.csb-title {
  font-size: 22px;
  font-weight: bold;
}

.csb-title-white {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.dashboard-svg {
  width: 80%;
}

.image-container {
  display: flex;
  justify-content: center;
  padding: 50px 0 50px 0;
}


/* First section */

.main-wrapper {
  z-index: 1;
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 50px;
  align-items: center;
  position: absolute;
}

.hero-image {
  max-width: 700px;
  width: 98%;
}

.left-block {
  z-index: 2;
  display: flex;
  width: 50%;
  height: 100%;
  padding-left: 10%;
  flex-direction: column;
  align-content: space-around;
  justify-content: space-evenly;
  color: white;
}

.right-block {
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}

.button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-section {
  min-height: 500px;
  background-color: #2C3444 !important;
  margin-top: 90px;
}

/* End first section */

/* Second section */

.evaluate-svg {
  display: flex;
  justify-content: center;
  padding: 1em 0 1em 0;
}

/* End of second section */

/* Third section */

.pf-card-wrapper {
  padding-bottom: 25px;
}

.diligence-wrapper {
  display: flex;
  color: white;
  justify-content: space-between;
  padding: 5px 15% 5px 15%;
}

.diligence-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 17px;
}

.diligence-a {
  background-color: #2d4d80;
}

.diligence-c {
  background-color: #e7aa51;
}

.diligence-b {
  background-color: rgb(82, 110, 148);
}

.diligence-na {
  background-color: #E4DCCF;
}

.dili-title {
  padding: 25px 15% 15px 15%;
  font-size: 25px;
  text-decoration: underline;
  color: white;
  font-weight: bold;
}

.dili-desc {
  padding: 0px 15% 25px 15%;
  color: white;
}

.section-map {
  padding: 0px 15% 25px 15%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platform-card-wrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 15px;
  align-items: center;
  gap: 25px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.image-card {
  max-width: 330px;
  border-radius: 8px;
  width: 100%;
}

/* End of Third section */

/* 4st section */

.csb-1 {
  display: flex;
  flex-direction: row;
  padding: 1em 0 1em 0;
  gap: 50px;
  align-items: center;
  color: black;
}

.csb-1>img {
  width: 50%;
  min-width: 50%;
}

.assets-card {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
  width: 80vw;
}

.assets-card-left {
  background-color: #2C3444;
}


.assets-card-right {
  flex-direction: row-reverse;
  background-color: none;
  color: black;
}

.assets-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 15px 0 15px;
}

.assets-title {
  font-size: 20px;
  font-weight: bold;
}

.assets-card>img {
  width: 75px;
  height: 75px;
}

.details-card {
  padding: 50px 0 50px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

/* end of 4st section */

/* Mobile */
@media (max-width: 991px) and (max-width: 1075px) {

  .section-map {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .right-block {
    width: 100%;
    align-items: center;
  }

  .dashboard-svg {
    width: 100%;
  }

  .csb-2 {
    padding: 15px;
    flex-direction: column;
  }

  .csb-2>img {
    width: 100%;
  }

  .csb-text-wrapper {
    height: 100%;
  }

  .csb-1 {
    padding: 15px;
    flex-direction: column;
  }

  .csb-1>img {
    width: 100%;
  }

  .image-card {
    width: 100%;
  }


  .platform-card-wrapper {
    width: 95%;
  }

  .pf-card-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero-section {
    margin-top: 50px;
  }

  .main-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
  }

  .left-block {
    padding: 0;
    width: 95%;
  }

  .hero-image {
    height: 100%;
    width: 100%;
    z-index: 2222;
    padding-bottom: 50px;
  }

  .evaluate-svg>img {
    width: 100%;
  }

  .csb-text-wrapper-white{
    height: 100%;
  }
}