  /* --------------- Start Preloader --------------- */
  .pace {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999999999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    pointer-events: none;
  }

  .pace .pace-progress {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 300px;
    position: fixed;
    z-index: 99999999999999;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #fff;
  }

  .pace.pace-inactive {
    width: 100vw;
    opacity: 0;
  }

  .pace.pace-inactive .pace-progress {
    max-width: 100vw;
  }

  #preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 9999999;
    pointer-events: none;
  }
  #preloader .logo_img {
    width: 300px;
    max-width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 0.5;
  }

  #preloader:after,
  #preloader:before {
    content: "";
    position: fixed;
    left: 0;
    height: 50%;
    width: 100%;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#7491f8),
      to(#80d3ff)
    );
    background: -o-linear-gradient(left, #7491f8, #80d3ff);
    background: linear-gradient(to right, #7491f8, #80d3ff);
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }

  #preloader:before {
    top: 0;
  }

  #preloader:after {
    bottom: 0;
  }

  #preloader.isdone {
    visibility: hidden;
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }
  #preloader.isdone #loading-wrapper {
    opacity: 0;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    -webkit-filter: blur(2px);
    filter: blur(2px);
  }

  #preloader.isdone:after,
  #preloader.isdone:before {
    height: 0;
    -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
  }

  /*----------- upload loader ------------*/
  #loading-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3333333333);
    display: none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  #loading-wrapper.show {
    display: block;
  }

  #loading-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 38px);
    left: 50%;
    color: #fff;
    width: 100px;
    height: 100px;
    margin: -7px 0 0 -45px;
    text-align: center;
    font-size: 20px;
  }
  #loading-text img {
    width: 100px;
  }

  #loading-content {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
    border: 3px solid #f00;
  }

  #loading-content:after {
    content: "";
    position: absolute;
    border: 3px solid #0f0;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
  }

  #loading-content:before {
    content: "";
    position: absolute;
    border: 3px solid #00f;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
  }

  #loading-content {
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--primary);
    border-radius: 50%;
    -webkit-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
  }

  #loading-content:before {
    border: 3px solid transparent;
    border-top-color: #0aafde;
    border-bottom-color: #0aafde;
    border-radius: 50%;
    -webkit-animation: loader 3s linear infinite;
    animation: loader 3s linear infinite;
  }

  #loading-content:after {
    border: 3px solid transparent;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
  }

  @-webkit-keyframes loaders {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes loader {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes loader {
    0% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  #content-wrapper {
    color: #fff;
    position: fixed;
    left: 0;
    top: 20px;
    width: 100%;
    height: 100%;
  }

  /* --------------- End Preloader --------------- */

  .row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5) {
    margin-right: -15px;
    margin-left: -15px;
  }
  .row:not(.gx-0):not(.gx-1):not(.gx-2):not(.gx-3):not(.gx-4):not(.gx-5) > * {
    padding-right: 15px;
    padding-left: 15px;
  }

  h1,
  h2,
  h3,
  h4 {
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
  }

  h5,
  h6 {
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
  }

  a:hover {
    text-decoration: none;
  }

  a:focus {
    outline: 0;
  }

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

  .btn-default:active,
  .btn-default:active:focus,
  .btn-default:active:hover,
  .btn-default:focus,
  .btn-default:hover,
  .btn-primary:not(:disabled):not(.disabled):active:focus,
  .btn:not(:disabled):not(.disabled).active,
  .btn:not(:disabled):not(.disabled):active {
    -webkit-appearance: none;
  }

  .btn:active,
  .btn:active:focus,
  .btn:active:hover,
  .btn:focus,
  .btn:hover,
  .btn:not(:disabled):not(.disabled).active,
  .btn:not(:disabled):not(.disabled):active {
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    outline: 0;
  }

  a,
  span,
  img {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none !important;
  }

  ul {
    padding: 0;
  }

  img {
    max-width: 100%;
    max-height: 100%;
  }

  p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
  }

  .container,
  .container-fluid {
    position: relative;
    z-index: 5;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
  }

  /* --------------- buttons styles --------------- */
  .butn,
  .btn {
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .butn span,
  .btn span {
    font-size: 14px;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
  }
  .butn small,
  .btn small {
    font-size: 12px;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
  }
  .butn.butn-gard::before,
  .btn.butn-gard::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 150%;
    height: 100%;
    z-index: 1;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(10%, #0c3df4),
      color-stop(45%, #02b5ff),
      color-stop(#02b5ff),
      to(#0c3df4)
    );
    background: -o-linear-gradient(
      left,
      #0c3df4 10%,
      #02b5ff 45%,
      #02b5ff,
      #0c3df4
    );
    background: linear-gradient(
      to right,
      #0c3df4 10%,
      #02b5ff 45%,
      #02b5ff,
      #0c3df4
    );
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .butn.butn-gard:hover::before,
  .btn.butn-gard:hover::before {
    left: -50%;
  }
  .butn.dark-butn,
  .btn.dark-butn {
    background: #000;
  }
  .butn.dark-butn span,
  .butn.dark-butn small,
  .btn.dark-butn span,
  .btn.dark-butn small {
    color: #fff;
  }
  .butn.sm-butn,
  .btn.sm-butn {
    padding: 10px 25px;
  }
  .butn.sm-butn span,
  .btn.sm-butn span {
    font-size: 12px;
  }
  .butn:hover,
  .btn:hover {
    background: #cc2131;
    border-color: transparent !important;
  }
  .butn:hover span,
  .btn:hover span {
    color: #fff;
  }
  .butn.btn-icon-circle,
  .btn.btn-icon-circle {
    position: relative;
    padding-right: 50px;
    text-transform: capitalize;
  }
  .butn.btn-icon-circle i,
  .btn.btn-icon-circle i {
    position: absolute;
    right: -43px;
    bottom: -5px;
    width: 30px;
    height: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    font-size: 16px;
  }
  .butn.btn-icon-circle:hover,
  .btn.btn-icon-circle:hover {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .butn.btn-icon-circle:hover i,
  .btn.btn-icon-circle:hover i {
    -webkit-animation: RL_smooth 1s ease-in-out infinite alternate both;
    animation: RL_smooth 1s ease-in-out infinite alternate both;
  }

  .hover-red1 {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .hover-red1:hover {
    background-color: #cc2131 !important;
  }
  .hover-red1:hover * {
    color: #fff;
  }

  .section-padding {
    padding: 100px 0;
  }
  @media screen and (max-width: 991px) {
    .section-padding {
      padding: 70px 0;
    }
  }

  .bg-red1 {
    background-color: #cc2131 !important;
  }

  .info-close {
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0.25rem;
  }

  .bg-black1 {
    background-color: rgba(0, 0, 0, 0.8) !important;
  }

  .home-style-14 .navbar.style-14 {
    position: relative;
    background: #fff;
  }
  .home-style-14 header.style-14 {
    padding-top: 100px;
  }
  .home-style-14 header.style-14 .info h1 {
    font-size: 40px;
  }
  .home-style-14 header.style-14 .info .down_store {
    margin-top: 50px;
  }
  .home-style-14 .clients.style-14 .logos-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-style-14 .clients.style-14 .logos-content a {
    width: 50%;
    text-align: center;
    padding: 0 20px;
  }
  .home-style-14 .testimonials-slider14 .swiper-container {
    overflow: hidden !important;
  }
  .home-style-14 .features.style-14 .nav-pills .nav-link {
    font-size: 10px;
    margin: 5px;
    padding: 12px 15px;
  }
  .home-style-14 .mb-70 {
    margin-bottom: 30px !important;
  }
  .home-style-14 .mb-150 {
    margin-bottom: 50px !important;
  }
  .home-style-14 .features.style-14 .tab-pay-content .info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .home-style-14 .features.style-14 .tab-pay-content .info li i {
    margin-top: 5px;
  }
  .home-style-14 .fs-1 {
    font-size: 25px !important;
    letter-spacing: 0 !important;
  }
  .home-style-14 .screenshots.style-14 .img::before {
    bottom: 0;
  }
  .home-style-14 .about.style-14 .img {
    margin-top: 50px;
  }
  .home-style-14 .about.style-14 .img .play_ptn {
    left: 50%;
  }

  /* ===============================================================
        [ * top navbar Section ] 
  ================================================================*/
  .top-navbar {
    z-index: 9999;
  }

  /* --------------- top navbar styles --------------- */
  .navbar.style-14 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
  }
  .navbar.style-14 .navbar-brand img {
    width: 150px;
  }
  .navbar.style-14 .nav-link {
    color: #15141a;
    font-size: 14px;
    margin: 0 6px;
    text-transform: capitalize;
  }
  .navbar.style-14 .nav-link:hover {
    color: #cc2131;
  }

  header.style-14 {
    padding-top: 200px;
    background-image: url(./header_14_back.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  header.style-14 .info {
    padding-bottom: 60px;
  }
  header.style-14 .info .vid_link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  header.style-14 .info .vid_link .icon {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: #cc2131;
    color: #fff;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    -webkit-box-shadow: 3px 8px 15px rgba(204, 33, 49, 0.3333333333);
    box-shadow: 3px 8px 15px rgba(204, 33, 49, 0.3333333333);
  }
  header.style-14 .info .vid_link p {
    font-weight: bold;
    text-transform: uppercase;
    color: #cc2131;
  }
  header.style-14 .info h1 {
    font-size: 60px;
  }
  header.style-14 .info h1 span {
    color: #cc2131;
  }
  header.style-14 .info .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid rgba(153, 153, 153, 0.1333333333);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
    padding-left: 15px;
    margin-top: 60px;
  }
  header.style-14 .info .form-group .form-control {
    border: 0;
    background: transparent;
  }
  header.style-14 .info .form-group .btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  header.style-14 .info .down_store {
    margin-top: 200px;
  }
  header.style-14 .info .down_store .btns a {
    max-width: 160px;
  }

  .about.style-14 .info .text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }
  .about.style-14 .img {
    position: relative;
  }
  .about.style-14 .img img {
    border-radius: 15px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .about.style-14 .img .play_ptn {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    font-size: 21px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
  }

  /* --------------- choose-us style-14 --------------- */
  .choose-us.style-14 {
    background-color: #ecf0f3;
  }
  .choose-us.style-14 .choose-card {
    text-align: center;
    margin-top: 30px;
  }
  .choose-us.style-14 .choose-card .icon {
    height: 60px;
    margin-bottom: 30px;
  }
  .choose-us.style-14 .choose-card .info h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .choose-us.style-14 .choose-card .info p {
    font-size: 16px;
    color: #666;
  }

  .testimonials.style-14 {
    position: relative;
    background-color: #ecf0f3;
  }
  .testimonials.style-14 .testi-card {
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    padding: 50px 40px;
  }
  .testimonials.style-14 .testi-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    border-radius: 50%;
    padding: 20px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666666667);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666666667);
    position: absolute;
    top: -40px;
    right: 30px;
  }
  .testimonials.style-14 .testi-card .user-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 40px;
    border-radius: 50%;
    overflow: hidden;
  }
  .testimonials.style-14 .testi-card .info .stars {
    color: #cc2131;
    margin-bottom: 10px;
  }
  .testimonials.style-14 .testi-card .info .text {
    font-size: 18px;
    color: #171717;
    margin-bottom: 20px;
    line-height: 1.7;
  }
  .testimonials.style-14 .testi-card .info h6 {
    font-size: 18px;
    color: #171717;
    font-weight: bold;
    margin-bottom: 10px;
  }

  /* --------------- features style-14 --------------- */
  .features.style-14 {
    position: relative;
    background-color: #ecf0f3;
  }
  .features.style-14::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 90px;
    background-color: #000;
  }
  .features.style-14 .content {
    padding: 100px 5vw 0 5vw;
    background-color: #fff;
    border-radius: 15px;
  }
  .features.style-14 .nav-pills .nav-link {
    padding: 17px 30px;
    border: 1px solid rgba(153, 153, 153, 0.3333333333);
    border-radius: 50px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 10px;
    color: #000;
    font-size: 14px;
    line-height: 1;
  }
  .features.style-14 .nav-pills .nav-link:hover,
  .features.style-14 .nav-pills .nav-link.active {
    color: #fff;
    background-color: #cc2131;
    -webkit-box-shadow: 0 10px 30px rgba(204, 33, 49, 0.3333333333);
    box-shadow: 0 10px 30px rgba(204, 33, 49, 0.3333333333);
  }
  .features.style-14 .tab-pay-content .info .icon {
    margin-bottom: 20px;
  }
  .features.style-14 .tab-pay-content .info .icon img {
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .features.style-14 .tab-pay-content .info h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .features.style-14 .tab-pay-content .info li {
    margin: 8px 0;
  }

  /* --------------- numbers style-14 --------------- */
  .numbers.style-14 {
    padding: 70px 0;
    background-color: #cc2131;
  }
  .numbers.style-14 .number-item .icon {
    width: 50px;
    height: 50px;
    padding: 10px;
    background-color: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1333333333);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1333333333);
    margin-bottom: 35px;
  }
  .numbers.style-14 .number-item .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .numbers.style-14 .number-item .info h2 {
    font-size: 35px;
    color: #fff;
    margin-bottom: 5px;
  }
  .numbers.style-14 .number-item .info p {
    color: #ffa7af;
    text-transform: uppercase;
  }

  /* --------------- clients style 14 --------------- */
  .clients.style-14 {
    background-color: #000;
    color: #fff;
  }
  .clients.style-14 .logos-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .clients.style-14 .logos-content a {
    margin-top: 30px;
  }

  /* --------------- contact style-14 --------------- */
  .contact.style-14 {
    position: relative;
  }
  .contact.style-14::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #ecf0f3;
  }
  .contact.style-14 .contact-card {
    position: relative;
    padding: 120px 4vw;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
    overflow: hidden;
  }
  .contact.style-14 .contact-card .row {
    position: relative;
    z-index: 5;
  }
  .contact.style-14 .contact-card .img_back {
    position: absolute;
    content: "";
    left: 10%;
    top: 0;
    width: 80%;
    height: 100%;
    max-height: unset;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  footer.style-14 {
    background-color: #f1f1f1;
    background-image: url(./foot_14_pattern.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  footer.style-14 .payment-cards {
    position: relative;
  }
  footer.style-14 .payment-cards::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: #fff;
  }
  footer.style-14 .payment-cards .row .col-lg-3:nth-of-type(2) .pay-card {
    background-color: #a81220;
  }
  footer.style-14 .payment-cards .row .col-lg-3:nth-of-type(3) .pay-card {
    background-color: #980d1a;
  }
  footer.style-14 .payment-cards .row .col-lg-3:nth-of-type(4) .pay-card {
    background-color: #700710;
  }
  footer.style-14 .payment-cards .pay-card {
    padding: 30px;
    color: #fff;
    background-color: #cc2131;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: capitalize;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer.style-14 .payment-cards .pay-card .icon img {
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  footer.style-14 .foot-info .foot-logo {
    margin-bottom: 40px;
  }
  footer.style-14 .foot-info .foot-logo img {
    width: 175px;
  }
  footer.style-14 .social-icons {
    margin-top: 40px;
  }
  footer.style-14 .social-icons a {
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
  }
  footer.style-14 .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer.style-14 .links ul li {
    width: 50%;
    margin: 7px 0;
  }
  footer.style-14 a:hover {
    color: #cc2131;
  }
  footer.style-14 p {
    color: #666;
    font-size: 16px;
  }

  .pay-card {
    padding: 30px;
    background-color: #ecf0f3;
    border-radius: 10px;

    p {
      text-align: center !important;
      font-weight: bold;
    }
  }
  .pay-card .icon img {
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  /* lp */
  #preloader:after,
  #preloader:before {
    background: #cc2131;
  }

  #loading-content:before {
    border-top-color: #cc2131;
    border-bottom-color: #cc2131;
  }

  .lp__container,
  .lp__container p {
    font-size: 16px;
    text-align: left;
  }

  .lp__text-index-1 {
    padding-left: 1rem;
    text-indent: -1rem;
  }

  .lp__d-sm-md {
    display: none;

    @media screen and (max-width: 991px) {
      display: block;
    }
  }

  .lp__d-sm-only {
    display: none;

    @media screen and (max-width: 767px) {
      display: block;
    }
  }

  .lp__nav-menu {
    flex-wrap: wrap;
    @media screen and (max-width: 1199px) {
      margin-top: 20px;
    }
  }

  .lp__navbar {
    padding: 15px 0 5px !important;
  }

  .lp__nav-btn {
    display: flex;
    justify-content: end;
    margin-bottom: 15px;
    width: 100%;
  }

  .lp__header {
    padding-bottom: 50px;
  }

  .lp__header-ttl {
    margin-bottom: 20px;
  }

  .lp__top-content {
    background: url(./bg_top.jpg) 50% 0 / cover no-repeat;
    max-width: 1440px;
    margin: auto;
    padding: 60px 20px;

    @media screen and (max-width: 767px) {
      background: url(./bg_top.jpg) 50% 0 / cover no-repeat;
    }

    h1 {
      color: #000;
      font-size: 50px;
      max-width: 800px;
      margin: auto;
      padding-bottom: 60px;
      font-weight: bold;
      text-shadow: 0px 3px 3px #fff, 0px -3px 3px #fff, -3px 0px 3px #fff;

      @media screen and (max-width: 767px) {
        font-size: 24px;
      }

      small {
        display: block;
        font-size: 25px;
        font-weight: normal;
        margin-top: 15px;

        @media screen and (max-width: 767px) {
          font-size: 16px;
        }
      }
    }
  }

  .lp__use-sample {
    color: #fff;

    ul li {
      display: flex;
      background: #454545;
      max-width: 1070px;
      margin: 30px auto;
      padding: 30px 20px;
      justify-content: space-between;
      align-items: center;

      @media screen and (max-width: 767px) {
        display: block;
      }

      img {
        max-width: 480px;
        width: 45%;
        margin: auto;
        display: table;

        @media screen and (max-width: 767px) {
          width: 100%;
        }
      }

      p {
        font-size: 24px !important;
        text-align: center;
        width: 55%;
        margin: 20px auto 0;

        @media screen and (max-width: 991px) {
          font-size: 20px !important;
        }

        @media screen and (max-width: 767px) {
          font-size: 16px !important;
          width: 100%;
        }
      }

      .last-arrow {
        display: table;
        margin: 20px auto;

        @media screen and (max-width: 767px) {
          margin: 5px auto;
        }
      }
    }
  }

  .lp__content-left {
    width: 46%;
  }

  .lp__content-left-txt-1 {
    padding: 0 1rem;
  }

  .lp__using-service {
    padding: 20px;
    justify-content: center;
    margin-top: 40px;
    display: flex;
    background: #ecf0f3;
    align-items: flex-start;
  }

  .lp__using-service img {
    padding-right: 20px;
  }

  .lp__using-service dl {
    text-align: center;
    margin-bottom: 0px;
  }

  .lp__using-service dt {
    margin-bottom: 5px;
  }

  .lp__using-service dd {
    margin-bottom: 0px;
  }

  .lp__header-feature {
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid rgba(153, 153, 153, 0.1333333333);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
    padding: 30px 60px !important;
    width: fit-content;
    margin: auto;
  }

  .lp__header-feature h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .lp__header-feature ul {
    margin: auto;
    display: table;
  }

  .lp__header-feature li {
    margin-bottom: 30px;
  }

  .lp__feature {
    padding: 80px 0 0;
    background: #d9d9d9;
  }

  .lp__registration-btn {
    display: table;
    margin: auto;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);

    @media screen and (max-width: 767px) {
      font-size: 15px;
      padding: 12px 20px;
    }
  }

  .lp__feature-ttl {
    text-align: center;
    margin-bottom: 20px;
  }

  .lp__features {
    color: #212529;
    padding-bottom: 50px;
  }

  .lp__features-content {
    padding-bottom: 50px !important;

    @media screen and (max-width: 767px) {
      padding: 0px !important;
    }
  }

  .lp__features-list {
    display: flex;
    margin: 40px 0;
    align-items: center;
    padding: 40px 0;
    background-color: #fff;
    justify-content: space-evenly;

    @media screen and (max-width: 767px) {
      border-bottom: 1px solid #ccc;
      flex-wrap: wrap;
      padding: 5% 0;
    }
  }

  .lp__features-list-img {
    width: 45%;
    margin: 0 2.5%;
    max-width: 450px;
    border: 1px #d9d9d9 solid;

    @media screen and (max-width: 767px) {
      width: 90%;
      margin: 0 auto;
      max-width: 500px;
    }
  }

  .lp__features-list-txt {
    text-align: center;

    h3 {
      margin: 30px 0 50px;
      font-size: 24px;
      @media screen and (max-width: 767px) {
        font-size: 20px;
        margin: 30px 0 20px;
      }
    }

    p {
      text-align: center;
    }
  }

  .lp__features-list-2 {
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 991px) {
      display: block;
    }

    li {
      background: #fff;
      padding: 20px;
      width: 48%;
      font-size: 24px;
      text-align: center;

      @media screen and (max-width: 991px) {
        width: 100%;
        margin-bottom: 40px;
      }

      @media screen and (max-width: 767px) {
        font-size: 20px;
      }
    }
  }

  .lp__use-image h2 {
    text-align: center;
  }

  .lp__use-image-list {
    max-width: 950px;
    margin: 50px auto 0;

    li {
      width: 95%;
      border-radius: 10px;
      background-color: #fff;
      padding: 50px 40px;
      margin: auto;

      &:first-child {
        margin-bottom: 30px;
      }
    }

    h3 {
      text-align: center;
    }

    img {
      display: block;
      margin: 25px 0;
      width: 100%;
      filter: drop-shadow(1px 1px 4px #777);

      @media screen and (max-width: 767px) {
        max-width: 500px;
        margin: 25px auto;
      }
    }
  }

  .lp__use-image-list-txt {
    text-decoration: underline !important;
    color: #0d6efd !important;
  }

  .lp__registration {
    margin-top: 50px;
  }

  .lp__registration-box {
    padding: 80px 4vw !important;
  }

  .lp__registration-ttl {
    text-align: center;
    margin-bottom: 40px;
  }

  .lp__registration-fee {
    display: table;
    margin: auto;
  }

  .lp__registration-fee-txt-1 {
    font-size: 2.5rem !important;
    font-weight: bold;
    text-align: center !important;
    line-height: 1;
    margin-bottom: 40px;

    @media screen and (max-width: 767px) {
      font-size: 2rem !important;
    }
  }

  .lp__registration-fee-txt-1 small {
    font-size: 18px;
    font-weight: normal;
  }

  .lp__registration-fee-txt-2 {
    text-align: center;
  }

  .lp__registration-fee-txt-3 {
    text-align: center !important;
    font-size: 18px !important;
  }

  .lp__footer {
    padding-top: 50px;
  }

  .lp__footer-links {
    display: flex;
    justify-content: space-around;
  }

  .lp__footer-links ul {
    display: block !important;
  }

  .lp__footer-links ul li {
    width: 100% !important;
  }

  .lp__footer-txt p {
    text-align: center !important;
  }