@font-face {
    font-family: 'GM';
    src: url('fonts/Geometria.eot');
    src: local('Geometria'),
        url('fonts/Geometria.eot?#iefix') format('embedded-opentype'),
        url('fonts/Geometria.woff') format('woff'),
        url('fonts/Geometria.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GM';
    src: url('fonts/Geometria-Medium.eot');
    src: local('Geometria Medium'), local('Geometria-Medium'),
        url('fonts/Geometria-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/Geometria-Medium.woff') format('woff'),
        url('fonts/Geometria-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GM';
    src: url('fonts/Geometria-Bold.eot');
    src: local('Geometria Bold'), local('Geometria-Bold'),
        url('fonts/Geometria-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Geometria-Bold.woff') format('woff'),
        url('fonts/Geometria-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}



@font-face {
    font-family: 'GM';
    src: url('fonts/Geometria-ExtraBold.eot');
    src: local('Geometria ExtraBold'), local('Geometria-ExtraBold'),
        url('fonts/Geometria-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Geometria-ExtraBold.woff') format('woff'),
        url('fonts/Geometria-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


:root {
  --color-primary: #da1921;
  --color-text-dark: #2d2e33;
  --color-text-dark-secondary: #111111;
  --color-text-light: #ffffff;
  --color-background-light: #f5f6f7;
  --color-background-white: #ffffff;
  --color-background-dark: #2d2e33;
  --ix: calc(1vw + 1vh);
  --1b: calc(100% - var(--md) * 2);
  --2b: calc(100% / 2 - var(--md) * 2);
  --3b: calc(100% / 3 - var(--md) * 2);
  --4b: calc(100% / 4 - var(--md) * 2);
  --5b: calc(100% / 5 - var(--md) * 2);
  --6b: calc(100% / 6 - var(--md) * 2);
  --12b: calc(100% / 12 - var(--md) * 2);
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; margin: 0;}
body, html { font-size: 100%; padding: 0; margin: 0; line-height: 1;}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: 'GM', sans-serif;
  background-color: var(--color-background-white);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

a {
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    color: var(--color-primary);
}

a:hover {
    opacity: 0.9;
}

.container {
    width: 100%;
    max-width: 1410px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 40px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

/* CSS for section section:header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-top: 30px;
    padding-bottom: 30px;
}
.header-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    width: 70px;
    height: 80px;
}
.main-nav {
    display: flex;
    gap: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    letter-spacing: 1.6px;
}
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 25px;
}
.lang-switcher img {
    width: 25px;
    height: 25px;
}
@media (max-width: 1200px) {
    .main-nav {
        display: none; 
    }
}
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    .lang-switcher {
        gap: 10px;
    }
}

/* CSS for section section:hero */
#section-hero {
    position: relative;
    padding: 200px 0 150px;
    background-image: url('images/bg-h.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-ca {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--color-text-dark);
    margin-bottom: 50px;
    text-transform: uppercase;
}
.hero-title {
    font-weight: 800;
    font-size: 80px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--color-text-dark);
    margin-bottom: 60px;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: var(--color-text-dark);
}
.hero-feature-item img {
    width: 32px;
    height: 32px;
}
.hero-description {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-text-dark);
    max-width: 930px;
    margin-bottom: 70px;
}
@media (max-width: 1024px) {
    #section-hero {
        padding: 160px 0 80px;
    }
    .hero-title {
        font-size: 50px;
    }
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    .hero-feature-item {
        font-size: 24px;
    }
    .hero-description {
        font-size: 18px;
    }
}
@media (max-width: 768px) {   
    .hero-ca {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-feature-item {
        font-size: 20px;
    }
    .hero-description {
        font-size: 16px;
    }
}

/* CSS for section section:production */
#section-production {
    background-color: var(--color-background-light);
    padding: 134px 0;
}
.production-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 65px;
}
.production-image-wrapper {
    position: relative;
    flex-shrink: 0;
}
.production-image {
    width: 776px;
    height: 670px;
    object-fit: cover;
    border-radius: 2px;
}
.production-image-border {
    position: absolute;
    top: 60px;
    left: 60px;
    width: calc(100% - 60px);
    height: calc(100%);
    border: 1px solid var(--color-text-dark-secondary);
    z-index: 3;
}
.production-text {
    width: 100%;
    padding-top: 50px;
    padding-right: 60px;
}
.production-title {
    font-weight: 800;
    font-size: 44px;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 33px;
}
.production-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.78;
    color: #000000;
}
@media (max-width: 1400px) {
    .production-container {
        gap: 30px;
        align-items: flex-start;
    }
    .production-image {
        width: 100%;
        height: auto;
    }
    .production-image-wrapper {
        flex-basis: 50%;
    }
    .production-text {
        flex-basis: 50%;
    }
    .production-image-border {
        display: none;
    }
}
@media (max-width: 768px) {
    #section-production {
        padding: 60px 0;
    }
    .production-container {
        flex-direction: column;
    }
    .production-title {
        font-size: 32px;
    }
    .production-text {
        padding-right: 0;
    }
}

/* CSS for section section:technology */
#section-technology {
    padding: 120px 0 130px;
    background-image: linear-gradient(270deg, rgba(45, 46, 51, 0.3) 0%, rgba(45, 46, 51, 0.75) 40%, rgba(45, 46, 51, 0.95) 100%), url('images/bg-st.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
}
.technology-content {
    max-width: 900px;
}
.technology-title {
    font-weight: 800;
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 30px;
}
.technology-intro {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 50px;
}
.technology-h {
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 40px;
}
.technology-features-list {
    list-style: none;
    padding-left: 0;
    font-size: 18px;
    line-height: 1.67;
}
.technology-features-list li {
    position: relative;
    padding-left: 51px;
    margin-bottom: 15px;
}
.technology-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px; /* Vertically center */
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}
@media (max-width: 768px) {
    #section-technology {
        padding: 60px 0;
    }
    .technology-title {
        font-size: 32px;
    }
    .technology-intro {
        font-size: 18px;
    }
    .technology-intro strong {
        font-size: 22px;
    }
    .technology-features-list {
        font-size: 16px;
    }
}

/* CSS for section section:solutions */
#section-solutions {
    background-color: var(--color-background-light);
    padding: 105px 0 90px;
    text-align: center;
}
.solutions-title {
    font-weight: 800;
    font-size: 44px;
    margin-bottom: 25px;
}
.solutions-subtitle {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 75px;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
    margin-bottom: 90px;
}
.solution-card {
    background-color: var(--color-background-white);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.solution-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.solution-card .card-text {
    padding: 30px 20px 50px;
}
.solution-card h3 {
    font-weight: 800;
    font-size: 22px;
    color: #000000;
    margin-bottom: 17px;
}
.solution-card p {
    font-size: 18px;
    line-height: 1.25;
    color: var(--color-text-dark-secondary);
}
.solutions-notice {
    display: flex;
    align-items: center;
    gap: 32px;
    border: 2px solid var(--color-primary);
    padding: 31px 57px;
    text-align: left;
}
.solutions-notice img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.solutions-notice p {
    font-size: 24px;
    line-height: 1.58;
    color: #000000;
}
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solutions-notice {
        flex-direction: column;
        text-align: center;
    }
}
 @media (max-width: 768px) {
    #section-solutions {
        padding: 60px 0;
    }
    .solutions-title {
        font-size: 32px;
    }
    .solutions-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .solutions-notice p {
        font-size: 18px;
    }
}

/* CSS for section section:why-us */
#section-why-us {
    padding: 86px 0 120px;
    background-image: url('images/bg-w.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}
.why-us-title {
    font-weight: 800;
    font-size: 44px;
    color: var(--color-text-dark-secondary);
    margin-bottom: 80px;
}
.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
}
.why-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--3b);
    margin-bottom: 30px;
}
.why-us-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--color-background-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
}
.why-us-icon-wrapper img {
    width: 70px;
    height: 70px;
}
.why-us-item h3 {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.25;
    color: var(--color-text-dark-secondary);
    margin-bottom: 25px;
}
.why-us-item p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-dark-secondary);
}
@media (max-width: 1400px) {
    .why-us-grid {
        justify-content: space-around;
    }
    .why-us-item {
        flex-basis: 45%;
    }
}
@media (max-width: 768px) {
    #section-why-us {
        padding: 60px 0;
    }
    .why-us-item {
        width: 100%;
    }
    .why-us-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .why-us-grid {
        flex-direction: column;
        align-items: center;
    }
    .why-us-item {
        flex-basis: 100%;
    }
}

/* CSS for section section:contact */
#section-contact {
    padding: 106px 0 110px;
    background-color: var(--color-background-white);
}
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.contact-info {
    max-width: 690px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.contact-title {
    font-weight: 800;
    font-size: 44px;
    margin-bottom: 100px;
}
.contact-item {
    width: 100%;
    margin-bottom: 50px;
}
.contact-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #656565;
    margin-bottom: 20px;
}
.contact-value {
    font-size: 18px;
    line-height: 1.8;
}
.contact-form-wrapper {
    background-color: #efefef;
    padding: 76px 115px;
    width: 690px;
    box-sizing: border-box;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form input {
    height: 60px;
    border-bottom: 1px solid #bfbfbf;
    background-color: transparent;
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 18px;
    color: #000000;
}
.contact-form input::placeholder {
    color: #000000;
    opacity: 0.5;
}
.contact-form button {
    margin-top: 15px;
    height: 70px;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px 10px;
}
@media (max-width: 1400px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-info {
        max-width: 100%;
        text-align: center;
    }
    .contact-title {
        margin-bottom: 40px;
    }
    .contact-form-wrapper {
        width: 100%;
        max-width: 690px;
        padding: 40px;
    }
}
@media (max-width: 768px) {
    #section-contact {
        padding: 60px 0;
    }
    .contact-title {
        font-size: 32px;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
}






















.form-w {
    display: none;
    min-width: 260px;
    max-width: 500px !important;
    height: auto;
    color: var(--color-text-dark);
}

.form-block {
    position: relative;
    width: 100%;
    height: 100%;
}

.form-block-d-h {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}

.form-block-d-t {
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
}

.form-block-ft {
  font-size: 12px;
  margin-bottom: 5px;
}

.form-block-f input, .form-block-f select {
    width: 100%;
    font-size: 22px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding-left: 60px;
}

.form-checkbox {
  margin: var(--md);
}

.form-block .form-checkbox {
  margin: 20px 0;
}

.c-checkbox {
  height: 20px;
}

.c-checkbox > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.c-checkbox > span {
  display: inline-block;
  position: relative;
    font-size: 12px;
    line-height: 1.5;
    padding-left: 30px;
}

.c-checkbox > span::before {
  position: absolute;
  top: -2px;
  left: 0;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 3px solid #fff;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.form-block .c-checkbox > span::before {
    border: 3px solid #eee;
    background-color: #eee;
}

.c-checkbox > span a {
    border-bottom: 1px solid;
}

.c-checkbox>input:not(:disabled):not(:checked)+span:hover::before {
    border-color: #fff;
}

.c-checkbox>input:not(:disabled):active+span::before {
    background-color: #fff;
    border-color: #fff;
}

.c-checkbox>input:focus+span::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.c-checkbox>input:focus:not(:checked)+span::before {
    border-color: #80bdff;
}

.c-checkbox>input:checked+span::before {
    border-color: #fff;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23912c3b' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.c-checkbox>input:disabled+span::before {
    background-color: #e9ecef;
}

input[name=name] {
  background: url(images/form-man.png) no-repeat 20px 50%;
  padding-left: 60px;
}

input[name=phone] {
  background: url(images/form-phone.png) no-repeat 20px 50%;
  padding-left: 60px;
}

input[name=e_mail] {
  background: url(images/form-mail.png) no-repeat 20px 50%;
  padding-left: 60px;
}


.form-block-btn input[type=submit] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 32px;
    border-radius: 2px;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.form-block-mes {
    font-size: 20px;
    text-align: center;
    padding: 15px;
    background-color: #eee;
    text-align: center;
    margin-bottom: 20px;
}

.b-top {
  z-index:12;
  position:fixed;
  right:20px;
  bottom:80px;
  width:64px;
  opacity: 0.6;
  filter:alpha(opacity=60);
}

.b-top:hover {
  opacity:1;
  filter:alpha(opacity=100);
  cursor:pointer;
}

.b-top-but {
  z-index:2600;
  position:absolute;
  display:block;
  left:0px;
  font-size: 12px;
  bottom:0;
  margin:0 0 0 0;
  padding:32px 12px 10px;
  color:white;
  background: #2a2e43 url(images/b-j-top.png) no-repeat 50% 11px;
  border-radius:3px;
}



@media screen and (min-width:1201px) {
  :root {
    --md: 15px;
    --pd: 15px;
  }
}

@media screen and (max-width:1200px) {
  :root {
    --md: 10px;
    --pd: 10px;
  }
}

@media screen and (min-width:1440px) {
  .b {
    width: 1440px;
  }

  .header-block-nav-mob, .f-inf-nav-mob {
    display: none;
  }
}

@media screen and (min-width:1201px) and (max-width:1439px) {
  .b {
    width: 1200px;
  }
  
  input[type=submit], form button, .but {
    font-size: 20px;
    padding: 0 20px;
  }

  .header-block-nav nav, .f-inf-nav nav {
    display: none;
  }

}

@media screen and (min-width:961px) and (max-width:1200px) {
  .b {
    width: 960px;
  }
  
  input[type=submit], form button, .but {
    font-size: 20px;
    padding: 0 20px;
  }

  .header-block-nav nav, .f-inf-nav nav {
    display: none;
  }

}

@media screen and (min-width:720px) and (max-width:960px) {
  .b {
    width: 720px;
  }
  
  input[type=submit], form button, .but {
    font-size: 20px;
    padding: 0 20px;
  }

  .header-block-nav nav, .f-inf-nav nav {
    display: none;
  }

}

@media screen and (max-width:719px) {
  body {
    font-size: 14px;
  }

  .b {
    width: 320px;
  }

  input[type=submit], form button, .but {
    min-width: 240px;
    padding: 0 20px;
    font-size: 16px;
  }

  .btn-secondary {
    padding: 20px 25px;
    font-size: 14px;
  }


  .form-block-d-h {
    font-size: 20px;
  }

  .form-block-d-t {
    font-size: 14px;
  }

}