/*variables*/
/*common attributes for all elements*/
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/*setting wrapper styles*/
.wrapper {
  font-family: "Rastin-Line";
  overflow-x: hidden;
  background: rgb(242, 255, 255);
  background: linear-gradient(90deg, rgb(242, 255, 255) 0%, rgb(177, 224, 249) 100%);
  /*header picture styles*/
  /*introduction sections styles*/
  /*majors and titles styles*/
  /*calendar styles*/
  /*clock styles*/
  /*back to top styles*/
}

.wrapper .header-picture {
  transform: translateY(-50px);
  animation: opacities 0.7s forwards;
  background-color: rgba(14, 30, 37, 0.12);
  box-shadow: rgba(14, 30, 37, 0.12) 0px 4px 5px 0px, rgba(14, 30, 37, 0.32) 0px 4px 25px 0px;
}

.wrapper .introduction-sections {
  /*section one,two, three & four styles*/
}

.wrapper .introduction-sections .section-one,
.wrapper .introduction-sections .section-two,
.wrapper .introduction-sections .section-three,
.wrapper .introduction-sections .section-four {
  transform: translateY(-50px);
  animation: opacities 0.7s forwards;
}

.wrapper .introduction-sections .section-one .text-and-image .text,
.wrapper .introduction-sections .section-two .text-and-image .text,
.wrapper .introduction-sections .section-three .text-and-image .text,
.wrapper .introduction-sections .section-four .text-and-image .text {
  height: auto;
  font-size: 18px;
}

.wrapper .introduction-sections .section-one .text-and-image .picture .carousel-inner,
.wrapper .introduction-sections .section-two .text-and-image .picture .carousel-inner,
.wrapper .introduction-sections .section-three .text-and-image .picture .carousel-inner,
.wrapper .introduction-sections .section-four .text-and-image .picture .carousel-inner {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 4px 5px 0px, rgba(14, 30, 37, 0.32) 0px 4px 25px 0px;
}

.wrapper .introduction-sections .section-one .text-and-image .picture .carousel-inner .carousel-item,
.wrapper .introduction-sections .section-two .text-and-image .picture .carousel-inner .carousel-item,
.wrapper .introduction-sections .section-three .text-and-image .picture .carousel-inner .carousel-item,
.wrapper .introduction-sections .section-four .text-and-image .picture .carousel-inner .carousel-item {
  background-color: #005B5C;
}

.wrapper .majors-and-title {
  width: 90%;
  transform: translateY(-50px);
  animation: opacities 0.7s forwards;
}

.wrapper .majors-and-title .majors {
  overflow-y: hidden;
}

.wrapper .majors-and-title .majors .major-one,
.wrapper .majors-and-title .majors .major-two,
.wrapper .majors-and-title .majors .major-three {
  width: 15rem;
  height: 15rem;
  background-color: #005B5C;
  gap: 0.7rem;
  transition: all 0.2s;
}

.wrapper .majors-and-title .majors .major-one span,
.wrapper .majors-and-title .majors .major-two span,
.wrapper .majors-and-title .majors .major-three span {
  color: #FFFFFF;
}

.wrapper .majors-and-title .majors .major-one:hover,
.wrapper .majors-and-title .majors .major-two:hover,
.wrapper .majors-and-title .majors .major-three:hover {
  width: 16rem;
  height: 16rem;
}

.wrapper .calendar .calendar-btn {
  position: fixed;
  bottom: 205px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 20px;
  z-index: 1000;
}

.wrapper .calendar .calendar-box {
  position: fixed;
  bottom: 213px;
  right: 105px;
  width: 200px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: none;
  text-align: center;
  z-index: 999;
}

.wrapper .calendar .calendar-box .date-display {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 5px;
}

.wrapper .clock #clockContainer {
  position: fixed;
  bottom: 110px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  z-index: 1000;
}

.wrapper .clock #clockContainer {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .clock #clockContainer .clickable {
  font-size: 20px;
}

.wrapper .clock #clockModal {
  position: fixed;
  bottom: 81px;
  right: 48px;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1001;
}

.wrapper .clock #clockModal #modalContent {
  text-align: center;
  height: 30px;
}

.wrapper .clock #clockModal #modalClock {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.wrapper .clock .hidden {
  display: none;
}

.wrapper .arrowtop-part {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .arrowtop-part .arrowtop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.wrapper .arrowtop-part .arrowtop img {
  background-color: #FFFFFF;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .arrowtop-part .arrowtop img:hover {
  opacity: 0.7;
}

/*making introduction responsive for 767px or less*/
@media screen and (max-width: 767px) {

  .wrapper .introduction-sections .section-one .text-and-image .text,
  .wrapper .introduction-sections .section-two .text-and-image .text,
  .wrapper .introduction-sections .section-three .text-and-image .text,
  .wrapper .introduction-sections .section-four .text-and-image .text {
    font-size: 16px;
  }
}

/*making introduction responsive for 576px or less*/
@media screen and (max-width: 576px) {

  .wrapper .introduction-sections .section-one .text-and-image .text,
  .wrapper .introduction-sections .section-two .text-and-image .text,
  .wrapper .introduction-sections .section-three .text-and-image .text,
  .wrapper .introduction-sections .section-four .text-and-image .text {
    font-size: 14px;
  }
}

/*opacity animation*/
@keyframes opacities {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=introduction-style.css.map */