:root {
    --primary-color: #B2DAF0;
    --secondary-color: #191A23;
    --body-color: #F3F3F3;
}
.working-process .accordion-item {
    border: 1px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
    /* padding: 20px; */
    background-color: var(--body-color);
}

.working-process .accordion-item .accordion-button {
    background-color: var(--body-color);
    padding: 20px 40px;
    border-bottom: 1px solid var(--secondary-color);
}

.working-process .accordion-item .accordion-collapse.collapse.show, .working-process .accordion-item .accordion-collapse.collapse.show {
    background-color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

.working-process .accordion-item .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    transition: all 0.2s ease-in-out;
    background-color: var(--primary-color) !important;
    box-shadow: none;
}

.working-process .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.working-process .accordion-item .accordion-collapse .accordion-body {
    padding: 20px 40px;
}

.working-process .accordion-item .accordian-numbers {
    font-size: 44px;
    padding-right: 20px;
}

.accordion-button::after {
    background-image: none;
    content: "\f068";
    height: 35px;
    width: 35px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: var(--body-color);
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f067";
}

.working-process .accordion-item .collapsing {
    transition: all 0.3s ease-in-out;
}

.h2-hero {
    font-size: 3rem;
    border-right: 3px solid #ffffff;
    white-space: nowrap;
    overflow: hidden;
    width: 20ch; /* Simula il testo che si scrive */
    height: 2em; /* Altezza costante del testo */
    text-align: left;
    animation: blink 0.5s step-end infinite alternate;
}

@keyframes blink {
    from {
        border-color: transparent;
    }
    to {
        border-color: #ffffff;
    }
}


.user {
    display: flex;
    align-items: center;
}

.user-profile-icon,
.cart-icon {
    width: 25px;
    height: 25px;
    object-fit: cover;
}

.cart {
    margin-left: 20px;
}

.animate-item {
    transition: all .3s;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #004253 !important;
    background-color: #e9ecef;
    font-weight: bold;
}

.sottotitolo{
    font-weight: normal;
}

.hero-wrapper {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    overflow: hidden;
}

.swiper-slide-active {
    justify-content: center;
}

.swiper-slide-active .product {
    background-color: #ffffff;
    opacity: 1;
}

.swiper-slide-next .product {
    margin-left: -15%;
    filter: blur(7px);
}

.swiper-slide-next .product__content {
    opacity: 0;
    transform: scale(1.2);
    transition: all .3s;
}

.swiper-slide-next .product__banner {
    box-shadow: none;
}

.swiper-slide-prev .product {
    opacity: 1;
    filter: blur(10px);
}

.swiper-slide {
    position: relative;
    height: 85vh;
    width: 100vw;
    perspective: 1000px;
    display: flex;
    align-items: center;
}

.product {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 50px;
    transform-style: preserve-3d;
    transition: transform .2s linear;
}

.product__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(80px);
}

.product__banner {
    width: 100%;
    height: 100%;
    padding: 50px;
    box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: start;
}

.product__banner img {
    width: 65%;
    height: auto;
    margin: 0 auto;
    position: absolute;
    bottom: 140px;
    right: -15px;
}

.product__title {
    position: absolute;
    left: 25px;
    bottom: 20px;
    font-size: 1.6em;
    font-weight: 700;
    width: 90%;
    line-height: normal;
    color: #100C2B;
}

.product__description {
    position: absolute;
    left: -5px;
    bottom: 45px;
    font-size: 14px;
    font-weight: 300;
    opacity: 1;
    width: 200px;
}

.product__price {
    position: absolute;
    bottom: 45px;
    right: 5px;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .swiper-slide-next .product {
        margin-left: unset;
        opacity: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .swiper-slide{
        height: auto;
        padding: 20px;
    }

    .product__banner img {
        width: 60%;
    }
}






/*SLIDER HOME*/


.wrapper .outer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .card {

    width: 450px;
    height: auto;
    display: flex;
    justify-content: space-between;
    alig-items: center;
    padding: 20px;
    position: absolute;
    border-color: transparent;
    border-radius: 5px 50px 5px 50px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    pointer-events: none;
    animation: animate 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
}

.wrapper .card:nth-of-type(1) { --delay: -1; }
.wrapper .card:nth-of-type(2) { --delay: 0; }
.wrapper .card:nth-of-type(3) { --delay: 1; }
.wrapper .card:nth-of-type(4) { --delay: 2; }
.wrapper .card:nth-of-type(5) { --delay: 2; }

.wrapper .card:last-child {
    animation-delay: calc(-3s * var(--delay));
}

.outer:hover .card {
    animation-play-state: paused;
}


@keyframes animate {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.5);
    }
    5%, 20% {
        opacity: 0.4;
        transform: translateY(100%) scale(0.7);
    }
    25%, 40% {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0%) scale(1);
    }
    45%, 60% {
        opacity: 0.4;
        transform: translateY(-100%) scale(0.7);
    }
    65%, 100% {
        opacity: 0;
        transform: translateY(-100%) scale(0.5);
    }
}

.card .content {
    display: flex;
    align-items: center;
}


.details span {
    color: white !important;
    opacity: 50%;
}

/*SLIDER HOME fine*/
.company-logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 15px;
}

.action-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.action-icons i {
    font-size: 1.5rem;
    color: #333;
}

.company-name {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.company-region {
    color: #5b5a5a;
    margin-bottom: 10px;
    font-weight: 300;
}

.letter-active:active{
    background-color: rgba(38, 136, 56, 0.22);
    font-weight: bold;
    color: #268838 !important;
    border-radius: 50%;
    width: fit-content();
    text-align: center;
    padding-right: 10px;
    padding-left: 10px;
}

.btn-circle {
    width: 50px;
    height: 50px;
    padding: 6px 0px;
    border-radius: 50px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

.btn-footer{
    position: absolute;
    right: 5px;
    top: 5px;
}

.pt-site-footer__submit {
    position: relative;
    display: inline-block;
    width:375px;
}

/* STILE */

.brown-bg-color{
    background-color: #67300F;
}


.bg-blue{
    background-color: rgba(13, 110, 253, 0.25);
}

.bg-lightblue{
    background-color: #EFFBFD;
}

.bg-orange{
    background-color: rgba(255, 127, 2, 0.23);
}

.primary-text-color{
    color: #004253;
}
.secondary-text-color{
    color: #28C0DE;
}

.bg-lightgreen{
    background-color: rgba(38, 136, 56, 0.2);
}

.box-height{
    height: 350px;
}


.input-footer{
    height: 52px;
}


.bg-image{
    background-image: url("../img/images/hero-sfondo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: auto;
    border-radius: 25px;
}

.bg-image-anagrafica{
    background-image: url("../img/images/Img-anagrafica-GaragePro.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: auto;
    border-radius: 25px;
}

.bg-image-contabilita{
    background-image: url("../img/images/Img-contabilita-GaragePro.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: auto;
    border-radius: 25px;
}

.bg-image-preventivi{
    background-image: url("../img/images/Img-preventivi-GaragePro.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: auto;
    border-radius: 25px;
}

.comunicazione-bg-1{
    background-image: url("../img/images/comunicazione-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}

.comunicazione-bg-2{
    background-image: url("../img/images/comunicazione-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}

.comunicazione-bg-3{
    background-image: url("../img/images/comunicazione-3.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}

.contabilita-bg-1{
    background-image: url("../img/images/contabilita-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}

.contabilita-bg-2{
    background-image: url("../img/images/contabilita-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}

.badge-esaurito{
    background-color: #67300F;
    border-radius: 0px;
}

.font-button-account{
    font-size: 14px;
}

.lighter-bg-color{
    background-color: rgba(222, 209, 195, 0.35);
    color: #67300F;
}

.bg-arancio{
    background-color: #FF7F00;
}

.text-orange{
    color: #FF7F00;
}

.blue-rounded-bg {
    background-color: rgba(39, 154, 225, 0.34);
}

.text-color-blue {
    color: #044C7C;
}

.bg-primary{
    background-color: #004253;
}

.bg-pills-green{
    background-color: #edf2ea;
}

.text-olivegreen{
    color:#81A164;
}
footer{
    background-color: #004253;
    color: white;
}

.manina{
    cursor:pointer !important;
}

.offcanvas{
    width: 35% !important;
}

.img-offcanvas{
    width: 130px;
}

h1{ line-height: 100px;}

.category-text{
    font-size: 15px !important;
}

.special-font{
    font-family: "Unbounded", serif;
    font-weight: 400;
    font-style: normal;
}

.italic-font{
    font-family: "Cardo", serif;
    font-weight: 300;
    font-style: italic;
}

.lil-text{
    font-size: 18px;
}

.pills-text{
    font-size: 14px;
}

.width-recupera{
    width: 500px;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: lightgrey !important;
}

.btn-noborder{
    background-color: transparent;
    border-color: transparent;
    color: #080c2b;
}

.btn-primary{
    background-color: #004253;
    color: #FFF !important;
    border-radius: 50px;
    border: none;
}

.btn-primary:hover{
    background-color: #004253;
    color: #FFF !important;
    border: none;

}

.btn-primary:active{
    background-color: #004253;
    color: #FFF !important;
}

.btn-secondary{
    background-color: #FF7F02;
    color: #FFF !important;
    border-radius: 50px;
    border: none;
}

.btn-secondary:hover{
    background-color: #FF7F02;
    color: #FFF !important;
    border: none;

}

.btn-secondary:active{
    background-color: #FF7F02;
    color: #FFF !important;
}

.bg-violetblue{
    background-color: #B2DAF0;
}


.bgk-primary{
    background-color: #004253;
}

.btn-white{
    background-color: white;
    color: #004253;
    border: solid 2px white;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-white:hover, .btn-white:active{
    background-color: #004253;
    color: white;
    border: solid 2px white !important;
    text-transform: uppercase;
    border-radius: 50px;
}



.btn-outline{
    background-color: #004253;
    color: white;
    border: solid 2px #004253;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-outline:hover{
    background-color: #268838;
    color: #FFF !important;
    border: solid 2px #268838;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-outline:active{
    background-color: transparent;
    color: #67300F;
    border: solid 2px #67300F;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-whatsapp{
    background-color: #25d366 !important;
    border-radius: 25px;
}

.btn-whatsapp:hover{
    background-color: #188d44;
    border-radius: 25px;
    color: white !important;
}


.border-row{
    border-top: dashed 2px #bdbdbd;
}

.border-col-left{
    border-left: dashed 2px #bdbdbd;
}

.border-col-right{
    border-right: dashed 2px #bdbdbd;
}

body{
    width: 100%;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 200;
    overflow-x: hidden;
}

.title-h1{
    font-size: 75px !important;
}

.altezza{
    height: 88vh;
}

/*CUSTOM*/

.logo-width{
    width: 150px;
}

.logo-width-forn{
    width: 80%;
}

.logo-mobile{
    width: 40px;
}

.dropdown-menu{
    border-radius: 0 !important;
    border-width: 0;
    z-index: 99999;
}

.menu-mobile{
    margin: 0 auto !important;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-height{
    height: 78vh;
}

.bkg-norepeat{
    background-repeat: no-repeat;
    background-size: cover;
}

.boxed{
    margin-left: 350px;
    margin-right: 350px;
}

.header{
    position: absolute;
    top: 25%;
}

.width-hero-text{
    width: 50%;
}

.margin-login{
    margin-top: 100px;
}

.more-margin-top{
    margin-top: 140px;
}

.navbar-toggler{
    border: 0px;
    box-shadow: 0px !important;
}

.navbar-toggler:focus{
    box-shadow: 0px !important;
}

a{
    font-size:14px;
}
.superNav {
    font-size:13px;
}
.form-control {
    outline:none !important;
    box-shadow: none !important;
    border: none !important;
}

.icona-width{
    width: 80px;
}

.border-number{
    border-style: dashed !important;
}
.icona-footer{
    width: 25px;
}

.nav-link{
    font-size: 18px;
    font-weight: normal;
    color: white;
    letter-spacing: 1px;
}

.nav-link:hover{
    opacity: 0.7;
    color: white;
}

.nav-link:active{
    opacity: 0.7;
    color: white !important;
}

.navbar-nav .nav-link.active {
    color: white !important;
}

.nav-link-footer{
    font-size: 16px;
    color: #FFF;
}


/* ICONA CERCA*/

* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    font-size: calc(16px + (24 - 16)*(100vw - 320px)/(1920 - 320));
}
 input {
    font: 1em Raleway, sans-serif;
    line-height: 1.5em;
    color: #67300F;
}

::-webkit-input-placeholder { color: #767a7e; font-size: 16px;}
::-moz-input-placeholder { color: #767a7e; font-size: 16px;}
::-ms-input-placeholder { color: #767a7e; font-size: 16px;}


.button {
    display: inline-block;
    margin: 4px 2px;
    background-color: #fff;
    font-size: 14px;
    padding-left: 32px;
    padding-right: 32px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #67300F;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover {
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    background-color: white;
    color: black;
}

.search-container {
    position: relative;
    display: inline-block;
    margin: 4px 2px;
    height: 50px;
    width: 50px;
    vertical-align: bottom;
}

.mglass {
    display: inline-block;
    pointer-events: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.searchbutton {
    position: absolute;
    font-size: 35px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.search:focus + .searchbutton {
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    background-color: white;
    color: black;
}

.search {
    position: absolute;
    left: 49px; /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
    background-color: white;
    outline: none;
    border: none;
    padding: 0;
    width: 0;
    height: 100%;
    z-index: 10;
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
}

.search:focus {
    width: 363px; /* Bar width+1px */
    padding: 0 16px 0 0;
}

.expandright {
    left: auto;
    right: 49px; /* Button width-1px */
}

.expandright:focus {
    padding: 0 0 0 16px;
}

/*
.search-bar {
    display: flex;
}

.search-bar input,
.search-btn,
.search-btn:before,
.search-btn:after {
    transition: all 0.25s ease-out;
}
.search-bar input,
.search-btn {
    width: 3em;
    height: 3em;
}
.search-bar input:invalid:not(:focus),
.search-btn {
    cursor: pointer;
}
.search-bar,
.search-bar input:focus,
.search-bar input:valid  {
    width: 100%;
}
.search-bar input:focus,
.search-bar input:not(:focus) + .search-btn:focus {
    outline: transparent;
}
.search-bar {
    margin: auto;
    padding: 1.5em;
    justify-content: center;
    max-width: 30em;
}
.search-bar input {
    background: transparent;
    border-radius: 1.5em;
    box-shadow: 0 0 0 0.3em #67300F inset;
    padding: 0.75em;
    transform: translate(0.5em,0.5em) scale(0.5);
    transform-origin: 100% 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.search-bar input::-webkit-search-decoration {
    -webkit-appearance: none;
}
.search-bar input:focus,
.search-bar input:valid {
    background: #fff;
    border-radius: 0.375em 0 0 0.375em;
    box-shadow: 0 0 0 0.1em #d9d9d9 inset;
    transform: scale(1);
}
.search-btn {
    background: #67300F;
    border-radius: 0 0.75em 0.75em 0 / 0 1.5em 1.5em 0;
    padding: 0.75em;
    position: relative;
    transform: translate(0.25em,0.25em) rotate(45deg) scale(0.25,0.125);
    transform-origin: 0 50%;
}
.search-btn:before,
.search-btn:after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
}
.search-btn:before {
    border-radius: 50%;
    box-shadow: 0 0 0 0.2em #f1f1f1 inset;
    top: 0.75em;
    left: 0.75em;
    width: 1.2em;
    height: 1.2em;
}
.search-btn:after {
    background: #f1f1f1;
    border-radius: 0 0.25em 0.25em 0;
    top: 51%;
    left: 51%;
    width: 0.75em;
    height: 0.25em;
    transform: translate(0.2em,0) rotate(45deg);
    transform-origin: 0 50%;
}
.search-btn span {
    display: inline-block;
    overflow: hidden;
    width: 1px;
    height: 1px;
}

 */
/* Active state */ /*
.search-bar input:focus + .search-btn,
.search-bar input:valid + .search-btn {
    background: #67300F;
    border-radius: 0 0.375em 0.375em 0;
    transform: scale(1);
}
.search-bar input:focus + .search-btn:before,
.search-bar input:focus + .search-btn:after,
.search-bar input:valid + .search-btn:before,
.search-bar input:valid + .search-btn:after {
    opacity: 1;
}
.search-bar input:focus + .search-btn:hover,
.search-bar input:valid + .search-btn:hover,
.search-bar input:valid:not(:focus) + .search-btn:focus {
    background: #67300F;
}
.search-bar input:focus + .search-btn:active,
.search-bar input:valid + .search-btn:active {
    transform: translateY(1px);
}*/


.desktop-height{
    height: 550px;
}

.height-desktop-cat{
    height: 750px;
}

.border-right{
    border-right: solid;
}

.form-label{
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
}

.form-check-label{
    font-size: 18px;
    font-weight: 400;
}

.form-control{
    background-color: white;
    border: solid 1px dimgrey;
    border-radius: 6px;
}


.circle {
    width: 23px;
    height: 23px;
    background-color: #FDA27E;
    border-radius: 50%;
    position: relative;
}
.cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 2px;
}
.cross:before, .cross:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}
.cross:before {
    transform: rotate(45deg);
}
.cross:after {
    transform: rotate(-45deg);
}

.barrato{
    text-decoration:line-through;
}

@media screen and (max-width: 1550px){
    .bg-image{
        background-position: top;
    }
}

@media screen and (max-width: 1200px){
    .offcanvas{
        width: 50% !important;
    }


    .logo-width {
        width: 150px;
    }
}

@media screen and (max-width:1024px){

    .box-height{
        height: 250px;
    }

    .comunicazione-bg-1{
        height: 250px;
    }

    .comunicazione-bg-2{
        height: 250px;
    }

    .comunicazione-bg-3{
        height: 250px;
    }

    .desktop-height{
        height: unset;
    }

    .height-desktop-cat{
        height: unset;
    }

    .cart-height{
        height: 65vh !important;
    }

    .border-row{
        border-top: none;
    }

    .border-col-left{
        border-left: none;
    }

    .border-col-right{
        border-right: none;
    }

    .carousel-control-next {
        left: 85% !important;
    }

    .bg-image-anagrafica {
        background-position: initial;
    }

    .altezza {
        height: 92vh;
    }

    .product__title{
        left: 25px;
        bottom: 18px;
    }

}

@media screen and (max-width:768px){

    .sottotitolo{
        font-weight: bold;
    }

    .input-footer{
        height: 43px;
    }


    .title-h1{
        font-size: 38px !important;
    }

    .img-carosello{
        height: 50%;
    }

    .bg-image-gruppo{
        background-position: left;
    }

    .img-hero-mobile{
        width: -webkit-fill-available;
    }

    .bg-image-anagrafica{
        background-image: url("../img/images/Img-anagrafica-GaragePro-mobile.jpg");
    }

    .bg-image-contabilita{
        background-image: url("../img/images/Img-contabilita-GaragePro-mobile.jpg");
    }

    .centerOnMobile {
        text-align:center
    }

    .more-margin-top{
        margin-top: 0px;
    }

    .logo-width{
        width: 130px;
    }

    .width-hero-text{
        width: 70%;
    }

    h1{line-height: 50px;}

    .lil-text{
        font-size: 14px;
    }

    .margin-login{
        margin-top: 50px;
    }

    .width-recupera{
        width: 300px;
    }

    .border-right{
        border-right: unset;
    }
    .offcanvas{
        width: 100% !important;
    }
    .img-offcanvas{
        width: 100px;
    }

}

@media screen and (max-width: 576px) {

    .altezza{
        height: 85vh;
    }

    .footer,
    .header {
        padding: 12px 20px;
    }
    .footer-item {
        font-size: 12px;
    }
    .swiper-slide {
        perspective: none;
        width: auto;
        padding: 20px;
        align-items: start;
        height: auto !important;
    }
    .product__banner img {
        width: 55% !important;
        bottom: 115px;
    }

    .pt-site-footer__submit{
        width: 300px !important;
    }

    .swiper-wrapper {
        width: 100%;
    }
    .product {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }
    .product__content {
        transform: translateZ(0px);
        width: calc(100% - 40px);
        margin-left: 20px;
    }
    .product__banner {
        padding: 12px;
        border-radius: 20px;
        box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.08);
        height: 350px;
    }
    .product__title {
        left: 0;
        bottom: 10px;
        font-size: 2em;
    }
    .product__description {
        left: 0;
        bottom: 0;
        font-size: 12px;
        width: 180px;
    }
    .product__organic-logo {
        right: -40px;
        top: -368px;
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
    .product__price {
        bottom: 15px;
        right: 0px;
    }
}

