@media (max-width: 1023px) {
  #desktop-content {
    display: none;
  }

  #mobile-content {
    display: block;
  }
}
@media (min-width: 1025px) {
  #desktop-content {
    display: flex;
  }

  #mobile-content {
    display: none;
  }
}

#mobile-content {
  background: #f4f6fa;
  height: 100vh;
}

#mobile-content .main-section {
  position: relative;
  z-index: 1;
  top: 228px;
}

#mobile-content .info-section {
  padding: 80px 16px 40px 28px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  position: relative;
}

#mobile-content .info-section .logo-img {
  width: 160px;
}
#mobile-content .main-section h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #141720;
}

#mobile-content .main-section .info {
  z-index: 1;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

#mobile-content .info p {
  font-weight: 400;
  font-size: 14px;
  color: #747888;
}

#mobile-content .top-img {
  position: absolute;
  top: -160px;
  z-index: 2;
  width: 100%;
  left: -3px;
}

#mobile-content .line-text {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}

#mobile-content .line-text::before,
#mobile-content .line-text::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #eaebed;
}

#mobile-content .line-text::before,
#mobile-content .line-text::after {
  margin-right: 10px;
  color: #eaebed;
  margin-top: 2px;
  margin-right: 10px;
  margin-left: 10px;
}

#mobile-content .line-text p {
  font-weight: 400;
  font-size: 16px;
  color: #30364d;
  margin: 0;
}

#mobile-content .social-links {
  gap: 16px;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

#mobile-content .social-links a {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-width: 1px;
  border-style: solid;
  border-radius: 8px;
  color: #595e71;
  background-color: #ffffff;
}

#mobile-content .social-links a.linkedin {
  border-color: #007ebb;
}

#mobile-content .social-links a.twitter {
  border-color: #1c1c1b;
}

/* For screens with height between 600px and 830px */
@media (min-height: 700px) and (max-height: 830px) {
  #mobile-content .info-section {
    padding: 70px 16px 40px 28px;
  }
  #mobile-content .main-section {
    top: 180px;
  }
}

/* For screens with height of 600px or less */
@media (max-height: 700px) {
  #mobile-content .info-section {
    padding: 55px 16px 40px 28px;
  }
  #mobile-content .main-section {
    top: 170px;
  }
  #mobile-content .social-links,
  #mobile-content .line-text {
    margin-top: 20px;
  }
}

@media screen and (min-width: 600px) {
  #mobile-content .top-img {
    position: absolute;
    top: -200px;
    z-index: 2;
    width: 100%;
    left: 15%;
    height: 17rem;
    width: 70%;
  }
}

#desktop-content {
  display: flex;
}
#mobile-content {
  display: none;
}

body.is-mobile #desktop-content {
  display: none;
}
body.is-mobile #mobile-content {
  display: block;
}
