* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
}

a,
a:visited {
    text-decoration: none;
    /* color: #FFB257; */
}

p {
    /* color: #393742; */
    word-wrap: break-word;
}

h1 {
    font-size: 32px;
    /* color: #393742; */
    padding-bottom: 0;
}

h2 {
    font-size: 24px;
    /* color: #393742; */
    padding-bottom: 0;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
    padding: 10px 0;
}

a,
p {
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

hr {
    border: 1px solid #f3f3f3;
}


/* ul,
ol {
    list-style-type: none;
} */

html,
body {
    width: 100%;
    height: 100%;
}

#content-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main {
    flex-grow: 1;
}

header,
main,
footer {
    flex-shrink: 0;
}

.header-container.sticky {
    top: 0;
    transition: all 0.3s ease;
}

.header-container.sticky {
    transition: all 0.3s ease;
    position: fixed;
    z-index: 10;
}

body.menu-open .header-container.sticky {
    box-shadow: none;
}

body.menu-open #logo {
    display: none;
}

.bold {
    font-weight: bold;
}

.main-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 60px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.25), 0 5px 5px rgba(171, 171, 171, 0.22);
}

.main-menu.open {
    width: 600px;
}

body.menu-open:after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #393742d2;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    width: 100%;
    z-index: 2;
}

#logo-menu-wrapper {
    display: flex;
    margin: 25px 0 0 25px;
}

#logo-menu {
    width: 80px;
    height: 32px;
    margin: 25px;
    margin-bottom: 0;
}

.main-menu i {
    color: #393742;
}

.app-menu {
    padding: 15px 0;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.app-menu.open {
    z-index: 999;
}

.app-menu div {
    width: 25px;
    height: 3px;
    background-color: #FFB257;
    background-color: #65db6f;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.app-menu div:nth-child(1) {
    margin-top: 10px;
    border-radius: 0 0 2px 0;
}

.app-menu div:nth-child(2) {
    margin-top: 5px;
    width: 20px;
    border-radius: 0 2px 2px 0;
}

.app-menu div:nth-child(3) {
    margin-top: 5px;
    border-radius: 0 2px 0 0;
}

.app-menu.open div:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin-top: 20px;
}

.app-menu.open div:nth-child(2) {
    opacity: 0;
}

.app-menu.open div:nth-child(3) {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    margin-top: -11px;
}

ul.mainmenu {
    list-style-type: none;
    display: flex;
    flex-flow: column;
    margin: 25px 50px;
}

.mainmenu ul {
    list-style-type: none;
}

.main-menu ul li {
    padding: 5px 0;
}

.main-menu.open ul li {
    margin-left: -600px;
    animation: slidein 1s linear forwards;
}

.main-menu.open ul li ul li {
    margin-left: 0;
    animation: none;
}

.main-menu.open ul li ul li ul li {
    margin-left: 0;
    animation: none;
}

@keyframes slidein {
    50% {
        margin-left: 50px
    }
    75% {
        margin-left: 25px;
    }
    100% {
        margin-left: 0;
    }
}

.main-menu ul li a {
    font-size: 20px;
    font-weight: 600;
    color: #393742;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}


/* Sub menu */

.main-menu ul li ul {
    list-style-type: none;
}

.main-menu ul li ul li {}

.main-menu ul li ul li a {
    font-size: 16px;
    margin-left: 10px;
}

.main-menu ul li ul li ul li a {
    font-size: 14px;
    margin-left: 20px;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #65db6f;
}


/* #################################################### */

.mainmenu li {
    position: relative;
}

.mainmenu a {
    position: relative;
}

.mainmenu ul {
    position: relative;
}

.mainmenu li>ul {
    display: none;
}

.mainmenu li>ul>li>ul {
    display: none;
}

.mainmenu a.showsub {
    display: none;
}

.mainmenu a.showsub {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 40px;
    right: 10px;
    top: 8px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
}

.showsub:hover {
    text-decoration: none;
}

.mainmenu>li>ul>li>a.showsub {
    right: 10px;
}

.mainmenu a.showsub i {
    color: #292835;
    font-size: 16px;
}

.mainmenu a.showsub i.hide {
    display: none;
}


/* #################################################### */

#close-menu-button {
    position: absolute;
    top: 20px;
    left: 50px;
    font-size: 30px;
}

.search-box {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: #393742;
    overflow-x: hidden;
    padding-top: 60px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.25), 0 5px 5px rgba(171, 171, 171, 0.22);
}

.search-box .search-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    list-style-type: none;
}

.search-box .search-wrapper label {
    color: white;
    font-size: 30px;
    display: block;
}

.search-box .search-wrapper input,
.search-box .search-wrapper button {
    border: none;
    padding: 20px;
    display: block;
    margin-top: 10px;
}

.search-box .search-wrapper input[type="text"] {
    min-width: 100px;
    max-width: 75%;
    border-radius: 10px 0 0 10px;
    display: inline-block;
}

.search-box .search-wrapper input[type="text"]:focus {
    border: none;
    outline: 0;
}

.search-box .search-wrapper input[type="submit"],
.search-box .search-wrapper button {
    border-radius: 0 10px 10px 0;
    display: inline-block;
    margin-left: -5px;
    background-color: #FFB257;
    background-color: #65db6f;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    -webkit-appearance: none;
    max-width: 25%;
}

.search-box .search-wrapper button i {
    color: #fff;
}

.search-box .search-wrapper input[type="submit"]:hover,
.search-box .search-wrapper button:hover {
    background-color: #da7e0e;
    background-color: #53dd5f;
}

#close-search-button {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 30px;
    color: #FFB257;
    color: #65db6f;
}

.search-result-title {
    padding: 50px 25px 0 25px;
    text-align: center;
    position: relative;
}

.search-result-title:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 100px;
    height: 3px;
    background: #65db6f;
    transform: translateX(-50%);
    bottom: -15px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    width: 100%;
    height: 70px;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.25), 0 5px 5px rgba(171, 171, 171, 0.22);
    text-align: center;
    background-color: #fff;
    position: relative;
}

.header-container i {
    color: #FFB257;
    color: #65db6f;
    font-size: 22px;
    padding: 24px 0;
}

#logo {
    width: 100px;
    padding: 15px 0;
    z-index: 2;
}

header {
    width: 100%;
    min-height: 70px;
}

.flex-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-main {
    background-color: #f3f3f3;
    /* background-color: #65db6f; */
    width: 100%;
    padding: 100px 25px;
}

.footer-33-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* max-width: 1200px; */
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.footer-33-wrapper .footer-33 {
    /* width: 31.33%; */
    width: 20%;
    margin: 15px 0;
    /* padding: 25px; */
    padding: 25px 15px;
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.footer-main .footer-33:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.footer-main .icons-wrapper {
    display: flex;
    justify-content: center;
}

.footer-main .icons-wrapper i {
    font-size: 32px;
    padding: 16px;
    color: #393742a2;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.footer-main a:hover>i {
    color: #393742;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.footer-main p {
    font-weight: bold;
    color: #393742;
}

.footer-copy {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 10px 25px;
    background-color: #cacaca;
    /* background-color: #40b64a; */
}

.footer-copy p,
.footer-copy a {
    color: #fff;
    font-size: 12px;
}


/* Latest news */

#news-link-button {
    display: table;
    width: fit-content;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #FFB257;
    background-color: #65db6f;
    color: #fff !important;
    width: fit-content;
    display: table;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    margin: 25px calc(1% + 25px);
}

#news-link-button:hover {
    text-decoration: none;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.scale-box {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.scale-box:hover {
    text-decoration: none;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.big-news {
    color: #393742;
}

.big-news .box-content {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}


/* .big-news:hover .box-content {
    transform: scale(1.02);
} */

.big-news:nth-child(odd) {
    color: #fff;
    background-color: #393742;
}

.big-news:nth-child(even) {
    color: #fff;
    background-color: #65db6f;
    color: #fff;
}

section.standard .big-news:nth-child(odd) {
    background-color: #fff;
    color: #393742;
    /* Nya */
    background-color: #65db6f;
    color: #fff;
}

section.standard .big-news:nth-child(even) {
    background-color: #f3f3f3;
    color: #393742;
    /* Nya */
    color: #fff;
    background-color: #393742;
}

.single-news-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}

.single-news {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    margin: 50px auto;
    padding: 25px 50px;
}

.single-news h1 {
    position: relative;
    padding-bottom: 10px;
}

.single-news h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: #65db6f;
}

.single-news img {
    margin: 15px 0;
}

#news-wrapper {
    width: 100%;
}

#more-news-wrapper {
    width: 100%;
}

#more-news {
    margin: 50px auto;
}

.loader-wrapper {
    width: 100%;
    position: relative;
}

.loader {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    display: none;
}

.circle {
    background-color: #65db6f;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 4px;
    animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
    animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/** Gallery and news **/

.gallery-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 98%;
    margin: 0 1%;
    margin: 0 auto;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.05), 0 5px 5px rgba(171, 171, 171, 0.05);
    border-radius: 5px;
    padding: 25px 0;
}

.gallery-item {
    width: 23%;
    display: flex;
    margin: 1%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.gallery-item.slide-in.is-visible:hover {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
}

.gallery-item a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #393742;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15), 0 5px 5px rgba(171, 171, 171, 0.15);
}

.gallery-item .box-image-container,
.gallery-item-100 .box-image-container {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.gallery-item .box-image-container {
    padding-top: 70%;
    width: 100%;
}

.gallery-item .box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    flex-grow: 1;
}

.gallery-item-100 .box-image-container {
    padding-top: 50%;
}

.flexWrap .gallery-wrapper .gallery-item {
    display: block;
    width: 25%;
}

.gallery-item-100 {
    width: 100%;
    display: flex;
    margin: 20px;
}

@media all and (max-width:1150px) {
    .main-menu.open {
        width: 500px;
    }
    .footer-main .footer-33 {
        width: 33.33%;
        margin: 0;
    }
}

@media all and (max-width:960px) {
    .main-menu.open {
        width: 50%;
    }
    .gallery-wrapper {
        justify-content: space-around;
    }
    .gallery-item {
        width: 23%;
        margin: 1%;
    }
    .gallery-item-100 {
        width: 100%;
        display: flex;
        margin: 1% 0;
    }
    .search-box .search-wrapper label {
        font-size: 24px;
    }
    .search-box .search-wrapper input,
    .search-box .search-wrapper button {
        padding: 15px;
    }
    .search-box .search-wrapper input[type="text"] {
        border-radius: 7.5px 0 0 7.5px;
    }
    .search-box .search-wrapper input[type="submit"],
    .search-box .search-wrapper button {
        border-radius: 0 7.5px 7.5px 0;
    }
    .header-container i {
        font-size: 20px;
        padding: 25px 0;
    }
    #logo {
        width: 70px;
        padding: 21px 0;
    }
    #close-menu-button {
        left: 20px;
        font-size: 24px;
    }
    #close-search-button {
        right: 20px;
        font-size: 24px;
    }
    #logo-menu {
        width: 70px;
        height: 28px;
    }
    .main-menu ul li a {
        font-size: 18px;
    }
    .main-menu ul li ul li a {
        font-size: 14px !important;
    }
    .main-menu ul li ul li ul li a {
        font-size: 12px !important;
    }
    .header-container {
        padding: 0 20px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    p,
    a,
    label {
        font-size: 15px;
    }
    .footer-main .icons-wrapper i {
        font-size: 24px;
        padding: 12px;
    }
    .single-news-header {
        min-height: 500px;
    }
}

@media all and (max-width:768px) {
    #news-link-button {
        margin: 25px auto;
    }
    .gallery-wrapper {
        columns: 2;
    }
    .gallery-item {
        width: 31.33%;
    }
    .footer-main .footer-33 {
        width: 100%;
    }
    .footer-main .footer-33 {
        width: 40%;
        margin: 0 5%;
    }
    .single-news-header {
        min-height: 400px;
    }
}

@media all and (max-width:550px) {
    .single-news-header {
        min-height: 350px;
    }
    .main-menu.open {
        width: 75%;
    }
    .search-box .search-wrapper label {
        font-size: 16px;
    }
    .header-container i {
        font-size: 18px;
        padding: 26px 0;
    }
    #logo {
        width: 65px;
        padding: 22px 0;
    }
    #logo-menu {
        width: 65px;
        height: 26px;
    }
    .main-menu ul li a {
        font-size: 16px;
    }
    .main-menu ul li ul li a {
        font-size: 12px !important;
    }
    .main-menu ul li ul li ul li a {
        font-size: 10px !important;
    }
    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 18px;
    }
    p,
    a,
    label {
        font-size: 14px;
    }
    .gallery-wrapper {
        columns: 1;
    }
    .gallery-item {
        width: 46%;
        margin: 2%;
    }
    .footer-main {
        padding: 50px 0;
    }
    .footer-copy p,
    .footer-copy a {
        font-size: 8px;
    }
    .footer-main .icons-wrapper i {
        font-size: 20px;
        padding: 10px;
    }
    .footer-main .footer-33 {
        width: 60%;
        margin: 0 20%;
    }
}


/* Slide in */


/*
.box-100,
.box-100-img-right,
.box-100-img-left,
.box-25-text-img,
.box-33-text,
.box-33-text-img,
.box-50,
.box-50-text,
.box-100-text,
.text-div-wrapper,
.form-wrapper,
.section-text-wrapper,
.box-100-product-paper ,
.gallery-item
*/

.slide-in {
    transform: translateY(4em);
    -webkit-transform: translateY(4em);
    -moz-transform: translateY(4em);
    -ms-transform: translateY(4em);
    -o-transform: translateY(4em);
    transition: transform 4s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .25s ease-out;
    -webkit-transition: transform 4s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .25s ease-out;
    -moz-transition: transform 4s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .25s ease-out;
    -ms-transition: transform 4s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .25s ease-out;
    -o-transition: transform 4s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .25s ease-out;
    will-change: transform, opacity;
}

.slide-in.is-visible {
    opacity: 1;
    transform: translateY(0em);
    -webkit-transform: translateY(0em);
    -moz-transform: translateY(0em);
    -ms-transform: translateY(0em);
    -o-transform: translateY(0em);
}