

.side-nav {
  position: fixed;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  z-index: 991;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 200px;
  background: var(--main-container6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}
.side-nav-mobile {
  display: none;
}
.side-nav.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.side-nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid transparent;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.side-nav__item.active .side-nav__dot {
  background: var(--accent-color);
  width: 12px;
  height: 12px;
}

.side-nav__item:hover .side-nav__dot {
  border-color: #1252d3;
  box-shadow: 0 0 0 4px rgba(18, 82, 211, 0.12);
}

.side-nav__item.active:hover .side-nav__dot {
  border-color: #1252d3;
  box-shadow: 0 0 0 4px rgba(18, 82, 211, 0.18);
}

.side-nav__tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%) translateX(10px);
  padding: 8px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #ffffff;
  color: #161616;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.side-nav__item:hover .side-nav__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.hero-section {
  position: relative;
  z-index: 2;
  min-height: 840px;
  padding: 128px 0 0;
}

.hero-users{
   background: transparent;
   border: 1px solid var(--border);
   padding: 4px;
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-radius: 200px;
  gap: 10px;
  background:  #FFFFFF1A;
      max-width: 287px;
    width: 100%;


}
.hero-users-texts{
  gap: 6px;
}
.hero-users-texts span{
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: var(--accent-color);
 display: flex;
 flex: 0 0 6px;

}
.hero-users-texts b{
font-weight: 600;
font-size: 14px;
line-height: 18px;
color: var(--text-color);
display: block;
}


.hero-partners-wrapper {
  max-width: 770px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 770px;
  padding: 0 14px;
}
.hero-partners-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--border2);
  text-align: center;
  max-width: 232px;
  width: 100%;
  margin: 0 auto;
  padding: 6px 16px;
  position: relative;
}

.hero-partners-title::before,
.hero-partners-title::after,
.hero-partners-title .corner {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  pointer-events: none;
}

.hero-partners-title .corner-left-top {
  top: 0;
  left: 0;
  border-top: 1px solid var(--accent-color);
  border-left: 1px solid var(--accent-color);
}

.hero-partners-title .corner-right-bottom {
  right: 0;
  bottom: 0;
  border-right: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.hero-partners-title::before {
  top: 0;
  right: 0;
  border-top: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
}

.hero-partners-title::after {
  left: 0;
  bottom: 0;
  border-left: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}
.hero-partners-items {
  margin-top: 24px;
  gap: 60px;
  justify-content: center;
}
.hero-partner-item {
  gap: 4px;
}
.h-partner-img {
  max-width: 28px;
  width: 100%;
}
.h-partner-img img {
  width: 100%;
  height: 100%;
}

.hero-partner-item p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
}

.hero-services-items {
  margin: 76px auto 0;
  max-width: 965px;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-service-item {
  padding: 52px 20px 20px 20px;
  border: 1px solid #ffffff1a;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 12px;
  position: relative;
  flex: 1 1 32.5%;
}

[data-theme="dark"] .hero-service-item {
  background: #ffffff1a;
}
.hero-service-icon {
  position: absolute;
  top: -27px;
  left: 20px;
}
.hero-service-item p {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  color: var(--text-color);
}
.hero-service-item span {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  display: block;
  color: var(--text-color);
  margin-top: 10px;
}

.advantages-section {
  position: relative;
  z-index: 2;
}
.advantages-bg {
  position: absolute;
  left: 0;
  bottom: -260px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.advantages-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.advantages-columns {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--main-container6);
}
.advantages-mobile-slider {
  display: none;
}
.advantages-swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
}
.advantages-swiper-pagination .swiper-pagination-bullet-active {
  background: #161616;
}

.advantage-slidy-column {
  padding: 28px;
  background: var(--bg-color3);
  border: 1px solid var(--border);
  max-width: 673px;
  border-top: unset;
  border-left: unset;
  border-bottom: unset;
  width: 100%;
  border-radius: 12px;
  gap: 48px;
  min-width: 673px;
}
.advantage-another-column {
  padding: 28px;
  max-width: 487px;
  width: 100%;
  gap: 48px;
  border-left: unset;
  min-width: 487px;
}
.advantage-another-column .advantage-texts {
  opacity: 0.4;
}
.advantage-item {
  padding: 0 0 48px 0;
  border-bottom: 1px solid var(--border);
}
.advantage-item:nth-child(3) {
  padding: 0;
  border-bottom: unset;
}
.advantage-slidy-logo {
  max-width: 94px;
  width: 100%;
}
.advantage-slidy-logo img,
.advantage-chart img {
  height: auto;
}
.advantage-chart {
  margin-top: 48px;
}
.advantage-texts .advantage-value {
  display: block;
  font-weight: 500;
  font-size: 80px;
  line-height: 80px;
  color: var(--text-color);
}
.advantage-texts p {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: var(--text-color);
  margin-top: 20px;
}
.advantage-texts span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color3);
  display: block;
  margin-top: 8px;
}
.advantage-texts {
  margin-top: 48px;
}
.advantage-another-name {
  padding: 10px 16px;
  background: var(--main-container);
  border: 1px solid var(--border);
  border-radius: 6px;
  max-width: max-content;
  color: var(--text-color);
}


.tex-max-width292 {
  max-width: 292px;
}
.no-edits-section {
  padding: 0 0 80px 0;
  position: relative;
  z-index: 3;
}
.no-edits-columns {
  gap: 10px;
  display: flex;
  justify-content: center;
}
.no-edits-colum {
  max-width: 575px;
  width: 100%;
  background: var(--bg-color3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.no-edits-colum:nth-child(2) {
  background: var(--main-container6);
}
.edits-column-header {
  justify-content: space-between;
  gap: 20px;
}
.edits-column-names {
  gap: 10px;
}
.edits-column-names p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border-radius: 6px;
  padding: 10px 16px;
}
.edits-column-names span {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 16px;
  border-radius: 6px;
}
.good-result p {
  background: var(--text-color);
  color: var(--main-container6);
}
.good-result span {
  background: #11c521;
  color: #ffffff;
}
.bad-result p {
  color: var(--text-color);
  border: 1px solid var(--border);
}
.bad-result span {
  background: #f24d4d;
  color: #ffffff;
}
.bad-result-texts {
  opacity: 0.5;
}
.edits-column-texts p {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  text-align: right;
  color: var(--text-color);
}
.edits-column-texts span {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  color: var(--text-color);
}
.edits-column-img {
  max-width: 519px;
  width: 100%;
  position: relative;
  z-index: 2;
  height: 340px;
}
.edits-column-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.e-column-texts {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.e-column-title {
  position: absolute;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: var(--text-color);
}
.e-column-title::after {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  background: #ffffff;
  width: 7px;
  height: 7px;
}

.e-column-title::before {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  background: #ffffff;
  width: 7px;
  height: 7px;
}

.e-title-point--one {
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent-color);
  background: #ffffff;
  bottom: -4px;
  right: -4px;
  position: absolute;
}
.e-title-point--two {
  width: 7px;
  height: 7px;
  background: #ffffff;
  bottom: -4px;
  left: -4px;
  position: absolute;
}

.e-column-texts--one .e-column-title {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--accent-color);
  background: var(--bg-color3);
}

.e-column-texts--one .e-column-title::after {
  border: 1px solid var(--accent-color);
}

.e-column-texts--one .e-column-title::before {
  border: 1px solid var(--accent-color);
}

.e-column-texts--one .e-title-point--two {
  border: 1px solid var(--accent-color);
}
.e-column-texts--one .e-title-point--one {
  border: 1px solid var(--accent-color);
}

.e-column-texts--two .e-column-title {
  top: 21px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  border: 1px solid var(--border2);
  background: var(--main-container6);
}

.e-column-texts--two .e-column-title::after {
  border: 1px solid var(--border2);
}

.e-column-texts--two .e-column-title::before {
  border: 1px solid var(--border2);
}

.e-column-texts--two .e-title-point--two {
  border: 1px solid var(--border2);
}
.e-column-texts--two .e-title-point--one {
  border: 1px solid var(--border2);
}

.e-column-hints--one {
  position: absolute;
  top: 100px;
  left: 20px;
  gap: 8px;
  background: var(--main-container6);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 12px;
}
.e-column-hints--one i {
  font-size: 20px;
}
.e-column-hints--one p {
  font-weight: 500;
  color: var(--text-color);
}

.e-column-hints--two {
  top: 204px;
  right: 42px;
  position: absolute;
  gap: 8px;
  background: var(--main-container6);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 12px;
}

.e-column-hints--two i {
  font-size: 20px;
}
.e-column-hints--two p {
  font-weight: 500;
  color: var(--text-color);
}

.e-column-texts--one .e-column-hints--one i {
  background: #11c521;
}
.e-column-texts--one .e-column-hints--two i {
  background: #11c521;
}

.e-column-texts--two .e-column-hints--one i {
  background: #f24d4d;
}
.e-column-texts--two .e-column-hints--two i {
  background: #f24d4d;
}

.e-hints-select {
  top: 216px;
  position: absolute;
  gap: 6px;
  background: var(--main-container6);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 12px;
}
.e-hints-select p {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-color);
}
.e-column-texts--one .e-hints-select {
  left: 28px;
}
.e-column-texts--two .e-hints-select {
  left: 93px;
}
.e-hints-select i {
  font-size: 10px;
  background: var(--text-color);
  transform: rotate(180deg);
}
.e-column-bottom-text {
  font-family: "Soyuz Grotesk";
  bottom: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: var(--text-color);
  max-width: 364px;
  width: 100%;
}

.e-column-bottom-text::after {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  background: #ffffff;
  width: 7px;
  height: 7px;
}
.e-column-bottom-text::before {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  background: #ffffff;
  width: 7px;
  height: 7px;
}

.e-bottom-title-point--one {
  width: 7px;
  height: 7px;
  background: #ffffff;
  bottom: -4px;
  right: -4px;
  position: absolute;
}
.e-bottom-title-point--two {
  width: 7px;
  height: 7px;
  background: #ffffff;
  bottom: -4px;
  left: -4px;
  position: absolute;
}
.e-column-texts--one .e-column-bottom-text {
  border: 1px solid var(--accent-color);
  background: var(--bg-color3);
}

.e-column-texts--one .e-column-bottom-text::after {
  border: 1px solid var(--accent-color);
}
.e-column-texts--one .e-column-bottom-text::before {
  border: 1px solid var(--accent-color);
}
.e-column-texts--one .e-bottom-title-point--one {
  border: 1px solid var(--accent-color);
}
.e-column-texts--one .e-bottom-title-point--two {
  border: 1px solid var(--accent-color);
}

.e-column-texts--two .e-column-bottom-text {
  border: 1px solid var(--border2);
  font-family: "Inter";
  max-width: 265px;
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  background: var(--main-container6);
}
.e-column-texts--two .e-column-bottom-text::after {
  border: 1px solid var(--border2);
}
.e-column-texts--two .e-column-bottom-text::before {
  border: 1px solid var(--border2);
}
.e-column-texts--two .e-bottom-title-point--one {
  border: 1px solid var(--border2);
}
.e-column-texts--two .e-bottom-title-point--two {
  border: 1px solid var(--border2);
}





.no-edits-content {
  margin-top: 80px;
  display: flex;
  gap: 10px;
}
.no-edits-media {
  max-width: 575px;
  width: 100%;
  position: relative;
  min-width: 575px;
}
.no-edits-media img {
  width: 100%;
  height: 100%;
}
.no-edits-info {
  max-width: 575px;
  width: 100%;
  min-height: 376px;
}
.no-edits-info span {
  margin-top: auto;
  display: block;
  max-width: 380px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
}
.no-edits-description {
  max-width: 575px;
  width: 100%;
}
.no-edits-titles .no-edits-value {
  display: block;
  font-weight: 500;
  font-size: 80px;
  line-height: 80px;
  color: var(--text-color);
}
.no-edits-titles p {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  margin-top: 12px;
  color: var(--text-color);
  max-width: 380px;
}
.no-edits-texts {
  margin-top: 80px;
  gap: 10px;
  justify-content: space-between;
}
.no-edits-text {
  max-width: 282px;
  width: 100%;
}
.no-edits-text p {
  font-weight: 500;
  font-size: 80px;
  line-height: 80px;
  color: var(--text-color);
}
.no-edits-text span {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: var(--text-color);
  display: block;
  margin-top: 12px;
}
.no-edits-text b {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);
  display: none;
  margin-top: 12px;
}



.advanced-service-section {
  position: relative;
  z-index: 2;
  min-height: 820px;
}
.advanced-bg {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.advanced-bg img {
  width: 100%;
  height: 100%;
}
.advanced-body {
  position: relative;
  z-index: 2;
  padding: 150px 0 0;
}

.advanced-btn {
  margin: 28px auto 0;
}
.advanced-decor {
  display: none;
}

.areas-use-section {
  padding: 20px 0 60px;
  position: relative;
  z-index: 3;
}
.areas-use-ellipse {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.areas-use-ellipse img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-width: max-content;
}
.areas-cnt {
  gap: 10px;
}
.areas-left-column {
  max-width: 380px;
  width: 100%;
  position: relative;
}
.areas-users-views {
  position: absolute;
  background: var(--text-color);
  color: var(--main-container6);
  padding: 8px 16px;
  border-radius: 100px;
  top: -16px;
  left: -24px;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}
.areas-tabs {
  margin-top: 10px;
  gap: 10px;
}
.areas-tab {
  background: var(--bg-color);
  border: 1px solid var(--border);
  width: 100%;
  gap: 16px;
  border-radius: 10px;
  padding: 22px 20px;
  cursor: pointer;
}
.areas-tab p {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--text-color);
}
.areas-tab-dots {
  max-width: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 3.5px;
}
.areas-tab-dots span {
  background: var(--border);
  border-radius: 50%;
  display: flex;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
}
.areas-tab-dots span.active {
  background: var(--accent-color);
}
.areas-tab i {
  font-size: 16px;
  background: var(--accent-color);
  margin-left: auto;
  transition: 0.3s;
}
.areas-tab-wrapper.active .areas-tab i {
  display: none;
}
.areas-tab-wrapper.active .areas-tab {
  flex-direction: column;
  align-items: flex-start;
}

.areas-right-column {
  max-width: 770px;
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  padding: 40px;
  overflow: hidden;
}
.areas-right-cnt {
  display: none;
}
.areas-right-cnt.active {
  display: block;
}
.areas-right-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.areas-right-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.areas-right-cnt {
  background: var(--bg-color);
  padding: 28px;
  border-radius: 10px;
  max-height: 455px;
  overflow: auto;
}
.areas-right-cnt::-webkit-scrollbar {
  height: 3px;
  width: 5px;
}

.areas-right-cnt::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.areas-right-cnt::-webkit-scrollbar-thumb {
  background: #1252d3;
  border-radius: 999px;
}

.areas-right-description {
  margin-top: 100px;
}
.areas-right-header {
  justify-content: space-between;
}
.areas-right-header .icon-wheel{
  width: 24px;
  height: 24px;
}
.areas-right-header p {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color5);
}

.areas-descr-header p {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: var(--text-color);
}
.areas-descr-header p img {
  position: relative;
  top: 3px;
}
.areas-descr-cnt {
  margin-top: 16px;
}
.areas-descr-cnt p {
  color: var(--text-color);
  font-size: 18px;
  line-height: 24px;
}
.areas-descr-cnt ul {
  margin-top: 12px;
}
.areas-descr-cnt ul li {
  margin-left: 25px;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
  position: relative;
}
.areas-descr-cnt ul li::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-color);
  left: -15px;
  top: 10px;
}
.areas-right-cnt-tablet {
  display: none;
}
.slidy-catalog {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-color);
  padding: 28px;
}
.slidy-catalog__controls {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  display: flex;
}

.slidy-catalog-arrow {
  position: absolute;
  background: var(--main-container6);
  border: 1px solid var(--border);
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s;
}
.slidy-catalog-arrow i {
  background: var(--text-color8);
  font-size: 9px;
}
.slidy-catalog-arrow.next {
  right: 0;
  top: 4px;
}
.slidy-catalog-arrow.next i {
  transform: rotate(45deg);
}

.slidy-catalog-arrow.prev {
  left: 0;
  top: 4px;
}
.slidy-catalog-arrow.prev i {
  transform: rotate(-135deg);
}
.slidy-catalog-arrow:hover {
  border: 1px solid var(--accent-color);
}

.slidy-catalog__controls.first::before {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.slidy-catalog__controls.first .prev {
  display: none;
}

.slidy-catalog__controls.last::after {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.slidy-catalog__controls.last .next {
  display: none;
}

.slidy-catalog__tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slidy-catalog__tab {
  padding: 5px 5px 5px 16px;
  background: var(--bg-color);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color8);
  border-radius: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.slidy-catalog__tab span {
  background: var(--main-container6);
  padding: 6px 10px;
  border-radius: 4px;
  display: block;
  color: var(--text-color);
  transition: 0.3s;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.slidy-catalog__tab:hover {
  border: 1px solid var(--accent-color);
}
.slidy-catalog__tab.is-active {
  background: var(--text-color);
  color: var(--main-container6);
}

.c-show-all {
  padding: 8px 16px 8px 12px;
  background: var(--bg-color);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--accent-color);
  border-radius: 6px;
  transition: 0.3s;
  white-space: nowrap;
}
.c-show-all i {
  font-size: 24px;
  background: var(--accent-color);
}

.c-show-all:hover {
  border: 1px solid var(--accent-color);
}

.slidy-catalog__search {
  position: relative;
  margin-bottom: 28px;
}

.slidy-catalog__search-icon {
  position: absolute;
  top: 12px;
  left: 16px;
}

.slidy-catalog__search-icon i {
  font-size: 23px;
  background: var(--bg-color2);
}

.slidy-catalog__search input {
  width: 100%;
  height: 48px;
  padding: 11px 16px 11px 52px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--main-container6);
  font-size: 16px;
  color: var(--text-color);
  outline: none;
  transition: 0.3s;
}
.slidy-catalog__search input:focus {
  border: 1px solid var(--accent-color);
}
.slidy-catalog__search input::placeholder {
  color: #8f9098;
}

.slidy-catalog__panel,
.slidy-catalog__subpanel {
  display: none;
}

.slidy-catalog__panel.is-active,
.slidy-catalog__subpanel.is-active {
  display: block;
}

.slidy-catalog__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.slidy-catalog__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.slidy-catalog__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.slidy-catalog__table tbody tr {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.slidy-catalog__col {
  max-width: 352px;
  width: 100%;
  vertical-align: top;
}

.slidy-catalog__col:last-child {
  padding-right: 0;
}

.slidy-catalog__part {
  width: 100%;
}
.slidy-catalog__letter {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
}
.slidy-catalog__letter img {
  position: relative;
  top: 2px;
}

.slidy-catalog__items {
  width: 100%;
  padding: 0 0 0 24px;
  margin-top: 8px;
}

.slidy-catalog__items div {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
}

.slidy-catalog__items div + div {
  margin-top: 8px;
}

.slidy-catalog__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 16px 0 16px 0;
}

.catalog-panel-pagination {
  gap: 25px;
  margin-top: 28px;
  display: none;
}
.catalog-panel-pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog-panel-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-panel-pagination ul li a.active {
  background: var(--bg-color2);
  color: var(--bg-color);
}
.catalog-panel-pagination ul li a:hover {
  background: var(--main-container6);
  color: var(--accent-color);
}
.catalog-panel-pagination ul li a i {
  font-size: 10px;
  background: var(--text-color6);
  transition: 0.3s;
}
.catalog-panel-pagination ul li a:hover i {
  background: var(--accent-color);
}
.catalog-panel-pagination .icon-arrow-down {
  font-size: 14px;
  background: var(--bg-color2);
  flex: 0 0 14px;
  transition: 0.3s;
}
.catalog-panel-pagination .icon-arrow-down:hover {
  background: var(--accent-color);
}
.panel-pagination-prev {
  transform: rotate(-90deg);
  cursor: pointer;
}
.panel-pagination-next {
  transform: rotate(90deg);
  cursor: pointer;
}
.catalog-panel-pagination .icon-arrow-down.disabled {
  background: var(--text-color5);
}







.pointsDark-title{
  width: 62px;
  height: 34px;
}
.img-switch{
  background-image: url("../images/switch.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 68px;
  height: 40px;
}

html[data-theme="dark"] .section-decor-two{
  background-image: url("../images/switch2-dark.png");
}

.section-decor-two{
  background-image: url("../images/switch2.webp");

  width: 80px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}
.advanced-switch{
  background-image: url("../images/switch2.png");
  width: 68px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}





.slidy-catalog__col {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.slidy-catalog__col.is-hidden {
  display: none;
}

.reviews-section {
  margin-top: 100px;
}
.reviews-item {
  padding: 20px;
  background: var(--bg-color);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  max-width: 380px;
  width: 100%;
  height: max-content;
}
.reviews-mobile-slider {
  display: none;
}
.reviews-item-header {
  gap: 2px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.reviews-author-grade {
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  background: var(--bg-color2);
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: var(--text-color2);
}
.reviews-author-info {
  gap: 12px;
}
.author-avatar {
  max-width: 60px;
  width: 100%;
  height: 60px;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-contact {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-top: 2px;
  color: var(--text-color3);
}
.author-name {
  gap: 4px;
}
.author-name .review-author-name {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
}
.author-name img {
  width: 24px;
  height: 24px;
}
.reviews-swiper-pagination .swiper-pagination-bullet {
  background: #46455114;
}
.reviews-swiper-pagination .swiper-pagination-bullet-active {
  background: #1252d3;
}

.reviews-texts {
  margin-top: 16px;
}
.reviews-texts p {
  color: var(--text-color);
}
.reviews-texts .review-handle {
  color: var(--accent-color);
}
.reviews-texts p:not(:last-child) {
  margin: 0 0 20px 0;
}
.reviews-data {
  margin-top: 40px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color5);
}

.trust-section {
  margin-top: 100px;
  position: relative;
  min-height: 1150px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-bg {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.trust-bg img {

  width: 100%;
  height: 100%;
}

.trust-decor {
  display: none;
}

.language-sub-scroll {
  max-height: 200px;
  overflow: auto;
  padding: 0 10px 0 0;
}
.language-sub-scroll::-webkit-scrollbar {
  width: 3px;
  height: 12px;
}
.language-sub-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #888;
}
.language-sub-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #1252d3;
}


































@media (max-width: 1600px) {
  .advanced-service-section {
    min-height: 620px;
  }
  .trust-section {
    min-height: 950px;
  }
  .trust-body {
    padding: 140px 0 0;
  }
}
@media (max-width: 1500px) {
  .trust-section {
    min-height: 828px;
  }
}



@media (max-width: 1200px) {
  .reviews-item {
    max-width: 49%;
  }
  .back-cart--one {
    max-width: 360px;
  }
  .advantages-columns {
    margin: 40px -14px 0 -14px;
    padding: 0 14px;
    overflow: auto;
  }

  .advantages-columns::-webkit-scrollbar {
    height: 3px;
  }

  .advantages-columns::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
  }

  .advantages-columns::-webkit-scrollbar-thumb {
    background: #1252d3;
    border-radius: 999px;
  }

  .advantages-columns::-webkit-scrollbar-thumb:hover {
    background: #1b5fe8;
  }

  .advantages-columns::-webkit-scrollbar-thumb:active {
    background: #0f46b5;
  }
}
@media (max-width: 1199px) {

}
@media (max-width: 1132px) {

  .advanced-bg img {
    object-fit: cover;
  }
}

@media (max-width: 992px) {
  .catalog-panel-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section {
    min-height: 1040px;
  }
  .hero-service-item {
    flex: 1 1 33%;
  }
  .hero-services-items {
    gap: 30px;
  }

  .reviews-item {
    max-width: 47%;
  }



  .no-edits-content {
    flex-direction: column;
  }
  .no-edits-columns {
    flex-direction: column;
  }
  .no-edits-colum {
    max-width: 100%;
  }
  .edits-column-img {
    max-width: 100%;
    height: unset;
  }
  .areas-right-cnt-tablet {
    position: relative;
    display: block;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .areas-tab-wrapper.active .areas-tab {
    flex-direction: row;
  }
  .areas-right-column {
    display: none;
  }
  .areas-right-cnt {
    display: block !important;
  }
  .areas-tab-wrapper.active .areas-right-cnt-tablet {
    padding: 12px;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
  }

  .areas-cnt {
    flex-direction: column;
  }
  .areas-users-views {
    left: 0;
  }
  .areas-tab-wrapper.active .areas-tab i {
    display: inline;
  }
  .areas-tab-wrapper.active .areas-tab i {
    opacity: 0;
    visibility: hidden;
  }

  .areas-left-column {
    max-width: 100%;
  }
  .areas-right-cnt {
    max-width: 100%;
  }
  .areas-right-column {
    max-width: 100%;
  }







}

@media (max-width: 768px) {
  .hero-partners-wrapper {
    min-width: 350px;
    bottom: -60px;
  }
  .hero-partners-items {
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 16px;
  }
  .hero-users {
    display: none;
  }

  .trust-bg img {
    object-fit: cover;
  }
  .hero-services-items {
    margin: 64px auto 0;
  }
  .no-edits-media {
    max-width: 545px;
    min-width: 545px;
    margin-top: 28px;
  }
  .no-edits-info {
    display: none;
  }

  .no-edits-texts {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
    margin-top: 0;
    gap: 32px;
  }

  .slidy-catalog__col:nth-child(2) {
    padding: 0;
  }
  .slidy-catalog {
    border-radius: 10px;
    padding: 12px;
  }

  .no-edits-text {
    flex-direction: column;
  }
  .no-edits-text b {
    display: block;
  }
  .no-edits-description {
    display: flex;
    flex-direction: column-reverse;
  }
  .reviews-item {
    max-width: 100%;
  }


}
@media (max-width: 767px){


}
@media (max-width: 576px) {
  .hero-partners-wrapper {
    bottom: -140px;
  }
  .h-partner-img {
    max-width: 24px;
    width: 100%;
  }

  .hero-partner-item p {
    font-size: 16px;
    line-height: 20px;
  }

  .slidy-catalog__tab {
    padding: 5px 5px 5px 16px;
    gap: 8px;
    font-size: 12px;
    line-height: 14px;
    border-radius: 5px;
  }
  .edits-column-img {
    height: 192px;
  }
  .edits-column-img img {
    object-fit: contain;
  }

  .e-column-title {
    padding: 3px 6px;
    font-size: 13px;
    line-height: 15px;
  }

  .e-column-texts--one .e-column-title {
    top: 15px;
    max-width: 114px;
  }
  .e-column-texts--two .e-column-title {
    top: 18px;
    left: 54%;
  }

  .e-column-title::after {
    left: -3px;
    top: -3px;
    width: 4px;
    height: 4px;
  }
  .e-column-title::before {
    right: -3px;
    top: -3px;
    width: 4px;
    height: 4px;
  }
  .e-title-point--one {
    width: 5px;
    height: 5px;
    bottom: -3px;
    right: -3px;
  }

  .e-title-point--two {
    width: 5px;
    height: 5px;
    bottom: -3px;
    left: -3px;
  }

  .e-column-hints--one {
    top: 61px;
    left: 10px;
    border-radius: 2px;
    gap: 3px;
    padding: 4px 6px;
  }

  .e-column-hints--one p {
    font-size: 9px;
    line-height: 12px;
  }

  .e-column-hints--one i {
    font-size: 11px;
  }
  .e-column-bottom-text {
    bottom: 16px;
    padding: 4px 9px;
    font-size: 11px;
    line-height: 11px;
    text-align: center;
    max-width: 204px;
    width: 100%;
  }
  .e-column-bottom-text::after {
    left: -3px;
    top: -3px;
    width: 4px;
    height: 4px;
  }
  .e-column-bottom-text::before {
    right: -3px;
    top: -3px;
    width: 4px;
    height: 4px;
  }

  .e-bottom-title-point--one {
    width: 5px;
    height: 5px;
    bottom: -3px;
    right: -3px;
  }

  .e-bottom-title-point--two {
    width: 5px;
    height: 5px;
    bottom: -3px;
    left: -3px;
  }
  .e-column-texts--two .e-column-bottom-text {
    max-width: 149px;
    font-size: 9px;
    line-height: 11px;
  }

  .e-hints-select {
    top: 121px;
    gap: 3px;
    border-radius: 2px;
    padding: 5px 6px;
  }
  .e-hints-select p {
    font-size: 6px;
    line-height: 7px;
  }

  .e-hints-select i {
    font-size: 5px;
  }
  .e-column-texts--one .e-hints-select {
    left: 15px;
  }

  .e-column-hints--two {
    top: 115px;
    right: 39px;
    gap: 4px;
    border-radius: 2px;
    padding: 5px 6px;
  }
  .e-column-hints--two p {
    font-size: 9px;
    line-height: 12px;
  }
  .e-column-hints--two i {
    font-size: 11px;
  }

  .c-show-all {
    padding: 8px 12px 8px 10px;
    gap: 8px;
    font-size: 12px;
    line-height: 14px;
    border-radius: 5px;
  }
  .c-show-all i {
    font-size: 18px;
  }
  .slidy-catalog__tab span {
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 14px;
  }
  .slidy-catalog__letter {
    font-size: 16px;
    line-height: 20px;
  }
  .slidy-catalog__search {
    margin-bottom: 22px;
  }
  .slidy-catalog__controls::after {
    width: 72px;
  }

  .slidy-directory-section {
    margin-top: 208px;
  }

  .slidy-catalog-arrow {
    width: 28px;
    height: 28px;
  }
  .slidy-catalog-arrow i {
    font-size: 8px;
  }

  .side-nav {
    display: none;
  }
  .side-nav-mobile {
    display: block;
    position: fixed;
    bottom: 14px;
    left: 0;
    padding: 0 34px;
    z-index: 10;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .side-nav-mobile.active {
    opacity: 1;
    visibility: visible;
  }
  .side-nav-mobile-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    background: var(--main-container6);
    border: 1px solid var(--border);
    overflow: hidden;
    border-radius: 200px;
  }
  .side-nav-mobile ul {
    display: flex;
    align-items: center;
    overflow: auto;
    gap: 20px;
    padding: 12px;
  }
  .side-nav-mobile ul::-webkit-scrollbar {
    display: none;
  }
  .side-nav-mobile.first .side-nav-mobile-wrapper::before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .side-nav-mobile.last .side-nav-mobile-wrapper::after {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .side-nav-mobile ul a {
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: var(--text-color);
    opacity: 0.5;
    transition: 0.3s;
    position: relative;
    z-index: 222;
  }
  .side-nav-mobile ul a.active {
    opacity: 1;
  }
  .side-nav-mobile-wrapper::after {
    content: "";
    width: 80px;
    height: 100%;
    background: linear-gradient(
      270deg,
      rgba(248, 249, 251, 0) 0%,
      #f8f9fb 100%
    );
    right: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    transform: rotate(180deg);
  }
  .side-nav-mobile-wrapper::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 100%;
    background: linear-gradient(
      270deg,
      rgba(248, 249, 251, 0) 0%,
      #f8f9fb 100%
    );
    left: 0;
    top: 0;
    z-index: 1;
  }

  .btn-register {
    height: 40px;
    max-width: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 0;
  }
  .btn-register i {
    flex: 0 0 15px;
    font-size: 13px;
  }
  .hero-services-items {
    flex-direction: column;
  }

  .hero-section {
    min-height: 1250px;
    padding: 112px 0 0;
  }

  .hero-service-item {
    width: 100%;
  }
  .hero-partners {
    min-width: 360px;
    bottom: -150px;
  }

  .hero-service-icon {
    max-width: 88px;
    width: 100%;
    top: -24px;
  }
  .hero-service-icon img {
    width: 100%;
    height: 100%;
  }
  .hero-service-item span {
    font-size: 18px;
    line-height: 20px;
  }
  .hero-services-items {
    gap: 40px;
  }
  [data-theme="dark"] .hero-service-item {
    background: rgba(0, 0, 0, 0.2);
  }

  .language-sub-block::-webkit-scrollbar {
    width: 3px;
    height: 12px;
  }

  .language-sub-block::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #888;
  }

  .language-sub-block::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #1252d3;
  }

  .circle-text-img {
    max-width: 350px;
  }
  .circle-img-hover {
    max-width: 350px;
  }
  .circle-inside-line {
    max-width: 196px;
    min-height: 196px;
  }
  .circle-arrow-icon {
    width: 92px;
    height: 92px;
  }

  .advantages-columns {
    display: none;
  }
  .advantages-mobile-slider {
    display: block;
    margin-top: 28px;
  }
  .advantages-section {
    min-height: 1128px;
  }
  .advantages-bg {
    bottom: -2px;
  }
  .advantages-bg img {
    object-position: bottom;
  }
  .advantage-slide {
    background: var(--main-container6);
    border-radius: 10px;
  }
  .advantage-item:nth-child(1) {
    border: 1px solid var(--border);
    border-radius: 10px;
  }
  .advantage-item:nth-child(2) .advantage-texts {
    opacity: 0.4;
  }
  .advantage-item {
    padding: 20px;
  }

  .advantage-chart {
    margin-top: 40px;
  }
  .advantage-texts .advantage-value {
    font-size: 60px;
    line-height: 60px;
  }
  .advantage-texts {
    margin-top: 36px;
    max-width: 292px;
  }
  .advantage-texts p {
    font-size: 20px;
    line-height: 24px;
    margin-top: 16px;
  }

  .advantage-texts span {
    font-size: 16px;
    line-height: 20px;
  }



  .no-edits-section {
    padding: 40px 0 80px 0;
  }
  .edits-column-names p {
    font-size: 14px;
    line-height: 18px;
    border-radius: 4px;
    padding: 8px 12px;
  }
  .edits-column-names span {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    padding: 8px 12px;
    border-radius: 4px;
  }
  .no-edits-colum {
    border-radius: 10px;
    padding: 20px;
  }
  .edits-column-texts p {
    font-size: 28px;
    line-height: 28px;
  }
  .edits-column-texts span {
    font-size: 12px;
    line-height: 14px;
  }
  .no-edits-info span {
    display: none;
  }
  .no-edits-content {
    margin-top: 28px;
  }

  .no-edits-media {
    min-width: unset;
    max-width: 100%;
  }


  .no-edits-text p {
    font-size: 60px;
    line-height: 60px;
  }

  .no-edits-text span {
    font-size: 19px;
    line-height: 24px;
  }

  .advanced-bg img {
    object-position: bottom;
  }
  .advanced-service-section {
    min-height: 498px;
  }
  .advanced-body {
    padding: 100px 0 0;
  }
  .advanced-btn {
    margin: 24px auto 0;
  }
  .advanced-decor {
    display: flex;
    position: absolute;
  }
  .advanced-decor--one {
    max-width: 88px;
    top: 34px;
    left: 9px;
  }
  .advanced-decor--two {
    max-width: 36px;
    top: 10px;
    left: 105px;
  }
  .advanced-decor--tree {
    max-width: 130px;
    top: -42px;
    right: -1px;
  }
  .advanced-decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .areas-use-ellipse {
    display: none;
  }

  .areas-users img {
    width: 100%;
    height: 100%;
  }




  .img-switch {
    width: 53px;
    height: 32px;
  }


  .section-decor-two {
    width: 62px;
    height: 34px;
  }
  .advanced-switch {
    width: 53px;
    height: 32px;
  }

  .areas-right-header p {
    font-size: 16px;
    line-height: 20px;
  }
  .areas-right-header img {
    width: 20px;
    height: 20px;
  }
  .areas-right-description {
    margin-top: 48px;
  }
  .areas-descr-header p {
    font-size: 16px;
    line-height: 20px;
  }
  .areas-descr-cnt {
    margin-top: 10px;
  }

  .areas-descr-header p img {
    top: 4px;
    width: 20px;
    height: 20px;
  }
  .areas-descr-cnt p {
    font-size: 14px;
    line-height: 18px;
  }
  .areas-descr-cnt ul {
    margin-top: 8px;
  }

  .areas-descr-cnt ul li {
    margin-left: 15px;
    font-size: 14px;
    line-height: 18px;
  }

  .areas-descr-cnt ul li::after {
    width: 4px;
    height: 4px;
    left: -10px;
    top: 6px;
  }
  .areas-users-views {
    top: -14px;
    font-size: 16px;
    line-height: 20px;
  }

  .slidy-catalog__controls {
    margin-bottom: 12px;
  }
  .slidy-catalog__search input {
    height: 46px;
  }

  .slidy-catalog__items div {
    font-size: 16px;
    line-height: 20px;
  }

  .reviews-section {
    margin-top: 120px;
  }
  .reviews-mobile-slider {
    display: block;
    margin-top: 28px;
  }
  .reviews-items {
    display: none;
  }
  .reviews-item {
    margin-bottom: 0;
    border-radius: 10px;
  }
  .author-avatar {
    max-width: 56px;
    width: 100%;
    height: 56px;
  }




  .trust-section {
    min-height: 550px;
    margin-top: 80px;
  }
  .trust-decor {
    position: absolute;
    top: 0;
    max-width: 680px;
    left: 0;
    display: flex;
    z-index: -1;
  }
  .trust-decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .trust-bg img {
    object-position: bottom;
  }
  .trust-body .advanced-title-img i {
    width: 53px;
    height: 32px;
  }


  .trust-body {
    padding: 0;
  }
  .e-column-texts--two .e-hints-select {
    left: 52px;
  }
  .edits-column-img {
    margin-top: 16px;
  }


  .reviews-item {
    min-height: 370px;
  }
  .reviews-texts {
    min-height: 198px;
  }
  .areas-tab {
    padding: 16px 16px;
  }
  .areas-tab p {
    font-size: 18px;
    line-height: 20px;
  }
  .areas-use-section {
    padding: 20px 0 0;
  }
  .areas-right-cnt {
    padding: 20px;
    max-height: 100%;
    overflow: unset;
  }


}

@media (max-width: 460px) {


  .edits-column-img {
    height: 192px;
  }
}
@media (max-width: 410px) {

  .advanced-body {
    padding: 120px 0 0;
  }
  .trust-section {
    min-height: 516px;
  }
  .hero-section {
    min-height: 1188px;
  }

}
