/*
font-family: niveau-grotesk,sans-serif;
font-weight: 400;
font-style: italic;

*
font-family: niveau-grotesk,sans-serif;
font-weight: 400;
font-style: normal;

*
font-family: niveau-grotesk,sans-serif;
font-weight: 700;
font-style: italic;


*\
font-family: niveau-grotesk,sans-serif;
font-weight: 700;
font-style: normal;

*
font-family: niveau-grotesk-small-caps,sans-serif;
font-weight: 400;
font-style: normal;

*
font-family: niveau-grotesk-small-caps,sans-serif;
font-weight: 700;
font-style: normal;

*
font-family: magneta,serif;
font-weight: 200;
font-style: normal;

*
font-family: magneta,serif;
font-weight: 200;
font-style: italic;

*
font-family: itc-avant-garde-gothic-pro,sans-serif;
font-weight: 500;
font-style: normal;
*/

body {
  font-size: 1.15vw;
  line-height: 1.59;
  letter-spacing: 0.055vw;
  color: #000000;
  font-family: magneta,serif;
  font-weight: 200;
}
h1,h2,h3,h4,h5,h6{
    letter-spacing: normal;
    color: #000000;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
}
h1 {
  font-size: 8.25vw;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.997;
  letter-spacing: -0.01vw;
  color: #000000;
}

h2 {
  font-size: 7.1vw;
  font-weight: 100;
  font-stretch: normal;
  letter-spacing: -0.16vw;
  color: #000000;
  line-height: 0.9;
}

h3 {
  font-size: 5.66vw;
  line-height: 1;
  letter-spacing: -0.104vw;
  color: #000000;
}

h4 {
   font-size: 4.45vw;
   line-height: normal;
   letter-spacing: -0.09vw;
}

h5 {
  font-size: 1.2vw;
  line-height: 1.31;
  letter-spacing: 0.2vw;
  font-family: niveau-grotesk,sans-serif;
  font-weight: 400;
}

h6 {
  font-size: 0.69vw;
  line-height: 1.31;
  letter-spacing: 0.17vw;
  font-family: niveau-grotesk,sans-serif;
  font-weight: 400;
}

a:hover {
    -webkit-filter: unset;
    filter: unset;
}


input[type="submit"] {
    display: inline-block;
    font-stretch: normal;
    font-style: normal;
    border: 0;
    cursor: pointer;
    position: relative;
    background-color: #588791;
}

input[type="submit"]::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.site_button:hover:before,
input[type="submit"]::before {
    width: 100%;
}

p {
    margin-top: 0;
    margin-bottom: 1.563vw;
}

p:last-child {
    margin-bottom: 0;
}

mark {
    background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(120deg, #E4DBDC 0%, #E4DBDC 100%);
    background-repeat: no-repeat;
    background-size: 100% 24%;
    background-position: 0 88%;
    color: inherit;
}

.mobile_only {
    display: none;
}

.m {
    display: none !important;
}

section {
  position:relative;
}
.section_inner {
  width: 100%;
  margin: 0vw auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}


.link{ }
.link a{
    display: inline-block;
    /* width: 100%; */
    position: relative;
    font-family: niveau-grotesk,sans-serif;
    font-weight: 700;
    line-height: normal;
    height: auto;
    font-size: 1.05vw;
    letter-spacing: 0.055vw;
    color: #FFF;
    /* background-color: #000000; */
}
.link a:hover{
    line-height: normal;
}
.link a span.text{
    display: block;
    width: 100%;
    padding: 1.39vw 3.0vw 1.56vw 3vw;
    background-color: #000000;
    /* color: #FFF; */
    text-align: center;
    /* font-size: 1.05vw; */
    /* letter-spacing: 0.055vw; */
    border-radius: 50px;
    position: relative;
    z-index: 1;
    height: auto;
}
.link a span.svg{
    width: 12.3vw;
    height: 12.3vw;
    display: block;
    position: absolute;
    top: -4.1vw;
    right: -4vw;
}
.link a span.svg svg{
    width: 100%;
    height: 100%;
}
.link a:hover span.text{
    background-color:#D643C6;
}
.link a:hover span.svg svg{
    animation: rotate-animation 10s infinite linear;
}
@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
  }
  50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 768px) {
body{font-size: 5.15vw;letter-spacing: 0.25vw;line-height: 1.745;}
h1,h2,h3,h4,h5,h6{ }
h1{font-size: 13vw;}
h2{font-size: 14.7vw;line-height: 0.98;}
h3{font-size: 12.8vw;letter-spacing: 0.13vw;line-height: 1.063;}
h4{ }
h5{font-size: 4.5vw;letter-spacing: 0.8vw;line-height: 1.43;}
h6{font-size: 3.5vw;letter-spacing: 0.77vw;}

a:hover{ }


input[type="submit"]{ }
input[type="submit"]::before{ }
.site_button:hover:before,
input[type="submit"]::before{ }

p{ }
p:last-child{ }

mark{ }

.mobile_only {
    display: block;
    /* width: 100%; */
}

.m {
    display: inline !important;
}
.d {
    display: none !important;
}
section{ }
.section_inner{ }


.link{ }
.link a{ }
.link a:hover{ }
.link a span.text{padding: 5.5vw 13.8vw 6vw 13.8vw;font-size: 4.05vw;letter-spacing: 0.055vw;}
.link a span.svg{display: none;}
.link a span.svg svg{ }
}



/* 
=======================================
  Site Header Section
=========================================*/
html{
  padding-top:0 !important;
}


/*
    Header
===========================*/
.header__container{
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    width: 100%;  
}
.header{
    font-size:0.625vw;
}
.header.sticky{
    position: fixed;
    /* top: 0vw; */
    /* left: 0vw; */
    width: 100%;
    z-index: 1;
}
.header.header--fixed{
    z-index: 9999999;
}
.header__content--desktop {
  padding: 1.9vw 38.93vw 1.8vw 2.3vw;
  border-bottom: 0px solid;
}
.header__block--logo a{
    margin-top: -0.5vw;
}
.link-list__link{
    padding-top: 0.6vw;
    position: relative;
    font-weight: 400;
    font-family: niveau-grotesk,sans-serif;
    letter-spacing: 0.19vw;
}
.header__content--desktop .link-list__link{
    margin-right: 1.96vw;
    /* margin-left: 2.6vw; */
    /* letter-spacing: 0.17vw; */
    
}
.header .header__block--menu a span {
    position: absolute;
    top: -2.71vw;
    height: 2.12vw;
    width: 100%;
    display: block;
    left: 0vw;
    opacity: 0;
}
.header .header__block--menu a span:after {
    content: " ";
    width: 3px;
    height: 100%;
    background-color: #000000;
    margin: 0px auto;
    display: block;
}
.header .header__block--menu a:hover span{opacity: 1;}
.header__content--desktop .link-list > :first-child{
    
}
.header__content--desktop .link-list > :last-child{
    margin-right: 0.3vw;
}


.header__block--social-icons{
}
.header__block--social-icons .social-icons{
    padding-top: 0.7vw;
}
.header__block--social-icons .social-icons
.social-icons__icons{}
.social-icons__icons a.social-icons__icon{}
.social-icons__icons a.social-icons__icon i{}
.social-icons__icon--lg{
    font-size: 1.97vw;
    margin-right: 1.45vw;
}


.header_img_mobile{
    display: none;
}
@media screen and (max-width: 768px){
    .header{
        position: fixed;
        width: 100%;
    }
    .header.sticky{
        position: fixed;
        width: 100%;
        z-index: 1;
    }
    main {
        padding-top: 0px !important;
    }
    
    .header__content--desktop {
        padding: 1.8vw 7.5vw 1.8vw 7.7vw;
        border-bottom: 0px solid;
        min-height: 15.5vw;
        display: flex;
    }
    .logo__image{
        padding-top: 2.4vw;
        width: 45vw;
    }
    .header{
        z-index: 999999999 !important;
    }
    .hamburger{
        width: 41px;
        height: 28px;
    }
    .hamburger__slices{
        
    }
    .hamburger--slice-2{
        top: 14px;
    }
    .hamburger--slice-3{
        top: 14px;
    }
    .hamburger--slice-4{
       top: 27px;
    }
    .header__content--mobile{
        padding-top: 4.2vw;
        padding-left: 9.7vw;
        padding-right: 28vw;
        padding-bottom: 0vw;
        max-height: 90vh;
        overflow: unset;
        position: relative;
    }
    .header__content--mobile .link-list__link{
        letter-spacing: 0.8vw;
        padding-top: 7vw;
        padding-bottom: 4.3vw;
        padding: 0.8vw 0vw 1.04vw 0vw !important;
        margin-bottom: 6vw !important;
    }
    .header__content--mobile .kcs_svg{
        width: 9vw;
        position: absolute;
        right: 11.5vw;
        bottom: 9.1vw;
        opacity: 0;
    }
    .header__content--mobile.active .kcs_svg{
        opacity: 1;
    }
    .header__content--mobile .kcs_svg svg{
      width:100%;
        height:auto;
    }
    .header__content--mobile .link-list__link:hover{
        background-color: rgb(0 0 0 / 0%);
    }
    
    
    .hamburger {
        display: block !important;
        position: absolute;
        top: 0vw;
        right: 0vw;
        width: 10vw;
        height: 100%;
        margin-top: 0vw;
        padding-left: 0vw;
        padding-right: 0vw;
        padding-top: 0vw;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .hamburger__slices {
        position: relative;
        width: 100%;
        height: 5vw;
    }
    .hamburger__slice {
        height: 2px;
    }
    .hamburger_svg {
        position: absolute;
        top: 0vw;
        right: 0vw;
        width: 38.2vw;
        z-index: -1;
    }
    .hamburger_svg svg{
        width: 100%;
        height: auto;
    }
    .hamburger.hidden--desktop .hamburger__slice.hamburger--slice-2 {
        width: 100%;
        right: 0px;
        top: 2.2vw;
    }
    .hamburger.hidden--desktop .hamburger__slice.hamburger--slice-3 {
        top: 2.2vw;
        right: 0vw;
    }
    .hamburger.hidden--desktop .hamburger__slice.hamburger--slice-4 {
        width: 100%;
        right: 0px;
        top: 4.6vw;
    }
    .header .header__block--menu a span {
        left: -10vw;
        top: 4.1vw;
        height: 2px;
    }
    .header .header__block--menu a span:after {
        width: 25px;
        height: 2px;
        margin: 0px;
    }
    
    .header_img_mobile{
        display: block;
        width: 100%;
        padding-top: 0vw;
        margin-top: 0vw;
        padding-left: 24.1vw;
        padding-bottom: 8vw;
        position: relative;
    }
    .header_img_mobile:before{
        background-color: #d8fc35;
        content:
        "";
        width: 161%;
        height: 87.5%;
        display: block;
        position: absolute;
        bottom: 0vw;
        left: -10vw;
    }
    .header_img_mobile span {
        width: 59vw;
        display: block;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        height: 74.7vw;
        /* margin-top: -10.1vw; */
        position: relative;
        z-index: 1;
    }
    
    .header__block--social-icons{position: absolute;z-index: 2;bottom: 1.5vw;left: 4.6vw;}
    .header__block--social-icons .social-icons{
        padding-top: 0.7vw;
    }
    .header__block--social-icons .social-icons
    .social-icons__icons{}
    .social-icons__icons a.social-icons__icon{}
    .social-icons__icons a.social-icons__icon i{}
    .social-icons__icon--lg{
        font-size: 9.7vw;
        margin-right: 1.45vw;
        display: block;
        width: 100%;
        margin: 0px !important;
        margin-top: 1.1vw !important;
    }
    .header__content--mobile .link-list__link:last-child {
        margin-bottom: 0vw !important;
    }
    .header__content--mobile:after{
        content:"";
        height: 100%;
        position: absolute;
        top: 98%;
        left: 0vw;
        width: 100%;
        background-color: #d8fc35;
        z-index: 6;
    }
    
    .hamburger.hamburger--opened .hamburger__slices .hamburger__slice {
        width: 85%;
    }
}



/**** section 1 ******/
.sa1{background-color: #F9F0FC;padding-left: 19vw;padding-right: 16vw;padding-top: 12.76vw;padding-bottom: 8vw; background-repeat: no-repeat;
    background-position: center;
    background-size: cover;}
.sa1 .section_inner{}

.sa1_left{
    position: absolute;
    top: 0vw;
    left: -19vw;
    width: 23.45vw;
    padding-top: 3.26vw;
}
.sa1_left img.sa1_img{}
.sa1_left img.sa1_img.desktop_only{}
.sa1_left img.sa1_img.mobile_only{}

.sa1_content{
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}
.sa1_content h1{
    font-size: 7.45vw;
    padding-left: 0.4vw;
    letter-spacing: -0.03vw;
    padding-right: 9vw;
    margin-bottom: 0vw;
    padding-bottom: 4.6vw;
    position: relative;
    z-index: 2;
}
.sa1_content h1 span{
    display: block;
}
.sa1_content h1 .s1_line_1{}
.sa1_content h1 .s1_line_2{
    padding-left: 6.6vw;
}
.sa1_content h1 .s1_line_3{
    padding-left: 13.1vw;
}
.sa1_content h5{
    padding-left: 23.1vw;
    padding-right: 1vw;
    margin-bottom: 0vw;
    padding-bottom: 4vw;
    position: relative;
    z-index: 2;
}
.sa1_content h5 br{}
.sa1_content h5 br.m{}

.sa1_right{
    position: absolute;
    top: -11.1vw;
    right: -14.1vw;
    width: 22.5vw;
}
.sa1_right img{}
.sa1_right img.sa1_img.desktop_only{}
.sa1_right img.sa1_img.mobile_only{}

@media (max-width: 768px){
    .sa1{padding-left: 0vw;padding-right: 0vw;padding-top: 40.3vw;padding-bottom: 8vw;}
    .sa1 .section_inner{}

    .sa1_left{
        position: relative;
        width: 52.4%;
        left: unset;
        padding-top: 9vw;
        padding-left: 4.6vw;
        padding-bottom: 4.6vw;
    }
    .sa1_left img{}
    .sa1_left img.sa1_img.desktop_only{
        display: none;
    }

    .sa1_content{
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
    }
    .sa1_content h1{
        padding-left: 9vw;
        font-size: 13vw;
        letter-spacing: 0.04vw;
        line-height: 1.01;
        width: 100%;
        /* order: 1; */
    }
    .sa1_content h1 .s1_line_1{}
    .sa1_content h1 .s1_line_2{
        padding-left: 6.9vw;
    }
    .sa1_content h1 .s1_line_3{
        padding-left: 5.8vw;
    }
    .sa1_content h5{
        width: 100%;
        padding-left: 9vw;
        text-align: center;
        padding-right: 8vw;
        padding-top: 7vw;
        padding-bottom: 3.5vw;
    }
    .sa1_content h5 br{}
    .sa1_content h5 br.m{}

    .sa1_right{
        position: relative;
        width: 47.6%;
        right: unset;
        top: unset;
        margin-top: -11.6vw;
        padding-bottom: 4.6vw;
    }
    .sa1_right img{}
    .sa1_right img.sa1_img.desktop_only{
        display: none;
    }
}



/**** section 2 ******/
.sa2{background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
.sa2 .section_inner{}

.sa2_left{
    width: 58%;
    position: relative;
}
.sa2_left .img1.desktop_only{
    width: 75%;
    display: block;
    position: absolute;
    top: 0vw;
    left: 0vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.sa2_left .img1.mobile_only{}
.sa2_left .img2{
    padding-left: 19.45vw;
    display: block;
    padding-right: 5.1vw;
    margin-top: -5.45vw;
    padding-bottom: 6.45vw;
    position: relative;
    z-index: 1;
}
.sa2_left .img2 img{}

.sa2_right{
    width: 42%;
    padding-left: 2.7vw;
    padding-right: 2.7vw;
    padding-top: 3.9vw;
    position: relative;
    padding-bottom: 2vw;
}
.sa2_right:before{
    content: "";
    width: 3px;
    display: block;
    height: 97.5%;
    position: absolute;
    top: -5.4vw;
    left: 0.3vw;
    background-color: #000;
    transition: all 5s ease;
    transition-delay: 1s;
}
.not_in_viewport .sa2_right:before{
    height: 0%;
}
.sa2_right article{
    padding-right: 5vw;
    padding-bottom: 3.04vw;
}
.sa2_right article p{}
.sa2_right article p br{}
.sa2_right article p br.m{}

.sa2_right h5{
    padding-right: 5vw;
    padding-bottom: 4.2vw;
    margin-bottom: 0vw;
}
.sa2_right h5 br{}
.sa2_right h5 br.m{}

@media (max-width: 768px){
    .sa2{ }
    .sa2 .section_inner{}

    .sa2_left{
        width: 100%;
    }
    .sa2_left .img1.desktop_only{
        display: none;
    }
    .sa2_left .img1.mobile_only{
        position: absolute;
        top: 0vw;
        left: 0vw;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
    }
    .sa2_left .img2{
        padding-left: 11.35vw;
        display: block;
        padding-right: 11.2vw;
        margin-top: 0vw;
        padding-bottom: 15.65vw;
        position: relative;
        z-index: 1;
        padding-top: 15.3vw;
    }
    .sa2_left .img2 img{}

    .sa2_right{
        width: 100%;
        padding-left: 10vw;
        padding-right: 7vw;
        padding-top: 13.8vw;
        padding-bottom: 3.1vw;
    }
    .sa2_right:before{
        content: "";
        display: none;
    }
    .sa2_right article{
        position: relative;
        padding-left: 8vw;
        padding-right: 0vw;
        padding-bottom: 0vw;
        margin-bottom: 10.87vw;
    }
    .sa2_right article:before {
        content: "";
        width: 3px;
        display: block;
        height: 91.2%;
        position: absolute;
        top: 3.5vw;
        left: 0.3vw;
        background-color: #000;
        transition: all 5s ease;
        transition-delay: 0.5s;
    }
    .sa2_right article:last-child:before{
       /* transition-delay: 3s; */
    }
    .sa2_right article.not_in_viewport:before{
        height: 0%;
    }
    .sa2_right article p{}
    .sa2_right article p br{}
    .sa2_right article p br.m{}

    .sa2_right h5{
        padding-right: 0vw;
        padding-bottom: 4.2vw;
        margin-bottom: 0vw;
        margin-left: -0.5vw;
        letter-spacing: 0.99vw;
        line-height: 1.5;
        padding-bottom: 11.1vw;
    }
    .sa2_right h5 br{}
    .sa2_right h5 br.m{}
}



/**** section 3 ******/
.sa3{padding-top: 4.95vw;padding-bottom: 4.77vw;background-color: #D8FD35; background-repeat: no-repeat; background-position: center; background-size: cover;}
.sa3 .section_inner{}

.sa3_title{
    /* white-space: nowrap; */
    /* transition: all 1s ease; */
    display: block;
}
.sa3_title ul{
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    padding-top: 3px;
}
.sa3_title li{
    margin: 0px;
    list-style: none;
    font-size: 4.48vw;
    line-height: 1;
    color: #000000;
    letter-spacing: -0.13vw;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    padding-left: 1.1vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
   animation: scrollText 30s infinite linear;
}
@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 0rem)); }
}

.sa3_stats{
    width: 100%;
    display: block;
    padding-left: 6.02vw;
    padding-right: 6.02vw;
    padding-top: 4.15vw;
}
.sa3_stats_in{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    background-color: #FFF;
    padding-top: 3.67vw;
    justify-content: center;
    padding-bottom: 3.5vw;
}
.sa3_col{
    width: 25%;
    padding-left: 6.094vw;
    padding-right: 6.094vw;
    padding-top: 2.07vw;
    text-align: center;
    padding-bottom: 1.3vw;
    position: relative;
}
.sa3_col:before{
    content:"";
    position: absolute;
    top: -0.3vw;
    right: 0.5vw;
    width: 2px;
    height: 105%;
    background-color: #000;
    transform: rotate(-20deg);
}
.sa3_col:nth-child(2):before{
    right: -0.1vw;
}
.sa3_col:nth-child(3):before{
    right: -0.7vw;
}
.sa3_col:last-child:before{
    display:none;
}
.sa3_col h6{
    width: 100%;
    display: block;
    font-size: 0.97vw;
    margin-bottom: 0.3vw;
    padding-top: 0.1vw;
    line-height: 1.4;
    letter-spacing: 0.21vw;
    padding-left: 0.4vw;
}
.sa3_col h6 br{}
.sa3_col .number{
    width: 100%;
    display: block;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 2.9vw;
    line-height: 1.1;
    padding-left: 0.2vw;
    letter-spacing: -0.08vw;
}

@media (max-width: 768px){
    .sa3{padding-top: 15.95vw;padding-bottom: 13vw;}
    .sa3 .section_inner{}

    .sa3_title{}
    .sa3_title ul{}
    .sa3_title li{
        font-size: 12.48vw;
        padding-left: 4.1vw;
    }

    .sa3_stats{
        padding-left: 10.6vw;
        padding-right: 10.6vw;
        padding-top: 12.3vw;
    }
    .sa3_stats_in{
        padding-top: 20.8vw;
        padding-bottom: 3.5vw;
    }
    .sa3_col{
        width: 100%;
        padding-top: 0vw;
        padding-bottom: 35vw;
    }

    .sa3_col h6{
        font-size: 3.12vw;
        margin-bottom: 2vw;
        padding-top: 2vw;
        letter-spacing: 0.8vw;
    }
    .sa3_col h6 br{}
    .sa3_col .number{
        font-size: 9.6vw;
        letter-spacing: -0.2vw;
        padding-right: 0.7vw;
    }
.sa3_col:nth-child(2) h6{
    padding-top: 0vw;
    margin-top: -0.8vw;
    line-height: 1.45;
    padding-right: 1vw;
}
.sa3_col:nth-child(3) h6 {
    padding-top: 0vw;
    margin-top: 0vw;
    line-height: 1.45;
    padding-right: 1vw;
}
.sa3_col:last-child h6 {
    padding-top: 0.8vw;
    margin-top: 0vw;
    line-height: 1.45;
    padding-right: 0vw;
}

.sa3_col:before{
    transform: rotate(19.6deg);
    width: 64%;
    height: 2px;
    bottom: 18.6vw;
    top: unset;
    right: 14.3vw !important;
}
.sa3_col:nth-child(2):before{
    /* left: -0.1vw; */
}
.sa3_col:nth-child(3):before{
    right: -0.7vw;
}
.sa3_col:last-child:before{
    display:none;
}
.sa3_col:last-child{
    padding-bottom: 13vw;
}
}



/**** section 4 ******/
.sa4{background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
.sa4 .section_inner{}

.sa4_left{
    background-color: #000000;
    width: 73.8%;
    padding-top: 7.12vw;
    padding-bottom: 5.1vw;
    padding-left: 6vw;
    padding-right: 18vw;
}
.sa4_left h3{
    color: #FFF;
    line-height: 1.1;
    margin-bottom: 0px;
    padding-bottom: 3.8vw;
}
.sa4_left article{
    margin-left: 3.97vw;
    color: #FFF;
    padding-left: 2vw;
    padding-top: 0vw;
    position: relative;
    padding-bottom: 0vw;
}
.sa4_left article:before{
    content: "";
    background-color:#D643C6;
    position: absolute;
    top: 0.4vw;
    left: 0vw;
    height: 96%;
    width: 3px;
    transition: all 5s ease;
    transition-delay: 0.5s;
}
.sa4_left article.not_in_viewport:before{
    height: 0%;
}
.sa4_left article p{
    margin: 0px;
    padding: 0px;
    padding-bottom: 1.83vw;
}
.sa4_left article p:last-child{
    padding-bottom: 0vw;
}
.sa4_left article ul{
    margin: 0px;
    padding: 0px;
}
.sa4_left article ul li{
    list-style: none;
    padding-bottom: 1.6vw;
}
.sa4_left article ul li:before{}
.sa4_left article ul li:last-child{
    padding-bottom: 0vw;
}

.sa4_right{
    width: 39.94%;
    padding-top: 3.3vw;
    padding-right: 3.94vw;
    padding-bottom: 4.1vw;
    margin-left: -13.76%;
}
.sa4_img_right.desktop_only{
} 



@media (max-width: 768px){
    .sa4{ }
    .sa4 .section_inner{}

    .sa4_left{
        width: 100%;
        padding-left: 6vw;
        padding-top: 14.6vw;
        padding-right: 6vw;
        padding-bottom: 10vw;
    }
    .sa4_left h3{
        text-align: center;
        letter-spacing: 0.43vw;
        padding-bottom: 14vw;
    }
    .sa4_left h3 br.m{}
    .sa4_left article{
        padding-left: 8vw;
    }
    .sa4_left article:before{
        height: 98%;
        top: 1.2vw;
    }
    .sa4_left article ul{}
    .sa4_left article ul li{
        margin-bottom: 0vw;
        padding-bottom: 9vw;
    }

    .sa4_right{
        width: 100%;
        padding-top: 0vw;
        padding-right: 0vw;
        padding-bottom: 0vw;
        margin-left: 0%;
    }
    .sa4_img_right.desktop_only{
        display: none;
    } 
}



/**** section 5 ******/
.sa5 {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 7.9vw;
    padding-left: 9.5vw;
    padding-right: 7.8vw;
    padding-bottom: 6.56vw;
}
.sa5 .section_inner{
    background-color: #F9F0FC;
}

.sa5_left{
    width: 37%;
    padding-right: 0.3vw;
}
.sa5_img_right.desktop_only{
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: block;
    height: 100%;
}

.sa5_right{
    width: 63%;
    padding-left: 7.2vw;
    padding-top: 5.97vw;
    padding-right: 7.3vw;
    padding-bottom: 6.1vw;
}
.sa5_right h3{
    margin-left: -3.9vw;
    padding-bottom: 4.24vw;
    margin-bottom: 0vw;
}
.sa5_right article{
    padding-left: 2.6vw;
    padding-top: 0vw;
    position: relative;
    padding-bottom: 0vw;
}
.sa5_right article:before {
    content: "";
    background-color: #000000;
    position: absolute;
    top: 0.4vw;
    left: 0vw;
    height: 96%;
    width: 3px;
    transition: all 5s ease;
    transition-delay: 0.5s;
}
.sa5_right article.not_in_viewport:before{
    height: 0%;
}
.sa5_right article p{
    margin: 0px;
    padding: 0px;
    padding-bottom: 1.83vw;
}
.sa5_right article p:last-child{
    padding-bottom: 0vw;
}
.sa5_right article ul{
    margin: 0px;
    padding: 0px;
}
.sa5_right article ul li{
    list-style: none;
    padding-bottom: 1.6vw;
}
.sa5_right article ul li:before{}
.sa5_right article ul li:last-child {
    padding-bottom: 0vw;
}

@media (max-width: 768px){
    .sa5 {
        padding-top: 12.2vw;
        padding-left: 7.5vw;
        padding-right: 7.3vw;
        padding-bottom: 11.1vw;
        background-image: url(sa5_2m.jpg);
    }
    .sa5 .section_inner{}

    .sa5_left{
        width: 100%;
        padding-right: 0vw;
        order: 2;
    }
    .sa5_img_right.desktop_only{
        display: none;
    }
    .sa5_img_right.mobile_only{
        height: 97.5vw;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
    }

    .sa5_right{
        width: 100%;
        padding-left: 7.2vw;
        padding-top: 11.2vw;
        padding-right: 6.3vw;
        padding-bottom: 10.7vw;
    }
    .sa5_right h3{
        margin-left: 0vw;
        text-align: center;
        padding-bottom: 10vw;
    }
    .sa5_right article{
        padding-left: 9.9vw;
        padding-top: 0vw;
        position: relative;
        padding-bottom: 0vw;
    }
    .sa5_right article:before{
        top: 3.4vw;
        left: 2vw;
        height: 97%;
    }
    .sa5_right article ul{}
    .sa5_right article ul li{
        margin-bottom: 0vw;
        padding-bottom: 8.9vw;
    }
}






/**** section 13 ******/
.s13{
    background-color: #D8FD35;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.s13 .section_inner{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.s13_left{
    width: 25%;
    padding-top: 5.7vw;
    padding-left: 4vw;
    padding-right: 4.455vw;
}
.s13_left span{
    width: 100%;
    display: block;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.s13_left span img{ }

.s13_center{
    width: 52%;
}
.s13_center h4{
    padding-top: 7.54vw;
    padding-left: 1.87vw;
    font-size: 4.7vw;
    letter-spacing: -0.153vw;
    margin-bottom: 0vw;
    padding-bottom: 10.2vw;
}

.s13_right{
    width: 23%;
    padding-left: 2.8vw;
}
.s13_right span.img{
    width: 100%;
    display: block;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 8.5vw;
}
.s13_right span img{ }

.s13_right .link{
    padding-left: 0.5vw;
    padding-bottom: 7vw;
    padding-right: 5vw;
}
.s13_right .link a{
}
.s13_right .link a span.text{
    height: auto;
    padding-right: 2.4vw;
    padding-left: 2.76vw;
}
.s13_right .link a span.svg{}
.s13_right .link a span.svg svg{}

.s13_image{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
}
.s13_image span.img1{
    width: 20.25vw;
    display: block;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 2.01vw;
    margin-top: -4.3vw;
}
.s13_image span.img1 img{ }

.s13_image span.img2{
    width: 26.12vw;
    display: block;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 2.76vw;
    margin-top: -7.3vw;
}
.s13_image span.img2 img{}


@media (max-width: 768px){
.s13{padding-bottom: 14.2vw;}
.s13 .section_inner{ }

.s13_left{/* display: block; */order: 2;width: 41%;padding-top: 5.8vw;padding-left: 0vw;padding-right: 4.455vw;}
.s13_left span{height: 37.98vw;}
.s13_left span img{ }

.s13_center{width: 100%;order: 1;}
.s13_center h4{text-align: center;font-size: 12.8vw;padding-top: 12.7vw;padding-left: 3.87vw;padding-right: 8vw;padding-bottom: 10.2vw;}

.s13_right{order: 3;width: 59%;padding-left: 0.8vw;}
.s13_right span.img{/* display: none; */height: 59.56vw;margin-bottom: -0.3vw;}
.s13_right span img{ }

.s13_right .link{margin-left: -24.5vw;}
.s13_right .link a{}
.s13_right .link a span.text{
    padding-right: 10.4vw;
    padding-left: 10.4vw;
}
.s13_right .link a span.svg{
    display: block;
    width: 41.3vw;
    height: 37.3vw;
    top: -11.1vw;
    right: -16vw;
}
.s13_right .link a span.svg svg{}

.s13_image{
    display: none;
}
.s13_image span.img1{margin-left: 0vw;width: 36.7vw;height: 37.65vw;margin-top: 6vw;}
.s13_image span.img1 img{ }

.s13_image span.img2{ }
.s13_image span.img2 img{ }
}



/**** Footer ******/
footer{background-repeat: no-repeat;
    background-position: center;
    background-size: cover;}

.footer_top{
    background-color: #000000;
    padding-top: 4.5vw;
    padding-left: 6vw;
    padding-right: 6vw;
    padding-bottom: 4.45vw;
}
.footer_top .section_inner{}

.footer_left{
    width: 42.9%;
}
.footer_left h4{
    color: #FFFFFF;
    margin: 0px;
    padding-left: 2.3vw;
    padding-top: 2.23vw;
    font-size: 4.67vw;
    letter-spacing: -0.134vw;
    padding-right: 3vw;
}
.footer_left article{
    color: #FFFFFF;
    padding-top: 1.86vw;
    padding-left: 2.7vw;
    letter-spacing: -0.004vw;
    padding-right: 5.2vw;
    text-align: center;
    line-height: 1.38;
    padding-bottom: 2.6vw;
}
.footer_left article p{}
.footer_left article p br{}

.footer_right{
    width: 57.1%;
    border-left: 3px solid rgb(255 255 255 / 0%);
    position: relative;
}
.footer_right:before{
    content:
    "";
    border-left: 3px solid;
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0vw;
    left: -3px;
    transition: all 5s ease;
    transition-delay: 0.5s;
}
.not_in_viewport .footer_right:before{
    height: 0%;
}
.footer_form{}
.footer_form form{}

.footer_formin{
    padding-left: 4.9vw;
    padding-right: 18.2vw;
    padding-top: 3.1vw;
    padding-bottom: 2.76vw;
}
.footer_formin .form-group{
    margin: 0px;
    padding-bottom: 0.75vw;
}
.footer_formin .form-group ul{}
.footer_formin .form-group input{
    font-size: 1.15vw;
    background-color: transparent;
    border-radius: 0px;
    border: 0vw;
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding: 0px;
    font-family: niveau-grotesk,sans-serif;
    font-weight: 400;
    letter-spacing: 0.223vw;
    padding-bottom: 1.1vw;
}

.footer_formin .form-group input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #FFFFFF;
}
.footer_formin .form-group input::-moz-placeholder { /* Firefox 19+ */
  color: #FFFFFF;
}
.footer_formin .form-group input:-ms-input-placeholder { /* IE 10+ */
  color: #FFFFFF;
}
.footer_formin .form-group input:-moz-placeholder { /* Firefox 18- */
  color: #FFFFFF;
}

.footer_bottom{
    padding-top: 1.97vw;
    padding-bottom: 1.9vw;
}
.footer_bottom .section_inner{
    color: #191414;
    text-align: center;
    display: block;
    font-family: niveau-grotesk,sans-serif;
    font-weight: 400;
    letter-spacing: 0.23vw;
    font-size: 1vw;
}

.footer_bottom span{}
.footer_bottom a{
    color: #191414;
    text-decoration: underline;
}

.footer_form .submit-field{
    position: absolute;
    right: 0.1vw;
    bottom: 4.3vw;
}
.footer_form .submit-field button{
    display: inline-block;
    /* width: 100%; */
    position: relative;
    font-family: niveau-grotesk,sans-serif;
    font-weight: 700;
    line-height: normal;
    border: 2px solid #EEF7FB;
    margin: 0px;
    padding: 1.33vw 2.9vw 1.56vw 2.8vw;
    background-color: #000000;
    color: #FFF;
    text-align: center;
    font-size: 1.05vw;
    letter-spacing: 0.055vw;
    border-radius: 50px;
    height: 4.12vw;
}




@media (max-width: 768px){
footer{}

.footer_top{
    padding-top: 10.5vw;
    padding-left: 7.5vw;
    padding-right: 7.5vw;
    padding-bottom: 4.5vw;
}
.footer_top .section_inner{}

.footer_left{
    width: 100%;
}
.footer_left h4{
    padding-left: 2.3vw;
    padding-top: 3.7vw;
    font-size: 12.5vw;
    letter-spacing: -0.134vw;
    padding-right: 2.3vw;
    text-align: center;
}
.footer_left article{
    padding-top: 5.9vw;
    padding-left: 3.7vw;
    letter-spacing: -0.004vw;
    padding-right: 3.7vw;
    line-height: 1.6;
    padding-bottom: 7.45vw;
}
.footer_left article p{}
.footer_left article p br{}

.footer_right{
    width: 100%;
    border-top: 3px solid #FFF;
    border-left: 0vw;
}
.footer_right:before{
    display:none;
}
.footer_form{}
.footer_form form{}

.footer_formin{
    padding-left: 1.7vw;
    padding-right: 1.7vw;
    padding-top: 12.5vw;
    padding-bottom: 9.76vw;
}
.footer_formin .form-group{
    padding-bottom: 7.25vw;
}
.footer_formin .form-group ul{
    margin: 0px;
}
.footer_formin .form-group input{
    font-size: 4.2vw;
    padding-left: 0vw;
    letter-spacing: 1.12vw;
    padding-bottom: 6.6vw;
}

.footer_bottom{
    padding-top: 4.6vw;
    padding-right: 3.3vw;
    padding-bottom: 5.3vw;
    padding-left: 3.3vw;
}
.footer_bottom .section_inner{
    letter-spacing: 0.698vw;
    font-size: 3.3vw;
}

.footer_bottom span{}
.footer_bottom a{}

.footer_form .submit-field{
    position: relative;
    text-align: center;
    right: 0vw;
    bottom: 0vw;
    padding-top: 7.9vw;
}
.footer_form .submit-field button{
    padding: 5.1vw 13.5vw 5.5vw 13.5vw;
    font-size: 4.05vw;
    letter-spacing: 0.055vw;
    height: auto;
}
}