:root {
  --main-bg: #eef1f6;
  --main-bg-2: #eef0f4;
  --main-color: #ff3e66;
  --main-title-color: #0e1133;
  --bg-shadow: 0px 20px 35px rgba(0, 0, 0, 0.1);
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ######################## */
/* custom global classes */
/* ######################## */
.page-container {
  width: 85%;
  margin: 0 auto;
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ######################## */
/* hero component */
/* ######################## */
.hero-title {
  line-height: 2;
}
.hero-title h2 {
  font-size: 45px;
  font-weight: bold;
  color: var(--main-title-color);
  line-height: 1.1;
  margin-bottom: 10px !important;
  letter-spacing: -0.5px;
}
.hero-title p {
  color: #666;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 500px) {
  .hero-title h2 {
    font-size: 32px;
  }
}
/*####################*/
/* Scroll btn */
/*####################*/
.scroll-btn {
  position: fixed;
  bottom: 40px;
  right: -50px;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  color: #fff;
  opacity: 0.5;
  border-radius: 10px;
  z-index: 80;
  cursor: pointer;
  transition: 2s;
}
.scroll-btn:hover {
  opacity: 0.8;
}
.show-scroll-btn {
  right: 30px;
}
/*####################*/
/* navbar SECTION */
/*####################*/
.nav-bar {
  padding: 30px 0;
}
@media (max-width: 768px) {
  .nav-bar {
    padding: 16px 0;
  }
}
.main-nav.page-container {
  width: 90%;
}
/* fixed nav-bar */
.nav-bar-fixed {
  animation: fide-down 0.5s linear;
  box-shadow: var(--bg-shadow);
  position: fixed;
  width: 100%;
  top: 0;
  background: #eef1f6d4;
  backdrop-filter: blur(5px);
  z-index: 98;
}
@keyframes fide-down {
  from {
    transform: translateY(-80px);
    opacity: 0.7;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-list {
  padding: 0 !important;
  list-style: none;
  position: relative;
  gap: 0px !important;
  z-index: 99;
}

.nav-list li.nav-link > ul {
  list-style: none;
  line-height: 1.9;
  background: #fff;
  padding: 5px 10px !important;
}
.nav-list li > ul > li.nav-link {
  padding: 5px 10px;
  border-bottom: 1px solid var(--main-color);
}

.nav-content .close-btn > svg,
.nav-content .menu-icon > svg {
  /* close-btn */
  /* menu-icon */
  display: none;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.nav-content svg:hover {
  color: var(--main-color);
}
.nav-list li.nav-link a {
  color: #111;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}
.nav-list li.nav-link > svg {
  font-size: 10px;
  margin-left: 5px;
  color: #555;
  transition: 0.3s;
}

.nav-list li.nav-link.active a,
.nav-list li.nav-link:hover a,
.nav-list li.nav-link:hover svg,
.nav-list li.nav-link.active svg {
  color: var(--main-color) !important;
}
.start-btn {
  background-color: var(--main-color);
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.start-btn:active,
.start-btn:hover {
  color: #fff;
  background-color: #fc234e;
}
@media (max-width: 992px) {
  .nav-content {
    flex-direction: row-reverse !important;
    justify-content: end !important;
  }
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    background: #eef1f6;
    width: 350px;
    height: 100vh;
    padding-top: 200px !important;
    transform: translateX(400px);
    filter: drop-shadow(var(--bg-shadow));
    transition: 0.7s;
  }

  /* add open-menu by js when click on open btn */
  /* remove open-menu by js when click on remone btn */
  .open-menu {
    transform: translateX(0) !important;
  }
  .nav-content .close-btn > svg,
  .nav-content .menu-icon > svg {
    display: block;
  }
  .nav-content .close-btn {
    position: absolute;
    top: 50px;
    right: 50px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .nav-content .close-btn svg {
    font-size: 20px !important;
  }
  .start-btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}
@media (max-width: 400px) {
  .nav-list {
    width: 100%;
  }
}
/*####################*/
/* landing SECTION */
/*####################*/
.landing {
  width: 100%;
  background-color: var(--main-bg);
  /* background-color: #999; */
}
.landing-content {
  display: flex;
  align-items: end;
  justify-content: start;
  padding-top: 200px;
}

.landing .text {
  flex: 1.25;
  margin-left: 80px;
  margin-bottom: 150px;
}
.landing .text h1 {
  line-height: 1.1;
  font-size: 65px;
  font-weight: 400;
  color: var(--main-title-color);
}

.landing .text h1 span {
  font-weight: bold;
  display: inline;
}
.landing .text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-title-color);
}
.landing-img {
  flex: 2.1;
  position: relative;
}
@media (max-width: 1200px) {
  .landing-content {
    padding-top: 100px;
  }
}
@media (max-width: 786px) {
  .landing-content {
    flex-direction: column;
    padding-top: 100px;
  }
  .landing .text {
    margin-bottom: 20px !important;
    margin-left: 40px !important;
  }
  .landing-img {
    width: 200px;
  }
}
@media (max-width: 500px) {
  .landing .text h1 {
    font-size: 42px;
  }
}
.input-container {
  width: 85% !important;
  position: relative;
}
@media (max-width: 500px) {
  .input-container {
    width: 100% !important;
  }
}
form.form .input {
  border: none;
  border-left: 3px solid var(--main-color);
  filter: drop-shadow(0px 15px 35px rgba(0, 0, 0, 0.1));
  outline: none;
}
.icon-arrow,
.icon-email {
  position: absolute;
}
.icon-arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  color: var(--main-color);
}
.icon-email {
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  color: #aaa;
}
.feedback {
  margin-left: 20px;
  gap: 20px;
  align-items: center;
}
.feedback .img-container {
  width: 50px;
  border-radius: 50%;
  padding: 3px;
  background: #fff;
  margin-left: -20px;
  z-index: 2;
}
.feedback .img-container:nth-child(1) {
  z-index: 6;
}
.feedback .img-container:nth-child(2) {
  z-index: 5;
}
.feedback .img-container:nth-child(3) {
  z-index: 4;
}
.feedback .img-container:nth-child(4) {
  z-index: 3;
}
.feedback .img-container img {
  border-radius: 50%;
  width: 100%;
}
.feedback-text {
  line-height: 1;
}
.feedback-text span {
  font-size: 24px;
  font-weight: 700;
  color: var(--main-title-color);
}
.feedback-text p {
  margin: 0;
  color: #333;
}
/* #################### */
/* About section */
/* #################### */
@media (max-width: 992px) {
  .about .page-container {
    flex-direction: column;
    gap: 27px;
  }
  .about .hero-title {
    margin-right: auto;
  }
  .view-btn {
    margin-right: auto;
  }
}
.view-btn {
  padding: 10px 30px 12px 30px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid var(--main-bg-2);
  width: fit-content;
  display: block;
  color: var(--main-title-color);
}

.view-btn svg {
  transition: 0.5s;
  margin-left: 3px;
}
.view-btn:hover svg {
  transform: translateX(7px);
}
.about-card {
  border: 1px solid #eef1f6;
  border-radius: 10px;
  padding: 50px;
}
.icon-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 30px;
  color: #fff;
}
.icon-container.icon-1 {
  background-color: #2facfc;
}
.icon-container.icon-2 {
  background-color: #ea4d89;
}
.icon-container.icon-3 {
  background-color: #3679ff;
}
.icon-container.icon-4 {
  background-color: #f67842;
}
.icon-container.icon-5 {
  background-color: #6b88f7;
}
.icon-container.icon-6 {
  background-color: #3bb094;
}
.about-card h3 {
  font-size: 22px;
}
.about-card p {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}
.about-card .link {
  color: #666;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
.about-card .link:hover svg {
  transform: translateX(7px);
}
.about-card .link svg {
  font-size: 14px;
  transition: 0.3s;
}
/* ##################### */
/* Marketing Sectopn*/
/* ##################### */
.marketing {
  padding-top: 0 !important;
}
.marketing-content {
  background-color: var(--main-bg);
  max-height: 450px;
  overflow: hidden;
  padding: 20px 25px;
}

.marketing-content .img-container {
  align-self: self-start;
  flex: 1;
}
.marketing .marketing-content > .text {
  flex: 1;
  padding-top: 25px;
}
.marketing-content > .text span {
  color: var(--main-color);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  font-size: 15px;
}
.marketing-content > .text h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--main-title-color);
  width: 85%;
}
.marketing-content > .text p {
  color: #777;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 30px;
  width: 80%;
}
.marketing-features {
  width: 100%;
}
.marketing-content .img-container {
  position: relative;
  transform: translateX(40px);
  padding-top: 5px;
}

.marketing-content .box {
  gap: 14px;
}
.marketing-content .box .icon-cover {
  width: 25px;
  flex-shrink: 0;
  height: 25px;
  background: #32c36a;
  color: #fff;
  border-radius: 50%;
  transform: translateY(7px);
}
.marketing-content .box h5 {
  color: var(--main-title-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .marketing-content .img-container {
    transform: translateX(-30px);
  }
  .marketing-content > .text h2 {
    font-size: 32px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .marketing-content .img-container {
    transform: translateX(0px);
  }

  .marketing-content {
    max-height: fit-content !important;
  }
  .marketing-features {
    flex-direction: column;
  }
  .marketing- h2 {
    width: 100%;
    font-size: 32px;
  }
}

/* ###################### */
/* Features Section  */
/* ###################### */
.features {
  background-color: var(--main-title-color);
}
.features-header {
  color: #fff;
  text-align: center;
}
.features-header > h2 {
  font-size: 42px;
  font-weight: bold;
  margin: auto;
  margin-bottom: 15px;
  width: 400px;
}
@media (max-width: 500px) {
  .features-header > h2 {
    width: 100%;
    font-size: 32px;
  }
}
.features-header > p {
  font-size: 18px;
  font-weight: 400;
  margin: auto;
}
.features-content .boxes {
  flex: 1;
}
@media (min-width: 1200px) {
  .features-content .boxes {
    transform: translateX(80px);
  }
}
.features-content .features-img {
  flex: 1;
}
.features .boxes .box {
  border: 1px solid;
  border-radius: 7px;
  width: fit-content;
  padding: 20px 50px 20px 30px;
}
.features .boxes .box h3 {
  font-size: 24px;
}
@media (max-width: 500px) {
  .features .boxes .box h3 {
    font-size: 16px;
  }
}
.features .boxes .box p {
  font-size: 14px;
  font-weight: 500;
}
.features .spot-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(7px);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.features .spot-color::before {
  content: "";
  position: absolute;
  width: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  border-radius: 50%;
  z-index: 2;
}
.spot-1 {
  background-color: #ff3f66;
}
.spot-1::before {
  background-color: #ff3f651c;
}
.spot-2 {
  background-color: #2eacfc;
}
.spot-2::before {
  background-color: #2eadfc1a;
}
.spot-3 {
  background: #33c956;
}
.spot-3::before {
  background: #33c9561c;
}
/* ##################### */
/* Followers  Section */
/* ##################### */
/* .followers {
} */
.followers .box {
  box-shadow: var(--bg-shadow);
  padding: 30px 0;
  width: 100%;
  margin: auto;
  border-radius: 7px;
}
.followers .box > span {
  font-size: 36px;
  font-weight: bold;
  color: var(--main-title-color);
}
.followers .box > span > span {
  font-weight: 400;
}
.followers .box > p {
  font-weight: 500;
  color: #777;
  font-size: 14px;
}
/* ######################### */
/* Video subSection */
/* ######################### */
.video-img {
  position: relative;
}
.icon-video {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--main-color);
  cursor: pointer;
}
.icon-video::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid;
  border-color: var(--main-bg) var(--main-bg) transparent var(--main-bg);
  border-radius: 50%;
}
.icon-video::after {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  border: 1px solid;
  border-color: transparent transparent var(--main-bg) transparent;
  border-radius: 50%;
}
.icon-video svg {
  font-size: 40px;
  color: var(--main-color);
  transform: translateX(-7px) rotate(270deg);
}
.video-component .text {
  margin-left: 100px;
}
.video-component .text h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--main-title-color);
}
.video-component .text p {
  color: #666;
  margin-bottom: 40px;
}
.video-content {
  flex-basis: 67%;
}
/* Video  Style*/
.video-layout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
  display: none;
}
.video-show {
  display: flex !important;
}
.video-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 700px;
  z-index: 101;
}
.video-container video {
  width: 100%;
}

@media (max-width: 768px) {
  .video-container {
    width: 100%;
  }
}

/* ############### */
.video-component .img-2 {
  flex-basis: 33%;
}
.control-btns {
  width: fit-content;
  margin-left: auto;
}
.control-btns .prev,
.control-btns .next {
  width: 50px;
  height: 50px;
  border: 2px solid var(--main-bg-2);
  border-radius: 50%;
  color: #777;
  cursor: pointer;
  transition: 0.3s;
}
.control-btns .prev:hover,
.control-btns .next:hover {
  background-color: var(--main-color);
  color: var(--main-bg);
}
@media (max-width: 786px) {
  .video-component > .flex {
    display: flex;
    flex-direction: column !important;
  }
  .video-content {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  .video-component .img-2 {
    flex-basis: 100%;
    margin: auto;
  }
  .video-component .text {
    margin: 0px;
  }
  .control-btns {
    display: none !important;
  }
}
/* ##################### */
/* Download Section  */
/* ##################### */
.download {
  background-color: var(--main-bg);
}
.download > div > .text {
  padding: 50px 0;
  width: 500px;
}
.download .title > span {
  color: var(--main-color);
  font-size: 15px;
  font-weight: 500;
}
.download .title > h2 > span {
  font-size: 48px;
  font-weight: 700;
  color: var(--main-title-color);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.download .title > p {
  color: #333;
  font-size: 18px;
}

.download-options button {
  border: 1px solid var(--main-title-color);
  padding: 20px 35px 16px 25px;
  border-radius: 15px;
  cursor: pointer;
}
.download-options .ios {
  background: var(--main-title-color);
  margin-right: 10px;
}
.download-options .android {
  background-color: #fff;
}
.download-options button svg {
  font-size: 42px;
  margin-right: 10px;
}
.download-options .ios svg {
  color: #fff;
}
.download-options .android svg {
  color: var(--main-title-color);
}
.download-options button .text {
  text-align: left;
  line-height: 1;
}
.download-options .ios .text {
  color: #fff;
}
.download-options .android .text {
  color: var(--main-title-color);
}
.download-options button .text .download-for {
  letter-spacing: -0.5px;
  font-size: 16px;
  font-weight: 600;
}
.download-options button .text .type {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 786px) {
  .download .text {
    width: auto !important ;
  }
  .download-options button {
    padding: 10px 12px;
  }
  .download-options button .text .download-for {
    font-size: 14px;
  }
  .download-options button .text .type {
    font-size: 22px;
  }
  .download .title > h2 > span {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .download-options button.ios {
    margin: 0;
  }
  .download-options button {
    justify-content: center;
  }
  .download-options button .text .type {
    font-size: 25px;
  }
  .download-options button svg {
    font-size: 30px;
  }
}
/* ################## */
/* Pricing Section */
/* ################## */
.pricing .time-controler {
  font-weight: 500;
  width: 200px;
  border: 3px solid var(--main-bg-2);
  padding: 3px 20px;
}
.pricing .monthly,
.pricing .yearly {
  padding: 3px 0 6px 3px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}
.is-light {
  color: #fff !important;
}
.pricing .light {
  position: absolute;
  top: 3px;
  border-radius: 50px;
  width: 50%;
  height: calc(100% - 6px);
  background: var(--main-color);
  z-index: -1;
  transition: 0.5s;
}
.right {
  right: 3px !important;
}
.left {
  left: 3px !important;
}
/* add this class to hidden cards  */
.cards-hidden {
  display: none;
}
/* ########## */
.pricing .row > div {
  margin-bottom: 30px !important;
}
.princing-options .box {
  padding: 40px;
  border: 1px solid var(--main-bg-2);
  border-radius: 7px;
  position: relative;
}
.princing-options .box header {
  border-bottom: 1px solid var(--main-bg-2);
}
.princing-options .box header .title {
  font-size: 22px;
  font-weight: 500;
  color: var(--main-title-color);
}
.princing-options .box header .price .by {
  transform: translateY(-15px);
}
.princing-options .box header .price .num {
  font-size: 42px;
  font-weight: 700;
  color: var(--main-title-color);
}
.princing-options .box header .price .in-time {
  color: #777;
  letter-spacing: -0.5px;
  transform: translateX(-5px);
}
.princing-options .box header .price .comment {
  color: #666;
  font-size: 15px;
}
.princing-options .box header .price .comment svg {
  font-size: 13px;
}
/*  green-option */
.princing-options .box .content.green-option ul li .icon-cover {
  background-color: #effaf3;
}
.princing-options .box .content.green-option ul li .icon-cover svg {
  color: #62d18c !important;
}
/* ############### */
.princing-options .box .content ul li {
  padding: 5px 0;
}
.princing-options .box .content ul li .icon-cover {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #eef4fe;
}
.princing-options .box .content ul li .icon-cover svg {
  color: #78a2f8;
}
.princing-options .box .content ul li h6 {
  font-size: 15px;
}
.princing-options .box footer {
  padding: 15px 0 0;
}
.princing-options .box .view-btn:hover {
  background-color: var(--main-color) !important;
  color: #fff !important;
}
.best-option {
  border-top: 3px solid var(--main-color) !important;
  box-shadow: var(--bg-shadow) !important;
}
.popular-option::before {
  content: "Most Popular";
  position: absolute;
  top: 25px;
  right: 0px;
  background: #2a6df5;
  padding: 3px 15px 5px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-start-start-radius: 40px;
  border-end-start-radius: 40px;
}
.best-option .view-btn {
  background: var(--main-color) !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* ########### */
/*START Testimonials */
.testimonials .carousel {
  height: 420px;
  overflow: hidden;
}
.testimonials .carousel-inner {
  position: relative;
  width: 70%;
  overflow: hidden;
}
.testimonials .control-btns {
  position: absolute !important;
  bottom: 30%;
  right: 150px;
  width: 70px;
}
.testimonials .prev,
.testimonials .next {
  flex-shrink: 0 !important;
}
.bg-cover {
  /* background-image: url("../images/design-features.jpg");
  background-position: center;
    background-size: cover; */
  background-color: #2c6ff4;
  position: relative;
  overflow: hidden;
}

.testimonials .stars svg {
  color: #ffb848;
  font-size: 14px;
}
.testimonials .info span,
.testimonials .review {
  font-size: 14px;
  color: #a7c3fa;
}
.testimonials .testimonial-content {
  margin: auto;
  gap: 40px;
}
.testimonials p {
  margin: 0 0 30px 0;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}
.testimonials h4 {
  color: #fff;
  font-size: 22px;
  margin: 0;
  transform: translateY(3px);
}
.testimonials .carousel-item > div.d-flex {
  gap: 50px;
}

.carousel-control-next .button,
.carousel-control-prev .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(59, 93, 80, 0.1);
  color: var(--text-color);
  transition: 0.3s;
}
.carousel-control-next .button:hover,
.carousel-control-prev .button:hover {
  background: var(--main-color);
  color: #fff;
}
.carousel-control-next svg,
.carousel-control-prev svg {
  color: #fff;
}

.testimonials img {
  width: 140px;
  margin: 0.5rem auto;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 992px) {
  .testimonials .carousel-item > div.d-flex {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .testimonials .control-btns {
    bottom: 10%;
    right: 50px;
  }
  .testimonials .carousel {
    height: 480px;
  }
  .testimonials h4 {
    font-size: 20px;
  }
  .testimonials p {
    font-size: 15px;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 768px) {
  .testimonials .carousel-inner {
    width: 85%;
  }
  .testimonials .control-btns {
    display: none;
  }
  .testimonials .testimonial-content {
    padding: 0 20px;
  }
  .testimonials img {
    width: 100px;
  }
}
/* ######################## */
/* Sponsers section */
/* ######################## */
.sponsers .hero-title h2 {
  width: 500px;
  margin: auto;
}
.sponsers .d-flex {
  width: fit-content;
  gap: 30px;
  margin-bottom: 30px !important;
}
.sponsers .img-container {
  box-shadow: var(--bg-shadow);
  width: 100px;
  height: 100px;
  border-radius: 7px;
}
@media (max-width: 992px) {
  .sponsers .img-container {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .sponsers .hero-title h2 {
    font-size: 32px !important;
    width: auto !important;
  }
  .sponsers .d-flex {
    width: 300px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .sponsers .hero-title h2 {
    font-size: 28px !important;
  }
  .sponsers .d-flex {
    width: 235px !important;
  }
  .sponsers .img-container {
    width: 65px;
    height: 65px;
  }
}
/* ################# */
/* Footer section */
/* ################# */
footer.footer {
  background-color: var(--main-bg);
  padding: 70px 0;
}
footer.footer .row {
  padding-bottom: 90px !important;
  border-bottom: 1px solid #e1e5ec !important;
}

footer.footer .row h5 {
  font-weight: 600;
  color: var(--main-title-color);
  margin-bottom: 12px;
  font-size: 22px;
}
footer.footer .row ul li {
  padding: 3px 0;
}
footer.footer .row ul li a {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
footer.footer .row ul li a:hover {
  color: #777;
}

footer.footer .touch {
  margin-bottom: 10px;
}
footer.footer .touch span {
  color: #444;
}
footer.footer .touch svg {
  color: #6a76fa;
  transform: translateY(7px);
}
footer.footer .row div > p {
  color: #333;
  max-width: 260px;
}
footer.footer .view-btn {
  padding: 0 !important;
  border: none !important;
  font-size: 16px !important;
  margin-bottom: 30px !important;
}
footer.footer .icon-cover {
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 7px;
}
footer.footer .icon-cover a,
footer.footer .icon-cover svg,
footer.footer .icon-container svg {
  font-size: 15px;
  color: var(--main-title-color);
}
.copyright {
  flex-basis: 40%;
}
.copyright > p {
  color: #666 !important;
  font-weight: 400;
  font-size: 17px;
  margin: 0;
}

.footer-btns.download-options {
  flex-basis: 55%;
}
.footer-btns.download-options button {
  background-color: transparent !important;
  padding: 10px 20px !important ;
}
.footer-btns.download-options .ios {
  background-color: #fff !important;
  border: 1px solid #fff !important;
}
.footer-btns.download-options button span {
  color: var(--main-title-color) !important;
}
.footer-btns.download-options .android {
  border: 1px solid #d0d0d0 !important;
}
.footer-btns.download-options button .text .type {
  font-size: 25px;
}
.footer-btns.download-options button svg {
  font-size: 30px;
  color: var(--main-title-color) !important;
}
@media (max-width: 768px) {
  footer.footer {
    padding: 30px 0;
  }
  footer.footer p {
    margin: auto;
    margin-bottom: 1rem;
  }
  .footer .view-btn {
    margin-left: auto;
    margin-right: auto;
  }
  footer.footer .row {
    padding-bottom: 30px !important;
  }
  footer.footer .social-icons {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    width: fit-content;
  }
  footer.footer .downloads {
    flex-direction: column;
    gap: 1.5rem;
  }
  footer.footer .touch-content {
    width: min-content;
    margin: auto;
  }
  footer.footer .touch {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: fit-content;
  }
}
