* {
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    color: #312e2e;
}

h1, h2, h3, h4, h5, h5 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 10px;
    color: #fff;
}

p, ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.logo-line {
    background: white;
    width: 100%;
    z-index: 98;
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.logo-line .logo img {
    height: 50px;
    margin: 10px 0;
}

.logo-line .menu {
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: space-around;
}

.logo-line .menu li {
    list-style: none;
    margin: 20px;
}

.logo-line .menu li:last-child {
    margin-left: 0;
    margin-right: 0;
}

.logo-line .menu li a {
    font-size: 16px;
    text-decoration: none;
    color: #888;
    border-bottom: 2px solid white;
}

.logo-line .menu li a svg {
    width: 21px;
}

.logo-line .menu li a.active {
	color: #e4322b;
}
.header, .mobile-menu {
    display: none;
}

.main-slider {
    width: 100%;
    height: calc(100vh - 74px);
    margin-top: 74px;
}

.main-slider .slide {
    height: calc(100vh - 74px);
    position: relative;
}

.main-slider .slide-desc {
    width: 460px;
    height: fit-content;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 60px;
    left: 70px;
}

.main-slider .slide-desc h2 {
    margin-bottom: 10px;
    font-size: 25px;
}

.main-slider .slide-desc p {
    font-size: 14px;
    line-height: 18px;
}

.main-slider .slide-desc button {
    background: transparent;
    text-transform: uppercase;
    padding: 12px 0;
    text-align: center;
    width: 200px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #312e2e;
    color: #312e2e;
}

.main-slider .slide-img {
    display: block;
    position: absolute;
    top: 0;
    z-index: -1;
    object-fit: cover;
    width: 100vw;
    height: calc(100vh - 74px);
}

.main-slider .slick-prev {
    left: 0;
    z-index: 99;
    padding: 32px 7px;
    height: 85px;
    width: 26px;
    border-radius: 0 24px 24px 0;
    background: rgba(255, 255, 255, 0.6);
}

.main-slider .slick-next {
    right: 0;
    z-index: 99;
    padding: 32px 7px;
    height: 85px;
    width: 26px;
    border-radius: 24px 0 0 24px;
    background: rgba(255, 255, 255, 0.6);
}

.main {
    width: 100%;
    padding: 35px 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.sidebar {
    width: 240px;
    height: 460px;
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
}

.sidebar h3 {
    color: #5d5050;
}

.sidebar .nav li a {
    font-size: 15px;
    color: #5d5050;
    border-bottom: 1px solid #b9a3a3;
    padding: 10px 0;
    display: block;
}

.sidebar .nav li a:hover {
    color: #E4322B;
    border-bottom: 1px solid #E4322B;
}

.sidebar .nav li a.active {
    color: #E4322B;
    border-bottom: 1px solid #E4322B;
}

.main .content {
    width: calc(100% - 245px);
    margin-top: 40px;
}

.main .content h3 {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .5px;
}

.main .content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-top: 55px;
}

.main .content-item .box {
    width: 20%;
    height: 290px;
    margin-bottom: 50px;
    margin-left: 5%;
    position: relative;
    overflow: hidden;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);*/
}

.main .content-item .box-desc {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(93, 80, 80, 0.6);
    color: #fff;
    padding: 12px;
    z-index: 1;
    transition: 1s;
}

.main .content-item .box-desc h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: .5px;
}

.main .content-item .box-desc button {
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    padding: 7px;
    font-size: 10px;
    cursor: pointer;
    border: 1px solid #fff;
}

.main .content-item .box-img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
    -o-object-fit: cover;
    object-fit: cover;
}

.main .content-item .box:hover {
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.main .content-item .box:hover .box-desc {
	background: rgba(93, 80, 80, 0.8);
}

.main .content-item .box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.main .product-page {
    display: flex;
    margin-top: 70px;
    justify-content: space-between;
}

.main .prod-text {
    width: 50%; 
    line-height: 24px;   
}

.main .prod-text ul {
    list-style: disc;
    margin-left: 18px;
    line-height: 20px;
    font-size: 15px;
    color: #777;
    margin-top: 5px;
    margin-bottom: 5px;
}

.main .prod-text h2 {
    margin-bottom: 10px;
}

.main .prod-text h3 {
    color: #E4322B;
    margin-bottom: 20px;
}

.prod-text td {
    padding: 5px 10px;
    width: fit-content!important;
}

.main .zoom-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 45%;
}

.main .zoom-box .full-img {
    width: 82%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
}

.main .zoom-box .full-img .zoomArea {
    height: 340px;
    width: 480px;
    position: absolute;
    top: 65px;
    left: 425px;
}

.main .zoom-box .full-img img {
    width: 100%;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    height: 284px;
    object-fit: cover;
}

.main .zoom-box .small-img {
    width: 95px;
}

.main .zoom-box .small-img img {
    width: 100%;
}

.main .zoom-box .small-img img:hover {
    cursor: pointer;
    opacity: .5;
}

.main .zoom-box table {
    width: 40%;
    text-align: left;
    margin-left: 10px;
}

.main .zoom-box table td {
    padding: 4px;
}

.main .zoom-box table tr:nth-child(even) {
    background-color: #e7d6c5;
}

.main .zoom-title {
    margin-top: 20px;
}

.main .zoom-desc {
    margin-top: 10px;
    line-height: 24px;
    color: #666;
}

.podpiska {
	background: linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url(../img/4.jpg);	
	height: 525px;
    background-size: cover;
    padding: 100px 70px;
    display: flex;
    justify-content: space-between;
    background-attachment: fixed;
    align-items: center;
}
.podpiska svg {
    width: 450px;
    height: 220px;
    opacity: .5;
}
.podpiska .form {
	width: 45%;
}
.log {
    opacity: .2;
}

.podpiska .form h2 {
	color: #fff;
    font-size: 28px;
}

.podpiska .form p {
	color: #fff;
    font-size: 18.5px;
    line-height: 30px;
    margin: 20px 0;
}

.podpiska label {
    margin-top: 20px;
    padding: 10px 15px;
    background: #fff;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.podpiska input {
    border: none;
    width: 100%;
    font-size: 18px;
    padding: 0;
    color: #000;
}

.podpiska .input img {
    width: 28px;
}

.podpiska button {
    background: none;
    border: 2px solid #fff;
    width: 100%;
    margin-top: 40px;
    height: 45px;
    color: #fff;
    font-size: 18px;
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.podpiska button:hover {
    background: #fff;
    cursor: pointer;
    color: #000;
}

.podpiska button svg {
    width: 40px;
    height: unset;
    margin-right: 10px;
}

.podpiska button:hover svg .fcls-1 {
    fill: #000;
}

.section-title {
    color: #000;
    border-bottom: 2px solid #000;
    text-align: left;
    font-size: 24px;
    font-size: 28px;
    width: fit-content;
    padding-right: 8px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    line-height: 50px;
    font-weight: 400;
}

.section-t {
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
}

.about {
    display: flex;
    justify-content: space-between;
}

.about__side {
    width: 48%;
}

.about-poster {
    width: 48%;    
    object-fit: cover;
}

.about__side p {
    line-height: 24px;
}

.about__video-container {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.about__video-container .about-poster {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    cursor: pointer;
}

.about__video-container iframe {
    width: 100%;
    height: 312px;
}

.about__video-controls {
    position: absolute;
    top: 50%;
    left: 13%;
    transform: translateY(-50%);
    transition: all .3s;
    z-index: 99;
}

.about__video-play-icon {
    top: 0;
    left: 0;
    transition: transform 0.5s;
    flex: 0 0 25%;
    width: 58px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #ffffff;
    transition: box-shadow 0.3s;
}

.about__video-title {
    line-height: 24px;
    color: #ffffff;
    margin-top: 10px;
}

.container {
    padding: 70px;
}

.service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 70px;
}

.service .service-item {
    width: 24%;
    position: relative;
    margin-bottom: 29px;
}

.service .service-item .img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    overflow: hidden;
}

.service .service-item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.service .service-item:hover p {
    color: white;
    background: #e4322b;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}

.service .service-item .img img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

.service .service-item p {
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 10px;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}


.form-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 130px 70px 0 70px;
}
.form-left {
    width: 42%;
}
.form-left h4,
.form-right h4 {
    color: #000;
    font-weight: normal;
    margin-bottom: 30px;
    font-size: 20px;
    margin-bottom: 30px;
}
.form-left input, .form-left textarea, .form-left button {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding: 8px 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #000;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.form-right {
    width: 48%;
}
.form-right a {
    display: block;
    color: #000;
    line-height: 32px;
    position: relative;
    padding-left: 32px;
    white-space: normal;
    font-family: 'Avenir', sans-serif;
}
.form-right a img {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 20px;
}
.form-right span {
    color: #000;
    margin-right: 10px;
    font-family: 'Avenir', sans-serif;
}

.f-cat {
    background: #373D44;
    border-bottom: 1px dashed #777;
}
.f-cat .wrap {
    padding: 70px;
    display: flex;
    flex-wrap: wrap;
}
.f-cat a {
    color: #ccc;
    text-decoration: none;
    width: 25%;
    line-height: 25px;
}
.f-cat a:hover {
    color: #fff;
    cursor: pointer;
}

.f-top {
    background: #41474E;
    color: #fff;
}
.f-top .wrap {
    padding: 40px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f-top svg {
    margin-right: 20px;
}
.f-top p {
    margin-right: 50px;
}
.f-top .subscribe-input {
    padding: 12px;
    height: 42px;
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid #ebecec;
    background: #f7fafb;
    width: 333px;
}
.f-top .subscribe-btn {
    background-color: #e5322a;
    border: 1px solid #e5322a;
    color: #ffffff;
    padding: 12px 30px;
    height: 42px;
    width: 180px;
    border-radius: 2px;
    margin-right: 50px;
}
.f-bottom {
    background: #373D44;
}
.f-bottom .form-block {
    padding: 70px;
}
.f-bottom .form-left h4,
.f-bottom .form-right h4 {
    font-size: 18px;
    color: #fff;
}
.f-bottom .form-left input, .f-bottom .form-left textarea, .f-bottom .form-left button {
    margin-bottom: 8px;
    font-size: 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.f-bottom .form-right span {
    color: #ffffff;
}
.f-bottom .form-right a {
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .main .content-item .box {
        margin-bottom: 35px;
        width: 28%;
        margin-left: 5%;
    }
    .f-top .subscribe-input {
        width: 210px;
    }
    .f-top .subscribe-btn {
        width: 150px;
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    
    .main-slider .slide {
        height: calc(100vh - 73px);
    }
    .main-slider .slide-desc {
        width: 60%;
        height: auto;
        text-align: center;
        padding: 20px;
        position: absolute;
        bottom: 16px;
        left: calc(50% - 160px);
    }
    .main-slider .slide-desc h2 {
        margin-bottom: 12px;
        font-size: 18px;
    }
    .main-slider .slide-desc p {
        font-size: 14px;
    }
    .main-slider .slide-desc button {
        padding: 8px 0;
        width: 180px;
        font-size: 14px;
    }
    .main-slider .slide-img {
        -o-object-fit: cover;
        object-fit: cover;
    }
    .main-slider .slick-prev, .main-slider .slick-next {
        visibility: hidden;
    }
    .main {
        padding: 50px 20px;
    }
    .main .sidebar {
        display: none;
    }
    .main .content {
        width: 100%;
    }
    .main .content h2 {
        margin-top: 32px;
    }
    .main .content .zoom-box {
        display: block;
    }
    .main .content .zoom-box .full-img {
        width: 65%;
    }
    .main .content .zoom-box .small-img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 65%;
    }
    .main .content .zoom-box .small-img img {
        width: calc(25% - 4px);
        height: 78px;
    }
    .main .content .zoom-box table {
        width: 48%;
        margin-left: 0;
        margin-top: 20px;
    }
    .logo-line {
        padding: 0 16px;
    }
    .logo-line .menu li {
        margin: 20px 12px;
    }
    .main-slider .slide-desc {
        left: 16px;
    }
    .service {
        padding: 70px 16px;
    }
    .service .service-item {
        width: 32%;
        margin-bottom: 20px;
    }
    .podpiska {
        padding: 100px 16px;
    }
    .podpiska .form {
        width: 65%;
    }
    .podpiska .form h2 {
        font-size: 25px;
    }
    .podpiska .form p {
        font-size: 16px;
        line-height: 25px;
    }
    .container {
        padding: 70px 16px;
    }
    .about {
        flex-direction: column;
    }
    .about-poster {
        width: 100%;
        margin-top: 40px;
    }
    .about__side {
        width: 100%;
    }
    .form-block {
        padding: 130px 16px 0 16px;
    }
    .f-cat .wrap {
        padding: 50px 16px;
    }
    .f-cat a {
        width: 50%;
    }
    .f-top .wrap {
        padding: 50px 16px;
    }
    .f-top svg {
        margin-right: 10px;
    }
    .f-top p {
        margin-right: 20px;
    }
    .f-top .subscribe-input {
        width: 170px;
    }
    .f-top .subscribe-btn {
        width: 120px;
        margin-right: 0;
        padding: 12px;
    }
    .f-bottom .form-block {
        padding: 60px 16px;
    }
    .form-left {
        width: 46%;
    }
}

@media screen and (max-width: 450px) {
    .header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-color: #fff;
        height: 77px;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 99994;
        padding: 11px 16px;
        -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    }
    .logo-line {
        display: none;
    }
    .mlogo img {
        height: 48px;
    }
    .main {
        padding: 40px 16px;
    }
    .main .content {
        width: 100%;
    }
    .main .content .box {
        width: 100%;
    }
    .main .content .zoom-box .full-img {
        width: 100%;
    }
    .main .content .zoom-box .small-img {
        width: 100%;
    }
    .main .content .zoom-box .small-img img {
        height: 70px;
    }
    .main .content .zoom-box table {
        width: 100%;
    }
    .main-slider {
        height: auto;
        margin-top: 64px;
    }
    .main-slider .slide {
        height: auto;
    }
    .main-slider .slide-img {
        height: auto;
    }
    .main-slider .slide-desc {
        width: 100%;
        position: relative;
        bottom: 0;
        left: 0;
    }
    .main-slider .slide-img {
        position: relative;
    }
    .slick-initialized .slick-slide {
        display: flex;
        flex-direction: column-reverse;
    }
    .service .service-item {
        width: 100%;
    }
    .podpiska .form {
        width: 100%;
    }
    .main .content-item {
        margin-top: 0; 
        margin-left: 0;
    }
    .main .product-page {
        flex-direction: column;
    }
    .main .zoom-box {
        width: 100%;
        flex-direction: column;
    }
    .main .zoom-box .full-img {
        width: 100%;
    }
    .main .zoom-box .small-img {
        width: 100%;
    }
    .main .zoom-box .small-img img {
        width: 24%;
    }
    .main .prod-text {
        width: 100%;
    }
    .main .prod-text h2 {
        margin-top: 30px;
    }
    .main .content-item .box {
        margin-left: 0;
    }
    .form-block {
        flex-direction: column;
    }
    .form-left, .form-right {
        width: 100%;
        margin-bottom: 50px;
    }
    .form-right {
        margin-bottom: 100px;
    }
    .f-cat a {
        width: 100%;
        line-height: 35px;
    }
    .f-top .wrap {
        flex-direction: column;
        align-items: baseline;
    }
    .f-top .wrap div {
        display: flex;
        margin-bottom: 40px;
        align-items: center;
    }
    .f-top .subscribe-input,
    .f-top .subscribe-btn {
        width: 100%;
        margin-bottom: 20px;
    }
    .f-bottom .form-left h4, .f-bottom .form-right h4 {
        width: 320px;
        line-height: 30px;
    }
    .podpiska svg {
        display: none;        
    }
}

@media screen and (max-width: 320px) {
    .main-slider .slide-desc {
        width: 260px;
        height: 156px;
        padding: 8px;
        bottom: -14px;
        left: calc(50% - 130px);
    }
    .main-slider .slide-desc h2 {
        font-size: 34px;
    }
    .main-slider .slide p {
        font-size: 12px;
    }
    .main-slider .slide button {
        padding: 6px 0;
        font-size: 12px;
        width: 150px;
    }
    .main .content .zoom-box .small-img img {
        height: 56px;
    }
}

.nav {
    padding: 5px;
    padding-top: 60px;
}
.nav.mob {
    padding-top: 5px;
}

.nav .nav-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    position: relative;
    z-index: 3;
}

.nav .nav-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    right: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    padding: 5px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

.nav .nav-btn .btn-bar {
    position: relative;
    width: 1.34em;
    height: 3px;
    border-radius: 5px;
    background: #e33a33;
}

.nav .nav-btn .btn-bar.menu:not(:first-child) {
    margin-top: 3px;
}

.nav .nav-btn .btn-bar.menu:nth-child(even) {
    width: 1.8em;
}

.nav .nav-btn .btn-bar.close {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: absolute;
    margin-top: -1.5px;
    opacity: 0;
    top: 50%;
}

.nav .nav-btn .btn-bar.close:not(:last-child) {
    -webkit-transform: rotate(45deg) translateX(-250%);
    -ms-transform: rotate(45deg) translateX(-250%);
    transform: rotate(45deg) translateX(-250%);
}

.nav .nav-btn .btn-bar.close:last-child {
    -webkit-transform: rotate(-45deg) translateX(250%);
    -ms-transform: rotate(-45deg) translateX(250%);
    transform: rotate(-45deg) translateX(250%);
}

.mobile-menu {
    height: 50px;
    position: fixed;
    top: 0;
    display: block;
    overflow: hidden;
}

.mobile-menu .nav-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /*when menu is closing*/
    -webkit-transition: z-index 0.01s ease-in-out 0.2s;
    -o-transition: z-index 0.01s ease-in-out 0.2s;
    transition: z-index 0.01s ease-in-out 0.2s;
}

.mobile-menu .nav-content .background {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
}

.mobile-menu .nav-content .portion {
    background: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    /*when menu is closing*/
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.mobile-menu .nav-content .portion:nth-child(odd) {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.mobile-menu .nav-content .portion:nth-child(even) {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.mobile-menu .nav-content .portion:not(:first-child) {
    margin-top: -1px;
}

.nav.open .nav-btn .btn-bar.menu {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease-in-out 0.15s, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.15s ease-in-out 0.15s, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s;
    transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s;
    transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s, -webkit-transform 0.3s ease-in-out;
}

.nav.open .nav-btn .btn-bar.menu:nth-child(odd) {
    -webkit-transform: translateX(-400%);
    -ms-transform: translateX(-400%);
    transform: translateX(-400%);
}

.nav.open .nav-btn .btn-bar.menu:nth-child(even) {
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
}

.nav.open .nav-btn .btn-bar.close {
    opacity: 1;
    -webkit-transition: opacity 0.05s ease-in-out 0.3s, -webkit-transform 0.2s ease-in-out 0.3s;
    transition: opacity 0.05s ease-in-out 0.3s, -webkit-transform 0.2s ease-in-out 0.3s;
    -o-transition: transform 0.2s ease-in-out 0.3s, opacity 0.05s ease-in-out 0.3s;
    transition: transform 0.2s ease-in-out 0.3s, opacity 0.05s ease-in-out 0.3s;
    transition: transform 0.2s ease-in-out 0.3s, opacity 0.05s ease-in-out 0.3s, -webkit-transform 0.2s ease-in-out 0.3s;
}

.nav.open .nav-btn .btn-bar.close:not(:last-child) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav.open .nav-btn .btn-bar.close:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav .btn-bar.menu {
    /* when menu is closing*/
    -webkit-transition: opacity 0.15s ease-in-out 0.2s, -webkit-transform 0.3s ease-in-out 0.2s;
    transition: opacity 0.15s ease-in-out 0.2s, -webkit-transform 0.3s ease-in-out 0.2s;
    -o-transition: transform 0.3s ease-in-out 0.2s, opacity 0.15s ease-in-out 0.2s;
    transition: transform 0.3s ease-in-out 0.2s, opacity 0.15s ease-in-out 0.2s;
    transition: transform 0.3s ease-in-out 0.2s, opacity 0.15s ease-in-out 0.2s, -webkit-transform 0.3s ease-in-out 0.2s;
}

.nav .btn-bar.close {
    /* when menu is closing*/
    -webkit-transition: opacity 0.05s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.05s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out, opacity 0.05s ease-in-out 0.2s;
    transition: transform 0.2s ease-in-out, opacity 0.05s ease-in-out 0.2s;
    transition: transform 0.2s ease-in-out, opacity 0.05s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out;
}

.mobile-menu.open {
    width: 100%;
    height: 100%;
    position: fixed;
    display: block;
    z-index: 99992;
}

.mobile-menu.open .nav-content {
    /*when menu is opening*/
    -webkit-transition: z-index 0.01s ease-in-out 0.3s;
    -o-transition: z-index 0.01s ease-in-out 0.3s;
    transition: z-index 0.01s ease-in-out 0.3s;
}

.mobile-menu.open .nav-content .background .portion {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu.open .nav-content .background .portion {
    /*when menu is opening*/
    -webkit-transition: -webkit-transform 0.2s ease-in-out 0.3s;
    transition: -webkit-transform 0.2s ease-in-out 0.3s;
    -o-transition: transform 0.2s ease-in-out 0.3s;
    transition: transform 0.2s ease-in-out 0.3s;
    transition: transform 0.2s ease-in-out 0.3s, -webkit-transform 0.2s ease-in-out 0.3s;
}

.mobile-menu.open .mobile-nav {
    padding: 100px 0;
    position: absolute;
    z-index: 99994;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
}

.mobile-menu.open .mobile-nav a { 
    color: #f5f5f5;
    font-size: 18px;
    text-align: left;
    padding: 10px 16px;    
}
.mobile-menu.open .mobile-nav .kategorii {
    color: #eee;
    border-bottom: 1px dashed #ccc;
}
.mobile-menu.open .mobile-nav .kategorii:last-child {
    border-bottom: 1px solid #ccc;
}
.okompaniimob {
    margin-top: 15px;
}

.mobile-menu .mobile-nav {
    opacity: 0;
}

.mobile-menu.open .mobile-nav {
    opacity: 1;
    -webkit-transition: opacity;
    -o-transition: opacity;
    transition: opacity;
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
    background: #e33a33;
}

.call-menu .call-menu-open {
  display: none; }

.call-menu .menu-item {
  background: #e4322b;
  border-radius: 100%;
  width: 44px;
  height: 44px;
  position: fixed;
  bottom: 20px;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 200ms;
  transition: -webkit-transform ease-out 200ms;
  -o-transition: transform ease-out 200ms;
  transition: transform ease-out 200ms;
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms; }

.call-menu .menu-item img {
  margin: 10px auto; }

.call-menu .menu-item img.call-button {
  margin: 9px auto; }

.call-menu .inner {
  position: absolute;
  top: -8px;
  left: -8px;
  height: 73px;
  width: calc(100% + 16px);
  border-radius: 100px;
  background: #e4322b;
  opacity: .2; }

.call-menu .pulse {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #e4322b;
  border-radius: 50%;
  -webkit-animation: widgetPulse infinite 1.5s;
  animation: widgetPulse infinite 1.5s; }

@-webkit-keyframes widgetPulse {
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0; } }

@keyframes widgetPulse {
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0; } }

.call-menu .menu-open-button .close {
  display: none; }

.call-menu .call-menu-open:checked + .menu-open-button .pulse {
  -webkit-animation: unset;
  animation: unset;
  border: unset; }

.call-menu .call-menu-open:checked + .menu-open-button .inner {
  background: #fff; }

.call-menu .call-menu-open:checked + .menu-open-button .animated-img {
  display: none; }

.call-menu .call-menu-open:checked + .menu-open-button .close {
  width: 20px;
  display: block;
  position: absolute;
  left: 19px;
  top: 12px; }

.call-btn-shadow {
  position: fixed;
  background: rgba(33, 33, 33, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: -1px;
  display: none;
  z-index: 999; }

.call-btn-shadow.show {
  display: block; }

.call-menu {
  top: 100%;
  position: fixed;
  left: 0px;
  z-index: 9994; }

.call-menu .menu-open-button {
  background: #e4322b;
  border-radius: 100%;
  width: 57px;
  height: 57px;
  position: fixed;
  bottom: 20px;
  text-align: center;
  z-index: 2;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 400ms;
  -o-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  cursor: pointer; }

.call-menu .menu-open-button:hover {
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2); }

.call-menu .call-menu-open:checked + .menu-open-button {
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8); }

.call-menu .call-menu-open:checked ~ .menu-item {
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }

.call-menu-open:checked ~ .menu-item:nth-child(3) {
  -webkit-transition-duration: 190ms;
  -o-transition-duration: 190ms;
  transition-duration: 190ms;
  -webkit-transform: translate3d(8px, -60px, 0);
  transform: translate3d(8px, -60px, 0); }

.call-menu-open:checked ~ .menu-item:nth-child(4) {
  -webkit-transition-duration: 290ms;
  -o-transition-duration: 290ms;
  transition-duration: 290ms;
  -webkit-transform: translate3d(8px, -114px, 0);
  transform: translate3d(8px, -114px, 0); }

.call-menu-open:checked ~ .menu-item:nth-child(5) {
  -webkit-transition-duration: 390ms;
  -o-transition-duration: 390ms;
  transition-duration: 390ms;
  -webkit-transform: translate3d(8px, -167px, 0);
  transform: translate3d(8px, -167px, 0); }

.call-menu-open:checked ~ .menu-item:nth-child(6) {
  -webkit-transition-duration: 490ms;
  -o-transition-duration: 490ms;
  transition-duration: 490ms;
  -webkit-transform: translate3d(8px, -220px, 0);
  transform: translate3d(8px, -220px, 0); }

.call-menu .menu-item:nth-child(3),
.call-menu .menu-item:nth-child(4),
.call-menu .menu-item:nth-child(5),
.call-menu .menu-item:nth-child(6) {
  -webkit-transition-duration: 180ms;
  -o-transition-duration: 180ms;
  transition-duration: 180ms; }

.call-menu .animated-img img {
  position: absolute;
  opacity: 0;
  -webkit-animation: animatedImg 6s linear infinite 0s;
          animation: animatedImg 6s linear infinite 0s;
  width: 25px;
  left: 18px;
  top: 13px; }

.call-menu .animated-img img:nth-child(2) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  width: 28px;
  left: 15px;
  top: 11px; }

.call-menu .animated-img img:nth-child(3) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  width: 25px;
  left: 16px;
  top: 13px; }

.call-menu .animated-img img:nth-child(4) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  width: 25px;
  left: 14px;
  top: 14px; }

@-webkit-keyframes animatedImg {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  35% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes animatedImg {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  35% {
    opacity: 0; }
  100% {
    opacity: 0; } }


@media only screen and (min-width: 450px) and (max-width: 812px) and (orientation: landscape) {
  .call-menu {
    left: 10px; } }

@media screen and (max-width: 787px) {
  .call-menu {
    left: 10px;
    top: 100%; } }

@media screen and (max-width: 450px) {
  .call-menu {
    left: 10px;
    top: 100%; } }






