@font-face {
  font-family: "Poppins", sans-serif;
  src: url(./../google-font/Poppins-Regular.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url(./../google-font/Poppins-Medium.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
  unicode-range: U+02BC, U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200B-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url(./../google-font/Poppins-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url(./../google-font/Poppins-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

button a {
  color: #fff !important;
}

* {
  box-sizing: border-box;
}

.container {
  width: 85%;
  margin: 0 auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #1e1e1e;
  background-color: #fafdff;
}

a {
  text-decoration: none;
}

/* Scroll to bottom */
.scroll-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #4831d4;
  color: white;
  border: none;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.breadcrum-nav-container {
  background-color: #fafdff;
  margin-top: 90px;
  margin-bottom: 20px;
}

.breadcrum-nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0 12px 0;
}

.breadcrum-nav-link a {
  font-size: 14px;
  color: #8f8f8f;
  padding: 0 10px;
  transition: 0.2s;
}

.breadcrum-arrow-img {
  width: 12px;
  height: 12px;
}

.breadcrum-nav-link a:hover {
  color: #3b5998;
  cursor: pointer;
  font-weight: 600;
}

.breadcrum-active-link {
  color: #3b5998 !important;
  font-weight: 600;
}

.menu-btn {
  display: none;
}

.menu-btn {
  border: 0;
  background-color: transparent;
  font-size: 36px;
  margin-left: 30px;
  color: #4831d4;
}

.nav-holder {
  /* background-color: rgba(250, 253, 255, 0.9); */
  background-color: #fff;
  /* box-shadow: 0 1px 20px rgba(215, 215, 216, 0.5); */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0 0;
}

.nav-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 20%;
}

.logo img {
  width: 100%;
}

.nav-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-right ul li {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  padding: 25px;
  color: #8f8f8f;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.nav-links::after {
  content: "";
  border: 1px solid #000;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  opacity: 0;
  transition: 0.2s;
}

.nav-links.active {
  color: #4831d4;
}

.login-btn {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #4831d4;
  padding: 12px 30px;
  margin-left: 20px;
  border: 0;
  border-radius: 6px;
  transition: 0.2s;
  cursor: pointer;
}

.signup-btn {
  cursor: pointer;
  background-color: #dad6f6;
  font-size: 16px;
  font-weight: 500;
  color: #4831d4;
  margin-left: 20px;
  padding: 12px 30px;
  border: 0;
  border-radius: 6px;
  transition: 0.2s;
}

.nav-links:hover {
  color: #4831d4;
}

.nav-links:hover::after {
  opacity: 1;
  left: calc(50% - 10px);
  width: 20px;
}

.login-btn:hover {
  box-shadow: 0 20px 30px rgba(59, 110, 133, 0.2);
  transform: scale(1.05);
}

.signup-btn:hover {
  box-shadow: 0 20px 30px rgba(59, 110, 133, 0.2);
  transform: scale(1.05);
}

.nav-right .dropdown-menu {
  position: absolute;
  background-color: #fff;
  border: 1px solid #d8e2e7;
  left: 50%;
  top: 100%;
  display: none;
  flex-direction: column;
  text-align: center;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  min-width: 150px;
}

.nav-right .dropdown-menu li {
  display: block;
}

.nav-right .dropdown-menu li a {
  display: block;
  padding: 12px 16px;
}

.nav-right .dropdown-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.nav-right .dropdown-menu li a:hover::after {
  opacity: 0;
}

.nav-right ul li:hover .dropdown-menu {
  display: flex;
}

.website-video video {
  border-radius: 6px;
}

.menu-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
}

.menu-btn img {
  width: 100%;
}

.mobile-menu {
  width: 100vw;
  height: 100vh;
  background-color: #fafdff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  overflow-y: auto;
}

.mobile-menu ul {
  padding: 0;
  margin-top: 40px;
}

.mobile-menu ul li {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #1e1e1e;
  padding: 12px 0;
  display: block;
  font-size: 18px;
}

.mobile-menu ul li a:hover {
  cursor: pointer;
  color: #4831d4;
}

.mobile-menu .close-btn {
  position: fixed;
  right: 20px;
  top: 20px;
  background-color: #4831d4;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  border: 0;
}

.mobile-menu .close-btn img {
  width: 40%;
}

.login-phone {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #4831d4;
  width: 55%;
  padding: 16px 40px;
  border: 0;
  border-radius: 6px;
  transition: 0.2s;
}

.signup-phone {
  background-color: #dad6f6;
  color: #4831d4;
  border: 0;
  border-radius: 6px;
  transition: 0.2s;
}

/************************************* Footer Section ************************************/

.footer-bg {
  background-color: #322294;
  margin-top: -5px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-content: space-between;
  padding-top: 110px;
  padding-left: 60px;
  margin: 0 60px;
}

.footer-links {
  margin-bottom: 60px;
}

.last-item {
  margin-left: -65px;
}

.footer-links h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 30px;
}

.footer-links h3 a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
}

.footer-links ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
}

.footer-links ul li a:hover {
  color: #f2791d;
}

.footer-links h3 a:hover {
  color: #f2791d;
}

.link-btn {
  text-decoration: none;
  display: inline-block;
}

.footer-links .socialmedia-container {
  width: 65%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.footer-links .socialmedia-icons {
  border-radius: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  margin-top: 10px;
}

.footer-links .socialmedia-icons img {
  width: 40%;
  text-align: center;
}

.footer-links .socialmedia-icons.whatsapp-bg {
  background-color: #128c7e;
}

.footer-links .socialmedia-icons.facebook-bg {
  background-color: #3b5998;
}

.footer-links .socialmedia-icons.instagram-bg {
  background-color: #d62976;
}

.footer-links .socialmedia-icons.twitter-bg {
  background-color: #00acee;
}

.footer-links .socialmedia-icons.linkedin-bg {
  background-color: #0072b1;
}

.footer-copywrite {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 20px 0 60px 0;
}

.footer-copywrite h3 {
  text-transform: uppercase;
  font-size: 12px;
  margin: 0;
  letter-spacing: 2px;
}

.footer-links .socialmedia-icons:hover {
  transform: scale(1.2);
  box-shadow: 0 20px 30px rgba(59, 110, 133, 0.2);
}

.menu-bar {
  display: none;
}

@media only screen and (max-width: 1438px) {
  .nav-links {
    padding: 25px 16px;
  }
}

@media only screen and (max-width: 1250px) {
  .navigation-container {
    width: 90%;
    margin-bottom: 20px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding-left: 0;
  }

  .footer-links.last-item {
    margin-left: 0;
  }

  .socialmedia-container {
    width: 80%;
  }
}

@media only screen and (max-width: 1200px) {
  .navigation-container {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1100px) {
  .container {
    width: 90%;
  }

  .nav-right {
    display: none;
  }

  .menu-bar {
    display: block;
    list-style-type: none;
  }

  .navigation-container {
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 900px) {
  .navigation-container {
    justify-content: space-between;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding-top: 60px;
  }
}

@media only screen and (max-width: 540px) {
  .nav-right ul li a {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .signup-btn {
    display: none;
  }

  .logo {
    width: 40%;
  }

  .close-btn {
    position: fixed;
    right: 20px;
    top: 20px;
    font-size: 54px;
    background-color: transparent;
    border: 0;
  }

  .breadcrum-nav-link a {
    font-size: 12px;
  }

  .navigation-container {
    justify-content: space-between;
    margin-bottom: 0;
  }

  .footer-container {
    grid-template-columns: none;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
  }

  .footer-links {
    margin-bottom: 40px;
  }

  .footer-links h3 {
    margin-bottom: 18px;
  }

  .footer-links.last-item {
    margin-left: 0;
  }

  .website-video video {
    max-width: 100%;
    height: auto;
  }

  .footer-copywrite p {
    font-size: 12px;
  }

  .page-content-btn {
    width: 100%;
  }
}

.page-content-btn {
  background-color: #4831d4;
  color: #fff;
  border-radius: 6px;
  border: 0;
  padding: 20px 60px;
  margin-top: 60px;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.page-content-btn:hover {
  box-shadow: 0 20px 30px rgba(59, 110, 133, 0.2);
  cursor: pointer;
  transform: scale(1.05);
}

.link-btn {
  text-decoration: none;
}

/************************************************* HomePage ********************************** */
.homepage-hero-container {
  background-image: url(../assets/images/hero-section-bg.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  margin-bottom: 60px;
}

.homepage-hero-container .hero-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 60px 0;
}

.homepage-hero-container .hero-section-content {
  width: 45%;
}

.homepage-hero-container .hero-section-content h1 {
  font-size: 38px;
  font-weight: 500;
  margin: 0;
}

.homepage-hero-container .h1-span {
  color: #f2791d;
  font-size: 46px;
  font-weight: 600;
}

.homepage-hero-container .hero-section-content p {
  font-size: 16px;
  color: #6b6a6a;
  margin: 30px 0;
  font-weight: 400;
}

.homepage-hero-container .hero-section-content .hero-btn {
  background-color: #f2791d;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 45%;
}

.homepage-hero-container .hero-section-content .hero-btn img {
  width: 10%;
}

.homepage-hero-container .hero-section-content .hero-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.homepage-second-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 60px 20px;
  margin-bottom: 110px;
}

.homepage-second-headline {
  margin-top: 100px;
}

.homepage-second-headline h2 {
  font-size: 38px;
}

.homepage-second-section .industry-challenge-section {
  background: #fff;
  color: #1e1e1e;
  width: 100%;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  border-radius: 22px;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.homepage-second-section .industry-challenge-section h3 {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 400;
}

.homepage-second-section .industry-challenge-section p {
  color: #8f8f8f;
  font-size: 16px;
  margin: 0;
  text-align: center;
}

.homepage-second-section .industry-challenge-section.blue-bg {
  background: #e69557;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.homepage-second-section .industry-challenge-section.blue-bg p {
  color: #fff;
  margin: 0;
}

.homepage-second-section .industry-image-holder {
  width: 25%;
  margin: 0 auto;
}

.homepage-second-section .industry-image-holder img {
  width: 100%;
}

.homepage-second-section .industry-challenge-section:hover {
  transform: scale(1.01);
  box-shadow: 0 40px 56px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.homepage-headline h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 0;
}

.homepage-headline p {
  font-size: 16px;
  color: #8f8f8f;
  font-weight: 400;
  margin-top: 14px;
}

.homepage-third-point .third-section-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 60px;
  margin-bottom: 110px;
}

.homepage-third-point .third-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 40%;
}

.homepage-third-point .third-section-point {
  background: #e8ebdc;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.2s;
}

.homepage-third-point .third-section-point h3 {
  color: #7f7f1a;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 10px;
}

.homepage-third-point .third-section-point p {
  color: #1e1e1e;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  margin: 0;
}

.homepage-third-point .third-img {
  width: 45%;
}

.homepage-third-point .third-img img {
  width: 100%;
}

.homepage-third-point .purple {
  background-color: #f8e3d3;
}

.homepage-third-point .purple h3 {
  color: #f07a22;
}

.homepage-third-point .green {
  background-color: #d5e1f1;
}

.homepage-third-point .green h3 {
  color: #4372b7;
}

.homepage-third-point .orange {
  background-color: #f3dfdc;
}

.homepage-third-point .orange h3 {
  color: #d76551;
}

.homepage-third-point .third-section-point:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.homepage-fourth-div {
  margin-bottom: 110px;
}

.homepage-fourth-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  background-color: #fff;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 40px 20px;
}

.homepage-fourth-container .fourth-content-left {
  width: 35%;
}

.homepage-fourth-container .fourth-content-img {
  width: 45%;
  margin-top: -110px;
}

.homepage-fourth-container .fourth-content-img img {
  width: 100%;
}

.homepage-fourth-container .fourth-content-headline h3 {
  font-size: 38px;
  font-weight: 500;
  margin: 20px 0;
}

.homepage-fourth-container .fourth-content-headline p {
  font-size: 16px;
  color: #8f8f8f;
  margin-bottom: 40px;
}

.homepage-fourth-container .next-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.homepage-fourth-container .next-bg {
  background-color: #f2791d;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  font-size: 20px;
  margin-right: 20px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-fourth-container .next-bg img {
  width: 50%;
}

.homepage-fourth-container .next-bg:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.homepage-testimonial-section .fifth-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 80px;
}

.homepage-testimonial-section .fifth-btn-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.homepage-testimonial-section .fifth-next-btn {
  background-color: #f2791d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 0;
  padding: 15px;
  border-radius: 50px;
  transition: 0.2s;
}

.homepage-testimonial-section .fifth-next-btn img {
  width: 80%;
}

.homepage-testimonial-section .quote-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 40px;
  margin-top: 40px;
}

.homepage-testimonial-section .quote-01 {
  background-color: #e8ebdc;
  border-radius: 22px;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
  padding: 20px 40px;
  text-align: center;
}

.homepage-testimonial-section .quote-01 h3 {
  font-size: 28px;
  font-weight: 400;
  color: #1e1e1e;
  margin: 0;
  margin-top: 20px;
}

.homepage-testimonial-section .quote-01 p {
  font-size: 16px;
  font-weight: 400;
  margin: 30px 0;
  color: #6b6a6a;
}

.homepage-testimonial-section .quote-01 img {
  width: 10%;
  margin-top: 20px;
}

.homepage-testimonial-section .quote-01 span {
  font-size: 16px;
  color: #6b6a6a;
}

.homepage-testimonial-section .quote-01 .fa-star {
  color: #6b6a6a;
}

.homepage-testimonial-section .quote-01 .rated-star {
  color: #ff9529;
}

.homepage-testimonial-section .second-color {
  background-color: #f8e3d3;
}

.homepage-testimonial-section .third-color {
  background-color: #dad6f6;
}

.homepage-testimonial-section .fourth-color {
  background-color: #d5e1f1;
}

.homepage-testimonial-section .fifth-color {
  background-color: #e0dbec;
}

.homepage-testimonial-section .sixth-color {
  background-color: #ebebeb;
}

.homepage-testimonial-section .fifth-next-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.homepage-cta-info-container {
  background-color: #322294;
  margin-top: 280px;
}

.homepage-cta-info-container .cta-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  background-image: url(../assets/images/homepage-cta-bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  border-radius: 12px;
  transform: translateY(-30%);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.1);
  margin-bottom: -110px;
  padding: 30px;
}

.homepage-cta-info-container .cta-container h2 {
  font-size: 38px;
  color: #1e1e1e;
  font-weight: 500;
  margin: 0;
  margin-top: 20px;
}

.homepage-cta-info-container .cta-container p {
  font-size: 16px;
  color: #6b6a6a;
  font-weight: 500;
}

.homepage-cta-info-container .cta-container button {
  margin-top: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #f2791d;
  padding: 12px 30px;
  border: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-evenly;
  transition: 0.2s;
}

.homepage-cta-info-container .sixth-content {
  margin-left: 40px;
}

.homepage-cta-info-container .sixth-img {
  width: 65%;
}

.homepage-cta-info-container .sixth-img img {
  width: 100%;
}

.homepage-cta-info-container .cta-container button:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1438px) {
  .homepage-headline h2 {
    font-size: 36px;
  }

  .homepage-hero-container .hero-section-content .hero-btn {
    width: 60%;
    margin: 0 auto;
  }

  .homepage-hero-container .hero-section {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .homepage-hero-container .hero-section-content {
    width: 80%;
    text-align: center;
  }
}

@media only screen and (max-width: 1280px) {
  .homepage-cta-info-container .cta-container h2 {
    font-size: 36px;
  }

  .homepage-hero-container .hero-section-content .hero-btn {
    width: 70%;
  }
}

@media only screen and (max-width: 1100px) {
  .homepage-hero-container .hero-section {
    flex-direction: column;
  }

  .homepage-hero-container .hero-section-content {
    width: 100%;
    margin: 0 auto;
  }

  .homepage-hero-container .hero-section-content h1 {
    text-align: center;
    font-size: 34px;
  }

  .homepage-hero-container .hero-section-content {
    text-align: center;
  }

  .homepage-fourth-container .fourth-content-headline p {
    text-align: left;
  }

  .homepage-hero-container .hero-section-content .hero-btn {
    width: 30%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .homepage-hero-container .hero-section-img {
    width: 100%;
  }

  .homepage-second-section {
    flex-direction: column;
  }

  .homepage-second-section h2 {
    font-size: 34px;
  }

  .homepage-second-section .industry-challenge-section {
    width: 100%;
    height: 520px;
  }

  .homepage-headline p {
    font-size: 24px;
    text-align: left;
  }

  .homepage-third-point .third-section-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 0px;
  }

  .homepage-third-point .third-content {
    width: 100%;
    margin-bottom: 0px;
  }

  .homepage-third-point .right-content {
    margin: 0;
  }

  .homepage-third-point .third-section-point {
    padding: 60px 40px;
  }

  .homepage-third-point .third-img {
    width: 90%;
  }

  .homepage-third-point .third-img img {
    width: 100%;
  }

  .homepage-fourth-div {
    margin-top: 90px;
  }

  .homepage-fourth-container {
    margin-top: 10px;
  }

  .homepage-fourth-container .fourth-content-left {
    width: 50%;
  }

  .homepage-fourth-container .fourth-content-img {
    width: 50%;
  }

  .homepage-fourth-container .fourth-btn-container {
    justify-content: flex-start;
  }

  .homepage-fourth-container .fourth-content-img img {
    width: 100%;
  }

  .homepage-testimonial-section .fifth-container {
    flex-direction: row;
  }

  .homepage-cta-info-container {
    margin-top: 160px;
  }

  .homepage-cta-info-container .sixth-img {
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  .homepage-hero-container .hero-section {
    flex-direction: column;
    padding: 60px 0 0 0;
  }

  .homepage-hero-container .hero-section-content .hero-btn {
    width: 70%;
  }

  .homepage-hero-container .hero-section-content {
    width: 100%;
    text-align: center;
  }

  .homepage-second-section {
    flex-direction: column;
  }

  .homepage-headline h2 {
    font-size: 28px;
    text-align: center;
    font-weight: 600;
  }

  .homepage-headline p {
    font-size: 16px;
    text-align: center;
    margin-top: 18px;
  }

  .homepage-third-point .third-content {
    width: 100%;
    flex-direction: column;
    margin-top: 30px;
  }

  .homepage-third-point .left-content {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .homepage-third-point .right-content {
    margin-top: 0;
  }

  .homepage-third-point .third-section-point {
    padding: 40px;
  }

  .homepage-third-point .third-img {
    width: 100%;
    margin-top: 60px;
  }

  .homepage-third-point .third-img img {
    width: 100%;
  }

  .homepage-fourth-div {
    margin-bottom: 40px;
    margin-top: 60px;
  }

  .homepage-fourth-container {
    width: 100%;
    border-radius: 0;
  }

  .homepage-fourth-container {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }

  .homepage-fourth-container .fourth-btn-container {
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .homepage-fourth-container .fourth-next-btn {
    margin: 0;
  }

  .homepage-fourth-container .fourth-content-left {
    width: 100%;
    margin: 0 auto;
  }

  .homepage-fourth-container .fourth-content-left h3 {
    font-size: 24px;
    text-align: center;
  }

  .homepage-fourth-container .fourth-content-img {
    width: 100%;
    margin-top: 12px;
  }

  .homepage-fourth-container .next-btn {
    display: flex;
    justify-content: center;
  }

  .homepage-testimonial-section .quote-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 10px;
  }

  .homepage-testimonial-section .quote-01 {
    padding: 40px 20px;
    margin-bottom: 0;
  }

  .homepage-testimonial-section .quote-02 {
    padding: 40px 20px;
    margin-top: 0;
  }

  .homepage-testimonial-section .fifth-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .homepage-testimonial-section .fifth-btn-container {
    margin: 0 auto;
    margin-top: 40px;
  }

  .homepage-cta-info-container .sixth-content button {
    width: 100%;
    font-size: 28px;
    gap: 10px;
    padding: 20px;
    align-items: center;
    justify-content: center;
  }

  .homepage-cta-info-container {
    margin-top: 323px;
  }

  .homepage-cta-info-container .cta-container {
    flex-direction: column;
    padding-top: 40px;
    width: 100%;
    border-radius: 0;
  }

  .homepage-cta-info-container .sixth-content {
    width: 100%;
    margin: 0 auto;
  }

  .homepage-cta-info-container .cta-container h2 {
    font-size: 24px;
    text-align: center;
  }

  .homepage-cta-info-container .cta-container p {
    text-align: center;
  }

  .homepage-cta-info-container .cta-container button {
    width: 60%;
    padding: 12px;
    margin: 0 auto;
    margin-top: 60px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 540px) {
  .link-btn {
    width: 100%;
  }

  .homepage-hero-container .hero-section {
    flex-direction: column;
  }

  .homepage-hero-container .hero-section-content {
    width: 100%;
    text-align: center;
  }

  .homepage-hero-container .hero-section-content h1 {
    font-size: 24px;
  }

  .homepage-hero-container .h1-span {
    font-size: 26px;
  }

  .homepage-hero-container .hero-section-content p {
    margin: 0;
    margin-top: 16px;
  }

  .homepage-hero-container .hero-section .hero-btn {
    width: 90%;
    font-size: 18px;
    margin-top: 40px;
  }

  .homepage-hero-container .website-video {
    width: 100%;
    margin: 0 auto;
  }

  .website-video video {
    width: 100%;
  }

  .homepage-second-headline {
    margin-top: 60px;
  }

  .homepage-second-headline h2 {
    font-size: 22px;
    text-align: center;
  }

  .homepage-second-section {
    flex-direction: column;
    margin: 60px 0;
  }

  .homepage-second-section .industry-challenge-section {
    padding: 20px;
    height: fit-content;
  }

  .homepage-second-section .industry-challenge-section img {
    width: 100%;
  }

  .homepage-headline h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 16px;
  }

  .homepage-headline p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .homepage-third-point .third-content {
    margin-bottom: 12px;
    width: 100%;
    flex-direction: column;
  }

  .homepage-third-point .left-content {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .homepage-third-point .right-content {
    margin-top: 0;
  }

  .dash-line {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .homepage-third-point .third-section-container {
    margin: 0 auto;
  }

  .homepage-third-point .third-section-point {
    width: 100%;
    padding: 40px 16px;
  }

  .homepage-third-point .third-img {
    width: 100%;
    margin-top: 60px;
  }

  .homepage-third-point .third-section-point h3 {
    font-size: 20px;
  }

  .homepage-fourth-container {
    margin-top: 0px;
  }

  .homepage-fourth-container .fourth-btn-container {
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .homepage-fourth-container .fourth-next-btn {
    margin: 0;
  }

  .homepage-fourth-container .fourth-content-img {
    width: 100%;
    margin-top: 0;
  }

  .homepage-testimonial-section .quote-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 60px;
  }

  .homepage-testimonial-section .quote-01 {
    margin: 0;
  }

  .homepage-cta-info-container .sixth-img {
    width: 100%;
  }

  .homepage-cta-info-container .cta-container button {
    width: 100%;
    margin-top: 40px;
  }
}

/************************************** Press Chemicals *************************************** */

.marketing-page-headline {
  margin: 0;
  margin-top: 40px;
  margin-bottom: 80px;
}

.marketing-page-headline h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.marketing-page-headline span {
  font-size: 32px;
  font-weight: 600;
  color: #f2791d;
}

.marketing-page-headline p {
  font-size: 16px;
  font-weight: 400;
  color: #8f8f8f;
  margin: 0 auto;
  margin-top: 12px;
  text-align: center;
  width: 60%;
}

.marketing-page-content-btn {
  background-color: #1e1e1e;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.2s;
  margin: 0 auto;
  margin-bottom: 60px;
}

.marketing-page-content-btn:hover {
  box-shadow: 0 20px 30px rgba(30, 30, 30, 0.2);
  transform: scale(1.05);
}

.marketing-section-container .points-div {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-evenly;
}

.marketing-section-container .second-point {
  text-align: center;
  margin-bottom: 60px;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.marketing-section-container .marketing-icon-holder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e0e8ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-section-container .marketing-icon-holder img {
  width: 60%;
}

.marketing-section-container .second-point p {
  font-size: 16px;
  font-weight: 400;
  color: #1e1e1e;
  text-align: center;
  margin: 0;
}

.marketing-section-container .second-point h3 {
  margin: 12px 0;
  font-size: 22px;
  font-weight: 600;
}

.marketing-fourth-bg-container {
  background-color: #eeeeee;
}

.marketing-fourth-container .fourth-headline {
  padding-top: 60px;
  margin: 0 auto;
}

.marketing-fourth-container .fourth-container-01 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
  gap: 40px;
}

.marketing-fourth-container .fourth-container-02 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 20px;
}

.marketing-fourth-container .fourth-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #1e1e1e;
  width: 40%;
}

.marketing-fourth-container .fourth-container-01 .fourth-img {
  width: 45%;
  text-align: right;
}

.marketing-fourth-container .fourth-img img {
  width: 100%;
}

.marketing-fourth-container .fourth-container-02 .fourth-img {
  width: 50%;
  text-align: left;
}

.marketing-fourth-container .fourth-text-container h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 30px;
}

.marketing-fourth-container .points {
  display: flex;
  flex-direction: row;
}

.marketing-fourth-container .points p {
  margin: 0;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  padding-bottom: 20px;
  position: relative;
}

.marketing-fourth-container .points p::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 50%;
}

.marketing-fourth-container .fourth-btn {
  margin: 0;
  margin: 30px 0;
}

.marketing-sixth-bg .bullet-sixth-container {
  margin-bottom: 60px;
}

.marketing-sixth-bg .bullet-sixth-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  gap: 40px;
}

.marketing-sixth-bg .bulet-sixth-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.marketing-sixth-bg .bullet-sixth-headline {
  margin: 0;
  margin-top: 140px;
  width: 50%;
  margin: 0 auto;
  margin-top: 60px;
}

.marketing-sixth-bg .bullet-sixth-headline p {
  margin: 0;
  padding: 20px;
  text-align: center;
}

.marketing-sixth-bg .bullet-point-info h4 {
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.marketing-sixth-bg .bullet-point-info p {
  color: #6b6a6a;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.marketing-sixth-bg .bullet-icon-holder {
  width: 80px;
  height: 80px;
  background-color: #e0e8ed;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-sixth-bg .bullet-icon-holder img {
  width: 60%;
}

.marketing-sixth-bg .bullet-sixth-btn {
  margin: 0 auto;
  margin-bottom: 80px;
  margin-top: 60px;
}

.marketing-sixth-headline {
  margin-bottom: 30px;
}

.marketing-sixth-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}

.marketing-sixth-container .slider-div-content {
  width: 40%;
}

.marketing-sixth-container .sixth-img-div {
  width: 55%;
}

.marketing-sixth-container .sixth-img-div img {
  width: 100%;
  box-shadow: 0 0 21px rgba(30, 30, 30, 0.05);
}

.marketing-sixth-container .slider-headline h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.marketing-sixth-container .slider-headline p {
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 400;
}

.marketing-sixth-container .btn-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 40px;
  margin: 30px 0;
}

.marketing-sixth-container .btn-bg {
  background-color: #f2791d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: 0.2s;
}

.marketing-sixth-container .btn-bg img {
  width: 40%;
}

.marketing-sixth-container .sixth-btn {
  margin: 0;
  margin-top: 20px;
}

.marketing-sixth-container .btn-bg:hover {
  box-shadow: 0 20px 30px rgba(59, 110, 133, 0.2);
  transform: scale(1.05);
  cursor: pointer;
}

.commerce-cta-bg {
  background-image: url(../assets/images/commerce-cta-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 90px;
  background-color: #e0dbec;
}

.industry-cta {
  margin-top: 0;
}

.commerce-cta-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}

.commerce-cta-bg .cta-content {
  width: 55%;
}

.commerce-cta-bg .commerce-cta-image {
  width: 35%;
}

.commerce-cta-bg .commerce-cta-image img {
  width: 100%;
}

.commerce-cta-bg .cta-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.commerce-cta-bg .cta-content p {
  font-size: 16px;
  color: #1e1e1e;
}

.commerce-cta-bg .cta-btn {
  margin: 0;
  margin-top: 20px;
  background-color: #4831d4;
}

/* Partner Industry */
.partner-container {
  padding: 30px 0;
  margin-top: 60px;
  background-color: #efefef;
}

.partner-container .marketing-page-headline {
  margin: 20px 0;
}

.logo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0px auto;
}

.logo-holder {
  width: 55%;
  margin-top: 40px;
}

.logo-holder img {
  width: 100%;
  text-align: center;
  mix-blend-mode: multiply;
}

@media only screen and (max-width: 1290px) {
  .marketing-sixth-bg .bullet-sixth-points {
    gap: 30px;
  }

  .marketing-fourth-container .fourth-text-container {
    width: 50%;
  }

  .commerce-cta-bg .cta-bg-img {
    margin-top: -210px;
    width: 10vw;
  }
}

@media only screen and (max-width: 1100px) {
  .marketing-page-content-btn {
    padding: 16px 30px;
    margin: 0;
    display: block;
  }

  .marketing-fourth-container .fourth-container-01 {
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
  }

  .marketing-fourth-container .fourth-text-container {
    width: 100%;
    align-items: flex-start;
    padding: 0;
    margin-top: 60px;
  }

  .marketing-fourth-container .fourth-headline {
    width: 100%;
  }

  .marketing-fourth-container .points p {
    margin-bottom: 20px;
  }

  .marketing-fourth-container .fourth-container-01 .fourth-img,
  .marketing-fourth-container .fourth-container-02 .fourth-img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
  }

  .marketing-fourth-container .fourth-container-02 {
    flex-direction: column;
    justify-content: center;
  }

  .marketing-fourth-container .fourth-headline {
    width: 100%;
  }

  .marketing-fourth-container .points p {
    margin-bottom: 20px;
  }

  .marketing-sixth-bg .bullet-sixth-points {
    justify-content: center;
  }

  .marketing-sixth-bg .bullet-sixth-info {
    width: 100%;
  }

  .marketing-sixth-container {
    flex-direction: column;
  }

  .marketing-sixth-container .sixth-img-div {
    width: 100%;
  }

  .marketing-sixth-container .slider-div-content {
    width: 100%;
  }

  .marketing-sixth-container .btn-container {
    align-items: center;
    justify-content: flex-start;
  }

  .marketing-sixth-container .sixth-btn {
    margin: 0 auto;
  }

  .marketing-sixth-container .slider-headline {
    text-align: left;
  }

  .marketing-sixth-headline p {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .marketing-section-container .marketing-page-content-btn {
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .logo-holder {
    width: 65%;
  }
}

@media only screen and (max-width: 900px) {
  .marketing-section-container {
    margin-top: 60px;
  }

  .marketing-section-container .points-div {
    flex-direction: column;
    align-items: center;
  }

  .marketing-section-container .second-point {
    width: 100%;
  }

  .marketing-fourth-container .fourth-img img {
    width: 100%;
  }

  .marketing-sixth-container {
    flex-direction: column;
    margin-top: 12px;
  }

  .marketing-sixth-container .sixth-img-div {
    width: 90%;
  }

  .marketing-sixth-headline {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }

  .marketing-sixth-container .sixth-img-div img {
    width: 100%;
  }

  .marketing-sixth-container .slider-div-content {
    margin-top: 30px;
  }

  .marketing-sixth-container .slider-headline {
    text-align: left;
  }

  .marketing-sixth-container .slider-headline h3 {
    font-size: 24px;
  }

  .marketing-page-headline p {
    width: 100%;
  }

  .marketing-sixth-container .btn-container {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 60px;
  }

  .marketing-sixth-container .sixth-btn {
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .marketing-cta-bg .cta-marketing-info {
    flex-direction: column;
  }

  .marketing-cta-bg .cta-left-marketing {
    width: 90%;
  }

  .marketing-cta-bg .cta-headline {
    margin-top: 40px;
  }

  .marketing-cta-bg .cta-headline h2,
  .marketing-cta-bg .cta-headline p {
    text-align: center;
  }

  .marketing-cta-bg .cta-btn {
    margin: 0 auto;
    margin-top: 40px;
  }

  .marketing-cta-bg .cta-marketing-image {
    width: 90%;
    margin-top: 40px;
  }

  .commerce-cta-bg {
    margin-top: 0;
  }

  .commerce-cta-info {
    flex-direction: column;
  }

  .commerce-cta-bg .cta-content {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-top: 0;
  }

  .commerce-cta-bg .cta-content h2 {
    font-size: 20px;
  }

  .commerce-cta-bg .cta-btn {
    font-size: 16px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 16px 25px;
  }

  .commerce-cta-bg .commerce-cta-bg {
    margin-top: 60px;
  }

  .commerce-cta-bg .commerce-cta-image {
    width: 100%;
    margin-top: 30px;
  }

  .logo-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media only screen and (max-width: 540px) {
  .logo-holder {
    width: 90%;
  }

  .logo-container {
    margin-top: 60px;
  }

  .marketing-page-headline {
    margin-bottom: 40px;
  }

  .marketing-page-headline h2 {
    font-size: 22px;
    padding: 0;
    margin: 0;
    margin-top: 20px;
  }

  .marketing-header-container .hero-content {
    margin: 0 auto;
    padding-top: 40px;
  }

  .marketing-header-container .hero-left-content h1 {
    font-size: 32px;
    line-height: 35px;
  }

  .marketing-page-headline span {
    font-size: 24px;
  }

  .marketing-header-container .hero-left-content p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .marketing-header-container .hero-left-content button {
    font-size: 16px;
    padding: 20px 30px;
    margin: 0 auto;
    width: 100%;
  }

  .marketing-header-container .website-video {
    margin-top: 20px;
  }

  .marketing-section-container .points-div {
    flex-direction: column;
  }

  .marketing-section-container {
    margin: 0 auto;
  }

  .marketing-section-container .second-point {
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .marketing-fourth-bg-container {
    margin-top: 60px;
  }

  .marketing-fourth-container .fourth-bg-container {
    margin-top: 60px;
  }

  .marketing-fourth-container .fourth-container-01 {
    text-align: center;
    margin-top: 0;
  }

  .marketing-fourth-container .fourth-container-02 {
    padding-bottom: 0;
    margin-top: 0;
  }

  .marketing-fourth-container .fourth-text-container h3 {
    font-size: 20px;
  }

  .marketing-fourth-container .fourth-container-01 p {
    text-align: left;
  }

  .marketing-fourth-container .fourth-headline {
    padding-top: 16px;
    margin: 0;
  }

  .marketing-fourth-container .fourth-container-02 .fourth-img,
  .marketing-fourth-container .fourth-container-01 .fourth-img {
    width: 100%;
    padding-bottom: 0;
  }

  .marketing-fourth-container .fourth-text-container .fourth-btn {
    width: 90%;
    margin: 0 auto;
  }

  .marketing-section-container .marketing-page-content-btn {
    width: 90%;
  }

  .marketing-sixth-container .sixth-btn {
    width: 90%;
    margin-bottom: 20px;
  }

  .marketing-fourth-container .points p {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    padding-bottom: 15px;
    padding-left: 20px;
  }

  .marketing-fourth-container .points-img {
    width: 40%;
  }

  .marketing-fourth-container .points-img img {
    width: 40%;
  }

  .marketing-sixth-bg .bullet-sixth-container {
    margin: 0 auto;
  }

  .marketing-sixth-bg .bullet-sixth-headline {
    width: 90%;
  }

  .marketing-sixth-bg .bullet-point-info h4 {
    font-size: 20px;
  }

  .marketing-sixth-bg .bullet-point-info p {
    font-size: 16px;
  }

  .marketing-sixth-bg .bullet-sixth-points {
    grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
    margin-top: 60px;
    gap: 0;
  }

  .marketing-sixth-bg .bullet-sixth-btn {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .marketing-sixth-headline p {
    width: 100%;
    margin-top: 12px;
  }

  .marketing-sixth-bg .bullet-sixth-info {
    margin-bottom: 20px;
    align-items: center;
    width: 100%;
  }

  .marketing-sixth-container .btn-container {
    margin-bottom: 40px;
    justify-content: center;
    gap: 20px;
  }

  .marketing-sixth-bg .bullet-point-info {
    text-align: center;
  }

  .marketing-sixth-headline {
    margin-top: 60px;
  }

  .marketing-cta-bg .cta-headline {
    margin: 0;
  }

  .marketing-cta-bg .cta-headline h2 {
    font-size: 24px;
    margin-top: 10px;
  }

  .marketing-cta-bg .cta-headline p {
    font-size: 16px;
  }

  .marketing-cta-bg .cta-marketing-info {
    margin-top: 40px;
  }

  .marketing-cta-bg .cta-btn {
    padding: 20px 12px;
  }
}

/****************************************** Blog Section ******************************** */

.blog-hero-container {
  background-color: #f8e3d2;
  height: 280px;
  background-image: url(../assets/images/blog-hero-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-intro {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #1e1e1e;
  width: 60%;
  line-height: 30px;
}

.blog-category-container {
  margin-top: 60px;
}

.blog-title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.blog-headline h2 {
  font-size: 38px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
  padding: 0;
}

.blog-search-bar {
  background-color: #e0e8ed;
  height: 38px;
  width: 220px;
  border: 0;
  border-radius: 6px;
  outline: 0;
  padding: 12px;
}

.blog-search-bar::placeholder {
  color: #f2791d;
  font-size: 12px;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 60px;
}

.blog-category {
  font-size: 18px;
  font-weight: 500;
  padding: 16px;
  border: 0;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.blog-category:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.blog-category img {
  width: 25%;
  margin: 10px 0;
}

.blog-marketing {
  background-color: #ebccd5;
  color: #b00020;
}

.blog-inventory {
  background-color: #d4e0e7;
  color: #f2791d;
}

.blog-sales {
  background-color: #fbebcc;
  color: orange;
}

.blog-operation {
  background-color: #c8e1f9;
  color: #0070e2;
}

.blog-general {
  background-color: #e5eceb;
  color: #7d7d7d;
}

.blog-all {
  background-color: #c8e8e1;
  color: #009468;
}

.blog-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  align-items: flex-start;
  gap: 20px;
  justify-content: space-evenly;
  margin-top: 20px;
  margin-bottom: 60px;
}

.blog-image-holder {
  width: 100%;
  transition: 0.2s;
  overflow: hidden;
}

.blog-image-holder img {
  width: 100%;
  transition: 0.2s;
}

.blog-image-holder img:hover {
  transform: scale(1.1);
}

.blog-article-container h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 10px 0;
  text-align: left;
}

.blog-article-container p {
  font-size: 16px;
  font-weight: 400;
  color: #7d7d7d;
  margin-top: 0;
  margin-bottom: 16px;
}

.blog-article-container span {
  color: #9e0aa7;
}

.blog-newsletter {
  background-image: url(../assets/images/newsletter-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #d4e0e7;
  border-radius: 6px;
  margin-bottom: 60px;
}

.blog-newsletter-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.blog-newsletter-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding: 60px 0 0 60px;
}

.blog-icon-holder {
  width: 15%;
}

.blog-icon-holder img {
  width: 100%;
}

.blog-newsletter-title {
  margin-top: 12px;
}

.blog-newsletter-title h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.blog-newsletter-title p {
  width: 65%;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  margin-top: 6px;
  color: #7d7d7d;
}

.blog-subscribe-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
  padding: 0 60px 0 0;
}

.mail-input {
  width: 330px;
  height: 44px;
  background-color: #ededed;
  color: #7d7d7d;
  font-size: 14px;
  border: 0;
  border-radius: 6px;
  outline: 0;
  padding-left: 20px;
}

.subscribe-btn {
  height: 44px;
  width: 100%;
  padding: 8px 60px;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 6px;
  border: 0;
  width: 100%;
  transition: 0.2s;
}

.subscribe-btn:hover {
  box-shadow: 0 20px 30px rgba(59, 110, 133, 0.2);
  transform: scale(1.01);
  cursor: pointer;
}

@media only screen and (max-width: 1550px) {
  .blog-intro {
    width: 50%;
  }
}

@media only screen and (max-width: 1310px) {
  .blog-news {
    margin-bottom: 110px;
  }

  .blog-intro {
    width: 80%;
  }

  .blog-article-grid {
    gap: 40px;
  }

  .blog-search-bar {
    width: 210px;
  }

  .blog-newsletter .blog-newsletter-info {
    padding: 40px 40px 0 40px;
  }

  .blog-newsletter-title p {
    width: 100%;
  }

  .blog-icon-holder {
    width: 30%;
  }

  .blog-subscribe-container {
    width: 60%;
    flex-direction: column;
    padding: 0 40px 0 0;
    gap: 10px;
  }

  .mail-input {
    width: 100%;
  }
}

@media only screen and (max-width: 1025px) {
  .blog-news {
    margin-bottom: 60px;
  }

  .blog-article-grid {
    gap: 20px;
    margin-top: 60px;
  }

  .blog-article-container {
    margin-top: 0;
  }
}

@media only screen and (max-width: 900px) {
  .blog-article-grid {
    margin-top: 0;
    gap: 60px;
  }

  .blog-newsletter {
    margin-top: 110px;
  }

  .blog-newsletter-info {
    align-items: flex-end;
  }

  .blog-icon-holder {
    width: 50%;
  }

  .blog-newsletter-title {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 550px) {
  .blog-hero-container {
    height: fit-content;
  }

  .blog-category-container {
    margin-top: 40px;
  }

  .blog-intro {
    font-size: 16px;
    padding: 16px 0;
    line-height: 25px;
  }

  .blog-news {
    margin-bottom: 40px;
  }

  .blog-newsletter-details {
    flex-direction: column-reverse;
  }

  .blog-newsletter-info {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 0;
  }

  .blog-icon-holder {
    width: 50%;
  }

  .blog-newsletter-title h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
  }

  .blog-newsletter-title p {
    width: 100%;
    text-align: center;
  }

  .blog-subscribe-container {
    padding: 0;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    margin-top: 40px;
  }

  .mail-input {
    width: 100%;
  }

  .blog-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  .blog-category {
    padding: 16px 6px;
    font-size: 16px;
  }

  .blog-category img {
    margin: 6px;
  }
}

@media only screen and (max-width: 500px) {
  .blog-intro {
    width: 90%;
    text-align: justify;
  }

  .blog-headline h2 {
    font-size: 26px;
  }

  .blog-search-bar {
    width: 160px;
  }

  .blog-article-grid {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    margin-top: 20px;
    margin-bottom: 10px;
    gap: 0;
  }

  .blog-article-container {
    margin-top: 0;
  }

  .blog-article-container h3 {
    font-size: 20px;
  }

  .blog-article-container p {
    font-size: 16px;
  }

  .blog-newsletter {
    margin-top: 0;
  }
}

.article-title-container {
  margin-top: 60px;
}

.article-title-container h1 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.article-title-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.article-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background-color: transparent;
  transition: 0.2s;
}

.article-btn:hover {
  cursor: pointer;
  background-color: #e8cced;
  padding: 4px;
  border-radius: 4px;
  color: #9e0aa7;
}

.article-tag {
  width: 20%;
}

.article-date {
  width: 14%;
}

.article-details p,
.article-details {
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #7d7d7d;
}

.article-details {
  color: #9e0aa7;
}

.article-divider {
  background-color: #d4e0e7;
  height: 3px;
  border-radius: 6px;
  width: 100%;
  margin: 30px 0;
}

.article-image-holder {
  width: 100%;
  height: 456px;
  background-color: #f5f2f2;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 6px;
}

.article-image-holder img {
  width: 100%;
}

.article-title-container p {
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
}

.article-paragraph {
  margin-top: 40px;
}

.article-paragraph h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #1e1e1e;
}

.article-paragraph p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #7d7d7d;
  margin-top: 12px;
  line-height: 30px;
}

.article-paragraph b {
  color: #1e1e1e;
  font-weight: 600;
}

.article-image-paragraph {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}

.article-image-paragraph .article-paragraph {
  margin-top: 0;
}

.article-left-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-paragraph-image {
  width: 760px;
  height: 380px;
  border-radius: 6px;
  background-color: #f2f2f2;
  overflow: hidden;
}

.article-paragraph-image img {
  width: 100%;
}

.article-paragraph a {
  color: #f2791d;
  font-weight: 600;
  text-transform: uppercase;
}

.article-blog {
  margin-top: 60px;
}

@media only screen and (max-width: 1090px) {
  .article-image-holder {
    height: 100%;
  }

  .article-image-paragraph {
    flex-direction: column;
    gap: 40px;
  }

  .article-left-info {
    flex-direction: row;
    width: 100%;
  }

  .article-paragraph-image {
    width: 100%;
    height: 100%;
  }

  .article-title-container h1 {
    font-size: 32px;
  }

  .article-paragraph h3 {
    font-size: 20px;
  }

  .social-media-btn {
    margin-bottom: 60px;
  }

  .article-blog {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 540px) {
  .article-title-container h1 {
    font-size: 20px;
  }

  .article-left-info {
    flex-direction: column;
  }

  .blog-newsletter-title {
    padding-bottom: 10px;
  }

  .article-title-container {
    margin-top: 20px;
  }
}

/*---------------------------------- Company Page--------------------------------------- */

.company-hero-img {
  width: 90%;
  overflow: hidden;
  margin-bottom: 0px;
}

.company-hero-img img {
  width: 100%;
}

.company-content {
  margin-top: 120px;
}

.company-headline {
  font-size: 38px;
  color: #1e1e1e;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.company-headline span {
  color: #f07a22;
}

.company-para span {
  color: #4831d4;
  font-weight: 600;
}

.company-para {
  font-size: 16px;
  font-weight: 400;
  color: #6b6a6a;
  line-height: 25px;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 16px;
  width: 70%;
  text-align: center;
}

.company-subpara {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #6b6a6a;
  margin-top: 16px;
  margin-bottom: 40px;
}

.company-expert-container {
  background-color: #eeeeee;
  padding: 40px 0;
  margin-top: 60px;
  margin-bottom: 60px;
}

.company-expert-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
}

.company-expert-info h3 {
  font-size: 22px;
  font-weight: 500;
  color: #4831d4;
  margin: 0;
  margin-bottom: 20px;
}

.company-expert-info ul {
  margin: 0 12px;
  padding: 0;
}

.company-expert-info li {
  font-size: 16px;
  padding: 12px 0;
}

.advance-tech-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}

.company-img-div {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.company-img-div img {
  width: 100%;
  text-align: center;
}

.company-expert-img img {
  width: 100%;
}

.company-data-container {
  margin-bottom: 120px;
}

.company-div {
  background-color: #fff;
  border: 1px solid#d8e2e7;
  border-radius: 6px;
  padding: 20px 12px;
  text-align: center;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.company-div h3 {
  font-size: 22px;
  font-weight: 500;
  color: #4831d4;
}

@media only screen and (max-width: 1025px) {
  .company-expert-info {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .company-subpara,
  .company-para {
    width: 90%;
  }

  .company-headline {
    font-size: 24px;
  }

  .advance-tech-div {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
  }
}