@import "navigation.css";

@font-face {
    font-family: Poppins;
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

@font-face {
    font-family: Nunito;
    src: url('../fonts/Nunito-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 600;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

html,
body {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #898989;
}

h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #002c4f;
    font-size: 1.6em;
}

h3 {
    font-size: 1.05em;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
    color: #002c4f;
}

a {
    color: #002c4f;
    text-decoration: none;
}

p {
    font-size: .9em;
    color: #898989;
}
abbr {
	color:red;
}
.woocommerce-error {
	color:red;
}
/*
 * Default WP Alignment Classes
 *****************************************************************************/
.lightboxOverlay {
	position:fixed;
	left:0;
	right:0;
	bottom:0;
	top:0;
	max-height:100vh;
	max-width:100vw;
}

.lightbox {
 
    padding: 20px;
    border-radius: 10px;
	top:50%!important;
	left:50%!important;
	transform:translate(-50%, -50%);
}
.aligncenter,
.alignleft,
.alignright {
    display: block;
    padding: 0;
}

.aligncenter {
    float: none;
    margin: .5em auto 2em;
}

.alignright {
    float: right;
    margin: .5em 0 .5em 2em;
}

.alignleft {
    float: left;
    margin: .5em 2em .5em 0;
}

.wp-caption {
    padding: 5px 0;
    border: 1px solid #555;
    background: #444;
    text-align: center;
}

.wp-caption img {
    display: inline;
}

.wp-caption p.wp-caption-text {
    margin: 5px 0 0;
    padding: 0;
    text-align: center;
    font-size: 75%;
    font-weight: 100;
    font-style: italic;
    color: #ddd;
}

.btn-gradient {
    border-radius: 5px;
    color: #fff;
    background: #1eb6e9;
    background: linear-gradient(90deg, rgba(30, 182, 233, 1) 0%, rgba(145, 199, 56, 1) 100%);
    padding: 10px 30px;
    box-shadow: 0px 12px 22px -10px rgba(0, 44, 79, 0.6);
    cursor: pointer;
    transition: all ease-in-out 200ms;
    border: none;
}

.btn-gradient:focus,
.btn-gradient:active {
    outline: none;
}

.btn-green {
    background-color: #91c738;
    border: 1px solid #91c738;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    color: #fff !important;
    cursor: pointer;
    transition: all ease-in-out 200ms;
    padding: 10px 30px;
    display: block;
}

.btn-green:hover {
    background-color: transparent;
    border: 1px solid #91c738;
    color: #91c738 !important;
}

.btn-blue {
    background-color: #1eb6e9;
    border: 1px solid #1eb6e9;
    color: #fff !important;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all ease-in-out 200ms;
    padding: 10px 30px;
    display: block;
}

.btn-blue:hover {
    background-color: transparent;
    border: 1px solid #1eb6e9;
    color: #1eb6e9 !important;
}

.btn-gradient:hover {
    box-shadow: 0px 20px 18px -15px rgba(0, 44, 79, 0.4);
    transform: translate(0px, -2px) scale(1.02);
    text-decoration: none;
    color: #002c4f;
}

.btn-dot {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    /* Dodajemy padding, aby zwiększyć obszar klikalny przycisku */
    font-size: .9em;
    font-weight: 600;
    color: #002c4f;
    /* Kolor tekstu, możesz dostosować */
    text-decoration: none;
    /* Usuwamy podkreślenie linku */

    /* Ukrywamy elementy wykraczające poza szerokość przycisku */
    z-index: 1;
    /* Aby tekst i ikonka były nad pseudoelementem */
    transition: color 0.3s ease;
    /* Płynne przejście koloru tekstu przy najechaniu */
    max-width: fit-content;
    margin-top: 30px;
}

.btn-dot:before {
    position: absolute;
    content: '';
    background-color: #1eb6e9;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    left: 0px;
    z-index: -1;
    transition: width 0.4s ease, left 0.4s ease;
    /* Animacja dla szerokości i położenia */
}

.icon-arrow-right {
    position: relative;
    background-image: url(../img/icons/arrow-right-blue.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-position: center;
    background-size: contain;
    transition: margin-left 0.4s ease;
    /* Płynne przesunięcie ikonki przy najechaniu */
}

.icon-arrow-left {
    position: relative;
    background-image: url(../img/icons/arrow-left-blue.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-position: center;
    background-size: contain;
    transition: margin-left 0.4s ease;
    /* Płynne przesunięcie ikonki przy najechaniu */
}

.btn-dot:hover .icon-arrow-right {
    background-image: url(../img/icons/arrow-right-white.png);
}

.icon-arrow-left:hover {
    background-image: url(../img/icons/arrow-left-white.png);
}

.btn-dot:hover:before {
    background-color: #1eb6e9;
    width: 100%;
    /* Rozszerzenie na pełną szerokość */
    height: 50px;
    /* Dopasowanie wysokości */
    left: 0;
    height: 40px;
    /* Rozpoczęcie od lewej krawędzi przycisku */
    border-radius: 50px;
    /* Zaokrąglone rogi */
}

.btn-dot:hover {
    color: #fff;
    /* Zmiana koloru tekstu przy najechaniu */
}


/**** Icons *****/
.share-icon-facebook {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    display: block;
    background-image: url(../img/icons/icon-facebook.png);

}

.waves-line-hr {
    width: 100%;
    background-color: #002c4f;
    height: 1px;
    display: block;
    width: 100%;
    margin: 15px auto 5px;
}

#main-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 90vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 100px;
    perspective: 100px;
    z-index: 1;
}

#main-header:before {
    -webkit-animation: no-transform 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
    animation: no-transform 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
    background-image: url('../img/header-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateY(-4em);
    transform: translateY(-4em);
    z-index: -1;
}

#main-header:after {
    background-color: #032673;
    content: "";
}

.header-waves {
    background-image: url('../img/waves_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    bottom: -1px;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 0;
    left: 0;
    right: 0;
    position: absolute;
    /* top: auto;
    bottom: 350px; */
    bottom: -1px;
    top: auto;
}

#page-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 300px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;

    -webkit-perspective: 30px;

    perspective: 30px;
    background-color: #002c4f;
    z-index: 1;
}

#page-header:before {
    -webkit-animation: fade-in 2s .5s cubic-bezier(0, 0.5, 0, 0.5) forwards;
    animation: fade-in 2s .5s cubic-bezier(0, 0.5, 0, 0.5) forwards;
    background-image: url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
}

#page-header:after {
    background-image: url('../img/bg-wave-header.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    height: 40px;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    bottom: -20px;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 1;
}

.main-wrapper {
    margin: 70px auto;
}

.page-desc-short p {
    font-size: 1.111em;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 0.15;
        transform: translateY(0);
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
    }

    100% {
        opacity: 0.15;
        -webkit-transform: translateY(0);
    }
}

.section-header {
    position: relative;
    margin-bottom: 50px;
}

.section-header-40-60 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}


.section-header h2 {
    font-size: 1.8em;
}

.color-white {
    color: #fff;
}

.section-page-header {
    padding-top: 30px;
}

.section-page-header h2 {
    font-size: 1.6em;
}

.header-title {
    color: #fff;
}
.header-subtitle {
    color: #002c4f;
}
.header-title {
    font-size: 1.8em;
}

.header-title span {
    color: #002c4f;
}

.header-subtitle {
    max-width: 90%;
    margin: 0 auto 4em;
    text-transform: uppercase;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.max-width-70 {
    width: 100%;
    margin: 40px auto 10px;
}


.header-button {
    position: relative;
    -webkit-transform: translateZ(.1px);
    transform: translateZ(.1px);
    z-index: 10;
}

.animate-pop-in {
    -webkit-animation: no-transform .6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
    animation: no-transform .6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
    opacity: 0;
    -webkit-transform: translateY(-4em) scale(.8);
    transform: translateY(-4em) scale(.8);
}

/* .rocky-dashed {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
} */

.header-title {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.header-button {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.main-content {
    margin: 40px 0;
}

.page .main-content {
    margin: 30px 0 0;
}

/* Animations */

@-webkit-keyframes no-transform {
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes no-transform {
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes rotate-up {
    100% {
        -webkit-transform: rotateZ(-4deg);
        transform: rotateZ(-4deg);
    }
}

@keyframes rotate-up {
    100% {
        -webkit-transform: rotateZ(-4deg);
        transform: rotateZ(-4deg);
    }
}

/******* section desc*****/
.section-desc {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    color: #898989;
    align-items: baseline;
    justify-content: space-between;
}

.text-desc {
    width: 100%;
}

.section-title {
    margin-bottom: 30px;
}

.about-page {
    margin: 20px 0 150px;
}

.different {
    background-color: #002c4f;
    padding: 70px 0 50px;
    margin: 100px 0 0;
    color: #fff;
    box-shadow: 0px 15px 25px rgba(0, 44, 79, .5);
}

.different p {
    color: #fff;
}

.box-icon-wrap,
.icon-wrap {
    margin-top: 20px;
}

.box-icon-wrap h3,
.icon-wrap h3 {
    color: #91c738;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.05em;
}

.icon-wrap p {
    color: #fff;
    ;
}

.box-icon-wrap .col-12 {
    margin-bottom: 20px;
}

.box-icon {
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-image: var(--iconBackground);
    background-size: contain;
    max-width: -webkit-fill-available;
    width: 100%;
    height: 50px;
    margin-bottom: 0px;
}


.slider-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 30px;
}

.slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    /* Płynne przejście opacity */
}

.slider img.active {
    opacity: 1;
    z-index: 1;
}

.arrow-icon {
    position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
}

.arrow-icon:before {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #cdcdcd;
    /* Obramowanie dla strzałki */
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 0;
    width: 15%;
    /* Gradient o szerokości 50px */
    height: 100%;
    /* Na całą wysokość slidera */
    z-index: 10;
}

.arrow-icon:hover:before {
    background-color: #91c738;
}

.left-arrow:hover .icon-arrow-left,
.prev-arrow:hover .icon-arrow-left {
    background-image: url(../img/icons/arrow-left-white.png);
}

.right-arrow:hover .icon-arrow-right,
.next-arrow:hover .icon-arrow-right {
    background-image: url(../img/icons/arrow-right-white.png);
}

.left-arrow {
    left: 0;
    background: linear-gradient(to left, transparent, white);
    /* Gradient od przezroczystości do białego */
}

.right-arrow {
    right: 0;
    background: linear-gradient(to right, transparent, white);
    /* Gradient od białego do przezroczystości */
}

.arrow span {
    font-size: 24px;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.left-arrow .arrow-icon {
    left: 0px;
}

.right-arrow .arrow-icon {
    right: 0px;
}

.image-about-wrap {
    position: relative;
}

.story-img {
    width: auto;
    height: 250px;
    position: relative;
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.box-green {
    background: #91c738;
    border: 2px solid #fff;
    padding: 10px;
    text-align: center;
    color: #fff;
    width: 55%;
    position: absolute;
    font-size: 1em;
    top: auto;
    bottom: -60px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.about {
    margin: 30px 0;
}

.about-page .box-green {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.about-page .section-title {
    margin-top: 80px;
}

.about-page .box-green span {
    font-size: 2em;
    display: block;
}

.cartul.cart_list li a,
.woocommerce ul.cart_list li a,
.widget_shopping_cart_content li a {
    font-size: .7em;
    display: flex;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    text-align: left;
    margin-bottom: 5px;
}

ul.cart_list li a.remove_from_cart_button,
.woocommerce ul.cart_list li a.remove_from_cart_button,
.widget_shopping_cart_content li a.remove_from_cart_button {
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    font-size: 1em;
    line-height: 20px;
    color: red;
}

.woocommerce-mini-cart__total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #611715;
}

.woocommerce-mini-cart.product_list_widget li img,
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.cart_list li img,
.woocommerce-page ul.product_list_widget li img .widget_shopping_cart_content li {
    width: 100%;
    position: relative;
    padding: 0px 0px 0 0px;
    display: inline-block;
    padding-right: 20px;
    margin-bottom: 30px;
    max-width: 70px;
}

ul.cart_list li img,
.woocommerce ul.cart_list li img,
.woocommerce-mini-cart.product_list_widget li img,
.woocommerce ul.product_list_widget li img {
    height: auto;
    max-height: fit-content;
    width: 70px;
}

.woocommerce-mini-cart__buttons .button,
.woocommerce .product .add_to_cart_button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button {
    background-color: #fff;
    border: 1px solid #1eb6e9;
    color: #1eb6e9;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    display: inline-block;
    padding: 10px 15px;
}

.woocommerce-mini-cart__buttons .button {
    width: 100%;
    margin-top: 10px !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover {
    background-color: #1eb6e9;
    border: 2px solid #1eb6e9;
    color: #fff;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.woocommerce a.button.alt {
    border-radius: 5px;
    color: #fff;
    background: #1eb6e9;
    background: linear-gradient(90deg, rgba(30, 182, 233, 1) 0%, rgba(145, 199, 56, 1) 100%);
    padding: 10px 30px;
    min-height: 45px;
    box-shadow: 0px 12px 22px -10px rgba(0, 44, 79, 0.6);
    cursor: pointer;
    transition: all ease-in-out 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce a.button.alt:hover {
    box-shadow: 0px 20px 18px -15px rgba(0, 44, 79, 0.4);
    transform: translate(0px, -2px) scale(1.02);
}

/**** Section product home page****/


.page .product {
    padding: 70px 0;
    height: min-content;
}

.page .product img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 20px auto;
    display: block;
}

.page .product ul li {
    list-style-type: none;
}

.page .product li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 10px;

}

.page .product ul li::before {
    content: '';
    background-image: url('../img/icons/icon-check.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 27px;
    height: 24px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 3px
}



.page .product .product-price {
    background: #002c4f;
    width: 100%;
    max-width: 170px;
    margin: 10px auto 30px;
    display: block;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    position: relative;

    text-align: center;
    zoom: .8;
    font-size: 1rem;
}

.woocommerce-Price-amount {

    font-weight: 700;
}

.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
    color: #898989;
}

.product .product-price i {
    font-size: .7em;
    display: block;
}

.product .product-price .amount {
    font-size: 1.6em;
}

.product .btn-gradient {
    display: flex;
    max-width: fit-content;
    min-width: max-content;
    margin: 45px auto 0px;
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}



.product-price .woocommerce-Price-currencySymbol {
    margin-left: 5px;
}

.product .product-arrow-container {
    position: relative;
    margin: auto;
    width: 90px;
    display: flex;
    justify-content: space-around;
}

.slick-slide {
    max-height: fit-content;
}

/*section Why choose us*/
#why {
    position: relative;
    padding: 100px 0 70px;
    margin-bottom: 70px;
    color: #fff;
    background-color: #002c4f;
}

.why-icon-wrap {
    margin-top: 30px;
    position: relative;
}

.why-icon-wrap:after {

    background: url('../img/drzewko.png');
    position: absolute;
    content: '';
    width: 100px;
    height: 80px;
    display: block;
    right: 0;
    bottom: -70px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.why-icon-wrap .box-icon {
    margin-bottom: 0px;
    max-width: 50px;
    margin-right: 15px;
}

.why-icon-wrap .icon-box-item p {
    margin-bottom: 0;
    text-align: left;
}

.why-icon-wrap .icon-box-item {
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: normal;
    padding: 20px 30px;
    color: #002c4f;
    margin-bottom: 30px;
}

.why h3 {
    color: #fff;
}

/**** section mission****/
.mission {
    background-color: #002c4f;
    color: #fff;
    padding: 50px 0;
    margin: 50px 0;
    position: relative;
    box-shadow: 0px 0px 35px 7px rgba(0, 44, 79, .5);
}

.mission-wrap {
    margin-top: 100px;
}

.mission p,
.mission h2 {
    color: #fff;
}

.img-mission {
    position: absolute;
    height: 240px;
    width: fit-content;
    display: block;
    top: -120px;
    left: 0;
    right: 0;
    margin: auto;
}

/*** Section values****/
.values {
    margin: 70px 0 70px;
}

.icon-wraper {
    position: relative;
    top: -20px;
    border-radius: 7px;
    padding: 70px 10px 20px;
    height: auto;
    z-index: -2;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease-in-out, box-shadow 0.2s, background-color 0.2s;
}

.box-icon-wrap {
    display: flex;
    flex-direction: row;
    row-gap: 40px;
    column-gap: 80px;
    flex-wrap: wrap;
}

.box-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 100%;
}

.values .box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 0;

}

.values .box-icon:before {
    content: '';
    position: relative;
    background-color: #002c4f;
    min-width: 90px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: -1;
    border-radius: 5px;
}

.green-box-wrapper {
    background-color: #91c738;
    border-radius: 10px;
    padding: 30px;
    margin-top: 70px;
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 2;
}

.green-box-wrapper:after {
    content: '';
    position: absolute;
    background-image: url('../img/zarowka.png');
    width: 100px;
    height: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    right: 20px;
    top: -70px;
}

.green-box-wrapper p,
.green-box-wrapper h2 {
    color: #fff;
}

/***** Team section *****/
.team {
    position: relative;
    z-index: 0;
    top: -80px;
}

.team-text {
    background-color: #002c4f;
    color: #fff;
    padding: 120px 0;
    box-shadow: 0px 0px 35px 7px rgba(0, 44, 79, .5);
}

.team-text .section-desc {
    color: #fff;
}

.team-people,
.team-text {
    z-index: 1;
}

.team-people {
    top: -80px;
    position: relative;
}

.team-text h2 {
    color: #fff;
}

.img-people {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 70%;
    height: 300px;
    border-radius: 7px;
}

.team-people-item {
    text-align: center;
    max-width: 400px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-people h3 {
    font-size: 1.05em;
    margin-bottom: 5px;
}

.team-people p {
    color: #898989;
}

.desc-people {
    margin-top: 20px;
}

/* Scroll to top*/
#top-button {
    display: inline-block;
    background: #fffbf6;
    border: 1px solid #002c4f;
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    bottom: 25px;
    right: 25px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border-radius: 100%;
}

#top-button:hover {
    border: 1px solid #1eb6e9;
    background: #1eb6e9;
    cursor: pointer;
}

#top-button.show {
    opacity: 1;
    visibility: visible;
}

#top-button .icon-arrow-right {
    transform: rotate(-90deg);
    width: 20px;
    height: 20px;
    display: block;
    margin: auto;
    margin-top: 15px;
}

#top-button:hover .icon-arrow-right {
    transform: rotate(-90deg) translateX(2px);
}

@media (max-width: 992px) {

    .navbar-collapse {
        position: fixed;
        left: 0;
        width: 100%;
        height: 100%;
        transition: left 300ms ease-in-out;
    }

    .navbar-collapse.collapsing {
        left: -100%;
        transition: left 300ms ease-in-out;
    }

    .navbar-collapse.show {
        left: 0;
        transition: left 300ms ease-in-out;
    }

    .navbar-toggler.collapsed~.navbar-collapse {
        transition: left 500ms ease-in-out;
    }
}

/****** Page home *****/
.home-header-desc {}

/***** Page post *****/
#main-box {
    margin: 30px 0;
}



.post-thumbnail {
    background-size: cover;
    /* lub contain */
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    width: 100%;
}

.post-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 1em;
    margin-bottom: 1em;
    text-decoration: none;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease-in-out, box-shadow 0.2s, background-color 0.2s;
    border-radius: 10px;
}

.post-item:hover {
    cursor: pointer;
    transition: transform 0.1s ease-in-out, box-shadow 0.2s, background-color 0.2s;
    transform: translateY(-0.5em) scale(1.0125);
    box-shadow: 0 0.5em 3em -1em rgba(0, 0, 0, 0.3);
}

.post-category {
    background-color: #91c738;
    display: inline-block;
    width: auto;
    max-width: fit-content;
    color: #fff;
    font-size: .8em;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 10px 0;
}

.post-description {
    padding: 10px 20px 20px;
    background: #fff;
}

.post-item:hover .post-description {
    cursor: pointer;
    background-color: #002c4f;
}

.post-description h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 1.05em;
    color: #002c4f;
    line-height: 1.3;
    margin: 0px 0 10px;

}

.post-date,
.post-author {
    color: #898989;
    font-size: .8em;
    position: relative;
}

.post-description h3 a {
    color: #002c4f;

}

.post-item:hover .post-description h3,
.post-item:hover .post-description h3 a {
    color: #fff;
    text-decoration: none;
}

.post-thumb {
    position: relative;
    background-image: var(--postBackground);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    border-radius: 5px;
    margin-bottom: 35px;
}

.post-thumb .post-category-wrap {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.post-navigation {
    display: inline-block;
    width: 100%;
    margin-bottom: 70px;
    padding: 20px 0;
    position: relative;
}

.post-navigation .nav-prev,
.post-navigation .nav-next {
    display: flex;
    position: relative;
    max-width: 45%;
}

.post-navigation .nav-prev {
    float: left;
}

.post-navigation .nav-next {
    float: right;
}

.post-navigation .nav-prev .nav-title {
    text-align: left;
}

.post-navigation .nav-next .nav-title {
    text-align: right;
}

.post-navigation .nav-prev.align-left {
    float: left;
    right: auto;
    left: 0;
}

/* Wyrównanie do prawej w przypadku braku poprzedniego posta */
.post-navigation .nav-next.align-right {
    right: 0;
    left: 0;
    float: right;
}

.post-navigation .nav-thumb {
    width: 130px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.post-navigation .nav-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 9 / 6;
}

.post-navigation span {
    color: #cdcdcd;
    display: block;
    margin-bottom: 10px;
}

.post-navigation .nav-title {
    font-size: 16px;
    font-weight: bold;
    color: #898989;
    text-decoration: none;
}

.post-navigation .nav-next a,
.post-navigation .nav-prev a {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.post-navigation .nav-next a {
    flex-direction: column-reverse;
    align-items: end;
}

.post-navigation a:hover .nav-title {
    color: #91c738;
}

#main-post-wrapper {
    margin: 50px 0 0;
    color: #898989;
}

#main-post-wrapper p {
    color: #898989;
}

#main-post-wrapper h3 {
    color: #002c4f;
}

.post-content {
    margin: 30px auto 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #898989;
}

.post-content-footer {}

.post-content p {}

.post-comments {}

/***** single post style******/
.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.post-meta .post-date:after {
    position: relative;
    display: inline-block;
    content: "";
    background: #1eb6e9;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    margin: auto 10px;
}

.post-tags-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
}

.post-tags-item li {
    white-space: nowrap;
}

.post-tags-item li a {
    border: 1px solid #cdcdcd;
    color: #cdcdcd;
    padding: 3px 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px 5px 5px;
    border-radius: 3px;
    font-size: .8em;
}

.post-tags-item li:hover a {
    cursor: pointer;
    text-decoration: none;
    background-color: #1eb6e9;
    color: #fff;
}

.post-content-footer {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    margin-top: 40px;
}

.post-content-footer .social-share {
    display: flex;
    margin: 10px 0 0;
}

/********** Custom pagination ***********/
.custom-pagination {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-pagination li {
    margin: 0 5px;
}

.custom-pagination a,
.custom-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background-color: #fff;
    color: #002c4f;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
}

.custom-pagination a:hover {
    color: #91c738;

}

.custom-pagination .current {
    color: #91c738;
    font-weight: bold;
}

.custom-pagination span {
    cursor: default;
}

.share-text,
.back {
    font-size: .8em;
    color: #032673;
    font-weight: 700;
    margin-right: 15px;
    text-decoration: none !important;
}

.back:hover {
    color: #77A8F1;
}

/****** Coments form style ******/
.commentlist {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #cdcdcd;
}

.commentlist img.avatar {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    margin-right: 20px;
}

.commentlist .comment-author {
    width: 100%;
    display: flex;
    align-items: center;
}

.commentlist .fn {
    margin-right: 5px;
}

.commentlist .comment-text {
    padding-left: 20px;
    clear: both;
}

.commentlist .says {
    display: none;
}


.commentlist .comment-moderation {
    color: red;
}

.commentlist .commentmetadata a {
    color: #898989;
    font-size: .8em;
}

.commentlist .fn a,
.commentlist .comment-author {
    color: #002c4f;
}

.commentlist .comment-reply-link {
    color: #91c738;
    text-transform: uppercase;
}

.commentlist .children {
    margin-bottom: 20px;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 20px;
}

.commentlist .children li {
    margin-left: 40px;
    margin-top: 20px;
    border-top: 1px solid #cdcdcd;
    padding-top: 20px;
}

.commentlist .comment-text p {
    margin-top: 15px;
}

.comment-form input,
.comment-form textarea {
    border: 1px solid #cdcdcd;
    padding: 10px;
    border-radius: 5px;
}

.comment-form label {
    color: #002c4f;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: baseline;
}

.comment-form-cookies-consent label {
    width: 90%;
}

.comment-form-cookies-consent input {
    margin-right: 10px;
}

.comment-form span.required {
    color: red;
}

.comment-form .submit {
    border-radius: 5px;
    color: #fff;
    background: #1eb6e9;
    background: linear-gradient(90deg, rgba(30, 182, 233, 1) 0%, rgba(145, 199, 56, 1) 100%);
    padding: 10px 30px;
    box-shadow: 0px 12px 22px -10px rgba(0, 44, 79, 0.6);
    cursor: pointer;
    transition: all ease-in-out 200ms;
    border: none;
}

.comment-form .submit:hover {
    box-shadow: 0px 20px 18px -15px rgba(0, 44, 79, 0.4);
    transform: translate(0px, -2px) scale(1.02);
}

.comment-form .comment-form-comment,
.comment-form .comment-form-url,
.comment-form .comment-form-email,
.comment-form .comment-form-author {
    display: flex;
    flex-direction: column;
}

.comment-form .comment-form-email,
.comment-form .comment-form-author {
    width: 49%;
}

.comment-form .comment-form-email {
    margin-left: 2%!important;
}

.comment-form .comment-form-author {
    float: left;
    margin-right: 2%!important;
}

/******** Ctegory filter ******/
.category-filters {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    margin: 50px auto;
}

.category-filters span {
    font-weight: 700;
    color: #032673;
    font-size: .8em;
    margin-right: 20px;
}

.category-filters ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}


.category-filters ul li a {
    text-decoration: none;
    display: flex;
    margin: 10px 10px 0 0;
    font-weight: 700;
    color: #1eb6e9;
    padding: 10px 25px;
    border: 1px solid #1eb6e9;
    border-radius: 8px;
    font-size: .8em;
}

.category-filters ul li a.active {
    background: #1eb6e9;
    background: linear-gradient(90deg, rgba(30, 182, 233, 1) 0%, rgba(145, 199, 56, 1) 100%);
    color: #fff;
    border-color: transparent;
}

.category-filters ul li a:hover {
    background-color: #1eb6e9;
    color: #fff;
    border-color: #1eb6e9;
}

/************** Call to action *******/
.cta-content {
    background: #002c4f;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    z-index: 2;
    position: relative;
    border: 2px solid #fff;
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    bottom: -50px;
    flex-direction: column;
    width: 100%;
    text-align: center;

}

.cta-content .cta-text {
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.cta-text p,
.cta-text h3 {
    color: #fff;
}

.cta-text p {
    margin-bottom: 0;
}

.cta-content .btn-gradient {
    width: fit-content;
    margin: auto;
}

/************** Footer ****************/
#footer-main {
    background: #002c4f;
    color: #fff;
}

#footer-main:before {
    content: "";
    background-image: url("../img/waves-footer.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 50px;
    top: -50px;
    display: block
}

#footer-main p,
#footer-main h3 {
    color: #fff;
}

#footer-main a {
    color: #fff;
    font-size: 1em;
}

#footer-main a:hover {
    color: #1eb6e9;
    text-decoration: none;
}

#footer-main ul {
    margin: 0;
}

.footer-top {
    padding-top: 2.5em;
    padding-bottom: 3.571em;
}

.footer-bottom {
    background: #91c738;
}

.footer-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-direction: column;
    text-align: center;
}

.footer-link li {
    padding: 1.428em 0;
}

.icon-menu-ul li {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    flex-direction: row;
}

.footer-social {
    display: flex;
    width: 100%;
}

.footer-social a {
    display: block;
    margin: 10px;
}

.widget-center,
.widget-right {
    margin-top: 30px;
}

#footer-logotype {
    margin: 0 0 20px;
    display: block;
    max-width: 170px;
    height: auto;
}

footer .menu {
    columns: 1;
}

footer .menu li {
    margin-bottom: 10px;
}

.footer-title {
    margin-bottom: 30px;
}

address {
    margin-bottom: 0;
}

footer .menu li:before {
    position: relative;
    content: '-';
    margin-right: 5px;
    font-weight: 400;
}

.icon-social-footer {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    display: block;
}

.main-text-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
}

.icon-facebook {
    background-image: url("../img/icons/facebook.png");
}


.icon-linkedin {
    background-image: url("../img/icons/linkedin.png");
}

.icon-instagram {
    background-image: url("../img/icons/instagram.png");
}

.footer_icon_wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-icon-area {
    padding-top: 50px;
}

.footers_icon {
    float: left;
    margin-right: 22px;
    display: inline-block;
}

.footer_icon_wrapper a {
    display: flex;
    align-items: center;
}

.icon-phone {
    background-image: url("../img/icons/telephone.png");
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.icon-envelope {
    background-image: url("../img/icons/email.png");
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.icon-map {
    background-image: url("../img/icons/location.png");
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.icon-clock {
    background-image: url("../img/icons/clock.png");
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    background-size: contain;
    width: 40px;
    height: 40px;
}

span {}


.footer_icon_text {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

h4 {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

a span,
address span {
    font-size: 16px;
    font-weight: 400;
}

.contact_data {
    margin: 30px 0
}

.contact_item {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 40px;
}

.contact_item span {
    margin-right: 30px;
}

.contact_item_text {
    display: flex;
    flex-direction: column;
    color: #898989;
}

.contact_item_text h4,
.contact_item_text a {
    color: #898989;
    margin-bottom: 0;
}

.map-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

/*** Login ****/
.login-wrapper,
.register-wrapper {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.login-register-container {
    flex-direction: column;
}

.login-wrapper input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #898989;
    padding: 10px;
    outline: none;
}

.login-wrapper input:focus {
    outline: none;
}

/*Start Login Style*/
.login-wrapper {
    min-height: 100%;
    text-align: center;
    box-shadow: 0px 0px 20px -10px rgba(0, 44, 79, 0.4);
    border: 1px solid #002b4f57;
    margin-bottom: 20px;
}

.login {
    border: none !important;
    padding: 0;
    margin-bottom: 0 !important;
}

/* .login p, .label-input {
	width:100%;
	display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
} */
.login p input {
    margin: 10px auto 10px;
}

.login form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login h2,
.register-wrapper h2,
.login-wrapper h2 {
    margin-top: 0;
    font-size: 1.5em;
}

#user-registration {
    background-color: transparent !important;
    margin: 10px 0;
}

#user-registration.horizontal,
#user-registration {
    box-shadow: none !important;
    border: 2px solid #f0f1f5;
    margin: 0;
}

.login-wrapper #user-registration {
    border: none;
}

#user-registration p {
    width: 100%;
    text-align: center;
}

#user-registration p a {
    font-size: .8em;
}

#privacy_policy_register {
    float: none;
}


.login-wrapper label {
    width: 100%;
    font-weight: 400 !important;
    margin-top: 0 !important;
    margin-bottom: 5px;
}

.login-wrapper .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    justify-content: center;
}

#user_login,
#username,
#password,
#user_pass,
#user_email,
#user_confirm_password,
#password_current,
#password_1,
#password_2 {
    width: 100%;
    padding: 12px 25px;
    margin-bottom: 10px;
    border: none;
    background-color: #eeeeef;
}

.login-wrapper input[type="checkbox"] {
    float: left;
    margin-right: 5px;
    width: 10px;
    margin: 0 10px 0 0;
}

.input-wrapper {
    width: 100%;
}


.login button {
    width: 100%;
    margin: 30px 0;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.login hr {
    width: 30%;
    display: inline-block
}



/*Start Register Style*/
.register-wrapper {
    float: right;
    background: #002c4f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.register-wrapper form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.register-wrapper h2 {
    margin: 30px 0;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
}

.register-wrapper p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

@media (min-width: 576px) {
    .container {
        max-width: 90%;
    }
}

@media (min-width: 768px) {
    .box-icon-wrap {
        row-gap: 40px;
        column-gap: 60px;
        justify-content: space-around;
    }

    .box-icon-item {
        flex-basis: 41.5%;
    }

    .footer-link {
        align-items: center;
        justify-content: space-between;
        text-align: inherit;
        flex-direction: row;
    }

    .footer-link li {
        padding: 1em 0;
    }

    .footer-link li a {
        padding: 0 1em;
    }

    .slider-container {
        height: 220px;
    }

    .post-thumb {
        height: 280px;
    }

}

@media (min-width: 992px) {
    .story-img {
        height: 500px;
    }

    .values {
        margin: 120px 0 70px;
    }

    .img-mission {
        position: absolute;
        height: 460px;
        width: 45%;
        display: block;
        top: -25%;
        right: 0;
        left: auto;
        margin: 0;
        padding: 0;
    }

    .mission-wrap {
        margin-top: 0;
    }

    .about-page .section-title {
        margin-top: 0;
    }

    .cta-content {
        background: #002c4f;
        padding: 30px 50px;
        text-align: center;
        border-radius: 10px;
        z-index: 2;
        position: relative;
        border: 2px solid #fff;
        max-width: 1040px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        bottom: -50px;
        flex-direction: row;
    }

    .cta-content .cta-text {
        font-size: 18px;
        text-align: left;
        color: #fff;
        max-width: 70%;
        margin-bottom: 0;
    }

    .post-thumb {
        height: 400px;
    }

    #footer-logotype {
        margin: 0px 0 20px;
        display: block;
    }

    #footer-main ul {
        margin: 0;
    }

    .footer-social {
        align-items: baseline;
        justify-content: start;
    }

    /* 
    #footer-main a,
    .icon-menu-ul li {
        font-size: .8em;
    } */


    .login-register-container {
        padding: 30px;
    }

    .register-wrapper {
        border-radius: 0px 10px 10px 0;
    }

    .login-wrapper {
        border-radius: 10px 0 0 10px;
        margin-bottom: 0px;
    }

    .login h2,
    .register-wrapper h2,
    .login-wrapper h2 {
        margin-bottom: 30px;
    }

    #user-registration {
        margin: 30px 0;
    }

    #user-registration p a {
        font-size: 1em;
    }

    .custom-logo {
        height: 70px;
    }

    .login-wrapper,
    .register-wrapper {
        width: 50%;
        padding: 50px;
    }

    .login-register-container {
        flex-direction: row;
    }

    .login h2,
    .register-wrapper h2,
    .login-wrapper h2 {
        font-size: 1.85em;
    }

    .product-row-1 {
        margin-bottom: 70px;
    }

    .page .product .product-price {
        background: #002c4f;
        width: 100%;
        max-width: 170px;
        padding: 10px;
        border: 2px solid #fff;
        border-radius: 5px;
        color: #fff;
        font-weight: 600;
        position: absolute;
        bottom: -30px;
        text-align: center;
        right: 40px;
        font-size: 1rem;
    }

    .post-content-footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

    }
	.arrow {
		width: 35%;
	}
		.box-green {
		width: 75%;
		bottom: -50px;
	}
}

@media (min-width:1024px) {

    html,
    body {
        font-size: 18px;
    }

    h2,
    .section-header h2 {
        font-size: 2em;
    }

    .section-page-header h2 {
        font-size: 1.8em;
    }

    h3,
    .box-icon-wrap h3,
    .icon-wrap h3,
    .team-people h3,
    .post-description h3 {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }

    #page-header {
        height: 350px;
    }

    .header-title {
        font-size: 3em;
    }

    .header-subtitle {
        max-width: 60%;
    }

    #main-header {
        height: 70vh;
    }

    #main-box {
        margin: 80px 0;
    }

    .header-waves {
        height: 200px;
    }

    .section-header-40-60 {
        flex-direction: row;
    }

    .section-header-40-60 h2 {
        flex-basis: 40%;
    }

    .section-header-40-60 .text-desc {
        flex-basis: 60%;
    }

    .max-width-70 {
        max-width: 75%;
    }

    .main-content {
        margin: 80px 0;
    }

    .page .main-content {
        margin: 50px 0 0;
    }

    .about {
        margin: 6px 0;
    }

    .slider-container {
        position: relative;
        width: 100%;
        height: 385px;
        margin-top: 0px;
    }

    .box-green {
        background: #91c738;
        border: 2px solid #fff;
        padding: 20px;
        text-align: center;
        color: #fff;
        width: 45%;
        position: absolute;
        top: auto;
        bottom: -50px;
        z-index: 11;
        left: -40px;
    }

    .different {
        margin: 50px 0;
    }

    .about-page {
        margin: 50px 0 150px;
    }

    .text-desc {
        width: 70%;
    }

    .page .product img {
        min-height: 300px;
    }

    .product .product-arrow-container {
        position: absolute;
        right: 0;
        width: 90px;
        top: 0;
        float: right;
        display: flex;
        justify-content: space-around;
    }

    .section-desc {
        flex-direction: row;
    }

    .btn-dot {
        margin-top: 0;
    }

    footer .menu {
        columns: 2;
    }

    #footer-main a {
        color: #fff;
    }

    .footer_icon_wrapper {
        margin-bottom: 0;
    }

    .box-icon {

        height: 80px;
        margin-bottom: 30px;
    }

    .why-icon-wrap .box-icon {
        max-width: 80px;
    }

    .why-icon-wrap:after {
        width: 180px;
        height: 200px;
    }


    .why-icon-wrap .icon-box-item {
        justify-content: center;
        margin-bottom: 0;
    }

    .post-description h3 {
        margin: 20px 0;

    }

    .story-img {
        height: 350px;
    }

    .icon-wraper {
        padding: 70px 30px 50px;
        height: 270px;
    }

    .values .box-icon {
        width: 80px;
        height: 80px;

    }

    .values .box-icon:before {
        min-width: 120px;
        height: 120px;
        padding: 20px;
    }

    .box-icon-wrap,
    .icon-wrap {
        margin-top: 70px;
    }

    .green-box-wrapper {
        padding: 40px 60px;
    }

    .team-text {
        padding: 150px 0 150px;
    }

    .img-people {
        width: 100%;
        height: 400px;
    }

    .cta-content {
        padding: 20px 30px;
    }

    .post-thumbnail {
        height: 250px;
    }

    .post-description {
        padding: 20px;
    }

    .post-thumb {
        height: 320px;
    }

    .post-content-footer {
        justify-content: space-between;
        margin-top: 40px;
    }

    .post-content {
        margin: 70px auto 30px;
    }

    .post-content-footer .social-share {
        margin: 0;
    }

    #main-post-wrapper {
        margin: 70px 0;
    }
}

@media (min-width: 1200px) {
	.left-arrow .arrow-icon {
    left: -20px;
}

.right-arrow .arrow-icon {
    right: -20px;
}
    .section-page-header h2 {
        font-size: 2em;
    }

    h3,
    .box-icon-wrap h3,
    .icon-wrap h3,
    .team-people h3,
    .post-description h3 {
        font-size: 1.2em;
    }

    .header-title {
        font-size: 3.2em;
    }

    .container {
        max-width: 1460px;
    }

    #page-header {
        height: 450px;
    }

    .green-box-wrapper:after {
        width: 170px;
        height: 200px;
    }

    .post-thumb {
        height: 500px;
    }

    .post-navigation .nav-thumb {
        margin-bottom: 0;
    }

    .post-navigation .nav-next a,
    .post-navigation .nav-prev a {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-decoration: none;
        transition: color 0.2s ease-in-out;

    }

    /* .post-navigation .nav-next,
    .post-navigation .nav-prev {
        width: 40%;
    } */

    .post-navigation .nav-next {
        margin: 0 0 auto 0;
    }

    .post-navigation .nav-prev {
        margin: 0 auto o 0;
    }

    .post-navigation .nav-prev .nav-title {
        margin-left: 15px;
    }

    .post-navigation .nav-next .nav-title {
        margin-right: 15px;
    }

    .about {
        margin: 100px 0;
    }

    .page .product img {
        min-height: 400px;
    }
}

@media(min-width: 1920px) {

    h2,
    .section-header h2 {
        font-size: 2.6em;
    }

    .section-page-header h2 {
        font-size: 2.4em;
    }

    .box-icon-wrap {
        column-gap: 60px;
    }

    .box-icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-basis: 21.5%;
    }

    .page .main-content {
        margin: 80px 0 0;
    }

}