/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page,
.page-content {
  margin: 0;
}

a:hover {
  color: currentColor;
  opacity: 0.7;
  transition: 0.3s;
}

a:focus {
  outline: none;
}

#header-btn-mobile {
  display: none;
}

@font-face {
  font-family: 'Rubik Light';
  src: url('../fonts/Rubik-Light.ttf');
}

@font-face {
  font-family: 'Rubik Medium';
  src: url('../fonts/Rubik-Medium.ttf');
}

@font-face {
  font-family: 'Rubik bold';
  src: url('../fonts/Rubik-Bold.ttf');
}

@font-face {
  font-family: 'Rubik Extra bold';
  src: url('../fonts/Rubik-ExtraBold.ttf');
}

body {
  font-family: 'Rubik Medium', sans-serif !important;
  font-weight: 500;
}

/* animation */
.fadeUp {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeUp.visible,
.fadeUp01.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadeUp01 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* title animation */
.ttl-anime {
  overflow: hidden;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
}

.js-ttl-anime {
  animation-name: anime01;
  animation-duration: 2s;
}

.js-ttl-anime .sub-ttl-txt {
  animation-name: anime02;
  animation-duration: 2s;
}

.ttl-anime .sub-ttl-txt {
  display: block;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
}

@keyframes anime01 {
  0% {
    transform: translate(-100%, 0);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes anime02 {
  0% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(0, 0);
  }
}



/* fade left and right and fadein animation */

.fadeLeft {
  transform: translateX(-5px);
  transition-delay: 0.5s;
}

.fadeLeft.fade-in {
  opacity: 1;
  transform: translateX(0);
}

.fadeUp {
  transform: translateY(70px);
}

.fadeUp.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fadeRight {
  transform: translateX(5px);
  transition-delay: 0.5s;
}

.fadeRight.fade-in {
  opacity: 1;
  transform: translateX(0);
}

/* clients section animation */

.is-fadeup {
  animation: fadeUpAnime 0.6s forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.delay-time02 {
  animation-delay: 0.15s;
}

.delay-time03 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.25s;
}

.delay-time05 {
  animation-delay: 0.3s;
}

.delay-time06 {
  animation-delay: 0.35s;
}

.delay-time07 {
  animation-delay: 0.4s;
}

.delay-time08 {
  animation-delay: 0.45s;
}



/* unique selling points section animation */

.is-fadeleft02 {
  animation: fadeLeft02Anime 0.7s forwards;
  opacity: 0;
}

@keyframes fadeLeft02Anime {
  0% {
    transform: translateX(-5px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.is-faderight02 {
  animation: fadeRight02Anime 0.7s forwards;
  opacity: 0;
}

@keyframes fadeRight02Anime {
  0% {
    transform: translateX(5px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}




/* loading animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-overlay::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 150px;
  background: url('../images/logo-big.png') no-repeat center/contain;
}


.spinner {
  border: 4px solid #008a00;
  border-radius: 50%;
  border-top: 4px solid transparent;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* .page-content {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.page-content.show {
  opacity: 1;
}

.overflow-hidden {
  overflow: hidden;
} */


/* @keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */


/* header */
.header {
  position: absolute;
  width: 100%;
  top: 47px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 10px 40px;
  background-color: rgba(0, 158, 58, 0.12);
}

.header .container {
  padding: 15px 0;
}

.container {
  padding: 40px 0px;
  max-width: 1180px;
  width: 95%;
  margin: 0 auto;
}

.logo {
  max-width: 100%;
  z-index: 50;
}

.nav-right {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: block;
  z-index: 50;
  border: none !important;
  color: #fff;
  border: none;
  padding: 6px 10px 2px 10px;
  cursor: pointer;
}

.menu-toggle i.fa-solid {
  font-size: 23px;
  color: #008a00;
}

.social-icons {
  margin-top: 40px;
}

.social-icons a {
  margin-right: 30px;
}

.social-icons a i {
  font-size: 25px;
  color: #002E27;

}

a:visited {
  color: currentColor;
}

/* translation */
.gt_switcher .gt_option {
  position: absolute !important;
}

/* common title */
.cmm-main-ttl {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.5;
  color: #008a00;
  margin-bottom: 25px;
}

.cmm-main-ttl.sec-line {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: #008a00;
  letter-spacing: 1.2px;
}


/* contact form */
.contact-form-ttl {
  max-width: 500px;
  width: 100%;
  padding: 30px 30px 10px 30px;
}

.contact-us-form {
  background-color: #fff;
  border-radius: 8px !important;
  border: 1px solid #008a00;
  padding: 30px;
  margin-top: -113px !important;
}

.contact-us-form form {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  padding: 0 20px 30px 20px;
}

.contact-us-form form label {
  font-size: 14px;
  color: #002E27;
  line-height: 2.2;
}

.contact-us-form form input,
.contact-us-form form textarea {
  background-color: #F2F2F2;
  padding: 16px;
  color: #002E27;
  border-radius: 5px;
  border-color: transparent;
  width: 100%;
}

.contact-us-form form input:focus:not([type="submit"]),
.contact-us-form form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 46, 39, 0.8);
}

.contact-us-form form textarea {
  resize: none;
}

.contact-us-form form .cnt-form-gp {
  margin-bottom: 16px;
}

.contact-us-form form .cnt-form-btn {
  position: relative;
  width: 45%;
  margin: 0 auto;
}

.contact-us-form .contact-btn {
  background-color: #008a00;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  padding: 15px 0;
  line-height: 1.2;
  cursor: pointer;
  letter-spacing: 1.3px;
  font-weight: 700;
}

.contact-us-form form .cnt-form-btn:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.contact-us-form form .wpcf7-spinner {
  display: none;
}

/* dashboard section */

#dash-tabs .tab:hover .elementor-button,
#dash-tabs .tab.active .elementor-button {
  background-color: #002E27 !important;
  color: #fff !important;
  fill: #fff !important;
}

#pricing-tabs .tab {
  border: 1px solid transparent;
}

#pricing-tabs .tab:hover,
#pricing-tabs .tab.active {
  color: #fff;
  background-color: #008a00;
  transition: ease-in-out 0.3s;
  cursor: pointer;
}

#pricing-tabs .tab:hover .elementor-button,
#pricing-tabs .tab.active .elementor-button {
  color: #fff;
  opacity: 1 !important;
}

.tab-content img {
  max-width: 300px;
  width: 100%;
}

.pricing-price {
  display: block;
  font-weight: 700;
  font-size: 52px;
  padding-bottom: 10px;
}

.pricing-price span {
  font-size: 14px;
  margin-left: 10px;
}

.pricing-select {
  display: block;
  padding: 10px 35px 10px 20px;
  margin-bottom: 30px;
  border: 1px solid #002E27;
  border-radius: 26px;
  color: #000;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
}

.pricing-select:focus {
  outline: none;
}

.selectbox-container {
  position: relative;
}

.selectbox-container::after {
  content: '';
  position: absolute;
  right: 25px;
  top: 55%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url('../images/arrow_down.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.pricing-select option {
  font-size: 16px;
  box-shadow: 0px 0px 10px 0px rgba(178.5, 171, 171, 0.5);
}

.pricing-select option:checked {
  background-color: #ccc;
  box-shadow: 0px 0px 10px 0px rgba(178.5, 171, 171, 0.5);
}

.cmm-sub-ttl {
  font-weight: normal;
  color: #008a00;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 15px;
}

.cmm-pre-ttl {
  color: #292929 !important;
  position: relative !important;
  font-size: 15px;
  padding-left: 40px;
  font-weight: 500 !important;
}

.cmm-pre-ttl::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: #008a00;
  content: '';
}

.pricing-blk {
  position: relative !important;
}

.pricing-cnt-list ul li {
  margin-bottom: 30px !important;
  position: relative;
  padding-left: 45px !important;
  color: #002E27;
  font-size: 18px;
}

.pricing-cnt-list ul li:before {
  position: absolute;
  width: 20px !important;
  height: 20px !important;
  background: url('../images/check-solid.svg') no-repeat center/contain !important;
  top: 50%;
  left: 0;
  content: '';
  transform: translateY(-50%);
  border-radius: 50%;
}

.popular-price-card {
  position: relative;
  padding: 40px 0px 0 !important;
  width: 32% !important;
}

.popular-price-card .buy-btn {
  background-image: none;
  background-color: #fff;
  color: #002e27;
}

.popular-price-card .price-lable {
  background-color: #fff;
  background-image: none;
}

.popular-price-card {
  background: linear-gradient(180deg, rgba(153, 222, 51, 1) 0%, rgb(0, 138, 0) 55%);
  box-shadow: 0px 10px 15px 3px rgb(66 184 72 / 50%) !important;
}

.popular-price-card .price-plan-desc {
  color: #fff;
  font-size: 18px;
}

.popular-price-card .price-plan-label h4 {
  font-size: 32px;
  color: #fff;
}

.popular-price-card .price-plan {
  font-size: 40px;
  color: #42B848;
}

.popular-price-card .price-plan-desc2 {
  color: #008a00;
}

.popular-price-card .price-cnt-list ul li {
  font-size: 17px;
  color: #fff;
}

.popular-price-card .price-cnt-list ul li:before {
  background: url(../images/check-solid-white.svg) no-repeat center / contain !important;
}


.cmm-ttl02 {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 2.5rem;
  color: #666666;
}

.cmm-sub-ttl02 {
  font-size: 30px;
  color: #008a00;
  margin-bottom: 40px;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 30;
  background: #008a00;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top:hover i {
  opacity: 0.7;
  scale: 1.3;
  transition: ease-out 0.2s;
  margin-bottom: 5px;
}

.back-to-top:hover i,
.back-to-top:visited {
  color: #fff !important;
}

/* footer */

.footer {
  box-shadow: 0 -2px 10px rgb(176 181 181 / 30%);
  color: #666;
}

.footer .copyright-txt {
  background-color: #2A3239;
  color: #b1b8bf;
  font-size: 12px;
}

.footer ul li {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 400;
}

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer-ttl {
  color: #008a00;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.1px;
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 90px;
  width: 100%;
}

.footer-nav li a {
  position: relative;
  padding-left: 20px;
  color: #666666;
}

.footer-nav li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #008a00;
  content: '';
}

.ft-nav-left {
  padding-top: 40px;
}

.ft-nav-left .fa-phone {
  font-size: 30px;
}

.ft-nav-left a {
  font-size: 20px;
}

.sm-txt {
  font-size: 12px;
}

.footer-left-col {
  margin-bottom: 40px;
}


.gohome-btn:visited {
  color: #fff;
}

.menu-item:visited {
  color: #008a00;
}

.menu-item:hover,
.menu-item:active,
.menu-item:focus {
  color: #002E27;
  opacity: 1;
}

.lang-item a {
  display: flex;
  align-items: center;
}

.menu-item {
  text-transform: capitalize;
}

.menu-item a {
  color: #002E27;
}

.sp {
  display: none;
}

/* howtowork section */
.step-list ul li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.step-list ul li::before {
  position: absolute;
  top: 5px;
  content: "";
  left: 0;
  background: url('../images/check-solid.svg') no-repeat center/contain;
  width: 15px;
  height: 15px;
}

/* contact section */
.sec-contact {
  background: url('../images/contact-bg.png') no-repeat center/cover;
}

.contact-link h2 {
  display: inline-block;
  position: relative;
}

.contact-link h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -38px;
  width: 25px;
  height: 24px;
  background: url('../images/left-arrow.png') no-repeat center/contain;
  content: '';
}

/* typing animation */

.typing-wrapper {
  font-family: 'Rubik Extra bold', sans-serif;
  line-height: 72px;
  overflow: hidden;
  font-size: 55px;
  font-weight: 900;
  color: #008a00;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.typing-text {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  animation: typeanimate 15s steps(10) infinite;
}

.typing-text li {
  height: 50px;
}

@keyframes typeanimate {

  0%,
  33.33% {
    top: 0;
  }

  33.34%,
  66.66% {
    top: -50px;
  }

  66.67%,
  100% {
    top: -100px;
  }
}

.typing-text li::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-left: 3px solid #008a00;
  animation: typingAnimate 5s steps(10) infinite, blink 0.75s step-end infinite;
}

@keyframes typingAnimate {

  0%,
  40%,
  100% {
    left: 0;
  }

  50%,
  90% {
    left: calc(100% + 10px);
  }
}

@keyframes blink {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #008a00;
  }

  80% {
    border-color: rgba(0, 158, 58, 0.7);
  }
}


/* common button */
.d-flex {
  display: flex;
}

.banner-btn-gp {
  margin-top: 40px;
}

.banner-btn-gp .btn-type1 {
  margin-right: 20px;
}

.cmm-btn {
  border-radius: 3px;
  padding: 10px 21px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}

.btn-type1 {
  background-color: #008a00;
  color: #fff !important;
}

.btn-type2 {
  background-color: #fff;
  color: #008a00;
  border: 1px solid #008a00;
}

.sec-clients {
  background-color: #F8F9FC;
}

.sec-clients .client-image {
  margin-bottom: 40px !important;
}

.sec-clients .client-image img {
  max-width: 150px;
  width: 100%;
}

.sec-clients .client-image:hover img {
  cursor: pointer;
  scale: 1.2;
  transition: all 0.5s;
}


.sec-key-feature {
  background-color: #fff;
}

.step-img {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.selling-point-img,
.core-block {
  background-color: transparent;
  background-image: linear-gradient(180deg, #008a001f 0%, #F4341A26 100%);
}

.sec-howtowork {
  background: #F8F9FC;
}


/* Pricing Filter Section */
.pricing-filter {
  display: flex;
  flex-direction: column;
}

.pricing-filter .price-checkbox {
  margin-bottom: 20px;
}

.pricing-filter .price-checkbox label {
  font-size: 18px;
}

.pricing-filter .price-checkbox input[type="checkbox"] {
  margin-right: 15px;
  width: 18px;
  height: 18px;
}

.price-cnt-list {
  padding: 30px 20px 20px 30px;
}


.price-cnt-list ul li {
  margin-bottom: 13px;
  position: relative;
  padding-left: 25px;
  color: #002e27;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.price-cnt-list ul li:before {
  position: absolute;
  width: 15px;
  height: 15px;
  background: url('../images/check-solid.svg') no-repeat center/contain !important;
  top: 10px;
  left: 0;
  content: '';
  transform: translateY(-50%);
  border-radius: 50%;
}

.price-card-list {
  justify-content: space-between;
  align-items: center;
  width: 92%;
  margin: 0 auto;
}

.price-card-list .price-card {
  width: 31%;
  text-align: center;
  padding: 30px 0px 0;
  background-color: #EEEEEE;
  box-shadow: 0px 5px 15px 5px rgba(242, 242, 242, 0.5);
  border-radius: 25px;
}

.price-checkbox-list {
  padding: 30px 0;
  display: flex;
  justify-content: space-around;
}

.price-checkbox {
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #008a00;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.feature-checkbox {
  /* width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #008a00;
  border-radius: 4px; */
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  width: 0px;
}

.feedback-type-check {
  display: flex;
  align-items: center;
}

.price-checkbox:checked {
  background-color: #008a00;
  background-image: url('../images/check-solid-white.svg');
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-checkbox:checked {
  /* background-color: #008a00;
  background-image: url('../images/check-solid-white.svg');
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat; */
  text-decoration: underline;
}

.price-type-lable {
  padding-left: 9px;
  font-size: 18px;
  color: #008a00;
}

.price-plan-label {
  padding-bottom: 15px;
}

.price-plan-label h4 {
  color: #002e27;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
}

.price-lable {
  background: linear-gradient(180deg, rgba(153, 222, 51, 1) 0%, rgb(0, 138, 0) 55%);
  position: relative;
  padding: 5px 0;
}

.price-plan {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  padding-bottom: 10px;
  letter-spacing: 1.4px;
}

.price-plan-desc2 {
  position: absolute;
  bottom: 5px;
  right: 51px;
  font-size: 14px;
  color: #fff;
  content: '';
}

.price-currency {
  margin-left: 5px;
}

.price-plan-desc {
  font-size: 16px;
  font-weight: 400;
  color: #002E27;
}

.buy-btn {
  width: 75%;
  display: block;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(153, 222, 51, 1) 0%, rgb(0, 138, 0) 55%);
  color: #002E27;
  text-transform: uppercase;
  border-radius: 11px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -11px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

/* sec-core */

.sec-core {
  background-color: #F8F9FC;
}

.core-block {
  border-radius: 12px !important;
  margin-bottom: 30px !important;
}

/* dashboard portal */

.sec-dashboard-portal {
  background-color: #F8F9FC;
}

.dashboard-portal .swiper-pagination {
  bottom: -29px !important;
}

.dashboard-portal .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 10px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid #000;
}

.dashboard-portal .swiper-pagination-bullet-active {
  background-color: #008a00!important;
}

.header-top {
  background-color: #008a00;
  text-align: center;
  padding: 15px 15px 5px 15px;
  color: #fff;
  letter-spacing: 1.1px;
  font-size: 14px;
  text-transform: uppercase;
}

.marq {
  width: 90%;
  margin: 0 auto;
  max-width: 900px;
}

.aboutus-img-bg {
  background-image: linear-gradient(to right, #008a00, #00ad7a, #00b9ab, #4ac1cc, #8ec8dc);
  border-top-right-radius: 90px !important;
  border-bottom-right-radius: 90px !important;
}

.type-lable01.cb-disable,
.type-lable02.cb-disable,
.type-lable03.cb-disable,
.type-lable04.cb-disable {
  color: #a0b3a1;
}

.price-checkbox.cb-disable {
  border-color: #a0b3a1;
}

.sub-ttl-txt span {
  color: #000;
}

.sec-bg-green {
  background-color: #E0F3E7;
}

.key-wrapper,
.key-item {
  position: relative;
}


/* key feature section */

.key-wrapper::after,
.key-item::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
}

.key-wrapper::after {
  z-index: 0;
  background-color: #008a00;
  height: 100%;
  width: 2px;
}

.key-item::after {
  background-color: #fff;
  border: 1px solid #008a00;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 3;
}

.banner-slider .elementor-slides .swiper-slide-inner,
.elementor-slides .swiper-slide-inner:hover {
  opacity: 1 !important;
}

.banner-slider .elementor-slide-heading {
  margin-bottom: 0 !important;
}


/* Responsive Styles */

@media (min-width: 768px) {

  .cmm-sub-ttl {
    font-size: 2.25rem;
  }

}

@media (min-width: 1024px) {

  /* animation */

  .fadeLeft {
    transform: translateX(-3px);
    transition-delay: 0.5s;
  }

  .fadeLeft.fade-in {
    opacity: 1;
    transform: translateX(0);
  }

  .fadeRight {
    transform: translateX(3px);
    transition-delay: 0.5s;
  }

  .fadeRight.fade-in {
    opacity: 1;
    transform: translateX(0);
  }

  .fadeUp {
    transform: translateY(150px);
  }

  .fadeUp.fade-in {
    opacity: 1;
    transform: translateY(0);
  }


  .inner-slick-slide {
    max-width: 1200px;
    padding: 40px 0 145px;
  }

  /* header */
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    background-color: transparent;
    height: auto;
    width: auto;
  }

  .nav-list {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: transparent;
    overflow: visible;
  }

  .menu-item {
    display: inline-block;
    padding: 0 40px 0 0;
    font-size: 16px;
  }

  .social-icons {
    display: block;
  }
}

/* Tablet Size */
@media (max-width: 1024px) {

  /* Pricing Section */

  .price-type-lable {
    font-size: 16px;
  }

  .price-plan span {
    font-size: 26px;
  }

  .price-checkbox-list {
    padding: 20px 0;
  }

  .price-card-list {
    width: 100%;
  }

  .price-plan-label h4 {
    font-size: 25px;
  }

  .popular-price-card .price-plan-label h4 {
    font-size: 25px;
  }

  .price-plan-desc {
    font-size: 14px;
  }

  .popular-price-card .price-plan-desc {
    font-size: 16px;
  }

  .price-plan {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .price-plan-desc2 {
    bottom: 3px;
    right: 20px;
    font-size: 14px;
  }

  .price-cnt-list {
    padding: 20px 10px 20px 15px;
  }

  .buy-btn {
    padding: 7px 0;
    font-size: 14px;
  }

  .price-cnt-list ul li {
    font-size: 14px;
  }

  .popular-price-card .price-cnt-list ul li {
    font-size: 15px;
  }

  /* header */

  .marq {
    max-width: 100%;
    width: 92%;
  }

  #header-btn {
    display: none;
  }

  #header-btn-mobile {
    display: block;
    z-index: 1000;
  }

  .sp {
    display: block;
  }

  .header-top {
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 1.4;
  }

  .header {
    top: 42px;
    padding: 10px 15px;
  }

  .header.open {
    top: 0;
  }

  /* humburger menu open */
  .main-nav {
    background-color: #306b62;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 40;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 1s ease;
  }

  .main-nav.open {
    width: 100%;
    height: 100%;
    clip-path: circle(150% at 50% 50%);
  }

  .nav-list {
    position: absolute;
    top: 100px;
    bottom: 1.25rem;
    left: 9%;
    right: 1.25rem;
    padding: 30px 30px 30px 5px;
    overflow-y: auto;
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .main-nav.open .nav-list {
    opacity: 1;
  }

  .main-nav .nav-list li {
    margin-bottom: 40px;
  }

  .menu-item a {
    color: #fff;
  }

  .menu-item:hover,
  .menu-item:visited {
    color: #fff;
  }

  /* common */
  .container {
    width: 90%;
    max-width: 100%;
    padding: 30px 0;
  }

  .cmm-main-ttl {
    font-size: 30px;
  }

  .cmm-main-ttl.cmm-main-ttl.sec-line {
    font-size: 42px;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
  }

  .cmm-sub-ttl {
    font-size: 24px;
  }

  .cmm-ttl02 {
    font-size: 18px;
    margin-top: 35px;
  }

  .cmm-sub-ttl02 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
  }

  .contact-us-form form {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-us-form .contact-btn {
    padding: 12px 0;
    font-size: 14px;
  }

  .logo img {
    max-width: 55px;
  }

  .swiper-container {
    padding-top: 97px;
  }

  .pricing-price {
    font-size: 16px !important;
  }

  .pricing-price span {
    font-size: 10px;
    margin-left: 5px;
  }

  #dash-tabs .tab .elementor-button {
    min-height: auto !important;
  }

  .typing-wrapper {
    line-height: 70px;
    font-size: 43px;
  }

  .typing-text li {
    height: 50px;
  }

  @keyframes typeanimate {

    0%,
    33.33% {
      top: 0px;
    }

    33.34%,
    66.66% {
      top: -40px;
    }

    66.67%,
    100% {
      top: -82px;
    }
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 90px !important;
  }

  .footer-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .contact-us-form {
    margin-top: -152px !important;
  }

  .contact-form-ttl {
    padding: 20px 20px 10px 20px;
  }

  .contact-us-form form {
    padding-bottom: 20px;
  }

  /* dashboard portal */
  .dashboard-portal .swiper-pagination {
    bottom: -29px !important;
  }

  .dashboard-portal .swiper-pagination-bullet {
    width: 13px !important;
    height: 13px !important;
    margin: 0 10px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #000;
  }

  .dashboard-portal .swiper-pagination-bullet-active {
    background-color: #008a00 !important;
  }

}

/* Mobile size */
@media (max-width: 767.9px) {

  /* animation */
  .fadeUp {
    transform: translateY(50px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }

  .fadeUp01 {
    transform: translateY(50px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }

  /* key feature section */
  .key-wrapper::after,
  .key-item::after {
    left: 2.5%;
    transform: translateX(none);
  }

  .swiper-container {
    height: 100%;
  }

  .pricing-cnt-list ul {
    padding-left: 10px !important;
  }

  .pricing-price {
    font-size: 28px !important;
  }

  .pricing-cnt-list ul li {
    font-size: 16px;
    margin-bottom: 15px !important;
    padding-left: 35px !important;
  }

  .pricing-cnt-list ul li:before {
    width: 15px !important;
    height: 15px !important;
  }

  .footer-left-col .footer-ttl {
    text-align: center;
  }

  .ft-nav-left {
    padding-top: 30px;
  }

  .footer-left-col .ft-nav-left {
    justify-content: center;
  }

  .ft-nav-right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .ft-nav-right .ft-right-col {
    width: 100%;
    text-align: center;
  }

  .ft-nav-right .ft-right-col:first-child {
    margin-bottom: 50px;
  }

  .footer .ml-5 {
    margin-left: 3px;
  }

  .footer-nav li a {
    padding-left: 0;
    padding-bottom: 5px;
  }

  .footer-nav li a::before {
    content: none;
  }

  .footer ul li {
    margin-bottom: 10px;
    display: block;
  }

  .contact-info ul li {
    display: block;
  }

  .footer-ttl {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .social-icons a i {
    font-size: 22px;
  }

  .social-icons {
    margin-top: 30px;
  }

  .ft-right-col .text-mail {
    line-break: anywhere;
  }

  .slide-01 .text-blk {
    margin-bottom: 60px;
  }

  .typing-wrapper {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 0 !important;
    margin-top: 15px;
  }

  .typing-text li {
    height: 30px;
  }

  @keyframes typeanimate {

    0%,
    33.33% {
      top: 0;
    }

    33.34%,
    66.66% {
      top: -30px;
    }

    66.67%,
    100% {
      top: -60px;
    }
  }

  .cmm-main-ttl {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 9px;
    margin-bottom: 20px;
  }

  .cmm-main-ttl.cmm-main-ttl.sec-line {
    font-size: 22px;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
  }

  .banner-btn-gp .btn-type1 {
    margin-right: 15px;
  }

  .cmm-btn {
    font-size: 13px;
  }

  .cmm-ttl02 {
    font-size: 16px;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 45px !important;
  }

  .inner-slick-slide img {
    max-width: 500px;
    width: 100%;
    margin: 0px auto 30px;
  }

  .swiper-pagination-bullet {
    height: 2px !important;
  }

  .contact-us-form {
    margin-top: 0px !important;
  }

  /* Pricing Section */

  .price-checkbox-list {
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .feedback-type-check {
    /* width: 45%; */
    margin-bottom: 15px;
    align-items: flex-start;
  }

  .price-checkbox {
    width: 17px;
    height: 17px;
    top: 3px;
  }

  .price-checkbox:checked {
    background-size: 13px;
  }

  .price-card-list {
    flex-wrap: wrap;
  }

  .price-card-list .price-card {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .popular-price-card .price-plan {
    font-size: 30px;
  }

  .popular-price-card {
    background: linear-gradient(180deg, rgba(153, 222, 51, 1) 0%, rgb(0, 138, 0) 55%);
  }

  .price-plan-desc2 {
    right: 18%;
  }

  .price-plan span {
    font-size: 30px;
  }

  .buy-btn {
    padding: 10px 0;
    font-size: 16px;
    width: 50%;
  }


  /* dashboard portal */
  .dashboard-portal .swiper-pagination {
    bottom: -29px !important;
  }

  .dashboard-portal .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 10px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #000;
  }

  .dashboard-portal .swiper-pagination-bullet-active {
    background-color: #008a00 !important;
  }

  .contact-us-form form {
    max-width: 450px;
    padding: 0;
    font-size: 14px;
  }

  .banner-slider .swiper-slide-contents {
    text-align: left;
  }

  .footer .copyright-txt {
    padding: 10px;
    letter-spacing: 0;
    line-height: 1.7;
  }

}

@media (max-width: 767.9px) {
    .feature-list {
        padding: 20px 0 !important;
        flex-wrap: wrap;
    }
 .feedback-type-lable {
        font-size: 16px !important;
    }

}

