*, *::after, *::before {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
}





.wrapper {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
}

.course__carusel {
  width: 80%;
  margin: 50px auto 100px;
  display: flex;
  align-items: center;
  position: relative;
  height: 550px;
  overflow: hidden;
  border-radius: 20px;
}
.course__carusel-button-container {
  bottom: 0;
  width: 100%;
  padding: 20px;
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.course__carusel-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
/* .course__carusel-button:hover {
  opacity: 0.7;
} */
.course__carusel-button img {
  width: 30px;
}
.course__carusel-block {
  width: 300%;
  height: 100%;
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: -100%;
}
.course__carusel-container {
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 0 20px;
}

.vr {
  background-image: linear-gradient(#fbeced, #fef9e6 );
  padding: 50px 0;
}


.image__card {
  width: 400px;
  height: 400px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  margin-top: 20px;
}
.content__card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.links__card{
  display: flex;
  justify-content: center;
  gap: 40px;
}
.title__card{
  padding-bottom: 20px;
}
.links__card a {
  padding: 5px 15px;
  border-radius: 5px;
  background-color: black;
  color: white;
  width: 150px;
  text-align: center;
}
.links__card a:hover {
  color: white;
  background-color: rgb(152, 152, 152);
}

.text-h2-ept { 
  text-align: center;
  font-size: 50px !important;
  font-weight: 500 !important;
  font-family: Oswald, sans-serif !important;
  color: #425465 !important;
}

.checkbox{
  width: 20px;
  height: 20px;
}
.checbox_box {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.box_for_from{
  padding-bottom: 20px;
}


  @media screen and (max-width: 1000px) {
    .content__card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding-bottom: 50px;
    }



    .text__card-container{
      text-align: center;
      padding: 40px;
      overflow-y: scroll;
      height: 400px;
    }
    .course__carusel{
      height: 1000px;
    }
  }

  @media screen and (max-width: 660px) {
    .image__card{
      width: 60vw;
      height: 60vw;
    }
    .links__card{
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  }