/******************** section 1 ****************/
.hero {
  background: url("../images/news.png") no-repeat center center/cover;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 3;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 8;
  padding: 20px;
}

.hero-content .small {
  font-size: 14px;
  font-weight: 500;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 16px;
  margin: 20px 0;
  line-height: 1.4;

  font-weight: 500;
  color: white;

  /* margin: 0 auto 30px; */
}

.hero-content p a {
  color: white;
  transition: 0.3s ease-in-out;
}
.hero-content p a:hover {
  color: #c77f05;
}

.underline {
  height: 5px;
  width: 214px;
  background: var(--clr-orange); /* Secondary color */
  margin: 10px auto 20px;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .underline {
    width: 114px;
  }
}

/******************** section 2 ****************/

.networking {
  padding: 80px 40px;
  text-align: center;
  position: relative;


}

.background {
  background: url("../images/globej.png") no-repeat center center/cover;
  position: absolute;
  background-position: left;
  background-size: contain;
  top: -70px;
  left: 0;
  height: 838px;
  width: 838px;
  z-index: 1;
}
.networking-text {
  position: relative;
  z-index: 5;
}

.networking-title {
  font-size: 40px;
  background: var(--clr-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 500;
  padding-bottom: 20px;
}

.networking-subtitle {
  max-width: 1510px;
  margin: 0 auto 50px;
  padding-bottom: 30px;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;

  text-align: center;
}

.networking-container {
  display: flex;
  box-shadow: 0px 4px 4px 0px #c77f05;
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
background-color: white;
  justify-content: space-between;
  padding: 30px 20px;
}

.networking-content {
  width: 40%;

}

.networking-content img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 10px;
}

.networking-description {
  width: 60%;
  padding-left: 18px;
  text-align: justify;
  font-size: 16px;
}

/* Add to assets/css/networking.css */

.networking-description ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 0;
  text-align: justify;
}

.networking-description p.smalls {
  font-size: 18px;
  display: block;
  font-weight: 800;
  margin: 15px 0 10px 0;
}

.buttons.download {
  margin-top: 80px;
  font-family: var(--ff-tertiary);
  margin: 80px auto;
  display: flex;
  justify-content: center;
}


/* ...existing code... */

/* Responsive styles for networking section */
@media (max-width: 1114px) {
  .networking-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .networking-description {
    font-size: 16px;
  }

  .networking-content {
    width: 80%;
  }

  .networking-description {
    width: 90%;
  }
}
@media (max-width: 900px) {
  .networking-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }
  .networking-content,
  .networking-description {
    width: 100%;
    padding-left: 0;
    text-align: justify;
    font-size: 16px;
  }

  .networking-description p strong {
    font-size: 18px;
  }
  .networking-content img {
    max-width: 80%;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
  }
  .networking-description ul {
    text-align: left;
    margin: 0 auto 20px auto;
    display: inline-block;
  }

  .buttons .btn a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .networking {
    padding: 30px 10px;
  }
  .networking-title {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .networking-content img {
    max-width: 100%;
  }
  .buttons .btn a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .networking-description {
    font-size: 14px;
  }
  .networking-description p strong {
    font-size: 16px;
  }
  .networking-description ul {
    text-align: left;
    margin-left: 0;
    padding-left: 15px;
  }
  .networking-description ul {
    font-size: 15px;
    padding-left: 15px;
  }
}
