:root {
    --primary-color: #E7AFAA;
    --secondary-color: #726B5B;

    --bg-color: #faf8f6;
  }

  * {
    box-sizing: border-box;
  }
  *:not(i) {
    font-family: "Poppins", sans-serif;
  }

  a,
  button {
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .text-hover-primary:hover {color: var(--primary-color) !important;}

  .text-center {
    text-align: center;
  }

  .text-end {
    text-align: right;
  }

  .text-danger {
    color: #FF2424;
  }
  .text-muted {
    color: #484848;
  }

  .text-primary {
    color: var(--primary-color) !important;
  }

  img {
    max-width: 100%;
  }

  .font-weight-500 {
    font-weight: 500;
  }
  .font-weight-600 {
    font-weight: 600;
  }
  .font-weight-700 {
    font-weight: 700;
  }

  .me-5 {
    margin-right: 5px;
  }

  .ms-5 {
    margin-left: 5px;
  }

  .mt-5 {margin-top: 25px;}

  
  .flex-grow-1 {
      flex-grow: 1 !important;
  }
  .flex-column {
      flex-direction: column !important;
  }

  .position-relative {
    position: relative;
  }

  .w-100 {
    width: 100%;
  }

  .left-0 {
    left: 0;
  }

  .opacity-0 {
    opacity: 0;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .error {
    font-size: 12px;
    color: #f00;
  }

  .divider {
    position: relative;
    margin: 33px 0;
    font-size: 13px;
    text-align: center;
    color: #484848;
  }
  .divider span {
    padding: 1px 6px;
    background-color: #faf8f6;
    z-index: 1;
    position: relative;
  }
  .divider::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #929292;
    line-height: 1;
  }

  .font-size-10 {font-size: 10px;}
  .font-size-12 {font-size: 12px;}
  .font-size-13 {font-size: 13px;}
  .font-size-14 {font-size: 14px;}

  .font-bold {font-weight: 700;}

  .primary-header .site-header {
    position: relative;
    background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%);
  }
  
  @media screen and (min-width: 1100px){
    .primary-header .site-header .h-list .btn:not(.btn-primary) {border: 0;}
    .primary-header .site-header .h-list .btn.btn-primary {background-color: transparent;}
    .primary-header .site-header .h-list .btn.btn-primary:hover {
      background: var(--primary-color);
    }
  }

  .static-header {
    padding: 10px;
    background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%);
  }

  html {
    background: var(--bg-color);
    font-size: 15px;
    scroll-behavior: smooth;
  }
  @media screen and (max-width: 1440px) {
    html {
      font-size: 14px;
    }
  }

  body {
    padding: 0;
    margin: 0;
    background-color: var(--bg-color);
  }

  .btn {
    cursor: pointer;
    padding: 10px 26px;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    font-size: inherit;
    box-shadow: none !important;
    min-height: 41px;
  }
  .btn.btn-sm {
    padding: 0px 16px;
    line-height: 40px !important;
    height: auto;
    min-height: auto;
  }
  .btn.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }
  .btn.btn-primary:hover {
    background-color: #db98ba;
    border-color: #db98ba;
  }
  .btn.btn-primary-dark {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
  }
  .btn.btn-primary-dark:hover {
    background-color: #605b4e;
    border-color: #605b4e;
  }
  .btn-light {
    background-color: #F4F4F4; border-color: #F4F4F4;
  }
  .btn-light:hover {
    background-color: #eaeaea;
  }
  @media screen and (max-width: 1440px) {
    .btn {
      padding: 10px 24px;
      min-height: auto !important;
    }
  }

  .comfortaa-font {
    font-family: "Comfortaa", sans-serif;
  }

  .container {
    max-width: 1560px;
    margin: auto;
    padding: 0 20px;
  }
  .container-sm {
    padding: 0 20px;
  }
  @media screen and (max-width: 1440px) {
    .container {
      padding: 0 80px;
      max-width: 100%;
    }
  }
  @media screen and (max-width: 1400px) {
    .container {
      padding: 0 40px;
    }
  }
  @media screen and (max-width: 1000px) {
    .container {
      padding: 0 20px;
    }
  }

  .section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    margin: 0 0 25px;
  }
  @media screen and (max-width: 1440px) {
    .section-title {
      font-size: 30px;
    }
  }
  @media screen and (max-width: 767px) {
    .section-title {
      font-size: 22px;
      margin: 0 0 15px;
    }
  }

  .h-list {
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    grid-gap: 4px;
    /* margin-right: 5px; */
    cursor: pointer;
    align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 100%;
    background-color: #fff;
  }
  .menu-icon span {
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 3px;
  }

  .close-menu-icon {
    position: fixed;
    right: 30px;
    top: 45px;
    cursor: pointer;
    display: none;
  }

  .close-menu-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 3px;
  }

  .close-menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 2px;
  }

  .close-menu-icon span:nth-child(2) {
    transform: rotate(-45deg);
  }

  @media screen and (min-width: 1080px) {
    .d-md-none {
      display: none;
    }
  }
  .site-header {
    left: 0;
    top: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 99;
    background-color: #fff;
  }
  .site-header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header .header-row img {
    max-width: 180px;
  }
  .site-header .header-row .navigation {display: flex;}
  .site-header .header-row .navigation > ul {
    display: flex;
    align-items: center;
    grid-gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-header ul li{
    position: relative;
  }
  .site-header ul li::after {
    content: '';
    position: absolute;
    left: 0; bottom: -10px;
    width: 0%; height: 3px;
    border-radius: 8px;
    transition: all .3s ease;
    background-color: var(--primary-color);
  }
  @media screen and (max-width: 991px){
    .site-header ul li::after {bottom: 0;}
  }
  .site-header ul li.active::after {
    width: 100%;
  }
  .site-header .header-row a {
    color: #000;
  }
  .site-header .header-row a:hover {
    color: var(--secondary-color);
  }
  .site-header .header-row .btn {
    color: #fff;
    border-color: #fff;
  }
  .site-header .header-row .btn:hover {
    color: #fff;
  }
  /* .site-header .header-row .btn.btn-primary {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #fff;
  }
  .site-header .header-row .btn.btn-primary:hover {
    background-color: #605b4e;
  } */
  @media screen and (max-width: 1200px) {
    .site-header .header-row .navigation > ul {
      grid-gap: 16px;
    }
  }
  @media screen and (max-width: 991px) {
    .site-header .header-row img {
      max-width: 180px;
    }
    .site-header .header-row .navigation > ul {
      position: fixed;
      right: 0;
      top: 0;
      height: 100dvh;
      min-height: 100vh;
      width: 90%;
      flex-direction: column;
      align-items: flex-start;
      background-color: rgb(255, 255, 255, 1);
      padding: 60px 25px 20px;
      grid-gap: 0;
      margin: 0;
      transform: translateX(100%);
      transition: all 0.3s ease;
      box-shadow: 0px 0px 20px rgba(0,0,0,.1);
      z-index: 5;
      max-width: 40%;
      min-width: 280px;
    }
    .site-header .header-row .navigation > ul a {
      display: block; padding: 12px 0;
    }
    .site-header .header-row ul .h-list {
      width: 100%;
      margin-top: 25px;
      grid-gap: 5px;
    }
    .site-header .header-row ul .btn {
      flex: 1;
      text-align: center;
    }
    .site-header .header-row ul .btn.btn-outline {
      background-color: var(--primary-color);
    }
  }
  @media screen and (max-width: 480px) {
    .site-header .header-row img {
      max-width: 140px;
    }
  }
  @media screen and (max-width: 1440px) {
    .site-header {
      padding: 20px 0;
    }
  }

  .active--left-menu {
    overflow: hidden;
  }
  .active--left-menu .site-header .navigation > ul {
    transform: translateX(0%);
  }
  .active--left-menu .h-list .user-profile-dropdown {
    display: none !important;
  }
  .active--left-menu .close-menu-icon {display: block;}

  .privacy-label {
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 22px;
    background: #D7D4BD;
    border: 1px dashed var(--secondary-color);
    border-radius: 60px;
  }
  @media screen and (max-width: 1440px) {
    .privacy-label {
      font-size: 14px;
      line-height: 24px;
      padding: 5px 20px;
    }
  }

  .bg-gradient-primary {
    background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%); 
  }

  .banner {
    position: relative;
    background-size: cover !important;
  }
  .banner .caption-holder {
    padding: 100px 60px 100px calc((100% - 1520px) / 2);
    background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%);
    font-size: 13px;
    min-height: 600px;
    display: inline-flex;
    align-items: center;
  }

  @media screen and (max-width: 1600px) {
    .banner .caption-holder {padding: 100px 80px;}
  }

  @media screen and (max-width: 1200px) {
    .banner {background-position: center right 30% !important;}
    .banner .caption-holder {padding: 50px;}
  }
  @media screen and (max-width: 991px) {
    .banner .caption-holder {max-width: 50%;}
  }
  @media screen and (max-width: 812px) {
    .landing-banner {flex-direction: column;}
    .landing-banner .right-col {aspect-ratio: 5/4;}

    .banner .caption-holder {padding: 100px 20px; min-height: 450px; width: 100%; justify-content: center; text-align: center; max-width: 100%;}
    .banner .caption-holder .h-list {justify-content: center;}
  }

  @media screen and (max-width: 512px) {
    .landing-banner .right-col {aspect-ratio:1/1;}
    .landing-banner .right-col .christmas-caption {top: 45%; left: 45%; padding: 15px; margin-right: 10px;}
  }

  .banner .left-col {
    display: grid;
    grid-gap: 15px;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .banner .section-title {
    font-size: 38px;
    font-weight: 600;
    margin: 0;
  }
  .banner p {
    margin: 0 0 10px;
    max-width: 460px;
    line-height: 24px;
    font-size: 16px;
  }
  .banner .font-size-20 {
    font-size: 20px;
  }
  .banner .my-30 {
    margin-block: 10px;
  }
  .banner .btn {
    font-size: 15px;
  }
  .banner .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
  .banner .animate-img img {
    animation: move 3s ease infinite;
  }
  @keyframes move {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(40px);
    }
    0% {
      transform: translateY(0px);
    }
  }

  .about {
    text-align: center;
    padding: 20px 0 50px 0;
  }
  .about p {
    margin: 0 0 30px;
  }
  .about .h-list {
    flex-wrap: wrap;
    grid-gap: 40px;
    margin: 50px 0;
  }
  @media screen and (max-width: 1440px) {
    .about .h-list {
      grid-gap: 20px;
    }
  }
  @media screen and (max-width: 991px) {
    .about .h-list {
      flex-wrap: wrap;
    }
    .about .h-list .icon {
      width: 33%;
      flex: 33%;
      padding: 20px;
    }
  }
  .about .icon {
    flex: 1;
    background-color: #fff;
    box-shadow: 0px 0px 110px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 37px 20px;

  }
  .about .icon img {
    height: 80px;
  }
  .about .icon p {
    margin: 14px 0 0;
  }
  .about .icon:nth-child(1), .about .icon:nth-child(3), .about .icon:nth-child(5) {
    margin-top: 40px;
  }
  @media screen and (min-width: 1200px) {
    .about .icon  {max-width: 20%;}
  }
  @media screen and (max-width: 991px) {
    .about .icon:nth-child(1), .about .icon:nth-child(3), .about .icon:nth-child(5) {
      margin: 0;
    }
  }

  .feature-holder .grid-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 60px;
    grid-column-gap: 100px;
    margin-top: 50px;
  }
  @media screen and (max-width: 991px) {
    .feature-holder .grid-col-2 {
      grid-row-gap: 0px;
      grid-column-gap: 0px;
      grid-template-columns: auto;
      grid-gap: 50px;
    }
    .feature-holder .grid-col-2 .image {
      /* max-width: 50%; */
      margin: 50px auto;
    }
    .feature-holder .grid-col-2 .image::after {
      width: 300px;
      height: 300px;
    }
  }
  .feature-holder .button-holder {
    margin: 40px 0 0;
  }

  .features {
    padding: 50px 0;
    background-color: #FFF4E4;
    text-align: center;
  }

  .more-feature {
    background-color: #fff;
    padding: 80px 0;
  }
  .more-feature .grid-col {
    display: grid;
    grid-gap: 43px;
  }
  .more-feature .grid-col-2 {
    margin: 0;
    align-items: center;
  }
  .more-feature .image {
    position: relative;
  }
  .more-feature .image::after {
    content: "";
    width: 450px;
    height: 450px;
    border-radius: 100%;
    background-color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .more-feature .image img {
    position: relative;
    z-index: 1;
  }

  .card-item {
    display: flex;
    align-items: flex-start;
    grid-gap: 14px;
    text-align: left;
  }
  .card-item .icon {
    --size: 60px;
    min-width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
  }
  .card-item .icon img {
    width: 38px;
    height: auto;
  }
  .card-item h4 {
    font-weight: 700;
    margin: 0 0 10px;
    font-size: 22px;
  }
  .card-item P {
    margin: 0;
    line-height: 30px;
  }
  @media screen and (max-width: 1440px) {
    .card-item h4 {
      font-size: 18px;
    }
    .card-item p {
      line-height: 1.8;
    }
  }
  @media screen and (max-width: 767px) {
    .card-item h4 {
      font-size: 16px;
    }
  }

  .recommended {
    position: absolute;
    right: 32px;
    top: -10px;
    background: var(--secondary-color);
    border-radius: 70px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 3px 12px;
    z-index: 1;
  }

  .subscription-plan {
    padding: 50px 0;
    background: #ECEBDF url(../images/bg-layer.png) right top 100px no-repeat;
    background-size: 100px;
  }
  .subscription-plan .section-title {
    margin: 0 0 15px;
  }
  .subscription-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin: 40px 0;
  }
  .subscription-packages.grid-col-1 {
    grid-template-columns: auto !important;
  }
  .subscription-packages .card {
    position: relative;
    border: 1.5px dashed var(--secondary-color);
    border-radius: 28px;
    overflow: hidden;
  }
  .subscription-packages .card .text-danger {
    text-transform: uppercase;
  }
  .subscription-packages .card .head {
    padding: 25px 44px;
    border-bottom: 1.5px dashed var(--secondary-color);
    border-spacing: 2px;
  }
  .subscription-packages .card .head h4 {
    font-weight: 700;
    font-size: 26px;
    line-height: 29px;
    color: #000000;
    margin: 0 0 10px;
  }
  .subscription-packages .card .body {
    padding: 25px 44px 30px;
  }
  .subscription-packages .card .body h3 {
    font-weight: 400;
  }
  .subscription-packages .card .body h3 span {
    font-weight: 700;
    font-size: 40px;
  }
  .subscription-packages .card .body .btn:not(.btn-primary) {
    background-color: transparent;
  }
  .subscription-packages .card .body .btn:not(.btn-primary):hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }
  .subscription-packages .card .body .button-holder {
    margin: 30px 0 5px;
    display: flex;
    align-items: center;
    grid-gap: 25px;
  }
  .subscription-packages .card .body .button-holder .btn {
    white-space: nowrap;
    width: 100%;
  }
  .subscription-packages .card .body .button-holder hr {
    margin: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    border: 0;
  }
  .subscription-packages .card .body .content-block {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-gap: 10px;
  }
  .subscription-packages .card .body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .subscription-packages .card .body li {
    position: relative;
  }
  .subscription-packages .card .body li span {
    position: absolute;
    right: 0;
  }
  .subscription-packages .card .body li, .subscription-packages .card .body p {
    margin: 0 0 7px;
  }
  .subscription-packages .card .body li strong {
    font-weight: 600;
  }
  .subscription-packages .card.active {
    background-color: #fff;
    border-style: solid;
  }
  .subscription-packages .card.active .head {
    background-color: #F6F9FF;
    border: 0;
  }
  .subscription-packages .card.active .button-holder hr {
    background-color: var(--primary-color);
  }
  @media screen and (max-width: 1440px) {
    .subscription-packages .card .head {
      padding: 20px 25px;
    }
    .subscription-packages .card .head h4 {
      font-size: 18px;
      margin: 0 0 5px;
    }
    .subscription-packages .card .body {
      padding: 20px 25px;
    }
    .subscription-packages .card .body h3 span {
      font-size: 30px;
    }
  }
  @media screen and (max-width: 1440px) {
    .subscription-packages {
      grid-gap: 20px;
    }
  }
  @media screen and (max-width: 991px) {
    .subscription-packages {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .subscription-packages > div {
      width: 44%;
    }
  }
  @media screen and (max-width: 767px) {
    .subscription-packages > div {
      width: 100%;
    }
  }
  .subscription-plan .package-info p {
    margin: 0;
    font-size: 14px;
  }
  .subscription-plan .package-info p + p {
    margin-top: 10px;
  }
  .subscription-plan .package-info p strong {
    font-weight: 600;
  }

  .download-app {
    padding: 50px 0;
  }
  .download-app .section-title {
    font-size: 30px;
  }
  .download-app .content {
    border-radius: 28px;
    background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%); overflow: hidden;
  }
  .download-app .content .flex-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .download-app .content .left-col {
    padding: 50px;
  }
  .download-app .content .right-col {
    padding: 50px 50px 0 50px;
    display: flex;
    grid-gap: 30px;
    align-items: flex-end;
  }
  .download-app .content .right-col img:nth-child(1) {
    max-width: 240px;
    position: relative;
    margin-bottom: -160px;
  }
  .download-app .content .right-col img:nth-child(2) {
    max-width: 240px;
    position: relative;
    margin-bottom: -20px;
  }
  .download-app .content p {
    margin: 0 0 38px;
  }
  @media screen and (max-width: 1280px) {
    .download-app .content .left-col {
      padding: 40px;
    }
    .download-app .content .right-col {
      padding: 30px 40px 0 0;
    }
    .download-app .content .right-col img {
      max-width: 240px;
    }
  }
  @media screen and (max-width: 1024px) {
    .download-app .content .flex-row {
      grid-template-columns: auto;
      text-align: center;
    }
    .download-app .content .right-col {
      display: none;
    }
    .download-app .content .h-list {
      justify-content: center;
    }
    .download-app .content p {
      margin: 0 0 25px;
    }
    .download-app .section-title { 
      font-size: 20px; line-height: 1.5;
    }
  }
  .download-app .button-holder {
    margin-top: 40px;
  }

  .contact-us {
    position: relative;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 50px 0;
  }
  .contact-us .grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    position: relative;
    z-index: 1;
  }
  .contact-us .left-col {
    padding: 50px 80px 50px 0px;
    background-color: var(--primary-color);
    color: #000;
  }
  .contact-us .left-col .section-title {
    margin: 0;
  }
  .contact-us .left-col .content {
    margin: 0 0 0 auto;
    grid-gap: 30px;
    display: grid;
  }
  .contact-us .left-col .content .h-list a:hover {
    opacity: 0.7;
  }
  .contact-us .left-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-us .left-col ul li {
    display: flex;
    align-items: center;
    grid-gap: 14px;
    color: #000;
  }
  .contact-us .left-col ul li:not(:last-child) {
    margin-bottom: 22px;
  }
  .contact-us .left-col ul li a {
    display: flex;
    align-items: center;
    grid-gap: 14px;
    color: #000;
  }
  .contact-us .left-col ul li a span {
    line-height: 1;
  }
  .contact-us .left-col ul li a:hover {
    text-decoration: underline;
  }
  .contact-us .left-col .h-list {
    margin-bottom: 30px;
  }
  .contact-us .right-col {
    padding: 50px 50px 80px 50px;
  }
  .contact-us .right-col form {
    margin-top: 30px;
  }
  .contact-us .right-col .flex-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 23px;
  }
  .contact-us .right-col .btn.btn-primary:hover {
    background-color: #db98ba;
    border-color: #db98ba;
  }
  @media screen and (max-width: 991px) {
    .contact-us::before {
      display: none;
    }
    .contact-us .grid-cols-2 {
      grid-template-columns: auto;
      grid-gap: 0;
    }
    .contact-us .grid-cols-2 .left-col {
      margin: 0 -20px;
      padding: 50px 20px !important;
    }
    .contact-us .grid-cols-2 .right-col,
    .contact-us .grid-cols-2 .left-col {
      padding: 50px 0;
    }
  }
  @media screen and (max-width: 991px) {
    .contact-us br {
      display: none;
    }
  }

  .form-group {
    margin: 0 0 24px;
  }
  .form-group label {

    display: block;
    margin: 0 0 6px;
  }

  .form-control {
    padding: 15px 18px;
    border-radius: 8px;
    background-color: #fff;
    border: 2px solid transparent;
    outline: none;
    box-shadow: none;
    width: 100%;
    appearance: none;
    box-shadow: none !important;
    font-size: 14px;
  }
  select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 12px;
  }
  .form-control:focus {
    border-color: var(--primary-color);
  }

  textarea.form-control {
    min-height: 145px;
    resize: none;
  }

  footer {
    position: relative;
    background-color: var(--primary-color);
    padding: 50px 0 60px;
    color: #000;
  }
  footer .footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 10px;
  }
  footer .footer-row .col {flex: 1;}
  footer .footer-row .logo {
    margin: 15px 0;
  }
  footer .footer-row .logo img {
    max-width: 180px;
  }
  footer .footer-row h3 {
    font-size: 24px;
    margin: 0 0 30px;
  }
  footer .footer-row ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-gap: 10px;
  }
  footer .footer-row li,
  footer .footer-row li a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }
  footer .footer-row img {
    min-width: 15px;
  }
  footer .footer-row a {
    color: #000;
  }
  footer .footer-row a:hover {
    color: var(--secondary-color);
  }
  @media screen and (max-width: 812px) {
    footer .footer-row {
      flex-wrap: wrap;
      grid-row-gap: 25px;
      grid-column-gap: 10px;
    }
    footer .footer-row > div {
      width:50%;
      font-size: 12px;
    }
    footer .footer-row > div:nth-child(1) {
      flex: none;
      width: 100%;
    }
    footer .footer-row > div:nth-child(3) .logo img {
      max-width: 140px;
    }
    footer .footer-row span img {
      max-width: 20px;
    }
    footer .footer-row h3 {
      font-size: 16px;
      margin: 0 0 12px;
    }
    footer .h-list {grid-gap: 8px;}
    footer .privacy-label {font-size: 11px;}
  }
  footer p {
    margin: 0 0 10px;
    font-weight: 400;
    max-width: 80%;
  }

  .copy-right {
    background-color: #000;
    padding: 15px 0;
    color: #fff;
  }
  .copy-right .flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .login-screen {
    display: grid;
    grid-template-columns: 1fr 740px;
    min-height: 100vh;
  }
  .login-screen h1 {
    margin: 0 0 31px;
  }
  .login-screen a {
    color: #000;
  }
  .login-screen a:hover {
    color: var(--primary-color);
  }
  .login-screen .left-col {
    font-size: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
  }
  .login-screen .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .login-screen .body {
    padding: 30px 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    max-width: 500px;
  }
  .login-screen .body .form {
    width: 100%;
    max-width: 400px;
  }
  .login-screen .social-links {
    margin: 0 0 40px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }
  .login-screen .social-links a {
    background-color: #fff;
    border-radius: 5px;
    padding: 5px 26px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    grid-gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid transparent;
  }
  .login-screen .social-links a:hover {
    border-color: var(--primary-color);
  }
  .login-screen p {
    color: #484848;
  }
  .login-screen p a {
    font-weight: 500;
    color: #000;
  }
  .login-screen .button-holder {
    margin-top: 44px;
  }
  .login-screen .form-control {
    border-color: #EABBB7;
    border-width: 1px;
  }
  .login-screen .form-control:focus {
    background-color: transparent;
  }
  .login-screen .back-to-home {
    margin: 44px 0 0;
  }
  .login-screen .back-to-home a {
    font-weight: 500;
  }
  .login-screen .right-col {
    position: relative;
    background: url(../images/auth-right.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .login-screen .right-col .hand-img {
    position: absolute;
    right: 0;
    bottom: -20px;
    max-width: 70%;
  }
  @media screen and (max-width: 1366px) {
    .login-screen {
      grid-template-columns: 1fr 500px;
    }
    .login-screen .filter-box {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 1024px) {
    .login-screen {
      grid-template-columns: auto;
    }
    .login-screen .right-col {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .login-screen h1 {
      font-size: 24px;
    }
    .login-screen .logo img {
      max-width: 140px;
    }
    .login-screen .body {
      max-width: 100%;
    }
    .login-screen .body .form {
      max-width: 100%;
    }
  }

  .filter-box {
    padding: 30px 40px;
    font-size: 18px;
    color: #fff;
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 10%;
    z-index: 1;
    background: rgba(255, 242, 242, 0.13);
    mix-blend-mode: normal;
    backdrop-filter: blur(50px);
    border-radius: 10px;
  }

  .pre-register {
    padding: 30px;
    background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .pre-register h1 {
    font-weight: 400;
    text-align: center;
    margin: 0 0 34px;
    display: flex;
    flex-direction: column;
    font-size: 28px;
  }
  .pre-register h1 strong {
    font-weight: 700;
  }
  .pre-register p {
    font-size: 13px;
    color: #484848;
    margin: 0;
  }
  .pre-register a {
    font-weight: 500;
    color: #000;
  }
  .pre-register .logo {
    margin-bottom: 40px;
  }
  .pre-register .form {
    padding: 30px 40px 34px;
    border-radius: 10px;
    background: #fff url(../images/form-bg.png) left top no-repeat;
    width: 100%;
    max-width: 580px;
  }
  .pre-register .form .form-group {
    margin: 0 0 20px;
  }
  .pre-register .form .form-control {
    border-width: 1px;
    border-color: var(--primary-color);
  }
  .pre-register .form .form-control:focus {
    background-color: #f8f8f8;
  }
  .pre-register .form .button-holder {
    margin: 0 0 25px;
  }
  .pre-register .form .grid-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    align-items: flex-start;
  }
  .pre-register.registration-success p {
    margin: 0 0 20px;
    text-align: center;
    font-size: 14px;
  }
  .pre-register.registration-success .logo img {
    width: 200px;
  }
  .pre-register.registration-success .privacy-label {
    font-size: 16px;
  }
  @media screen and (max-width: 991px) {
    .pre-register .logo img {
      max-width: 160px;
    }
    .pre-register h1 {
      font-size: 20px;
    }
    .pre-register h1 strong {
      font-weight: 600;
    }
    .pre-register .logo {
      margin-bottom: 20px;
    }
    .pre-register .form {
      max-width: 100%;
      padding: 22px 22px 30px;
    }
    .pre-register .form .grid-col-2 {
      grid-template-columns: auto;
    }
  }
  @media screen and (max-width: 676px) {
    .pre-register .d-flex {
      flex-direction: column;
      grid-gap: 20px;
    }
  }

  .fld-icon {
    position: relative;
  }
  .fld-icon .form-control {
    padding-right: 50px;
  }
  .fld-icon .icon {
    position: absolute;
    right: 15px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .fld-icon .icon img {
    width: 20px;
  }

  .select2 {
    width: 100%;
  }
  .select2 .select2-selection {
    font-size: 14px;
    padding: 15px 18px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    outline: none;
    box-shadow: none;
    width: 100%;
    height: auto !important;
    line-height: normal;
  }
  .select2 .select2-selection .select2-selection__rendered {
    line-height: normal;
    padding: 0;
  }
  .select2 .select2-selection .select2-selection__arrow {
    height: 100%;
    right: 10px;
  }

  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--secondary-color);
  }

  .select2-container--focus .select2-selection {
    background-color: #f8f8f8;
  }

  .select2-results__option {
    font-size: 14px;
  }

  .iti {
    width: 100%;
  }

  .verify-email {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .verify-email h1 {
    font-weight: 600;
    margin: 0 0 10px;
    font-size: 30px;
  }
  .verify-email .icon {
    max-width: 160px;
    margin: 0 auto 20px;
  }
  .verify-email .form {
    background-image: none;
  }

  #countdown {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    margin: 10px 0 20px 0;
    font-size: 12px;
  }
  #countdown b {
    display: block;
    font-size: 24px;
    line-height: 1.4;
  }
  #countdown span {
    display: block;
    flex-direction: column;
    padding: 8px 4px 8px;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    min-width: 80px;
  }

  .links-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .links-data p {
    color: #929292;
    font-size: 14px;
    margin: 0 0 8px;
  }
  .links-data ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  @media screen and (max-width: 991px) {
    .links-data ul {
      grid-gap: 8px;
    }
  }
  .links-data a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
  }
  .links-data a:hover {
    color: var(--primary-color);
  }

  .up-link {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 676px) {
    .up-link {
      top: 20px;
      right: 20px;
      transform: none;
    }
  }

  .page-heading {
    padding: 32px 0;
    margin: 0 0 32px;
    border-bottom: 1px solid var(--primary-color);
  }
  .page-heading h1 {
    font-size: 32px;
    margin: 0;
  }

  @media screen and (max-width: 676px) {
    .page-heading h1 {
      font-size: 20px;
    } 
  }

  .privacy-terms {
    font-size: 14px;
    margin-bottom: 60px;
  }
  .privacy-terms .alert {
    margin: 0 0 30px; border: 0;
  }
  .privacy-terms .ml-0 {
    margin-left: 0 !important;
  }
  .privacy-terms h1, .privacy-terms h2 {
    color: #000;
    font-weight: 600;
  }
  .privacy-terms h1 {
    font-size: 24px;
  }
  .privacy-terms h2 {
    font-size: 18px;
    margin-top: 30px;
  }
  .privacy-terms p {
    position: relative;
    margin: 10px 0px 10px 35px;
    word-break: break-word;
  }
  .privacy-terms p span {
    position: absolute;
    left: -35px;
    top: 2px;
    font-weight: 600;
    display: inline-block;
  }
  .privacy-terms a {
    color: #3498db;
    text-decoration: none;
  }
  .privacy-terms li {
    margin: 5px 0px;
  }
  .privacy-terms a:hover {
    text-decoration: underline;
  }

  .alert {
    padding: 9px 15px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background-color: #F7EDEB;
    font-size: 14px;
    font-style: italic;
    color: #726B5B;
  }

  
  .form-holder {
    max-width: 900px;
    margin: auto;
  }

  .static-page {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
  }
  .static-page p {
    line-height: 30px;
  }
  .static-page .area {
    flex-grow: 1;
  }

  .static-page h3:not(.section-title) {font-size: 18px; font-weight: 600;}
  .static-page .col-lg-12 {margin: 0 0 20px;}

  @media screen and (max-width: 812px) {
    .form-holder .text-end {text-align: center; margin-top: 20px;}
    .form-holder .text-end button {width: 100%;}
  }


  /*# sourceMappingURL=main.css.map */


  .error {font-size: 12px; color: #f00;}


.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3); /* Light grey border */
    border-top: 4px solid #fff; /* White */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn:disabled {
    opacity: 0.5; /* Optional: lowers the opacity of the button when disabled */
    cursor: not-allowed; /* Optional: shows a not-allowed cursor on hover when disabled */
}



/* Modal Container */
.modal {
    font-family: "Poppins", sans-serif;
}

/* Modal Content */
.modal-dialog {
    position: relative; /* Set the relative positioning context for the pseudo-element */
    margin: 0 auto; /* Margin settings from your existing CSS */
    max-width: 1000px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    overflow: hidden; /* Ensures the pseudo-element doesn't overflow */
    display: flex; align-items: center;justify-content: center;
}

/* Modal body */
.modal-body {
  position: relative; /* Set the relative positioning context for the pseudo-element */
  background: linear-gradient(to right, #ebb1c2, #d1b4dc); /* Gradient background */
  margin: 0 auto; /* Margin settings from your existing CSS */
  padding: 20px; /* Padding settings from your existing CSS */
  border: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  overflow: hidden; /* Ensures the pseudo-element doesn't overflow */
}

.modal-content {
  background-color: transparent;
  border: 0;
}

/* Ensure the text and other content is layered above the pseudo-element */
.modal-content > * {
    position: relative;
    z-index: 1;
}


/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

.close:hover,
.close:focus {
    color: #333;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .modal-content {
        width: 80%; /* More screen width on smaller screens */
        padding: 20px; /* Less padding on smaller screens */
        margin-top: 20%; /* Higher margin from the top */
    }
    .pre-registration-badge {
        display: none;
    }
}

.pre-registration--modal h1 {font-size: 32px; font-weight: 600;}

.pre-registration--modal .col-lg-7 {max-width: 55%;}
.pre-registration--modal .modal-body::before {
    content: '';
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    width: 38%; /* Or the width of your choice */
    background-image: url('../images/banner.svg'); /* Image path */
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

@media screen and (max-width: 812px) {
  .modal {padding: 15px;}
  .modal-content {width: 100%;}

  .pre-registration--modal {text-align: center; margin: 0;}
  .pre-registration--modal .col-lg-7 {max-width: 100%;}
  .pre-registration--modal .modal-body::before {display: none;}
}



.pre-registration-badge {
    position: fixed; /* Fixed position to make it sticky */
    right: 0; /* Stick to the right side */
    top: 50%; /* 70% from the top of the viewport */
    transform: translateY(-50%); /* Adjust to better center the text vertically */
    background-color: #726b5b; /* Custom background color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding for size */
    border-top-left-radius: 5px; /* Rounded corners on the left top */
    border-bottom-left-radius: 5px; /* Rounded corners on the left bottom */
    text-decoration: none; /* Remove underline from the link */
    font-weight: bold; /* Bold font */
    z-index: 1000; /* Ensure it's on top of other content */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.pre-registration-badge:hover {
    background-color: #898270; /* Slightly lighter shade for hover */
}


.our-blog {
  padding: 60px 0 30px;
}

.our-blog .slick-arrow {
  position: absolute; left: -50px; top: 50%; transform: translateY(-50%); z-index: 1; font-size: 0; width: 44px; height: 44px; background-color: lightgray; border: 0; border-radius: 100%; cursor: pointer;
}
.our-blog .slick-arrow:hover {
  background: var(--secondary-color);
}

.our-blog .slick-arrow::after {
  content: '';
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  margin-left: 2px;
}
.our-blog .slick-arrow.slick-next {
  left: auto; right: -50px; transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 1330px) {
  .our-blog .slick-arrow {
    left: 0px; top: 30%;
  }
  .our-blog .slick-arrow.slick-next {
    right: 0px;
  }
}

.our-blog  .grid-cols-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 40px; margin-top: 40px;
}
.our-blog .card {
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  margin: 10px;
}

.our-blog .card .image {
  height: 242px; overflow: hidden; background-color: #ccc;
}
.our-blog .card .image img {
  width: 100%; height: 100%; object-fit: cover;
}
.our-blog .card .card-body {
  padding: 18px 28px 28px;
}
.our-blog .card h4 {
  font-size: 18px; margin: 0 0 15px; font-weight: 600; min-height: 70px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.our-blog .card p {
  font-size: 15px; margin: 0 0 30px; min-height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.our-blog .card a {display: inline-flex; padding: 10px 22px;}

@media screen and (max-width: 1440px) {
.our-blog .card p {
  font-size: 14px;
}
}
@media screen and (max-width: 1024px) {
  .our-blog  .grid-cols-3 {grid-template-columns: repeat(2, 1fr);}
}

@media screen and (max-width: 767px) {
  .our-blog  .grid-cols-3 {grid-template-columns: repeat(1, 1fr);}

  .modal h1 {font-size: 20px; line-height: 1.5;}

  .modal-content {margin: 0;}
}

.grecaptcha-badge {z-index: 1;}

/* aq-page */

.faq-page {padding-bottom: 60px;}
.faq-page .question {border-bottom: 1px solid #e8e8e8; transition: all .3s ease;}
.faq-page .question a {color: var(--secondary-color); text-decoration: underline;}
.faq-page .question.active .head,
.faq-page .question .head:hover {background-color: #f0f0f0;}
.faq-page .question .head {display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer;}
.faq-page .question h4 {font-size: 16px; margin: 0; font-weight: 500;}

.faq-page .question:not(.active) .collapse {max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}
.faq-page .question .body {padding: 20px 20px 20px 20px;}
.faq-page .question h5 {font-size: 14px; margin: 0 0 5px; font-weight: 600; opacity: .9;} 
.faq-page .question p {font-size: 14px; margin: 0 0 20px 0; opacity: .7;}
.faq-page .question ul {margin: 0 0 25px;}
.faq-page .question li {font-size: 14px; margin: 0 0 6px 0; opacity: .7;}

.faq-page .question.active .collapse {max-height: max-content; display: block !important;}
.faq-page .question.active .head svg line:nth-child(1) {display: none;}


.mm-auth--view a {color: #000 !important;}
.mm-auth--view a:hover {color: var(--primary-color) !important;}

.mm-auth--view {
  display: grid;
  grid-template-columns: 1fr 770px;
  align-items: flex-start;
  background-color: #FAF8F6;
  min-height: 100vh;
  font-weight: 400;
  font-size: 14px;
}

.mm-auth--view.register {
  grid-template-columns: 770px 1fr;
}
.mm-auth--view .left--col {
  padding: 40px 38px 30px 60px;
  min-height: 100vh;
}
.mm-auth--view .right--col {
  position: sticky !important;
  top: 0;
  min-height: 100vh;
  background-color: #fff;
}
.mm-auth--view .logo {
  max-width: 200px;
}
.mm-auth--view .auth--title h1 {
  font-weight: 400;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 6px;
}
.mm-auth--view .auth--title p {
  line-height: 29px;
  margin: 0 0 30px;
}
.mm-auth--view form .btn {
  margin: 20px 0 0;
}
.mm-auth--view .form-group {
  margin: 0 0 18px;
}
.mm-auth--view .form-control {
  border-color: #F0B0BD;
  border-width: 1px;
  background-color: #fff;
}
.mm-auth--view .form-control:focus {
  outline: 1px solid #F0B0BD !important;
}
.mm-auth--view .social--button {
  flex: 1;
}
.mm-auth--view .right--col {
  position: relative;
}
.mm-auth--view .right--col .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mm-auth--view .right--col .vid {
    width: 250px;
    height: 480px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    overflow: hidden;
    background: rgb(255, 255, 255, .5);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.mm-auth--view .right--col .vid video {
  width: 100%; height: 100%;
}
.mm-auth--view .login-info {
  animation: moveup 0.4s ease;
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  z-index: 1;
  background: rgba(255, 242, 242, 0.13);
  mix-blend-mode: normal;
  backdrop-filter: blur(50px);
  border-radius: 10px;
  padding: 47px 42px;
}
.mm-auth--view .login-info .btn {
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 16px;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.mm-auth--view .login-info .btn:hover {
  background: var(--primary);
  color: #fff;
}
.mm-auth--view .login-info p {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
  margin: 25px 0 0;
}
@keyframes moveup {
  0% {
    transform: translateY(80%);
    opacity: 0.5;
 }
  100% {
    transform: translateY(0%);
    opacity: 1;
 }
}
.mm-auth--view .iti__selected-flag {
  height: 60px;
}
@media screen and (min-width: 1700px) {
  .mm-auth--view .form, .mm-auth--view form {
    min-width: 400px;
    max-width: 850px;
 }
}
@media screen and (max-width: 1700px) {
  .mm-auth--view {
      grid-template-columns: 1fr 570px;
  }
  .mm-auth--view.register {
    grid-template-columns: 570px 1fr;
  }
  .mm-auth--view .logo img {
    max-width: 140px;
 }
  .mm-auth--view .left--col {
    padding: 30px;
 }
  .mm-auth--view .auth--title h1 {
    font-size: 20px;
    line-height: 22px;
 }
  .mm-auth--view .auth--title p {
    margin: 0 0 25px;
    line-height: 20px;
 }
  .mm-auth--view .iti__selected-flag {
    height: 42px;
 }
  .mm-auth--view .form, .mm-auth--view form .btn.btn-large {
    font-size: inherit;
    min-height: 44px;
 }
  .mm-auth--view .form-group {
    margin: 0 0 12px;
 }
  .mm-auth--view .auth-input {
    padding: 12px 20px;
    font-size: inherit;
    border-radius: 4px;
 }
  .mm-auth--view .login-info {
    padding: 25px;
 }
  .mm-auth--view .login-info .btn {
    font-size: inherit;
 }
  .mm-auth--view .login-info .btn img {
    width: 18px;
 }
  .mm-auth--view .login-info p {
    line-height: 22px;
    font-size: 13px;
 }
}
@media screen and (max-width: 1200px) {
  .mm-auth--view {
    grid-template-columns: 1fr;
    font-size: 12.5px;
 }
 .mm-auth--view.register {
    grid-template-columns: 1fr;
  }
  .mm-auth--view .right--col {
    display: none;
 }
}
@media screen and (max-width: 990px) {
  .mm-auth--view .flex-grow-1 > div {
    width: 100%;
    max-width: 100%;
 }
  .mm-auth--view .form, .mm-auth--view form {
    min-width: 100%;
 }
}
@media screen and (max-width: 767px) {
  .mm-auth--view .logo img {
    max-width: 120px;
 }
  .mm-auth--view .auth--title h1 {
    font-size: 22px;
    margin: 0;
 }
  .mm-auth--view .left--col {
    padding: 20px;
 }
  .mm-auth--view .flex-grow-1 > div {
    width: 100%;
    max-width: 100%;
 }
  .mm-auth--view .form, .mm-auth--view form {
    min-width: 100%;
 }
  .mm-auth--view .form, .mm-auth--view form .btn.btn-large {
    min-width: auto;
 }
}

.mm-auth--view .grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .mm-auth--view .grid-col-2 {
    grid-template-columns: auto; 
  }

  .mm-auth--view .form-group .grid-col-2 {
    grid-gap: 20px;
  }
}


.max-w-550px {max-width: 550px; margin: auto;}
.max-md-400px {max-width: 400px; margin: 0 auto;}

#or {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 13px;
  margin: 20px auto;
}

#or .text-muted {
  background-color: #FAF8F6;
}

#or::before,
#or::after {
  position: absolute;
  width: 110px;
  height: 1px;
  
  top: 24px;
  
  background-color: #aaa;
  
  content: '';
}

#or::before {
  left: 0;
}

#or::after {
  right: 0;
}

.eye-icon {
  position: relative;
}

.eye-icon .icon-holder {position: absolute; right: 10px; top: 6px !important; width: 40px; height: 40px; border-radius: 100%; display: flex; align-items: center; justify-content: center;}
.eye-icon .icon-holder:hover {background-color: #f1f1f1; cursor: pointer;}

.social--button {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: #fff;
  border: 1px solid #dedede;
  display: inline-flex;
  align-items: center;
  grid-gap: 8px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  justify-content: center;
  text-decoration: none;
}
.social--button img {
  max-width: 22px;
  max-height: 22px;
  min-height: 22px;
}
.social--button span {
  font-weight: 500;
  font-size: inherit;
  color: #000;
}
.social--button:hover, .social--button:focus {
  border-color: var(--primary);
}
@media screen and (max-width: 1700px) {
  .social--button {
    font-size: inherit;
    padding: 7px 14px;
 }
  .social--button img {
    max-width: 18px;
 }
}
@media screen and (max-width: 676px) {
  .social--button {
    justify-content: center;
    padding: 7px;
    flex: 1;
 }
}


.blur-box {
  background: rgba(255, 242, 242, 0.13);
  mix-blend-mode: normal;
  backdrop-filter: blur(50px);
  border-radius: 10px;
  line-height:1.5;
  font-size: 14px;
  color: #fff;
  padding: 25px 30px;
  max-width: 80%;
  position: absolute;
  width: calc(100% - 10%);
  left: 10%;
  bottom: 70px;
}
@media screen and (max-width: 1700px) {
  .blur-box {
    padding: 22px; bottom: 50px;
  }
}

/* new-ui-23-06-24 */
.page-content-centered {
  min-height: calc(100dvh - 90px);
  display: flex; align-items: center; justify-content: center;
  padding: 30px 0;
}

/* subscription-plan-card */
.subscription-plan-card .card {border-radius: 12px; border-color: #E6E6E6 !important;}
.subscription-plan-card .card-title {font-weight: 600; font-size: 18px;}
.subscription-plan-card .card-body {padding: 32px 40px;}
.subscription-plan-card .card.bg-light {background-color: #FAFAFA;}
.subscription-plan-card hr {margin: 20px 0; background-color: #E6E6E6; opacity: 1;}

@media screen and (max-width: 991px) {
  .subscription-plan-card .card-body {padding: 18px;}
}

.min-w-180px {min-width: 180px;}

/* user-profile-dropdown */
.user-profile-dropdown .btn-icon {display: flex; align-items: center; grid-gap: 10px; background: transparent !important; box-shadow: none !important;}
.user-profile-dropdown .btn-icon .icon {width: 40px; height: 40px; border-radius: 100%; background-color: #c6c6c6;}
.user-profile-dropdown .btn-icon .icon img {object-fit: cover; width: 100%; height: 100%;}
.user-profile-dropdown .dropdown-menu {transform: none !important; left: auto !important; top: 100% !important; right: 0 !important;
    margin-top: 10px !important;
    padding: 10px 12px;
    background: #FFFFFF;
    box-shadow: 0px 10px 10px rgba(15, 23, 42, 0.05), 0px 20px 25px -5px rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    min-width: 280px;
    max-width: 280px;
}
.user-profile-dropdown .head {
  padding: 10px;
}
.user-profile-dropdown h5 {font-weight: 600; font-size: 16px; color: #000; margin: 0 0 2px;}
.user-profile-dropdown p {font-weight: 400; font-size: 14px; color: #484848; margin: 0 0 5px;}
.user-profile-dropdown a {padding: 7px 10px; display: flex; align-items: center; grid-gap: 10px; color: #000; font-size: 14px;}
.user-profile-dropdown a:hover {background-color: #FAF8F6;}

/* profile-page */
.profile-page {padding: 60px 0; background-color: #fff;}
.profile-page .left-col {padding: 30px 0;}
.profile-page .left-col ul {display: flex; flex-direction: column; list-style: none; padding: 0; margin: 0;}
.profile-page .left-col li {border-bottom: 1px solid #dee2e6;}
.profile-page .left-col li a {position: relative; display: flex; align-items: center; grid-gap: 10px; padding: 18px 25px; color: #000;}
.profile-page .left-col li a::before {content: ''; position: absolute; left: 0; top: 0; width: 0%; height: 100%; background-color: var(--primary-color); opacity: .1;}
.profile-page .left-col li a.active {
  color: var(--primary-color);
  box-shadow: 6px 0px inset var(--primary-color);
}
.profile-page .left-col li a.active::before {
  width: 100%;
}
.profile-page .left-col li a:not(.active):hover { background-color: #f1f1f1;}

.profile-page .user-profile {max-width: 180px; margin: 0 auto 50px; text-align: center;}
.profile-page .user-profile .img {width: 130px; height: 130px; border-radius: 100%; background-color: #f2f2f2; margin: auto;}

.profile-page .head {padding: 20px 30px;}
.profile-page .head h5 {font-size: 20px; font-weight: 600;}
.profile-page .head p {font-size: 14px;}
.profile-page .body {padding: 40px 30px;}

.profile-page .form-control {border: 1px solid var(--primary-color);}

@media screen and (max-width: 992px) {
  .profile-page .border-start {border-left: 0 !important;}
  
  .profile-page .head,
  .profile-page .body {padding: 15px;}
  
  /* .profile-page .right-col {margin-top: 40px;} */
}


/* subscription-active-plan */
.subscription-active-plan {display: grid; grid-template-columns: auto auto auto 1fr; grid-gap: 20px; border-radius: 12px; align-items: center; font-size: 13px; padding: 15px; overflow: hidden;}
.subscription-active-plan .bg-primary {background: #F6F9FF !important; padding: 15px 25px 15px 15px; margin: -15px 0 -15px -15px;}
.subscription-active-plan h1 {font-size: 40px; font-weight: 600; margin: 5px 0 0;}
.subscription-active-plan h1 sup {font-weight: 400; font-size: 13px; vertical-align: top; top: 8px;}
.subscription-active-plan h1 span {font-size: 13px; font-weight: 400;}
.subscription-active-plan .btn {padding: 13px 20px;}

@media screen and (max-width: 1200px) {
  .subscription-active-plan {font-size: 12px; grid-template-columns: auto;}
  .subscription-active-plan .bg-primary {margin: -15px -15px 0 -15px;}
  .subscription-active-plan .btn {padding: 10px;}
}

/* table-holder */
.table-holder .table-title {font-weight: 500;}
.table-holder th {background-color: #f7f7f7; padding: 8px 12px; min-width: 100px;}
.table-holder th,
.table-holder td {font-weight: 400; font-size: 13px; white-space: nowrap;}
.table-holder td {padding: 15px;}
.table-holder tr:not(:last-child) td {border-bottom: 1px dashed #cccccc;}


.badge {border-radius: 15px; font-weight: 400; padding: 4px 9px;}
.bg-success {background: #8ce2a0 !important; color: #000;}

.form-switch .form-check-input {width: 40px; height: 20px; box-shadow: none !important;}
.form-check-input:checked {background-color: var(--primary-color); border-color: var(--primary-color);}

input[type="checkbox"],
input[type="radio"] {box-shadow: none !important;}

/* .d-lg-none { display: block !important;}
@media (min-width: 1081px) {
  .d-lg-none {
      display: none !important;
  }
} */


/* off-modal-style */
.backdrop-offermodal {
  position: fixed; left: 0; top: 0; width: 100%; height: 100vh; background: rgba(52, 64, 84, 0.60); backdrop-filter: blur(20px); z-index: 99; pointer-events: none; user-select: none;
}

.off-modal-style {
  background-size: cover !important; max-width: 650px; border-radius: 12px; padding: 25px;
}
.off-modal-style .close {
  border-radius: 8px;
  background: #fff;
  backdrop-filter: blur(20px);
  padding: 5px;
  position: absolute; right: -15px; top: -15px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
}
.off-modal-style .dialog {
  padding: 25px; border: 2px solid #fff; border-radius: 12px; text-align: center;
}
.off-modal-style .dialog h4 {font-size: 28px;}

@media screen and (max-width: 991px) {
  .off-modal-style {width: 100%; padding: 15px; font-size: 13px;}
  .off-modal-style .close {right: 0; top: -25px;}
  .off-modal-style .dialog {padding: 15px;}
  .off-modal-style .dialog h4 {font-size: 22px;}
}

.plan-toggle {border: 1px solid #E6E6E6 !important; padding: 6px; border-radius: 10px; background-color: #fff; display: flex;}
.plan-toggle .btn {background-color: #f2f2f2 !important; border-color: transparent !important; color: var(--secondary-color) !important; box-shadow: none !important; font-size: 14px; flex-grow: 1;}
.plan-toggle .btn.active {background-color: var(--secondary-color) !important; color: #fff !important;}

.divider-primary {height: 1px; width: 100%; background-color: var(--primary-color);}

/* partner-registration */
.partner-registration h1 {margin: 0; font-size: 30px; line-height: 1.5;}
.partner-registration .form {background: #fff;}
.partner-registration .step {display: none;}
.partner-registration .step-active {display: block;}
.partner-registration .divider {margin: 20px -40px;}
.partner-registration .divider::after {border-color: #D9DBE9; top: 0;}

.step-nav ul {padding: 0; margin: 0; list-style: none; display: flex; align-items: center; justify-content: center; grid-gap: 50px;}
.step-nav li {position: relative; --size: 34px; width: var(--size); height: var(--size); border-radius: 100%; display: flex; align-items: center; justify-content: center; background-color: #EFF0F6; color: #6F6C90; font-size: 16px;}
.step-nav li.active {background-color: var(--secondary-color); color: #fff;}
.step-nav li:not(:last-child):after {content: ''; position: absolute; left: calc(100% + 5px); height: 6px; width: 40px; background-color: #EFF0F6; border-radius: 4px;}
.step-nav li.active:not(:last-child):after {background-color: var(--secondary-color);}

@media screen and (max-width: 991px) {
  .partner-registration h1 {font-size: 20px;}
  .partner-registration h4 {font-size: 16px;}
  .partner-registration .divider {margin: 20px -20px;} 

  .step-nav ul {grid-gap: 30px;}
  .step-nav li {--size: 24px; font-size: 14px;}
  .step-nav li:not(:last-child):after {height: 4px; width: 20px;}

  .partner-registration .form .form-group {margin: 0 0 15px;}
  .partner-registration .btn ~ .btn {margin-top: 5px;}

}

.btn-light-success {background: #e2ffe9; border: 1px solid transparent;}
.btn-light-success:hover {border-color: green;}
.btn-light-danger {background: #ffebeb; border: 1px solid transparent;}
.btn-light-danger:hover {border-color: #dc3545  ;}

.btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #e4e4e4;
  color: #555 !important;
}

@media screen and (min-width: 991px) {
  .w-md-75 {max-width: 75%;}
}

.contact-us-page {
  padding: 60px 0;
}

/* responisve */
@media screen and (max-width: 812px) {
  html, body{font-size: 13px;}

  .banner .left-col {grid-gap: 5px;}

  .subscription-packages .card .body h3 span {font-size: 22px;}

  .recommended {font-size: 12px; font-weight: 600;}

  .our-blog .card h4 {font-size: 14px; min-height: 50px;}

  .privacy-terms h2 {font-size: 16px;}
  .privacy-terms p {font-size: 13px;}

  .faq-page .question .head {padding: 14px;}
  .faq-page .question h4 {font-size: 15px;}
  .faq-page .question .body {padding: 14px; font-size: 13px;}
  .faq-page .question p {font-size: 13px;}

  footer {padding: 40px 0;}
}

/* blog new section */
.blog-section {
  background-color: #faf8f6;
  padding: 80px 0;
}

hr {opacity: .1;}

.blog-vertical-card {text-align: left;}
.blog-vertical-card:hover h4 {color: var(--secondary-color);}
.blog-vertical-card .image {height: 140px; border-radius: 6px; overflow: hidden;}
.blog-vertical-card .image img {width: 100%; height: 100%; object-fit: cover;}
.blog-vertical-card .card-body {padding: 15px 0 0;}
.blog-vertical-card h4 {font-weight: 600; font-size: 16px; line-height: 24px; margin-bottom: 10px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.blog-vertical-card p {font-size: 14px; color: #636466; margin: 0;}

.blog-vertical-card.large .image {height: 300px; border: 1px solid #ccc;}
.blog-vertical-card.large h4 {font-weight: 600; font-size: 16px; margin-bottom: 14px;}
.blog-vertical-card.large h6 {font-size: 15px; font-weight: 400; color: #000; line-height: 26px; margin: 0 0 20px;}
.blog-vertical-card.large p {font-size: 15px;}

.xl-large .image {height: 420px !important; margin: 0 0 15px;}

.horizontal-card {display: flex; align-items: center; grid-gap: 10px; text-align: left;}
.horizontal-card:hover h4 {color: var(--secondary-color);}
.horizontal-card .flex-1 {flex: 1;}
.horizontal-card .image {width: 60px; min-width: 60px; height: 60px; border-radius: 6px; overflow: hidden;}
.horizontal-card .image img {width: 100%; height: 100%; object-fit: cover;}
.horizontal-card h4 {font-weight: 600; font-size: 15px; line-height: 22px; margin-bottom: 10px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.horizontal-card p {font-size: 14px; color: #636466; margin: 0;}

.horizontal-card.md .image {width: 180px; height: 120px;}

.blog-vertical-card .stretched-link,
.horizontal-card .stretched-link {position: absolute; left: 0; top: 0; width: 100%; height: 100%; cursor: pointer; z-index: 1;}

@media screen and (min-width: 1024px) {
  .flex-lg-none {flex: none !important;}
}

@media screen and (max-width: 1024px) {
  .more-feature .image::after {width: 100%; height: 100%;}
}
@media screen and (max-width: 576px) {
  .banner .caption-holder {padding: 50px 20px; min-height: auto;}
  .banner .section-title {font-size: 26px; margin: 0 0 4px;}
  .banner p {font-size: 13px;}

  .blog-section,
  .more-feature {padding:40px 0;}

  .blog-vertical-card.large .image,
  .xl-large .image {height: 300px !important;}

  .static-page p {line-height: 1.7;}
}

.border-primary {border-color: var(--primary-color) !important;}
.font-medium {font-weight: 500;}
/* feedback-page */
.feedback-page {background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 20px;}
.feedback-page .form-container {font-size: 14px; padding: 50px 40px; box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.3); background: #FAF8F6; border-radius: 20px; width: 100%; max-width: 700px; margin: auto;}
.feedback-page .form-container h1 {font-size: 30px; font-weight: 400;}
.feedback-page .form-container p {line-height: 1.6;}

.feedback-page .divider-y {background-color: #D9DBE9; width: 40%; margin: 20px auto; height: 1px;}

.radio-group {display: flex; flex-direction: column; justify-content: center; align-items: center;}
.radio-group .form-check {position: relative;}
.radio-group .form-check input {position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 2;}
.radio-group .form-check span {position: relative; display: flex; align-items: center; padding: 16px 18px 16px 40px; border: 1px solid #DEDEDE; background: #fff; border-radius: 6px; min-width: 300px;}
.radio-group .form-check span::before {content: ''; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 100%; background: #E1E4EE; box-shadow: 0px 0px 0px 2px inset #fff; border: 1.5px solid #E1E4EE;}
.radio-group .form-check input:checked ~ span {border-color: #726B5B; background: #726B5B1A;}
.radio-group .form-check input:checked ~ span::before {border-color: #726B5B; background: #726B5B;}

.form-item--holder {background-color: #fff; padding: 20px; border-radius: 12px; margin: 0 0 12px;}

.form-control-sm {width: auto; padding: 10px 20px; border-width: 1px;}

@media screen and (max-width: 767px) {
  .radio-group .form-check span {min-width: 280px;}

  .feedback-page:not(.exciting-prizes) {padding: 30px 0;}

  .feedback-page .form-container {font-size: 13px; padding: 40px 20px; margin: 15px;  box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.3);}
  .feedback-page .form-container h1 {font-size: 22px;}
}

.exciting-prizes {font-size: 14px; background: transparent; padding: 40px 20px 60px;}
.exciting-prizes .form-container {box-shadow: 0px 0px 0px 20px var(--primary-color);}
.exciting-prizes .left-icon,
.exciting-prizes .right-icon {top: -20px;}

.exciting-prizes .terms-button {position: absolute; top: -140px; border-radius: 25px; padding: 5px 15px !important; height: auto; min-height: auto; left: -60px;}

@media screen and (max-width: 991px) {
  .exciting-prizes .terms-button {position: relative; top: 0px; left: 0px; margin: 0 auto 30px; display: flex;}
}

@media screen and (max-width: 767px) {
  .exciting-prizes {padding: 20px 10px 40px;}
  .exciting-prizes .form-container {box-shadow: 0px 0px 0px 10px var(--primary-color); border-radius: 12px;}

  .exciting-prizes .left-icon,
  .exciting-prizes .right-icon {display: none;}
}

#pageLoader  {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100dvh; background-color: rgba(255,255,255,.95); z-index: 99999; user-select: none; display: flex; align-items: center; justify-content: center;
}

.input-holder.icon-right input {padding-right: 50px;}

.select2-container,
.select2-selection.select2-selection--single {width: 100% !important;}

.select2-container--default .select2-search--dropdown .select2-search__field {border-radius: 4px; box-shadow: none !important; outline: auto !important;}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {border-color: var(--primary-color); outline: none !important; box-shadow: none !important;}

.google-ads--holder {max-width:728px; margin: auto;}

.google-ads--holder .adsbygoogle,
.google-ads--holder .adsbygoogle div,
.google-ads--holder iframe {
  width: 100% !important;
}

.youtube-icon {
  width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #e7afaa !important;
    border-radius: 100%;
}


.landing-banner {display: flex;}
.landing-banner .right-col {position: relative; flex: 1;}
.landing-banner .right-col img {width: 100%; height: 100%; object-fit: cover;}
.landing-banner  .christmas-caption {background-color: #fff; color: #000; position: absolute; left: 50%; top: 35%; max-width: 360px; transform: translateY(-50%); padding: 28px; border-radius: 18px; border: 2px solid var(--primary-color);}
.landing-banner .arrow {position: absolute; left: -20px; top: 40px; border-right: 30px solid #ffffff; border-top: 10px solid transparent; border-bottom: 10px solid transparent;}
.landing-banner  .christmas-caption h3 {font-size: 16px; font-weight: 600; margin: 0 0 8px;}
.landing-banner  .christmas-caption p {line-height: 1.6; margin: 0 0 20px;}
.landing-banner  .christmas-caption .btn-primary {background-color: #E8625D !important;}
.landing-banner  .christmas-caption .btn-primary:hover {background-color: #ed4e49 !important;}

/* christmas-page */
.christmas-page .container-sm {max-width: 1050px;}

.christmas-page .banner {position: relative; padding: 120px 0; background-size: cover;}
.christmas-page .banner .after-img {position: absolute; left: 0; bottom: -6px; width: 100%; height: 90px; z-index: 1;}
.christmas-page .banner .after-img img {height: 100%; width: 100%; object-fit: cover;}
.christmas-page .banner h1 {font-size: 34px; font-weight: 600; margin: 0 0 30px; padding-right: 40px;}
.christmas-page .banner p {max-width: 100%;}
.christmas-page .banner p span {font-weight: 600; margin: 0 0 30px;}
.christmas-page .banner h3 {font-weight: 600; margin: 22px 0px; font-size: 16px;}
.christmas-page .banner label {background-color: #AF7B76; color: #fff; padding: 4px 12px; border-radius: 20px;}
.christmas-page .banner .content-wrapper {max-width: 600px; margin: auto 0 auto auto;}
.christmas-page .banner a {color: #000; text-decoration: underline;}

.christmas-page .about {background: #FFF2F0; padding: 70px 0;}
.christmas-page .about h1 {font-weight: 600; margin-bottom: 20px; font-size: 32px;}

.join-raffle {background-color: #F1EFE5; padding: 70px 0;}
.join-raffle h1 {font-weight: 600; margin-bottom: 8px; font-size: 32px;}
.join-raffle .box {position: relative; background: #FFFFFF; box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.18); border-radius: 32px; padding: 60px 24px 40px;}
.join-raffle .box .count {width: 50px; height: 50px; border-radius: 100%; background-color: #EC6FA1; color: #fff; display: flex; align-items: center; justify-content: center; position: absolute; left: 50%; transform: translateX(-50%); top: -25px; z-index: 1;}
.join-raffle .box .icon {font-size: 18px; width: 70px; height: 70px; background-color: #F8ECD9; border-radius: 5px; display: flex; align-items: center; justify-content: center; margin: 0 0 30px;}
.join-raffle .box h4 {margin: 34px 0 22px;}
.join-raffle .box p {font-size: 14px; font-weight: 400; min-height: 66px; margin: 0; line-height: 1.5;}

.holiday-season {background-color: #fff; padding: 70px 0;}
.holiday-season h1 {font-weight: 600; margin-bottom: 8px; font-size: 32px;}
.holiday-season .box  {background: #FFFFFF; box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.18);border-radius: 32px;}
.holiday-season .box .content {padding: 23px;}
.holiday-season .box .image {height: 173px; background-color: #f2f2f2; border-bottom: 7px solid #EC6FA1;}
.holiday-season .box .image img {width: 100%; height: 100%; object-fit: cover;}
.holiday-season .box h4 {margin: 0 0 15px; font-size: 18px;}
.holiday-season .box p {font-size: 14px; font-weight: 400; margin: 0;}

.unforgettable {position: relative; padding: 60px 0; text-align: center; background: linear-gradient(264.73deg, #D1B4DC 7.63%, #F0B0BD 84.15%, #D2E7D7 118.2%); margin-bottom: 40px;}
.unforgettable .ribbon {position: absolute; right: 15%; top: 0; height: 100%;}
.unforgettable .ribbon img {height: 100%;}
.unforgettable label {background-color: #AF7B76; color: #fff; padding: 4px 12px; border-radius: 20px;}
.unforgettable a {color: #000; text-decoration: underline;}

.christmas-offer {background-position: left center; padding: 122px 80px; border-radius: 40px; overflow: hidden; background-size: cover !important;}
.christmas-offer .content {max-width: 40%; margin: auto 0 auto auto;}
.christmas-offer .content p {margin: 29px 0 19px;}
.christmas-offer .content label {background-color: #AF7B76; color: #fff; padding: 4px 12px; border-radius: 20px;}
.christmas-offer .btn-primary {background-color: #fff; color: #000;}
.christmas-offer .btn-primary:hover {background-color: #fff; color: #000; filter: brightness(0.96);}

@media screen and (max-width: 1500px) {
  .christmas-offer .content {max-width: 50%;}

  .christmas-page .banner {padding: 100px 0 120px;}
  
  .christmas-page .banner h1 {font-size: 28px;}

  .christmas-page .about {background: #FFF2F0; padding: 50px 0;}
  .christmas-page .about h1 {font-size: 28px;}

  .join-raffle {padding: 50px 0;}
  .join-raffle h1 {font-size: 28px;}
  .join-raffle .box {border-radius: 22px; padding: 40px 20px 30px;}
  .join-raffle .box .count {width: 40px; height: 40px; }
  .join-raffle .box .icon {width: 50px; height: 50px;}
  .join-raffle .box h4 {margin: 28px 0 18px;}
  .join-raffle .box p {line-height: normal;}

  .holiday-season {background-color: #fff; padding: 50px 0;}
  .holiday-season h1 {font-size: 28px;}
  .holiday-season .box  {border-radius: 22px;}

  .unforgettable {padding: 50px 0;}

}
@media screen and (max-width: 991px) {
  .christmas-offer {background-position: center top; padding: 60px 40px;}
  .christmas-offer .content {max-width: 100%;}

  .christmas-page .banner {padding: 70px 0 60px;}
  .christmas-page .banner .after-img {display: none;}
  
  .holiday-season h1,
  .christmas-page .banner h1,
  .christmas-page .about h1 {font-size: 24px;}

  .ribbon {display: none;}

}

@media screen and (max-width: 767px) {
  .christmas-offer {padding: 40px 20px; text-align: center;}
}