* {
    box-sizing: border-box;
    text-decoration: none;
}
body {
    margin:0px;
    color:#471C00;
    font-size:17px;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}
body.no-scroll {
  overflow-y: hidden;
}
img {
    max-width: 100%;
}
a {
    color:#471C00;
}
h1, h2, h3, h4 {
    margin:0;
    padding:0;
    font-weight: normal;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    height: 100%;
    pointer-events: none;
}
#status {
    pointer-events: none;
    width: 150px;
    height: 150px;
    position: fixed;
    left: 50%;
    top: 50%;
    background-image: url(../img/preloader.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin: -75px 0 0 -75px;
    
    /* Add the animation property here */
    animation: spin 3s linear infinite;
}

/* Define the keyframes for the rotation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.container {
    width:100%;
    max-width: 1280px;
    margin:0 auto;
    padding:0 40px;
}
.header_wrapper {
    position: fixed;
      top:0;
      left:0;
      width: 100%;
      z-index: 999;
      background: #fff;
      transition: all 0.3s ease;
}
.header_wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%); /* Hidden above when fixed */
}
.header_wrapper.fixed.show {
  transform: translateY(0); /* Visible when scrolling up */
}
.header_spacer {
  height: 100px;
}
.header {
    height:100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    line-height: 0;
}
.logo img {
    height: 60px;
}
.menu_trigger {
  display: none;
}
.menu_trigger.active {
  display: flex;
}
.mob_menu {
  display: none;
}
.mob_menu.active {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top:100px;
  left:0;
  width: 100%;
  height: calc(100dvh - 100px);
  z-index: 99999;
  background: #FCD901;
  padding:0 20px;
}
.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    height: 100%;
}
.menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.menu > li > a {
    height: 100%;
    font-weight: 600;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}
.menu > li.has-submenu > a {
    cursor: default;
}
.arrow {
    display: none;
    margin:2px 0 0 0;
    font-size: 11px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu > li {
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}
.menu > li:hover {
    border-bottom: 4px solid #FCD901;
}
.menu > li:hover > a {
    color: #e1c200;
}
/* Rotates Arrow to Point Up on Hover */
.menu > li:hover .arrow {
    transform: rotate(180deg);
    color: #471C00;
}
/* Submenu: Anchored at top, grows downward */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #471C00;
    min-width: 240px;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 3px; 
    overflow: hidden; 
    /* Expansion Animation */
    max-height: 0; 
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
/* On Hover: Increase Height */
.menu > li:hover .submenu {
    max-height: 500px; /* Large enough for content */
    opacity: 1;
    visibility: visible;
    padding: 15px 0; /* Padding reveals as it grows */
}
.submenu li a {
    display: block;
    padding: 12px 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 16px;
}
.submenu li a:hover {
    color: #FCD901;
}
.header_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 100px;
    background: #FCD901;
    font-weight: 700;
    transition: all 0.2s ease;
}
.header_cta:hover {
    background: #471C00;
    color: #FBD801;
}
.hero_wrapper {
    position: relative;
}
.hero_arrows {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.hero_arrows span {
    width: 100%;
    max-width: 1280px;
    padding:0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hero_arrows div {
    width: 60px;
    height: 60px;
    background: #471C00;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.2s ease;
    cursor: pointer;
}
.hero_arrows div:last-child {
    background: #FCD901;
}
.hero_arrows div svg {
    width: 24px;
    height: 24px;
    fill: #FCD901;
    transition: all 0.2s ease;
}
.hero_arrows div:last-child svg {
    fill: #471C00;
}
.hero_arrows div:hover {
    background: #fff;
}
.hero_arrows div:hover svg {
    fill: #471C00;
}
.hero {
    position: relative;
}
.hero.present {
    background: #012D74;
}
.hero_photo {
    height: calc(100dvh - 200px);
    line-height: 0;
}
.hero.present .hero_photo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero_photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}
.hero.present .hero_photo img {
    max-width: 1000px;
    height: auto;
    filter:none;
}
.hero_info {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(40 51 61 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero_content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    padding:0 40px;
}
.hero_title {
    width: 80%;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 48px;
}
.hero_desc {
    width: 70%;
    margin:40px 0 0 0;
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
}
.hero_cta {
    margin:50px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero_cta a {
    height: 56px;
    padding:0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FCD901;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    transition: all 0.2s ease;
}
.hero_cta a svg {
    margin:0 0 0 16px;
    width: 12px;
    height: 12px;
    fill:#471C00;
    transition: all 0.2s ease;
}
.hero_cta a:hover {
    background: #471C00;
    color: #fff;
}
.hero_cta a:hover svg {
    fill:#FCD901;
    transform: rotate(45deg); 
}
.digits_wrapper {
    margin:-60px 0 0;
    position: relative;
    z-index: 1;
}
.digits_split {
    display: flex;
    justify-content: space-between;
}
.digits_caption {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    padding:60px 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 30%;
    font-size: 20px;
    color: #85766c;
}
.digits {
    background: #FCD901;
    width: 70%;
    height: 160px;
    padding:0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
}
.digits div {
    
}
.digits div p.digit_count {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    margin:0;
    font-size: 45px;
}
.digits div p.digit_desc {
    margin:5px 0 0 0;
    font-weight: 300;
    font-size: 22px;
}
.section_wrapper {
    padding:120px 0;
}
.section_wrapper.no_top_padding {
    padding-top: 0px;
}
.section_wrapper.no_bottom_padding {
    padding-bottom: 0px;
}
.section_wrapper.no_top_margin {
    margin-top: 0px !important;
}
.section_wrapper.no_bottom_margin {
    margin-bottom: 0px !important;
}
.section_wrapper.with_margin {
    padding:0;
    margin:120px 0;
}
.section_wrapper.relative {
    position: relative;
}
.section_wrapper.grey {
    background: #ededed;
}
.section_wrapper.brown {
    background: #471C00;
}
.section {

}
.section_header_with_arrows {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_header {
    
}
.section_header_with_arrows.section_header {
    width: 70%;
}
.section_header.center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.section_intro {
    font-size: 20px;
    color: #e1c200;
    font-weight: 500;
    margin:0 0 15px 0;
}
.section_title {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    width: 100%;
    max-width: 700px;
}
.section_title.light {
    color: #fff;
}
.section_title.full {
    max-width: 100%;
}
.section_subtitle {
    margin:30px 0 0 0;
    font-size: 24px;
    color: #e1c200;
}
.section_desc {
    margin:30px 0 0 0;
    max-width: 900px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: #85766c;
}
.section_cta {
    margin:50px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section_cta.center {
    justify-content: center;
}
.section_cta a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom:1px solid #e1c200;
    font-weight: 700;
    transition: all 0.2s ease;
    text-transform: uppercase;
}
.section_cta.light a {
    color: #fff;
}
.section_cta a svg {
    margin:-1px 0 0 15px;
    width: 12px;
    height: 12px;
    fill:#e1c200;
    transition: all 0.2s ease;
}
.section_cta a:hover {
    border-bottom:1px solid transparent;
}
.section_cta a:hover svg {
    transform: rotate(45deg); 
}
.section_about {
    margin:40px 0 0 0;
    width: 70%;
}
.section_about p {
    font-size: 20px;
    line-height: 30px;
    color: #85766c;
    margin:0 0 40px 0;
}
.section_about p:last-child {
    margin:0;
}
.section_about p.section_about_highlight {
    font-weight: 600;
}
.products_slider_wrapper {
    margin:0 -20px;
}
.products_arrows {
    margin:22px 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.products_arrows div {
    width: 60px;
    height: 60px;
    background: #471C00;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.2s ease;
    cursor: pointer;
}
.products_arrows div svg {
    width: 24px;
    height: 24px;
    fill: #FCD901;
    transition: all 0.2s ease;
}
.products_arrows div:hover {
    background: #fff;
}
.products_arrows div:hover svg {
    fill: #471C00;
}
.products_arrows div:last-child {
    background: #FCD901;
}
.products_arrows div:last-child:hover {
    background: #fff;
}
.products_arrows div:last-child svg {
    fill: #471C00;
}
.section_products {
    margin:80px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.section_products.inside {
    margin:0;
    flex-wrap: wrap;
}
.product_item {
    margin:0 20px;
}
.section_products.inside .product_item {
    margin:80px 0 0 0;
    width: calc(100% / 3 - 20px);
}
.product_photo {
    line-height: 0;
    overflow: hidden;
}
.product_photo img {
    transition: all 0.2s ease;
}
.product_item:hover .product_photo img {
    transform: scale(1.1);
}
.product_info {
    margin:15px 0 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product_info h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 33px;
    width: calc(100% - 80px);
    color: #85766c;
    transition: all 0.2s ease;
}
.product_info span {
    margin:10px 0 0 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.product_info span svg {
    fill: #e1c200;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}
.product_item:hover .product_info span svg {
    transform: rotate(45deg);
}
.product_item:hover {
    cursor: pointer;
}
.product_item:hover .product_info h2 {
    color: #471C00;
}
.section_split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_split_info {
    width: calc(50% - 50px);
    height: 100%;
    padding:60px 0;
}
.section_split_info_desc {
    margin: 40px 0 0 0;
    font-size: 20px;
    line-height: 30px;
    color: #85766c;
}
.section_split_info_desc p {
    margin:0 0 40px 0;
}
.section_split_info_desc p:last-child {
    margin:0;
}
.section_split_info_spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin:20px 0 0 0;
}
.section_split_info_spec div {
    width: 50%;
    margin:15px 0 0 0;
    font-size: 19px;
    line-height: 28.5px;
}
.section_split_info_spec div div {
    font-weight: 600;
    width: 100%;
}
.section_split_info_spec div span {
    display: block;
    margin:2px 0 0 0;
    color: #85766c;
}
.section_split_photo {
    position: absolute;
    top:0;
    right:0;
    width: calc(50% - 50px);
    line-height: 0;
    height: 100%;
}
.section_split_photo.fsc {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #285C4D;
}
.section_split.left_photo .section_split_photo {
    right:unset;
    left:0;
}
.section_list_spacer {
    width: calc(50% - 50px);
}
.section_split_photo span {
    position: absolute;
    z-index: 1;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgb(40 51 61 / 20%);
}
.section_split_photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.section_split_photo.fsc img {
    width: auto;
    height: 45%;
}
.section_split_photo iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.section_promo {
    margin:50px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.section_promo p {
    width: calc(50% - 50px);
    font-size: 24px;
    line-height: 36px;
    font-weight: 100;
    color: #fff;
    opacity: 0.7;
    margin:0;
}
.section_industry {
    margin:80px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.industry_item {
    width: calc(50% - 50px);
    background: #EDEDED;
    padding:60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    transition: all 0.2s ease;
    cursor: pointer;
}
.industry_item:hover {
    background: #471C00;
}
.industry_icon {
    
}
.industry_icon svg {
    width: 70px;
    height: 70px;
    fill:#e1c200;
    transition: all 0.2s ease;
}
.industry_title {
    margin:30px 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 33px;
    transition: all 0.2s ease;
}
.industry_item:hover .industry_title {
    color:#fff;
}
.industry_desc {
    margin:30px 0 0 0;
    font-size: 19px;
    line-height: 28.5px;
    color: #85766c;
    transition: all 0.2s ease;
}
.industry_item:hover .industry_desc {
    color:#bdab9f;
}
.industry_cta {
    width: 100%;
    margin:40px 0 0 0;
    padding:20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top:1px solid #e1c200;
    font-weight: 700;
    transition: all 0.2s ease;
    text-transform: uppercase;
}
.industry_item:hover .industry_cta {
    color: #fff;
}
.industry_cta svg {
    margin:-1px 0 0 15px;
    width: 12px;
    height: 12px;
    fill:#e1c200;
    transition: all 0.2s ease;
}
.industry_item:hover .industry_cta svg {
    transform: rotate(45deg);
}
.bread_wrapper {
    background: #EDEDED;
}
.bread {
    padding:20px 0;
}
.bread a {
    font-size: 16px;
    color: #471C00;
    font-weight: 500;
}
.bread a:hover {
    color: #e1c200;
}
.bread span {
    margin:0 15px;
    font-size: 12px;
    color: #e1c200;
}
.section_advantages {
    margin: 80px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.section_advantages.four {
    flex-wrap: wrap;
    margin:60px 0 0 0;
}
.advatanges_item {
    width: calc(100% / 3 - 20px);
    background: #EDEDED;
    padding:60px;
}
.section_advantages.four .advatanges_item {
    width: calc(100% / 2 - 10px);
    margin:20px 0 0 0;
}
.advantages_icon {

}
.advantages_icon svg {
    width: 70px;
    height: 70px;
    fill:#e1c200;
}
.advantages_title {
    margin: 30px 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 33px;
    transition: all 0.2s ease;
}
.advantages_desc {
    margin: 30px 0 0 0;
    font-size: 19px;
    line-height: 28.5px;
    color: #85766c;
    transition: all 0.2s ease;
}
.single_product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single_product_photo {
    width: calc(50% - 10px);
}
.single_product_info {
    width: calc(50% - 10px);
    padding:0 80px 0 0;
}
.single_product_title {
    font-size: 36px;
    line-height: 54px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}
.single_product_subtitle {
    margin:30px 0 0 0;
    font-size: 24px;
    color: #e1c200;
}
.single_product_desc {
    margin: 30px 0 0 0;
    font-size: 20px;
    line-height: 30px;
    color: #85766c;
}
.section_product_spec {
    margin:40px 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product_spec_item {
    margin:40px 0 0 0;
    width: calc(50% - 10px);
    border-left: 2px solid #FCD901;
    padding:0 20px 0 40px;
    font-size: 18px;
    line-height: 27px;
}
.product_spec_item span {
    font-weight: 600;
}
.product_spec_item div {
    margin:6px 0 0 0;
    color: #85766c;
}
.section_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section_item {
    width: calc(50% - 30px);
}
.section_item_photo {
    line-height: 0;
}
.section_item_title {
    margin:15px 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 33px;
    width: calc(100% - 80px);
    color: #85766c;
    transition: all 0.2s ease;
}
.section_item.top_margin {
    margin:80px 0 0 0;
}
.footer_wrapper {
    margin:120px 0 0 0;
    background: #F2D101;
    padding:100px 0 60px 0;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_company_logo {
    width: calc(100% / 3);
}
.footer_company_logo img {
    height: 55px;
}
.footer_company_logo div {
    margin:20px 0 0 0;
    line-height: 25.5px;
}
.footer_company {
    width: calc(100% / 3);
}
.footer_company_info {

}
.footer_company_info div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin:0 0 22px 0;
}
.footer_company_info div:last-child {
    margin:0;
}
.footer_company_info div span {
    width: 30px;
}
.footer_company_info div div {
    width: calc(100% - 30px);
    
}
.footer_menu {
    
}
.footer_menu_split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_menu_split div {
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.footer_menu_split div:last-child {
    margin:0 0 0 80px;
}
.footer_menu_split div a {
    margin:0 0 22px 0;
}
.footer_menu_split div a:last-child {
    margin:0;
}
.footer_addon_wrapper {
    background: #F2D101;
}
.footer_addon {
    border-top: 1px solid #471C00;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_social {
    
}
.footer_social a {
    margin:0 20px 0 0;
    font-size: 24px;
    transition: all 0.3s ease;
}
.footer_social a:hover {
    opacity: 0.7;
}
.footer_social a:last-child {
    margin:0;
}
.footer_copy {
    font-size: 16px;
}


.faq-container {
  width: 100%;
}
/* Core Item Styling */
.faq-item {
  border-bottom: 1px solid #471C00;
  overflow: hidden;
  font-weight: bold;
  text-transform: uppercase;
}
/* Question Trigger */
.faq-question {
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
    color: #471C00;
}
/* Icon Rotation */
.faq-question svg {
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #471C00;
}

.faq-item.active svg {
    transform: rotate(180deg);
    color: #471C00;
}
.faq-item.active .faq-question {
  
}

/* Answer Wrapper - Keep display none initially */
.faq-answer {
    display: none; 
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding:0 0 15px 0;
}

.faq-answer a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #471C00;
    padding:10px 20px;
}

/* Active State Styles */
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content size */
}

.faq-single-link {

}
.faq-single-link a {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  color: #471C00;
  padding: 12px 0;
  border-bottom: 1px solid #471C00;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  color: #471C00;
}
.faq-single-link.last a {
  border:none;
}
.page_contact_wrapper {
    padding:120px 0;
}
.page_contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact_info_wrapper {
    width: calc(50% - 25px);
}
.contact_info {
    margin:40px 0 0 0;
    font-size: 20px;
}
.contact_info_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin:0 0 40px 0;
}
.contact_info_item span {
    width: 20px;
    text-align: center;
}
.contact_info_item div {
    margin:0 0 0 20px;
}
.contact_social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.contact_social a {
    margin:0 20px 0 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2D101;
    transition: all 0.3s ease;
}
.contact_social a:hover {
    background: #471C00;
    color: #fff;
}
.contact_social a:last-child {
    margin:0;
}
.contact_form_wrapper {
    width: calc(50% - 25px);
    background: #EDEDED;
    padding:60px;
    border-radius: 6px;
}
.contact_form {

}
.contact_form_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:0 0 20px 0;
}
.contact_form_field {
    width: 100%;
}
.contact_form_item.x2 .contact_form_field {
    width: calc(50% - 15px);
}
.contact_form_field div {
    margin:0 0 10px 0;
}
.contact_form_field div span {
    color: #ff0000;
}
.contact_form_field input {
    width: 100%;
    height: 46px;
    border:1px solid #471C00;
    outline:none;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding:0 15px;
    color: #471C00;
}
.contact_form_field textarea {
    width: 100%;
    height: 100px;
    border:1px solid #471C00;
    outline:none;
    resize: none;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding:15px;
    color: #471C00;
}
.contact_form_submit {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2D101;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.contact_form_submit:hover {
    background: #471C00;
    color: #fff;
}
.contact_map {
    width: 100%;
    height: 600px;
    line-height: 0;
    margin-bottom: -120px;
}
.contact_map iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.contact_error {
    width: 100%;
    margin:0 0 60px 0;
    height: 60px;
    background: #fff5f5;
    padding:0 20px;
    border:1px solid #ff0000;
    border-radius: 6px;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_error svg {
    color: #ff0000;
    font-size: 20px;
    margin:0 15px 0 0;
}
.contact_success {
    width: 100%;
    margin:0 0 60px 0;
    height: 60px;
    background: #eef6f2;
    padding:0 20px;
    border:1px solid #268a52;
    border-radius: 6px;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_success svg {
    color: #268a52;
    font-size: 20px;
    margin:0 15px 0 0;
}

.float_button_wrapper {
    width: 100%;
    height: 100svh;
    position: fixed;
    top:0;
    left:0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.float_button {
    pointer-events: all;
    background: #F2D101;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-border-top-left-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -moz-border-radius-topleft: 12px;
    -moz-border-radius-bottomleft: 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    transition: all 0.3s ease;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.float_button:hover {
    background: #471C00;
    color: #fff;
}
.float_button span {

}
.float_button span svg {
    width: 38px;
    height: 38px;
    fill:#471C00;
    margin-left: -4px;
    transition: all 0.3s ease;
}
.float_button:hover span svg {
    fill:#fff;
}
.float_button div {
    margin:4px 0 0 0;
    font-size: 14px;
    font-weight: 600;
}
@media only screen and (max-width : 1220px) {
    .menu {
        display: none;
    }
    .menu_trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      width:100px;
      height: 100px;
      font-size: 30px;
      margin-right: -40px;
    }
    .menu_open {
      background: #471C00;
      color: #FCD901;
    }
    .menu_close {
      display: none;
      background: #471C00;
      color: #FCD901;
    }
    .footer_wrapper {
        padding:100px 0;
    }
    .footer {
        flex-wrap: wrap;
    }
    .footer_menu {
        order:1;
        width: 100%;
        margin:0 0 60px 0;
    }
    .footer_menu_split div {
        width: 50%;
    }
    .footer_menu_split div:last-child {
        margin:0;
    }
    .footer_company {
        order:2;
        width: 50%;
        padding:0 40px 0 0;
    }
    .footer_company_logo {
        order:3;
        width: 50%;
    }
    .footer_social {
        width: 50%;
    }
    .footer_copy {
        width: 50%;
    }
}

@media only screen and (max-width : 1100px) {
    .digits_wrapper {
        margin:0 -40px;
    }
    .digits_split {
        flex-direction: column;
    }
    .digits_caption {
        width: 100%;
        order:2;
        margin:40px 0 0 0;
        padding:0 40px;
    }
    .digits {
        width: 100%;
        padding:0 40px;
        order:1;
    }
    .hero_arrows span {
        justify-content: flex-end;
    }
    .hero_photo {
        height: calc(100dvh - 100px);
    }
    .section_title {
        max-width: 100%;
    }
    .section_about {
        width: 100%;
    }
    .section_split {
        flex-direction: column;
        margin:0 -40px;
    }
    .section_split_photo {
        order:1;
        width: 100%;
        aspect-ratio: 16/9;
        position: relative;
    }
    .section_split_info {
        width: 100%;
        order:2;
        padding:60px 40px 0 40px;
    }
    .section_advantages {
        flex-wrap: wrap;
    }
    .advatanges_item {
        width: 100%;
        margin:0 0 40px 0;
    }
    .advatanges_item:last-child {
        margin:0;
    }
    .section_advantages.four {
        margin:40px 0 0 0;
    }
    .section_advantages.four .advatanges_item {
        width: 100%;
        margin:40px 0 0 0;
    }
}

@media only screen and (max-width : 1000px) {
    .section_promo {
        flex-direction: column;
    }
    .section_promo p {
        width: 100%;
    }
    .section_promo p:last-child {
        margin:40px 0 0 0;
    }
    .section_industry {
        flex-wrap: wrap;
    }
    .industry_item {
        width: 100%;
    }
    .industry_item:last-child {
        margin:40px 0 0 0;
    }
    .section_header_with_arrows {
        flex-wrap: wrap;
    }
    .section_header_with_arrows .section_header {
        text-align: center;
    }
    .products_arrows {
        display: none;
    }
    .products_slider_wrapper {
        margin:0 -60px;
    }
    .product_info span {
        width: 40px;
    }
    .hero_title {
        width: 100%;
    }
    .hero_desc {
        width: 100%;
    }
    .product_info span {
        display: none;
    }
    .product_info h2 {
        width: 100%;
    }
    .section_item_title {
        width: 100%;
    }
    .section_products.inside .product_item {
        width: calc(50% - 20px);
    }
    .section_item {
        width: calc(50% - 20px);
    }
    .single_product {
        flex-wrap: wrap;
    }
    .single_product_info {
        width: 100%;
        padding:0;
    }
    .single_product_photo {
        margin:60px 0 0 0;
        width: 100%;
    }
    .page_contact {
        flex-direction: column;
    }
    .contact_info_wrapper {
        width: 100%;
    }
    .contact_form_wrapper {
        margin:60px 0 0 0;
        width: 100%;
    }
}

@media only screen and (max-width : 800px) {
    .hero_title {
        font-size: 36px;
    }
    .hero_desc {
        font-size: 22px;
        line-height: 33px;
    }
    .digits div p.digit_count {
        font-size: 35px;
    }
    .digits div p.digit_desc {
        font-size: 20px;
        line-height: 30px;
    }
    .section_intro {
        font-size: 18px;
        margin:0 0 10px 0;
    }
    .section_title {
        font-size: 30px;
    }
    .section_promo p {
        font-size: 20px;
        line-height: 30px;
    }
    .industry_title {
        font-size: 20px;
        line-height: 30px;
    }
    .section_desc {
        font-size: 18px;
        line-height: 27px;
    }
    .footer_company {
        width: 100%;
        padding:0;
    }
    .footer_company_logo {
        margin:60px 0 0 0;
        width: 100%;
    }
    .product_info h2 {
        font-size: 18px;
        line-height: 27px;
    }
    .section_item_title {
        font-size: 18px;
        line-height: 27px;
    }
    .product_spec_item {
        width: 100%;
    }
    .product_spec_item {
        padding: 0 0 0 40px;
    }
    .single_product_title {
        font-size: 30px;
        line-height: 45px;
    }
    .single_product_desc {
        font-size: 18px;
        line-height: 27px;
    }
}

@media only screen and (max-width : 600px) {
    .container {
        padding:0 20px;
    }
    .hero_content {
        padding:0 20px;
    }
    .header {
        height: 80px;
    }
    .header_spacer {
        height: 80px;
    }
    .mob_menu.active {
        height: calc(100dvh - 80px);
        top:80px;
    }
    .logo img {
        height: 50px;
    }
    .menu_trigger {
      width:80px;
      height: 80px;
      margin-right: -20px;
      font-size: 26px;
    }
    .hero_photo {
        height: calc(100dvh - 130px);
    }
    .hero_info {
        padding-bottom: 80px;
    }
    .hero_title {
        font-size: 26px;
        line-height: 39px;
    }
    .hero_desc {
        font-size: 20px;
        line-height: 30px;
    }
    .hero_cta {
        display: none;
    }
    .hero_arrows span {
        justify-content: flex-start;
        padding:20px;
    }
    .digits {
        flex-wrap: wrap;
        height: auto;
    }
    .digits div {
        border-bottom:1px solid #471C00;
        padding:15px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .digits div:last-child {
        border:none;
    }
    .digits div p.digit_count {
        font-size: 22px;
        order:2;
    }
    .digits div p.digit_desc {
        margin:0;
        font-size: 16px;
        line-height: 24px;
        order:1;
    }
    .digits_caption {
        font-size: 20px;
        line-height: 30px;
    }
    .section_wrapper {
        padding:60px 0;
    }
    .section_intro {
        font-size: 16px;
    }
    .section_title {
        font-size: 22px;
        line-height: 33px;
    }
    .section_desc {
        font-size: 16px;
        line-height: 24px;
    }
    .section_about p {
        font-size: 17px;
        line-height: 25.5px;
    }
    .section_cta a {
        font-size: 16px;
    }
    .products_slider_wrapper {
        margin:0 -20px;
    }
    .product_item {
        margin:0 10px;
    }
    .product_info h2 {
        font-size: 15px;
        line-height: 22.5px;
    }
    .section_split_info_spec {
        margin:40px 0 0 0;
    }
    .section_split_info_desc {
        font-size: 17px;
        line-height: 25.5px;
    }
    .section_split_info_spec div {
        width: 100%;
        font-size: 15px;
        line-height: 22.5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top:1px solid #471C00;
        margin:0;
        padding:10px 0;
    }
    .section_split_info_spec div:last-child {
        border-bottom:1px solid #471C00;
    }
    .section_split_info_spec div div {
        width: 50%;
        padding:0;
        border:none;
    }
    .section_split_info_spec div span {
        margin:0;
        width: 50%;
        text-align: right;
    }
    .section_promo p {
        font-size: 17px;
        line-height: 25.5px;
    }
    .industry_item {
        padding:40px;
    }
    .industry_desc {
        font-size: 17px;
        line-height: 25.5px;
    }
    .industry_cta {
        font-size: 16px;
    }
    .section_wrapper.with_margin {
        margin:60px 0;
    }
    .footer_wrapper {
        margin:60px 0 0 0;
    }
    .section_about {
        margin:30px 0 0 0;
    }
    .section_about p {
        margin:0 0 30px 0;
    }
    .section_cta {
        margin:30px 0 0 0;
    }
    .section_products {
        margin:50px 0 0 0;
    }
    .section_split {
        margin:0 -20px;
    }
    .section_split_info {
        padding:30px 20px 0 20px;
    }
    .section_split_info_desc {
        margin:30px 0 0 0;
    }
    .section_promo {
        margin:30px 0 0 0;
    }
    .section_promo p:last-child {
        margin:30px 0 0 0;
    }
    .section_split_info_desc p {
        margin:0 0 30px 0;
    }
    .section_industry {
        margin:50px 0 0 0;
    }
    .industry_title {
        margin:15px 0 0 0;
        font-size: 18px;
        line-height: 27px;
    }
    .industry_cta {
        margin:30px 0 0 0;
    }
    .footer_menu {
        margin:0;
    }
    .footer_menu_split {
        flex-wrap: wrap;
    }
    .footer_menu_split div {
        width: 100%;
    }
    .footer_menu_split div:last-child {
        margin:22px 0 0 0;
    }
    .footer_menu_split div a {
        font-size: 15px;
    }
    .footer_wrapper {
        padding:60px 0 30px 0;
    }
    .footer_company {
        margin:30px 0 0 0;
        padding:30px 0 0 0;
        border-top: 1px solid #471C00;
    }
    .footer_company_info div span {
        font-size: 15px;
    }
    .footer_company_info div div {
        font-size: 15px;
        line-height: 22.5px;
    }
    .footer_company_logo {
        margin:30px 0 0 0;
        padding:30px 0 0 0;
        border-top: 1px solid #471C00;
    }
    .footer_company_logo img {
        height: 50px;
    }
    .footer_company_logo div {
        font-size: 15px;
        line-height: 22.5px;
    }
    .footer_addon {
        height: auto;
        padding:30px 0 80px 0;
        flex-wrap: wrap;
    }
    .footer_copy {
        width: 100%;
        margin:30px 0 0 0;
        font-size: 15px;
    }
    .bread {
        padding:12px 0;
    }
    .bread a {
        font-size: 14px;
        line-height: 21px;
    }
    .bread span {
        margin:0 10px;
        font-size: 10px;
    }
    .section_advantages {
        margin:50px 0 0 0;
    }
    .advatanges_item {
        padding:40px;
    }
    .advantages_title {
        margin:15px 0 0 0;
        font-size: 18px;
        line-height: 27px;
    }
    .advantages_desc {
        font-size: 17px;
        line-height: 25.5px;
    }
    .section_advantages.four {
        margin:10px 0 0 0;
    }
    .section_products.inside .product_item {
        width: calc(50% - 10px);
    }
    .section_products.inside .product_item {
        margin:40px 0 0 0;
    }
    .section_products.inside {
        margin:10px 0 0 0;
    }
    .section_item_title {
        font-size: 15px;
        line-height: 22.5px;
    }
    .section_item {
        width: calc(50% - 10px);
    }
    .section_item.top_margin {
        margin:40px 0 0 0;
    }
    .section_product_spec {
        margin:15px 0 0 0;
    }
    .product_spec_item {
        margin:30px 0 0 0;
        padding:0 0 0 30px;
    }
    .product_spec_item span {
        font-size: 16px;
        line-height: 24px;
    }
    .product_spec_item div {
        font-size: 15px;
        line-height: 22.5px;
    }
    .single_product_title {
        font-size: 22px;
        line-height: 33px;
    }
    .single_product_desc {
        font-size: 17px;
        line-height: 25.5px;
    }
    .single_product_photo {
        margin:50px 0 0 0;
    }
    .page_contact_wrapper {
        padding:60px 0;
    }
    .contact_info {
        margin:25px 0 0 0;
        font-size: 16px;
    }
    .contact_info_item {
        margin:0 0 20px 0;
    }
    .contact_social {
        margin:30px 0 0 0;
    }
    .contact_social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .contact_form_item {
        flex-direction: column;
    }
    .contact_form_item.x2 .contact_form_field {
        width: 100%;
    }
    .contact_form_item.x2 .contact_form_field:first-child {
        margin:0 0 20px 0;
    }
    .contact_form_field div {
        font-size: 16px;
    }
    .contact_form_wrapper {
        margin:40px 0 0 0;
        padding:0;
        background: none;
        border-radius: 0;
    }
    .contact_map {
        height: 300px;
        margin-bottom: -60px;
    }
    .float_button_wrapper {
        align-items: flex-end;
        top:unset;
        bottom:0;
    }
    .float_button {
        border:none;
        border-top: 1px solid #fff;
        width: 100%;
        flex-direction: row;
        -webkit-border-top-left-radius: 0;
        -webkit-border-bottom-left-radius: 0;
        -moz-border-radius-topleft: 0;
        -moz-border-radius-bottomleft: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        height: 50px;
    }
    .float_button span {
        margin:0 15px 0 0;
    }
    .float_button span svg {
        margin:0 0 -4px 0;
        width: 28px;
        height: 28px;
    }
    .float_button div {
        margin:0;
    }
}