@import 'https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700;800;900&display=swap';

:root {
    --dark: #343232;
    --accent:#FF9900;
    --accent-dark:#ff8206;
    --accent-rare:#2abb2d;
    --gray:#565969;
    --white:#fff;
    --transparent: #ffffff00;
    --outline-border:rgba(86,89,105,.2);
    --logo-mobheight:30px;
    --logo-height:46px;
    --min-font-size: 1rem; 
    --max-font-size: 5.5rem;
    --unit-100vh: 100vh;
    --padding-section: clamp(1.3rem, 2.5vw, 2.5rem);
}
@supports (height: 100dvh) {
    :root {
        --unit-100vh: 100dvh;
    }
}

*,::after,::before {
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
    height:100%;
    overflow:auto;
}

body {
    color: var(--dark);
    font-family: monospace, sans-serif;
    font-size:18px;
    font-weight:300;
    line-height:1.2;
    background-color:var(--white);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden!important;
    min-height:100%;
    margin:0;
    padding:0;
}

h1,h2,h3,h4,h5,h6,a,p {
    color:inherit;
    margin:0;
    padding:0;
}

p {
	margin-top: 15px;
	margin-bottom: 15px;
}

h1,h2,h3,h4,h5,h6 {
    font-family:'Open Sans', sans-serif;
    -ms-word-wrap:break-word;
    word-wrap:break-word;
    font-weight:inherit;
    font-size:inherit;
    margin:0 0 25px;
}

h1 {
    font-size: clamp(2.4rem,5vw,5.5rem);
    font-weight: 700;
    margin-bottom: 20px;    
}

h2 {
    font-size: clamp(2rem,4vw,3.5rem);
    font-weight: 700;
    margin-bottom: 20px;    
}

.container {
    max-width:1290px;
    padding-right:15px;
    padding-left:15px;
    margin:0 auto;
}

section {
    padding-top: 6vh;
    padding-bottom: 6vh;
	overflow: hidden;
}

img {
    display:block;
    max-width:100%;
	object-fit: cover;
}

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

a {
    display:inline-block;
    white-space:nowrap;
    text-decoration:none;
    text-align:center;
    color:inherit;
    cursor:pointer;
    -webkit-transition:color .3s ease-in-out;
    transition:color .3s ease-in-out;
}

.visually-hidden {
    opacity:0;
    width:1px;
    height:1px;
}

.button {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 2px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    border:none;
    font-family:inherit;
    font-weight: 700;
    cursor:pointer;
    margin:0;
}

iframe {
    border:none;
}

li > ul {
    padding-bottom: 1.2rem;
}
li > ul > li:not(:last-child) {
    padding-bottom: 0.2rem;
}

.title {
    text-transform: uppercase;
    text-align: center;
    color: var(--accent);
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
}
input::-webkit-input-placeholder {
    font-size: 18px;
	font-weight: 400;
}

input::-moz-placeholder {
    font-size: 18px;
	font-weight: 400;
}

input:-moz-placeholder {
    font-size: 18px;
	font-weight: 400;
}

input:-ms-input-placeholder {
    font-size: 18px;
	font-weight: 400;
}

input::placeholder {
    font-size: 18px;
	font-weight: 400;
}

/* Menu Primary */
.site-logo img {
    max-width: 100%; 
    height: auto;  
}

.site-title-and-description {
    display: none;
}

.site-header-wrapper {
    position: fixed; 
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    z-index: 9999;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--white); 
    /* background-color: rgba(52, 50, 50, 0.309);  */
}
.site-header {
    margin: 0 auto;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent; 
    width: 100%;
    max-width: 1700px;
    padding-right: 15px;
    padding-left: 15px;
}

/* logo */
.site-branding {
    display: flex;
    align-items: center;
    z-index: 10000;
}

/* logo responsive */
.site-logo img {
    max-height: 50px; 
    height: auto;
    width: auto;
}

/* Mobile Menu */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 10px;
    z-index: 10000; 
    position: relative;
}

.menu-toggle.active .hamburger-icon {
    background-color: transparent; 
}

.menu-toggle.active .hamburger-icon:before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger-icon:after {
    transform: rotate(-45deg);
    bottom: 0;
}

.hamburger-icon {
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    display: block;
    position: relative;
    transition: background-color 0.3s ease; 
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    display: block;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger-icon:before {
    top: -10px;
}

.hamburger-icon:after {
    bottom: -10px;
}

.site-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end; 
    padding-top: 20vh;
    padding-right: 2rem;
    background-color: var(--white);
    z-index: 9999;
    pointer-events: none; 
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    gap: 3rem;
}

/* Hide the menu by default on mobile */
.menu-items {
    position: static; 
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 2vh, 2rem);
    justify-content: flex-start;
    align-items: flex-end;
}

/* Show menu when active */
.menu-items.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.menu-items a {
    color: var(--dark);
    padding: 0.5rem 0.1rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1em;
    transition: text-decoration 0.3s ease;
}

.menu-items a:hover,
.menu-items a:focus {
    text-decoration: solid underline var(--dark) 2px;
    text-underline-offset: 10px;
}

.menu-items a.active {
    color: var(--accent);
    text-decoration: none;
}

.header-button {
    display: none;
}

.header-button-mobile {
    display: block;
}

.header-button-mobile a {
    color: var(--white);
    background-color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.header-button-mobile a:hover,
.header-button-mobile a:focus {
    background-color: var(--accent-hover);
    color: var(--white);
}
.menu-toggle.active + .site-nav-wrapper {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .site-nav-wrapper {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transition: none !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        height: auto !important;
        width: auto !important;
        background: none !important;
        padding: 0 !important;
        gap: 0 !important;
    }
    .menu-toggle.active + .site-nav-wrapper {
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transition: none !important;
    }
    .menu-items {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transition: none !important;
        flex-direction: row !important;
        background-color: transparent !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 3rem !important;
        height: auto !important;
    }
    .header-button-mobile {
        display: none !important;
    }
    .header-button {
        display: block;
    }
    .menu-toggle {
        display: none;
    }
}

.page-offset {
    margin-top: 112px;
}

/* Hero Section */
.hero {
	overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-container {
    width:clamp(200px, 95%, 95%);
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: var(--unit-100vh);
    padding-top: clamp(5rem, 20vh, 10rem);
    padding-bottom: 6vh;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-title {
    color: var(--accent);
}

.hero-description {
    color: var(--dark);
    font-size: clamp(1rem,2vw,1.55rem);
    font-weight: 500;
}

.hero-description-item:not(:last-child) {
    margin-bottom: 1rem;
}

.hero-cta-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.hero-cta-img {
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2rem);
    flex-wrap: wrap;
}

.button-demo {
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--accent-dark);
    border: 1px solid var(--white);
}

.button-demo:hover {
    background-color: var(--white);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.button-connect {
    text-transform: uppercase;
    background-color: var(--accent-rare);
    color: var(--white);
}

.button-connect:hover {
    background-color: var(--white);
    color: var(--accent-rare);
}
.hero-title-img {
    display: none;
}
@media (min-width: 1024px) {
    .hero-title-img {
        display: block;
    }
}

/* Вторая секция - gridarea */
.gridarea-container {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
  }
  
  .gridarea-container > * {
    grid-column: 1 / -1;
    align-self: start;
  }

  /* .gridarea-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-width: 70%;
    padding-bottom: 30px;    
  } */

  .checkmark {
    color: #ff8206;
    margin-right: 8px;
    vertical-align: middle;
}

  .gridarea-card {
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid color-mix(in srgb, var(--dark) 50%, white);
    border: 1px solid #eee;
    min-width: 0;
    width: 100%;
    transition: 
      box-shadow 0.25s cubic-bezier(.4,0,.2,1),
      border-color 0.25s cubic-bezier(.4,0,.2,1);
  }

  .gridarea-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    border-color: #d6e0f5;
  }

  .gridarea-card-title,
  .reasons-item-title {
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: left;
}
  .gridarea-card-list {
    margin-bottom: 3rem;
  }

  .gridarea-card-item {
    text-align: left;
  }

  .gridarea-card-item:not(:last-child) {
    margin-bottom: 1rem;
  }

  .gridarea-button {
    display: flex;
    justify-content: end;
    align-items: center;
  }

  .gridarea-slide {
    justify-content: center;
  }

  .swiper-gridarea {
    display: flex;
    min-height: 22rem; 
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .swiper-wrapper {
    flex: 1 1 auto;
    min-height: 0;
}

  .swiper-figure {
    padding: 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex: 1 1 auto; */
    background: #fff;
}

.swiper-img {
    width: 92%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 2rem;
}

.swiper-caption {
    margin-top: auto;
    text-align: center;
    font-size: 1rem;
}

.swiper-panel {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    background: transparent;
    padding: 0;
    gap: 1rem;
    margin-top: 0;
}

.swiper-pagination {
    flex: 1 1 auto;
    text-align: left;
    background-color: var(--accent-rare);
}

.swiper-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important; 
    margin: 0;
    padding: 1.5rem;
    background-color: var(--accent-rare);
}

.swiper-button-next:after, .swiper-button-prev:after {
    fill: var(--white);
    color: var(--white);
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
}

.swiper-gridarea .swiper-button-prev,
.swiper-gridarea .swiper-button-next {
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
}

  
@media (min-width: 992px) {
    .gridarea-container {
      grid-template-columns: repeat(12, 1fr);
    }
    
    /* Ряд 1 */
    .card-1 {
      grid-column: span 7;
    }
    
    .card-2 {
      grid-column: span 5;
    }
    
    /* Ряд 2 */
    .card-3 {
      grid-column: span 5;
    }
    
    .card-4 {
      grid-column: span 7;
    }
    
    /* Ряд 3 */
    .card-5 {
      grid-column: span 7;
      aspect-ratio: 1 / 1;
    }
    
    .card-6 {
      grid-column: span 5;
    }
    
    /* Ряд 4 */
    .card-7 {
      grid-column: span 6;
    }
    
    .card-8 {
      grid-column: span 6;
    }
  }
/* /Вторая секция - gridarea */


/* Третья секция */
.reasons {
    padding: 40px 0;
  }
  
  .title-header {
    margin-bottom: 32px;
    text-align: center;
  }
  
  .reasons-list,
  .sixcards-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    transition: grid-template-columns 0.3s;
  }
  
  .reasons-item-card,
  .sixcards-item-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 32px 24px;
    border: 1px solid #eee;
    min-width: 0;
    width: 100%;
    transition: 
      box-shadow 0.25s cubic-bezier(.4,0,.2,1),
      border-color 0.25s cubic-bezier(.4,0,.2,1);
  }
  
  .reasons-item-card:hover,
  .sixcards-item-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    border-color: #d6e0f5;
  }
  
  .reasons-item-card > ul,
  .sixcards-item-card > ul {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .reasons-item-card > ul > li:not(:last-child),
  .sixcards-item-card > ul > li:not(:last-child) {
    margin-bottom: 1rem;
  }

  .reasons-item-title,
  .sixcards-item-title {
    position: relative;
    display: inline-block;
    padding: 0;
    z-index: 1;
  }
  .reasons-item-title::before,
  .sixcards-item-title::before {
    content: "";
    position: absolute;
    left: 45%; 
    transform: translateX(-50%); 
    bottom: 0em; 
    height: 100%;
    width: 100%; 
    z-index: -1;
    background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 42' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M190.276 34.0098C195.894 33.7601 197.412 27.4844 194.72 24.255C194.757 24.0053 194.775 23.7557 194.792 23.506C201.838 22.5571 201.802 11.7535 194.269 11.9533C193.473 11.97 192.679 11.97 191.866 12.0033C196.78 9.57294 195.931 0.800305 189.264 0.983415C130.765 2.54818 72.2839 4.11294 13.7848 5.67771C6.55818 5.87746 6.28715 15.0995 12.2852 16.9972C10.0992 16.9972 7.93119 16.9972 5.74517 16.9806C-1.95115 16.9306 -1.87888 28.2668 5.74517 28.6164C13.9654 28.9992 22.1676 29.3488 30.3878 29.6318C27.7863 29.7483 25.1847 29.8649 22.565 29.9814C14.941 30.3309 14.8868 41.9667 22.565 41.6172C78.4804 39.087 134.378 36.5401 190.294 34.0098H190.276Z' stroke-linecap='round' stroke-linejoin='round' fill='%23FF9900' opacity='0.52'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%; /*Make marker same size for each title*/
    opacity: 1;
    pointer-events: none;
    border-radius: 0.2em;
  }
  
  @media (min-width: 576px) {
    .reasons-list, .sixcards-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
    }
  }
  
  @media (min-width: 992px) {
    .reasons-list, .sixcards-list {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 40px;
    }
  }
  
/* /Третья секция */

/* Four cards секция */
.fourcards-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
.fourcards-list li > ul > li:not(:last-child) {
    padding-bottom: 1.2rem;
}
  .fourcards-item-card {
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 32px 24px;
    border: 1px solid #eee;
    min-width: 0;
    width: 100%;
    transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), border-color 0.25s cubic-bezier(.4,0,.2,1);
  }
  .fourcards-item-card > ul {
    margin-bottom: 1.25rem;
  }
  
  .fourcards-item-card:nth-child(-n+3) {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
  }
  
  .fourcards-item-card:nth-child(2) {
    padding-top: 60px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  
  .fourcards-item-card:nth-child(4) {
    grid-column: 1 / -1; 
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-sizing: border-box;
    text-align: left;
    gap: 30px;
    overflow: hidden;
  }
  
  .fourcards-item-card:nth-child(4) img {
    flex-shrink: 0;
    width: 60px; 
    height: 60px;
    object-fit: contain;
  }
  
  .fourcards-item-card:nth-child(4) .fourcards-subtitle,
  .fourcards-item-card:nth-child(4) .fourcards-item-title,
  .fourcards-item-card:nth-child(4) p,
  .fourcards-item-card:nth-child(4) a.button {
    flex-grow: 1;
  }
  
  .fourcards-item-card:nth-child(-n+3) img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .fourcards-subtitle {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 8px;
    color: #555;
  }
  
  .fourcards-item-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 16px;
    color: inherit;
  }
  .fourcards-item-card:not(:last-child) > ul {
    margin-bottom: 1.25rem;
  }
  .fourcards-item-card:last-child > ul {
    margin-bottom: 0;
  }
  .fourcards-item-card:last-child > ul {
    padding-bottom: 0;
  }
  
  @media (max-width: 991.98px) {
    .fourcards-list {
      grid-template-columns: repeat(6, 1fr);
    }
    .fourcards-item-card:nth-child(-n+3) {
      grid-column: span 6;
    }
    .fourcards-item-card:nth-child(4) {
      grid-column: span 6;
      flex-direction: column;
      text-align: center;
      gap: 0px;
    }
    .fourcards-item-card:nth-child(4) img {
      margin-bottom: 20px;
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 575.98px) {
    .fourcards-list {
      grid-template-columns: 1fr;
    }
    .fourcards-item-card {
      grid-column: span 1 !important;
      flex-direction: column !important;
      text-align: center !important;
    }
    .fourcards-item-card:nth-child(4) img {
      margin-bottom: 20px;
      width: 50px;
      height: 50px;
    }
  }
  
/* /Four cards секция */

/* Six cards секция */
.sixcards {
}
.sixcards-title {
}
.sixcards-list {
}
.sixcards-item-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.sixcards-item-title {
}

.sixcards-button-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}
.sixcards-button {
}
/* /Six cards секция */

/* Icons секция */
.icons-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none
} 
.icons-list, 
.four-icons-list {
    justify-content: space-between;
}
.icons-item-card,
.four-icons-item-card {
    grid-column: span 4;
}
.icons-figure,
.four-icons-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.icons-figure > img, 
.four-icons-figure > img {
    max-width: 50%;
}
.icons-caption,
.four-icons-caption {
    padding-top: 1.25rem;
    text-align: center;
}
.icons-figure > picture > img {
	max-width: 50%;
}
.four-icons-figure > picture,
.icons-figure > picture {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 576px) {
    .icons-list {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 30px;
    }
}
@media (min-width: 1024px) {
    .icons-item-card,
    .four-icons-item-card {
        grid-column: span 2;
    }
}
/* /Icons секция */

/* Two-columns секция */
.two-columns-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* flex-wrap: wrap; */
}
.two-columns-text {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.two-columns-text > ul  {
    margin-bottom: 1.25rem;
}
.two-columns-text > ul > li {
    margin-bottom: 1.25rem;
}
.two-columns-text > ul > li > h4 {
    margin-bottom: 0.25rem;
    padding: 0;
    font-size: 1.6rem;
}
.two-columns-img {
    display: none;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}
@media (min-width: 992px) {
    .two-columns-content {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 1.875rem;
    }
    .two-columns-text {
        flex: 1 1 48%;
        align-items: flex-start;
        justify-content: center;
    }
    .two-columns-image {
        flex: 1 1 48%; 
    }
    .two-columns-img {
        display: block;
    }
}
.two-columns-text .form-input.form-input-consult {
    color: var(--dark) !important;
}
.two-columns-text .form-input.form-input-consult::-webkit-input-placeholder {
    color: var(--gray) !important;
}
.two-columns-text .form-input.form-input-consult::-moz-placeholder {
    color: var(--gray) !important;
}
.two-columns-text .form-input.form-input-consult:-ms-input-placeholder {
    color: var(--gray) !important;
}
.two-columns-text .form-input.form-input-consult::-ms-input-placeholder {
    color: var(--gray) !important;
}
.two-columns-text .form-input.form-input-consult::placeholder {
    color: var(--gray) !important;
}
/* /Two-columns секция */

/* Two-columns-reversed секция */
.two-columns-reversed-text > p:not(:last-child) {
    padding-bottom: 2rem;
}

.two-columns-reversed-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
/* /Two-columns-reversed секция */

/* Four-icons секция */
.four-icons-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none
}
.four-icons-item-card img {
    max-width: 40%;
}
/* /Four-icons секция */

/* Mobile */
.mobile-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: clamp(2rem, 5vw, 6rem);
    flex-wrap: wrap;
}

.mobile-image-container {
    /* flex: 0 1 100vw; */
    overflow: hidden;
    width: 295px;
}
.mobile-swiper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
}
.mobile-swipe {
    min-width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.mobile-title {
	text-align: center;
}
.swiper-slide-inner {
    text-align: center;
    font-style: italic;
}
.mobile-swipe-img {
    height: auto;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 295px;
    display: block;
}
.swiper-button-prev,
.swiper-button-next
 {
    color: var(--gray);

    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-button-prev {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.swiper-button-next {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.mobile-content-container {
    flex: 0 1 100vw;
    margin: 0 auto;
}
@media (min-width: 992px) {
    .mobile-flex-container {
        flex-wrap: nowrap;
    }
    .mobile-image-container {
        flex: 0 1 30vw;
    }
    .mobile-content-container {
        flex: 0 1 50vw;
        margin-left: auto;
    }
}
.mobile-content-wrapper p {
    margin-bottom: 15px;
}
.mobile-content-wrapper p:nth-child(odd) {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}
.mobile-content-wrapper p:nth-child(even) {
    margin-bottom: 3rem;
}

.mobile-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.mobile-icon {
    width: 140px;
    height: 40px;
}
.swiper-slide.swiper-slide-active,
.swiper-slide.swiper-slide-duplicate-active{
    transform: scale(1) !important;
}
/* Mobile end */

/* Footer */
.footer {
    color: var(--white);
    background-color: var(--dark);
}
.footer-container {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
}
.footer-consult {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-consult,
.footer-info,
.footer-addcolumns {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.footer-consult
{
    padding-bottom: 2rem;
}
.footer-title {
    color: var(--accent);
    font-weight: 600;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}
.footer-column-title {
    font-weight: 600;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}
.footer-line {
    height: 5px; 
    border: 0px solid var(--gray); 
    border-top-width: 1px;
}
.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
}
.footer-addcolumns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.footer-column {
    flex: 0 0 100%;
}
.footer-column-title-span {
    display: block;
}
.footer-subcolumns,
.footer-subcolumn-content {
	padding-bottom: 0;
}
.footer-subcolumn-title {
    font-size: 1.2rem;
    color: var(--accent);
}

.footer-subcolumn-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-subcolumn-item {
    margin-bottom: 15px;
}
.footer-addcolumn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-year {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}
.tech {
	padding-top: 20px;
    margin-bottom: 0;
}

.footer-addcolumn svg {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
}

@media (min-width: 768px) {
	.footer-column {
    	flex: 0 0 46%;
	}
    
    .footer-consult {
        flex-wrap: nowrap;
    }
}

/* Форма */

.wpcf7 {
	max-width: 100% !important;
}
.wpcf7-form.init.form-group,
.wpcf7-form.form-group.invalid {
	max-width: 97% !important;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.input-submit-wrapper {
	max-width: 100% !important;
	border: none;
    display: flex;
    justify-content: flex-start;
}
.input-submit-wrapper p {
    display: flex;
    justify-content: start;
    align-items: start;
    max-width: 100% !important;
	margin-bottom: 1.5rem;
}
.input-submit-wrapper p,
.form-input {    
    background: transparent;
    box-shadow: none !important;
    color: var(--white) !important;
    height: calc(1.3rem + .35rem + 1.3rem);
    position: relative;
    z-index: 1;
    border-radius: 2px 0 0 2px;
}
.input-submit-wrapper p span {
	max-width: 60% !important;
}
.form-input {    
	position: relative;
	font-size: 18px;
    padding: 9px 20px !important;
    border: 1px solid var(--gray) !important;
	max-width: 100%;
	width: 100%;
	margin: 0;
}
.form-input::placeholder {
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.5;
    color: var(--white) !important;
	font-size: 18px;
}
.input-submit-wrapper > p > span:nth(2) > span:nth(3) {
    margin: 0;
}
.input-submit-wrapper.wpcf7-list-item,
.input-submit-wrapper.wpcf7-list-item .mobile-form-acceptance {
    margin: 0 !important;
}
.wpcf7-list-item > label > input[type="checkbox"] {
    margin: 0;
    transform: scale(1.5);
    vertical-align: middle;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    border: none;
    width: 1rem !important;
    box-sizing: border-box;
}
.wpcf7-list-item {
    margin: 0 !important;
}
.wpcf7-list-item > label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.1rem;
}
.wpcf7-list-item > label > span {
    padding-left: 0.5rem !important;
    max-width: 100%;
    box-sizing: border-box; 
    word-break: break-word; 
}
.wpcf7-spinner {
    display: none !important;
    margin: 0;
    padding: 0;
    width: 1px !important;
    height: 1px !important;
}
.wpcf7-spinner::before {
    content: "";
    animation: none !important;
    transition: none !important;
    display: none !important;
    margin: 0;
    padding: 0;
    width: 1px !important;
    height: 1px !important;
}
.wpcf7-not-valid-tip {
    padding-top: 0.1rem;
	position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
	color: var(--accent-dark);
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0.8rem !important;
    border: none !important;
	color: var(--accent-dark);
	font-weight: 500;
}
.form-button {
    height: calc(1.3rem + .35rem + 1.3rem);    
}
.wpcf7-form.init.form-group p,
.wpcf7-form.form-group.invalid p {
	max-width: 100% !important;
}

.wpcf7-form.init.form-group p .wpcf7-form-control-wrap a,
.wpcf7-form.form-group.invalid p .wpcf7-form-control-wrap a {
	white-space: wrap;
	text-align: left;
}
/* Footer end */


/* Страница Новости */

.news-page {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
    background-color: var(--white);
}

.news-page-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.news-page-title {
    font-size: 2.5rem;
    color: var(--gray);
    font-weight: 600;
    margin: 0;
	margin-top: 80px;
}

.news-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    position: relative;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-image {
    width: 100%;
    height: 270px;
    overflow: hidden;
    padding: 1.5rem;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-title {
    font-size: 1.25rem;
    color: var(--gray);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.news-card-date {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.news-card-excerpt {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-card-read-more {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.news-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.page-numbers {
	display: flex;
	align-items: center;
	gap: 5px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.page-numbers li {
	margin: 0;
    padding: 0;
}

.page-numbers a, span.current {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--gray);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.page-numbers a:hover {
	background-color: var(--accent);
	color: var(--white);
}

.page-numbers span.current {
	background-color: var(--accent);
	color: var(--white);
}

@media (min-width: 768px) {
    .news-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.single-news-page .wp-block-list {
    list-style-type: disc;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}
/* Страница Новости */
.post-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
	flex-wrap: wrap;
}
@media (min-width: 768px) {
	.post-navigation {
		display: flex;
		justify-content: space-between;
		margin-top: 30px;
	}
}
.post-navigation a {
    background: #2abb2d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
}
.post-date,
.post-author {
	text-align: end;
}
.category-badge {
    display: inline-block;
    padding: 4px 10px;
    margin-right: 6px;
    background-color: #ffffff; 
    color: #2abb2d;
    border-radius: 12px;
	border: 1px #2abb2d solid;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.category-badge:hover {
    background-color: #2abb2d;
	color: #ffffff;
}

.card-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

/* Страница Скачать программу */
.name-width {
	width: 40%;
}