* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --main-color: #ff005f;
  --main-bg-color: #eef0f6f7;
  --text-color: #140234;
}

/* Start Global Components */
body {
  background-color: #fff;
  font-family: sans-serif;
  font-family: "Roboto", sans-serif;
}

ul {
  list-style: none;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

hr {
  border-color: var(--main-bg-color);
  margin-bottom: 40px;
}
.container {
  max-width: 1170px;
  margin: auto;
  padding: 80px 0;
}

.section-heading {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.section-heading .main-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 1000;
}

.section-heading .description-heading {
  font-size: 1.2rem;
  color: #777;
}

.section-heading.center-heading {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #140234;
}
.section-heading.center-heading .main-heading {
  font-size: 3rem;
}
.section-heading.center-heading .description-heading {
  font-size: 1.2rem;
}

.btn {
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 25px;
}

.outline-btn {
  border: 2px solid var(--main-bg-color);
  transition: 0.2s;
  color: var(--text-color);
  border-radius: 25px;
}

.outline-btn:hover {
  border-color: var(--main-color);
  box-shadow: 0px 0px 5px var(--main-color);
}

.btn-white {
  display: inline-block;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-right: 10px;
  transition: 0.2s;
}

.btn-white:hover {
  background-color: var(--main-color);
  color: #fff;
}

.arrows-btn {
  margin-top: 50px;
}

.arrows-btn .btn {
  padding: 10px 12px;
  margin-left: 10px;
}

.read-more-btn {
  font-weight: 500;
}

.read-more-btn,
.read-more-btn .arrow-icon {
  color: #777;
  font-size: 0.86rem;
  transition: 0.5s;
}
.read-more-btn:hover,
.read-more-btn:hover .arrow-icon {
  color: #ff005f;
}
.read-more-btn:hover .arrow-icon {
  transform: translateX(4px);
}

.read-more-btn .arrow-icon {
  padding-left: 5px;
}

.download-btns-box a {
  position: relative;
  padding-left: 40px;
  border-radius: 10px;
  font-size: 1rem;
}

.download-btns-box a::before {
  position: absolute;
  font: var(--fa-font-brands);
  left: 15px;
  top: 10px;
}

.download-btns-box a:nth-child(1)::before {
  content: "\f179";
}
.download-btns-box a:nth-child(2)::before {
  content: "\f3ab";
}

/* End Global Components */

/* Start Main-Header */
.main-header {
  background-color: var(--main-bg-color);
  color: var(--text-color);
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding-bottom: 60px;
  padding-top: 60px;
}

.main-header nav {
  display: flex;
  color: inherit;
  justify-content: space-between;
  align-items: center;
  width: 82%;
}

.main-header .main-nav-list {
  display: flex;
  gap: 30px;
}

.main-header .main-nav-list .main-nav-link a {
  color: var(--text-color);
}
.main-header .main-nav-list .main-nav-link a:hover {
  color: var(--main-color);
}

.main-header .main-nav .main-nav-btn {
  background-color: var(--main-color);
  color: white;
  font-weight: bolder;
}

.checkbox,
.hamburger-lines {
  display: none;
}

/* End Main-Header */

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--main-bg-color);
  color: var(--text-color);
}
.hero-section .hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text-box {
  width: 50%;
}

.hero-text-box .heading-primary {
  font-size: 3.5rem;
  font-weight: 400;
}

.hero-text-box .hero-description {
  margin: 20px 0;
  font-size: 1.2rem;
}

.hero-email-input {
  margin: 30px 0;
}

.hero-email-input input:focus {
  border: none;
  outline: none;
}

.hero-email-input input {
  height: 60px;
  width: 60%;
  padding: 20px 60px;
  font-size: 1.05rem;
  border-radius: 50px;
  border-color: transparent;
  box-shadow: -3px 0px 0px var(--main-color), 5px 10px 10px #a2a2a29b;
}

.hero-email-input .msg-icon {
  position: absolute;
  z-index: 10;
  color: #8c9ebe;
  line-height: 60px;
  padding-left: 20px;
}

.hero-email-input .arrow-icon {
  position: absolute;
  color: var(--main-color);
  line-height: 60px;
  margin-left: -40px;
}

.feedback-cont {
  display: flex;
  width: 300px;
  align-items: center;
  justify-content: center;
}
.feedback-cont .feedback-imgs {
  display: flex;
  margin-left: 120px;
}
.feedback-cont .feedback-imgs img {
  width: 45px;
  border-radius: 50px;
  outline: 2px solid #fff;
  margin-left: -80px;
  position: sticky;
}

.feedback-cont .feedback-imgs img:hover {
  z-index: 999;
}
.feedback-text {
  font-size: 0.9rem;
}
.feedback-text strong {
  display: block;
  font-size: 1.5rem;
}
.hero-img-box img {
  height: 600px;
  width: 757px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Services Section */
.our-service-section {
  color: var(--text-color);
}
.our-service-section .services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
}
.service-card {
  border: 1px solid var(--main-bg-color);
  border-radius: 15px;
  padding: 50px;
}
.service-card .service-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 50px;
}

.service-card .service-icon.fa-bolt {
  background-color: #009dff;
}
.service-card .service-icon.fa-home {
  background-color: #ff0086;
}
.service-card .service-icon.fa-link {
  background-color: #503fff;
}
.service-card .service-icon.fa-bell {
  background-color: #ff6f34;
}
.service-card .service-icon.fa-gear {
  background-color: #7963fa;
}
.service-card .service-icon.fa-lock {
  background-color: #47b675;
}

.service-card .service-title,
.service-card .service-description {
  margin-bottom: 20px;
}
.service-card .service-description {
  color: #777;
  line-height: 1.5;
}

/* End Service Section */

/* Start About Section */
.about-section .container {
  display: flex;
  padding: 0 40px 80px;
  background-color: var(--main-bg-color);
  color: var(--text-color);
  margin-bottom: 80px;
}

.about-section picture {
  width: 50%;
  overflow: hidden;
}

.about-section .about-text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
}

.about-section .about-text-box .main-about-text {
  font-weight: 1000;
  font-size: 45px;
}
.about-section .about-text-box .main-about-text span {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: var(--main-color);
}

.about-section .about-text-box .description-about-text {
  width: 90%;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #777;
  margin: 20px 0;
}

.about-section .about-text-box .about-features-cont {
  display: flex;
  flex-wrap: wrap;
}

.about-section .feature {
  position: relative;
  padding-left: 50px;
  width: 50%;
}

.about-section .feature .feature-icon {
  position: absolute;
  color: #5ed887;
  font-size: 2rem;
  left: 0;
  top: 0;
}
.about-section .about-features-cont .feature h3 {
  margin-bottom: 20px;
}
.about-section .about-features-cont .feature p {
  color: #777;
  line-height: 1.5;
}
/* End About Section */

/* Start Feature Section */
.moods-section {
  padding: 50px 0;
  background-color: #140234;
  color: #fff;
}

.moods-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.moods-section .heading-text {
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.moods-section .heading-text h2 {
  max-width: 500px;
  margin: auto;
  font-size: 3rem;
}

.moods-section .heading-text p {
  color: #e7e7e7;
  margin-top: 20px;
  margin-bottom: 80px;
}

.moods-section .feature-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
}

.moods-section .feature-cont .feature-card {
  padding: 30px;
  margin: 20px;
  border: 1px solid #3f3f3f;
  border-radius: 10px;
  width: 80%;
}

.moods-section .feature-cont .feature-card h3 {
  position: relative;
  padding-left: 35px;
  font-size: 1.5rem;
}

.moods-section .feature-cont .feature-card h3::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50px;
  left: 0;
  top: 5px;
}

.moods-section .feature-cont .feature-card:nth-child(1) h3::before {
  background-color: rgba(255, 0, 95, 0.98);
  box-shadow: 0 0 0 6px rgba(66, 2, 62, 0.929);
}

.moods-section .feature-cont .feature-card:nth-child(2) h3::before {
  background-color: rgb(0, 195, 255, 0.98);
  box-shadow: 0 0 0 6px rgba(0, 66, 63, 0.929);
}

.moods-section .feature-cont .feature-card:nth-child(3) h3::before {
  background-color: rgb(48, 255, 48);
  box-shadow: 0 0 0 6px rgba(40, 66, 0, 0.929);
}

.moods-section .feature-cont .feature-card p {
  margin-left: 35px;
  margin-top: 10px;
  color: #bcc6d1;
  font-weight: bold;
}
.moods-section picture img {
  max-width: 100%;
}

/* End Feature Section */
/* Start articles Section */

.articles-section .stat-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 6rem;
  color: var(--text-color);
}

.articles-section .stat-container .stat-card {
  padding: 40px;
  box-shadow: 2px 20px 20px var(--main-bg-color);
  border-radius: 10px;
}
.articles-section .stat-container .stat-card h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.articles-section .stat-container .stat-card p {
  color: #777;
}

.articles-section .article-cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.articles-section .article-cont article {
  display: flex;
  width: 65%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  color: var(--text-color);
}

.articles-section .article-cont article .article-image {
  position: relative;
  max-width: 100%;
}
.articles-section .article-cont article .article-image::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  top: 0;
  left: 0;
}

.articles-section .article-cont article header {
  display: flex;
  flex-wrap: wrap;
  margin-left: 100px;
  gap: 20px;
}
.articles-section .article-cont article header h2 {
  font-size: 1.8rem;
}
.articles-section .article-cont article header p {
  font-size: 1.05rem;
  color: #777;
}

.articles-section .article-cont aside {
  display: flex;
  width: 30%;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
.articles-section .article-cont aside img {
  width: 370px;
}
/* End articles Section */
/* Start Download Section */
.download-section {
  background-color: var(--main-bg-color);
  color: var(--text-color);
  line-height: 1.3;
}
.download-section .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 150px 0;
}
.download-section .container .download-text-box {
  max-width: 450px;
}
.download-section .container .download-text-box h3 {
  font-size: 0.9rem;
  color: var(--main-color);
}
.download-section .container .download-text-box h2 {
  font-size: 2.8rem;
  font-weight: 600;
}
.download-section .container .download-text-box p {
  color: #777;
  margin: 20px 0;
}

.download-section .container .download-btns-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.download-section .container .download-btns-box a {
  padding: 10px 30px 10px 60px;
}
.download-section .container .download-btns-box a:nth-child(1) {
  background-color: #140234;
  color: #fff;
}
.download-section .container .download-btns-box a {
  background-color: #fff;
  border: 2px solid #140234;
  color: #140234;
}
.download-section .container .download-btns-box a strong {
  font-size: 1.2rem;
}
.download-section .container .download-btns-box a::before {
  font-size: 2.5rem;
  left: 10px;
  top: 10px;
}

/* End Download Section */
/* Start plans Section */
.plans-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--text-color);
}

.plans-section .container .switch-btn.outline-btn {
  padding: 8px 4px;
}

.plans-section .container .switch-btn .monthly-btn {
  background-color: var(--main-color);
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  padding: 5px 15px;
}

.plans-section .plans-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}

.plans-section .plans-container .plan-card {
  width: 350px;
  padding: 40px;
  border-radius: 10px;
  border: 2px solid var(--main-bg-color);
  margin-bottom: 50px;
}
.plans-section .plans-container .plan-card.most-popular {
  border-top: 3px solid var(--main-color);
  box-shadow: 0px 10px 20px #a2a2a29b;
  position: relative;
}

.plans-section .plans-container .plan-card.most-popular::before {
  position: absolute;
  content: "Most Popular";
  font-weight: 600;
  background-color: #4a25f8;
  color: #fff;
  padding: 8px 10px;
  border-radius: 20px 0 0px 20px;
  right: -2px;
}

.plans-section .plans-container .plan-card .plan-price {
  position: relative;
  font-size: 1.2rem;
  color: var(--text-color);
  margin: 15px 0px;
}
.plans-section .plans-container .plan-card .plan-price span {
  font-size: 2.5rem;
  font-weight: 600;
}
.plans-section .plans-container .plan-card .plan-price sup {
  position: absolute;
  font-size: 1.2rem;
  top: 0;
  left: -10px;
}

.plans-section .plans-container .plan-card .plan-description {
  color: #777;
  margin-bottom: 30px;
}

.plans-section .plans-container .plan-card .plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 70px;
}
.plans-section .plans-container .plan-card .plan-features .feature {
  padding-left: 30px;
  font-size: 0.89rem;
  color: #3f3f3f;
  position: relative;
}
.plans-section .plans-container .plan-card .plan-features .feature::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  background-color: #eef2fe;
  color: #3ea8b4;
  font-size: 1.2rem;
  border-radius: 50px;
  padding: 2px 3px;
  left: -3px;
  top: -2px;
}

.plans-section .plans-container .plan-card.most-popular a {
  background-color: var(--main-color);
  color: #fff;
  border: none;
}

/* End plans Section */
/* Start Testimonials Section */

.testimonials-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  background-image: url(../images/bg-Testimonials.jpg);
  /* background-repeat: no-repeat; */
  background-size: cover;
  min-height: 450px;
  color: #fff;
}

.testimonials-section .container .picture-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.testimonials-section .container .picture-card img {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.testimonials-section .container .picture-card .stars-container {
  color: rgb(241, 206, 11);
}
.testimonials-section .container .picture-card .reviews {
  color: #c6d1e2;
  font-weight: 600;
}

.testimonials-section .container .testimonials-text-cont {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 650px;
}
.testimonials-section .container .testimonials-text-cont p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
.testimonials-section .container .testimonials-text-cont .testimonials-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.testimonials-section .container .testimonials-text-cont .testimonials-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.testimonials-section .container .testimonials-text-cont .testimonials-info p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #c6d1e2;
}
.testimonials-section
  .container
  .testimonials-text-cont
  .testimonials-info
  .arrows-btn {
  margin: 0;
}

/* End Testimonials Section */
/* Start platforms Section */

.platforms-section .sponser-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 60%;
  margin: auto;
}
.platforms-section .sponser-cont .sponser-card {
  box-shadow: 0 10px 30px #bcc6d1;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  padding: 25px;
}
/* End platforms Section */

/* Start footer Section */
.footer-section {
  background-color: var(--main-bg-color);
  color: var(--text-color);
}

.footer-section .container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.footer-section .container .footer-top-cont {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 300px;
}

.footer-section .container .footer-top-cont .footer-logo .description {
  margin: 25px 0;
  color: #3f3f3f;
  line-height: 1.5;
}

.footer-section .container .footer-top-cont .footer-logo .social-media-cont {
  margin: 30px 0 20px;
}
.footer-section
  .container
  .footer-top-cont
  .footer-logo
  .social-media-cont
  .btn-white {
  width: 35px;
  height: 35px;
  padding: 0;
  line-height: 35px;
  text-align: center;
}

.footer-section .container .footer-top-cont .footer-title {
  margin-bottom: 20px;
}

.footer-section .container .footer-top-cont .footer-links-cont,
.footer-section .container .footer-top-cont .get-in-touch-cont {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  gap: 10px;
}
.footer-section .container .footer-top-cont .footer-links-cont li a {
  color: #3f3f3f;
  font-weight: 400;
}
.footer-section .container .footer-top-cont .get-in-touch-cont li a {
  display: flex;
  color: #777;
}
.footer-section .container .footer-top-cont .footer-links-cont li a:hover,
.footer-section .container .footer-top-cont .get-in-touch-cont li a:hover {
  color: var(--main-color);
}
.footer-section
  .container
  .footer-top-cont
  .get-in-touch-cont
  li
  .get-touch-icon {
  color: #56befe;
  padding-right: 15px;
}

.footer-section .container .copyright {
  display: flex;
  justify-content: space-between;
}
.footer-section .container .copyright .download-btns-box a:nth-child(2) {
  background-color: transparent;
  border: 2px solid #e7e7e7;
}
.footer-section .container .copyright .download-btns-box a:nth-child(2):hover {
  border: 2px solid var(--main-color);
}

.footer-section .container .copyright-p {
  color: #3f3f3f;
}
/* End footer Section */
/* End BackToTop Arrow */

.back-to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 10px;
  padding: 10px 12px;
  background-color: var(--main-color);
  opacity: 0.6;
  transition: 0.2s;
}
.back-to-top-btn:hover {
  transform: translateY(-10px);
}
.back-to-top-btn .icon-arrow {
  color: var(--main-bg-color);
}
/* End footer Section */

/* Media Queries  */

@media (max-width: 1200px) {
  html {
    font-size: 10px;
  }
  .container {
    max-width: 90%;
    padding: 80px 0;
  }
  .hero-section .container {
    padding-bottom: 150px;
  }
  .hero-text-box {
    width: 100%;
  }
  .hero-email-input input {
    width: 90%;
  }
  .hero-img-box img {
    height: calc(600px / 4);
    width: calc(757px / 4);
  }
  .marketing-img {
    display: none;
  }
  .about-section picture {
    display: none;
  }
  .about-section .container {
    justify-content: center;
  }
  .about-section .about-text-box {
    width: 90%;
  }
  .moods-section .feature-cont {
    width: 90%;
    margin-bottom: 30px;
  }
  .about-section .feature {
    width: 250px;
    margin-bottom: 20px;
  }

  /* articles section  */

  .articles-section .stat-container .stat-card {
    width: 400px;
  }
  .articles-section .article-cont article {
    width: 100%;
  }
  .articles-section .article-cont article header {
    max-width: 770px;
    margin: 0;
  }
  .articles-section .article-cont aside {
    margin-top: 40px;
    width: 100%;
    justify-content: center;
  }
  .articles-section .article-cont aside img {
    width: 100%;
  }
  .articles-section .article-cont aside .arrows-btn {
    display: none;
  }

  .plans-section .plans-container .plan-card .plan-features {
    flex-direction: column;
  }

  .testimonials-section .container .testimonials-text-cont {
    width: 90%;
  }
  .testimonials-section
    .container
    .testimonials-text-cont
    .testimonials-info
    .arrows-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
  .section-heading.center-heading .main-heading {
    font-size: 2.5rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .download-section .container .download-btns-box a {
    padding: 10px 10px 10px 50px;
  }

  .main-nav-btn {
    margin-right: 55px;
  }
  .checkbox {
    display: block;
    position: absolute;
    height: 32px;
    width: 32px;
    z-index: 5;
    right: 30px;
    opacity: 0;
    cursor: pointer;
  }
  .hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 26px;
    width: 32px;
    position: absolute;
    right: 30px;
    z-index: 2;
    margin-left: 20px;
  }
  .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
  .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .main-header nav {
    justify-content: flex-end;
  }

  .main-header nav .main-nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: calc(100vh - 100px);
    background-color: var(--main-bg-color);
    box-shadow: inset 0 0 2000px rgb(255 255 255 / 50%);
    text-align: center;
    top: 100px;
    left: 0px;
    z-index: 9999;
    transition: transform 0.5s ease-in-out;
    transform: translate(-100%);
  }

  .main-header nav .main-nav-list li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }

  input[type="checkbox"]:checked ~ .main-nav-list {
    transform: translateX(0);
  }

  input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  .our-service-section .container header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .our-service-section .services-container {
    text-align: center;
  }

  .platforms-section .sponser-cont {
    width: 90%;
  }

  .footer-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }
  .footer-section .container .footer-top-cont {
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
    text-align: center;
  }
  .footer-section .container .footer-top-cont .footer-links-cont,
  .footer-section .container .footer-top-cont .get-in-touch-cont {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .footer-section .container .copyright {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-section .container .copyright .download-btns-box a {
    margin-bottom: 15px;
  }
  .footer-section .container .copyright-p {
    margin-top: 20px;
  }
}
