/*   
Theme Name: ALFA
Theme URI: https://cursor.net.ua
Description: Alfa theme
Author: Serhii Rieznyk
Author URI: https://rieznyk.pro
Template: 
Version: 1.0
Last Updated: 04-12-2024
.

.
*/

:root {
    --main-white-text: #fff;
    --main-dark-text: #323232;
    --heading-dark: #000;
    --mustard: #C49355;
    --main: #F1E4D8;
    --dark-bg: #2C2125;
    --sand: #DCB581;
    --tomato: #D0382E;
}

@font-face {
    font-family:"Sergio";src:url(fonts/Sergio.eot);src:url(fonts/Sergio.eot?#iefix)format("embedded-opentype"),url(fonts/Sergio.woff)format("woff"),url(fonts/Sergio.ttf)format("truetype"),url(fonts/Sergio.svg#Sergio)format("svg");font-weight:400;font-style:normal
}

@font-face {
    font-family: 'e-Ukraine';
    src: url('fonts/e-Ukraine-Medium.woff2') format('woff2'),
        url('fonts/e-Ukraine-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'e-Ukraine';
    src: url('fonts/e-Ukraine-Regular.woff2') format('woff2'),
        url('fonts/e-Ukraine-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body,html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", serif;
    background-color: #fff
}

video {
    pointer-events: none;
}

h1, h2, h3, h4{
    font-family: 'e-Ukraine';
    color: var(--heading-dark);
    margin: 0;
}

h2{
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 40px;
}

p{
    margin: 0;
    padding: 0;
}

.subheading-red{
    color: var(--tomato);
    font-size: 22px;
    font-weight: 600;
    line-height: 170%;
    margin-bottom: 32px;
}

.cont p{
    color: var(--main-dark-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; 
    margin-bottom: 24px;
}

.cont p:last-child{
    margin-bottom: 0;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg);
    z-index: 10;
}

.site-header__wrapper {
    max-width: 1380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
/*    padding-top: 32px */
}

.site-header__logo {
    display: block;
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0
}

.menu-item {
    margin: 0 16px;
}

.menu-item a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--main);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;
    height: 90px;
}

.menu-item a:hover,.menu-item a.active {
    color: var(--mustard)
}

.menu .menu-item-has-children .sub-menu {
    top: 90px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 1284px; 
    list-style: none;
    display: none; 
    position: absolute;
    background-color: var(--main);
    padding: 48px;
    z-index: 1000;
    transition: opacity 0.7s ease, visibility 0.3s ease; /* Для плавності */
    opacity: 0;
    visibility: hidden;
    border-radius: 0 0 28px 28px;
}

.menu .menu-item-has-children .sub-menu::before{
    content: '';
    display: block;
    float: left;
    width: 236px;
    height: 236px;
    border-radius: 0 28px 28px 28px;
    margin-right: 56px;
}

.menu .menu-item-has-children.cat-1 .sub-menu::before{
    background: url(images/cat11.jpg) left center no-repeat;
}

.menu .menu-item-has-children.cat-2 .sub-menu::before{
    background: url(images/cat-2.jpg) left center no-repeat;
}

.menu .menu-item-has-children.cat-3 .sub-menu::before{
    background: url(images/cat-3.jpg) left center no-repeat;
}

.menu .menu-item-has-children.cat-4 .sub-menu::before{
    background: url(images/cat-4.jpg) left center no-repeat;
}

.menu .menu-item-has-children.cat-5 .sub-menu::before{
    background: url(images/cat-5.jpg) left center no-repeat;
}

.menu .menu-item-has-children .sub-menu li:first-child a{
    color: #000;
    font-family: 'e-Ukraine';
    font-size: 26px;
    font-style: normal;
    text-decoration: none;
    font-weight: 500;
    line-height: 120%; /* 31.2px */
}

.menu .menu-item-has-children .sub-menu li::before{
    content: '■';
    margin-right: 12px;
    display: inline-flex;
    width: 6px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.menu .menu-item-has-children .sub-menu li:first-child{
    margin-bottom: 12px;
}

.menu .menu-item-has-children .sub-menu li:first-child::before{
    content: '';
    margin-left: -18px;
}

.menu .menu-item-has-children .sub-menu li{
    margin-left: 292px;
}

.menu .menu-item-has-children .sub-menu.open {
    display: block;
    visibility: visible;
    opacity: 1;
    animation: fade 0.6s ease;
}

@keyframes fade {
  0% {    
    opacity: 0;
  }
  100% {    opacity: 1;  
  }
}

.menu .menu-item-has-children img{
    border-radius: 0 28px 28px 28px;
}

.menu .sub-menu .menu-item a{
    color: #000;
    height: 42px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.sub-menu .menu-item a:hover {
    color: var(--mustard); 
}


/* Header contacts */

.header-contact{
    display: flex;
    align-items: center;
    gap: 16px;
}

a.phone{
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    color: var(--sand);
    font-size: 14px;
    font-weight: 600;
    line-height: 190%;
    border-radius: 9px;
    border: 1px solid var(--sand);
    text-decoration: none;
    transition: all 250ms
}

a.phone:hover{
    border-color: var(--main);
}

.socials {
    display: flex;
    gap: 16px
}

.socials a {
    font-family: "Sergio";
    display: inline-block;
    color: var(--mustard);
    text-decoration: none;
    font-size: 30px;
    transition: all 250ms
}

.socials a:hover,
a.phone:hover {
    color: var(--main)
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.hero.inner {
    height: 726px
}

.hero__content {
    padding: 0 20px;
}

.hero__video,
.hero.inner > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,35,68,.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2
}

.inner .overlay {
    background-color: rgba(0,0,0,.3);
}

.inner .hero__content{
    margin-bottom: -90px;
}

.wrapper {
    max-width: 1380px;
    width: 100%;
    padding: 0;
    margin: 0 auto
}

.hero .wrapper {
    text-align: center
}

.hero__content h1,
.hero__content h2 {
    font-size: 100px;
    line-height: 112%;
    font-weight: 500;
    margin: 0;
    color: var(--main)
}

.hero__content h2{
    font-size: 40px;
    font-weight: 400;
    margin-top: 16px;
}

.hero__content p {
    margin-top: 48px;
    font-size: 32px;
    line-height: 150%;
    font-weight: 400;
    color: var(--main-white-text);
    max-width: 950px;
    margin-left: auto;
    margin-right: auto
}

.hero-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
}

.hero-btns a{
    display: flex;
    padding: 24px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--main);
    border-radius: 0px 28px 28px 28px;
    border: 3px solid var(--main);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all 250ms
}

.hero-btns a:hover{
    color: var(--mustard);
    border-color: var(--mustard);
    backdrop-filter: blur(2px);
}

.menu-toggle {
    display: none;
    background-color: transparent;
    border: 0;
    color: var(--main-white-text);
    font-size: 30px;
    cursor: pointer
}

#checkbox {
    display: none;
    z-index: 100000
}

.toggle {
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .5s;
    display: none;
    z-index: 1100
}

.bars {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px
}

#bar2 {
    transition-duration: .8s
}

#bar1,#bar3 {
    width: 70%
}

#checkbox:checked+.toggle .bars {
    position: absolute;
    transition-duration: .5s
}

#checkbox:checked+.toggle #bar2 {
    transform: scaleX(0);
    transition-duration: .5s
}

#checkbox:checked+.toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: .5s
}

#checkbox:checked+.toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: .5s
}

#checkbox:checked+.toggle {
    transition-duration: .5s;
    transform: rotate(180deg)
}

.site-header__logo-mob {
    display: none
}

.light,.dark {
    padding: 120px 0;
}

.dark {
    background-color: #002344
}

.cont-wrap {
    padding: 0 20px
}

/* Buttons */

.btn, .upper-left .btn,
input[type=submit] {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    display: inline-flex;
    height: 59px;
    transition: all 250ms;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto;
    padding: 0 48px;
    border-radius: 0px 16px 16px 16px;
    border: 3px solid var(--tomato);
    text-decoration: none;
    color: var(--tomato);
}

.upper-right input{
    color: var(--main-white-text);
}

.btn.back{
    border-color: var(--mustard);
    color: var(--mustard);
    padding: 0 24px;
}

.btn:hover,
input[type=submit]{
    background-color: var(--tomato);
    color: var(--main);
}

input[type=submit]{
    max-width: 292px;
}

input[type=submit]:hover{
    cursor: pointer;
}

.upper-left .btn{
    color: var(--main);
    border-color: var(--main);
}

.btn.back:hover{
    border-color: var(--mustard);
    color: var(--mustard);
    background-color: unset;
}

/* SECTION WITH PIC */

.section{
    height: auto;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;

}

.pic-section{
    position: relative;
    background-color: var(--main);
    height: 480px;
}

.cont-img img{
    position: absolute;
    top: 0;
    left: 54%;
    width: clamp(320px, 50%, 1052px);
}

.pic-section .wrapper{
    padding: 0 20px;
}

.pic-section .wrapper *{
    width: 50%;
    padding-left: calc( (100% - 1380px)/2 );
}

.pic-section .wrapper .btn{
    width: auto;
}

/* PIC BLOCK */

.pic-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--main);
}

.pic-block.rev{
    flex-direction: row-reverse;
}

.pic-block.rev p{
    font-size: 18px;
}

.pic-block__image {
  flex: 1; 
}

.pic-block__image img {
  max-width: 100%;
  height: auto;
  margin-bottom: -5px;
}

.pic-block__content {
  flex: 1;
  padding: 0 80px 0 0;
  margin-left: calc( (100vw - 1380px)/2 );
}

.pic-block__content.right{
    margin-left: 0;
    margin-right: calc( (100vw - 1380px)/2 );
    padding: 0 0 0 80px;
}

.pic-block__content .btn{
    margin-top: 16px;
}

/* PAGINATION */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    margin-top: 60px;
}

.pagination__arrow,.pagination__link,
a.page-numbers {
    text-decoration: none;
    padding: 5px 10px;
    margin: 0 5px;
    font-size: 16px;
    color: var(--main-dark-text);
    transition: color .3s;
    text-decoration: none;
}

.pagination__arrow--prev,.pagination__arrow--next,
a.prev, a.next {
    font-size: 32px;
}

.pagination__arrow--prev:hover,.pagination__arrow--next:hover {
    color: var(--sand);
}

.pagination__link {
    font-size: 22px;
    color: var(--main-dark-text);
    text-decoration: none;
    transition: color .3s;
}

.pagination__link--disabled {
    color: #bebebe;
    pointer-events: none;
}

.pagination__link:hover {
    color: var(--sand);
}

/* CAT THUMBS */

.cat-flex{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.owen-design .cat-flex{
    flex-wrap: wrap; 
}

.cat-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    gap: 24px;
    flex-basis: 100%;
}

.cat-item img{
    border-radius: 0px 28px 28px 28px;
    margin-bottom: 16px;
}

.cat-item h3,
.cards-icons h3{
    font-family: 'e-Ukraine';
    font-size: 34px;
    line-height: 120%;
    color: var(--mustard);
    text-align: center;
    font-weight: 500;
}

.cards-icons h3{
    font-size: 20px;
    text-align: left;
    font-weight: 400;
}

.cat-item p{
    font-size: 18px;
    line-height: 170%;
    text-align: center;
    margin-bottom: 0 !important;
}

.type img{
    height: 78px;
    width: auto;
    border-radius: 0;
    margin-bottom: 0;
}

.type h2,
.accessories h2{
    text-align: center;
}

.accessories .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accessories{
    padding-bottom: 0;
}

.accessories img{
    margin-top: 24px;
}

.accessories p{
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.type .cat-item{
    max-width: 100%;
}

.fuel-wrap img{
    width: auto;
    height: 40px;
}

.owens__wrap .fuel-wrap img{
    height: 32px;
}

/* UPPER FOOTER */

.upper-wrap{
    width: 100%;
    display: flex;
    align-items: stretch;
}

.upper-wrap h2{
    color: var(--main);
}

.upper-left{
    width: 50%;
    background-color: var(--tomato);
    position: relative;
    padding-top: 110px;
    min-height: 498px;
}

.upper-left .block-content{
    margin-left: calc( (100vw - 1380px)/2 );
    margin-right: 60px;
}

.upper-right .block-content{
    margin-right: calc( (100vw - 1380px)/2 );
    margin-left: 80px;
}

.upper-left img{
    position: absolute;
    bottom: 0;
    right: 60px;
}

.upper-right{
    width: 50%;
    padding-top: 110px;
    padding-bottom: 110px;
    background-color: #5D1815;
}

.block-content .subheading{
    color: var(--main);
    margin-bottom: 24px;
}

/* FORM */

.contact-form,
.popup_btn form,
.form-container form{
  display: flex;
  flex-direction: column;
  gap: 32px; 
  width: 100%;
  max-width: 490px; 
}

input {
    font-family: "Open sans", sans-serif;
    width: 100%;
    padding: 15px;
    border: 2px solid var(--main);
    box-sizing: border-box;
    border-radius: 10px;
    background: transparent;
}

input[type=tel]:focus,input[type=text]:focus,input[type=email]:focus,textarea:focus {
    border: 2px solid var(--sand);
    outline: 0
}

input::placeholder {
    color: var(--main);
    font-family: "Open sans", sans-serif;
    font-size: 16px;
}

input::-webkit-input-placeholder {
    color: var(--main);
    font-family: "Open sans", sans-serif;
    font-size: 16px;
}

.wpcf7-spinner{
    display: none !important;
}

/* TOP FOOTER */

.footer__top-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 146px;
}

.footer__top{
    background-color: var(--dark-bg);
    padding: 66px 16px;
}

.col-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.footer__top-nav{
    width: 100%;
}

.footer__top-nav .menu-bottom{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.footer__top-nav .menu-bottom .menu-item a{
    height: auto;
    color: var(--Sand, #DCB581);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}

.footer__top-nav .menu-bottom .sub-menu{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    transform: none;
    left: 0;
    width: auto;
    background: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    list-style: square;
    margin-left: 20px;
}

.footer__top-nav .menu-bottom .sub-menu li{
    color: var(--main);
    margin: 0;
}

.menu-bottom .menu-item{
    margin:0;
}

.footer__top-nav .menu-bottom .sub-menu::before{
    content: '';
    background: none;
    display: none;
    margin: 0;
}

.footer__top-nav .menu-bottom .sub-menu li a,
.footer__top-nav .menu-bottom .menu-item-has-children .sub-menu li:first-child a{
    color: var(--main);
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    line-height: 140%;
    margin-bottom: 8px;
}

/*.footer__top-nav .menu-bottom .menu-item-has-children .sub-menu li::before{
    content: ' ';
    margin-right: 0;
    padding-bottom: 0;
    display: none;
    width: 0;
    color: var(--main);
    height: 0;
}*/

.footer__top-nav .menu-bottom .menu-item-has-children .sub-menu li:first-child{
    margin-bottom: 0;
}

.footer__top-nav .menu-bottom .menu-item-has-children .sub-menu li::before{
    content: '';
    margin-left: 0;
}

.footer__top-nav .menu-bottom .sub-menu li a:hover,
.footer__top-nav .menu-bottom .menu-item-has-children .sub-menu li:first-child a:hover{
    color: var(--sand);
    text-decoration: underline;
}

/* COPY FOOTER */

.footer__bottom-wrap{
    display: flex;
    align-items: center;
    background-color: #000;
    color: var(--main);
    height: 66px;
    font-size: 14px;
}

.footer__bottom,
.cursor{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cursor{
    justify-content: flex-end;
    gap: 8px;
}

.cursor a{
    color: var(--main);
}

.card-left-cont .olga_slider{
    margin-top: 60px;
}

.card-gallery .olga_slider{
    margin-top: 80px;
    margin-bottom: 48px;
}

/* ----------- CONTENT STYLES COMMON ----------- */

.content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
    width: 100%;
    max-width: 1380px;
    padding: 150px 20px 120px 20px;
    margin: 0 auto;
}

.content p,
.content li{
    color: var(--main-dark-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; 
    margin-bottom: 24px;
}

.content li{
    margin-bottom: 8px;
}

.content p:last-child{
    margin-bottom: 0;
}

.content h1, .content h2{
    font-size: 64px;
    line-height: 120%;
    font-weight: 500;
    color: black;
    text-align: center;
    margin-bottom: 40px;
}

.content h1 span {
    color: var(--mustard);
}

.content h2{
    font-size: 56px;
}

.subheading{
    font-family: 'e-Ukraine';
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    color: var(--main-dark-text); 
}

.subheading.center{
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.content__wrap{
    width: 100%;
    max-width: 900px;
}

.content.dark-block{
    background-color: var(--dark-bg);
    padding: 120px 20px;
}

.dark-block h2{
    text-align: left;
    color: var(--sand);
}

.dark-block p{
    color: var(--main-white-text);
}

.dark-block__wrap{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* OWNS ITEMS */

.fuel-type h3,
.limited h3{
    font-size: 46px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.owen__item{
    width: 100%;
    max-width: 400px;
}

.owen__item-img img{
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
}

.owens__wrap, 
.owen__item, 
.owen__item-cont, 
.price__wrapper, 
.price-cont, 
.fuel-wrap{
    display: flex;
}
    
.owens__wrap{
    align-items: flex-start;
    justify-content: center;
    gap: 64px;
/*    margin-bottom: 80px; */
    flex-wrap: wrap;
}

.owen__item,
.owen__item-cont,
.price__wrapper{
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.owen__item-cont{
    gap: 16px;
}

.price__wrapper, 
.fuel-wrap{
    gap: 8px;
}

.price-cont, 
.fuel-wrap{
    align-items: center;
    justify-content: center;
}

.price-cont{
    gap: 16px;
}

.owen__item h3 a,
.cat-item h3,
h3 a.seria-title,
.bases h3 a{
    font-family: 'e-Ukraine';
    font-size: 26px;
    font-weight: 500;
    color: var(--mustard);
    text-align: center;
    margin-bottom: 0;
    text-decoration: none;
}

.owen__item h3 a,
h3 a.seria-title,
.bases h3 a{
    transition: all 250ms;
    display: inline-block;
    text-align: center;
}

.owen__item h3 a:hover,
h3 a.seria-title:hover,
.bases h3 a:hover{
    color: #5D1815;
}

.fuel-wrap{
    font-size: 18px;
    font-weight: 400;
    color: var(--main-dark-text);
}

.owen__item-desc p{
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: var(--main-dark-text);
    text-align: center;
}


/* INNER STYLES */

.inner .section h2{
    text-align: center;
}

.inner .section h2{
    max-width: 880px;
    margin: 0 auto;
    margin-bottom: 40px;
}

/* owen-desig */

.owen-desig .cat-item img{
    max-width: 417px;
    height: auto;
    border-radius: 0px 24px 24px 24px;
}

a.btn-plain{
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: var(--tomato);
}

a.btn-plain:hover{
    transition: all 250ms;
    color: #5D1815;
}

.italiano-1{
    margin-bottom: 64px;
}

.italiano-2{
    margin-bottom: 80px;
}

.italiano-1 img, 
.bases img{
    max-width: 380px;
    height: auto;
    border-radius: 0;
}

.bases h2{
    text-align: center;
}

.italiano-2 img{
    max-width: 250px;
    height: auto;
    border-radius: 0;
}

.italia{
    padding-top: 0;
    background: url(images/italy-bg.jpg) bottom center no-repeat;
    padding-bottom: 100px;
}

div.italia{
    margin-bottom: 80px;
}

.italia h3{
    font-weight: 400;
}

.italia .cont{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.owen-design .cont{
    margin: 0 auto;
    max-width: 990px;
}

.inner .pic-block.rev p{
    font-size: 18px;
}

.classico-tech{
    padding: 120px 20px;
}

.tech__wrap,
.tech__icons{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
}

.tech__icons{
    gap: 40px;
}

.tech__icons-item{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.tech__icons-item img{
    width: 70px;
    height: auto;
}

.tech__col .subheading{
    margin-bottom: 24px;
}

.tech__col {
    width: 50%;
}

.classico .subheading{
    margin-bottom: 32px;
}

.owen-design .subheading{
    margin-bottom: 72px;
}

.italia .subheading{
    margin-bottom: 72px;
}

.tech__wrap{
    margin-bottom: 56px;
}

.site-header .menu-item-has-children a {  
    position: relative;
}

.site-header .triangle > a:hover::before {  
    content: "";
    height: 0px;  width: 0px;
    position: absolute;  bottom: 0;
    left: 50%;  transform: translateX(-50%);
    border-right: solid 15px transparent;  
    border-left: solid 15px transparent;
    border-bottom: solid 15px var(--main);
}

.light-block{
    background-color: var(--main);
    padding: 120px 0;
}

.light-block h2{
    text-align: left;
}

.wooden-fuel.light-block h2{
    text-align: center;
}

.light-block__wrap,
.gif-wrap{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.content .light-block__wrap{
    margin-bottom: 80px;
}

.light-block__wrap.rev{
    flex-direction: row-reverse;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(433px, 1fr)); /* Адаптивні колонки */
    gap: 40px; /* Відстань між елементами */

    align-items: start; /* Вирівнювання елементів по верху */
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item p{
    margin-bottom: 0;
}

.feature-item img {
    width: 70px; /* Розмір іконки */
    height: 70px;
}

.feature-item h3 {
    font-size: 32px;
    line-height: 120%;
    color: var(--mustard);
    font-weight: 400;
}

.content.classico-tech h2{
    margin-bottom: 40px;
}

.gif{
    padding-top: 0;
    padding-bottom: 120px;
}

.gif h2{
    text-align: left;
}

.inner .section.wooden-fuel h2{
    margin-bottom: 80px;
}

.wooden-fuel .cat-item h3,
.wooden-fuel .cat-item p{
    text-align: left;
    width: 100%;
} 

.contact .subheading{
    margin-bottom: 24px;
}

.contact .subheading p,
.card-desc{
    font-family: 'e-Ukraine';
    font-size: 24px;
    font-weight: 500;
}

.card-desc{
    font-weight: 400;
    color: var(--main-dark-text);
    margin: 24px 0;
    line-height: 150%;
}

.contact .subheading a{
    color: var(--tomato);
    text-decoration: none;
    transition: all 250ms;
}

.contact .subheading a:hover{
    text-decoration: underline;
}

.contact-socials .socials{
    justify-content: center;
    height: 48px;
    align-items: center;
}

.contact-socials .socials a{
    color: var(--main-dark-text);
    font-size: 48px;
}

.contact-socials .socials a:hover{
    text-decoration: none;
    color: var(--tomato);
}

.content.contact{
    padding-bottom: 60px;
}

.content-wrapper.contact{
    padding-bottom: 0;
}

iframe{
    margin-bottom: -6px;
}

.limited-design h2{
    text-align: center;
    width: 100%;
    margin-bottom: 80px;
}

.limited-design__gallery{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.limited__info h2{
    text-align: left;
}

.limited__info{
    padding: 120px 20px;
}

.limited__flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.limited__img img{
    width: 100%;
    width: 620px;
    height: auto;
}

.light-block .limited__flex{
    flex-direction: row-reverse;
}

/* CARD */

.card-flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.card-left-cont{
    width: 100%;
    max-width: 600px;
}

.card .content h1{
    text-align: left;
    margin-bottom: 16px;
}

.card .price__wrapper{
    flex-direction: row;
    width: 100%;
    gap: 32px;
    margin: 24px 0;
}

.availability,
.badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-white-text);
    border-radius: 30px;
    padding: 8px 16px;
}

.availability.yes{
    background-color: #467E00;
}

.badge{
    background-color: var(--tomato);
    gap: 8px;
}

.availability.no{
    background-color: #A2A2A2;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  font-size: 16px;
  margin: 24px 0 40px 0;
  color: var(--main-dark-text);
}

.product-specs td {
  padding: 12px 16px;
  border: 0;
}

.product-specs tr:nth-child(odd) td {
  background-color: #f7e9dc; /* Колір для чергування рядків */
}

.product-specs td:first-child {
  font-weight: bold;
  color: #333;
  width: 45%; /* Ширина для лівої колонки */
}

.card h4, 
.tabs h4{
    font-size: 20px;
    font-weight: 500;
    color: var(--mustard);
}

.specification p{
    font-size: 16px;
    line-height: 170%;
}

.card h4{
    margin-bottom: 24px;
}

.tabs h4{
    border-bottom: 2px solid var(--mustard);
    padding-bottom: 10px;
    margin-top: 32px;
}

.tabs a{
    color: var(--mustard);
    text-decoration: none;
    display: block;
    width: 100%;
    position: relative;
}

.opener{
    display: block;
    width: 100%;
}

.opener-text{
    display: none;
    overflow: hidden;
}

.content .opener-cont p, 
.content .opener-cont li, 
.card-right-cont ul,
.card-right-cont ul li {
    font-size: 16px;
}

.state-open{
    display: block;
}

.tabs a:after, .tabs.toggle-minus a:after {
    content: '';
    background: url(images/plus.svg) right center no-repeat;
    position: absolute;
    right: 0;
    height: 30px;
    width: 30px;
    transition: .3s ease;
}

.tabs.toggle-minus a:after {
    transform: rotate(180deg);
    transform-origin: center;
}

.download-cont{
    padding-top: 24px;
}

a.download{
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #5D1815;
    font-weight: 700;
    margin-bottom: 16px;
    height: 26px;
    transition: .3s ease;
}

a.download:hover{
    color: var(--tomato);
    text-decoration: none;
}

a.download:before{
    content: '';
    display: inline-block;
    background: url(images/download.svg) left center no-repeat;
    height: 24px;
    width: 24px;
    margin-right: 12px;
}

a.download:before:hover{
    background: url(images/download-hover.svg) left center no-repeat;
}

.card-gallery{
    padding-bottom: 120px;
}

.card-gallery-text{
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.cards-icons{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.card-icon-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    flex-basis: 25%;
}

.card-fuel h2{
    text-align: center;
}

.card-fuel .cat-item{
    justify-content: flex-start;
    align-items: flex-start;
}

.card-fuel .cat-item p{
    text-align: left;
}

.card-fuel .cat-flex{
    margin-top: 64px;
}

.accessories.light-block{
    padding-bottom: 0;
}

.heading-flex{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.section.content.owen-design.wooden-fuel .heading-flex h2{
    max-width: 100%;
    text-align: left;
    margin: 0;
}

/* Попап */
.popup_btn {
    position: absolute;
    display: none;
    background-color: var(--dark-bg);
    color: #fff;
    width: 400px;
    padding: 60px;
    border-radius: 28px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.popup__content {
    position: relative;
}

.popup__content h3{
    font-family: 'e-Ukraine';
    font-size: 46px;
    font-weight: 500;
    color: var(--main);
    margin-bottom: 32px;
}

.popup__close {
    position: absolute;
    top: -30px;
    right: -38px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.popup__content input {
    border: 2px solid var(--main);
    background-color: var(--main);
}

input[type=tel]:focus,input[type=text]:focus,input[type=email]:focus,textarea:focus {
    border: 2px solid var(--sand);
    outline: 0
}

.popup__content input::placeholder {
    color: var(--main-dark-text);
}

.popup__content input::-webkit-input-placeholder {
    color: var(--main-dark-text);
}

input[type=submit]{
    background-color: var(--tomato);
    border: none;
    color: var(--main);
}

.italia h2{
    text-align: center;
}

.owen__item-desc p{
    margin-bottom: 0;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output{
    border: 2px var(--sand) solid !important;
    border-radius: 0 16px 16px 16px;
    margin: 0 !important;
    padding: 16px !important;
    color: var(--sand) !important;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output{
    border-color: var(--tomato) !important;
    color: var(--tomato) !important;
}

.fuel-type .owen__item-cont h3{
    margin-bottom: 0;
}

.textwidget.custom-html-widget {
    display: contents; /* або display: none; якщо не потрібно показувати обгортку */
}

.fuel-page .content.contact{
    padding-bottom: 0;
}

.fuel-page .cat-flex{
    margin-top: 56px;
    flex-wrap: wrap;
}

.address-wrap{
    padding-top: 84px;
}

.opener-cont ul,
.opener-cont p{
    margin-top: 0 !important;
}
/*
.alfa-heat img{
    width: 100%;
    max-width: 670px;
    height: auto;
}*/

.alfa-heat .light-block__wrap{
    margin-bottom: 0;
}

.alfa-heat .subheading{
    margin-bottom: 32px;
}

.alfa-heat .light-block__wrap{
    align-items: center;
}

/* RECEIPTS */

.recipts-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 40px;
    display: grid;
}

.receipt-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 28px 0 28px;
    background-color: var(--main);
    overflow: hidden;
}

.receipt-item__thumb{
    margin-bottom: 24px;
    width: 100%;
    max-width: 433px;
    height: 230px;
}

.receipt-item__thumb img{
    width: 100%;
    height: 230px;
    object-fit: cover;

}

.receipt-item__title, 
.receipt-item__excerpt,
.receipt-item__link{
    margin-bottom: 24px;
    padding: 0 24px;
}

.receipt-item__title a{
    font-family: 'e-Ukraine';
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    color: var(--dark-bg);
    transition: all 250ms;
}

.receipt-item__title a:hover{
    color: var(--tomato);
}

.receipt-item__excerpt{
    font-size: 16px;
    line-height: 170%;
    color: var(--main-dark-text);
}

/*.receipt-item__link{
    margin-bottom: 16px;
}*/

.receipt h1,
.receipt-content,
.recipts-wrap-text{
    width: 100%;
    max-width: 880px;
}

.recipts-wrap-text{
    margin: 0 auto;
    margin-bottom: 48px;
}

.receipt h1{
    text-align: left;
    font-size: 52px;
}

.receipt-content__thumb img{
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 0 28px 0 28px;
    margin-bottom: 48px;
}

.receipt-content__article p,
.receipt-content__article ul,
.receipt-content__article ol,
.receipt-content__article a{
    font-size: 18px;
    line-height: 170%;
    color: var(--main-dark-text);
}

.receipt-content__article a{
    color: var(--tomato);
}

.receipt-content__article a:hover{
    text-decoration: none;
}

.receipt-content__article h2{
    text-align: left;
    font-size: 40px;
}

.receipt-content__article h3{
    font-weight: 400;
    margin-bottom: 24px;
    font-size: 24px;
}

.receipt-content__article img{
    margin-bottom: 40px;
}

.receipt-content{
    margin-bottom: 48px;
}

.lesson-bage {
    position: relative;
}

.lesson-bage img.video-tag{
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
}

.wp-block-embed iframe {
    width: 100% !important;
    height: 490px !important;
    margin-bottom: 32px;
}

.additionals h1{
    font-size: 52px;
}

.fornonox-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.forninox-images{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.forninox-images img{
    max-width: 680px;
    width: 100%;
    height: auto;
}

.content.forninox.dark-block{
    margin-top: -266px;
    padding: 294px 20px 120px 20px;
}

.dark-block .foninox-cont h2:last-child{
    margin-top: 60px;
}

.foninox-cont{
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}

.foninox-cont a{
    color: var(--tomato);
}

.foninox-cont a:hover{
    text-decoration: none;
}

.content-wrapper.forninox{
    padding-bottom: 0;
}

.gallery-block.light-block .gallery{
    margin-top: 64px;
}

.content.white{
    padding: 120px 20px;
}

.content.white h2{
    text-align: left;
}

.white.alfa-heat .light-block__wrap{
    align-items: flex-start;
}


/* --------------------------- 1024px --------------------------- */


@media (max-width: 1024px) {


}


/* --------------------------- 768px --------------------------- */


@media (max-width:768px) {
    .site-header {
        height: 60px
    }

    .hero__content{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .hero__content h1 {
        font-size: 41px;
        line-height: 115%
    }

    .hero__content p {
        font-size: 18px;
        line-height: 150%
    }

    .cat-flex,
    .pic-block,
    .upper-wrap,
    .hero-btns,
    .pic-block.rev,
    .light-block__wrap,
    .light-block__wrap.rev
    {
        flex-direction: column;
        align-items: center;
    }

    .pic-block__content.right,
    .pic-block__content,
    .upper-left,
    .upper-right,
    .light{
        margin: 0;
        padding: 0;
    }

    .accessories img,
    .upper-left,
    .upper-right{
        width: 100%;
    }

    .cat-item img,
    .light-block__wrap img{
        width: 100%;
        height: auto;
    }

    .type .cat-item img{
        width: 78px;
        margin-bottom: -8px;
    }

    .upper-left img{
        position: relative;
        right: auto;
    }

    h2,
    .content h2{
        font-size: 28px;
        margin-bottom: 32px;
     }

    .pic-block,
    .accessories,
    .owens,
    .type,
    .block-content,
    .limited__info {
        padding: 60px 20px;
    }

    .upper-right .block-content,
    .upper-left .block-content{
        margin: 0;
    }

    .upper-left .block-content, 
    .limited-design__gallery,
    .limited__flex,
    .light-block .limited__flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-bottom: 0;
    }

    .limited-design__gallery img,
    .limited__img img{
        width: 100%;
        height: auto;
    }

    .block-content h2{
        margin-bottom: 0;
    }

    .contact-form{
        margin-bottom: 0;
        margin-top: 32px;
    }

    .cat-flex{
        gap: 48px;
    }

    .cat-flex h3{
        font-size: 24px;
    }

    .btn{
        height: 50px;
    }

    .pic-block__image img{
        margin-bottom: 48px;
        border-radius: 0 28px 28px 28px;
    }

    .pic-block__content h3{
        margin-bottom: 32px;
    }

    .accessories{
        padding-bottom: 0;
    }

    .main-navigation {
        order: 3
    }

    .hero__content img{
        width: 60%;
        height: auto;
        margin-bottom: -48px;
    }

    .menu {
        display: none;
        flex-direction: column;
        background-color: var(--dark-bg);
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: calc(var(--vhc, 1vh) * 100 + 60px);
        padding: 20px 20px;
        z-index: 1000;
        overflow: hidden;
    }

    .menu-item {
        margin: 16px 20px
    }

    .footer-nav .menu-item {
        margin: 0
    }

    li.menu-item{
        width: 100%;
    }

    .menu-item a {
        font-size: 22px
    }

    .sub-menu li a{
        color: var(--sand);
    }

    .sub-menu {
        display: none;
        position: static;
        padding-left: 0
    }

    .sub-menu.open {
        display: flex; 
        opacity: 1; 
        visibility: visible;
    }

    .toggle {
        display: flex
    }

    .main-navigation #checkbox:checked~.menu {
        display: flex;
        justify-content: center;
        margin-top: -40px
    }

   .menu .menu-item-has-children .sub-menu{
        flex-direction: column;
        position: absolute;
        transform: none;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: calc(var(--vhc, 1vh) * 100 + 60px);
        padding-top: 200px;
/*        margin-left: 0;
        padding-left: 0; */
        background-color: var(--dark-bg);
        z-index: 6000;
    }

    .menu .menu-item-has-children .sub-menu::before{
        content: '';
        display: none;
    }

    .menu .menu-item-has-children .sub-menu li{
        margin-left: 0;
    }

    .menu .menu-item-has-children .sub-menu li::before{
        color: var(--main);
    }

    .menu .menu-item-has-children .sub-menu li a{
        font-size: 16px;
        color: var(--main);
    }

    .menu .menu-item-has-children .sub-menu li:first-child a{
        color: var(--sand);
        font-family: 'Open sans';
        font-size: 18px;
        font-weight: 500;
    }

    .menu .menu-item-has-children .sub-menu li:first-child::before{
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background: url(images/back.svg) center center no-repeat;
    }

    .menu .menu-item-has-children .sub-menu li:first-child{
        margin-left: 20px;
    }

    .footer__top {
        padding: 60px 20px
    }

    .footer__top-address img,
    .footer__top-address {
        margin-bottom: 32px
    }

    .footer__top-address img{
        width: 260px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px 0 32px 0;
        gap: 12px;
    }

    .footer__bottom-wrap{
        height: auto;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px
    }

    .menu-bottom{
        flex-direction: column;
        gap: 24px;
    }

    .menu-bottom .menu-item{
        margin: 0;
    }

    .footer__top-nav .menu-bottom .sub-menu{
        position: static;
    }

    .menu-bottom .sub-menu li:first-child{
        margin-left: 0;
    }

    .copy p {
        text-align: center
    }

    .flex {
        flex-direction: column;
        align-items: center
    }

    .site-header__wrapper {
        align-items: center;
        width: 100%;
        padding: 0 20px
    }

    .icons-wrap {
        gap: 24px
    }

    .about-pic{
        margin-left: 0;
    }

    .col-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .footer__top-address{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .contact-form{
        margin-bottom: 48px;
    }

    .hero-btns{
        gap: 32px;
    }

    .site-header__logo-mob{
        z-index: 5000;
    }

    .menu-item{
        margin: 0 20px;
    }

    .pic-block__content h2,
    .upper-right h2{
        text-align: left;
    }

    .hero.inner{
        height: 50vh;
    }

    .hero.inner img{
        height: 100%;
    }

    .inner .hero__content{
        margin-bottom: -60px;
        margin-top: 0;
    }

    .section{
        padding: 60px 20px;
    }

    .subheading{
        margin-bottom: 40px;
        font-size: 18px;
    }

    .italiano-2{
        margin-bottom: 40px;
    }

    .italia{
        padding-top: 0;
        padding-bottom: 80px;
    }

    .inner .section h2,
    .inner .section.wooden-fuel h2,
    .limited-design h2{
        margin-bottom: 32px;
    }

    .owen-design .subheading{
        margin-bottom: 40px;
    }

    .owens__wrap,
    .dark-block__wrap,
    .tech__wrap,
    .tech__icons,
    .gif-wrap,
    .card-flex{
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .heading-flex,
    .card-flex .price__wrapper,
    .cards-icons{
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tech__wrap, .tech__icons{
        gap: 24px;
    }

    .cards-icons{
        gap: 32px;
    }

    .dark-block__wrap img,
    .owen__item-img img,
    .gif__img img{
        width: 100%;
        height: auto;
    }

    .content h1{
        font-size: 34px;
    }

    .content h2{
        font-size: 28px;
    }

    .content-wrapper{
        gap: 60px;
        padding: 60px 0;
        margin-top: 60px;
    }

    .content{
        padding: 0 20px;
    }

    .content.dark-block,
    .content.limited__info,
    .limited-design.light-block,
    .content.owen-design{
        padding: 60px 20px;
    }

    .classico-tech{
        padding: 60px 20px;
    }

    .content p, 
    .dark-block p, 
    .cont p,
    .cat-item p,
    .inner .pic-block.rev p{
        font-size: 16px;
    }

    .subheading-red{
        font-size: 20px;
        line-height: 100%;
    }

    .pic-block.rev p{
        font-size: 18px;
    }

    .hero-btns a{
        padding: 16px 24px;
        font-size: 22px;
        width: 100%;
    }

    .header-contact{
        gap: 8px;
    }

    p.price{
        font-size: 20px;
    }

    .content .light-block__wrap{
        margin-bottom: 0;
    }

    .content .light-block__wrap:first-child,
    .card-gallery-text,
    .heading-flex{
        margin-bottom: 40px;
    }

    .content.light-block{
        padding: 60px 20px;
    }

    .light-block__wrap{
        gap: 40px;
    }

    .classico-tech h2{
        text-align: left;
    }

    .feature-item h3{
        font-size: 26px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); /* Адаптивні колонки */
    }

    .content.gif{
        padding-bottom: 60px;
    }

    .fuel-type h3{
        font-size: 28px;
    }

    .content.owen-design.fuel-type{
        padding-bottom: 0;
    }

    .content.owen-design.italia{
        padding-top: 0;
    }

    .slider,
    .card-fuel .cat-flex{
        margin-top: 40px;
    }

    .card-flex{
        gap: 0;
    }

    .content.card-gallery{
        padding-bottom: 60px;
    }

    .card-desc{
        font-size: 18px;
    }

    .tech__col {
    width: 100%;
    }

    .recipts-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .forninox-images{
        flex-direction: column;
    }

    .gallery-block.light-block,
    .content.white{
        padding: 60px 20px;
    }

    .content.foninox-cont{
        padding: 0;
    }

}


/* --------------------------- 480px --------------------------- */

@media screen and (max-width:480px) {
    .site-header__logo {
        display: none
    }

    .site-header__logo-mob {
        display: block
    }

    .site-header__logo {
        width: 83px;
        height: 24px
    }

    .desktop {
        display: none
    }

    .mobile {
        display: flex
    }

    .icons-wrap {
        flex-direction: column
    }

    .icons-wrap {
        align-items: center
    }

    .icons__item {
        align-items: center
    }

    .icons__item-ico {
        margin-bottom: 24px
    }

    .icons__item-text p {
        text-align: center
    }

    .light p {
        color: var(--main-dark-text);
        font-size: 16px
    }

    .dark p {
        font-size: 16px
    }

    .about-pic {
        margin-left: 0
    }

    .about-pic img {
        width: 100%;
        height: auto
    }

    .icons-wrap {
        gap: 24px
    }

    .pagination {
        gap: 24px
    }

    .project-pic img {
        width: 100%
    }

    .project-pic {
        margin-left: 0;
        margin-top: 32px
    }

    .contact p,
    .contact a {
        font-size: 18px
    }

    .contact-form form{
        margin-bottom: 0;
    }

    .hero__content{
        margin-top: 34px;
    }

    .footer__top .col-wrapper{
        align-items: center;
    }

    .footer__top-contact .socials{
        order: 3;
    }

    .site-header .socials{
        gap: 8px;
    }

    .menu .menu-item a{
        height: auto;
    }

    .menu{
        gap: 32px;
    }

    .menu .sub-menu li{
        margin-bottom: 24px;
    }

    .menu .sub-menu li:first-child{
        margin-bottom: 32px;
    }

    a.phone{
        border-radius: 4px;
        padding: 4px 10px;
    }

    .header-contact .socials{
        display: none;
    }

    .price-cont{
        gap: 10px;
    }

    .card-gallery-slider .slider__thumbnail{
        width: 81px;
        height: 81px;
    }

    .popup{
        width: unset;
        right: 20px;
        padding: 32px;
    }

    .popup__content h3{
        font-size: 28px;
        margin-bottom: 24px;
    }

    .popup__content input,
    .popup__content label{
        width: 100%;
        max-width: 292px;
    }

    .recipts-grid{
        grid-template-columns: 1fr;
    }

    .upper-right h2{
        margin-bottom: 32px;
    }

    .footer .site-header__logo{
        display: block;
        width: auto;
        height: auto;
    }

    .wp-block-embed iframe {
        height: 210px !important;
        margin-bottom: 24px;
    }

    .receipt-content__thumb img{
        margin-bottom: 32px;
    }

    .site-header .triangle > a:hover::before{
        display: none;
    }

    .content.forninox.dark-block{
        margin-top: 24px;
    }

    .content.forninox.dark-block{
        padding: 60px 20px;
    }

    .header-contact{
        gap: 16px;
    }
}

.section.content.owen-design.fuel-type{
    padding-bottom: 0;
}

/* ACTION */

.badge img{
    width: 20px;
    height: 20px;
}

.double-price{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.in-stock-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

p.price,
p.price-old{
    font-family: 'e-Ukraine';
    font-size: 24px;
    font-weight: 400;
    color: #467E00;
    margin-bottom: 0;
    text-align: center;
}

p.price-old{
    font-size: 18px;
    color: var(--tomato);
    text-decoration: line-through;
}

.owen__item-img {
    position: relative;
}

.owen__item-img .badge{
    position: absolute;
    top: 16px;
    right: 16px;
}

.owen-design.italia  .price{
    margin-bottom: 24px;
}

.price__wrapper{
    gap: 16px;
}

.fuel-type .owens__wrap,
.napoli .owens__wrap{
    margin-bottom: 80px;
}

.station img{
    width: 560px;
    height: auto;
}

.gallery-wrap{
    margin: 80px 0;
}

.lang-wrapper{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-wrapper li{
    margin-bottom: 4px;
    margin-right: 6px;
}

.lang-wrapper li:last-child{
    margin-right: 0;
}

.lang-wrapper li a{
    font-size: 15px;
    color: var(--main);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;    
}

.lang-wrapper li a:hover{
    color: var(--mustard);    
}

.lang-wrapper li.current-lang a{
    color: var(--mustard);
}

.urbe .olga_slider{
    margin-bottom: 40px;
}

.back-btn-wrap{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}