@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

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

/* body {
  font-family: "Lato", sans-serif;
  height: 100vh;
} */

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.left-slide {
  height: 100%;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}

.left-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.left-slide h1 {
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: -30px;
}

.right-slide {
  height: 100%;
  position: absolute;
  top: 0;
  left: 35%;
  width: 65%;
  transition: transform 0.5s ease-in-out;
}

.right-slide > div {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 100%;
  width: 100%;
}

button {
  background-color: #fff;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
  padding: 15px;
}

button:hover {
  color: #222;
}

button:focus {
  outline: none;
}

.slider-container .action-buttons button {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}

@media screen and (max-width: 576px) {
  .action-buttons button {
    left: 10% !important;
  }
}

.slider-container .action-buttons .down-button {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.slider-container .action-buttons .up-button {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
/* ////////////////////////////////////////// CERTIFICATIONS ////////////////////// */
.slides-certificate {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 50px;
  padding: 0px 20px;
  transition: all 1s;
  /* transform: translateX(20%); */
}

.certificate-image {
  width: 350px !important;
  height: 300px !important;
  transition: all 1s;
}

@media screen and (max-width: 400px) {
  .certificate-image {
    width: 100% !important;
    height: 200px !important;
  }
  .active-certificate {
    margin: 0px 50px !important;
  }

  .slides-certificate {
    transform: translateX(0);
  }
}
.active-certificate {
  transform: scale(1.4) !important;
  margin: 0px 100px;
}

/* /////////////////////// ARROWS //////////////// */
.slider-arrow-certificate {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-arrow-certificate .arrowIcons {
  width: 50px;
  height: 50px;
  border-radius: 10%;
  background-color: rgb(66, 58, 58);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
