@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: "brother-1816", sans-serif;
    font-weight:300;
    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;
}
main{
    min-height:calc(100vh - 162px);
}
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
}
.block-1 {
    grid-column-end: span 1;
}
.block-2 {
    grid-column-end: span 2;
}
.block-3 {
    grid-column-end: span 3;
}
.block-4 {
    grid-column-end: span 4;
}
.block-5 {
    grid-column-end: span 5;
}
.block-6 {
    grid-column-end: span 6;
}
.block-7 {
    grid-column-end: span 7;
}
.block-8 {
    grid-column-end: span 8;
}
.block-9 {
    grid-column-end: span 9;
}
.block-10 {
    grid-column-end: span 10;
}
.block-11 {
    grid-column-end: span 11;
}
.block-12 {
    grid-column-end: span 12;
}
.start-2 {
  grid-column-start: 2;
}
.start-3 {
  grid-column-start: 3;
}
.start-4 {
  grid-column-start: 4;
}
.start-5 {
  grid-column-start: 5;
}
.start-6 {
  grid-column-start: 6;
}
.start-7 {
  grid-column-start: 7;
}
.start-8 {
  grid-column-start: 8;
}
.start-9 {
  grid-column-start: 9;
}
.start-10 {
  grid-column-start: 10;
}
.start-11 {
  grid-column-start: 11;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    width: 100%;
    height: auto;
    font-weight:700;
    text-transform:uppercase;
}
h1 {
    font-size: 3.0rem;
    margin-bottom: 32px;
}
h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 2.0rem;
    margin-bottom: 8px;
}
h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
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%;
    object-fit: contain;
}
ul,
ol {
    list-style: none;
}
.button {
    display: block;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 16px;
    font-weight: 500;
    text-transform:uppercase;
    text-decoration: none;
}
* {
    color: #574551;
}
.bg-white {
    background: #fff;
}
.bg-grey {
    background: #574551;
}
.bg-beige {
    background: #fcf5ed;
}
.bg-brown {
    background: #8F745E;
}
.bg-gold{background:#e8bf94;}
.txt-white,
.txt-white * {
    color: #ffffff !important;
}
.txt-grey,
.txt-grey * {
    color: #244856 !important;
}
.txt-brown,
.txt-brown * {
    color: #8F745E !important;
}
.txt-beige,
.txt-beige * {
    color: #fcf5ed !important;
}
.txt-gold,
.txt-gold * {
    color: #e8bf94 !important;
}
.border-bottom-white{border-bottom:8px solid #ffffff;}
header {
    height: 112px;
    padding: 32px 0;
    overflow: visible;
    z-index:1000;
}
header .container {
    height: 80px;
}
header .container .logo {
    position:absolute;
    width:250px; 
    height:200px;
    top:-8px;
    left:0px;
    overflow: hidden;
}
header .container .logo a {
    display: block;
}
header .container nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
}
header .container nav ul li {
    height: 48px;
    line-height: 48px;
}
header .container nav ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 1.8rem;
    text-transform:uppercase;
    text-decoration: none;
}
header .container nav ul li.on,
header .container nav ul li:hover {
    border-bottom:3px solid #ffffff;
}

header .container .menu {
    display: none;
}
.stripe {
    padding-top:48px;
    padding-right:0px;
    padding-bottom:48px;
    padding-left:0px;
    position: relative;
}
.stripe.no-padding-top{
    padding-top:0px;
}
.stripe.small-padding-top{
    padding-top:24px;
}
.stripe.medium-padding-top{
    padding-top:48px;
}
.stripe.big-padding-top{
    padding-top:72px;
}
.stripe.biggest-padding-top{
    padding-top:96px;
}
.stripe.no-padding-right{
    padding-right:0px;
}
.stripe.small-padding-right{
    padding-right:24px;
}
.stripe.medium-padding-right{
    padding-right:48px;
}
.stripe.big-padding-right{
    padding-right:72px;
}
.stripe.biggest-padding-right{
    padding-right:96px;
}
.stripe.no-padding-bottom{
    padding-bottom:0px;
}
.stripe.small-padding-bottom{
    padding-bottom:24px;
}
.stripe.medium-padding-bottom{
    padding-bottom:48px;
}
.stripe.big-padding-bottom{
    padding-bottom:72px;
}
.stripe.biggest-padding-bottom{
    padding-bottom:96px;
}
.stripe.no-padding-left{
    padding-left:0px;
}
.stripe.small-padding-left{
    padding-left:24px;
}
.stripe.medium-padding-left{
    padding-left:48px;
}
.stripe.big-padding-right{
    padding-left:72px;
}
.stripe.biggest-padding-left{
    padding-left:96px;
}
/*
.stripe.small-padding{padding:28px 0px;}
.stripe.smaller-padding{padding:24px 0px;}
.stripe.no-padding{padding:0px 0px;}

.stripe.small-padding-bottom{
    padding-bottom:48px;
}
*/
.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.button article .buttons {
    margin-top:0px;
}
.stripe .block.photo img {
    object-position: top;
}

.stripe .block.content.cta article p {
    font-size: 2.4rem;
    font-weight: 500;
    text-transform:uppercase;
}

.stripe.slider{aspect-ratio:1920/500; padding:0px;}
.stripe.slider .background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.stripe.slider .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


footer {
    padding: 12px 0;
}
footer * {
    color: #fff;
    font-size:1.6rem;
}
footer .container {
    display: grid;
    grid-template-columns:1fr max-content;
    gap: 24px;
}
footer .container .about{text-align:center; font-weight:500;}

footer .container .socials ul li {
    float:left;
}
footer .container .socials ul li a {
    text-decoration: none;
}
footer .container .socials ul li a i {
    font-size: 2.4rem;
}

@media only screen and (max-width: 1023px) {
body {
    font-size: 1.4rem;
}
    h1 {
    font-size: 2.6rem;
    margin-bottom: 32px;
}
h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
    header {
        height: 96px;
        padding:16px 8px;
    }
    header .container {
        height: 64px;
        grid-template-columns: 298px auto;
        gap: 24px;
    }
    header .container .logo{width:188px; height:150px;}
    header .container nav ul {
    gap: 16px;
}
    header .container nav ul li {
        height: 64px;
        line-height: 64px;
    }
    header .container nav ul li a{font-size:1.6rem;}
.stripe {
    padding: 48px 0;
}
.stripe .block.content.cta article p {
    font-size: 2.0rem;
}
footer .container {
    grid-template-columns:1fr ;
}
footer .container .socials ul{
        display: flex;
    justify-content: center;
    gap: 16px;
}
footer .container .socials ul li {
    float:unset;
}
}

@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,
    .block-2,
    .block-3,
    .block-4,
    .block-5,
    .block-6,
    .block-7,
    .block-8,
    .block-9,
    .block-10,
    .block-11,
    .block-12 {
        grid-column-end: span 12;
    }
.start-2,
.start-3,
.start-4,
.start-5,
.start-6,
.start-7,
.start-8,
.start-9,
.start-10,
.start-11 {
  grid-column-start:unset;
}

    header .container .logo{width:125px; height:100px; z-index:2000;}


    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: 800;
        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: #e8bf94;
    }
    header .container nav ul li {
        width: 100%;
        height: auto;
        min-height: 32px;
        line-height: unset;
        text-align: right;
    }
    header .container nav ul li a{color:#574551;}

    .stripe {
        padding: 32px 0;
    }
    .stripe.wide .container {
        width: 100%;
    }
    .stripe.slider .slide {
        grid-template-columns: 1fr;
    }
    .stripe.slider .slide .image {
        margin-top: 16px;
    }

.stripe .block.content.cta article p{font-size:1.6rem;}

}
@media only screen and (max-width: 320px) {
    header .container {
        height: 47px;
        display: grid;
        grid-template-columns: 250px auto;
        gap: 16px;
    }

}
