/*

Event Catering

*/
:root {
    --col1: #aa223c;
    --col2: #2d2c2c;
    --text: #757575;
    --light: #f5f5f5;
    --medium: #d7d7d7;
    --borbis: #aec90b;
}

/* scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--col1);
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* font */
@font-face {
    font-family: 'Work Sans';
    font-display: swap;
    src: url('/font/WorkSans.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* podstawowe style */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: #fff;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

body, input, textarea, select, button {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
    word-break: break-word;
    color: var(--col2);
}

h1 {
    font-size: 320%;
    font-weight: 600;
}

h2 {
    font-size: 200%;
}

h3 {
    font-size: 170%;
}

h4 {
    font-size: 130%;
    font-weight: 500;
}

h5 {
    font-size: 115%;
}

h6 {
    font-size: 105%;
}

.upper {
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease;
    outline: none;
}

a:hover {
    color: var(--col1);
}

a:active,
a:focus {
    outline: 0;
    border: none;
}

p {
    margin: 0 auto 25px;
    color: var(--text);
}

.constrained, .contained {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contained {
    max-width: 1200px;
}

p:last-child {
    margin-bottom: 0;
}

p.small {
    font-size: 90%;
}

p.large {
    font-size: 110%;
}

label a, p a {
    position: relative;
}

iframe {
    display: block;
    max-width: 100%;
}

.center,
.center p,
p.center {
    text-align: center;
}

.right,
.right p,
p.right {
    text-align: right;
}

@media(min-width: 1001px) {
    .right-pc,
    .right-pc p,
    p.right-pc {
        text-align: right;
    }

    .center-pc,
    .center-pc p,
    p.center-pc {
        text-align: center;
    }
}

.justify, .justify p, p.justify {
    text-align: justify;
}

b, strong, .strong {
    font-weight: 600;
}

.stronger {
    font-weight: 800;
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.imgfit {
    min-height: 100%;
    object-fit: cover;
}

img.left {
    float: left;
    margin: 0 30px 15px 0;
}

img.right {
    float: right;
    margin: 0 0 15px 30px;
}

.center img,
img.center {
    margin: 0 auto;
}

.right img {
    margin-left: auto;
}

ol, ul {
    margin: 0;
    padding-left: 20px;
}

li ul, li ol, ol li:not(:first-child), ul li:not(:first-child) {
    margin-top: 15px;
}

ul.p, ol.p {
    margin: -10px 0 25px;
}

ul.p:last-child, ol.p:last-child {
    margin-bottom: 0;
}

ul.check {
    list-style: none;
    padding-left: 0;
}

ul.check li {
    position: relative;
    padding-left: 32px;
}

ul.check li:before {
    content: "\f00c";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--col1);
}

.container {
    margin: 0 auto;
    padding: 0 45px;
    max-width: 1450px;
    width: 100%;
}

.container.full {
    max-width: 100%;
}

.container > .container {
    padding: 0;
}

@media(min-width: 1001px) {
    .container.half {
        max-width: 725px;
    }

    .container.lefthalf {
        margin-right: inherit;
        padding-right: 50px;
    }

    .container.righthalf {
        margin-left: inherit;
        padding-left: 50px;
    }
}

.container.small {
    max-width: 1000px;
}

.abs-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=url],
input[type=search],
input[type=date],
input[type=number],
textarea,
select {
    padding: 12px 15px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    line-height: 1.5;
    width: 100%;
    height: auto;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--light);
    border: 2px solid #fff;
    border-radius: 2px;
    font-size: 90%;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-transition: background-color 600000s 0s, color 600000s 0s, background-image 600000s 0s;
    transition: background-color 600000s 0s, color 600000s 0s, background-image 600000s 0s;
}

input[type=text]:focus,
textarea:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=date]:focus {
    border-color: var(--col1);
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: .5;
}

textarea {
    display: block;
    resize: none;
    height: 100px;
}

.button {
    font-weight: 350;
    font-size: 120%;
    padding: 15px 35px;
    display: inline-block;
    cursor: pointer;
    background: var(--col1);
    border-radius: 2px;
    opacity: 1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
    outline: none;
    border: 0;
}

.button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: #fff;
    transition: .4s ease;
    transform: scaleX(0);
    transform-origin: 0 0;
    box-shadow: 0 0 10px rgba(0,0,0,.15);
}

.button:hover:after, .kaf:hover .button:after {
    opacity: 1;
    transform: scaleX(1);
}

.button span {
    color: #fff;
    transition: .4s ease;
}

.button:hover span, .kaf:hover .button span {
    color: var(--col1);
}

button[disabled], input[disabled], [type=submit]:disabled {
    pointer-events: none;
    opacity: .5;
}

/* uklad */
.section {
    padding: 45px 0;
    position: relative;
}

.bigsection {
    padding: 70px 0;
}

.bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

html .bgdark {
    background-color: var(--col2);
}

.bgdark * {
    color: #fff;
}

.bgcontain {
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
}

.above {
    position: relative;
    z-index: 5;
}

.sep {
    margin: 0 auto;
    width: 12px;
    height: 12px;
    border: 3px solid var(--col1);
    border-radius: 100%;
    position: relative;
}

.sep:before, .sep:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 80px;
    background: var(--col1);
    top: 50%;
    transform: translateY(-50%);
}

.sep:before {
    left: 9px;
}

.sep:after {
    right: 9px;
}

html .bglight {
    background-color: var(--light);
}

html .col1 {
    color: var(--col1);
}

html .col2 {
    color: var(--col2);
}

html .medium {
    color: var(--medium);
}

.flex {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
    position: relative;
}

@media(min-width: 1001px) {
    .row.bigspace {
        margin: -20px;
    }

    .row.bigspace>.col {
        padding: 20px;
    }
}

.row.smallspace {
    margin: -5px;
}

.row.medspace {
    margin: -10px;
}

.row.nospace {
    margin: 0;
}

.row.nowrap, .row.unwrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.row.spread,
.flex.spread {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.row.toend {
    justify-content: flex-end;
}

.row.centered,
.flex.centered {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.row.middle,
.flex.middle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.col {
    width: 100%;
    padding: 15px;
    position: relative;
}

.row.smallspace>.col {
    padding: 5px;
}

.row.medspace>.col {
    padding: 10px;
}

.row.nospace>.col {
    padding: 0;
}

.col.auto {
    width: auto;
    max-width: 100%;
}

.col.fill {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.col.shrink {
    -ms-flex-negative: 999999;
    flex-shrink: 999999;
}

.col.toright {
    margin-left: auto;
}

@media(min-width: 1001px) {
    .row.reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .skewrow:not(.reverse) > .col:last-child {
        transform: translateY(30px);
    }

    .skewrow.reverse > .col:first-child {
        transform: translateY(30px);
    }

    .col_11 {
        width: 91.6666%;
    }

    .col_10 {
        width: 83.3333%;
    }

    .col_9 {
        width: 75%;
    }

    .col_8 {
        width: 66.6666%;
    }

    .col_7 {
        width: 58.3333%;
    }

    .col_68 {
        width: 55%;
    }
    
    .col_6 {
        width: 50%;
    }

    .col_52 {
        width: 45%;
    }

    .col_5 {
        width: 41.6666%;
    }

    .col_4 {
        width: 33.3333%;
    }

    .col_36 {
        width: 30%;
    }

    .col_3 {
        width: 25%;
    }

    .col_24 {
        width: 20%;
    }

    .col_2 {
        width: 16.6666%;
    }

    .col_1 {
        width: 8.3333%;
    }
}

.bottom_space_0 {
    margin-bottom: 0 !important;
}

.bottom_space_5 {
    margin-bottom: 5px !important;
}

.bottom_space_10 {
    margin-bottom: 10px !important;
}

.bottom_space_15 {
    margin-bottom: 15px !important;
}

.bottom_space_20 {
    margin-bottom: 20px !important;
}

.bottom_space_25 {
    margin-bottom: 25px !important;
}

.bottom_space_30 {
    margin-bottom: 30px !important;
}

.bottom_space_40 {
    margin-bottom: 40px !important;
}

.bottom_space_45 {
    margin-bottom: 45px !important;
}

.bottom_space_55 {
    margin-bottom: 55px !important;
}

/* header */
header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    z-index: 1000;
    padding: 0;
    background: #fff;
}

.header-space {
    height: 80px;
}

* {
    scroll-margin-top: 60px;
}

header .logo {
    padding: 17.5px 0;
    display: block;
}

.logo img {
    height: 45px;
    width: auto;
}

/* header - menu */
nav > ul {
    margin: 0 -20px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

nav > ul > li {
    margin: 0 !important;
    list-style: none;
    position: relative;
}

nav > ul > li > a {
    font-size: 110%;
    padding: 10px 20px;
    position: relative;
    display: block;
    transition: .5s ease;
}

nav > ul > li.active > a, nav > ul > li:hover > a {
    color: var(--col1);
}

nav > ul > li > a > span {
    position: relative;
}

nav > ul > li > a > span:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--col1);
    transform: scale(0);
    transition: .3s ease;
}

nav > ul > li:hover > a > span:after {
    transform: scale(1);
}

/* header - submenu */
.submenu {
    list-style: none;
}

.submenu a {
    font-size: 95%;
    font-weight: 400;
}

@media(min-width: 1001px) {
    .submenu-container {
        position: absolute;
        top: calc(100% + 20px);
        left: 50%;
        transition: top .5s, opacity .5s, transform 0s .5s;
        opacity: 0;
        transform: scale(0) translateX(-50%);
        transform-origin: top;
    }

    li:hover > .submenu-container {
        top: 100%;
        opacity: 1;
        transform: scale(1) translateX(-50%);
        transition: top .3s, opacity .3s;
    }

    .submenu {
        margin: 0;
        background: #fff;
        padding: 15px;
        width: 350px;
        position: relative;
        box-shadow: 0 10px 10px rgba(0,0,0,.15);
    }

    .submenu li {
        margin: 0 !important;
    }

    .submenu a {
        display: block;
        padding: 5px;
        position: relative;
        font-size: 90%;
        text-align: center;
    }

     .submenu a span {
        position: relative;
        transition: .4s ease;
     }

    .submenu a:hover span {
        color: #fff;
    }

    .submenu .active:not(:hover) a span {
        color: var(--col1);
    }

    .submenu a:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--col1);
        transition: .4s ease;
        transform: scaleX(0);
    }

    .submenu li:hover > a:before {
        transform: scaleX(1);
    }

    li > a:hover + .submenu-container .submenu a:before {
        display: none;
    }
}

/* menu - ikonki */
.menu-icons {
    display: flex;
    margin: 0 -6px;
}

.menu-icons a {
    margin: 0 6px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 85%;
    border-radius: 4px;
    background: var(--medium);
    color: var(--col2);
    transition: .3s cubic-bezier(0.47, 0, 0.75, 0.72);
}

.menu-icons a:hover {
    background: var(--col1);
    color: #fff;
    transform: scale(1.15);
}

/* header - fixed */
header.fixed {
    position: fixed;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* glowna - intro */
.intro {
    height: 570px;
    position: relative;
}

body.nowebp .intro {
    background-image: url(/img/intro.jpg);
}

.intro .sep:before, .intro .sep:after {
    height: 3px;
    width: 100px;
}

.intro h4 {
    font-weight: 300;
    line-height: 1.35;
}

.intro:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--col1), var(--col2));
    opacity: .35;
}

/* glowna - boxy */
.borderbox {
    padding: 25px;
    height: 100%;
    border: 2px solid var(--medium);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 3px 10px rgb(215 215 215 / 35%);
}

.iko {
    height: 90px;
    width: auto;
}

/* glowna - cta */
body.nowebp .cta {
    background-image: url(/img/cta.jpg);
}

.cta {
    background-attachment: fixed;
}

.cta h3 {
    font-weight: 250;
    line-height: 1.3;
}

/* glowna - kafelki */
body.nowebp .kaf1 {
    background-image: url(/img/oferta/catering-grillowy-i-piknikowy.jpg);
}

body.nowebp .kaf2 {
    background-image: url(/img/oferta/catering-na-imprezy-firmowe.jpg);
}

body.nowebp .kaf3 {
    background-image: url(/img/oferta/catering-na-targi.jpg);
}

body.nowebp .kaf4 {
    background-image: url(/img/oferta/catering-na-szkolenia-i-konferencje.jpg);
}

body.nowebp .kaf5 {
    background-image: url(/img/oferta/catering-wigilijny-dla-firm.jpg);
}

body.nowebp .kaf6 {
    background-image: url(/img/oferta/catering-na-przyjecia-okolicznosciowe.jpg);
}

body.nowebp .kaf7 {
    background-image: url(/img/oferta/przerwy-kawowe.jpg);
}

.kaf {
    display: block;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.kaf:after, .kaf .bg, .kaf .bg:after, .kaf-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s ease;
}

.kaf:after {
    content: "";
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid var(--col1);
    border-radius: 2px;
    z-index: 10;
}

.kaf:hover:after {
    border-color: #fff;
}

.kaf:hover .bg {
    transform: scale(1.2);
}

.kaf .bg:after {
    content: "";
    display: block;
    background: var(--col2);
    opacity: .65;
}

.kaf:hover .bg:after {
    opacity: .35;
}

.kaf-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* o nas */
.bg.minheight {
    height: 100%;
}

body.nowebp .onas {
    background-image: url(/img/onas.jpg);
}

body.nowebp .onas2 {
    background-image: url(/img/onas2.jpg);
}

.contentbox {
    background: var(--light);
    padding: 45px;
}

/* oferta - sidebar */
.sidebar .borderbox {
    height: auto;
}

.boxmenu {
    padding: 0;
    margin: -15px 0;
    list-style: none;
}

.boxmenu a {
    display: block;
    padding: 15px 0;
    font-size: 90%;
    text-align: center;
}

.boxmenu li:not(:first-child) {
    margin: 0;
    border-top: 1px solid var(--medium);
}

.boxmenu a:not(:hover) {
    color: #aaa;
}

.boxmenu .active > a {
    color: var(--col1);
}

.sidebar .dana {
    justify-content: center;
}

.sidebar .dana i {
    color: var(--col1);
}

/* kontakt - dane */
.contact-icon {
    width: 85px;
    height: 85px;
    background: var(--col1);
    border-radius: 2px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 235%;
}

/* kontakt - formularz */
.checkboxes {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
}

.checkboxes p {
    font-size: 90%;
}

label.checkbox {
    display: flex;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

label.checkbox [type='checkbox'] {
    display: none;
    width: 0;
    height: 0;
    opacity: 0;
}

label.checkbox span {
    font-size: 75%;
    line-height: 1.5;
    color: #858585;
}

label.checkbox .invalid ~ .checkmark {
    outline: 2px solid #af0000;
}

label.checkbox span a {
    color: var(--col1);
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: var(--light);
    transition: .3s ease;
    border-radius: 2px;
}

.checkbox:hover input ~ .checkmark {
    background-color: rgb(0 0 0 / 10%);
}

.checkbox input:checked ~ .checkmark {
    background-color: var(--col1);
}

.checkmark:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 3px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    transition: .3s ease;
}

.checkbox input:checked ~ .checkmark:after {
    opacity: 1;
}

.checkbox input:not(:checked) ~ input[type=text] {
    opacity: .5;
    pointer-events: none;
}

.formularz .invalid,
.formularz .invalid+.select2-container--default .select2-selection--single {
    border-color: #af0000;
}

input[type=checkbox].invalid {
    -webkit-box-shadow: 0 0 3px 2px #af0000;
    box-shadow: 0 0 3px 2px #af0000;
}

.form-error * {
    color: #af0000 !important;
}

.form-success * {
    color: green !important;
}

.form-msg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.25;
    height: 100%;
    font-size: 95%;
    justify-content: center;
}

.form-msg i {
    margin-right: 15px;
    font-size: 110%;
}

.form-msg p {
    -ms-flex-negative: 99999;
    flex-shrink: 99999;
    margin: 0;
}

.form-submit button {
    padding: 12px 42px;
}

/* page header */
.page-header {
    padding: 15px 0;
    background-color: var(--col1);
}

.page-header h1 {
    font-size: 200%;
    color: #fff;
}

/* footer */
footer {
    background: var(--col1);
    margin-top: auto;
}

footer p, footer a {
    color: #cbcbcb;
}

footer a:hover {
    color: var(--light);
}

.footer-widgets {
    font-size: 90%;
    padding: 25px 0;
}

.footer-widgets .logo {
    height: 40px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.footer-widgets h4 {
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(255 255 255 / 25%);
}

.dana {
    display: flex;
}

.dana:not(:last-child) {
    margin-bottom: 15px;
}

.dana i {
    line-height: 1.85;
    margin-right: 10px;
    width: 20px;
    color: var(--medium);
}

.footer-menu {
    padding: 0;
    margin: -5px 0;
}

.footer-menu li {
    list-style: none;
    margin: 0 !important;
}

.footer-menu li a {
    display: block;
    padding: 5px 0;
}

/* footer - copyright */
.copyright {
    background: hsl(0deg 1% 17% / 15%);
    font-size: 75%;
    padding: 15px 0;
}

.copyright a {
    color: var(--borbis) !important;
}

/* rwd */
@media(max-width: 1400px) {
    body,
    input,
    textarea,
    select,
    button {
        font-size: 17px;
    }

    .intro {
        height: 500px;
    }
}

@media(max-width: 1200px) {
    body,
    input,
    textarea,
    select,
    button {
        font-size: 16px;
    }

    .intro {
        height: 470px;
    }

    nav > ul {
        margin: 0 -15px;
    }

    nav > ul > li > a {
        padding: 10px 15px;
    }
    
}

@media(min-width: 1001px) {
    .nopc {
        display: none !important;
    }
}

@media(max-width: 1000px) {
    .norwd {
        display: none !important;
    }

    body,
    input,
    textarea,
    select,
    button {
        font-size: 15px;
    }

    .container {
        padding: 0 35px;
    }

    .menu-toggle {
        font-size: 150%;
        margin-left: 7px;
        position: relative;
        width: 20px;
        height: 25px;
        text-align: center;
        display: block;
    }

    .menu-toggle i {
        position: absolute;
        top: 2px;
        right: 0;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        width: 100%;
    }

    #mmt:not(:checked)~.menu-toggle i:last-child,
    #mmt:checked~.menu-toggle i:first-child {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    header .logo {
        padding: 15px 0;
    }

    header .logo img {
        height: 30px;
    }

    .header-space {
        height: 60px;
    }

    * {
        scroll-margin-top: 60px;
    }

    nav {
        position: fixed;
        left: 0;
        top: 80px;
        width: 100%;
        background: var(--col1);
        margin: 0;
        display: block;
        padding: 10px 0;
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s -webkit-transform .15s;
        transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s -webkit-transform .15s;
        -o-transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s transform .15s;
        transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s transform .15s;
        transition: opacity .15s ease-in-out, top .15s ease-in-out, 0s transform .15s, 0s -webkit-transform .15s;
    }

    #mmt:checked~nav {
        top: 60px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        -webkit-transition: opacity .25s ease-in-out, top .25s ease-in-out;
        -o-transition: opacity .25s ease-in-out, top .25s ease-in-out;
        transition: opacity .25s ease-in-out, top .25s ease-in-out;
        max-height: calc(100vh - 60px);
        overflow: auto;
    }

    nav ul {
        flex-direction: column;
        margin: 0;
        align-items: flex-start;
    }

    nav ul li {
        width: 100%;
        margin: 0 !important;
    }

    nav ul li a {
        padding: 10px 35px;
        font-size: 110%;
        display: block;
        color: var(--medium);
        transform: none;
    }

    nav > ul > li.active > a, nav > ul > li:hover > a {
        color: #fff;
    }

    .footer-widgets .logo {
        height: 30px;
    }

    .intro {
        height: 400px;
    }

    .rwd_bottom_space_0 {
        margin-bottom: 0px !important;
    }

    .rwd_bottom_space_15 {
        margin-bottom: 15px !important;
    }
    
    .rwd_bottom_space_20 {
        margin-bottom: 20px !important;
    }
    
    .rwd_bottom_space_30 {
        margin-bottom: 30px !important;
    }

    .section {
        padding: 35px 0;
    }

    .bg.minheight {
        min-height: 300px;
    }

    .contentbox {
        padding: 30px;
    }

    .kaf {
        height: 320px;
    }

    .iko {
        height: 70px;
    }
}

@media(max-width: 690px) {
    
    h1 {
        font-size: 220%;
    }

    h2, .page-header h1 {
        font-size: 180%;
    }
    
    h3 {
        font-size: 160%;
    }

    .contact-icon {
        width: 75px;
        height: 75px;
        font-size: 210%;
    }
}

@media(max-width: 480px) {
    body,
    input,
    textarea,
    select,
    button {
        font-size: 14px;
    }

    h1 {
        font-size: 200%;
    }

    .intro h4 {
        font-size: 115%;
    }

    .intro {
        height: 370px;
    }

    .kaf {
        height: 300px;
    }

    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 200%;
    }
}