@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}
html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    font-size: 1.6rem;
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    line-height: 1.628571;
    overflow-x: hidden;
    overflow-y: scroll;
}
header,
nav,
article,
aside,
section,
footer {
    display: block;
    overflow: hidden;
}
header,
main,
footer {
    width: 100%;
    height: auto;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}
.block-1 {
    grid-column: span 1;
}
.block-2 {
    grid-column: span 2;
}
.block-3 {
    grid-column: span 3;
}
.block-4 {
    grid-column: span 4;
}
.block-5 {
    grid-column: span 5;
}
.block-6 {
    grid-column: span 6;
}
.block-7 {
    grid-column: span 7;
}
.block-8 {
    grid-column: span 8;
}
.block-9 {
    grid-column: span 9;
}
.block-10 {
    grid-column: span 10;
}
.block-11 {
    grid-column: span 11;
}
.block-12 {
    grid-column: span 12;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    width: 100%;
    height: auto;
}
h1 {
    font-size: 3.6rem;
    margin-bottom: 32px;
}
h2 {
    font-size: 2.8rem;
    margin-bottom: 32px;
}
h3 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
h4 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}
p:not(:last-of-type) {
    margin-bottom: 16px;
}
small {
    font-size: 1.2rem;
}
.center {
    text-align: center;
}
.left {
    float: left;
}
.right {
    float: right;
}
img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
ul,
ol {
    list-style: none;
}
.button {
    display: block;
    width: fit-content;
    padding: 4px 16px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
}
.button i {
    margin-right: 16px;
}
* {
    color: #244856;
}
.bg-white {
    background: #fff;
}
.bg-blue {
    background: #244856;
}
.bg-green {
    background: #90aeae;
}
.bg-beige {
    background: #d3a65d;
}
.bg-brown {
    background: #865d36;
}
.bg-red {
    background: #e74833;
}
.txt-white,
.txt-white * {
    color: #ffffff !important;
}
.txt-blue,
.txt-blue * {
    color: #244856 !important;
}
.txt-green,
.txt-green * {
    color: #90aeae !important;
}
.txt-brown,
.txt-brown * {
    color: #865d36 !important;
}
.txt-beige,
.txt-beige * {
    color: #d3a65d !important;
}
.txt-red,
.txt-red * {
    color: #e74833 !important;
}
.lb-data .lb-caption{color:#ffffff !important; font-size:1.6rem;}
.bg-yellow-paint {
    background: url(../images/background-yellow-paint.webp) no-repeat;
    background-size: auto calc(100% - 48px);
    background-position: right 24px;
}
.bg-paint-cans {
    background: url(../images/background-paint-cans.webp) no-repeat center / contain;
}
.bg-wallpaper {
    background: url(../images/background-wallpaper.webp) no-repeat center / cover;
}
.border-bottom-white{border-bottom:12px solid #ffffff;}
header {
    height: 112px;
    padding: 16px 0;
    overflow: visible;
}
header .container {
    height: 80px;
    display: grid;
    grid-template-columns: 426px auto;
    gap: 24px;
}
header .container .logo {
    overflow: hidden;
}
header .container .logo a {
    display: block;
}
header .container nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}
header .container nav ul li {
    height: 80px;
    line-height: 80px;
}
header .container nav ul li a {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
}
header .container nav ul li:hover a,
header .container nav ul li.subs:hover::after {
    color: #d3a65d;
}
header .container nav ul li .submenu {
    display: none;
    pointer-events: inherit;
}
header .container nav ul li .submenu li {
    height: unset;
    line-height: 32px;
}
header .container nav ul li .submenu li a {
    font-size: 1.4rem;
    color: #fff;
}
header .container nav ul li .submenu li a:hover {
    font-size: 1.4rem;
    color: #d3a65d;
}
header .container nav ul li .submenu.showsub {
    position: absolute;
    margin-left: -8px;
    top: 56px;
    z-index: 1000;
    background-color: #244856;
    display: block;
    padding: 8px;
    border-radius: 0 0 16px 16px;
}
header .container nav ul li.subs::after {
    content: " \25BE";
    color: #fff;
    font-size: 2rem;
}
header .container .menu {
    display: none;
}
.stripe {
    padding: 48px 0;
    position: relative;
}
.stripe.small-padding{padding:24px 0px;}
.stripe.smaller-padding{padding:12px 0px;}
.stripe.no-padding{padding:12px 0px;}
.stripe.wide .container {
    width: calc(1260px + 120px);
    max-width: unset;
}
.stripe.full .container {
    width: 100%;
    max-width: unset;
}
.stripe .block.content ol,
.stripe .block.content ul{list-style:disc outside; margin-left:20px;}
.stripe .block.content article .buttons {
    margin-top: 32px;
}
.stripe .block.content.cta article p {
    font-size: 2.4rem;
    font-weight: 700;
}
.stripe .block.content.cta article .buttons {
    position: absolute;
    top: calc(50% - 17px);
    right: 24px;
    margin: 0 !important;
}
.stripe .block.image img {
    object-position: top;
}
.stripe.slider.small .content h1 {
    margin: 0;
    text-transform: uppercase;
}
.stripe.slider.small .background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.stripe.slider.small .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.stripe.slider .slide {
    padding: 24px;
    border-radius: 32px;
}
.stripe.slider .slide article h2 {
    margin-bottom: 8px;
}
.stripe.slider .slide .image,
.stripe.slider .slide .buttons {
    margin-top: 32px;
}
.stripe.slider .slide .buttons .button {
    display: inline-block;
}
.stripe.project .projects{display:grid; grid-template-columns:repeat(6,1fr); gap:24px;}
.stripe.project .projects a{width:100%; height:100%; aspect-ratio:1/1;}
.stripe.project .projects img{width:100%; height:100%; object-fit:cover;}

footer {
    padding: 16px 0;
}
footer *:not(h4) {
    color: #fff;
    font-size: 1.4rem;
}
footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 32px 284px 152px;
    gap: 24px;
}
footer .container .about h4 {
    color: #d3a65d;
    margin: 0;
}
footer .container .socials ul li {
    margin-bottom: 8px;
}
footer .container .socials ul li a {
    text-decoration: none;
}
footer .container .socials ul li a i {
    font-size: 2.4rem;
}
footer .container .socials ul li a:hover i {
    color: #90aeae;
}
footer .container * img {
    object-position: top;
}
@media only screen and (max-width: 1023px) {
    h1 {
        font-size: 3.2rem;
        margin-bottom: 32px;
    }
    h2 {
        font-size: 2.4rem;
        margin-bottom: 32px;
    }
    h3 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    h4 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    .bg-yellow-paint {
        padding-bottom: 120px;
        background-size: 40%;
        background-position: right bottom 24px;
    }
    header {
        height: 88px;
    }
    header .container {
        height: 56px;
        grid-template-columns: 298px auto;
        gap: 24px;
    }
    header .container nav ul {
    gap: 16px;
}
    header .container nav ul li {
        height: 56px;
        line-height: 56px;
    }
    
    .stripe.slider.small {
        padding: 32px 0;
    }
    .stripe.slider .slide {
        grid-column: span 12;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .stripe.slider .slide .image {
        margin-top: unset;
    }
    .stripe.slider .slide .image img {
        object-position: top;
    }
    .stripe.slider .slide .buttons {
        grid-column: span 2;
    }
    footer .container {
        grid-template-columns: 1fr 1fr 32px;
    }
    footer .container div:nth-of-type(1) {
        grid-area: 1/2/1/3;
    }
    footer .container div:nth-of-type(2) {
        grid-area: 2/2/2/3;
    }
    footer .container div:nth-of-type(3) {
        grid-area: 1/3/1/4;
    }
    footer .container div:nth-of-type(4) {
        grid-area: 1/1/1/2;
    }
    footer .container * img {
        width: unset;
        height: unset;
    }
    footer .container .brand img {
        object-position: center;
    }
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
    h1 {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    .container {
        padding: 0 16px;
    }
    .grid {
        gap: 16px;
    }
    .block-1 {
        grid-column: span 12;
    }
    .block-2 {
        grid-column: span 12;
    }
    .block-3 {
        grid-column: span 12;
    }
    .block-4 {
        grid-column: span 12;
    }
    .block-5 {
        grid-column: span 12;
    }
    .block-6 {
        grid-column: span 12;
    }
    .block-7 {
        grid-column: span 12;
    }
    .block-8 {
        grid-column: span 12;
    }
    .block-9 {
        grid-column: span 12;
    }
    .block-10 {
        grid-column: span 12;
    }
    .block-11 {
        grid-column: span 12;
    }
    .block-12 {
        grid-column: span 12;
    }
    .bg-yellow-paint {
        padding-bottom: 120px !important;
    }
    .bg-paint-cans {
        height: 48px;
    }
    header .container .menu {
        display: unset;
        display: block;
        text-align: right;
    }
    header .container .menu a i {
        font-size: 2rem;
        color: #fff;
        line-height: 56px;
    }
    header .container nav {
        width: 100%;
        height: auto;
        display: block;
        float: none;
        left: 0;
        top: -800px;
        position: absolute;
        -webkit-transform: translateY(-140%);
        transform: translateY(-140%);
        -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
        transition: transform 0.5s, visibility 0s 0.5s;
    }
    header .container nav.open {
        height: 100vh;
        top: 72px;
        z-index: 1000;
        position: absolute;
        margin: 0px !important;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }
    header .container nav ul {
        width: 100%;
        display: block;
        float: left;
        padding: 16px;
        background: #305f72;
    }
    header .container nav ul li {
        width: 100%;
        height: auto;
        min-height: 32px;
        line-height: unset;
        text-align: right;
    }
    header .container nav ul li.subs::after {
        content: unset;
    }
    header .container nav ul li .submenu,
    header .container nav ul li .submenu.showsub {
        display: block;
        padding: 8px 16px 0 0;
        margin-bottom: 12px;
        border-right: 2px solid #244856;
    }
    .stripe {
        padding: 32px 0;
    }
    .stripe.wide .container {
        width: 100%;
    }
    .stripe.slider.small {
        padding: 24px 0;
    }
    .stripe.slider .slide {
        grid-template-columns: 1fr;
    }
    .stripe.slider .slide .image {
        margin-top: 16px;
    }
    .stripe.slider .slide .buttons {
        grid-column: unset;
        margin-top: 16px;
    }
    .stripe .block.content.cta article .buttons {
        position: relative;
        top: unset;
        right: unset;
        margin-top: 16px !important;
    }
    .stripe.project .projects{grid-template-columns:repeat(4,1fr);}
    footer .container {
        grid-template-columns: 1fr 1fr;
    }
    footer .container div:nth-of-type(1) {
        grid-area: 2/1/2/2;
    }
    footer .container div:nth-of-type(2) {
        grid-area: 2/2/2/3;
    }
    footer .container div:nth-of-type(3) {
        grid-area: 3/2/3/3;
    }
    footer .container div:nth-of-type(4) {
        grid-area: 1/1/1/3;
        text-align: center;
    }
    footer .container * img {
        width: unset;
        height: unset;
    }
    footer .container .brand img {
        object-position: center;
    }
}
@media only screen and (max-width: 320px) {
    header .container {
        height: 47px;
        display: grid;
        grid-template-columns: 250px auto;
        gap: 16px;
    }
    .stripe.project .projects{grid-template-columns:repeat(3,1fr); gap:12px;}

    footer .container {
        grid-template-columns: 1fr;
    }
    footer .container div {
        grid-area: unset !important;
    }
    footer .container .brand {
        display: none;
    }
    footer .container .socials ul li {
        float: left;
        margin-right: 8px;
    }
}
