@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
/* ====================
1.	Reset
====================== */
* {
  margin: 0;
  padding: 0;
  line-height: inherit;
  outline: none;
  border: none;
}

/* =========================
2.	Global Settings
============================= */
:root {
  --thm-font: "Poppins", sans-serif;
  --thm-base: #3B2A56;
  --thm-text: #869199;
  --thm-hover: #F4197D;
  --thm-dark: #0d0c0c;
  --thm-light: #F5F6F9;
  --white: #ffffff;
  --thm-dark-rgba: 25, 31, 40;
}

body {
  font-size: 14px;
  font-family: var(--thm-font);
  color: var(--thm-text);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

a:hover {
  color: var(--thm-hover);
}

button {
  outline: none !important;
  cursor: pointer;
}

p {
  margin-bottom: 0;
}

.thm-btn {
  padding: 10px 20px;
  background-color: var(--thm-base);
  color: #ffffff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.thm-btn:hover {
  background-color: var(--thm-hover);
  color: #ffffff;
}

.thm-btn-2 {
  padding: 10px 20px;
  background-color: var(--thm-hover);
  color: var(--white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.thm-btn-2:hover {
  background-color: var(--thm-base);
  color: #ffffff;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--thm-hover);
}

.form-check-input:checked {
  background-color: var(--thm-hover);
  border-color: var(--thm-hover);
}

.form-check-input:focus {
  box-shadow: none;
}

/* slick nav */
.slick-arrow {
  background: var(--thm-base);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  width: 40px;
  height: 40px;
  text-align: center;
  z-index: 1;
  border-radius: 50px;
  transition: all 500ms ease;
}
.slick-arrow::before {
  color: var(--white);
  font-family: "Material Icons";
  font-size: 26px;
  opacity: 1;
}
.slick-arrow:hover {
  background: var(--thm-hover);
}
.slick-arrow:hover::before {
  color: #ffffff;
}

.slick-prev {
  left: 20px;
}
.slick-prev::before {
  content: "\e5cb";
}

.slick-next {
  right: 20px;
}
.slick-next::before {
  content: "\e5cc";
}

.slick-slide {
  margin-left: 15px;
  margin-right: 15px;
}

/* slick nav end */
/* slick dots */
.slick-dots li button::before {
  font-size: 12px;
  color: var(--thm-hover);
}
.slick-dots li.slick-active button::before {
  color: var(--thm-hover);
  opacity: 1;
}

/* slick dots end*/
/* ======================
3.	Header
========================== */
.fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  z-index: 999;
  animation: smoothScroll 0.5s ease-in-out;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.header-section {
  background-color: #ffffff;
  padding: 10px 0;
  z-index: 99999;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.header-section .logo h2 {
  color: var(--thm-dark);
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 0;
}

#home .header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: none;
  box-shadow: none;
}
#home .header-section.fixed {
  background: inherit;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

/* ============ hero section ============ */
.page-wrapper {
  background-color: var(--thm-light);
  padding: 120px 0 70px;
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .page-wrapper {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .page-wrapper {
    margin-bottom: 40px;
  }
}
.page-wrapper .contact-form-wrapper {
  position: relative;
  padding: 50px;
  max-width: 490px;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-wrapper .contact-form-wrapper {
    margin: 50px auto 0px;
  }
}
@media (max-width: 767px) {
  .page-wrapper .contact-form-wrapper {
    margin: 50px auto 0px;
    padding: 30px 20px;
  }
}
.page-wrapper .contact-form-wrapper .title {
  font-size: 26px;
  color: var(--thm-base);
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-wrapper .contact-form-wrapper .title {
    font-size: 24px;
  }
}
.page-wrapper .contact-form-wrapper .title .span {
  color: var(--thm-hover);
}
.page-wrapper .contact-form-wrapper .sub-title {
  font-size: 14px;
  color: var(--thm-text);
  font-weight: 400;
  margin-bottom: 24px;
}
.page-wrapper .contact-form-wrapper .contact-form .consent {
  font-size: 12px;
  text-align: justify;
}
.page-wrapper .contact-form-wrapper .contact-form .consent a {
  color: inherit;
}
.page-wrapper .contact-form-wrapper .contact-form .consent a:hover {
  color: var(--thm-hover);
}
.page-wrapper .contact-form-wrapper .contact-form .submit-btn {
  text-transform: uppercase;
}
.page-wrapper .contact-form-wrapper .contact-form .formfooter {
  font-size: 13px;
}
.page-wrapper .contact-form-wrapper .contact-form .formfooter a {
  color: var(--thm-base);
}

.process-section {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .process-section {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .process-section {
    margin-bottom: 40px;
  }
}
.process-section .process-image img {
  max-height: 600px;
  text-align: center;
  margin: 0 auto;
  display: block;
}
@media (max-width: 991px) {
  .process-section .process-image img {
    max-height: 400px;
  }
}
@media (max-width: 991px) {
  .process-section .process-content {
    margin-top: 40px;
  }
}
.process-section .process-content .process-title {
  font-size: 30px;
  color: var(--thm-base);
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .process-section .process-content .process-title {
    font-size: 26px;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .process-section .process-content .process-title {
    font-size: 24px;
  }
}
.process-section .process-content .process-list {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .process-section .process-content .process-list {
    padding-top: 0px;
  }
}
.process-section .process-content .process-list .process-step {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.process-section .process-content .process-list .process-step:not(:last-child) {
  margin-bottom: 20px;
}
.process-section .process-content .process-list .process-step:not(:last-child) .process-step-number label::before {
  content: "";
  width: 3px;
  height: 100px;
  background-color: var(--thm-base);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
  .process-section .process-content .process-list .process-step:not(:last-child) .process-step-number label::before {
    height: 120px;
  }
}
.process-section .process-content .process-list .process-step .process-step-number label {
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--thm-base);
  color: var(--white);
  margin-right: 30px;
  text-align: center;
  border-radius: 100%;
  font-size: 18px;
  font-weight: 500;
}
.process-section .process-content .process-list .process-step .process-step-text h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--thm-base);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .process-section .process-content .process-list .process-step .process-step-text h5 {
    font-size: 18px;
  }
}
.process-section .process-content .process-list .process-step .process-step-text p {
  margin-bottom: 0;
  color: var(--thm-text);
}

.footer-section {
  background-color: var(--thm-light);
}
.footer-section .footer-center {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .footer-section .footer-center {
    padding: 40px 0;
  }
}
.footer-section .footer-center .about-wrapper h2 {
  font-size: 22px;
  color: var(--thm-base);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-section .footer-center .about-wrapper p {
  font-size: 14px;
  line-height: 24px;
}
.footer-section .footer-center .about-wrapper p span {
  font-weight: 600;
  color: var(--thm-base);
}
@media (max-width: 991px) {
  .footer-section .footer-center .footer-block {
    margin-top: 30px;
  }
}
.footer-section .footer-center .footer-block .footer-block-title {
  font-size: 18px;
  color: var(--thm-base);
  font-weight: 500;
  margin-bottom: 15px;
}
.footer-section .footer-center .footer-block .footer-link li {
  margin: 0px 0 10px;
}
.footer-section .footer-center .footer-block .footer-link li a {
  color: var(--thm-text);
}
.footer-section .footer-center .footer-block .footer-link li a:hover {
  color: var(--thm-hover);
}
.footer-section .footer-bottom .footer-bootom-inner {
  border-top: 1px solid #D9D9D9;
  padding: 25px 0;
}
.footer-section .footer-bottom .footer-bootom-inner .copyright-block {
  font-size: 13px;
}

.scroll-to-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  position: fixed;
  right: 50px;
  bottom: 30px;
  text-align: center;
  display: none;
  overflow: hidden;
  border-radius: 50px;
  z-index: 9811;
  transition-duration: 400ms;
  background-size: 300% 100%;
  background-color: var(--thm-hover);
  transition: all 0.3s ease;
}
.scroll-to-top:hover {
  background-color: var(--thm-base);
  color: var(--white);
}

.heading {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .heading {
    margin-bottom: 30px;
  }
}
.heading .title {
  font-size: 28px;
  color: var(--thm-base);
  font-weight: 700;
  text-align: center;
}

.content-area-section {
  margin: 50px 0;
}
.content-area-section ul {
  list-style: square;
  padding-left: 32px;
}
.content-area-section ul li {
  margin-bottom: 15px;
}
.content-area-section ul li a {
  color: var(--thm-hover);
}
.content-area-section p {
  margin-bottom: 15px;
}
.content-area-section p a {
  color: var(--thm-hover);
}

.unsubscribe-section {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .unsubscribe-section {
    margin: 60px 0;
  }
}
@media (max-width: 767px) {
  .unsubscribe-section {
    margin: 40px 0;
  }
}
.unsubscribe-section .unsubscribe-form-wrapper .sub-title {
  font-size: 24px;
  color: var(--thm-base);
  font-weight: 600;
  margin-bottom: 24px;
}
.unsubscribe-section .unsubscribe-form-wrapper p {
  font-size: 16px;
  color: var(--thm-base);
  margin-bottom: 24px;
}
.unsubscribe-section .unsubscribe-form-wrapper .unsubscribe-form .submit-btn {
  text-transform: uppercase;
}/*# sourceMappingURL=style.css.map */
.unsubscribe-section {
  margin: 80px 0;
  height: calc(100vh - 533px);
}

.color-red{
  color:red;
}

/* error page css */
.sw-error-section {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .sw-error-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .sw-error-section {
    padding: 40px 0;
  }
}

.sw-error-section .sw-error-wrapper .sw-error-content {
 text-align: center;
  margin-bottom: 20px;
}

.sw-error-section .sw-error-wrapper .sw-error-content .sw-error-title {
  font-size: 40px;
  color: var(--thm-base);
  font-weight: 700;

}
@media (max-width: 991px) {
  .sw-error-section .sw-error-wrapper .sw-error-content .sw-error-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .sw-error-section .sw-error-wrapper .sw-error-content .sw-error-title {
    font-size: 26px;
  }
}

.sw-error-section .sw-error-wrapper .sw-error-content .sw-error-description {
  margin-bottom: 20px;
}

.sw-error-section .sw-error-wrapper .sw-error-content .sw-error-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.sw-error-section .sw-error-wrapper .sw-error-image,
.sw-error-section .sw-error-wrapper .sw-country-image {
  text-align: center;
}

.sw-error-section .sw-error-wrapper .sw-error-image img {
  width: 700px;
}

/* ==============coregistration page start============== */

.bs-coregistration-wrapper {
  padding: 40px;
}

.bs-coregistration-wrapper {
  margin: 60px 0;
}

.bs-offwall-section {
  padding: 60px 0px;
}

.sw-coregistration-section .sw-coregistration-wrapper {
  margin: 80px 0;
  padding: 50px;
  text-align: center;
}

@media (max-width: 991px) {
  .sw-coregistration-section .sw-coregistration-wrapper {
    margin: 60px 0;
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .sw-coregistration-section .sw-coregistration-wrapper {
    padding: 24px;
    margin: 40px 0;
  }
}

.sw-coregistration-section .sw-coregistration-wrapper .sw-coregistration-title {
  font-size: 42px;
  margin-bottom: 0;
  color: var(--thm-base);
  font-weight: 700;
}

@media (max-width: 767px) {
  .sw-coregistration-section .sw-coregistration-wrapper .sw-coregistration-title {
    font-size: 24px;
  }
}
.sw-coregistration-section .sw-coregistration-wrapper .coregistration-image {
  margin: 35px 0;
}
.sw-coregistration-section .sw-coregistration-wrapper .coregistration-image img {
  width: 400px;
}
.sw-coregistration-section .sw-coregistration-wrapper .sw-coregistration-description {
  font-size: 17px;
}
.sw-coregistration-section .sw-coregistration-wrapper .sw-coregistration-text {
  margin-bottom: 24px;
}
.sw-coregistration-section .sw-coregistration-wrapper .sw-coregistration-btn {
  margin-bottom: 24px;
}

.sw-coregistration-section .sw-coregistration-wrapper .sw-coregistration-note {
  font-size: 14px;
  margin-bottom: 0;
}

/* ============== coregistration page end ============== */



/* ============== offwall page start ============== */

.offwall-section {
 padding: 80px 0;
}

@media (max-width: 991px) {
  .offwall-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
 .offwall-section {
    padding: 40px 0;
  }
}
.offwall-section .offwall-wrapper .offwall-title {
  color: var(--thm-base);
  font-weight: 600;
}

.offwall-section .offwall-wrapper .offwall-card {
  background-color: #f9f9f9;
  padding: 20px;
  height: calc(100% - 24px);
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.offwall-section .offwall-wrapper .offwall-card-image {
  text-align: center;
  margin-bottom: 24px;
}
.offwall-section .offwall-wrapper .offwall-card-image img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.offwall-section .offwall-wrapper .offwall-card-content {
  flex-grow: 1;
}

.offwall-section .offwall-wrapper .offwall-card-content .offwall-card-title {
  font-weight: 600;
  color: var(--thm-base);
}

.offwall-section .offwall-wrapper .offwall-card-content .offwall-card-description {
  margin-bottom: 24px;
}


/* ==============offwall page end============== */