@font-face {
  font-family: 'Caveat';
  src: url(../fonts/Caveat-Bold.ttf),
    url(../fonts/Caveat-Bold.woff2);
  font-style: normal;
}
@font-face {
  font-family: 'Inter Regular';
  src: url(../fonts/Inter-Regular.ttf),
    url(../fonts/Inter-Regular.woff2);
}
@font-face {
  font-family: 'Inter Medium';
  src: url(../fonts/Inter-Medium.ttf),
    url(../fonts/Inter-Medium.woff2);
}
@font-face {
  font-family: 'Inter SemiBold';
  src: url(../fonts/Inter-SemiBold.ttf),
    url(../fonts/Inter-SemiBold.woff2);
}
@font-face {
  font-family: 'Inter Bold';
  src: url(../fonts/Inter-Bold.ttf),
    url(../fonts/Inter-Bold.woff2);
}
@font-face {
  font-family: 'Inter ExtraBold';
  src: url(../fonts/Inter-ExtraBold.ttf),
    url(../fonts/Inter-ExtraBold.woff2);
}
@font-face {
  font-family: 'Inter Black';
  src: url(../fonts/Inter-Black.ttf),
    url(../fonts/Inter-Black.woff2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

html {
  height: 100%;
}

body {
  background: #f4f9fc;
  height: fit-content;
  display: flex;
  flex-direction: column;
  font-family: 'Inter Regular';
  font-size: 16px;
}
body.no-scroll {
  overflow: hidden;
}

/* edits */

.reviews__row-text b {
  font-family: 'Inter Black';
}

.main {
  flex-grow: 1;
}

.container {
  max-width: 1230px;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.logo {
  max-width: 214px;
}

.btn {
  display: block;
  background: #4ad697;
  color: #fff;
  cursor:pointer;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.2);
}

.title {
  font-size: 40px;
  font-family: 'Inter Black';
  color: #1d2e3b;
  text-align: center;
}

.small-title {
  font-size: 32px;
  font-family: 'Inter Black';
  color: #1d2e3b;
  text-align: center;
}

.italic-title {
  font-size: 36px;
  color: #3199e2;
  font-family: 'Caveat';
  text-align: center;
}

.header {
  padding: 32px 0;
}
.header__inner {
  display: flex;
  align-items: center;
}
.header .logo {
  margin-right: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header__nav-list li {
  position: relative;
  font-family: 'Inter Bold';
}
.header__nav-list li.has-menu {
  padding-right: 20px;
}

.video-top iframe {
  width: 100%;
  height: auto;
  min-height: 624px;
}

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
  margin-top: 10%;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}
.popup__title {
    font-size: 34px;
    margin-bottom: 24px;
    text-align: center;
    color: #1d2e3b;
    font-family: 'Inter Black';
}
.popup__form {
    margin-bottom: 20px;
}
.popup__form p {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
    gap: 15px;
}
.popup__form .form-input {
    outline: none;
    padding: 15px 25px;
    border-radius: 40px;
    border: none;
    background: #f4f9fc;
    font-size: 16px;
    width: 100%;
    font-family: 'Inter Regular';
}
.popup__form .form-input::placeholder {
    font-family: 'Inter Regular';
    color: #ccc;
}
.form-btn {
    padding: 15px 25px;
    border-radius: 40px;
    outline: none;
    appearance: none;
    width: 100%;
    border: none;
    font-size: 22px;
    color: #fff;
    background: #4ad697;
    cursor: pointer;
    font-family: 'Inter Medium';
}
.wpcf7-not-valid-tip {
    font-size: 12px;
    font-family: 'Inter Regular';
}
.wpcf7-spinner {
    display: none;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
    font-family: 'Inter Regular';
}
/* .header__nav-list li.has-menu:after {
  content: '';
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  right: 0;
  border-bottom: 2px solid;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  transform: rotate(45deg);
  transition: transform 0.3s;
} */
.header__nav-list li.has-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  height: 0px;
  overflow: hidden;
  transition: height 0.5s;
}
.header__nav-list li.has-menu:hover ul {
  height: 100px;
}
.header__nav-list li.has-menu:hover::after {
  transform: rotate(45deg) scale(-1, -1)
    translate(-3px, -3px);
}
.header__btn {
  font-family: 'Inter Black';
  padding: 14px 24px;
}
.header__burger {
  display: none;
}

.top {
  margin-top: 58px;
  position: relative;
}
.top::before {
  position: absolute;
  content: '';
  top: -12%;
  left: 0;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 290px;
}
.top__title {
  font-size: 96px;
  color: #1d2e3b;
  font-family: 'Inter Black';
  max-width: 1140px;
  margin: 0 auto 32px;
  text-align: center;
}
.top__title i {
  color: #4ad697;
}
.top__subtitle {
  font-size: 32px;
  font-family: 'Inter Black';
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter SemiBold';
  max-width: 992px;
  margin: 0 auto 40px;
}
.top__btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 386px;
  margin: 0 auto 40px;
}
.top__btn-box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 72px;
  font-family: 'Inter ExtraBold';
  font-size: 24px;
}
.top__btn-box img {
  max-width: 18px;
  height: 20px;
  position: relative;
  top: 2px;
}
.top__btn-box span {
  font-family: 'Inter Medium';
  font-size: 14px;
  color: #60606b;
}
.top__video-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.top__video-list li {
  position: relative;
  padding-left: 27px;
  font-size: 19px;
  font-family: 'Inter SemiBold';
}
.top__video-list li::before {
  position: absolute;
  content: '';
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  background-image: url(../images/checkmark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.top__video-box {
  margin-bottom: 40px;
}
.top__video {
  overflow: hidden;
  border-radius: 8px;
  font-size: 0;
  position: relative;
  filter: drop-shadow(0px 4px 16px rgba(0, 44, 122, 0.2));
}
.top__video video {
  width: 100%;
  font-size: 0;
}
.top__video-uptitle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #3199e2;
  padding: 10px 0;
  font-size: 19px;
}
.top__video-uptitle img {
  max-width: 18px;
  display: inline-block;
  margin-right: 8px;
}
.top .sound-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter Regular';
  position: absolute;
  top: 60px;
  left: 16px;
  cursor: pointer;
}
.top .sound-btn img {
  max-width: 21px;
}
.top__pros {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.2);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 63px;
}
.top__pros-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.top__pros-item span {
  text-align: center;
  font-size: 19px;
  font-family: 'Inter SemiBold';
}

.reviews {
  position: relative;
  margin: 90px 0 40px;
}
.reviews::before {
  position: absolute;
  content: '';
  top: -100%;
  right: 0;
  background-image: url(../images/bg-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 290px;
}
.reviews__stars {
  max-width: 161px;
  margin: 0 auto 24px;
}
.reviews .title {
  max-width: 725px;
  margin: 0 auto;
}
.reviews .italic-title {
  margin-bottom: 24px;
}
.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 360px));
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.reviews__row-item {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.2);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.reviews__row-item:last-child {
  gap: 20px;
}
.reviews__row-item:last-child .reviews__row-img {
  max-width: 187px;
  margin-top: -25px;
}
.reviews__row-img {
  max-width: 222px;
}

.why-us__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.why-us .title {
  margin-bottom: 32px;
  -moz-text-align-last: left;
  text-align-last: left;
}
.why-us__text {
  max-width: 510px;
}
.why-us__text p {
  margin-bottom: 16px;
  font-size: 19px;
  color: #4d5256;
}
.why-us__text p b {
  color: #1d2e3b;
}
.why-us__img {
  max-width: 523px;
}

.secret {
  position: relative;
  margin-top: 90px;
}
.secret::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 290px;
}
.secret::after {
  position: absolute;
  content: '';
  top: 150%;
  right: 0;
  background-image: url(../images/bg-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 280px;
}
.secret .title {
  font-size: 48px;
  max-width: 700px;
  margin: 0 auto 24px;
}
.secret .title span {
  color: #4ad697;
}
.secret__subtitle {
  font-size: 19px;
  color: #4d5256;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.secret__subtitle b {
  color: #1d2e3b;
}
.secret__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 420px));
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.secret__row-item {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.2);
  padding: 20px 40px;
  min-height: 280px;
}
.secret__row-item .title {
  font-size: 28px;
  margin-bottom: 22px;
}
.secret__row-item ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.secret__row-item li {
  position: relative;
  padding-left: 25px;
  color: #4d5256;
  font-family: 'Inter Bold';
}
.secret__row-item li:before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.secret__row-item.without li:before {
  background-image: url(../images/without.svg);
}
.secret__row-item.without li {
  max-width: 200px;
}
.secret__row-item.with li:before {
  background-image: url(../images/with.svg);
}
.secret .small-title {
  max-width: 640px;
  margin: 0 auto 40px;
}

.for-you__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.for-you__info .title {
  text-align: left;
  margin-bottom: 32px;
}
.for-you__info .why-us__text {
  max-width: 560px;
}
.for-you__info p {
  max-width: 480px;
}

.comand {
  position: relative;
}
.comand::before {
  position: absolute;
  content: '';
  top: 30%;
  left: 0;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 290px;
}
.comand::after {
  position: absolute;
  content: '';
  top: 85%;
  right: 0;
  background-image: url(../images/bg-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 280px;
}
.site-page .comand::after{
	content:none;
} 
.comand .small-title {
  max-width: 810px;
  margin: 0 auto 50px;
}
.comand__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 98px;
}
.comand__item {
  max-width: 163px;
}
.comand__arrows {
  max-width: 140px;
  margin: 0 auto 40px;
}
.comand .second {
  max-width: 670px;
  margin: 0 auto 40px;
}
.comand .second span {
  color: #4ad697;
}
.comand__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
}
.comand__info-item {
  width: 25%;
  padding: 15px 20px;
  display: flex;
  border-bottom: 1px solid #e8eef0;
  border-right: 1px solid #e8eef0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 200px;
}
.comand__info-item:nth-child(4),
.comand__info-item:nth-child(8),
.comand__info-item:nth-child(12),
.comand__info-item:nth-child(14) {
  border-right: none;
}
.comand__info-img {
  max-width: 35px;
}
.comand__info-title {
  font-size: 19px;
  font-family: 'Inter Bold';
}
.comand__info-text {
  color: #4d5256;
  text-align: center;
}
.comand .third {
  max-width: 830px;
  margin: 0 auto 40px;
}

.partners__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 90px;
}
.partners__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 17%;
}
.pop-up-content-wrap .italic-title {
    font-size: 20px;
    color: #3199e2;
    font-family: 'Caveat';
    text-align: center;
}
body > footer > div.custom-model-main.model-open > div.custom-model-inner > div.custom-model-wrap > div > div:nth-child(5) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}
.popup__arrow img{
	width:100%;
	height:auto;
}
.popup__arrow {
    width: 30px;
    position: absolute;
    right: 170px;
    transform: rotate(66deg);
}
.partners__item:nth-child(1)
  .partners__item-img:nth-child(1) {
  max-width: 165px;
  align-self: flex-end;
}
.partners__item:nth-child(1)
  .partners__item-img:nth-child(2) {
  max-width: 180px;
}
.partners__item:nth-child(2) .partners__item-img {
  max-width: 200px;
}
.partners__item:nth-child(3)
  .partners__item-img:nth-child(1) {
  max-width: 172px;
}
.partners__item:nth-child(3)
  .partners__item-img:nth-child(2) {
  max-width: 165px;
  align-self: flex-end;
}
.partners__item:nth-child(4)
  .partners__item-img:nth-child(1) {
  max-width: 245px;
}
.partners__item:nth-child(4)
  .partners__item-img:nth-child(2) {
  max-width: 177px;
  align-self: flex-end;
}
.partners__item:nth-child(5) .partners__item-img {
  max-width: 140px;
}

.about-funnel {
  display: flex;
  align-items: center;
  gap: 63px;
}

.about-funnel__img {
  max-width: 600px;
  width: 100%;
  flex-shrink: 0;
}

.about-funnel__text h2 {
  color: #1d2e3b;
  font-family: 'Inter Black';
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 120% */
  letter-spacing: -0.8px;
  margin-bottom: 32px;
}

.about-funnel__text p {
  color: #4d5256;
  font-family: 'Inter Regular';
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  max-width: 482px;
}

div.about-funnel__text > p:nth-child(2) {
  margin-bottom: 16px;
}

.about-funnel__text p b {
  font-family: 'Inter Black';
  color: #1d2e3b;
}

.about-funnel {
  margin-bottom: 73px;
}

.cards {
  position: relative;
}
.cards::before {
  position: absolute;
  content: '';
  top: 30%;
  left: 0;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 290px;
}
.cards::after {
  position: absolute;
  content: '';
  top: 75%;
  right: 0;
  background-image: url(../images/bg-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 280px;
}

.cards__subtitle h4 {
  color: #3199e2;
  text-align: center;
  font-family: Caveat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 50.4px;
}

.cards__subtitle h2 {
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter Black';
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.cards__subtitle h5 {
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter SemiBold';
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.cards__arrow {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  margin-bottom: 40px;
}

.card {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  padding: 50px 50px 60px 50px;
  gap: 80px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 44, 122, 0.13);
}

.first-card::after,
.third-card::after,
.fifth-card::after {
  position: absolute;
  content: '';
  background-image: url(../images/step-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 80px;
  height: 220px;
  left: 98%;
  bottom: -130px;
  z-index: -1;
}

.second-card::after,
.fourth-card::after {
  position: absolute;
  content: '';
  background-image: url(../images/step-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 80px;
  height: 220px;
  right: 98%;
  bottom: -130px;
  z-index: -1;
  transform: scale(-1, 1);
}

.card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 386px;
  width: 100%;
  height: 72px;
  font-family: 'Inter ExtraBold';
  font-size: 18px;
  margin: 0 auto;
  text-transform:capitalize;
}

.card__text {
  padding-left: 68px;
}

.card .btn img {
  max-width: 18px;
  height: 20px;
  position: relative;
  top: 2px;
}

.card__add {
  max-width: 100%;
  width: 100%;
  flex-shrink: 0;
  /* margin-right: 68px; */
}
.card__add-btn-wrapper {
    display: flex;
    gap: 24px;
}
.more__btn{
	background: transparent;
	color: #4AD697;
	border: 1px solid #4AD697;
	text-align: center;
	font-family: 'Inter ExtraBold';
	font-size: 18px;
	font-style: normal;
	font-weight: 800;
	line-height: 48px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:8px;
	text-transform: capitalize;
	width:100%;
	max-width:386px;
	box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.20);
}
.card__add {
  max-width: 450px;
}

.card__text h4 {
  color: #1cbcff;
  font-family: 'Inter SemiBold';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
}

.card__text h2 {
  color: #1d2e3b;
  font-family: 'Inter Black';
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px; /* 120% */
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.card__text p {
  max-width: 373px;
  width: 100%;
  color: #4d5256;
  font-family: 'Inter Regular';
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 24px;
}

.card__text h6 {
  color: #1d2e3b;
  font-family: 'Inter SemiBold';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 16px;
}

.card__text ul {
  margin-left: 20px;
}

.first-li,
.second-li {
  margin-bottom: 16px;
}

.card__text ul li {
  position: relative;
  color: #4d5256;
  font-family: 'Inter Regular';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 417px;
}

.card__text ul li:before {
  content: '';
  width: 9px;
  height: 18px;
  position: absolute;
  left: -20px;
  top: 15px;
  background-image: url(../images/symbol.svg);
  background-repeat: no-repeat;
}

.card__img {
  margin-bottom: 32px;
}

.card__add p {
  color: #60606b;
  text-align: center;
  font-family: 'Inter Regular';
  font-size: 14px;
  margin-top: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.6px;
}

.fourth-card .card__text,
.second-card .card__text,
.sixth-card .card__text {
  padding-left: 0;
}

.third-card .card__text p {
  max-width: 407px;
}

.sixth-card .card__text p,
.fifth-card .card__text p,
.fourth-card .card__text p {
  max-width: 497px;
}

.fifth-card .first-li {
  max-width: 407px;
}

.fifth-card .second-li {
  max-width: 374px;
}

.fifth-card .third-li {
  max-width: 350px;
}

/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
/* funnel */
.funnel__inner h2 {
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter Black';
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.8px;
  max-width: 910px;
  margin: 0 auto;
}

.funnel__project {
  max-width: 370px;
}

.funnel__project-img img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.2);
  max-width: 370px;
  height: auto;
}

.funnel__project-img {
  margin-bottom: 24px;
}

.funnel__project h4 {
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter Black';
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px;
}

.funnel__project p {
  color: #4d5256;
  text-align: center;
  font-family: 'Inter Regular';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}

.funnel__projects {
  gap: 45px;
  display: flex;
  flex-wrap: wrap;
}

.funnel__inner .italic-title {
  margin-bottom: 40px;
}

.add-to-cart {
  margin-top: 40px;
}

.add-to-cart .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 386px;
  width: 100%;
  height: 72px;
  font-family: 'Inter ExtraBold';
  font-size: 24px;
  margin: 0 auto;
}

.add-to-cart .btn img {
  max-width: 18px;
  height: 20px;
  position: relative;
  top: 2px;
}

.winners__inner h2 {
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter Black';
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.8px;
  max-width: 770px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.winners {
  margin-top: 90px;
}

.winners {
  position: relative;
}
.winners::before {
  position: absolute;
  content: '';
  top: 30%;
  left: 0;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 1200px;
  width: 290px;
}

.winners__inner h2 span {
  color: #4ad697;
}

.winners__inner p {
  color: #4d5256;
  max-width: 1009px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter Regular';
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.winners__inner p span {
  color: #1d2e3b;
  font-family: 'Inter SemiBold';
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.winners__gallery {
  display: flex;
  gap: 43px;
  margin: 40px 0;
}

.winners__card img {
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.2);
}

.winner__second-title {
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter Black';
  font-size: 32px;
  font-style: normal;
  max-width: 770px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.8px;
}

.add-to-cart p {
  text-align: center;
  margin-top: 16px;
}

/* faq */
.faq-section {
  height: -moz-fit-content;
  height: fit-content;
}

.faq-section h3 {
  margin: 90px 0 40px 0;
  color: #1d2e3b;
  text-align: center;
  font-family: 'Inter Black';
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.8px;
}

.faq-heading {
  color: #1d2e3b;
  font-family: 'Inter Black';
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.8px;
  padding-left: 42px;
  font-weight: 400;
  font-size: 19px;
  -webkit-transition: text-indent 0.2s;
  color: #333;
  margin-top: 18px;
}

.faq-text {
  width: 95%;
  padding-left: 42px;
  margin-bottom: 30px;
  margin-top: 19px;
  padding-top: 20px;
  color: #4d5256;
  font-family: 'Inter Regular';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  border-top: 1px solid rgba(28, 188, 255, 0.5);
}

.faq {
  margin: 0 auto;
  border-radius: 4px;
  position: relative;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.faq label {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding-top: 1px;
  background-color: #fff;
  border-bottom: 1px solid #e1e1e1;
}

.faq input[type='checkbox'] {
  display: none;
}

.faq .faq-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(
    0.68,
    -0.55,
    0.265,
    1.55
  );
  border-top: 2px solid #1d2e3b;
  border-right: 2px solid #1d2e3b;
  float: right;
  position: relative;
  top: -19px;
  right: 42px;
  transform: rotate(45deg);
}

.faq input[type='checkbox']:checked + label > .faq-arrow {
  transition: transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(
    0.68,
    -0.55,
    0.265,
    1.55
  );
  transform: rotate(135deg);
}

.faq input[type='checkbox']:checked + label {
  display: block;
  background: rgb(255, 255, 255) !important;
  color: #4f7351;
  height: -moz-fit-content;
  height: fit-content;
  transition: height 0.8s;
  -webkit-transition-timing-function: cubic-bezier(
    0.68,
    -0.55,
    0.265,
    1.55
  );
}

.faq input[type='checkbox']:not(:checked) + label {
  display: block;
  transition: height 0.8s;
  height: 60px;
  -webkit-transition-timing-function: cubic-bezier(
    0.68,
    -0.55,
    0.265,
    1.55
  );
  box-shadow: 0px 4px 16px 2px rgba(0, 44, 122, 0.2);
  border-radius: 8px;
}

::-webkit-scrollbar {
  display: none;
}

/*  */
/*  */
/*  */
/*  */
/* footer */
/*  */
/*  */
/*  */
.footer {
  margin: 0 auto;
  margin-top: 90px;
  width: 100%;
  padding-bottom: 60px;
}

.card-img img,
.social__icon img {
  width: 100%;
  height: auto;
}

.second__row {
  margin-top: 20px;
}

.card-img {
  width: 50px;
}

.social__icon {
  display: block;
  width: 25px;
  height: 25px;
}

.footer__socials {
  display: flex;
  gap: 25px;
}

.first__row {
  display: flex;
  justify-content: space-between;
}

.card-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.card-img.polit img {
  width: 29.2px;
  height: 14px;
}

.card-img.polit {
	display: flex;
	width: 100%;
	gap: 20px;
	align-items: center;
}

.card-img.polit span {
  color: #60606b;
  text-align: center;
  font-family: 'Inter Regular';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.comand__item img:hover{
	transform:scale(1.1);
}

.comand__item img{
	transition:.2s;
}














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

/* SITE STYLES */

.action-section{
	padding:36px 0;
	background: linear-gradient(92deg, rgba(49, 153, 226, 0.10) -4.51%, rgba(178, 108, 241, 0.10) 104.09%);
}

.action-section .small-title{
	margin-bottom:40px;
}

.action-section .top__btn-box{
	margin-bottom:0;
}

.site-page .breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
    margin-top: 40px;
}
.breadcrumbs a{
	color: #4D5256;
	font-family: "Inter Bold";
	font-size: 14px;
	font-style: normal;
	line-height: 16.8px;
}
.breadcrumbs span{
	color: #4D5256;
	text-align: center;
	font-family: Inter Regular !important;
	font-size: 14px;
}
.breadcrumbs__main{
	color: #4D5256;
	text-align: center;
	font-family: Inter Regular !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16.8px;
}
.site-hero__inner h2{
	max-width:894px;
	margin:0 auto;
	margin-bottom:24px;
}
.site-hero__inner p{
    font-size: 19px;
    color: #4d5256;
	max-width:806px;
	width:100%;
	margin:0 auto;
	text-align:center;
	margin-bottom:40px;
}
.site-hero__img{
	margin-bottom:57px;
}
.site-hero__desc{
	margin:0 auto;
	max-width:904px;
}
.site-hero__desc{
	margin-top:24px;
	color: #4D5256;
	text-align: center;
	font-family: "Inter Regular";
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.site-hero__desc p:nth-child(1){
	margin-bottom:15px;
}
.site-hero__desc .comand__arrows{
	margin-top:24px;
}
.site-cards__wrapper .card{
	padding:50px 40px;
}
.site-cards__wrapper .card__text h3{
	color: #1D2E3B;
	font-family:"Inter SemiBold";
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 27px; 
	margin-bottom:16px;
}
.site-cards__wrapper .first-card .card__add{
	max-width:535px;
}
.site-cards__wrapper .first-card .card__text{
	padding:0;
	max-width:445px;
	width:100%;
}
.site-cards__wrapper .card__text p{
	width:100%;
	max-width:100%;
	margin:0;
}
.site-cards__wrapper .second-card .card__text p {
    width: 100%;
    max-width: 474px;
    margin: 0;
}
.card.fourth-card,
.card.second-card{
	align-items:center;
}
.site-cards__wrapper .fourth-card .card__add,
.site-cards__wrapper .third-card .card__add,
.site-cards__wrapper .second-card .card__add {
    max-width: 535px;
}
.first-card::after, .third-card::after, .fifth-card::after,.second-card::after, .fourth-card::after{
	content:none;
}
.site-cards__wrapper .third-card .card__text {
    padding: 0;
    max-width: 100%;
    width: 100%;
}
.site-cards__wrapper .fourth-card .card__text p {
    width: 100%;
    max-width: 445px;
    margin: 0;
}
.fourth-card .card__text {
    padding-left: 30px !important;
}
.site-review__inner{
	display:flex;
	align-items:center;
	gap:45px;
}
.site-review__img {
    max-width: 321px;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}
.site-review__img img {
    width: 100%;
    transform: scale(1.1);
    height: auto;
}
.site-review__text h2{
	max-width:605px;
	color: #1D2E3B;
	font-family: "Inter Bold";
	font-size: 32px;
	font-style: normal;
	line-height: normal;
	letter-spacing: -0.8px;
	margin-bottom:24px;
}
.site-review__text h2 span{
	color:#4AD697;
}
.site-review__text p {
    color: #4D5256;
    font-size: 18px;
    font-family: "Inter Regular";
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.site-review{
	margin-top:90px;
}
.site-review .comand__arrows{
	margin-top:48px;
}
.mobile__hero,
.mobile__text{
	display:none;
}


.callback-page{
	height: calc(100vh - 400px);
	display:flex;
	align-items:center;
}

body > div.callback-page > div{
	height:fit-content;
}

body > div.callback-page > div > div:nth-child(5){
	display:flex;
	gap:20px;
	justify-content:center;
	margin-top:20px;
}

body > div.callback-page > div > div.popup__arrow{
	display:none;
}

/* courses */
#courses .site-review__img img {
    width: 100%;
 	transform: scale(1);
    height: auto;
}
#courses .comand::after{
	content:none;
}
.review__author{
	color: #4D5256;
	text-align: left;
	font-family:'Inter SemiBold' !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 16.8px !important;
	margin-top:16px !important;
}
.mobile__author{
	display:none;
}

.offerta-page.container{
	height:fit-content;
}

.payments__inner{
	display:flex;
	align-items:center;
	gap:128px;
}
.payments__action{
	display:flex;
	flex-direction:column;
	gap:20px;
	align-items:flex-start;
}
.payments .top__btn-box{
	margin:0;
	max-width:300px;
	width:100%;
}
.payments__action h2{
	color: #1D2E3B;
	max-width:512px;
	font-family:"Inter Black";
	font-size: 40px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	letter-spacing: -0.8px;
}
.mobile__payment{
	display:none;
}
.payments__action p{
	color: #4D5256;
/* 	font-family: Inter; */
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-bottom:20px;
}
.payments__ways{
	display:flex;
	gap:20px;
	max-width:457px;
	width:100%;
	flex-wrap:wrap;
}
.payments{
	padding:58px 0;
	background: linear-gradient(92deg, rgba(49, 153, 226, 0.10) -4.51%, rgba(178, 108, 241, 0.10) 104.09%);
}




/* shop page */

.woocommerce-loop-product__title,
.site-main .woocommerce-notices-wrapper,
.woocommerce-ordering,
.woocommerce-result-count{
	display:none;
}

.products{
	display:flex;
	justify-content:space-evenly;
	gap:52px;
	margin-bottom:90px;
}
.product{
	border-radius: 8px;
	height:fit-content;
	max-width:328px;
	width:100%;
	background: #FFF;
	padding: 24px 19px 24px 18px;
	box-shadow: 0px 0px 30px 0px rgba(0, 44, 122, 0.13);
}
.product h1{
	color: #1D2E3B;
	text-align: center;
	font-family: 'Inter Black';
	font-size: 25px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}
.product:nth-child(3){
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(49, 153, 226, 0.10) 19.65%, rgba(178, 108, 241, 0.10) 86.56%);
	box-shadow: 0px 0px 30px 0px rgba(0, 44, 122, 0.13);
}
.item__month-price{
	color: #2F2F2F;
	text-align: center;
	font-family: 'Inter Black';
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	margin-top:8px;
	margin-bottom:15px;
}
.item__custom-subtitle_text{
	color: #4D5256;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	text-align:center;
}
.add_to_cart_button{
	border-radius: 8px;
	background: #4AD697;
	color: #FFF;
	text-align: center;
	font-family: "Inter Black";
	font-size: 16px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	padding:16px;
	display:block;
	max-width:157px;
	margin:0 auto;
	margin-top:30px;
	transition:.3s;
	position:relative;
	text-align:left;
}
.add_to_cart_button::after{
	content:'';
	position:absolute;
	width:17px;
	height:17px;
	background-image:url(https://salesfunnel.itpediagroup.com/wp-content/uploads/2023/10/button__arrow.png);
	background-size:contain;
	background-repeat:no-repeat;
    right: 16px;
    top: 20px;
}
.included-services ul{
	display:flex;
	gap:10px;
	flex-direction:column;
}
.included-services ul li{
	color: #4D5256;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 21px; 
}
.included-services ul li s{
	color: rgba(77, 82, 86, 0.40);
}
.item__custom-subtitle .cards__arrow {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 14px;
    margin-bottom: 30px;
}
.add_to_cart_button:hover{
	box-shadow: 0px 4px 16px 2px rgba(121, 169, 255, 0.20);
}
.add_to_cart_button:hover.add_to_cart_button::after {
    animation: float 1s infinite;
    transform: translateZ(0); /* Apply hardware acceleration */
}
@keyframes float {
	0% {
		right: 16px;
	}
	50% {
		right: 10px;
	}
	100% {
		right: 16px;
	}
}
.shop-page .title{
	max-width:810px;
	width:100%;
	margin:0 auto;
	margin-bottom:24px;
}
.shop-page-subtitle{
	color: #4D5256;
	text-align: center;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; 
	max-width:779px;
	width:100%;
	margin:0 auto;
	margin-bottom:40px;
}
.woocommerce-breadcrumb{
	display:flex;
	color: #4D5256;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16.8px;
	justify-content:center;
	margin-bottom:15px;
}
.banks{
	margin:0 auto;
	margin-bottom:20px;
	max-width:70%;
}


div#order_review{
	display: flex;
    flex-wrap: wrap;
	gap:41px;
	position:relative;
}
.woocommerce table.shop_table{
	border-radius: 8px;
	background: #FFF;
	box-shadow: 0px 0px 30px 0px rgba(0, 44, 122, 0.13);
	padding: 36px 24px;	
	max-width:525px;
	width:100%;
	position:absolute;
	right:0;
}
.woocommerce-billing-fields{
	border-radius: 8px;
	background: #FFF;
	max-width:634px;
	width:100%;
	padding: 52px;
}
.cart-subtotal{
	display:none;
}
.input-text {
	border:none;
	border-radius: 41px;
	background: #F4F9FC;
	height: 50px;
	padding-left:24px;
	width:100%;
}
.woocommerce-billing-fields__field-wrapper label{
	display:none !important;
}
.woocommerce-billing-fields__field-wrapper{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	gap:32px 0;
}
#billing_company_field{
	order:1;
	max-width:100%;
}
.form-row{
	max-width:230px;
	width:100% !important;
}
#billing_last_name_field,
#billing_email_field{
	max-width:268px;
}
#payment{
	padding:0 52px;
	max-width:634px;
	width:100%;
	position:relative;
	background:#fff !important;
	top:-50px;
}
#order_review > div.woocommerce-billing-fields > h3{
	display:none;
}
.woocommerce form .form-row {
	margin:0;
	padding:0;
}
#payment{
	padding-top:10px;
}
#payment h2,
.woocommerce-billing-fields h2{
	color: #1D2E3B;
	font-family:"Inter SemiBold";
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.8px;
	margin-bottom:40px;
}
#payment h2 span,
.woocommerce-billing-fields h2 span{
	color:#1CBCFF;
}
#payment > ul > li.wc_payment_method.payment_method_liqpay-webplus > label img{
	display:none;
}
.woocommerce-terms-and-conditions-wrapper{
	display:none;
}
.active-label {
    font-weight: bold;
}
.inactive-label {
    color: grey;
}
.input-radio:checked,
.input-radio:not(:checked) {
    position: absolute;
    left: -9999px;
}
.input-radio:checked + label,
.input-radio:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.input-radio:checked + label:before,
.input-radio:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.input-radio:checked + label:after,
.input-radio:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #1CBCFF;
    position: absolute;
    top: 7px;
    left: 7px;
    border-radius: 100%;
    transition: all 0.2s ease;
}
.input-radio:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #F4F9FC;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 100%;
    transition: all 0.2s ease;
}
.input-radio:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
.input-radio:checked + label:before {
    border: 2px solid #1CBCFF; /* Border color when radio button is checked */
}
.input-radio:not(:checked) + label:before {
    border-color: #dbdbdb; /* Border color when radio button is not checked */
}
ul.wc_payment_methods.payment_methods.methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
	padding:0 !important;
	border-bottom:none !important;
}
.woocommerce-checkout #payment ul.payment_methods li img{
	max-width:173px;
    display: block;
	margin-top:46px;
}
.woocommerce-checkout #payment div.payment_box{
	background:transparent;
	display:flex;
	flex-direction:column;
	align-items: flex-start;
}
.woocommerce-checkout #payment div.payment_box div:nth-child(1){
	margin-bottom:35px;
	display:flex;
	align-items:center;
	gap:36px;
}
.woocommerce-checkout #payment div.payment_box div:nth-child(1) br{
	display:none;
}
.woocommerce-checkout #payment div.payment_box:before{
	content:none;
}
.payment_method_installment{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
}
.payment_box select {
  width:81px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none; 
  background-image: url('https://salesfunnel.itpediagroup.com/wp-content/uploads/2023/10/select__arr.png');
  background-repeat:no-repeat;
  background-position: 44px 4px; 
  text-indent: 0.01px;
  text-overflow: "";  
  padding: 8px 18px;
  cursor: pointer;
  color: #4D5256;
	border-radius: 41px;
	background-color: #F4F9FC;
	font-size:16px; 
}
#payment .form-row{
	max-width:100%;
	width:100%;
	display:flex;
	justify-content:center;
}
#place_order{
	background-color:#4AD697 !important;
	padding: 16px;
	border-radius: 8px;
	box-shadow: 0px 4px 16px 2px rgba(121, 169, 255, 0.20);
}
#order_review > table > thead > tr > th:nth-child(1){
	color: #1D2E3B;
	text-align: left;
	font-family: "Inter SemiBold";
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.8px;
}
#order_review > table > thead > tr > th:nth-child(1) span{
	color: #4D5256;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	display:block;
	font-family:"Inter Medium";
}
#order_review > table > thead > tr > th:nth-child(1) span.cart-items{
	display:inline;
}
.woocommerce table.shop_table td.product-name{
	display:flex;
	flex-direction:column;
	position:relative;
	top: 20px;	
	border:none;
}
.cqoc_product_name{
	order:-1;
	color: #1D2E3B;
	font-family: "Inter Black";
	font-size: 25px;
	font-style: normal;
	font-weight: 900;
}
body .qib-button-wrapper {
    display: flex;
    float: left;
    flex-wrap: nowrap;
    margin-right: 5px;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}
.qib-button-wrapper .quantity input.input-text.qty.text {
    height: 41px;
    padding: 4px;
    text-align: center;
    background: #ffffff;
    border: none;
    font-size: 14px;
    line-height: 16px;
    box-shadow: none;
}
.qib-button{
	color:#1CBCFF !important;
}
body .qib-button-wrapper .minus.qib-button, body .qib-button-wrapper .plus.qib-button{
	background:transparent;
	border-radius:50%;
	width:25px;
	height:25px;
	display:flex;
	align-items:center;
	padding:0;
	justify-content:center;
	border:1px solid #1CBCFF;
}
.woocommerce table.shop_table td.product-thumbnail {
    padding: 0;
    min-width: 170px;
	border:none;
}
.cart_item{
	border-top:1px solid rgba(77, 82, 86, 0.20);
	border-bottom:1px solid rgba(77, 82, 86, 0.20);
}
.product-name .remove{
	right:0;
	position:absolute;
}
.cart_item{
	position:relative;
}
.cart_item:after{	
	content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background: rgba(77, 82, 86, 0.20);
    top: 0;
    left: 0;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th{
	border-top:2px solid rgba(0,0,0,.1);
}
.entry-title{
	text-align: center;
	margin: 90px 0;
	color: #1D2E3B;
	font-size: 40px;
	font-weight: 900;
}
.woocommerce-order .container{
	height:80vh;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
}
.woocommerce-order .container .top__btn-box .btn{
	padding:10px;
}