@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-weight: 400;
    font-family: 'Poppins', sans-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 {
    position: relative;
}
.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;
    line-height: 1.2;
    color:#39B54A;
}
h1 {
    font-size:3.6rem;
    margin-bottom:32px;
}
h2 {
    font-size: 3.0rem;
    margin-bottom:32px;
}
h3 {
    font-size:2rem;
    margin-bottom:16px;
}
h4 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
p {
    margin-bottom:24px;
}
article ul,
article ol{
    margin-bottom:24px;
}

p:last-child,
article ul:last-child,
article ol:last-child{
    margin-bottom:0px;
}
small {
    font-size: 1.2rem;
}
.center {
    text-align: center;
}
.left {
    float: left;
}
.right {
    float: right;
}
video,
img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
ul,
ol {
    list-style: none;
}
.button {
    width:fit-content;
    padding:8px 48px;
    text-align:center;
    text-decoration: none;
    font-weight:600;
    font-size: 1.8rem;
    display: inline-block;
    color: white;
    border: unset;
    cursor: pointer;
}
.button.full {
    width: 100%;
}
.buttons {
    margin-top: 32px;
}
.buttons a {
    margin-right: 24px;
}
.buttons.right{
    float:unset;
    text-align:right;
}
.buttons.right a:last-of-type{
    margin-right:unset;
}
b {
    font-weight: bold;
}
* {
    color: #0A2540;
}
.bg-white {
    background: #ffffff;
}
.button.bg-white:hover{
    background:#010201;
}
.bg-lightgreen {
    background: #39b54a;
}
.bg-green {
    background: #267932;
}
.button.bg-green:hover{
    background: #b53966;
}
.bg-red {
    background: #b53966;
}
.bg-black{
    background:#010201;
}
.bg-grad-green{
    background: rgb(20, 218, 47);
    background: linear-gradient(135deg, rgba(38, 121, 50, 1) 0%, rgba(20, 218, 47, 1) 100%);
}
.bg-picture{
    background:url(../images/background.webp) no-repeat top left;
    background-size: cover;
}
.txt-white,
.txt-white * {
    color: #ffffff !important;
}
.txt-lightgreen,
.txt-lightgreen * {
    color: #39b54a !important;
}
.txt-green,
.txt-green * {
    color: #267932 !important;
}
.button.txt-green:hover{
    color:#ffffff !important;
}
.txt-red,
.txt-red * {
    color: #b53966 !important;
}
.txt-black,
.txt-black * {
    color: #010201 !important;
}
.shadow{
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.35); 
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.35); 
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.35);
}


/*forms*/
.form .message{
    padding:24px;
    margin-bottom:24px;
}
.form .message.fail{
    background: #b53966;
    color:#ffffff;
}
.form .message.success{
    background: #267932;
    color:#ffffff;
}
.form .form-grid{
    display:grid;
    grid-template-columns: 200px 1fr; 
    gap:0px;
}
.form .form-grid .wide{
    grid-column:span 2;
}
.form .form-grid .row{
    padding:16px 0px;
}
.form .form-grid .row.no-padding{
    padding:0px;
}
.form .form-grid .label{
    line-height:24px;
}
.form .form-grid select,
.form .form-grid input,
.form .form-grid textarea{
    width:100%;
    height:32px; 
    position:relative; 
    padding:4px 8px; 
    font-size: 1.6rem; 
    line-height:40px;     
    font-size: 1.6rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    border:unset;
    border-right: 8px solid #267932;
    background:#ffffff; 
    color:#0A2540;
}
.form .form-grid textarea{
    height:unset;
}
.form .form-grid select:focus,
.form .form-grid input:focus,
.form .form-grid textarea:focus{
    outline: none; 
    box-shadow: 0 0 5px rgba(78, 11, 112, 0.3);
}
.form .form-grid .red select,
.form .form-grid .red textarea,
.form .form-grid .red input{
    border-right:8px solid #b53966 !important; 
    color:#b53966 !important;
}
.form .form-grid .red label,
.form .form-grid .red textarea::placeholder,
.form .form-grid .red input::placeholder{
    color:#b53966;
}
.form .form-grid .boxes {
  display: grid;
  grid-template-columns: 32px auto;
  gap: 0;
}
.form .form-grid .boxes input[type=radio], 
.form .form-grid .boxes input[type=checkbox] {
    color: #267932;
    width: 1.06em !important;
    height: 1.06em;
    border-radius: 0.15em;
    padding: unset !important;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    transform: translateY(0.25em);
    display: grid;
    place-content: center;
}
.form .form-grid .boxes input[type=radio] {
    border-radius: 50%;
}
.form .form-grid .boxes input[type=radio]::before, 
.form .form-grid .boxes input[type=checkbox]::before {
    background-color: #267932;
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
}
.form .form-grid .boxes input[type=radio]:checked::before, 
.form .form-grid .boxes input[type=checkbox]:checked::before {
    transform: scale(1);
}
.form .form-grid .submit button,
.form .form-grid .submit input[type="submit"],
.form .form-grid .submit input[type="button"]{float:right; font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif; border:none; cursor:pointer;
    padding:8px 40px;
}

/*header*/
header {
    border-bottom:12px solid #267932;
}
header nav{
    width:100%; 
    height:80px;
    padding:12px 0px;
    position:relative;
}
header nav ul {
    display: flex;
    justify-content: flex-start;
}
header nav ul li {
    height:56px;
    line-height:56px;
    padding:0px 24px;
}
header nav ul li:first-child {
    padding-left:0px;
}
header nav ul li:last-child{
    margin-left: auto;
    background:#b53966;
}
header nav ul li a {
    text-decoration: none;
    color:#ffffff;
    font-size:2.2rem;
    font-weight:600;
}
header nav ul li.on a,
header nav ul li:hover a{
    color:#39b54a;
}
header nav ul li.on:last-child a,
header nav ul li:hover:last-child a{
    color:#b53966;
}
header nav ul li.on:last-child,
header nav ul li:hover:last-child{
    background:#ffffff;
}
header .menu {
    display: none;
}

/* breadcrumbs */
.breadcrumbs {
  width: 100%;
  line-height: 32px;
}
.breadcrumbs ol {
  display: flex;
  justify-content: flex-start;
}
.breadcrumbs li a{
    text-decoration: none;
}
.breadcrumbs li,
.breadcrumbs li a span {
  font-size: 1.2rem;
  color: rgba(22,22,22, 0.6);
  text-decoration:none;
}
.breadcrumbs li:hover a span {
  color:#010201;
}
.breadcrumbs ol li::after {
  content: '|';
  margin: 0 8px;
}
.breadcrumbs ol li:last-of-type::after {
  content: none;
  margin: unset;
}

/* stripes & blocks: default*/
.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.wide .container {
    max-width: 1380px;
}
.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.video video,
.stripe .block.card img,
.stripe .block.image img {
    object-position: top;
    position:relative;
    z-index:10;
}
.stripe .block.padding form,
.stripe .block.padding article{
    padding:12px;
}

/*sliders*/
.stripe.slider{
    height:450px; 
    padding:unset;
}
.stripe.slider .background{
    width:100%; 
    height:inherit; 
    position:absolute; 
    top:0; 
    left: 0; 
    z-index:-1;
}
.stripe.slider .background img{
    object-fit:cover;
    height:100%;
}
.stripe.slider .block{
    position:relative; 
    display:grid; 
    grid-template-columns:max-content auto; 
    margin-top:134px; 
    color:white;
}
.stripe.slider .block .logo{
    padding:24px; 
    margin-left:-24px;
}
.stripe.slider .block .logo a{
    display:block;
    width:285px; 
    height:140px;
}
.stripe.slider .block article{
    padding:32px;
}
.stripe.slider .block article h1{
    font-size:5.0rem; 
    font-weight:600; 
    margin-bottom:24px; 
}

/*customs*/
.stripe.services article ul{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:24px;
    list-style:none;
    margin:unset;
}
.stripe.services article ul li{
    display:block;
    grid-column:span 3;
    cursor:pointer;
    color:#010201;
    background:#ffffff;
    line-height:40px;
    margin:unset;
    padding:8px 24px;
    font-size:1.8rem;
    position:relative;
}
.stripe.services article ul li a{
    text-decoration:none;
    color:#b53966;
    font-weight:600;
}
.stripe.services article ul li:hover{
    color:#267932;
}
.stripe.services article ul li:hover:after{
    background:#b53966;
}
.stripe.services article ul li:after{
    content:''; 
    height:100%; 
    width:16px; 
    display:block; 
    background:#14DA2F; 
    position:absolute; 
    top:0; 
    right:0;
}
.stripe .block .background-shape{
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: #39B54A;
    z-index:0;
}
.stripe .block.card article{
    z-index:100;
    background:#ffffff;
    position:relative;
    min-height:328px;
}
.stripe .block.card article h2{
    min-height:108px;
}
.stripe .block .placeholder{
    position:relative;
}

footer{
    margin-top:48px;
    padding:32px 0px 12px 0px;
    overflow:visible;
}
footer .logo{
    width:188px; 
    height:118px; 
    margin-top:-64px; 
    padding:24px; 
    background:white;
}
footer address {
    font-style: normal;
}
footer *{
    color:white;
}
footer h4 {
    font-size:2.0rem;
    margin-bottom:16px;
}
footer a{
    text-decoration:none;
}
footer a:hover,
footer a:hover *,
footer .social-links a:hover i{
    color:#0A2540;
}
footer a i{
    margin-right:12px;
}
footer .copyright{
    margin-top:16px;
    display:flex; 
    justify-content:flex-start !important; 
}
footer .copyright,
footer .copyright * {
    font-size:1.4rem; 
    color:rgba(255,255,255,0.6);
}
footer .copyright a{
    margin-left:12px;
}
footer .copyright a:last-of-type{
    margin-left:auto;
}

@media only screen and (max-width: 1260px) 
{
    .stripe.slider{
        height:420px;
    }
    .stripe.slider .block{
        margin-top:80px;
    }

    .stripe.slider .block article h1{
        font-size:3.2rem;
    }
    .stripe.services article ul li{
        grid-column:span 6;
    }
    .stripe .block.card article h2{
        font-size:2.6rem;
    }
}

@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;
    }
    .button {
        padding:6px 32px;
    }
    
    header nav{
        height:56px;
    }
    header nav ul li{
        height:32px;
        line-height:32px;        
        padding:0px 16px;
    }
    header nav ul li a{
        font-size:1.8rem;
    }

    .stripe {
        padding: 32px 0;
    }
    .stripe.slider{
        height:320px;
    }
    .stripe.slider .block{
        margin-top:16px;
    }
    .stripe.slider .block .logo a{
        width:200px;
        height:109px;
    }
    .stripe .block.card article h2{
        font-size:2.0rem;
        min-height:80px;
    }
 
    .form .form-grid{
        grid-template-columns:1fr;
    }
    .form .form-grid .wide{
        grid-column:unset;
    }
    .form .form-grid .row.label{
        padding-bottom:0px;
    }
    .form .form-grid .message{
        padding:12px;
    }

}

@media only screen and (max-width: 767px) {

    .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;
    }
    .buttons a{
        margin-right:unset;
    }
    header{
        position:absolute;
        top:-44px;
        left:0px;
        overflow:visible;
    }
    header .menu{
        display:block;
        width:auto;
        text-align:right;
    }
    header .menu a i {
        font-size: 1.6rem;
        color: #ffffff;
        line-height:32px;
    }    
    header 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;
        background: rgba(22,22,22, 0.8);
    }
    header nav.open{
        height:auto;
        top: 32px;
        z-index: 800;
        position: absolute;
        margin: 0px !important;
        background:#39B54A; 
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
    }
    header nav.open ul{
        padding:24px; 
        background:#39B54A; 
        margin-left:unset;
        display:unset;
    }
    header nav.open ul li{
        width:100%; 
        height:auto; 
        min-height:48px;
        padding:0px 24px;
        line-height:unset;
    }
    header nav ul li:last-child{
        margin-left:unset;
        background:unset;
    }
    header nav ul li.on:last-child, 
    header nav ul li:hover:last-child{
        background:unset;
    }
    header nav ul li.on:last-child a, 
    header nav ul li:hover:last-child a{
        color:#b53966;
    }
    header nav ul li.on a,
    header nav ul li:hover a{
        color:#b53966;
    }
    .stripe {
        padding: 32px 0;
    }
    .stripe.slider{
        margin-top:44px;
        height:100%;
    }
    .stripe.slider .block .placeholder{
        width:200px;
    }
    .stripe.slider .block .logo a{
        width:100%;
        height:auto;
    }
    .stripe.slider .block{
        display:block;
        margin-top:16px;
        margin-bottom:16px;
    }
    .stripe.slider .block article h1{
        font-size:2.4rem;
    }
    .stripe.wide .container {
        width: 100%;
    }
    .stripe.services article ul li{
        grid-column:span 12;
        font-size:1.4rem;
        line-height:32px;
        padding:8px;
        width:calc(100% - 16px);
    }
    .stripe .block.card{
        margin-bottom:24px;
    }
    .stripe .block.card article,
    .stripe .block.card article h2{
        min-height:unset;
    }
    footer .copyright{
        display:grid;
        grid-template-columns:1fr;
    }
    footer .copyright a{
        margin-left:unset !important;
    }
}
@media only screen and (max-width: 320px) {
    .buttons {
        margin-top:16px;
    }
    .buttons .button{
        width:100%;
        margin-top:16px;
    }
}
