@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
::-moz-selection {
  background: #D42B71;
  color: #fff;
}
::selection {
  background: #D42B71;
  color: #fff;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.3s ease-in;
}
body .MainWrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section {
  padding: 6rem 0;
}
@media (max-width: 575px) {
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem;
  }
}

.dark-section {
  background: #F2F2F2;
  position: relative;
  background-image: url("assets/images/bg-1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.dark-section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.01;
}

.main-title {
  margin-bottom: 3rem;
}
.main-title h2 {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
  color: #2E2545;
}
@media (max-width: 767px) {
  .main-title h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .main-title h2 {
    font-size: 2.8rem;
  }
}
.main-title p {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  color: #696985;
}
@media (max-width: 575px) {
  .main-title p {
    font-size: 1.4rem;
  }
}

.z-index-9 {
  z-index: 9;
}

.btn-primary {
  min-height: 5.5rem;
  min-width: 15rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: #D42B71;
  border: solid 0.1rem #D42B71;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.5s ease;
}
.btn-primary span {
  z-index: 1;
}
.btn-primary:before {
  content: "";
  width: 100px;
  height: 200px;
  background: #c0175d;
  position: absolute;
  top: -120%;
  left: -80%;
  transition: 0.5s ease;
  transform: rotate(35deg);
}
.btn-primary::after {
  content: "";
  width: 200px;
  height: 90px;
  background: #c0175d;
  position: absolute;
  top: 5%;
  right: -90%;
  transition: 0.5s ease;
  transform: rotate(125deg);
}
.btn-primary:hover:before {
  left: 0%;
  transition: 0.5s ease;
}
.btn-primary:hover::after {
  right: 20%;
  transition: 0.5s ease;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:target {
  background: #c0175d !important;
  border-color: #c0175d !important;
}

.btn-white {
  min-height: 5.5rem;
  min-width: 15rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #D42B71;
  background: #fff;
  border: solid 0.1rem #fff;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.5s ease;
}
.btn-white span {
  z-index: 1;
}
.btn-white:before {
  content: "";
  width: 100px;
  height: 200px;
  background: #33284d;
  position: absolute;
  top: -120%;
  left: -80%;
  transition: 0.5s ease;
  transform: rotate(35deg);
}
.btn-white::after {
  content: "";
  width: 200px;
  height: 90px;
  background: #33284d;
  position: absolute;
  top: 5%;
  right: -90%;
  transition: 0.5s ease;
  transform: rotate(125deg);
}
.btn-white:hover:before {
  left: 0%;
  transition: 0.5s ease;
}
.btn-white:hover::after {
  right: 20%;
  transition: 0.5s ease;
}
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white:target {
  color: #fff;
  background: #33284d !important;
  border-color: #33284d !important;
  box-shadow: 0 0 2rem rgba(212, 43, 113, 0.685);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(131, 81, 16, 0.2);
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(71, 39, 3, 0);
    transform: translateY(0);
  }
}
@keyframes pulse-animation2 {
  0% {
    box-shadow: 0 0 0 0px rgba(212, 43, 113, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(212, 43, 113, 0);
  }
}
.fw-400 {
  font-weight: 400;
}

.inner-page {
  background: #F5F3F9;
}
.inner-page h2 {
  font-size: 2.8rem;
  color: #2E2545;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .inner-page h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .inner-page h2 {
    font-size: 2rem;
  }
}
.inner-page h3 {
  font-size: 2.4rem;
  color: #2E2545;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .inner-page h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .inner-page h3 {
    font-size: 1.8rem;
  }
}
.inner-page h4 {
  font-size: 2rem;
  color: #2E2545;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .inner-page h4 {
    font-size: 1.8rem;
  }
}
.inner-page p {
  font-size: 1.6rem;
  color: #696985;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .inner-page p {
    font-size: 1.4rem;
  }
}
.inner-page p a {
  color: #D42B71;
}
.inner-page p a:hover {
  color: #c0175d;
}
.inner-page ul li, .inner-page ol li {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .inner-page ul li, .inner-page ol li {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .inner-page {
    padding: 3rem 0;
  }
}

/*** Navbar Start Here ***/
.manin-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.manin-navbar.sticky {
  position: fixed;
  left: 0;
  width: 100%;
  top: -13rem;
  transform: translateY(13rem);
  transition: transform 0.9s;
  z-index: 999;
  background: #2E2545;
}
.manin-navbar .my-menu .navbar-brand img {
  max-width: 20rem;
  max-height: 8rem;
}
@media (max-width: 767px) {
  .manin-navbar .my-menu .navbar-brand img {
    max-width: 16rem;
    max-height: 6rem;
  }
}
.manin-navbar .my-menu ul.navbar-nav {
  padding: 1rem 0;
}
.manin-navbar .my-menu ul.navbar-nav li a {
  font-size: 1.6rem;
  color: #EEEEEE;
  padding: 1rem 1.2rem;
  letter-spacing: 0.1rem;
  text-transform: capitalize;
}
.manin-navbar .my-menu ul.navbar-nav li a.active {
  color: #D42B71;
}
.manin-navbar .my-menu ul.navbar-nav li.dropdown .dropdown-menu {
  background: #33284d;
  padding: 0.8rem;
}
.manin-navbar .my-menu ul.navbar-nav li.dropdown .dropdown-menu li a {
  padding: 1.5rem 1.2rem;
  color: #fff;
  border-radius: 0.4rem;
  transition: all 0.3s;
  min-width: 18rem;
}
.manin-navbar .my-menu ul.navbar-nav li.dropdown .dropdown-menu li a.active {
  color: #fff;
  background: #D42B71;
}
.manin-navbar .my-menu ul.navbar-nav li.dropdown .dropdown-menu li a:hover {
  color: #fff;
  background: #D42B71;
  padding-left: 1.6rem;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .manin-navbar .my-menu .navbar-toggler {
    background: #D42B71;
    width: 4.5rem;
    height: 4.5rem;
  }
  .manin-navbar .my-menu .offcanvas {
    background-color: #040406;
    height: 100vh;
  }
  .manin-navbar .my-menu .offcanvas .offcanvas-header img {
    max-width: 10rem;
  }
  .manin-navbar .my-menu .offcanvas .offcanvas-header .btn-close {
    width: 4rem;
    height: 4rem;
    top: 1rem;
    right: 1rem;
    position: absolute;
    background-color: #D42B71;
    font-size: 1.6rem;
    color: #EEEEEE;
    opacity: 1;
  }
}
.manin-navbar.header2 {
  background: #2E2545;
  position: relative;
}
.manin-navbar.header2 .header-top {
  width: 100%;
  height: auto;
  float: left;
  background: #D42B71;
}
.manin-navbar.header2 .header-top .contact-info {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.manin-navbar.header2 .header-top .contact-info li {
  display: inline-block;
}
.manin-navbar.header2 .header-top .contact-info li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 9px 0px;
  margin: 0px 15px 0px 0px;
  display: inline-block;
}
.manin-navbar.header2 .header-top .contact-info li a i {
  font-size: 14px;
}
.manin-navbar.header2 .header-top .contact-info li:last-child a {
  margin-right: 0px;
}
.manin-navbar.header2 .header-top .social-media {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  text-align: right;
}
.manin-navbar.header2 .header-top .social-media li {
  display: inline-block;
}
.manin-navbar.header2 .header-top .social-media li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 9px 10px;
  display: inline-block;
}
.manin-navbar.header2.sticky {
  position: fixed;
}
.manin-navbar.header2.sticky .header-top {
  display: none;
}

/**** Hero Section ****/
.hero-section {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background: url("../images/hero-banner-3.jpg");
  position: relative;
  padding-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .hero-section {
    padding-top: 3rem;
  }
}
@media (max-width: 575px) {
  .hero-section {
    background-position: top left -35rem;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-color: #040406;
}
.hero-section .hero-wrapper {
  margin-top: 6rem;
}
.hero-section .hero-wrapper .hero-content h1 {
  font-size: 4.2rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
@media (max-width: 1399px) {
  .hero-section .hero-wrapper .hero-content h1 {
    font-size: 3.8rem;
  }
}
@media (max-width: 1199px) {
  .hero-section .hero-wrapper .hero-content h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-wrapper .hero-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .hero-section .hero-wrapper .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.hero-section .hero-wrapper .hero-content h3 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media (max-width: 1199px) {
  .hero-section .hero-wrapper .hero-content h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-wrapper .hero-content h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .hero-section .hero-wrapper .hero-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
.hero-section .hero-wrapper .hero-content h3 span {
  color: #D42B71;
}
.hero-section .hero-wrapper .hero-content h4 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 3rem;
}
@media (max-width: 1399px) {
  .hero-section .hero-wrapper .hero-content h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 1199px) {
  .hero-section .hero-wrapper .hero-content h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-wrapper .hero-content h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .hero-section .hero-wrapper .hero-content h4 {
    margin-bottom: 1.5rem;
  }
}
.hero-section .hero-wrapper .hero-content ul {
  padding: 0;
  list-style-type: none;
}
.hero-section .hero-wrapper .hero-content ul li {
  display: inline-block;
}
.hero-section .hero-wrapper .hero-content ul li:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .hero-section .hero-wrapper .hero-content ul li a img {
    max-width: 16rem;
  }
}
.hero-section .hero-wrapper .hero-content .downloadbtn {
  min-width: 20rem;
  min-height: auto;
  padding: 0.4rem;
  background: #fff;
  color: #2E2545;
  border-color: #fff;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  border-radius: 0.4rem;
  border: none;
}
@media (max-width: 575px) {
  .hero-section .hero-wrapper .hero-content .downloadbtn {
    min-width: 15rem;
  }
}
.hero-section .hero-wrapper .hero-content .downloadbtn span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .hero-section .hero-wrapper .hero-content .downloadbtn span {
    font-size: 1.6rem;
  }
}
.hero-section .hero-wrapper .hero-content .downloadbtn .download-icon {
  flex: 0 0 5rem;
  height: 5.5rem;
  border-radius: 0.5rem;
  background: #D42B71;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (max-width: 575px) {
  .hero-section .hero-wrapper .hero-content .downloadbtn .download-icon {
    flex: 0 0 4rem;
    height: 4rem;
  }
}
.hero-section .hero-wrapper .hero-content .downloadbtn .download-icon i {
  font-size: 2.8rem;
}
@media (max-width: 575px) {
  .hero-section .hero-wrapper .hero-content .downloadbtn .download-icon i {
    font-size: 2rem;
  }
}
.hero-section .hero-wrapper .hero-content .downloadbtn:hover {
  color: #fff;
  background: #D42B71;
}
.hero-section .hero-wrapper .hero-content .downloadbtn:hover .download-icon {
  background: #fff;
  color: #D42B71;
}
.hero-section .hero-wrapper .hero-content .downloadbtn:before, .hero-section .hero-wrapper .hero-content .downloadbtn:after {
  display: none;
}
.hero-section .slick-list {
  width: 100%;
  z-index: 9;
}
.hero-section .slick-list .slick-current .fadeInUp {
  animation: fadeInUp 1.5s ease backwards;
}
@keyframes fadeInUp {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
.hero-section .slick-list .slick-current .fadeInUp.delay-2s {
  animation: fadeInUp 2s ease backwards;
}
.hero-section .slick-list .slick-current .fadeInUp.delay-3s {
  animation: fadeInUp 3s ease backwards;
}
.hero-section .slick-list .slick-current .fadeInRight {
  animation: fadeInRight 1s ease-in-out;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
  }
}
.hero-section .slick-list .slick-current .hero-img {
  animation: fadeIn ease 4s;
  -webkit-animation: fadeIn ease 4s;
  -moz-animation: fadeIn ease 4s;
  -o-animation: fadeIn ease 4s;
  -ms-animation: fadeIn ease 4s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-section .slick-dots {
  position: relative;
  bottom: -40px;
  display: block;
  width: auto;
  padding: 0 0 0 0rem;
  margin: 0 auto;
  list-style: none;
  text-align: left;
  max-width: 1320px;
}
.hero-section .slick-dots li {
  position: relative;
  width: 3rem;
}
.hero-section .slick-dots li button {
  width: 100%;
  height: 0.6rem;
  padding: 0 0.5rem;
  position: relative;
}
.hero-section .slick-dots li button:before {
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 0;
}

.get-download-link {
  margin-top: 2rem;
}
.get-download-link > span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .get-download-link > span {
    font-size: 1.4rem;
  }
}
.get-download-link p {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 575px) {
  .get-download-link p {
    font-size: 1.3rem;
  }
}
.get-download-link form {
  width: 100%;
  display: flex;
  gap: 2rem;
}
@media (max-width: 575px) {
  .get-download-link form {
    display: block;
  }
}
.get-download-link form input {
  width: 100%;
  min-height: 5.5rem;
  font-size: 1.6rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .get-download-link form input {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .get-download-link form input {
    margin-bottom: 1rem;
  }
}

/**** Hero Section ****/
.hero-section-two {
  width: 100%;
  height: auto;
  min-height: 80vh;
  background: url("../images/hero-banner.jpg");
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .hero-section-two {
    padding-top: 3rem;
  }
}
.hero-section-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-color: #040406;
}
.hero-section-two .hero-wrapper {
  margin-top: 6rem;
}
.hero-section-two .hero-wrapper .hero-content h1 {
  font-size: 4.2rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
@media (max-width: 1399px) {
  .hero-section-two .hero-wrapper .hero-content h1 {
    font-size: 3.8rem;
  }
}
@media (max-width: 1199px) {
  .hero-section-two .hero-wrapper .hero-content h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .hero-section-two .hero-wrapper .hero-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .hero-section-two .hero-wrapper .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.hero-section-two .hero-wrapper .hero-content h3 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media (max-width: 1199px) {
  .hero-section-two .hero-wrapper .hero-content h3 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-section-two .hero-wrapper .hero-content h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .hero-section-two .hero-wrapper .hero-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
.hero-section-two .hero-wrapper .hero-content h3 span {
  color: #D42B71;
}
.hero-section-two .hero-wrapper .hero-content h4 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 3rem;
}
@media (max-width: 1399px) {
  .hero-section-two .hero-wrapper .hero-content h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 1199px) {
  .hero-section-two .hero-wrapper .hero-content h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .hero-section-two .hero-wrapper .hero-content h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .hero-section-two .hero-wrapper .hero-content h4 {
    margin-bottom: 1.5rem;
  }
}
.hero-section-two .hero-wrapper .hero-content ul {
  padding: 0;
  list-style-type: none;
}
.hero-section-two .hero-wrapper .hero-content ul li {
  display: inline-block;
}
.hero-section-two .hero-wrapper .hero-content ul li:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .hero-section-two .hero-wrapper .hero-content ul li a img {
    max-width: 16rem;
  }
}
.hero-section-two .hero-wrapper .hero-content .downloadbtn {
  min-width: 20rem;
  min-height: auto;
  padding: 0.4rem;
  background: #fff;
  color: #2E2545;
  border-color: #fff;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  border-radius: 0.4rem;
  border: none;
}
@media (max-width: 575px) {
  .hero-section-two .hero-wrapper .hero-content .downloadbtn {
    min-width: 15rem;
  }
}
.hero-section-two .hero-wrapper .hero-content .downloadbtn span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .hero-section-two .hero-wrapper .hero-content .downloadbtn span {
    font-size: 1.6rem;
  }
}
.hero-section-two .hero-wrapper .hero-content .downloadbtn .download-icon {
  flex: 0 0 5rem;
  height: 5.5rem;
  border-radius: 0.5rem;
  background: #D42B71;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (max-width: 575px) {
  .hero-section-two .hero-wrapper .hero-content .downloadbtn .download-icon {
    flex: 0 0 4rem;
    height: 4rem;
  }
}
.hero-section-two .hero-wrapper .hero-content .downloadbtn .download-icon i {
  font-size: 2.8rem;
}
@media (max-width: 575px) {
  .hero-section-two .hero-wrapper .hero-content .downloadbtn .download-icon i {
    font-size: 2rem;
  }
}
.hero-section-two .hero-wrapper .hero-content .downloadbtn:hover {
  color: #fff;
  background: #D42B71;
}
.hero-section-two .hero-wrapper .hero-content .downloadbtn:hover .download-icon {
  background: #fff;
  color: #D42B71;
}
.hero-section-two .hero-wrapper .hero-content .downloadbtn:before, .hero-section-two .hero-wrapper .hero-content .downloadbtn:after {
  display: none;
}
.hero-section-two .slick-list {
  width: 100%;
  z-index: 9;
}
.hero-section-two .slick-list .slick-current .fadeInUp {
  animation: fadeInUp 1.5s ease backwards;
}
@keyframes fadeInUp {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
.hero-section-two .slick-list .slick-current .fadeInUp.delay-2s {
  animation: fadeInUp 2s ease backwards;
}
.hero-section-two .slick-list .slick-current .fadeInUp.delay-3s {
  animation: fadeInUp 3s ease backwards;
}
.hero-section-two .slick-list .slick-current .fadeInRight {
  animation: fadeInRight 1s ease-in-out;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
  }
}
.hero-section-two .slick-list .slick-current .hero-img {
  animation: fadeIn ease 4s;
  -webkit-animation: fadeIn ease 4s;
  -moz-animation: fadeIn ease 4s;
  -o-animation: fadeIn ease 4s;
  -ms-animation: fadeIn ease 4s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-section-two .slick-dots {
  position: relative;
  bottom: -40px;
  display: block;
  width: auto;
  padding: 0 0 0 0rem;
  margin: 0 auto;
  list-style: none;
  text-align: left;
  max-width: 1320px;
}
.hero-section-two .slick-dots li {
  position: relative;
  width: 3rem;
}
.hero-section-two .slick-dots li button {
  width: 100%;
  height: 0.6rem;
  padding: 0 0.5rem;
  position: relative;
}
.hero-section-two .slick-dots li button:before {
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 0;
}

/**** Our Partners Section ****/
.ourparters-section {
  padding: 2rem 0rem;
}
.ourparters-section .slick-slide {
  padding: 1rem;
}
.ourparters-section .slick-slide .single-partner {
  padding: 2rem;
  background: #fff;
  box-shadow: rgba(21, 21, 21, 0.082) 0px 0rem 0.5rem 0px;
  text-align: center;
}
.ourparters-section .slick-slide .single-partner img {
  width: 100%;
  max-width: 18rem;
  max-height: 5rem;
  margin: 0 auto;
}

/*** About Section ***/
.about-section {
  background: #FBFCFF;
  overflow: hidden;
  position: relative;
}
.about-section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../images/shape2.png");
  background-repeat: no-repeat;
  background-position: bottom -5rem right -5rem;
  opacity: 0.3;
}
.about-section:after {
  content: "";
  width: 26rem;
  height: 26rem;
  position: absolute;
  right: 5rem;
  top: -13rem;
  border: solid 6rem #D42B71;
  border-radius: 50%;
  animation: pulse-animation 7s infinite;
  z-index: 9;
  opacity: 0.3;
}
@media (max-width: 991px) {
  .about-section:after {
    width: 20rem;
    height: 20rem;
    border-width: 4rem;
  }
}
@media (max-width: 575px) {
  .about-section:after {
    width: 15rem;
    height: 15rem;
    border-width: 3rem;
    right: -4rem;
    top: -8rem;
  }
}
.about-section .fantasytitle {
  position: absolute;
  top: 45%;
  left: -25rem;
  font-size: 10rem;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #FBFCFF;
  font-weight: 700;
  letter-spacing: 5px;
  transform: rotate(270deg);
  text-shadow: -6px -6px 10px #f5f9fc, 4px 3px 15px rgba(127, 163, 199, 0.3);
}
@media (max-width: 1399px) {
  .about-section .fantasytitle {
    font: 12rem;
    left: -28rem;
  }
}
@media (max-width: 991px) {
  .about-section .fantasytitle {
    display: none;
  }
}
.about-section .about-img {
  position: relative;
}
.about-section .about-img img {
  z-index: 1;
  position: relative;
}
.about-section .about-img .shape1 {
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: 3rem;
  top: 3rem;
  border: solid 1rem #D42B71;
  border-radius: 50%;
  animation: pulse-animation 5s infinite;
  opacity: 0.3;
}
.about-section .about-img .shape2 {
  width: 8rem;
  height: 8rem;
  position: absolute;
  right: 11rem;
  top: 60%;
  border: solid 2rem #D42B71;
  border-radius: 50%;
  animation: pulse-animation 7s infinite;
  opacity: 0.3;
}
.about-section .mw-150 {
  max-width: 15rem;
}

/*** ///// About Section Two ///// ***/
.about-section-two {
  background: url("../images/about-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.about-section-two:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 37, 69, 0.8980392157);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
.about-section-two h2 {
  font-size: 8rem;
  font-weight: 200;
  color: #fff;
}
@media (max-width: 767px) {
  .about-section-two h2 {
    font-size: 5.2rem;
  }
}
@media (max-width: 399px) {
  .about-section-two h2 {
    font-size: 2.8rem;
  }
}
.about-section-two p {
  color: #fff;
  font-weight: 300;
}
.about-section-two .about-img {
  position: relative;
  background: #D42B71;
}
.about-section-two .about-img img {
  margin-left: -5rem;
  margin-top: -6rem;
}
.about-section-two .about-img .about-btn .btn-white {
  position: absolute;
  left: -11rem;
  bottom: 6rem;
  min-width: 22rem;
  min-height: 6.2rem;
  text-transform: uppercase;
  font-size: 2rem;
}

.how-to-play-section {
  background: #EEEDF6;
  padding-bottom: 10rem;
}
.how-to-play-section .single-feature {
  padding: 1.5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .how-to-play-section .single-feature {
    padding: 1.5rem 1rem;
  }
}
.how-to-play-section .single-feature .feature-number {
  position: relative;
  z-index: 9;
  flex: 0 0 8rem;
  height: 8rem;
  background: #fff;
  font-size: 5rem;
  color: #D42B71;
  font-weight: 800;
  line-height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-animation2 2s infinite;
}
@media (max-width: 767px) {
  .how-to-play-section .single-feature .feature-number {
    flex: 0 0 5rem;
    height: 5rem;
    font-size: 2.5rem;
  }
}
.how-to-play-section .single-feature h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2E2545;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  position: relative;
  transition: all 1s;
  z-index: 1;
}
@media (max-width: 767px) {
  .how-to-play-section .single-feature h4 {
    font-size: 1.8rem;
  }
}
.how-to-play-section .single-feature p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #333;
  position: relative;
  transition: all 1s;
  z-index: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .how-to-play-section .single-feature p {
    letter-spacing: 0.05rem;
    font-size: 1.4rem;
  }
}
.how-to-play-section a {
  width: 100%;
  max-width: 30rem;
  display: inline-flex;
  margin-top: 3rem;
}
.how-to-play-section a:before {
  left: -35%;
}
.how-to-play-section a::after {
  right: -41%;
}

/*** Easy to Start Playing On Tezz11 Section ***/
.easy-to-start-play-section {
  width: 100%;
  background: #EEEDF6;
}
.easy-to-start-play-section h2 {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  color: #2E2545;
}
@media (max-width: 767px) {
  .easy-to-start-play-section h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .easy-to-start-play-section h2 {
    font-size: 2.8rem;
  }
}
.easy-to-start-play-section .card {
  box-shadow: 0 0 1rem #EEEDF6;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  background: linear-gradient(45deg, #FBFCFF, #FBFCFF);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1215686275);
  border-radius: 5px;
}
.easy-to-start-play-section .card .how-to-play-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.easy-to-start-play-section .card .how-to-play-content span {
  width: 5rem;
  height: 5rem;
  flex: 0 0 5rem;
  font-size: 3rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #040406;
  box-shadow: inset -0.3rem -0.2rem 0.5rem 0rem rgba(255, 255, 255, 0.66), inset -0.1rem -0.1rem 0rem 0rem rgba(255, 255, 255, 0.18), inset 0.2rem 0.2rem 0.7rem 0rem rgba(49, 69, 106, 0.18);
  transition: all 0.3s ease-in-out;
  margin-bottom: 2rem;
}
.easy-to-start-play-section .card .how-to-play-content h4 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  color: #2E2545;
}
.easy-to-start-play-section .card .how-to-play-content p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  position: relative;
  margin-bottom: 2rem;
}
.easy-to-start-play-section .card .how-to-play-img {
  position: relative;
  background: #fff;
}

/*** ///// Point System Section ///// ***/
.point-system-section {
  background: url("../images/fantasy-points-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.point-system-section h2 {
  color: #D42B71;
}
.point-system-section h4 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.point-system-section h4 span {
  font-weight: 400;
}
.point-system-section .table-responsive {
  margin: 3rem 0;
}
.point-system-section .table-responsive table thead {
  border-color: rgba(255, 255, 255, 0.1764705882);
}
.point-system-section .table-responsive table thead th {
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  background: rgba(212, 43, 113, 0.8156862745);
}
.point-system-section .table-responsive table th, .point-system-section .table-responsive table td {
  padding: 1.5rem 2rem !important;
  background: rgba(46, 37, 69, 0.9058823529);
  color: #fff;
}
.point-system-section .table-responsive table tbody {
  border-color: rgba(255, 255, 255, 0.1764705882);
}
.point-system-section .table-responsive table tbody tr td {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 25rem;
}
.point-system-section .table-responsive table tbody tr td .teamicon {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3rem;
  margin-right: 0.5rem;
}
.point-system-section .table-responsive table tbody tr td .teamicon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

/*** ///// Download App Section ///// ***/
.downloadlink-section {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 0rem;
  padding-bottom: 0;
  background: #2E2545;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.downloadlink-section .downloadlink-card {
  background: #2E2545;
  border-radius: 0.5rem;
  position: relative;
  padding: 0 4rem;
}
@media (max-width: 575px) {
  .downloadlink-section .downloadlink-card {
    padding: 0;
  }
}
.downloadlink-section .downloadlink-card .cta-img {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  display: none;
}
.downloadlink-section .downloadlink-card .get-download-img {
  width: 100%;
  text-align: center;
  position: relative;
  margin-top: -10rem;
}
@media (max-width: 575px) {
  .downloadlink-section .downloadlink-card .get-download-img {
    margin-top: -7rem;
  }
}
.downloadlink-section .downloadlink-card .get-download-img img {
  max-width: 35rem;
}
@media (max-width: 767px) {
  .downloadlink-section .downloadlink-card .get-download-img img {
    max-width: 100%;
  }
}
.downloadlink-section .downloadlink-card .downloadlink-form {
  width: 100%;
  height: auto;
  position: relative;
  padding: 4rem 0;
}
.downloadlink-section .downloadlink-card .downloadlink-form h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .downloadlink-section .downloadlink-card .downloadlink-form h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 991px) {
  .downloadlink-section .downloadlink-card .downloadlink-form h2 {
    font-size: 2.2rem;
  }
}
.downloadlink-section .downloadlink-card .downloadlink-form p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #fff;
}
.downloadlink-section .downloadlink-card .downloadlink-form form {
  width: 100%;
}
.downloadlink-section .downloadlink-card .downloadlink-form form .input-group-text {
  min-width: 5rem;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.2509803922);
  color: #fff;
  border: none;
}
.downloadlink-section .downloadlink-card .downloadlink-form form .form-control {
  height: 5rem;
  font-size: 1.6rem;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.2509803922);
  border-left-color: #1f1830;
  box-shadow: none;
  outline: none;
  color: #fff;
  border: none;
}
.downloadlink-section .downloadlink-card .downloadlink-form form .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ced4da;
  border-left-color: #e3edf7;
}
.downloadlink-section .downloadlink-card .downloadlink-form form .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.downloadlink-section .downloadlink-card .downloadlink-form form .form-control::placeholder {
  color: #fff;
  opacity: 1;
}
.downloadlink-section .downloadlink-card .downloadlink-form form .form-control:-ms-input-placeholder {
  color: #fff;
}
.downloadlink-section .downloadlink-card .downloadlink-form form .form-control::-ms-input-placeholder {
  color: #fff;
}

.downloadlink-section-two {
  width: 100%;
  height: auto;
  background: #1f1830;
  position: relative;
}
.downloadlink-section-two .downloadlink-card {
  background: #2E2545;
  border-radius: 5px;
  position: relative;
  padding: 0 4rem;
}
.downloadlink-section-two .downloadlink-card .cta-img {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  opacity: 0.5;
}
.downloadlink-section-two .downloadlink-card .get-download-img {
  width: 100%;
  text-align: center;
  position: relative;
  margin-top: -4rem;
}
.downloadlink-section-two .downloadlink-card .get-download-img img {
  max-width: 35rem;
  max-height: 38rem;
}
@media (max-width: 767px) {
  .downloadlink-section-two .downloadlink-card .get-download-img img {
    max-width: 100%;
  }
}
.downloadlink-section-two .downloadlink-card .downloadlink-form {
  width: 100%;
  height: auto;
  position: relative;
  padding: 4rem 0;
}
.downloadlink-section-two .downloadlink-card .downloadlink-form h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .downloadlink-section-two .downloadlink-card .downloadlink-form h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 991px) {
  .downloadlink-section-two .downloadlink-card .downloadlink-form h2 {
    font-size: 2.2rem;
  }
}
.downloadlink-section-two .downloadlink-card .downloadlink-form p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #fff;
}
.downloadlink-section-two .downloadlink-card .downloadlink-form form {
  width: 100%;
}
.downloadlink-section-two .downloadlink-card .downloadlink-form form .input-group-text {
  min-width: 5rem;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(254, 254, 254, 0.2274509804);
  border: none;
}
.downloadlink-section-two .downloadlink-card .downloadlink-form form .form-control {
  height: 5rem;
  font-size: 1.6rem;
  font-weight: 500;
  background: rgba(254, 254, 254, 0.2274509804);
  color: #fff;
  border: none;
}
.downloadlink-section-two .downloadlink-card .downloadlink-form form .form-control::-moz-placeholder {
  color: #fff;
}
.downloadlink-section-two .downloadlink-card .downloadlink-form form .form-control::placeholder {
  color: #fff;
}

@media (max-width: 575px) {
  .amazing-feature-section {
    padding-bottom: 5rem;
  }
}
.amazing-feature-section .main-title {
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .amazing-feature-section .main-title {
    margin-bottom: 3rem;
  }
}
.amazing-feature-section .mobile-frame {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1rem;
  z-index: 1;
}
.amazing-feature-section .mobile-frame img {
  max-width: 22rem;
}
.amazing-feature-section .amazing-feature-slide {
  height: 100%;
  display: flex !important;
  padding: 2rem 2rem;
  position: relative;
}
@media (max-width: 575px) {
  .amazing-feature-section .amazing-feature-slide {
    padding: 1rem 1rem;
  }
}
.amazing-feature-section .amazing-feature-slide .single-amazing-feature {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1215686275);
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .amazing-feature-section .amazing-feature-slide .single-amazing-feature {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1215686275);
  }
}
.amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-img {
  background: #FBFCFF;
  border-radius: 2rem 2rem 0 0;
  padding-top: 3rem;
  height: 100%;
}
.amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-img h4 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  color: #2E2545;
}
@media (max-width: 767px) {
  .amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-img h4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-img h4 {
    font-size: 1.8rem;
  }
}
.amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-img img {
  border-radius: 1rem 1rem 0 0;
}
.amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-content {
  height: 100%;
  padding: 2rem;
  background: #F5F3F9;
  border-radius: 0 0 1rem 1rem;
}
.amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
.amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-content p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .amazing-feature-section .amazing-feature-slide .single-amazing-feature .amazing-feature-content p {
    font-size: 1.5rem;
  }
}
.amazing-feature-section .slick-list {
  width: 100%;
  display: flex !important;
}
.amazing-feature-section .slick-list .slick-track {
  display: flex !important;
}
.amazing-feature-section .slick-list .slick-track .slick-slide {
  display: flex !important;
  height: 100%;
}
.amazing-feature-section .slick-dots li {
  width: 1rem;
  height: 1rem;
}
.amazing-feature-section .slick-dots li button:before {
  font-size: 1.2rem;
}
.amazing-feature-section .slick-dots li button:hover:before {
  color: #D42B71;
}
.amazing-feature-section .slick-dots li button:focus {
  color: #D42B71;
}
.amazing-feature-section .slick-dots li.slick-active button:before {
  font-size: 1.6rem;
  color: #D42B71;
}
.amazing-feature-section.amazing-feature-section-two .single-amazing-feature {
  box-shadow: none;
}
.amazing-feature-section.amazing-feature-section-two .single-amazing-feature .amazing-feature-img {
  background: transparent;
  padding-top: 0rem;
}
.amazing-feature-section.amazing-feature-section-two .single-amazing-feature .amazing-feature-content {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1215686275);
}

.great-results-section {
  position: relative;
  background: #EEEDF6;
  padding: 3rem 0 0 0;
}
.great-results-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/shape-1.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
.great-results-section .dots-img {
  position: absolute;
  max-width: 80%;
  left: 50%;
  top: 50%;
  animation: moving_position_animatin 6s infinite linear;
}
@keyframes moving_position_animatin {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-30px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}
.great-results-section .single-result-card {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1215686275);
  padding: 4rem 1rem;
  border-radius: 0.5rem !important;
  background: rgba(255, 255, 255, 0.8431372549);
}
.great-results-section .single-result-card h3 {
  font-size: 4.2rem;
  font-weight: 800;
  color: #D42B71;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.great-results-section .single-result-card p {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
}
.great-results-section form {
  width: 100%;
}
.great-results-section form .input-group-text {
  min-width: 5rem;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(46, 37, 69, 0.5254901961);
  color: #fff;
  border: none;
}
.great-results-section form .form-control {
  height: 5rem;
  font-size: 1.6rem;
  font-weight: 400;
  background: rgba(46, 37, 69, 0.5254901961);
  border-left-color: #1f1830;
  box-shadow: none;
  outline: none;
  color: #fff;
  border: none;
}
.great-results-section form .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ced4da;
  border-left-color: #e3edf7;
}
.great-results-section form .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.great-results-section form .form-control::placeholder {
  color: #fff;
  opacity: 1;
}
.great-results-section form .form-control:-ms-input-placeholder {
  color: #fff;
}
.great-results-section form .form-control::-ms-input-placeholder {
  color: #fff;
}

.testimonials-section, .testimonials-section-two {
  width: 100%;
  background: #FBFCFF;
}
.testimonials-section h2, .testimonials-section-two h2 {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2E2545;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 767px) {
  .testimonials-section h2, .testimonials-section-two h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .testimonials-section h2, .testimonials-section-two h2 {
    font-size: 2.8rem;
  }
}
.testimonials-section p, .testimonials-section-two p {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  color: #2E2545;
}
.testimonials-section .single-testimonial, .testimonials-section-two .single-testimonial {
  width: 100%;
  background: #EEEDF6;
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  border: solid 0.1rem #D6D6E8;
}
.testimonials-section .single-testimonial .feedback-starts, .testimonials-section-two .single-testimonial .feedback-starts {
  color: #ffa600;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.testimonials-section .single-testimonial .feedback-starts .star-rating, .testimonials-section-two .single-testimonial .feedback-starts .star-rating {
  font-size: 2.2rem;
  line-height: 2rem;
}
.testimonials-section .single-testimonial .testimonial-text p, .testimonials-section-two .single-testimonial .testimonial-text p {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}
.testimonials-section .single-testimonial .testimonial-userinfo, .testimonials-section-two .single-testimonial .testimonial-userinfo {
  width: calc(100% + 5rem);
  margin-left: -2.5rem;
  margin-bottom: -2rem;
  display: flex;
  justify-content: space-between;
  padding: 0 2.5rem 3rem 2.5rem;
  margin-top: 0rem;
  border-radius: 0 0 0.5rem 0.5rem;
  gap: 2rem;
}
.testimonials-section .single-testimonial .testimonial-userinfo .client-name, .testimonials-section-two .single-testimonial .testimonial-userinfo .client-name {
  width: 100%;
}
.testimonials-section .single-testimonial .testimonial-userinfo .client-name h3, .testimonials-section-two .single-testimonial .testimonial-userinfo .client-name h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2E2545;
}
.testimonials-section .single-testimonial .testimonial-userinfo .client-name p, .testimonials-section-two .single-testimonial .testimonial-userinfo .client-name p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #2E2545;
  letter-spacing: 0.1rem;
  text-align: left;
  margin-bottom: 0;
}
.testimonials-section .single-testimonial .testimonial-userinfo .client-img, .testimonials-section-two .single-testimonial .testimonial-userinfo .client-img {
  flex: 0 0 7rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 7rem;
  max-height: 7rem;
}
.testimonials-section .single-testimonial .testimonial-userinfo .client-img img, .testimonials-section-two .single-testimonial .testimonial-userinfo .client-img img {
  width: 100%;
  height: 100%;
  max-height: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-section .slick-slider, .testimonials-section-two .slick-slider {
  position: relative;
  margin-top: 6rem;
}
.testimonials-section .slick-slider .slick-slide, .testimonials-section-two .slick-slider .slick-slide {
  padding: 1.5rem;
}
@media (max-width: 575px) {
  .testimonials-section .slick-slider .slick-slide, .testimonials-section-two .slick-slider .slick-slide {
    padding: 0;
  }
}
.testimonials-section .slick-slider .slick-arrow, .testimonials-section-two .slick-slider .slick-arrow {
  width: 4rem;
  height: 4rem;
  background: #fff;
  color: #040406;
  transition: all 0.3s ease-in-out;
}
.testimonials-section .slick-slider .slick-arrow:hover, .testimonials-section-two .slick-slider .slick-arrow:hover {
  box-shadow: -0.6rem -0.6rem 1rem 0rem rgba(212, 43, 113, 0.1098039216), -0.4rem 0.3rem 1.5rem 0rem rgba(212, 43, 113, 0.1098039216);
  transition: all 0.3s ease-in-out;
}
.testimonials-section .slick-slider .slick-prev, .testimonials-section-two .slick-slider .slick-prev {
  position: absolute;
  top: -3rem;
  right: 7rem;
  left: unset;
}
.testimonials-section .slick-slider .slick-prev:before, .testimonials-section-two .slick-slider .slick-prev:before {
  content: "";
  background-size: 2rem;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.029' height='14.828' viewBox='0 0 18.029 14.828'%3E%3Cg transform='translate(1.029 1.414)'%3E%3Cpath d='M4 12H20' transform='translate(-4 -6)' fill='none' stroke='%232E2545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath d='M19.963 18l-5.937-5.937h0a.088.088 0 0 1 0-.125h0L19.963 6' transform='translate(-13.963 -6)' fill='none' stroke='%232E2545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
.testimonials-section .slick-slider .slick-next, .testimonials-section-two .slick-slider .slick-next {
  position: absolute;
  top: -3rem;
  right: 1.5rem;
}
.testimonials-section .slick-slider .slick-next:before, .testimonials-section-two .slick-slider .slick-next:before {
  content: "";
  background-size: 2rem;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14.828' viewBox='0 0 18 14.828'%3E%3Cg transform='translate(-3 -4.586)'%3E%3Cpath d='M20 12H4' fill='none' stroke='%232E2545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath d='M14 18l5.938-5.937h0a.088.088 0 0 0 0-.125h0L14 6' fill='none' stroke='%232E2545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-section-two {
  width: 100%;
  background: #FBFCFF;
}
.testimonials-section-two .slick-slide {
  padding: 1.5rem 1rem;
}
.testimonials-section-two .slick-slide .my-card {
  width: 100%;
  height: auto;
  padding: 30px 25px;
  background: #fff;
  box-shadow: 0px 0.5rem 1rem 0px rgba(21, 21, 21, 0.082);
}
.testimonials-section-two .slick-slide .my-card .feedback-starts {
  color: #ffa600;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.testimonials-section-two .slick-slide .my-card .feedback-starts .star-rating {
  font-size: 2.2rem;
  line-height: 2rem;
}
.testimonials-section-two .slick-slide .my-card .rattings-section {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}
.testimonials-section-two .slick-slide .my-card .testimonial-like img {
  max-width: 20rem;
  max-height: 2.2rem;
}
.testimonials-section-two .slick-slide .my-card .customer-info {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonials-section-two .slick-slide .my-card .customer-img {
  flex: 0 0 3.7rem;
  height: 3.7rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section-two .slick-slide .my-card .customer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonials-section-two .slick-slide .my-card .customer-bio {
  width: 100%;
}
.testimonials-section-two .slick-slide .my-card .customer-bio h5 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2E2545;
  margin-bottom: 0rem;
}
.testimonials-section-two .slick-slide .my-card .customer-bio p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0rem;
}
.testimonials-section-two .slick-slide .my-card .my-card-body p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.4rem;
  margin-bottom: 0rem;
}

.footer-section {
  width: 100%;
  background: #2E2545;
  padding-top: 6rem;
  margin-top: auto;
}
@media (max-width: 575px) {
  .footer-section {
    padding-top: 4rem;
  }
}
.footer-section .legal-info-tags {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 399px) {
  .footer-section .legal-info-tags {
    text-align: start;
    margin-bottom: 0;
  }
}
.footer-section .legal-info-tags li {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
.footer-section .legal-info-tags li:not(:last-child) {
  padding-right: 2rem;
  border-right: solid 0.1rem #696985;
}
@media (max-width: 767px) {
  .footer-section .legal-info-tags li {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
  .footer-section .legal-info-tags li:not(:last-child) {
    padding-right: 1rem;
  }
}
@media (max-width: 399px) {
  .footer-section .legal-info-tags li {
    padding-left: 0rem;
  }
  .footer-section .legal-info-tags li:not(:last-child) {
    border-right: none;
  }
}
.footer-section .legal-info-tags li img {
  max-width: 3rem;
  max-height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-section .legal-info-tags li span {
  background-color: #FFF;
  border-radius: 100%;
  height: 5rem;
  width: 5rem;
  display: inline-flex;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .footer-section .legal-info-tags li span {
    height: 4rem;
    width: 4rem;
  }
}
.footer-section .footer-top {
  padding-bottom: 3rem;
  margin-bottom: 6rem;
  border-bottom: solid 0.1rem #333;
}
.footer-section .footer-top .download-app-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-section .footer-top .download-app-footer .title {
  font-size: 1.6rem;
  margin-right: 1rem;
  color: #fff;
}
.footer-section .footer-top .download-app-footer .app-btns a {
  margin-left: 1rem;
  display: inline-block;
}
.footer-section .footer-top .download-app-footer .app-btns a img {
  max-width: 13rem;
  max-height: 5rem;
}
.footer-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}
.footer-section ul {
  list-style-type: none;
  padding-left: 0;
}
@media (max-width: 575px) {
  .footer-section ul {
    margin-bottom: 0 !important;
  }
}
.footer-section .footer-logo .logo {
  font-size: 3rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-section .footer-logo .logo img {
  width: 100%;
  max-width: 20rem;
  max-height: 8rem;
}
.footer-section .footer-logo p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.footer-section .footer-menus ul {
  list-style-type: none;
  padding-left: 0;
}
.footer-section .footer-menus ul li .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-section .footer-menus ul li .nav-link:hover {
  color: #D42B71;
}
.footer-section .address address {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.footer-section .address a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.footer-section .address a:hover {
  color: #D42B71;
}
.footer-section .socialmedia ul li {
  display: inline-block;
}
.footer-section .socialmedia ul li:not(:last-child) {
  margin-right: 1rem;
}
.footer-section .socialmedia ul li .media-link {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #333;
  border-radius: 0.4rem;
  background: #fff;
  transition: all 0.3s ease-in;
  text-decoration: none;
}
.footer-section .socialmedia ul li .media-link:hover {
  background: #D42B71;
  color: #fff;
  transition: all 0.3s ease-in;
}
.footer-section .copyright {
  padding: 2rem 0;
  border-top: solid 0.1rem #333;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 575px) {
  .footer-section .copyright {
    padding: 1rem 0;
  }
}
.footer-section .disclaimer {
  background: #1f1830;
  text-align: center;
  padding: 1rem 0;
}
.footer-section .disclaimer p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0;
  font-weight: 300;
}
.footer-section .disclaimer p strong {
  font-weight: 600;
}
.footer-section .BottomToTopBtn svg {
  cursor: pointer;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 5rem;
  height: 5rem;
  background: #D42B71;
  color: #fff;
  font-size: 1.6rem;
  padding: 1.5rem;
  border-radius: 3rem;
}
.footer-section .BottomToTopBtn svg:hover {
  background: #c0175d;
}

/** ///// About Us Page ///// **/
.inner-banner {
  background-image: url("../images/inner-banner.png");
  padding-top: 15rem;
  display: flex;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .inner-banner {
    padding-top: 11rem;
    padding-bottom: 3rem;
  }
}
.inner-banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.inner-banner h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .inner-banner h2 {
    text-align: center;
  }
}
.inner-banner ul {
  list-style-type: none;
  text-align: right;
}
@media (max-width: 767px) {
  .inner-banner ul {
    text-align: center;
  }
}
.inner-banner ul li {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
  position: relative;
}
.inner-banner ul li:not(:last-child):after {
  content: "/";
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  padding-right: 1rem;
}
.inner-banner ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
}
.inner-banner ul li a:hover {
  color: #D42B71;
}

/*** ///// Faq Page ///// ***/
.faq-page {
  background: #F5F3F9;
}
.faq-page h2.title {
  margin-bottom: 4rem;
}
.faq-page .single-faq {
  border: solid 0.1rem #D6D6E8;
  background: #EEEDF6;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.faq-page .single-faq .accordion-header {
  margin-bottom: 0;
}
.faq-page .single-faq .accordion-header .accordion-button {
  width: 100%;
  text-align: left;
  padding: 2rem 2.5rem;
  background: #EEEDF6;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2E2545;
  box-shadow: none;
  gap: 1rem;
}
@media (max-width: 575px) {
  .faq-page .single-faq .accordion-header .accordion-button {
    padding: 2rem 2rem;
  }
}
.faq-page .single-faq .accordion-header .accordion-button:after {
  width: 2rem;
  height: 2rem;
  background-size: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e");
}
.faq-page .single-faq .accordion-collapse .accordion-body {
  padding: 0rem 2.5rem 2rem 2.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  color: #2E2545;
}
@media (max-width: 575px) {
  .faq-page .single-faq .accordion-collapse .accordion-body {
    padding: 0rem 2rem 2rem 2rem;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
  }
}

/*** ///// Point System Page ///// ***/
.point-system-page h4 span {
  font-weight: 400;
}
.point-system-page .table-responsive {
  margin: 3rem 0;
}
.point-system-page .table-responsive table thead {
  background: #eee;
}
.point-system-page .table-responsive table thead th {
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
  color: #D42B71;
}
.point-system-page .table-responsive table th, .point-system-page .table-responsive table td {
  padding: 1.5rem 2rem !important;
}
.point-system-page .table-responsive table tbody tr td {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 25rem;
}
.point-system-page .table-responsive table tbody tr td .teamicon {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 0.1rem #eee;
  border-radius: 3rem;
}
.point-system-page .table-responsive table tbody tr td .teamicon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}/*# sourceMappingURL=style.css.map */