/* Extracted and scoped from evenzax/assets/css/main.css for HomeView experience section. */
.experience-section {
  --experience-theme: var(--eduvers-base, #f2a905);
  --experience-header: var(--eduvers-black, #000000);
  --experience-white: #ffffff;
  position: relative;
  z-index: 9;
  isolation: isolate;
  min-height: 560px;
}

.experience-section.fix {
  overflow: hidden;
}

.experience-section.bg-cover {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.experience-section.section-padding {
  padding: 120px 0;
}

.experience-section::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.25) 100%),
    rgba(0, 13, 68, 0.2);
  z-index: -2;
}

.experience-section .container {
  position: relative;
  z-index: 1;
}

.experience-section .experience-content {
  max-width: 650px;
  padding: 12px 0;
}

.experience-section .section-title {
  margin-bottom: 0;
}

.experience-section .section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--experience-theme);
  font-family: var(--eduvers-font-two, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.experience-section .section-title .sub-title .line-2 {
  width: 40px;
  height: 2px;
  display: inline-block;
  position: relative;
  background-color: var(--experience-theme);
}

.experience-section .section-title .sub-title .line-2::after {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 24px;
  height: 2px;
  content: "";
  background-color: var(--experience-white);
  opacity: 0.85;
}

.experience-section .section-title h2,
.experience-section .section-title .tx-title {
  max-width: 680px;
  margin: 0;
  color: var(--experience-white);
  font-family: var(--eduvers-font-two, "DM Sans", sans-serif);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: capitalize;
}

.experience-content .experience-text {
  max-width: 590px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.experience-content .theme-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  margin-top: 35px;
  padding: 0 34px;
  border: none;
  border-radius: 50px;
  background: var(--experience-theme);
  color: var(--experience-header);
  font-family: var(--eduvers-font, "DM Sans", sans-serif);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.experience-content .theme-btn i {
  color: currentColor;
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}

.experience-content .theme-btn::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  border-radius: inherit;
  background-color: var(--experience-header);
  transition: width 0.4s ease-out;
  z-index: -1;
}

.experience-content .theme-btn:hover {
  color: var(--experience-white);
  box-shadow: none;
}

.experience-content .theme-btn:hover::before {
  width: 100%;
}

.experience-content .theme-btn:hover i {
  transform: translate(3px, -3px);
}

@media (max-width: 1199px) {
  .experience-section.section-padding {
    padding: 100px 0;
  }

  .experience-section .section-title h2,
  .experience-section .section-title .tx-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .experience-section.section-padding {
    padding: 82px 0;
  }

  .experience-section::before {
    background: rgba(0, 0, 0, 0.62);
  }

}

@media (max-width: 575px) {
  .experience-section {
    min-height: 500px;
  }

  .experience-section .section-title .sub-title {
    font-size: 14px;
  }

  .experience-section .section-title h2,
  .experience-section .section-title .tx-title {
    font-size: 32px;
  }

  .experience-content .experience-text {
    font-size: 16px;
  }

  .experience-content .theme-btn {
    width: 100%;
    padding: 0 24px;
  }
}
