.container {
  margin-bottom: 70px;
}
.title-offer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
  margin-top: 100px;
}
.title-offer h1 {
  font-weight: bold;
}
.title-offer p {
  color: rgb(131, 131, 131);
}

/*! Course */
.options-course {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
}
.title {
  background-color: rgb(255, 180, 166, 0.2);
  border-radius: 10px;
  transition: box-shadow 0.3s;
  padding: 0 15px;
}
.title h3 {
  display: flex;
  justify-content: center;
  font-weight: bold;
  margin: 15px 0;
}
.title:hover {
  box-shadow: 2px 2px 10px rgb(139, 139, 139, 0.5);
}

/*! Campus */
.options-campus,
.options-facilities {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
}
.options-campus .states {
  height: 570px;
  position: relative;
  overflow: hidden;
}
.options-campus .states img,
.options-facilities .activity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.options-campus .state-1:hover::before {
  content: "London";
}
.options-campus .state-2:hover::before {
  content: "New York";
}
.options-campus .state-3:hover::before {
  content: "Washington";
}
.options-campus .state-1::before,
.options-campus .state-2::before,
.options-campus .state-3::before {
  content: "";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 0, 0, 0.5);
  border-radius: 10px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  transform: translateY(100%);
}
.options-campus .state-1:hover::before,
.options-campus .state-2:hover::before,
.options-campus .state-3:hover::before {
  transform: translateY(0);
}

/*! Facilities */
.options-facilities .activity {
  height: 500px;
  position: relative;
  overflow: hidden;
}
.options-facilities .activity .activity-img {
  height: 75%;
}
.options-facilities .activity .content-activity {
  height: 25%;
}
.options-facilities .activity .content-activity h1 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
}
.options-facilities .activity .content-activity p {
  color: rgb(131, 131, 131);
}

/*! Option-Student */
.options-student {
  display: flex;
  justify-content: space-between;
}
.options-student .student {
  width: 48%;
  height: 230px;
  border-radius: 20px;
  background-color: rgb(255, 180, 166, 0.2);
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.options-student .student .student-img {
  width: 15%;
  display: flex;
  justify-content: center;
}
.student .student-img .img {
  width: 50px;
  height: 50px;
}
.student .student-img .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.options-student .student .review-student {
  width: 85%;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.student .review-student p {
  color: #808080;
}
.student .review-student .star-review .fa-solid {
  color: orange;
}
.student .review-student .star-review .fa-regular {
  color: #808080;
}

/*! Enroll */
.enroll {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  background-image: url("img/banner2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.enroll .background {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.595);
  position: absolute;
  border-radius: 30px;
}
.enroll h1 {
  color: #fff;
  text-align: center;
  position: absolute;
}

/*! visit-us */
.enroll .visit-us {
  margin-top: 40px;
  border: 1px solid white;
  padding: 10px 35px;
  position: relative;
  position: absolute;
  bottom: 40px;
  color: #fff;
}
.enroll .visit-us .right {
    position: absolute;
    top: 50%;
    left: -15px;
    border: 2px solid #fff;
    width: 30px;
}
.enroll .visit-us .left {
    position: absolute;
    top: 50%;
    right: -15px;
    border: 2px solid #fff;
    width: 30px;
}
.enroll .visit-us:hover {
    background-color: #d62f1c;
}
.enroll .visit-us:hover .right,
.enroll .visit-us:hover .left {
    border: 2px solid orange;
}

.enroll .visit-us {
    transition: backgroud-color 0.5s linear;
}
.enroll .visit-us .right,
.enroll .visit-us .left {
    transition: border 0.3s ease-in;
}
