.hero-section {
  position: relative;
  height: 42rem;
  width: 100%;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.759);
}

.hero-content {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10vw;
  z-index: 1;
  color: white;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.hero-content .intro-text {
  padding-top: 7rem;
  max-width: 800px;
  margin-right: auto;
}

.hero-content .intro-text h1 {
  font-size: 3rem;
  font-weight: bolder;
  margin-bottom: 2rem;
}

.hero-content .intro-text p {
  margin-bottom: 2rem;
  line-height: 1.6rem;
}

.hero-content .intro-text .hero-cta {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}

.hero-cta .btn {
  padding: 1rem;
  transition: all 0.3s ease;
}

.hero-cta .btn:hover {
  transform: scale(1.01);
}

.hero-cta a:first-child {
  background: linear-gradient(90deg, #a02ccf 0%, #6f3cbf 50%, #3b3bb9 100%);
  border: 2px solid var(--gradient-end);
  color: white;
}

.hero-cta a:last-child {
  border: 2px solid var(--gradient-end);
  background-color: rgba(245, 245, 245, 0.037);
}

.hero-content .info {
  margin-top: auto;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: white;
  width: 100%;
  color: black;
}

.hero-content .info .list {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.hero-content .info .list .block {
  width: calc(100% / 4 - 1rem);
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}

.hero-content .info .list .block img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.hero-content .info .list .block h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-content .info .list .block .text {
  height: 40px;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.hero-content .info .list .block a {
  color: var(--vibrant-orange);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: auto;
}

.expertise {
  padding: 4rem 0;
  padding-top: 6rem;
}

.expertise .container {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 2rem;
}

.expertise .container .img-block,
.expertise .container .others {
  width: 50%;
}

.expertise .container .img-block .btn {
  margin-top: 1rem;
  width: max-content;
}

.expertise .container .img-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.expertise .others .head {
  margin-bottom: 2rem;
}

.expertise .others .head h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.expertise .others .head p {
  font-size: 0.9rem;
}

.expertise .others .item {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

.expertise .others .item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--vibrant-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.social {
  padding: 4rem 0;
}

.social .container {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 2rem;
}

.social .container .text-block {
  width: 40%;
  padding: 2rem;
  background-color: var(--deep-blue);
  color: white;
}

.social .container .text-block .icon {
  font-size: 4rem !important;
}

.social .container .text-block .text {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: bold;
}

.social .container .content {
  width: 60%;
}

.social .container .content .images {
  margin-top: 2rem;
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 2px;
}

.social .container .content .images img {
  width: calc(100% / 3);
  height: 17rem;
  object-fit: cover;
  border-radius: 5px;
}

.partners {
  padding: 3rem 0;
}

.partners h2 {
  font-size: 2rem;
}

.partners .container .partners-list {
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
}

.partners .container .partners-list .partner {
  width: calc(100% / 6 - 2rem);
}

.partners .container .partners-list .partner img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.home-blog .header {
  margin-bottom: 2rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.home-blog .header h2 {
  font-size: 2rem;
}

.home-blog .header p {
  font-size: 0.9rem;
}

.home-blog .header a {
  color: var(--vibrant-orange);
  font-weight: bold;
}

@media only screen and (max-width: 1000px) {
  .hero-section {
    height: 100%;
  }

  .hero-content {
    padding: 0 7.5vw;
  }

  .hero-content .intro-text {
    padding-top: 5rem;
    max-width: 100%;
  }

  .hero-content .intro-text h1 {
    font-size: 2.5rem;
  }

  .hero-content .intro-text p {
    line-height: 1.4rem;
  }

  .hero-cta .btn {
    padding: 0.8rem;
  }

  .hero-content .info {
    margin-top: 3rem;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-content .info .list {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .hero-content .info .list .block {
    width: calc(100% / 2 - 2rem);
  }

  .hero-content .info .list .block img {
    width: 50px;
  }

  .hero-content .info .list .block h3 {
    font-size: 0.9rem;
  }

  .hero-content .info .list .block .text {
    height: 40px;
  }

  .hero-content .info .list .block a {
    font-size: 0.7rem;
  }

  .expertise {
    padding: 4rem 0;
  }

  .expertise .container {
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .expertise .container .img-block,
  .expertise .container .others {
    width: 100%;
  }

  .expertise .others .head h2 {
    font-size: 1.8rem;
  }

  .expertise .others .item .icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .social {
    padding: 4rem 0;
  }

  .social .container {
    flex-direction: column;
    gap: 2rem;
  }

  .social .container .text-block {
    width: 100%;
    padding: 2rem;
  }

  .social .container .text-block .text {
    font-size: 1.8rem;
  }

  .social .container .content {
    width: 100%;
  }

  .social .container .content .images {
    flex-wrap: wrap;
  }

  .social .container .content .images img {
    width: calc(100% / 2 - 1rem);
    height: 15rem;
  }

  .partners {
    padding: 2rem 0;
  }

  .partners h2 {
    font-size: 1.8rem;
  }

  .partners .container .partners-list {
    gap: 1rem;
  }

  .partners .container .partners-list .partner {
    width: calc(100% / 4 - 1rem);
  }

  .partners .container .partners-list .partner img {
    max-height: 80px;
  }

  .home-blog .header {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .home-blog .header h2 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 560px) {
  .hero-content {
    padding: 0 5vw;
  }

  .hero-content .intro-text {
    padding-top: 4rem;
  }

  .hero-content .intro-text h1 {
    font-size: 2.2rem;
  }

  .hero-content .intro-text p {
    line-height: 1.3rem;
    font-size: 0.9rem;
  }

  .hero-cta {
    flex-wrap: wrap;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .hero-content .info {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content .info .list {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-content .info .list .block {
    width: 100%;
  }

  .hero-content .info .list .block img {
    width: 40px;
  }

  .hero-content .info .list .block h3 {
    font-size: 0.8rem;
  }

  .expertise {
    padding: 3rem 0;
  }

  .expertise .others .head h2 {
    font-size: 1.6rem;
  }

  .social {
    padding: 3rem 0;
  }

  .social .container .text-block {
    padding: 1rem;
  }

  .social .container .text-block .text {
    font-size: 1.6rem;
  }

  .social .container .content .images img {
    width: 100%;
    height: 12.5rem;
  }

  .partners h2 {
    font-size: 1.6rem;
  }

  .partners .container .partners-list .partner {
    width: calc(100% / 3 - 1rem);
  }

  .partners .container .partners-list .partner img {
    max-height: 70px;
  }

  .home-blog .header h2 {
    font-size: 1.6rem;
  }
}
