:root {
  --bg-color: #ffffff;
  --bg-color-opa: unset;
  --bg-color2: #161616;
  --bg-color3: #ffffff;
  --bg-color3-opa: unset;

  --light-switch: #464551;
  --main-container: #ffffff;
  --main-container2: #f8f9fb;
  --main-container3: #ffffff;
  --main-container5: #eff2f5;
  --main-container6: #f8f9fb;
  --main-container7: #E8EEFB;
  --primary-cont: #E8EEFB;

  --text-color: #1f1f1f;
  --text-color2: #f8f9fb;
  --text-color3: #464551;
  --text-color5: #78797b;
  --text-color6: #464551;
  --text-color7: #f8f9fb;
  --text-color8: #1f1f1f;
  --accent-color: #1252d3;

  --bg-box-color: #1F1F1F;

  --gradient1: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);


  --border: #46455114;
  --border2:  #78797B;
  --border3:  #1252D3;





  --slider-track:  #d1d5db;
  --slider-fill:   #1252D3;
  --slider-thumb:  #FFFFFF;
  --slider-ring:  #46455114;
  --bg-fon-box: #EFF2F5;

  --slide-border: #F0F0F0;
  --bg-card: #FCFCFC;

}

[data-theme="dark"] {
  --bg-fon-box: #1B1C1F;

  --slide-border: #646464;

  --slider-track:  #2d303b;
  --slider-fill:   #A1D8EE;
  --slider-thumb:  #1B1C1F;
  --slider-ring:   #FFFFFF14;


  --bg-color-opa: #1b1c1f;
  --bg-color: #1F2024;

  --bg-color2: #fafdff;
  --bg-color3: #2e2d2f;
  --bg-color3-opa: #2e2d2f;

  --light-switch: #B7B9BB;

  --main-container: #262728;
  --main-container2: #2e2d2f;
  --main-container3: #1b1c1f;
  --main-container5: #1b1c1f;
  --main-container6: #262728;
  --main-container7: #1e1f27;

  --primary-cont: #293033;

  --text-color: #fafdff;
  --text-color2: #2e2d2f;
  --text-color3: #fafdffb2;
  --text-color5: #6b6f73;
  --text-color6: #b7b9bb;
  --text-color7: #303132;
  --text-color8: #b7b9bb;

  --accent-color: #a1d8ee;

   --gradient1: linear-gradient(270deg, rgba(27, 28, 31, 0) 0%, #1B1C1F 100%);

  --bg-box-color: #FAFDFF;

  --border: #ffffff14;
  --border2:  #6B6F73;
  --border3:  #A1D8EE;

  --bg-card: #1B1C1F;

}

.animate-item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  z-index: 2;
}
.animate-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left,
.fade-right,
.fade-top,
.fade-bottom {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition-property: transform, opacity;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.fade-left {
  transform: translateX(-60px);
}
.fade-right {
  transform: translateX(60px);
}
.fade-top {
  transform: translateY(-60px);
}
.fade-bottom {
  transform: translateY(60px);
}
.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
main {
  flex: 1 1 auto;
}
.container {
  max-width: 1188px;
  width: 100%;
  margin: 0 auto;
  padding: 0 14px;
}
.text-wrap {
  display: block;
}
.text-blue {
  color: var(--accent-color);
}


.post-item{
  display: flex;
  align-items: center;
  width: max-content;
  border-radius: 100px;
  gap: 8px;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
  background: var(--primary-cont);
}
.post-item .icon{
  background: var(--accent-color);
  font-size: 20px;
}



.desktop-block{
  display: block;
}
h3 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}

h4{
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
}
p{
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color6);


}

ul li{
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}



.card-fon{
  background: var(--main-container6);
  border: 1px solid var(--border);
  border-radius: 12px;
  gap: 12px;
}

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


.img-mobile {
  display: none;
}
.desktop-text-wrap {
  display: block;
}
.block-cnt {
  margin-top: 40px;
}
.section-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  color: var(--text-color);
}
.section-big-title {
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  text-align: center;
  color: var(--text-color);
}

.section-sub-title {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.section-tag {
  gap: 6px;
}
strong {
  font-weight: 600;
}
.section-titles {
  gap: 12px;
  margin-bottom: 32px;
}
.section-tag i {
  font-size: 13px;
  background: var(--accent-color);
  margin-top: -2px;
}
.section-tag span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);
}

.section-big-tiitle {
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  text-align: center;
  color: var(--text-color);
}
.section {
  margin-top: 160px;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: initial;
  gap: 8px;
  margin-top: 20px ;

}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  margin: 0!important;
  border-radius: 50%;
  background: var(--slide-border);
}

.swiper-pagination-bullet-active {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: var(--accent-color);

}



.swiper-button-next, .swiper-button-prev {
  width: 44px;
  height: 44px;
  color: var(--bg-color2);
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 12px;
}
.swiper-button-next:after{
}
.swiper-button-prev:after{
  margin-left: -3px;

}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.D-block{
  display: block;
}

.circle-cat{
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background: var(--border2);
}

.btn-black {
  gap: 6px;
  padding: 12px 20px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  border-radius: 6px;
  color: var(--main-container5);
  background: var(--text-color);
  transition: 0.3s;
  width: max-content;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-black i {
  background: var(--main-container5);
  font-size: 24px;
}
.btn-black:hover {
  background: var(--accent-color);
}

.btn-start {
  color: var(--text-color2);
  background: var(--accent-color);
  padding: 12px 18px;
  height: 48px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  gap: 15px;
  transition: 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-start:hover {
  background: var(--text-color);
}
.btn-start i {
  font-size: 24px;
  background: var(--text-color2);
  margin-top: -1px;
}





.btn-prompt {
  background: unset;
  border: 1px solid var(--border);
  gap: 6px;
  border-radius: 6px;
  font-weight: 600;
  padding: 13px 20px;
  font-size: 18px;
  line-height: 20px;
  color: var(--text-color);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-prompt:hover{
  background: var(--text-color);
  color: var(--main-container3);
}




.bread-crumbs ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.bread-crumbs ul li{
  position: relative;
}
.bread-crumbs ul li a {
  color: var(--text-color);
  opacity: 0.6;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.bread-crumbs ul li + li{
  padding-left: 14px;
}
.bread-crumbs ul li + li:before {
  content: "/";
  position: absolute;
  left: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);
  opacity: 0.6;
}
.bread-crumbs ul li a.active {
  opacity: 1;
}

.fisrt-section-titles h1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  text-align: center;
  color: var(--text-color);
  margin-top: 28px;
}
.fisrt-section-titles p {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  max-width: 436px;
  margin: 12px auto 0;
}


.prompts-cat-btn {
  padding: 7px 14px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  border-radius: 4px;
  color: var(--main-container5);
  background: var(--text-color);
  transition: 0.3s;
  width: max-content;
  white-space: nowrap;
}
.template-description-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
  left: 0;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: #00000066;
  padding: 50px 14px;
}
.template-description-modal.active {
  opacity: 1;
  visibility: visible;
}

.see-more{
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--border3);
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.see-more:hover{
  color: var(--text-color);
}
.see-more .icon-plus{
  font-size: 24px;
  background: var(--accent-color);
}
.see-more:hover .icon-plus{
  background: var(--text-color);
}
.read-more{
  background: var(--slider-thumb);
  border: 2px solid var(--border);
  gap: 6px;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.read-more:hover{
  background: var(--text-color);
  color: var(--main-container3);
}



.mobile-block {
  display: none;
}









.posst-name{
  width: max-content;
  padding: 5px 12px 5px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: block;
}

.bg-orange{
  background: #FC7D281A;
  color: #FC7D28;
}
.bg-blue{
  background: #5489F01A;
  color: #5489F0;
}

.bg-emerald{
  background: #1A96A41A;
  color: #1A96A4;
}
.bg-pink{
  color: #EA4C6D;
  background: #EA4C6D1A;
}
.bg-pinky{
  color: #EE259D;
  background: #EE259D1A;
}
.bg-green{
  color: #1AA47C;
  background: #1AA47C1A;
}
.bg-violet{
  color: #8A6BEC;
  background: #8A6BEC1A;
}
.bg-LBlue{
  color: #28BCFC;
  background: #28BCFC1A;
}
.bg-hodRed{
  color: #FC3A28;
  background: #FC3A281A;
}




.background-blue{
  background: #5489F01A;
  border: 1px solid #5489F01A;
}

.background-blue i{
  background: #5489F0;
}

.background-green{
  background: #1AA47C1A;
  border: 1px solid #1AA47C1A;
}

.background-green i{
  background: #1AA47C;
}


.background-violet{
  background: #8A6BEC1A;
  border: 1px solid #8A6BEC1A;
}

.background-violet i{
  background: #8A6BEC;
}

.background-pinky{
  background: #EA4C6D1A;
  border: 1px solid #EA4C6D1A;
}

.background-pinky i{
  background: #EA4C6D;
}



.background-orange{
  background: #FC7D281A;
  border: 1px solid #FC7D281A;
}

.background-orange i{
  background: #FC7D28;
}


.background-lime{
  background: #72D3361A;
  border: 1px solid #72D3361A;
}

.background-lime i{
  background: #72D336;
}


.background-LBlue{
  background: #28BCFC1A;
  border: 1px solid #28BCFC1A;
}

.background-LBlue i{
  background: #28BCFC;
}


.possibilit-circle{
  min-width: 24px;
  width: 24px;
  height: 24px;
  gap: 3.43px;
}
.circle-ball{
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: flex;
  background: var(--slider-ring);
}
.ball-primary{
  background: var(--accent-color);
}

.padding-blocs{
  padding: 70px 0;
}

.use-circle{
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  width: 24px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: var(--accent-color);
  background: var(--primary-cont);
  backdrop-filter: blur(8px);
}


@media (max-width: 1200px){
  h3 {
    font-size: 22px;
    line-height: 24px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .padding-blocs {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
    line-height: 36px;
  }
  .section-big-title {
    font-size: 36px;
    line-height: 40px;
  }
}

@media (max-width: 1020px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-titles {
    max-width: 500px;
  }

  .section-big-title {
    font-size: 38px;
    line-height: 42px;
  }

}

@media (max-width: 768px) {
  /*.mobile-block {*/
  /*  display: flex;*/
  /*}*/
  .section-title {
    font-size: 30px;
    line-height: 35px;
  }

  .bread-crumbs ul li a {
    font-size: 12px;
    line-height: 14px;
  }
  .bread-crumbs ul li span {
    font-size: 12px;
    line-height: 14px;
  }
}


@media (max-width: 576px) {

  .section-titles {
    gap: 8px;
    margin-bottom: 24px;
  }
  .section-title {
    font-size: 26px;
    line-height: 30px;
  }
  h3 {
    font-size: 20px;
  }

  .section-big-title {
    font-size: 26px;
    line-height: 30px;
  }

  .img-desktop {
    display: none;
  }
  .img-mobile {
    display: block;
  }

  .section {
    margin-top: 100px;
  }
  .section-padding {
    padding: 50px 0;
  }
  .desktop-text-wrap {
    display: unset;
  }
  .compare-col--accent {

    width: 176px;
  }
  .reviews-btn {
    margin-top: 24px;
    gap: 12px;
    flex-direction: column;
  }
  .reviews-btn .btn-prompt{
    max-width: 260px;
    width: 100%;
  }
  .reviews-btn .btn-start{
    max-width: 260px;
    width: 100%;
  }
  .reviews-vpn {
    margin-top: 16px;
  }

  .block-cnt {
    margin-top: 24px;
  }

  .desktop-block{
    display: unset;
  }
  .hero-bg {
    height: 87%;
  }
  .btn-start {
    font-size: 16px;
    line-height: 22px;
  }

  .padding-blocs {
    padding: 50px 0;
  }

  .bread-crumbs ul {
    gap: 6px;
    flex-wrap: wrap;
  }
  .bread-crumbs ul li a {
    font-size: 12px;
    line-height: 14px;
  }
  .payment-main {
    padding-top: 82px;
  }
  .bread-crumbs ul li span {
    font-size: 12px;
    line-height: 14px;
  }
}




/*==============-global-style-end-================*/


/*==============-hero-style-end-================*/


.hero-titles {
  max-width: 743px;
  width: 100%;
  margin: 0 auto;
}
.hero-titles h1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  text-align: center;
  color: var(--text-color);
  margin-top: 11px;
}
.hero-titles p {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin-top: 12px;
}

.hero-titles .btn-start{
  margin: 24px 0;
}

.hero-titles small{
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: var(--border2);
}
.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}
.hero-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-tumbler{
  background-image: url("../images/tumbler-blue.png");
  width: 68px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-bottom: -5px;
}

.hero-ellipse {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.hero-ellipse img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}



@media (max-width: 1599px) {
  .hero-bg {
    height: auto;
  }

}

@media (max-width: 1220px){
  .hero-bg {
    height: 100%;
  }
}

@media (max-width: 1199px) {

  .hero-titles h1 {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {


  .hero-titles h1 {
    font-size: 30px;
    line-height: 34px;
    margin-top: 0;
  }
  .hero-titles h1 span {
    justify-content: center;
  }
  .hero-titles p {
    font-size: 16px;
    line-height: 20px;
    margin-top: 12px;
  }
  .hero-bg {
    height: 100%;
  }
  .hero-section:before{
    content: "";
    position: absolute;
    left: 0;
    top: 150px;
    background-image: url("../images/icon-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 92px;
    height: 232px;
  }
  .hero-ellipse {
    bottom: -20px;
  }
  .img-desktop{
    display: none;
  }
  .img-mobile {
    display: block;
  }
}

@media (max-width: 576px) {


  .hero-titles {
    max-width: 340px;
  }


  .hero-ellipse {
    bottom: 100px;
  }
  .hero-titles p {
    max-width: 300px;
  }
  .hero-bg {
    height: 956px;
  }

  .hero-section:before {
    top: 92px;
  }
  .hero-bg img {
    object-position: bottom;
  }
}




/*==============-hero-style-end-================*/













/*================-compare-style-start-====================*/





.compare-section {
  position: relative;
  z-index: 3;
  background: #161616;
  padding: 40px 0 180px 0;
}
.compare-body .section-title {
  color: #ffffff;
}
.compare-body .section-tag span {
  color: #ffffff;
}
.compare-body .section-sub-title {
  color: #ffffff;
  opacity: 0.8;
}
.compare-columns {
  position: relative;
}
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  background: #161616;
  overflow: hidden;
}
.compare-col {
  position: relative;
  min-width: 0;
}
.compare-col--accent {
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  z-index: 2;
}
.compare-head {
  height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #00000066;
}
.compare-head-title {
  color: #ffffff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
.compare-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.compare-chip--blue {
  background: var(--accent-color);
  color: var(--text-color2);
}
.compare-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-row:nth-child(4){
  min-height: 91px;
}
.compare-row .icon-check {
  font-size: 24px;
  background: #11c521;
}
.compare-row .icon-bad {
  font-size: 24px;
  background: #f24d4d;
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-name-mob{
  display: none;
}
.compare-label,
.compare-text {
  color: #f2f2f3;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.compare-col--accent .compare-text {
  font-weight: 600;
}
.compare-label img {
  position: relative;
  top: 4px;
}
.compare-label  b{
  font-weight: 500;

}


.compare-tabs-mobile {
  margin-top: 20px;
  gap: 8px;
  justify-content: center;
  overflow: auto;
  display: none;
}
.compare-tabs-mobile button {
  padding: 8px 12px;
  border: 1px solid #ffffff1a;
  background: #161616;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  border-radius: 4px;
  transition: 0.3s;
  min-width: max-content;
}
.compare-tabs-mobile button.active {
  background: #ffffff;
  color: #161616;
}





.compare-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  height: 100px;
}
.compare-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}



.compare-body .btn-start{
  margin-top: 28px;
}






@media (max-width: 1020px) {
  .compare-label, .compare-text {
    font-size: 14px;
    line-height: 18px;
  }


}


@media (max-width: 767px) {

  .compare-head {
    display: none;
  }
  .compare-tabs-mobile {
    display: flex;
  }
  .compare-table {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .compare-col {
    min-width: unset;
    width: 100%;
  }
  .compare-col--other {
    display: none;
    border-radius: 12px 0 0 12px;
    border-top: 1px solid #FFFFFF1A;
    border-bottom: 1px solid #FFFFFF1A;
    border-left: 1px solid #FFFFFF1A;
  }

  .compare-table.show-other .compare-col--accent {
    display: none;
  }
  .compare-table.show-other .compare-col--other {
    display: block;
  }
  .compare-label img {
    width: 16px;
    height: 16px;
  }


  .compare-label,
  .compare-text {
    font-size: 14px;
    line-height: 18px;
  }
  .compare-col--accent .compare-text {
    white-space: nowrap;
  }
  .compare-row .icon-check {
    flex: 0 0 12px;
    font-size: 12px;
  }
  .compare-row {
    min-height: 78px;
    padding: 0 14px 0 16px;
  }

  .section-sub-title {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
  .compare-body .section-titles {
    gap: 8px;
    max-width: 375px;
    margin: 0 auto;
  }

  .compare-bg {
    left: 0;
    bottom: -2px;
    width: 100%;
    z-index: -1;
    height: auto;
  }
  .compare-section {
    padding: 40px 0 100px 0;
  }
}


@media (max-width: 576px){

  .compare-col--accent {
    width: 160px;
  }
  .compare-name-desc{
    display: none;
  }
  .compare-name-mob{
    display: block;
  }



}


/*================-compare-style-end-====================*/







/*================-faq-style-start-====================*/


.faq-section{
  position: relative;
}
.faq-section .hero-ellipse{
  bottom: auto;
  top: -100px;
}






.faq-section.section .often-asks-item{
  min-height: 88px;
}


.faq-columns {
  gap: 10px;
  display: flex;
}
.faq-column {
  max-width: 575px;
  width: 100%;
  gap: 10px;
}

.often-asks-item {
  position: relative;
  min-height: 64px;

  background: var(--bg-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  border: 1px solid var(--border);
}
.often-asks-item:hover .asks-list-icon i {
  background: var(--accent-color);
}
.asks-item-header {
  cursor: pointer;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 16px 16px 20px;

}
.asks-list-icon {
  transition: 0.3s;
}
.asks-list-icon i {
  font-size: 24px;
  background: var(--bg-color2);
  transition: 0.3s;
}
.asks-item-header.open .asks-list-icon i {
  transform: rotate(45deg);
}

.asks-item-header p {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
  max-width: 480px;
  width: 100%;
}
.asks-list-sub {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color3);
  padding: 0 16px 16px 20px;

}
.submenu {
  display: none;
}



@media (max-width: 1020px){
  .faq-section .hero-ellipse {
    bottom: auto;
    top: -58px;
  }
  .faq-columns {
    flex-direction: column;
  }
  .faq-column {
    max-width: 100%;
  }
}
@media (max-width: 767px){
  .faq-columns {
    flex-direction: column;
  }
  .faq-section.section .often-asks-item{
    min-height: auto;
  }
}
@media (max-width: 576px) {
  .asks-list-sub {
    font-size: 14px;
    line-height: 18px;
    padding: 0 12px 10px 14px;
  }
  .asks-item-header p {
    font-size: 16px;
    line-height: 20px;
  }

  .asks-list-icon i {
    font-size: 20px;
  }
  .often-asks-item {
    min-height: 52px;
    border-radius: 6px;
  }
  .asks-item-header{
    padding: 10px 12px 10px 14px;

  }
  .faq-section {
    margin-top: 120px;
  }
  .faq-section .hero-ellipse {
    bottom: auto;
    top: -80px;
    display: flex;
  }
  .faq-section .hero-ellipse img{
    height: 60px;

  }
  .faq-section {
    position: relative;
    margin-top: 40px;
    padding-top: 0;
  }
}
/*================-faq-style-end-====================*/








.title-blocs{
  margin-bottom: 32px;
}
.title-blocs p{
  margin-top: 12px;
}


@media (max-width: 1020px){
  .title-blocs {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px){
  .title-blocs h2{
    text-align: left;
  }
  .title-blocs h3{
    text-align: left;
  }
  .title-blocs{
    max-width: 450px;
    width: 100%;
  }
}
@media (max-width: 576px){
  .title-blocs p {
    margin-top: 8px;
  }





}















































.life-examples{
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 80px;
}
.life-examples .section-title {
  max-width: 500px;
  width: 100%;
}
.life-examples .hero-ellipse{
  bottom: auto;
  top: -100px;
}
.life-examples-rel{
  position: relative;
  margin-top: 40px;
}
.life-examples-box{
  gap: 10px;
  border-radius: 12px;
  width: 100%;
  border: 1px solid var(--border);
}
.life-examples-photo{
  width: 100%;
  max-width: 380px;
  position: relative;
}
.life-examples-photo>img{
  width: 100%;
  border-radius: 12px;
}
.life-examples-rez{
  padding: 20px;
  background: var(--bg-color);
  border-radius: 12px;
  border: 1px dashed var(--border3);
  position: absolute;
  left: 50%;
  max-width: 345px;
  width: 100%;
  bottom: -15px;
  transform: rotate(-6deg) translateX(-50%);
}
.life-examples-rez span {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--border2);
}
.life-examples-rez ul{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.life-examples-rez ul li{
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
.life-examples-slider .swiper-wrapper{
  flex-direction: column;
  gap: 80px;
}
.life-examples-rel .examples-pagination{
  display: none;
}
.life-examples-slider .swiper-slide:nth-child(2) .life-examples-box{
  flex-direction: row-reverse;
}
.life-examples-slider .swiper-slide:nth-child(2) .life-examples-rez{
  transform: rotate(6deg) translateX(-50%);
  bottom: -39px;
}
.life-examples-slider{
  padding-bottom: 54px;
}
.life-examples-info{
  padding: 32px;
  max-width: 770px;
  width: 100%;
}
.life-examples-name{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  width: 100%;
}
.life-examples-name h1{
  text-align: left;
}
.life-examples-name h3{
  margin-bottom: 10px;
}

.life-examples-name p{
  color: var(--text-color);
}
.life-examples-start{
  margin-top: 32px;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.life-examples-text{
  max-width: 343px;
  width: 100%;
}
.life-examples-text span{
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--border2);
}
.life-examples-text ul{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.life-examples-text ul li{
  color: var(--text-color);
}
.life-examples-info .slidy-turns-wrap {
  margin-top: 32px;
}










.slidy-turns-name{
  width: max-content;
  height: 36px;
  padding: 8px 16px;
  gap: 8px;
  border-radius: 100px;
  background: var(--bg-box-color);
}
.icon-astxik{
  background-color: var(--border3);
  width: 16px;
  height: 16px;
}
.slidy-turns-name p{
  color: var(--main-container3);
}
.slidy-turns-wrap{
  margin-top: 24px;
  gap: 8px;
  max-width: 440px;
  width: 100%;
}
.smart-temp-text p{
  margin-top: 8px;
}






html[data-theme="dark"] .pointsDark-title{
  background-image: url("../images/pointsDark.webp");
}
.pointsDark-title{
  background-image: url("../images/points.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.linking-card{
  position: relative;
  background: #161616;
  margin-top: 100px;
}
.linking-card-info{
  position: absolute;
  left: 0;
  width: 100%;
  top: 10px;
  z-index: 3;
}
.linking-card-info .btn-black{
  background: #FFFFFF;
  color: #161616;
}
.linking-card-info .btn-black i {
  background: #161616;
}
.linking-card-info .btn-black:hover{
  background: var(--accent-color);
}


.linking-card-bg {
  position: relative;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
}
.linking-card-bg img{
  width: 100%;
  height: 100%;
}

.linking-card .section-tag span {
  color: #FFFFFF;
}
.linking-card .section-big-title i{
  margin-bottom: -6px;
}
.linking-card .section-titles {
  position: relative;
  z-index: 3;
}

.btn-black .icon-arrow{
  font-size: 14px;
  margin-right: 2px;
}






















/*=================-possibilities-style-===================*/




.possibilities-section {
  position: relative;
  z-index: 3;
  background: #161616;
  padding: 0 0 240px 0;
  margin-top: 140px;
}
.possibilities-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.possibilities-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.possibilities-body {
  position: relative;
}
.possibilities-decor {
  position: absolute;
}
.possibilities-decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.possibilities-decor--one {
  max-width: 440px;
  width: 100%;
  position: absolute;
  left: -100px;
  top: 142px;
}
.possibilities-decor--two {
  max-width: 440px;
  width: 100%;
  position: absolute;
  right: -60px;
  top: -80px;
}
.possibilities-decor--tree {
  max-width: 300px;
  width: 100%;
  position: absolute;
  right: -120px;
  top: 192px;
}
.possibilities-body .section-title {
  color: #ffffff;
}
.possibilities-body .section-tag span {
  color: #ffffff;
}
.possibilities-body .section-sub-title {
  color: #ffffff;
  opacity: 0.8;
}
.possibilities-tabs {
  margin-top: 28px;
  gap: 10px;
  justify-content: center;
  overflow: auto;
}

.possibilities-tabs button {
  padding: 10px 16px;
  border: #ffffff1a;
  background: #161616;

  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border-radius: 6px;
  transition: 0.3s;
  min-width: max-content;
}
.possibilities-tabs button.active {
  background: #ffffff;
  color: #161616;
}
.possibilities-tabs button:hover {
  background: #ffffff;
  color: #161616;
}
.possibilities-tabs::-webkit-scrollbar {
  display: none;
}

.possibilities-columns {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.possibilities-column {
  max-width: 575px;
  width: 100%;
  gap: 10px;
}
.possibilities-mob-order{
  display: none;
}
.possibilities-big-item {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 280px;
  overflow: hidden;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.possibilities-item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.possibilities-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.possibilities-item-titles {
  margin-top: auto;
}
.possibilities-item-titles p {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: var(--text-color);
}
.possibilities-item-titles span {
  color: var(--text-color3);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-top: 8px;
  display: block;
}

.possibilities-small-item {
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 380px;
  overflow: hidden;
  padding: 24px;
  max-width: 380px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.possibilities-left-item {
  margin-left: auto;
}
.possibilities-right-item {
  margin-right: auto;
}
.possibilities-right-item .possibilities-item-titles p {
  color: var(--main-container3);
}
.possibilities-right-item .possibilities-item-titles span {
  color: var(--main-container3);
}
.possibilities-left-item .possibilities-item-titles p {
  color: white;
}
.possibilities-left-item .possibilities-item-titles span {
  color: white;
  opacity: 0.6;
}
.possibilities-ellipse {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.possibilities-ellipse img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-width: max-content;
}
.possibilities-column {
  display: none;
}
.possibilities-column.show {
  display: flex;
}
.possibilities-btn {
  margin: 24px auto 0;
}





.loss-quality{
  background: #161616;
  padding-bottom: 20px;
  padding-top: 40px;
  position: relative;
  margin-top: 80px;
}
.loss-quality .possibilities-item-titles p {
  color: #FFFFFF;
}
.loss-quality-hidden{
  overflow: hidden;
}


.loss-quality .possibilities-big-item {
  border: unset;
}

.loss-quality .possibilities-item-bg img {
  object-fit: unset;
  object-position: unset;
}

.quick-helpful-col{
  gap: 48px;
  margin-top: 40px;

}

.loss-quality .possibilities-column{
  display: flex;
}
.possibilities-item-titles ul{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.possibilities-item-titles ul li{
  color: #FFFFFF;
}












.count-turns{
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--border2);
}
.count-turns span{
  color: var(--border3);
}






.power-btn{
  margin-top: 32px;
  gap: 12px;
}
.power-btn .areas-btn {
  width: max-content;
}
.power-btn .btn-start i {
  font-size: 12px;
}
.power-btn .btn-login{
  display: flex;
  align-items: center;
  justify-content: center;
}




.linking-card-names{
  margin-top: 16px;
}
.linking-card-names ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.linking-card-names ul li{
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  background: var(--slider-thumb);
  width: max-content;
  padding: 10px 16px 10px 12px;
  gap: 8px;
  border-radius: 100px;
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  align-items: center;
}
.linking-card-names-dark ul li{
  border: 1px solid #FFFFFF1A;
  background: #00000066;
  color:#FFFFFF;

}
.linking-card .section-big-title{
  color: #FFFFFF;
}

.linking-card .section-sub-title{
  color: #fafdffb2;
}





.power-bg{
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}
.power-bg img{
  width: 100%;
  height: 100%;
}
.power-bg-mobile{
  display: none;
}
.power-info{
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
}

.power-cnt{
  position: relative;
  z-index: 2;
}
.power-cnt .fisrt-section-titles i {
  margin-bottom: -4px;

}
.power-cnt .fisrt-section-titles p {
  max-width: 606px;
  width: 100%;
}

.contract-padd{
  padding: 80px 0;
}



.often-asks-item {
  position: relative;
  min-height: 64px;

  background: var(--bg-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  border: 1px solid var(--border);
}
.often-asks-item:hover .asks-list-icon i {
  background: var(--accent-color);
}
.asks-item-header {
  cursor: pointer;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 16px 16px 20px;

}
.asks-list-icon {
  transition: 0.3s;
}
.asks-list-icon i {
  font-size: 24px;
  background: var(--bg-color2);
  transition: 0.3s;
}
.asks-item-header.open .asks-list-icon i {
  transform: rotate(45deg);
}

.asks-item-header p {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
  max-width: 480px;
  width: 100%;
}
.asks-list-sub {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color3);
  padding: 0 16px 16px 20px;

}
.submenu {
  display: none;
}






















.edits-item-circle {
  width: 100%;
  max-width: 148px;
  min-height: 148px;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 2;
  transition: 0.3s;
  background: var(--bg-color3);
}

.edits-circle-text-svg {
  position: absolute;
  max-width: 285px;
  width: 105%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.circle-text-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  animation: rotateCircleText 14s linear infinite;
  transform-origin: center;
}

.circle-text {
  fill: var(--text-color);
  font-size: 24px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 2px;
}

.circle-star {
  fill: var(--accent-color);
}

.edits-circle-inside-line {
  max-width: 88px;
  width: 100%;
  position: absolute;
  min-height: 88px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: 0.3s;
  background: var(--bg-color);
}

.edits-circle-arrow-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-color);
  transition: 0.3s;
}

.edits-circle-arrow-icon i {
  font-size: 12px;
  background: var(--text-color2);
}

.edits-item-circle:hover {
  background: var(--text-color);
}

.edits-item-circle:hover .circle-text {
  fill: var(--bg-color);
}

.edits-item-circle:hover .circle-star {
  fill: var(--accent-color);
}

.edits-item-circle:hover .edits-circle-arrow-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

@keyframes rotateCircleText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}









.small-title{
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--border2);
}



.trust-btn {
  margin: 28px auto 0;
}



.btn-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-container6);
  border: 1px solid var(--border);
  gap: 7px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--bg-box-color);
  padding: 12px 24px;
  border-radius: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.btn-arrow .icon{
  width: 14px;
  height: 14px;
  background-color: var(--bg-box-color);
  transition: 0.3s;

}
.btn-arrow .download-box{
  background-color: var(--bg-box-color);
  width: 24px;
  height: 24px;
}
.btn-arrow:hover{
  background: var(--text-color);
  color: var(--main-container3);
}
.btn-arrow:hover i{
  background-color: var(--main-container3);
}














.catalog-item-link {
  height: 32px;
  border-radius: 4px;
  background: var(--bg-color);
  flex: 0 0 32px;
  margin-left: auto;
  width: 32px;
}
.catalog-item-link i {
  background: var(--text-color);
  font-size: 11px;
}








/*===============--select-style==================*/

.c-select-header {
  padding: 12px 16px;
  border-radius: 5px;
  background: var(--bg-color);
  border: 1px solid var(--border);
  gap: 14px;
  cursor: pointer;
  width: 100%;
  margin-left: auto;
  max-width: max-content;
  transition: 0.3s;
}
.c-select-header:hover p {
  color: var(--accent-color);
}
.c-select-header:hover i {
  background: var(--accent-color);
}
.c-select-header p {
  font-weight: 500;
  color: var(--text-color);
  transition: 0.3s;
}
.c-select-header i {
  font-size: 10px;
  background: var(--text-color);
  transition: 0.3s;
  transform: rotate(180deg);
}

.c-select-options {
  position: absolute;
  right: 0;
  min-width: 252px;
  width: 252px;
  background: var(--bg-color);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  top: 44px;
  transition: 0.3s;
}
.c-select-options li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 8px 12px;
  border: 1px solid transparent;
  transition: 0.3s;
  border-radius: 4px;
  cursor: pointer;
}
.c-select-options li span {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
  display: block;
}
.c-select-options li i {
  font-size: 14px;
  background: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.c-select-options li.active i {
  opacity: 1;
  visibility: visible;
}
.c-select-options li.active {
  border: 1px solid var(--accent-color);
}
.c-select-options li:hover {
  border: 1px solid var(--accent-color);
}
.c-categories-select.active .c-select-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: 54px;
}
.c-categories-select.active .c-select-header i {
  transform: rotate(0deg);
}
.c-selected-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.c-selected-categories button,
.c-selected-categories a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 6px 6px 12px;
  border-radius: 100px;
  background: var(--primary-cont);
  transition: 0.3s;
}
.c-selected-categories button span,
.c-selected-categories a span {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--accent-color);
}
.c-selected-categories button i,
.c-selected-categories a i {
  font-size: 16px;
  background: var(--accent-color);
}
.c-selected-categories button:hover,
.c-selected-categories a:hover {
  background: var(--main-container6);
}




.c-categories-select {
  position: relative;
  max-width: 252px;
  width: 100%;
  z-index: 4;
}
.sort-select{
  gap: 12px;
}


















.c-filter-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);
}
.catalog-check-col {
  margin-top: 8px;
  gap: 2px;
  display: flex;
  flex-direction: column;
}
.checkbox-chek, .checkbox-radio{
  padding: 6px 12px 6px 32px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: start;
  gap: 7px;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}

.checkbox-chek small {
  color: var(--text-color6);
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.checkbox-chek:hover {
  background: var(--main-container6);
}


.checkbox-chek input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
}

.checkmark {
  position: absolute;
  top: 7.5px;
  left: 7.5px;
  height: 17px;
  width: 17px;
  border: 1px solid var(--text-color5);
  transition: 0.3s;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.checkbox-chek:hover .checkmark  {
  border: 1px solid var(--text-color);
}
.checkbox-chek:hover small {
  color: var(--text-color);
}

.checkbox-chek .checkmark i{
  background: var(--bg-color);
  font-size: 13px;
  display: none;
}
.checkbox-chek input:checked ~ .checkmark i {
  display: block;
}

.checkbox-chek input:checked ~ .checkmark {
  background: var(--accent-color);
  border: 1px solid transparent;
}

.checkbox-chek input:checked ~ .checkmark small {
  color: var(--text-color);
}




.radiobtn {
  position: absolute;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  top: 7px;
  left: 7.5px;
  border: 1px solid var(--text-color5);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
}
.checkbox-chek .radiobtn i{
  background: var(--bg-color);
  font-size: 12px;
  display: none;
}

.checkbox-chek input:checked ~ .radiobtn {
  background: var(--accent-color);
  border: 1px solid transparent;
}
.checkbox-chek input:checked ~ .radiobtn i{
  display: block;
}







.border-style{
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--slider-thumb);

}

.form-input{
  width: 100%;
}
.form-input small{
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color5);
}
.form-input label{
  display: flex;
  width: 100%;
}
.form-input input, .form-input textarea{
  width: 100%;
  height: 46px;
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color6);
  background: var(--bg-color);
  border: 1px solid var(--border);
  transition: border-color 0.2s;

}

.form-input textarea{
  height: 152px;
  resize: none;
}


.form-input input.invalid,
.form-input textarea.invalid {
  border-color: red !important;
}

.checkbox-chek input.invalid + .checkmark {
  border-color: red !important;
}









.catalog-btn {
  height: 46px;
  gap: 6px;
  padding: 11px 20px;
}







.catalog-search-block {
  gap: 10px;
}
.catalog-search-block label {
  position: relative;
  max-width: 1055px;
  width: 100%;
  height: 48px;
}
.catalog-search-block label input {
  background: var(--main-container6);
  border: 1px solid var(--border);
  width: 100%;
  height: 100%;
  padding: 12px 16px 12px 52px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color6);
  transition: 0.3s;
}
.catalog-search-block label input:focus {
  border: 1px solid var(--accent-color);
}
.catalog-search-block label i {
  font-size: 24px;
  background: var(--text-color);
  position: absolute;
  top: 11px;
  left: 16px;
}




















.catalog-pagination {
  gap: 25px;
  margin-top: 28px;
}
.catalog-pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog-pagination ul li a {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: var(--text-color6);
  transition: 0.3s;
}
.catalog-pagination ul li a.active {
  background: var(--bg-color2);
  color: var(--bg-color);
}
.catalog-pagination ul li a:hover {
  background: var(--main-container6);
  color: var(--accent-color);
}
.catalog-pagination ul li a i {
  font-size: 10px;
  background: var(--text-color6);
  transition: 0.3s;
}
.catalog-pagination ul li a:hover i {
  background: var(--accent-color);
}
.catalog-pagination .icon-arrow-down {
  font-size: 14px;
  background: var(--bg-color2);
  flex: 0 0 14px;
  transition: 0.3s;
}
.catalog-pagination .icon-arrow-down:hover {
  background: var(--accent-color);
}
.c-pagination-prev {
  transform: rotate(-90deg);
  cursor: pointer;
}
.c-pagination-next {
  transform: rotate(90deg);
  cursor: pointer;
}
.catalog-pagination .icon-arrow-down.disabled {
  background: var(--text-color5);
}


.catalog-filters-line {
  margin: 20px 0;
  height: 1px;
  background: var(--border);
}





.templates-count {
  gap: 8px;
}
.templates-count span {
  color: var(--text-color);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}
.templates-count p {
  font-weight: 500;
}
















.catalog-filters-main{
  max-width: 284px;
  width: 100%;
  display: none;
}
.touchstart-open{
  display: block;
}
.catalog-filters-wrapper {
  max-width: 284px;
  width: 100%;
  padding: 16px 8px 16px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;

  box-sizing: border-box;
  position: sticky;
  top: 80px;

}
.catalog-filters-items{
  max-height: calc(100vh - 2.2rem);
  overflow-y: auto;
  padding-right: 8px;
}
.catalog-filters-items .btn-prompt{
  width: 100%;
  margin-top: 8px;
}
.catalog-filters-items .filter-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.catalog-filters-items::-webkit-scrollbar {
  width: 4px;
}

.catalog-filters-items::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px 0;
}

.catalog-filters-items::-webkit-scrollbar-thumb {
  background: var(--text-color2);
  border-radius: 100px;
}

.catalog-filters-items::-webkit-scrollbar-corner {
  background: transparent;
}


.filters-head{
  display: none;
}



.catalog-main-cnt {
  margin-top: 32px;
  display: flex;
  gap: 10px;
}






.catalog-items-wrapper {
  width: 100%;
}


.reset-all {
  padding: 12px;
  width: 100%;
  background: var(--main-container6);
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-top: 20px;
  border-radius: 6px;
  transition: 0.3s;
}
.reset-all:hover {
  background: var(--accent-color);
  color: var(--bg-color);
}







.levle-beginner{
  gap: 12px;
  margin-top: 20px;
}
.levle-beginner span{
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--border2);
}





.primary-name{
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  display: block;
  margin-bottom: 8px;
  color: var(--accent-color);
}








.year-section-flex{
  gap: 10px;
}

.return-provided{
  background: var(--main-container6);
}

.areas-btn {
  width: 100%;
  justify-content: center;
}





.topic-here{
  width: max-content;
  height: 34px;
  border-radius: 200px;
  padding: 8px 12px;
  gap: 6px;
  border: 1px solid var(--border);
  background: var(--main-container6);
}
.topic-here-circle{
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #11C521;

}
.topic-here p{
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
  margin: 0;

}
.topic-here strong{
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);

}





.circle-cat {
  width: 3px;
  height: 3px;
}














.current-point-blog{
  margin-top: 8px;
  gap: 12px;
}
.current-point-blog p{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 18px;
}
.current-point-blog img{
  width: 16px;
  height: 16px;
}















.linking-card-main{
  padding: 40px 0 176px;
  position: relative;
}
.linking-card-main .container{
  position: relative;
  z-index: 2;
}

.linking-guide{
  margin-top: 40px;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}
.linking-guide:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--accent-color);
  border-left: 1px solid var(--accent-color);

}
.linking-guide:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.linking-guide-line{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.linking-guide-line:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid var(--accent-color);
  border-left: 1px solid var(--accent-color);
}
.linking-guide-line:after{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-bottom: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.linking-guide-name {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 28px;
  max-width: 282px;
  width: 100%;
}
.linking-guide-name + .linking-guide-name{
  border-left: 1px solid #FFFFFF1A;
}
.linking-guide-name strong{
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -6%;
  color: #FFFFFF;
}
.linking-guide-name p{
  margin-top: 12px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.linking-card-title{
  gap: 12px;
}
.linking-card-title .section-tag span{
  color: #FFFFFF;
}
.linking-card-title .section-big-title {
  color: #FFFFFF;
}
.linking-card-title .section-sub-title {
  color: #FFFFFF;
  opacity: 0.80;
}


















.icon-wheel{
  background-color: var(--accent-color);
}
.icon-copy {
  background-color: var(--bg-color2);
  transition: 0.3s;
}











.advanced-title-img {
  gap: 8px;
  margin-top: 4px;
}


















.catalog-items-header {
  margin-top: 24px;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}







.catalog-items {
  margin-top: 16px;
  display: grid;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.catalog-item {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 10px;
}
.c-item-hover {
  background: #00000033;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-item-hover p {
  margin: 55px auto 0;
  padding: 10px 16px;
  max-width: max-content;
  background: var(--bg-color);
  color: var(--text-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  border-radius: 6px;
}

.catalog-item-hints {
  position: absolute;
  top: 12px;
  left: 12px;
  gap: 8px;
  flex-wrap: wrap;
  width: 93%;
  transition: 0.5s;
}

.catalog-item-status {
  padding: 7px 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  border-radius: 4px;
  color: #ffffff;
}
.catalog-item-status.hit {
  background: #9747ff;
}
.catalog-item-status.new {
  background: #ff47c0;
}
.catalog-item:hover .catalog-item-hints {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.catalog-item:hover .c-item-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.catalog-item-time {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-color);
  gap: 4px;
}

.catalog-item-time p {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: var(--text-color);
}

.catalog-item-img {
  width: 100%;
  height: 160px;
}
.catalog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.catalog-item-description {
  padding: 16px;
  background: var(--bg-color);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-top: -12px;
  position: relative;
  z-index: 2;
}

.catalog-item-name {
  font-weight: 600;
  color: var(--text-color);
}
.catalog-item-categories {
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.catalog-item-categories p {
  color: var(--text-color6);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.catalog-item-categories span {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  display: block;
  background: var(--text-color6);
}
.catalog-item-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.catalog-item-rate {
  gap: 3px;
}
.catalog-item-rate img {
  display: flex;
  margin-top: -2px;
}
.catalog-item-rate p {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-color5);
}
.c-item-created-time {
  gap: 2px;
}
.c-item-created-time p {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-color5);
}
.c-item-created-time i {
  font-size: 16px;
  background: var(--text-color5);
}

.catalog-item-checked {
  gap: 2px;
}
.catalog-item-checked p {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-color5);
}
.catalog-item-checked i {
  background: var(--text-color5);
}








.power-faq{
  padding-bottom: 180px;
}





@media (max-width: 1700px) {
  .hero-ellipse {
    bottom: -60px;
  }
}



@media (max-width: 1360px){

  .life-examples-info {
    padding: 20px;
  }
  .power-bg {
    top: 51px;
  }
}

@media (max-width: 1200px){
  h3 {
    font-size: 22px;
    line-height: 24px;
  }
}



@media (max-width: 1199px) {
  .fisrt-section-titles h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .linking-card-bg img{
    object-fit: cover;
    height: auto;
  }


  .life-examples {
    padding-top: 20px;
  }

  .life-examples-info {
    padding: 20px;
  }
  .life-examples-info .slidy-turns-wrap {
    margin-top: 28px;
  }
  .slidy-payment-flex {
    margin-top: 24px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .life-examples-start {
    margin-top: 28px;
    gap: 20px;
  }
  .swiper-pagination-bullet {
    opacity: 1;
  }
  .life-examples-rez ul li {
    font-size: 14px;
    line-height: 18px;
  }
  .life-examples-rez ul {
    gap: 6px;
    margin-top: 10px;
  }
  .life-examples-rez {
    padding: 16px;
    max-width: 315px;
  }
  .life-examples-photo {
    max-width: 340px;
  }
  .life-examples-text ul li {
    font-size: 15px;
    line-height: 18px;
  }
  .icon-astxik {
    width: 14px;
    height: 14px;
  }
  .slidy-turns-name p {
    font-size: 14px;
    line-height: 18px;
  }

  .slidy-turns-wrap {
    gap: 6px;
  }

  .slidy-turns-name {
    height: 34px;
    padding: 6px 14px;
    gap: 6px;
  }



  .power-cnt .fisrt-section-titles i {
    width: 54px;
  }
  .power-bg img {
    object-fit: cover;
  }
  .power-bg {
    top: 58px;
    height: 568px;
  }



  .linking-card .linking-card-bg img{
    height: 550px;
  }

}

@media (max-width: 1099px) {

  .catalog-filters-main {
    max-width: 260px;
  }

}
@media (max-width: 1020px) {
  .linking-card-names ul li {
    padding: 8px 14px 8px 10px;
    gap: 6px;
    font-size: 14px;
    line-height: 18px;
  }
  .prompts-cat-btn {
    padding: 6px 8px;
    font-size: 12px;
    line-height: 14px;
  }
  .life-examples .hero-ellipse {
    top: -58px;
  }

  .life-examples-photo {
    max-width: 480px;
  }
  .life-examples-slider .swiper-slide:nth-child(2) .life-examples-box {
    flex-direction: column;
  }
  .life-examples-start {
    flex-direction: column;
  }
  .life-examples-slider .swiper-wrapper {
    flex-direction: unset;
    gap: 0;
  }
  .catalog-filters-main{
    max-width: 500px;
    position: fixed;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 50%;
    border-radius: 1.5rem 1.5rem 0 0; /* 24px */
    transform: translateY(130%) translateX(-50%);
    transition: transform 0.3s ease;
    z-index: 9992;
    background: var(--bg-color);
  }

  .touchstart-open {
    transform: translateY(0%) translateX(-50%);
  }

  .close-filt-map{
    width: 42px;
    height: 4px;
    border-radius: 2px;
    display: block;
    background: var(--border);
  }
  .catalog-filters-wrapper {
    padding: 0;
    border: unset;
    border-radius: 0;
    position: relative;
    top: 0;
  }

  .catalog-filters-wrapper {
    max-width: 100%;
  }

  .catalog-filters-items{
    height: auto;

  }
  .catalog-filters-items{
    max-height: 400px;
    padding: 0 14px;
  }

  .life-examples-box {
    flex-direction: column;
    gap: 40px;
    max-width: 478px;
    margin: 0 auto;
    height: 100%;
  }
  .life-examples-rel {
    margin-top: 28px;
  }
  .grew-changed {
    padding: 40px 0 161px;
  }
  .life-examples-rel .examples-pagination {
    display: flex;
  }
  .life-examples-slider {
    padding-bottom: 0;
  }
  .life-examples-slider .swiper-slide{
    height: auto;
  }


  .possibilities-tabs {
    justify-content: start;
    margin: 20px -14px 0 -14px;
    padding: 0 14px 3px 14px;
  }
  .possibilities-decor {
    display: none;
  }
  .possibilities-columns {
    flex-direction: column;

    max-width: 420px;
    margin: 28px auto 0;
  }
  .possibilities-column {
    max-width: 100%;
  }
  .catalog-main-cnt {
    flex-direction: column;
  }
  .linking-guide {
    margin-top: 32px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .catalog-items-wrapper {
    max-width: 100%;
  }

  .year-section-flex {
    gap: 24px;
    flex-wrap: wrap;
  }

  .possibilities-bg {
    bottom: -3px;
  }
  .possibilities-bg img {
    object-position: bottom;
  }

  .possibilities-section {
    padding: 60px 0 150px 0;
    margin-top: 0;
  }
  .possibilities-tabs button {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 18px;
    border-radius: 4px;
  }
  .possibilities-item-bg .img-desktop {
    display: none;
  }
  .possibilities-item-bg .img-mobile {
    display: block;
  }
  .possibilities-small-item {
    min-height: 405px;
    padding: 20px;
    max-width: 100%;
    border-radius: 10px;
  }
  .possibilities-big-item {
    min-height: 405px;
    padding: 20px;
    border-radius: 10px;
  }
  .possibilities-item-titles p {
    font-size: 20px;
    line-height: 24px;
  }
  .possibilities-item-titles span {
    font-size: 16px;
    line-height: 20px;
  }
  .possibilities-item-bg img {
    object-position: top;
  }
  .possibilities-desc-order{
    display: none;
  }
  .possibilities-mob-order{
    display: flex;
  }





  .contract-padd {
    padding: 60px 0;
  }
  .power-faq{
    padding-bottom: 120px;
  }
  .template-description-modal {
    padding: 14px;
  }
  .catalog-filters-line{
    display: none;
  }

  .c-filter-item{
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    background: var(--main-container6);
    margin-bottom: 12px;
  }
  .slider-block{
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    background: var(--main-container6);

  }
  .filter-btn{
    border: 1px solid var(--border);
    padding: 20px;
    gap: 8px;
    border-radius: 16px 16px 0 0;
    margin-top: 12px;
  }
  .reset-all{
    background: var(--accent-color);
    color: var(--bg-card);
  }
}


@media (max-width: 768px) {
  .desktop-text-wrap {
    display: inline;
  }

  .mobile-block {
    display: flex;
  }

}
@media (max-width: 767px){
  .linking-card-names ul {
    gap: 6px;
  }
  .linking-card {
    margin-top: 60px;
  }

  .loss-quality .possibilities-big-item {
    border: unset;
    height: 368px;
  }

  .possibilities-body .section-titles {
    max-width: 359px;
    margin: 0 auto;
  }
  .loss-quality {
    padding-top: 40px;
    margin-top: 60px;
  }

  .power-btn {
    max-width: 100%;
  }



  .article-topic-title{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }











  .catalog-items-header {
    margin-top: 20px;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
  }

  .sort-select>p{
    display: none;
  }
  .templates-count {
    gap: 2px;
    flex-direction: column;
    align-items: flex-start;
  }

}
@media (max-width: 576px) {
  .fisrt-section-titles h1 {
    font-size: 30px;
    line-height: 34px;
    margin-top: 26px;
  }
  .fisrt-section-titles p {
    font-size: 16px;
    line-height: 20px;
    max-width: 332px;
    margin: 12px auto 0;
  }
  .section-titles {
    gap: 8px;
  }



  h3 {
    font-size: 20px;
  }
  .linking-card-names ul li {
    padding: 6px 12px 6px 9px;
    gap: 6px;
    font-size: 12px;
    line-height: 14px;
  }

  .linking-card-names ul li img{
    width: 16px;
    height: 16px;
  }

  .linking-card-names ul li:nth-child(4){
    order: 1;
  }
  .linking-card-names ul li:nth-child(1){
    order: 2;
  }
  .linking-card-names ul li:nth-child(3){
    order: 3;
  }
  .linking-card-names ul li:nth-child(2){
    order: 2;
  }
  .section-tag span {
    font-size: 14px;
    line-height: 18px;
  }
  .mobile-text-wrap {
    display: block;
  }
  .life-examples-rez {
    bottom: -6px;
    padding: 16px 13px;
    max-width: 302px;
  }






  .asks-item-header p {
    font-weight: 500;
  }

  .year-section{
    padding-top: 30px;
  }
  .possibilities-item-titles p img{
    width: 20px;
    height: 20px;
  }
  .loss-quality .possibilities-small-item {
    min-height: 368px;
  }
  .possibilities-ellipse {
    display: none;
  }
  .possibilities-btn {
    width: 100%;
    justify-content: center;
    max-width: 420px;
  }
  .possibilities-section {
    padding: 60px 0 103px 0;
  }
  .catalog-main-cnt {
    margin-top: 20px;
  }
  .count-turns {
    font-size: 14px;
    line-height: 18px;
  }

  .section-title {
    font-size: 26px;
    line-height: 30px;
  }
  .section-sub-title {
    font-size: 16px;
    line-height: 20px;
  }
  .section-sub-titles {
    font-size: 16px;
    line-height: 20px;
  }
  .life-examples-photo>img {
    width: 100%;
    border-radius: 10px;
    height: auto;
  }
  .life-examples {
    padding-bottom: 60px;
  }
  .life-examples-text ul li {
    font-size: 16px;
  }
  .section-titles {
    gap: 8px;
  }

  .section {
    margin-top: 100px;
  }
  .block-cnt {
    margin-top: 28px;
  }


  .linking-card .section-big-title i {
    width: 53px;
    height: auto;
  }
  .linking-card-info {
    top: 100px;
  }
  .linking-card {
    margin-top: 20px;
  }
  .linking-card .trust-bg img {
    object-position: unset;
  }


  .slidy-turns-name p {
    font-size: 14px;
    line-height: 16px;
  }
  .slidy-turns-name {
    padding: 7px 10px;
    height: auto;
  }


  .loss-quality-hidden .text-wrap {
    display: unset;
  }
  .grew-changed-href {
    width: 100%;
    height: auto;
    gap: 20px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
  .grew-changed-data {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .grew-changed {
    padding: 40px 0 116px;
  }
  .grew-changed-flex {
    margin-top: 32px;
  }

  .grew-changed-href:hover .changed-arrow {
    transform: unset;
  }
  .power-btn .btn-login {
    padding: 12px;
    font-size: 18px;
    line-height: 20px;
    height: 48px;
    width: 100%;
  }
  .power-btn {
    margin-top: 28px;
    gap: 12px;
    flex-direction: column;
    width: 100%;
    max-width: 550px;
  }
  .linking-card .linking-card-bg img{
    height: 600px;
  }
  .power-btn .areas-btn {
    width: 100%;
  }
  .power-cnt .fisrt-section-titles i {
    margin-bottom: -6px;
    width: 53px;
    height: auto;
  }
  .fisrt-section-titles h1 br{
    display: none;
  }

  .power-bg-desc{
    display: none;
  }
  .power-bg-mobile{
    display: block;
  }
  .often-asks-item {
    min-height: auto;
  }


  .power-bg {
    top: 0;
    height: auto;
  }



  .asks-list-sub {
    font-size: 14px;
    line-height: 18px;
    padding: 0 12px 10px 14px;
  }
  .asks-item-header p {
    font-size: 16px;
    line-height: 20px;
  }

  .asks-list-icon i {
    font-size: 20px;
  }
  .often-asks-item {
    min-height: 52px;
    border-radius: 6px;
  }
  .asks-item-header{
    padding: 10px 12px 10px 14px;

  }
  .hero-ellipse {
    display: none;
  }
  .trust-btn {
    margin: 24px auto 0;
  }

  .edits-item-circle {
    width: 100%;
    max-width: 45%;
    min-height: 60%;
    right: 4px;
  }

  .edits-circle-text-img {
    max-width: 100%;
  }
  .edits-circle-inside-line {
    max-width: 60%;
    width: 100%;
    position: absolute;
    min-height: 60%;
  }
  .btn-arrow {
    padding: 12px 17px;
  }


  .c-select-header p {
    font-size: 14px;
    line-height: 18px;
  }
  .c-select-header {
    padding: 10px 16px;
    gap: 13px;
  }
  .c-selected-categories {
    gap: 6px;
    margin-top: 20px;
  }
  .c-selected-categories button span,
  .c-selected-categories a span {
    font-size: 12px;
    line-height: 14px;
  }
  .c-selected-categories button,
  .c-selected-categories a {
    gap: 6px;
  }
  .c-selected-categories button i,
  .c-selected-categories a i {
    font-size: 14px;
  }
  .c-select-options li span {
    font-size: 14px;
    line-height: 18px;
  }
  .c-select-options {
    gap: 8px;
  }
  .c-categories-select.active .c-select-options {
    top: 46px;
  }
  .checkbox-chek:hover {
    background: unset;
  }
  .checkbox-chek:hover small {
    color: var(--text-color6);
  }
  .checkbox-chek:hover .checkmark {
    border: 1px solid var(--text-color5);
  }
  .form-input small {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 18px;
  }
  .catalog-search-block {
    margin-top: 24px;
  }
  .catalog-pagination {
    margin-top: 20px;
  }
  .templates-count span {
    font-size: 14px;
    line-height: 18px;
  }
  .templates-count p {
    font-size: 14px;
    line-height: 18px;
  }
  .article-page {
    padding-top: 80px;
  }




  .current-point-blog p > span{
    display: none;
  }
  .current-point-blog img {
    width: 14px;
    height: 14px;
  }
  .current-point-blog {
    gap: 8px;
  }


  .catalog-item {
    max-width: 364px;
    width: 100%;
    margin: 0 auto;
  }

  .catalog-item-img {
    height: 188px;
  }



  .quick-helpful-col {
    margin-top: 28px;
  }
  .linking-card-title .section-sub-title p{
    display: none;
  }
  .section-sub-title br {
    display: none;
  }

  .startups-slidy-box {
    height: auto;
    min-height: 252px;
  }


  .linking-card-main {
    padding: 60px 0 100px;
  }
  .linking-card-main .trust-btn{
    width: 100%;
    max-width: 420px;
  }



  .advanced-title-img {
    margin-top: 0;
    flex-wrap: wrap;
  }
  .advanced-title-img i{
    display: block;
  }


  .contract-padd {
    padding: 40px 0 60px;
    margin: 0;
  }
  .power-faq{
    padding-bottom: 110px;
  }

  .possibilities-big-item {
    min-height: 332px;
  }
  .possibilities-small-item {
    min-height: 332px;

  }
  .catalog-btn {
    height: 44px;
  }
}




@media (max-width: 410px) {

  .power-bg {
    top: 0;
    height: auto;
  }
  .linking-card .linking-card-bg img{
    height: auto;
  }
}
