/*!
Theme Name: coin
Theme URI:
Author: andyUA
Author URI:
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: coin
Tags: custom

*/


/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

html.lity-active {
    overflow: hidden
}

body {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #1c1c1c;
    background-color: #fafafa;
}

a {
    color: #1c1c1c
}

a:hover {
    color: #1c1c1c
}

a.current {
    color: #00a768;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 120%
}

h2 {
    font-weight: 700;
    font-size: 25px;
    line-height: 120%
}

h2.thin {
    font-weight: 200;
    font-size: 20px;
    line-height: 120%
}

h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 150%;
}

h4 {
    font-weight: 200;
    font-size: 20px;
    line-height: 120%
}


.theredline {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    background: url(img/redline_v1.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
}

div {
    box-sizing: border-box;
}

.lgbg {
    background-color: #fbfbfb
}

button.btn {
    background: none;
}

.btn, button.btn {
    border: 1px solid #00a768;
    background-color: #00a768;
    padding: 10px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
}

.btn:hover {
    background-color: #fff;
    color: #00a768;
}

.btn.inverse {
    border: 1px solid #00a7680;
    background-color: #fff;
    color: #00a768;
    padding: 10px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn.inverse:hover {
    color: #fff;
    background-color: #00a768;
}

.btn a {
    color: #fff
}

.btn:hover a {
    color: #00a768;
}

.btn.inverse a {
    color: #00a768;
}

.btn.inverse:hover a {
    color: #fff;
}

.btn.menu-item a {
    font-weight: 500;
}

.btn.menu-item {
    background: #970412;
    border: 2px solid #970412;
}

.btn.menu-item:hover {
    color: #970412;
    background: #fff;
    border: 2px solid #970412;
}

.btn.menu-item:hover a {
    color: #970412;
}

.imgholder {
    width: 100%;
    height: 640px;
    background-image: url(img/fuji.webp);
    background-repeat: no-repeat;
    background-position: center
}

/** Sticky header **/
:root {
    --content-width: 1140px;
    --header-outer-height: 110px;
    --header-inner-height: 60px;
    --header-height-difference: calc(var(--header-outer-height) - var(--header-inner-height));
}


.green {
    color: #00a768
}

.greenbg {
    background-color: #00a768
}

.red {
    color: #970412
}

.redbg {
    background-color: #970412
}


.header-wrapper {
    width: 100%;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
}

.header-outer {
    height: var(--header-outer-height);
    position: sticky;
    top: calc(var(--header-height-difference) * -1); /* Multiply by -1 to get a negative value */
    display: flex;
    align-items: center;
    z-index: 10;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.header-inner {
    height: var(--header-inner-height);
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sticky delta */
.site-branding img {
    height: 50px;
    width: auto;
}

.header-navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Nav style and hover animation */
.header-navigation a, .header-navigation button {
    margin-left: 1rem;
    position: relative;
}

.header-navigation a {
    font-size: 1.125rem;
    text-decoration: none;
    color: #000;
}

.header-navigation a:hover:after {
    transform: scalex(1);
}

.header-navigation a:after {
    transition: 0.25s ease;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentcolor;
    transform: scalex(0);
    position: absolute;
    bottom: -2px;
    left: 0;
}

/*** END sticky header **/


/* Wrappers setup */
.wrapper, .wrapper.full .wrapper {
    display: block;
    position: relative;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 50px 0;
}

.wrapper.full {
    max-width: 100%;
}

.wrapper.full .wrapper {
    padding: 0;
}

@media all and ( max-width: 1180px) {
    .wrapper, .header-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wrapper.full {
        padding-left: 0px;
        padding-right: 0px;
    }

}


/*--------------------------------------------------------------
Navigation
--------------------------------------------- */

.main-navigation li {
    padding: 10px
}

.main-navigation li:first-child {
    padding-left: 0px
}

.main-navigation li.btn {
    margin-left: 30px
}

.main-navigation .sub-menu {
    padding: 10px;
    background: #fff;
    display: block;
    width: auto;
    min-width: 100px;
}

.main-navigation .sub-menu li {
    display: block;
    width: 100%;
}

.main-navigation .sub-menu li:first-child {
    padding-left: 10px
}

.main-navigation li a {
    transition: color 0.25s
}

.main-navigation li a:hover {
    color: #00a768
}

.main-navigation li.current-menu-item a {
    color: #00a768;
}

.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
}


.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

.menu-item-has-children:after {
    content: "\25BA";
    display: block;
    color: #970412;
    font-family: Arial, sans-serif;
    transform: rotate(90deg);
    position: absolute;
    right: -3px;
    top: 15px;
    font-size: 10px;
}

.menu-item-has-children:hover:after {
    color: #1c1c1c;
    transform: rotate(-90deg);
}

@media screen and (min-width: 1025px) {

    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
    }

}

@media screen and (max-width: 1024px) {
    .menu-main-menu-container {
        background: #fff;
        width: 100%;
        position: absolute;
        left: 0;
        top: 85px;
        z-index: 99;
        padding-left: 25px;
    }

    .menu-main-menu-container li {
        padding-left: 0px;
    }

    .main-navigation .sub-menu li:first-child {
        padding-left: 0px;
    }

    .menu-main-menu-container li.btn {
        padding: 10px;
        margin-left: 0;
        display: inline-block;
        margin-top: 20px;
    }

}


/* Animation
--------------------------------------------- */


@keyframes scroll {
    0% {

        transform: translate(0, 0);

    }

    100% {

        transform: translate(-66.6%, 0);

    }

}

@keyframes coast {
    0% {

        transform: translate(0, 0);

    }

    100% {

        transform: translate(-66.6%, 0);

    }

}


@keyframes sun {
    0% {

        transform: translate(0, 0);

    }

    66% {

        transform: translate(0, 0);

    }


    100% {

        transform: translate(0, -220%);

    }

}


.hero {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero .wrapper {
    z-index: 8;
    margin: 0 auto;
    color: #fff;
}

.hero h2 {
    width: 50%;
    padding-right: 30px;
    margin-top: 20px;
    font-size: 28px;
    line-height: 150%
}

.hero h2.thin {
    margin-top: 20px;
    font-size: 20px;
}

.newlogo {
    border-radius: 5px;
    margin-top: 40px;
    width: 400px;
    height: auto;
}

.lp2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 5;
    background-image: url(img/bigred.svg);
    background-repeat: no-repeat;
    background-size: 1783px;
    background-position: top right;
}

.sakura {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 6;
    background-image: url(img/sakura.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: 700px;
    background-position: 0px -150px;
    opacity: 0.15;
}


.marquee, .marquee2 {

    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    border-bottom: 2px solid #970412;
    height: 300px;
    position: relative;
}

.marquee2 {
    border-bottom: 0;
    overflow: visible;
    height: 100px !important;
}

.marqueewrap {
    position: absolute;
    height: 700px;
    width: 60%;
    right: 0;
    top: 0;
    overflow: visible;
}


.marquee .mainplane {
    display: inline-block;
    height: 300px;
    width: auto;
    animation: scroll 60s infinite linear;
    margin-top: 4px;
    padding-left: 0%;
    margin-left: -400px;
}


.marquee .sunny {
    display: block;
    height: 250px;
    width: auto;
    padding-left: 50%;
    animation: sun 60s infinite linear;
    position: absolute;
    z-index: -1;

}

.ship {
    display: block;
    height: 160px;
    width: auto;
    padding-left: 25%;
}

.marquee2 .coast1 {
    display: inline-block;
    height: auto;
    width: 300%;
    position: absolute;
    left: 0;
    animation: coast 60s infinite linear;

}


.ocean {
    height: 5%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #015871;
}


@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%, 100% {
        transform: translate3d(0, -15px, 0);
    }
    50% {
        transform: translate3d(0, 5px, 0);
    }
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
#ourservices {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

#ourservices .slick-arrow {
    position: absolute;
    top: calc(50% + 20px);
    left: auto;
    right:0;
    bottom: auto;
    text-indent: -10000px;
    border: 1px solid #00a768;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    transform: rotate(180deg);
}

#ourservices .slick-arrow.slick-prev {
    position: absolute;
    left: 0;
    right: auto;

}

#ourservices h2 {
    margin: 0 auto 20px;
}

.services-slider.slick-slider {
    overflow: hidden;
}

.slidertopper{
    margin:0 10px;
    padding:10px;
    color:#fff;
    background-color: rgba(151,4,18,0.8);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.broundblock h3{display:none}

.serviceslide {
    width: 45%;
    height: 400px;
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
}
.broundblock{
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    margin:-10px -10px 30px;
    padding:10px 20px 50px;
}
.broundblock a{
color:#fff;
    font-weight: bold;
    text-decoration: none;
}

.serviceinner {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    align-content: stretch;
    flex-direction: column;
    padding: 10px;
    color: #fff;
    overflow: hidden;
    height:100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.focusafter{background-color:#fff}

.redline {
    top: 296px;
    width: 1440px;
    left: calc(50% - 720px);
    position: absolute;
    height: 0;
    background-image: url(img/redline.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}

.flexy-space {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn.centred {
    margin: 20px auto;
}

section {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box
}

.up {
    text-transform: uppercase
}

.focus h4 {
    text-transform: uppercase
}

.focus h3 {
    text-transform: uppercase
}

.focus h2 {
    max-width: 900px;
    margin: 60px auto 100px;
    font-size: 50px;
}

.focustop {
    background-image: url(img/bridge2.svg);
    background-repeat: repeat-x;
    text-align: center;
    background-position: center bottom;
}

.focusbottom {
    position: relative;
}

.focusbottom .wrapper {
    background-image: url(img/globe.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 200px;
}

.focusafter {
    width: 100%;
    height: 200px;
    margin-top: -2px;
}

.focusbottom h3 {
    color: #fff;
    text-align: left;
    max-width: 800px;
    margin: 50px auto 0;
}


.bigcard {
    width: 100%;
    height: auto;
    position: relative;
    margin: 25px 0;
    padding: 70px;
    border: 1px solid #970412;
    border-radius: 10px;
    background: #fff
}

.bigcard h4 {
    font-weight: 600;
    margin-top: 0;
}

.bigcard ul {
    padding-left: 1rem;
}

.bigcard ul li {
    line-height: 150%;
    font-size: 20px;
    margin-bottom: 15px;
}

.bigcard a.btn {
    margin-top: 20px;
    display: inline-block;
}

.flexy-space.top {
    align-items: flex-start;
}

#process {
    padding-bottom: 60px;
}

#process h2 {
    text-align: center;
}

#process .threecard {
    cursor: pointer;
}

.threecard {
    width: 100%;
    max-width: 360px;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.25s;
    background: #e5e4e4;
    min-height: 180px;
}

.threecard h4 {
    font-weight: 700;
}

.cardnumber {
    width: 33px;
    height: 12px;
    padding: 43px 0 0;
    font-size: 189px;
    line-height: 20px;
    border-radius: 100%;
    text-align: center;
    display: block;
    margin: 10px;
    font-family: Arial;
    font-weight: 900;
    color: #fff;
}

#process .threecard .description {
    height: 0;
    width: 100%;
    overflow: hidden;
    transition: all 0.25s
}

#process .threecard:hover h4 {
    margin-top: 0;
}

#process .threecard:hover {
    background: #00a768;
    color: #fff !important
}

#process .threecard:hover .cardnumber {
    border: 1px solid #fff;
    display: none;
}

#process .threecard:hover .description {
    max-height: 200px;
    height: auto;
}


#tools .flexy-space {
    align-items: stretch;
}

#tools .bigcard {
    width: 48%;
}


#events {
    background: #fff;
    padding: 60px 0;
}

#events h2 {
    text-align: center;
}

.duocard {
    width: 47%;
    background: #fff;
    border-radius: 8px;
}

.show1 .duocard {
    width: 100%;
    display: flex;
    justify-content: space-between
}

.show1 .duocard .event_illustration, .show1 .duocard .event_description {
    width: 47%
}

.show1 .duocard:nth-child(2),
.show1 .duocard:nth-child(3) {
    display: none
}

.show2 .duocard {
    width: 47%
}

.show2 .duocard:nth-child(3) {
    display: none
}

.show3 .duocard {
    width: 30%
}

.show3 .duocard .event_illustration {
    height: 215px;
}


.event_illustration {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#stories {
    padding: 60px 0;
    text-align: center;
}

#stories h2 {
    text-align: center;
}

#stories .threecard {
    background-color: #fff;
    text-align: left;
    min-height: 496px;
    position: relative;
}

#stories .readmore {
    position: absolute;
    bottom: 20px;
}

.story_illustration {
    width: 100%;
    height: 220px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


#geo {
    margin-top: 60px;
}

#geo h2 {
    text-align: center;
}

#geo .wrapper {
    position: relative;
}

.tc {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#geo .map {
    width: 100%;
    height: 700px;
    position: absolute;
    background-image: url(img/map.png);
    top: 70px;
    z-index: -1;
}

#geo .activezone1 {
    width: 300px;
    height: 134px;
    position: absolute;
    top: 193px;
    left: 28%;
    z-index: 42;
    border-radius: 30px;
    cursor: pointer;
}

#geo .activezone1:hover ~ .producers {

    opacity: 1;
}

#geo .activezone2 {
    width: 331px;
    height: 193px;
    position: absolute;
    top: 328px;
    left: 48%;
    z-index: 42;
    border-radius: 30px;
    cursor: pointer;
}

#geo .activezone2:hover ~ .importers {

    opacity: 1;
}


#geo .producers {
    max-width: 300px;
    opacity: 0;
    transition: opacity 0.5s ease
}

#geo .producers .twocol {
    columns: 2;
}

#geo .importers {
    max-width: 400px;
    text-align: right;
    opacity: 0;
    transition: opacity 0.5s ease
}

#geo h5 {
    margin-top: 0;
}

.point6, .point7 {
    color: red;
    font-size: 20px;
    position: absolute;
    z-index: 5;
    left: 37%;
    top: 34%;
    width: 10px;
    height: 10px;
}

.point7 {
    left: 52%;
    top: 50%
}

.ropecontainer {
    position: relative;
    width: 100%;
    height: 100%;
}


.greendiamond {
    background-color: #00a768;
    color: #fff;
    text-align: center;
    margin-top: 77px;
    margin-bottom: 77px;
}

.greendiamond:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50vw 77px 50vw;
    border-color: transparent transparent #00a768 transparent;
    position: absolute;
    top: -77px;
}

.greendiamond:after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 77px 50vw 0 50vw;
    border-color: #00a768 transparent transparent transparent;

    position: absolute;
    bottom: -77px;
}


.greendiamond#mission {
    margin-top: 180px;
}


.mission-text {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    line-height: 2rem;
    position: relative;
}

.mission-text .bamboo {
    position: absolute;
    right: -432px;
    height: 150%;
    width: calc(100% - 50px);
    background-image: url(img/bamboo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: -99px;
    z-index: 6;
    opacity: 0.15;
}


#whoweare {
    text-align: center;
    margin-top: 160px;

    background-image: url(img/hwsymbol.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    padding-top: 20px;
}

#whoweare h2 {
    margin-top: 40px;
}

#whoweare h3 {
    font-size: 22px;
    font-weight: 300
}

#whoweare h3 strong {
    font-size: 22px;
    font-weight: 600
}

#whoweare h4 {
    font-size: 20px;
    font-weight: 300
}

#whoweare .threecard {
    background: #fff;
    color: #00a768;
    cursor: default;
    min-height: 484px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #970412;
}

#whoweare .threecard:hover {
    background: #00a768;
    color: #fff;
}

#whoweare .threecard h4 {
    margin-bottom: 0;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

#whoweare .threecard .bignumber {
    font-size: 150px;
    font-weight: 700;
    line-height: 100%;
}

#whoweare .threecard .description {
    font-size: 16px;
    font-weight: 200;
    line-height: 28px;
    text-transform: uppercase;
    margin-top: 30px;
}

#contact-cta {
    margin-top: 160px;
}

#contact-cta h2 {
    margin-top: 0px;
}

.wrappermin {
    max-width: 400px;
    width: 100%;
    margin: 40px auto;
    min-height: 150px;
    padding: 10px 0;
}

.cta-text {
    margin: 40px auto;
}

#supporters {
    text-align: center;
    margin-top: 160px;
}

.logo-slider {
    margin-bottom: 160px;
}

.logo-slider img {
    display: block;
}

.logo-slider .logoslide {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    width: 300px;
    height: 70px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.wrapper-big {
    width: 100%;
    max-width: calc(100% - 100px);
    margin: 60px auto;
}


.slick-arrow {
    position: absolute;
    bottom: -100px;
    text-indent: -10000px;
    border: 1px solid #00a768;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.slick-arrow:hover {
    background-color: #fff;
    cursor: pointer;
}

.slick-arrow.slick-next {
    left: calc(50% - 100px);
    background-image: url(img/arr-l.svg);
}

.slick-arrow.slick-prev {
    right: calc(50% - 100px);
    background-image: url(img/arr-r.svg);
}


#insights {
    padding: 60px 0;
    background-color: #fafafa
}

#insights .wrapper.flexy-space.top {
    align-items: stretch;
}

#insights .threecard {
    background-color: #fafafa;
    text-align: left;
    position: relative;
    padding-bottom: 60px;
}

#insights .readmore {
    position: absolute;
    bottom: 20px;
}

#insights h2 {
    text-align: center;
}

#insights .btn.centred {
    margin: 20px auto;
    display: block;
    width: auto;
    max-width: 240px;
    text-align: center;
}


.social {
    width: 100%;
    height: 75px;
    text-align: center;
    background: #fff;
    padding: 25px 0;
}

.social a {
    display: inline-block;
    vertical-align: middle;
    height: 25px;
    width: auto;
    margin: 0 10px;
}

.social a img {
    height: 23px;
    width: auto;
}

footer {
    background-color: #3d3d3d;
    color: #fff
}

footer h4 {
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 500;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease
}

footer a:hover {
    color: #999;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer .footercol {
    max-width: 280px;
    line-height: 2rem
}

.tradelogo {
    width: 165px;
    height: auto;
}

footer .footercol {
    max-width: 280px;
}

footer p {
    font-size: 14px;
}

p.right {
    text-align: right;
}

.bottomlogo {
    width: 67px;
    height: auto;
}

.site-info {
    text-align: center;
    color: #b9b9b9;
    font-size: 14px;
    padding: 15px;
}


.archive .page-title {
    margin: 0;
    text-align: center;
}

.duocard.archive {
    padding: 20px;
    border-radius: 10px;
}

.duocard.archive h2 a {
    text-decoration: none;
}

.duocard.archive .event_illustration {
    border-radius: 10px;
}

.internal {
    line-height: 150%
}

.internal .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.internal .nav-links a {
    color: #00a768
}

@media (max-width: 1024px) {

    h1 {
        font-weight: 700;
        font-size: 36px;
        line-height: 120%
    }

    h2 {
        font-weight: 700;
        font-size: 20px;
        line-height: 120%
    }

    h2.thin {
        font-weight: 200;
        font-size: 20px;
        line-height: 120%
    }

    h3 {
        font-weight: 600;
        font-size: 20px;
        line-height: 150%;
    }

    h4 {
        font-weight: 200;
        font-size: 18px;
        line-height: 120%
    }

    .main-navigation.toggled .menu-main-menu-container {
        padding-bottom: 25px;
    }

    .langselector.menu-item {
        max-width: 49px;
    }

    .wrapper.flexy-space {
        justify-content: center;
    }

    .threecard {
        margin: 10px;
    }

}

@media (max-width: 480px) {
    .lp2 {
        width: 125%;
        top: -100px;
        background-size: 1582px;
    }

    .hero {
        height: 750px;
    }

    .hero .wrapper {
        margin-top: 0;
    }

    .newlogo {
        width: 290px;
        margin-top: 15px;
    }

    .sakura {
        background-size: 499px;
        background-position: -70px -92px;
    }


    .hero h2 {
        font-size: 26px;
        width: 100%;
    }

    .hero h2.thin {

        font-size: 18px;
    }

    .marqueewrap {
        position: absolute;
        height: 400px;
        width: 150%;
        right: -25%;
        top: 328px;
        overflow: visible;
        transform: scale(0.7);
    }


    .focus h2 {
        margin: 60px auto 27px;
        font-size: 26px;
    }

    .footercol {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    #geo {
        height: 430px;
    }

    #geo .map {
        height: 495px;
    }

    #geo .activezone2 {
        width: 50%;
        height: 400px;
        top: 72px;
        left: 50%;
    }

    #geo .activezone1 {
        width: 50%;
        height: 400px;
        position: absolute;
        top: 72px;
        left: 0;
    }

    #geo .importers {
        max-width: 50%;
        position: absolute;
        right: 10%;
        top: 70px;
    }

    #geo .producers {
        left: 10%;
        position: absolute;
        top: 70px;
    }

    #mission .mission-text {
        padding-left: 15px;
        padding-right: 15px;
    }

    .show3 .duocard {
        width: 100% !important;
        margin-bottom: 40px;
    }

    .bigcard {
        width: 100% !important;
        padding: 35px;
    }

    .focusafter {
        height: 30px;
    }

}