/* carousel */
.slider {
  margin-top: -90px;
  position: relative;
  overflow: hidden;
  height: calc(100vh + 30px);
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  position: absolute;
  bottom: 70px;
  left: -585px;
  width: 600px;
  color: white;
  padding: 25px;
  background-image: linear-gradient(
    to right,
    rgba(39, 39, 39, 0.582),
    rgba(39, 39, 39, 0.411)
  );
  box-shadow: inset 0 0 40px rgba(90, 90, 90, 0.5);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
}
.slide .content {
  z-index: 4;
}

.slide .content h1 {
  margin-bottom: 9px;
  color: var(--theme-color);
  font-size: 35px;
}

.slide .current a {
  font-size: 15px;
  font-weight: 500;
  font-style: inherit !important;
}

.slide .content p,
.slide .current a {
  font-size: 15px;
  font-weight: 500;
  font-style: inherit !important;
}

.slide.current .content {
  opacity: 1;
  transform: translateX(600px);
  transition: all 0.7s ease-in-out 0.3s;
}

.buttons button#next {
  position: absolute;
  top: 40%;
  right: 15px;
}

.buttons button#prev {
  position: absolute;
  top: 40%;
  left: 15px;
}

.buttons button {
  border: 2px solid var(--theme-color);
  color: #333;
  background-color: var(--theme-color);
  cursor: pointer;
  padding: 13px 15px;
  border-radius: 50%;
  outline: none;
}

.buttons button:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.slide.current .btn {
  background-color: var(--theme-color);
  color: white;
}

.slide.current .btn:hover {
  color: var(--theme-color) !important;
  background-color: white !important;
  cursor: pointer;
}

@media (max-width: 500px) {
  .slide .content {
    bottom: -280px;
    left: 0;
    width: 90%;
    right: 0;
    margin: auto;
  }

  .slide.current .content {
    transform: translateY(-300px);
  }
}

/* Backgorund Images */

.slide:first-child {
  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("../images/MainSotmTheme.png") no-repeat center top/cover;
}

.slide:nth-child(2) {
  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("../images/SotmStartup.png") no-repeat center top/cover;
}

.slide:nth-child(3) {
  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("../images/internship.png") no-repeat center center/cover;
}

/* ABOUT US SECTION STARTED */
.About-Us {
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-about-content {
  padding-top: 20px;
  align-items: center;
  justify-content: left;
  float: left;
  color: white;
}

.heading-about {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 65px;
  text-align: center;
  margin: auto;
  text-decoration: underline;
  color: var(--theme-color);
}

@media screen and (max-width: 1700px) {
  .heading-about span {
    font-size: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .heading-about span {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px !important;
  }
  .about-content {
    text-align: center;
  }
}

.about-content {
  font-family: "Roboto", sans-serif;
  font-weight: 550;
  font-size: 18px;
}

h2 {
  margin: 5%;
  text-align: center;
  font-size: 2rem;
  font-weight: 100;
}

.timeline {
  display: flex;
  flex-direction: column;
  margin: 5% auto;
  margin-top: 120px;
}

.timeline__event {
  background-image: linear-gradient(
    to right,
    var(--clr-bg-light-50),
    rgba(39, 39, 39, 0.411)
  );
  box-shadow: inset 0 0 40px rgba(90, 90, 90, 0.5);
  margin-bottom: 10px;
  position: relative;
  border-radius: 8px;
}

.timeline__event__content {
  margin-bottom: -5px !important;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.timeline__event__content button {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: var(--theme-color);
  font-weight: bold !important;
  font-size: 20px;
}

.timeline__event__title {
  font-family: "roboto", sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  /* text-transform: uppercase; */
  font-weight: 600;
  color: var(--theme-color);
  letter-spacing: 1.5px;
}

.timeline__event__description {
  display: none;
}

.timeline__event__description.active {
  display: block;
  padding: 10px;
  color: #fff;
}

.timeline__event--type3 .timeline__event__title {
  color: var(--theme-color);
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
  }

  .timeline__event__icon {
    border-radius: 4px 4px 0 0;
  }
}

@media (max-width: 576px) {
  .timeline {
    margin-top: 2rem;
  }
}
/* ABOUT US SECTION ENDED */

/* internships Section
--------------------------------*/
#internships {
  padding: 60px 0;
}

#internships .section-header {
  margin-bottom: 40px;
}

#internships .testimonial-item {
  text-align: center;
}

#internships .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#internships .testimonial-item h2 {
  font-size: 24px;
  margin: 10px 0 5px 0;
  color: rgb(255, 255, 255);
}

#internships .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#internships .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#internships .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#internships .testimonial-item p {
  font-style: italic;
  max-width: 80ch;
  margin: 0 auto 15px auto;
}

#internships .testimonial-item a {
  text-decoration: none;
  margin: 10px;
  padding: 5px 1em;
  background-color: var(--theme-color);
  border-radius: 0.5em;
  color: white;
  font-weight: 600;
}

@media (min-width: 992px) {
  #internships .testimonial-item p {
    width: 80%;
  }
}

#internships .owl-nav,
#internships .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#internships .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#internships .owl-dot.active {
  background-color: var(--theme-color);
}

/* TESTIMONIAL ENDED */

/* faq */
.faqs {
  padding: 0.5em 5vw;
  margin-bottom: 4em;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#faq-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 45px;
  color: var(--theme-color);
}

.faq-holder {
  display: flex;
  margin-top: 1rem;
  flex-direction: column;
  gap: 0.5em;
  padding: 0 !important;
}

.faq {
  background: var(--clr-bg-light);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(15px);
  padding: 1em 1em 0.5em;
  border-radius: 1rem;
}

.faq ul.question {
  display: flex;
  flex-direction: row;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
  color: var(--theme-color);
  font-size: 1.2rem !important;
}

.faq ul.question button {
  margin-top: -7px;
  cursor: pointer;
  font-size: 1.2rem;
  border: none;
  font-weight: 600;
  outline: none;
  background-color: inherit;
  color: var(--theme-color);
}

.faq p {
  display: none;
  color: var(--clr-text-light);
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  font-style: inherit;
  font-size: 18px;
}

.faq .active {
  display: block;
  margin-top: 0.5em;
}

.faq.active {
  background: var(--clr-bg-light-50);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(15px);
}

/* owl-carousel */

.section-header h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--theme-color);
}

@media screen and (min-width: 600px) {
  .section-header h1 {
    font-size: 45px;
  }
}

.owl-carousel .owl-item img {
  height: 150px;
  width: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
