@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Tokyo+Zoo&display=swap');

body{
    direction: ltr;
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
label {
    color: #ccc;
}
.input-v1305747{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    margin: 14px 0px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.textarea-v1305747{
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    width: 100%;
}

    .form-check {
        width: 100%;
    }
    .form-check .form-check-input {
        width: 10px;
        height: 15px;
        padding: 10px;
        margin-right: 10px;
    }
    .header-color-back {
        background: rgba(255,255,255,0.9); color: #222;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .header-cont {
        display: flex;
        flex-direction: row;
        gap: 25px;
        align-items: center;
        justify-content: space-between;
    }

    .header-brand {
        display: flex;
        flex-direction: row;
        gap: 14px;
        align-items: center;
    }

    .header-logotip-img {
        width: 50px;
        height: auto;
    }

    .header-name-txt {
        margin-bottom: 0;
        font-size: 28px;
    }


    .header-contact {
        display: flex;
        flex-direction: column;
        gap:  14px;
    }

    .header-contact-item {
        display: flex;
        flex-direction: row;
        gap:  14px;
        align-items: center;
    }

    .header-contact-item p {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0;
        word-break: break-word;
    } 

    .header-contact-item i {
        font-size: 28px;
    }

    .main-screen {
        position: relative;
        background: linear-gradient(60deg, #FFA069 0%, #e8eaeb 100%);
        color: white;
    }

    .main-screen-op {
        background: url(bg/0_opacity.png);
        background-position: center;
        background-size: cover;
        width: 100%;
        height: auto;
    }

    .navigation-block {
        width: 80%;
    }

    .navig-wrapper {
        display: flex;
        flex-direction: row;
        gap: 15px;
        padding-top: 20px;
    }

    .n-link {
        color: #fff;
        margin: 0;
        font-size: 18px;
    }

    /* .dropdown {
            float: left;
    } */
        
    .dropdown .dropbtn {
            font-size:  18px;    
            border: none;
            outline: none;
            color: #fff;
            background-color: inherit;
            font-family: inherit;
            margin: 0;
            transition: all .4s ease;
    }
        
    .n-link:hover, .dropdown:hover .dropbtn {
            color: #000;
    }

    .part-link {
        display: none;
    }
        
    .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 3;
    }
        
    .dropdown-content a {
            float: none;
            color: black;
            padding: 14px 20px;
            text-decoration: none;
            display: block;
            text-align: left;
            width: 400px;
    }
        
    .dropdown-content a:hover {
            background-color: #000;
            color: #fff;
    }
        
    .dropdown:hover .dropdown-content {
            display: block;
    }

    .main-screen-content {
        padding-top:  42px;
        padding-bottom:  42px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 27px;
    }

    .main-screen-title {
        width: 50%;
        font-size: 28px;
        text-align: center;
    }

    .main-screen-img {
        width: 50%;
        max-height: 300px;
        display: flex;
        margin: 0 auto;
    }
    
    .waves {
        position:relative;
        width: 100%;
        height:15vh;
        margin-bottom:-7px; /*Fix for safari gap*/
        min-height:100px;
        max-height:150px;
    }
    
    .parallax > use {
        animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
    }

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

    @keyframes move-forever {
        0% {
        transform: translate3d(-90px,0,0);
        }
        100% { 
        transform: translate3d(85px,0,0);
        }
    }

    @media (max-width: 768px) {
        .waves {
        height:40px;
        min-height:40px;
        }
    }

    .main-body-bg {
        background-color: #fff;
    }

    .main-body {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .side-section {
        width: 25%;
        padding: 42px 27px;
        display: flex;
        flex-direction: column;
        gap: 42px;
    }

    .about-info {
        padding: 14px 20px;
        background: #f6f6f6;
        border-radius: 24px;
        align-self: center;
    }

    .about-brand {
        display: flex;
        gap: 6px;
        justify-content: end;
        align-items: center;
    }

    .about-brand::before {
        content: " ";
        width: 30px;
        height: 2px;
        background: black;
    }    

    .about-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 27px;
    }

    .about-txt {
        font-size: 16px;
    }

    .about-logotip-img {
        width: 35px;
        height: auto;
    }

    .about-name-txt {
        margin-bottom: 0;
        font-size: 18px;
    }

    .steps-for-order-block {
        padding: 25px 27px;
        background: #f6f6f6;
        border-radius: 24px;
    }

    .steps-for-order-title {
        text-align: center;
        font-size: 28px;
        margin-bottom: 27px;
    }

    .steps-for-order-wrapper {
        display: flex;
        flex-direction: column;
    }

    .order-step {
        padding: 20px 25px;
        display: flex; 
        flex-direction: column;
        align-items: center;
        gap: 10px;
        border-radius: 0px;
        transition: transform 0.3s ease;
    }

    .order-step:hover {
        background-color: #FFA069;
        color: #fff;
    }

    .order-step i {
        font-size: 40px;
    }

    .order-step h4 {
        text-align: center;
        font-weight: 500;
        font-size: 18px;
        margin: 0;
    }

    .order-step p {
        text-align: center;
        font-weight: 500;
        font-size: 16px;
        margin: 0;
    }


    .rand-contact {
        display: none;
        padding: 25px 27px;
        background: #f6f6f6;
        border-radius: 24px;
    }

    .rand-contact-title {
        text-align: center;
        font-size: 28px;
        margin-bottom: 27px;
    }


    .rand-contact-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .r-c-adress, .r-c-phone, .r-c-email {
        padding: 20px 25px;
        display: flex; 
        flex-direction: column;
        align-items: center;
        gap: 14px;
        border-radius: 0px;
        transition: transform 0.3s ease;
    }

    .r-c-adress:hover, .r-c-phone:hover, .r-c-email:hover {
        background-color: #FFA069;
        color: #fff;
    }

    .r-c-adress i, .r-c-phone i, .r-c-email i {
        font-size: 28px;
    }

    .r-c-adress h4, .r-c-phone h4, .r-c-email h4 {
        text-align: center;
        font-weight: 500;
        font-size: 18px;
        margin: 0;
    }

    .r-c-adress p, .r-c-phone p, .r-c-email p {
        text-align: center;
        font-weight: 500;
        font-size: 16px;
        margin: 0;
    }

    .catalog-prod-container {
        width: 75%;
        padding-top: 42px;
    }

    .catalog-prod-title {
        font-size: 28px;
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 27px;
    }

    .catalog-prod-block {
        display: flex;
        flex-direction: column;
    }

    .catalog-prod-card {
        background:#f6f6f6;
        border-radius:24px 24px 24px 48px;
        padding: 38px 38px 38px 308px;
        margin: 52px 0;
        width: 80%;
        display:flex;
        flex-direction:row;
        align-self:flex-start;
        justify-content: end;
        position:relative;
    }

    .catalog-prod-text {
        display:flex;
        flex-direction:column;
        width: 85%;
    }

    .visual {
        width:40%;
        height:100%;
        position:absolute;
        top:-24px;
        left:24px; 
        overflow:hidden;
        border-radius:24px;
        background-color: #e5e2e2;
    }

    .visual img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .catalog-prod-card:nth-of-type(odd) {
        margin:0 0 0 17%;
        border-radius:24px 24px 48px 24px;
        padding:38px 308px 38px 38px;
        justify-content: start;
    }

    .catalog-prod-card:nth-of-type(odd) .visual {
        right:24px;
        left:auto
    }

    .catalog-prod-card:nth-of-type(odd) .catalog-prod-text a {
        align-self:flex-start
    }
    
    .prod-title h3 {
        margin:0;
        font-size: 18px;
        font-weight: 500;
        color: #000;
    }

    .prod-info {
        margin-top: 14px;
        padding: 14px 0;
        display: flex;
        gap: 14px;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #595959 ;
    }

    .prod-info p {
        margin-bottom: 0;
        text-align: center;
        color: #009A44;
        font-weight: 800;
    }


    .prod-desc {
        margin:  20px 0 25px;
        font-size: 16px;
        color: #000;
    }

    .c-prod-button {
        background-color: white;
        color: black;
        border-radius: 10em;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 20px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        border: 1px solid black;
        box-shadow: 0 0 0 0 black;
    }
        
    .c-prod-button:hover {
        transform: translateY(-4px) translateX(-2px);
        box-shadow: 2px 5px 0 0 black;
    }
        
    .c-prod-button:active {
        transform: translateY(2px) translateX(1px);
        box-shadow: 0 0 0 0 black;
    }
    form#consultation-form .form-check .form-check-label {
        color: #222;
    }
    form#consultation-form .form-check a {
        color: #0a58ca;
    }
    .our-benefits-bg {
        background-color: #fff;
         padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .our-benefits {
        display: flex;
        flex-direction: row;
        position: relative;
    }

    .our-benefits-img {
        width: 70%;
        height: 700px;
    }

    .our-benefits-img img { 
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .our-benefits-block {
        width: 70%;
        position: absolute;
        right: 0;
        top: 10%;
        display: flex;
        flex-direction: column;
        gap: 27px;
        padding: 45px 45px;
        background: rgba(255,255,255,0.9); color: #222;
    }

    .our-benefits-title {
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .our-benefits-title:hover {
        color: #FFA069;
    }

    .our-benefits-entry {
        display:  none;
        font-size: 18px;
        margin: 0 auto;
    }  
    
    .our-benefits-final  {
        display: none;
        font-size: 18px;
        margin: 0 auto;
    }

    .our-benefits-list {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .our-benefits-item {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: calc( 100% / 3 - 27px/2);
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        padding: 25px;
        transition: all 0.3s ease-in-out;
    }

    .our-benefits-item:hover {
        background-color: #FFA069;
        color: #fff;
    }

    .benefit-title {
        display: flex;
        flex-direction: row;
        gap: 14px;
        align-items: center;
        justify-content: start;
    }

    .benefit-title h3 {
        font-size:  28px;
        text-transform: uppercase;
        margin-bottom: 6px;
        font-weight: 500;
    }

    .benefit-title i {
        font-size: 48px;
    }

    .benefit-txt{
        font-size: 16px;
        color: inherit;
        font-weight: 500;
    }

    .work-section-bg {
        background-image: url( bg/0_bg.jpg);
        background-position: center;
        background-size: cover;
    }

    .work-section-op {
        padding-top: 74px;
        padding-bottom: 42px;
    }

    .work-partners-buy {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .work-section {
        width: 50%;
    }

    .work-section-title {
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 27px;
    }

    .work-time {
        display: flex;
        gap: 25px;
        align-items: center;
    }

    .work-hours-txt {
        font-size: 18px;
        font-weight: 500;
    }

    .clock-img {
        font-size: 48px;
    }

    .deivery-title {
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-top: 27px;
        text-align: right;
    }

    .delivery-days {
        justify-content: end;
        display: flex;
        gap: 25px;
        align-items: center;
    } 

    .deliv-img {
        font-size: 48px;
    }

    .rand-partners-wrappper {
        display: none;
        width: 50%;
    }

    .rand-partners {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
    }

    .rand-partners-title {
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 27px;
        margin-left: ;42px
        float: left;
    }

    .rand-partners-img {
        padding: 25px;
        height: auto;
        transition: 3.5s;
    }

    .rand-partners-img:hover img {
        transform: scale(1.5);
    }

    .rand-partners-logo {
        width: 100%;
        height: 100%;
    }

    .rand-btn-form {
        width: 45%;
        right: 0;
    }

    .rand-btn-form img {
        max-width: 50%;
        max-height: 550px;
        display: flex;
        margin: 0 auto;
    }

    .btn-block {
        position: absolute;
        top: 50%;
        background-color: #fff;
        border-radius: 24px;
        padding: 74px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:  25px;
    }

    .bnt-title {
        font-size: 28px;
        color: #000;
    }

    .btn-link {
        display: flex;
        justify-content: center;
        text-decoration: none;
        width: 100%;
        font-size: 18px;
        margin: 0 auto;
    }
    .form-check-label{
        color: #fff;
    }
    .form-check-label a{
        color: #fff; 
    }
    .form-block {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 25px;
        background-color: #171717;
        border-radius: 25px;
        transition: .4s ease-in-out;
    }

    .form-title {
        font-size: 18px;
        color: #fff;
    }
      
    .form-field {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5em;
        border-radius: 25px;
        padding: 0.6em;
        border: none;
        outline: none;
        color: white;
        background-color: #171717;
        box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
    }
      
    .input-icon {
        height: 1.3em;
        width: 1.3em;
        fill: white;
    }
      
    .input-field {
        background: none;
        border: none;
        outline: none;
        width: 100%;
        color: #d3d3d3;
    }
      
    .form-btn {
        display: flex;
        justify-content: center;
        flex-direction: row;
        margin-top: 2.5em;
    }
      
    .form-btn button {
        padding: 0.5em;
        padding-left: 2.3em;
        padding-right: 2.3em;
        border-radius: 5px;
        border: none;
        outline: none;
        transition: .4s ease-in-out;
        background-color: #252525;
        color: white;
    }
      
    .form-btn:hover button {
        background-color: black;
        color: white;
    }

    .footer-bg {
        background-color: #f0e4d7;
        padding-top: 70px;
        padding-bottom: 27px;
    }

    .footer-nav-gallery {
        display: flex;
        flex-direction: row;
        gap: 25px;
        justify-content: space-between;
        align-items: end;
    }

    .footer-logotip {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-bottom: 20px;
    }

    .footer-logotip-img {
        width: 50px;
        height: auto;
    }

    .footer-name-txt {
        margin-bottom: 0;
        font-size: 28px;
    }

    .spes-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .s-link {
        text-decoration: none;
        font-size: 16px;
    }

    .s-link:hover {
        text-decoration: underline;
    }

    .footer-gallery {
        display: flex;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .footer-gallery img {
        display: block;
        height: 125px;
        width: 125px;
        object-fit: cover;
    }

    .footer-pay-img {
        display: flex;
        flex-direction: column;
        gap: 20px;            
    }

    .footer-pay-img img {
        width: 200px;
        height: auto;
    }

    .productpage {
        padding: 74px 0;
        display: flex;
        flex-direction: column;
    }

    .productpage-title {
        font-size: 32px;
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 42px;
        padding-bottom: 38px;
        border-bottom: 0px solid rgb(129, 132, 134);
    }

    .productpage-cont {
        display: flex;
        flex-direction: row;
        gap: 25px;
    }

    .productpage-img-clients {
        width: 50%;
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-direction: column;
    }

    .productpage-img img {
        width: 100%;
    }

    .productpage-text {
        width: 50%;
        display: flex;
        gap: 25px;
        justify-content: center;
    }

    .productpage-clients {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .productpage-clients-title {
        font-size: 28px;
        padding: 14px;
        margin-bottom: 0;
        background-color: #FFA069;
        color: #fff;
    }

    .productpage-clients p {
        font-size: 18px;
        padding: 14px;
        margin-bottom: 0;
        color: #fff;
        background-color: #FFA069;
    }

    :root {
        --star-size: 40px;
        --star-color: rgb(226, 226, 226);
        --star-background: #FFA069;
    }

    .Stars {
        --percent: calc(var(--rating) / 5 * 100%);
        font-size: 27px;
        font-family: Times;
        line-height: 1;
        padding: 14px 20px;
        border-radius: 35px;
        bottom: auto;
    }

    .Stars::before {
        content: '✸✸✸✸✸';
        letter-spacing: 3px;
        background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .p-descrip-title {
        color: inherit;
        font-size: 40px;
        font-weight: 500;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .p-descrip {
        font-size: 28px;                
    }

    .productpage-price {
        display: flex;
        flex-direction: row;
        gap: 25px;
        align-items: center;
    }

    .price-prod {
        margin-bottom: 0;
        font-size: 28px;
        color: #009A44;
    }

    .productpage-info {
        margin-top: 25px;
        display: flex;
        flex-direction: row;
        gap: 25px;
        flex-wrap: wrap;
    }

    .p-info-item {
        display: flex;
        flex-direction: row;
        gap: 14px;
        align-items: center;
    }

    .p-info-item i {
        font-size: 32px;
    }

    .p-info-item p {
        margin: 0;
        text-align: center;
        font-size: 18px;
    }

    .buy-btn {
        min-width: 300px;
    }

    .p-form {
        align-items: center;
        justify-content: center;
        margin-top: 6px;
        display: flex;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }

    .p-form input {
        height: 45px;
        border-radius: 5px;
        background: white;
        border: none;
        padding: 0 20px;
        font-weight: 300;
        font-size: 16px;
        color: #4B4B4B;
        box-shadow: 0px 0px 0px #0e0e0e, 0px 0px 0px rgb(95 94 94 / 25%), inset 1.5px 1.5px 3px #0e0e0e, inset -1.5px -1.5px 3px #5f5e5e;
    }

    .comment-qa-bg {
        background-image: url(bg/0_bg.jpg);
        background-position: center;
        background-size: cover;
    }

    .comment-qa-op {
        background: rgba(0,0,0,0.5); color: #fff;
    }


    .comment-qa {
        padding-top: 42px;
        padding-bottom: 42px;
        display: flex;
        flex-direction: row;
        gap: 42px;
    }

    .prodpage-comm-title {
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 27px;
    }

    .prodpage-comment-block {
        display: flex;
        flex-direction: column;
    }

    .p-comment {
        width: 50%;
        display: flex;
        position: relative;
        margin-left: 130px;
    }

    .circle {
        height: 100%;
        width: 40%;
        border-radius: 50%;
        border: 1px solid;
        overflow: hidden;
        position: absolute;
        left: -20%;
    }

    .circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .p-comment-txt {
        height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 27px;
        border-top: 1px solid;
        border-right: 1px solid;
        border-bottom: 1px solid;
        background-color: #f6f6f6;
    }

    .p-comment-txt p, .p-comment-txt h4 {
        margin-left: 120px ;
        color: #000;
    }

    .qa-accordion {
        width: 85%;
        display: none;
        align-self: center;
    }

    .qa-title {
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 27px;
    }

    .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: #009A44;
    }

    .accordion-button.collapsed {
        color: #fff;
        background-color: #009A44;
    }

    .accordion-collapse {
        background-color: #f6f6f6;
    }
    
    .accordion-body {
        color: #000;
    }

    .contactpage {
        display: flex;
        flex-direction: row;
        gap: 25px;
        padding: 74px 0;
    }

    .contactpage-contact {
        width: 40%;
    }

    .contact-page-title {
        font-size: 32px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 27px;
    }

    .contactpage-form {
        width: 60%;
        position: relative;
        display: flex;
        align-items: center;
    }

    .contactpage-form img {
        width: 100%;
        max-height: 550px;
    }

    .contactpage-form-block {
        width: 100%;
        position: absolute;
        top: 50%;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 25px;
        background-color: #171717;
        border-radius: 25px;
        transition: .4s ease-in-out; 
    }

       

       








