/*
Theme Name: Wiegmink Transport
Description: Wordpress thema voor Wiegmink Transport
Author: Comceptum
Author URI: http://comceptum.nl
Version: 1.0
License: GNU General Public License
License URI: licence/GPL.txt
*/

:root  {
    --base: 15px;
    --extrahuge: calc(var(--base) * 10);
    --huge: calc(var(--base) * 8);
    --extralargehuge: calc(var(--base) * 7);
    --extralarge: calc(var(--base) * 6);
    --largehuge: calc(var(--base) * 5);
    --large: calc(var(--base) * 4);
    --mediumlarge: calc(var(--base) * 3);
    --medium: max(22.5px, calc(var(--base) * 2));
    --small: max(15px, calc(var(--base) * 1.5));
    --extrasmall: max(10px, calc(var(--base) * 1));

    --borderradius: 4px;

    --backgroundmaxwidth: clamp(0px, calc(100% - 45px), 1740px);

    --primary-color: #075FA3;
    --secondary-color: #E7A014;
    --tertiary-color: #ECF0F4;

}

@font-face {
    font-family: 'Anton';
    src: url('fonts/Anton-Regular.eot');
    src: url('fonts/Anton-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Anton-Regular.woff2') format('woff2'),
        url('fonts/Anton-Regular.woff') format('woff'),
        url('fonts/Anton-Regular.ttf') format('truetype'),
        url('fonts/Anton-Regular.svg#Anton-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz\,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

/* @font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.eot');
    src: url('fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Inter-Regular.woff2') format('woff2'),
        url('fonts/Inter-Regular.woff') format('woff'),
        url('fonts/Inter-Regular.ttf') format('truetype'),
        url('fonts/Inter-Regular.svg#Inter-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Italic.eot');
    src: url('fonts/Inter-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Inter-Italic.woff2') format('woff2'),
        url('fonts/Inter-Italic.woff') format('woff'),
        url('fonts/Inter-Italic.ttf') format('truetype'),
        url('fonts/Inter-Italic.svg#Inter-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
} */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.large {
    font-family: 'Anton';
    color: inherit;
    margin-bottom: var(--small);
    margin-top: 0;
    display: block;
    font-weight: 400;
    text-wrap: balance;
}

h1,
.h1 {
    font-size: 40px;
}

h2,
.h2 {
    font-size: 32px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
}

.large {
    font-size: 48px;
}

body {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter';
    overflow-x: hidden;
    line-height: 1.5;
    background: #FFFFFF;
    color: #000000;
    margin: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.strong {
    font-weight: bold;
}

p {
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
}

.btn {
    display: inline-block;
    position: relative;
    font-family: 'Anton';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #FFFFFF;
    background: var(--primary-color);
    border: 0;
    border-radius: var(--borderradius);
    padding: 13px 55px 13px 15px;
    margin-bottom: 7.5px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    /* overflow: hidden; */
    cursor: pointer;
}

.btn:hover {
    color: var(--primary-color);
}

.btn:before {
    content: '';
    position: absolute;
    background: #FFFFFF;
    border-radius: var(--borderradius);
    top: 50%;
    left: 0%;
    width: 0%;
    height: 100%;
    transform: translate(0%,-50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn:hover:before {
    width: 100%;
    border: 1px solid var(--primary-color);
}

.btn:after {
    content: url('images/arrow-white.svg');
    position: absolute;
    top: 50%;
    right: 7.5px;
    bottom: 0;
    width: 35px;
    height: 33.2px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:hover:after {
    content: url('images/arrow-blue.svg');
}

.btn--secondary {
    color: #FFFFFF;
    background: var(--secondary-color);
}

.btn--secondary:hover {
    color: var(--secondary-color);
}

.btn--secondary:hover:before {
    border: 1px solid var(--secondary-color);
}

.btn--secondary:hover:after {
    content: url('images/arrow-orange.svg');
}

.btn--tertiary {
    font-family: 'Inter';
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary-color);
    background: #FFFFFF;
    width: 435px;
    padding: 13px 50px 13px 25px;
}

.btn--tertiary:after {
    content: url('images/arrow-blue.svg');
    right: 7.5px;
}

.btn--small {
    padding: 6px 38px 6px 6px;
}

.btn--small:after {
    right: 6px;
    width: 20px;
    height: 20px;
}

.btn--small:hover:after {
    content: url('images/arrow-blue-small.svg');
}

a {
    color: currentColor;
    text-decoration: none;
}

ul,
ol {
    padding-left: 0;
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: var(--extrasmall);
}

li {
    list-style: none;
}

blockquote {
	margin: 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.row {
    margin-right:  calc(var(--extrasmall) * -1);
    margin-left: calc(var(--extrasmall) * -1);
}

.row [class*="col-"] {
    padding-right: var(--extrasmall);
    padding-left: var(--extrasmall);
}

@media (min-width: 992px) {

    .row.huge-gutters {
        margin-right:  calc(var(--extralarge) * -1);
        margin-left: calc(var(--extralarge) * -1);
    }

    .row.huge-gutters [class*="col-"] {
        padding-right: var(--extralarge);
        padding-left: var(--extralarge);
    }

    .row.extralarge-gutters {
        margin-right:  calc(var(--large) * -1);
        margin-left: calc(var(--large) * -1);
    }

    .row.extralarge-gutters [class*="col-"] {
        padding-right: var(--large);
        padding-left: var(--large);
    }

    .row.large-gutters {
        margin-right:  calc(var(--mediumlarge) * -1);
        margin-left: calc(var(--mediumlarge) * -1);
    }

    .row.large-gutters [class*="col-"] {
        padding-right: var(--mediumlarge);
        padding-left: var(--mediumlarge);
    }

    .row.medium-gutters {
        margin-right:  calc(var(--medium) * -1);
        margin-left: calc(var(--medium) * -1);
    }

    .row.medium-gutters [class*="col-"] {
        padding-right: var(--medium);
        padding-left: var(--medium);
    }

    .row.smallmedium-gutters {
        margin-right:  calc(var(--small) * -1);
        margin-left: calc(var(--small) * -1);
    }

    .row.smallmedium-gutters [class*="col-"] {
        padding-right: var(--small);
        padding-left: var(--small);
    }

    .row.normal-gutters {
        margin-right: -15px;
        margin-left: -15px;
    }

    .row.normal-gutters > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.row.small-gutters {
    margin-right: -10px;
    margin-left: -10px;
}

.row.small-gutters [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.row.extrasmall-gutters {
    margin-right: -5px;
    margin-left: -5px;
}

.row.extrasmall-gutters [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* Header */

header {
    font-family: 'Anton';
    position: relative;
    margin-bottom: var(--small);
    z-index: 10;
}

header nav.navigation {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
   
}

header nav.navigation .navigation-logo {
    position: relative;
    line-height: 0;
    width: 100%;
    max-width: 90px;
    bottom: 0;
    margin: 0;
    margin-top: var(--mediumlarge);
    margin-right: var(--extrahuge);
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}

header nav.navigation .navigation-logo img {
    width: 100%;
}

header nav.navigation .navigation-nav {
    display: flex;
    flex-wrap: nowrap;
    margin-top: var(--largehuge);
    margin-right: auto;
    margin-bottom: 0;
}

header nav.navigation .navigation-nav > li {
    display: inline-block;
}

header nav.navigation .navigation-nav > li > a {
    display: inline-block;
    position: relative;
    font-weight: 400;
    list-style: none;
    white-space: nowrap;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0;
    margin-right: 22.5px;
}

header nav.navigation .navigation-nav > li > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--primary-color);
    height: 1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

header nav.navigation .navigation-nav > li > a:hover:after {
    width: 100%;
}

header nav.navigation .navigation-nav > li.active > a {
    color: var(--primary-color);
}

header nav.navigation .navigation-text {
    text-align: right;
    margin-top: var(--largehuge);
}

header nav.navigation .navigation-text p {
    font-family: 'Inter';
    font-size: 14px;
}

header nav.navigation .navigation-text__number {
    color: var(--secondary-color);
}

header .navigation-toggler {
    position: relative;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
    display: none;
    color: var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 0;
    margin-left: var(--small);
    cursor: pointer;
}

header .navigation-toggler .icon-bar {
    display: block;
    width: 25px;
    height: 2.5px;
}

header .navigation-toggler.collapsed .icon-bar {
    background-color: currentColor;
}

header .navigation-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

header .navigation-toggler.collapsed .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    top: 0;
}

header .navigation-toggler.collapsed .icon-bar:nth-of-type(2) {
    opacity: 1;
    width: 25px;
    margin-left: 0;
}

header .navigation-toggler.collapsed .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    bottom: 0;
}

header .navigation-toggler .icon-bar {
    position: relative;
    transition: all 500ms ease-in-out;
    background-color: currentColor;
}

header .navigation-toggler .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 6.5px;
}

header .navigation-toggler .icon-bar:nth-of-type(2) {
    opacity: 0;
    width: 0;
    margin-left: 50%;
}

header .navigation-toggler .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 6.5px;
}


/* Main */

/* Header */
section.header {
    max-width: var(--backgroundmaxwidth);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--extralargehuge);
}

section.header .header-content {
    position: relative;
    padding: var(--extrahuge) var(--extralarge) var(--extrahuge) 0;
    z-index: 2;
}

section.header .header-content:after {
    content: '';
    position: absolute;
    width: 44.5vw;
    top: 0;
    right: 0;
    bottom: 0;
    float: right;
    background: var(--tertiary-color);
    border-radius: var(--borderradius);
    z-index: -1;
    pointer-events: none;
}

section.header .header-content p {
    margin-bottom: var(--small);
}

section.header .header-content__links {
    margin-bottom: 3.75px;
}

section.header .header-image {
    position: relative;
    display: block;
    padding-bottom: 75%;
    height: 100%;
    width: 44.5vw;
    float: left;
    border-radius: var(--borderradius);
    overflow: hidden;
}

section.header .header-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.header .header-content p > a[href^="tel:"]:hover,
section.header .header-content p > a[href^="mailto:"]:hover {
	color: var(--primary-color);
}

section.header .header-content__socials {
    height: 100%;
    align-content: end;
    margin-bottom: 0;
}

section.header .header-content__socials li {
    display: inline-block;
    margin-right: 3.25px;
}

section.header .header-content__socials li a {
    display: block;
    height: 31px;
    width: 31px;
    background: var(--primary-color);
    border-radius: 1.55px;
    text-align: center;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.header .header-content .icon.facebook:before {
    content: '';
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url('images/facebook.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

section.header .header-content .icon.linkedin:before {
    content: '';
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url('images/linkedin.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

section.header .header-content .icon.twitter:before {
    content: '';
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url('images/twitter.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

/* Article */
article.article {
    margin-bottom: var(--extralargehuge);
}

article.article--blue {
    background-color: var(--tertiary-color);
    border-radius: var(--borderradius);
    max-width: 90vw;
    padding-top: var(--large);
    padding-bottom: var(--large);
    margin-left: auto;
    margin-right: auto;
}

article.article .image-slider--small .slick-list {
    overflow: hidden;
}

article.article .image-slider .image-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
}

article.article .image-slider .image-slide__image {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
}

article.article .image-slider .image-slide__image img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--borderradius);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}

article.article .image-slider .image-slide__button {
    position: absolute;
    right: 1em;
    bottom: 0;
}

article.article .image-slider--small .image-slide__button .btn {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    margin-right: 5px;
    margin-bottom: 5px;
}

article.article .image-slider--small .image-slide__button .btn:after {
    content: '';
}

article.article .slick-navigation {
    text-align: right;
    margin-top: var(--small);
}

article.article:has(.image-slider--small) .slick-navigation {
    margin-top: var(--extrasmall);
}

article.article .article-content {
    padding-right: var(--large);
}

article.article--center .article-content {
	padding-right: 0;
	margin-right: 0;
}

article.article--wide .article-content {
    position: relative;
	height: 100%;
    padding: var(--extralarge) var(--extralargehuge) var(--extralarge) 0;
    z-index: 2;
}

article.article--wide .article-content:after {
    content: '';
    position: absolute;
    width: 44.5vw;
    top: 0;
    bottom: 0;
    left: 0;
    float: left;
    background: var(--tertiary-color);
    border-radius: var(--borderradius);
    z-index: -1;
    pointer-events: none;
}

article.article--wide .article-content--left:after {
	left: unset;
	right: 0;
	float: right;
}

article.article .article-content--right {
    padding-left: var(--large);
}

article.article--wide .article-content--right {
	height: 100%;
    padding-left: var(--mediumlarge);
}

article.article--wide .article-content--right {
    margin-left: 0;
}

article.article--wide .article-content--right > *,
article.article--wide .article-content--left > * {
    margin-left: var(--extralargehuge)
}

article.article .article-content:not(:last-child) {
    margin-bottom: var(--medium);
}

article.article .article-content p:not(:last-child) {
    margin-bottom: var(--small);
}

article.article .article-content blockquote {
	font-family: 'Anton';
	font-size: 48px;
	font-weight: 400;
	margin-top: var(--extralargehuge);
}

article.article .article-content__image {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
}

article.article .article-content__image:not(:first-child) {
    margin-top: var(--medium);
}

article.article .article-content__image img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--borderradius);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}

article.article ul:has(img) {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

article.article ul li:has(img) {
    position: relative;
    display: block;
    line-height: 1;
    height: 90px;
    max-width: 230px;
    margin-right: var(--small);
}

article.article ul li img {
    width: 100%;
    height: 100%;
}

article.article .article-listing {
    margin-right: var(--small);
}

article.article .article-listing__item {
    border-bottom: 1px solid #000000;
    padding-bottom: var(--medium);
}

article.article .article-listing__item h3,
article.article .article-listing__item p {
    padding-right: var(--small);
}

article.article--center .article-listing__item h3,
article.article--center .article-listing__item p {
    padding-right: var(--huge)
}

article.article .article-listing__item + .article-listing__item {
    margin-top: var(--mediumlarge);
}

article.article .article-listing__item-button {
    position: relative;
    display: block;
}

article.article .article-listing__item-button a {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

article.article .article-listing__item-button > a:after {
    position: absolute;
    display: block;
    content: url('images/arrow-blue.svg');
    height: 25px;
    width: 26.3px;
    border-radius: var(--borderradius);
    -webkit-transition: all .3s;
    transition: all .3s;
}


article.article .article-listing__item:has(a:hover) .article-listing__item-button > a:after,
article.article .article-listing__item-button > a:hover:after {
    content: url('images/arrow-white.svg');
    background-color: var(--primary-color);
    border-radius: var(--borderradius);
}

article.article .article-image {
    position: relative;
    display: block;
	height: 100%;
	width: 100%;
    aspect-ratio: 3 / 2;
}

article.article .article-image img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--borderradius);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}

article.article--wide .article-image {
    padding-bottom: 75%;
    height: 100%;
    width: 44.5vw;
    float: right;
    border-radius: var(--borderradius);
    aspect-ratio: unset;
    overflow: hidden;
}

article.article--wide .article-image--left {
	float: left;
}

article.article .article-logo {
    position: relative;
    display: block;
    max-width: 160px;
    margin-bottom: var(--huge);
}

article.article .article-logo img {
    width: 100%;
}

article.article input,
article.article textarea {
    border: none;
    border-radius: var(--borderradius);
    padding: 7.5px var(--small);
}

/* Blocks */

section.blocks {
    position: relative;
    margin-bottom: var(--extralargehuge);
}

section.blocks .block {
    position: relative;
    overflow: visible;
    margin: 0;
    height: 70vh;
    min-height: 500px;
    border-radius: var(--borderradius);
}

/* section.blocks--small .block {
    height: 60vh;
} */

section.blocks .block .block-image {
    position: absolute;
    left: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    width: 90vw;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: -2;
}

section.blocks .block .block-image img {
    width: 100%;
    height: 100%;
    border-radius: var(--borderradius);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.blocks--small .block .block-image {
    width: 100%;
    aspect-ratio: 2 / 1;
}

section.blocks .block .block-content {
    position: absolute;
    top: 5rem;
    right: 0;
    color: #FFFFFF;
    width: 100%;
    max-width: 625px;
    padding: var(--largehuge) var(--large);
    z-index: 1;
}

section.blocks .block .block-content:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--borderradius);
    background: var(--primary-color);
    pointer-events: none;
    opacity: 0.9;
    z-index: -1;
}

section.blocks--grey .block .block-content:after {
    background: rgba(118, 118, 118, 0.66);
}

section.blocks .block .block-content p:not(:last-child) {
    margin-bottom: var(--small);
}

section.blocks .block .block-content__buttons .btn {
    border: 1px solid ;
}

section.blocks--grey .block .block-content__buttons .btn {
    border: 1px solid ;
    background: rgba(118, 118, 118, 0.66);
}

section.blocks--grey .block .block-content__buttons .btn:hover {
    color: rgba(118, 118, 118, 0.66);
}

section.blocks--grey .block .block-content__buttons .btn:hover:before {
    border: 1px solid rgba(118, 118, 118, 0.66);
}

section.blocks--grey .block .block-content__buttons .btn:hover:after {
    content: url('images/arrow-grey.svg');
}



/* Cards */

section.cards {
    margin-bottom: var(--extralargehuge);
}

section.cards .card {
	display: flex;
    flex-direction: column;
    margin-bottom: var(--small);
    height: calc(100% - var(--small));
}

section.cards .card .card-img-top {
    position: relative;
    display: block;
    aspect-ratio: 5 / 3;
    border-radius: var(--borderradius);
    overflow: hidden;
    margin-bottom: 10px;
}

section.cards .card .card-img-top img {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.cards .card .card-img-top .card-img__button {
    position: absolute;
    right: var(--small);
    bottom: var(--extrasmall);
}

section.cards .card .card-content {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	flex: 1;
    background-color: var(--tertiary-color);
    border-radius: var(--borderradius);
    padding: var(--mediumlarge) var(--large);
}

section.cards .card .card-content h3:has(+ h3) {
    margin-bottom: 0;
}

section.cards .card .card-content p {
    margin-right: var(--extrasmall);
    margin-bottom: var(--small);
}

section.cards .card .card-content a {
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.cards .card .card-content a:hover {
    text-decoration: underline;
}

section.cards .card .card-content a:after {
    content: url('images/arrow-blue-small.svg');
    position: absolute;
    top: 50%;
    height: 21px;
    width: 22px;
    border-radius: var(--borderradius);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    margin-left: 10px;
}

section.cards .card .card-content a:hover:after {
    content: url('images/arrow-white-small.svg');
    background-color: var(--primary-color);
}


/* Slick Slider */
.slick-track {
	width: 100%;
    min-width: 100%;
}

.slick-list {
	width: 100%;
	min-width: 100%;
	overflow: visible;
}

.slick-navigation .slick-arrow {
    cursor: pointer;
}

.slick-navigation .slick-arrow.slick-disabled {
    filter: opacity(0.5);
}


/* Gravity Forms */
.gform_wrapper .gform-body.gform_body {
	columns: 2 auto;
}

.gform_wrapper form .gform_fields {
  row-gap: 0px !important;
}

.gform_wrapper .gform_body .gform_fields .gfield input {
	margin-bottom: 18px;
}

.gform_wrapper .gform_body .gform_fields .gfield :is(input, textarea) {
	font-size: 16px;
    font-weight: 400;
    font-family: 'Inter';
	border: none;
    border-radius: var(--borderradius);
	box-shadow: unset;
	width: 100%;
    padding: 7.5px var(--small);
}

article.article--white .gform_wrapper .gform_body .gform_fields .gfield :is(input, textarea) {
	border: 1px solid var(--primary-color);
}

.gform_wrapper#gform_wrapper_1 .gform_body .gform_fields .gfield textarea {
	min-block-size: 9.3rem;
	margin-top: -18px;
}

.gform_wrapper#gform_wrapper_2 .gform_body .gform_fields .gfield textarea,
.gform_wrapper#gform_wrapper_3 .gform_body .gform_fields .gfield textarea {
    min-block-size: 16.4rem;
	margin-top: -18px;
}

.gform_wrapper .gform_body .gform_fields .gfield :is(input, textarea):focus,
.gform_wrapper .gform_body .gform_fields .gfield :is(input, textarea):focus-visible {
    outline: none;
}

.gform_wrapper .gform_body .gform_fields .gfield input[type=file] {
	padding: 0;
}

.gform_wrapper .gform_body .gform_fields .gfield input[type=file]::file-selector-button {
	color: #909090;
	font-size: 12px;
    background-color: #FFFFFF;
    border: none;
	padding-left: var(--small);
    margin-right: 20px;
    transition: .5s;
}

.gform_wrapper .gform_body .gform_fields .gfield input[type=file]::file-selector-button:hover {
	color: var(--primary-color);
	cursor: pointer;
}

.gform_wrapper .gform_body .gform_fields .gfield .gfield_description {
	display: none;
/* 	margin-bottom: 0; */
}

.gform_wrapper .gform_footer button#gform_submit_button_1,
.gform_wrapper .gform_footer button#gform_submit_button_2,
.gform_wrapper .gform_footer button#gform_submit_button_3 {
	display: inline-block;
    position: relative;
    font-family: 'Anton';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #FFFFFF;
    background: var(--secondary-color);
    border: 0;
    border-radius: var(--borderradius);
    padding: 13px 55px 13px 15px;
    margin-bottom: 7.5px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    cursor: pointer;
}

.gform_wrapper .gform_footer button#gform_submit_button_1:hover,
.gform_wrapper .gform_footer button#gform_submit_button_2:hover,
.gform_wrapper .gform_footer button#gform_submit_button_3:hover {
    color: var(--secondary-color);
}

.gform_wrapper .gform_footer button#gform_submit_button_1:before,
.gform_wrapper .gform_footer button#gform_submit_button_2:before,
.gform_wrapper .gform_footer button#gform_submit_button_3:before{
    content: '';
    position: absolute;
    background: #FFFFFF;
    border-radius: var(--borderradius);
    top: 50%;
    left: 0%;
    width: 0%;
    height: 100%;
    transform: translate(0%,-50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.gform_wrapper .gform_footer button#gform_submit_button_1:hover:before,
.gform_wrapper .gform_footer button#gform_submit_button_2:hover:before,
.gform_wrapper .gform_footer button#gform_submit_button_3:hover:before {
    width: 100%;
    border: 1px solid var(--secondary-color);
}

.gform_wrapper .gform_footer button#gform_submit_button_1:after,
.gform_wrapper .gform_footer button#gform_submit_button_2:after,
.gform_wrapper .gform_footer button#gform_submit_button_3:after {
    content: url('images/arrow-white.svg');
    position: absolute;
    top: 50%;
    right: 7.5px;
    bottom: 0;
    width: 35px;
    height: 33.2px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.gform_wrapper .gform_footer button#gform_submit_button_1:hover:after,
.gform_wrapper .gform_footer button#gform_submit_button_2:hover:after,
.gform_wrapper .gform_footer button#gform_submit_button_3:hover:after {
    content: url('images/arrow-orange.svg');
}


/* Footer */

footer .footer-main {
    margin-bottom: var(--small);
}

footer .footer-main--left {
    color: #FFFFFF;
    background: var(--primary-color);
    border-radius: var(--borderradius);
    height: 100%;
    padding: var(--large) var(--mediumlarge);
}

footer .footer-main__logo {
    width: 100%;
    max-width: 70px;
    margin-bottom: 3.25px;
}

footer .footer-main__logo img {
    width: 100%;
}

footer .footer-main--left h3 {
    text-wrap: unset;
    max-width: 265px;
}

footer .footer-main--right {
    align-content: center;
    border: 1px solid var(--primary-color);
    border-radius: var(--borderradius);
    height: 100%;
    padding: var(--large) var(--mediumlarge);
}

footer .footer-main__address a:hover {
	color: var(--primary-color);
}

footer .footer-main__menu {
    font-family: 'Anton';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    margin-left: var(--extrasmall);
}

footer .footer-main__menu > li.active > a {
    color: var(--primary-color)
}

footer .footer-main__socials {
    height: 100%;
    align-content: end;
    margin-bottom: 0;
}

footer .footer-main__socials li {
    display: inline-block;
    margin-right: 3.25px;
}

footer .footer-main__socials li a {
    display: block;
    height: 31px;
    width: 31px;
    background: var(--primary-color);
    border-radius: 1.55px;
    text-align: center;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

footer .footer-main .icon.facebook:before {
    content: '';
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url('images/facebook.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

footer .footer-main .icon.linkedin:before {
    content: '';
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url('images/linkedin.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

footer .footer-main .icon.twitter:before {
    content: '';
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url('images/twitter.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

footer .footer-sub {
    margin-bottom: var(--extralargehuge);
}

footer .footer-sub .row {
    border: 1px solid var(--primary-color);
    border-radius: var(--borderradius);
    padding: var(--extrasmall) var(--medium);
    margin-left: 0;
    margin-right: 0;
}

footer .footer-sub__certificates {
    display: flex;
    align-items: center;
}

footer .footer-sub__certificates p {
    display: inline-block;
    margin-right: var(--medium);
}

footer .footer-sub__certificates ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

footer .footer-sub__certificates ul li {
    position: relative;
    display: block;
    line-height: 1;
    height: 41px;
    max-width: 115px;
    margin-right: var(--small);
}

footer .footer-sub__certificates ul li img {
    width: 100%;
    height: 100%;
}

footer .footer-sub__copyright {
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
}

footer .footer-sub__copyright li:not(:last-child):after {
    content: '|';
    margin: 0 7.5px 0 10px;
}

/* WhatsApp button */
.whatsapp-btn {
	position: fixed;
	bottom: var(--large);
	right: var(--extralarge);
	z-index: 99;
}

.whatsapp-btn img {
	height: 50px;
	width: 50px;
}

.whatsapp-btn img:hover {
	-webkit-transform: scale(1.05)
	transform: scale(1.05)
}



/* Responsive */

@media (max-width: 1600px) {
    
}   

@media (max-width: 1400px) {
   :root  {
        --base: 12.5px;
    }

    header nav.navigation .navigation-nav > li > a {
        margin: 45px 12.5px;
        font-size: 17px;
    }
}

@media (max-width: 1200px) {
    :root  {
         --base: 10px;
    }

    header nav.navigation .navigation-logo {
        margin-top: var(--small);
        margin-right: var(--small);
    }

    header nav.navigation .navigation-nav {
        margin-top: var(--mediumlarge);
    }

    header nav.navigation .navigation-nav > li > a {
        font-size: 16px;
        margin: 25px 12.5px
    }

    section.header .header-content:after {
        width: 50vw;
    }

    section.header .header-image {
        width: 50vw;
    }

    article.article .article-content {
        margin-right: 0;
    }

    article.article .article-logo {
        max-width: 125px;
    }

    article.article--wide .article-content:after {
        width: 50vw;
    }
	
	article.article--wide .article-content--right > *, 
	article.article--wide .article-content--left > * {
		margin-left: var(--mediumlarge);
	}
	
	article.article .article-content blockquote {
		font-size: 40px;
		margin-top: var(--extralarge);
	}

    article.article--wide .article-image {
        width: 50vw;
    }

    section.blocks .block {
        height: 500px;
        min-height: 350px;
    }

    section.blocks .block .block-image {
        width: 100vw;
    }

    section.cards .card .card-content p {
        margin-right: 0;
    }

    footer .footer-main__menu {
        margin-left: 0;
    }

    footer .footer-main__socials {
        padding-top: var(--small);
    }
}

@media (max-width:992px) {
    :root  {
        --base: 7.5px;
    }
	
	h1,
	.h1 {
		font-size: 32px;
	}

	h2,
	.h2 {
		font-size: 24px;
	}

	h3,
	.h3 {
		font-size: 18px;
	}

	h4,
	.h4 {
		font-size: 16px;
	}

	.large {
		font-size: 40px;
	}

	
    main {
        margin: 0;
    }
	
	body {
		font-size: 14px;
	}

    .large {
        font-size: 40px;
    }
   
    .btn {
        zoom: 0.9;
    }

    .btn--tertiary {
        width: 100%;
    }

    header {
        padding: var(--small) 0;
        position: sticky;
        top: 0;
        background: #ffffff;
    }
	
	header nav.navigation {
		justify-content: space-between;
	}

    header nav.navigation .navigation-logo {
        max-width: 55px;
        margin-right: var(--medium)
    }
    
    header nav.navigation .navigation-nav {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        left: 0;
        overflow-x: scroll;
        background: var(--primary-color);
        color: #ffffff;
        padding: var(--medium);
        display: block;
        z-index: 0;
        text-align: center;
        transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    header nav.navigation .navigation-nav.open {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    header nav.navigation .navigation-nav > li {
        display: block;
     }

    header nav.navigation .navigation-nav > li > a {
        font-size: 18px;
        margin: 10px 0;
    }

    header nav.navigation .navigation-nav > li.active > a {
        color: var(--primary-color);
        text-shadow:
            1px 1px 0px #FFFFFF,
            -1px 1px 0px #FFFFFF,
            -1px -1px 0px #FFFFFF,
            1px -1px 0px #FFFFFF;
    }
	
	header nav.navigation .navigation-nav > li.active > a:after {
		content: '';
	}

    header nav.navigation .navigation-nav > li:first-child > a {
        margin-top: 0
    }

    header nav.navigation .navigation-text {
        margin-top: var(--medium);
    }

    header nav.navigation .navigation-text p {
        font-size: 11px;
    }

    header .navigation-toggler {
        display: block;
    }


    section.header .header-image {
        width: 100vw;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-left: -45px;
        margin-right: -45px;
    }

    section.header .header-content {
        padding: var(--medium) 0;
    }

    section.header .header-content:after {
        width: 100vw;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-left: -45px;
        margin-right: -45px;
    }


    article.article .article-content {
		padding: var(--medium) 0; 
        margin-left: 0;
    }
	
	article.article.article--wide {
		max-width: 90vw;
		margin-left: auto;
		margin-right: auto;
	}

    article.article--wide .article-content:after {
        width: 100vw;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-left: -45px;
        margin-right: -45px;
    }

    article.article--wide .article-content--right > *, 
    article.article--wide .article-content--left > * {
        margin-left: 0;
        margin-right: 0;
    }
	
	article.article .article-content blockquote {
		font-size: 30px;
		margin-top: 0;
	}
	
	article.article--wide .article-image {
        width: 100vw;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-left: -45px;
        margin-right: -45px;
	}
	
	article.article--wide .article-image img {
		border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
	}

    article.article .image-slider--small {
        margin-top: var(--medium);
    }

    article.article .article-logo {
        max-width: 100px;
        margin-bottom: var(--large);
    }

    article.article .article-listing {
        margin-right: 0;
        margin-bottom: var(--small);
    }
	
	article.article .article-listing__item-button a {
		top: 7.5px;
	}

    section.blocks .block .block-content {
        top: 1rem;
    }

    section.blocks--small .block {
        height: 250px;
        min-height: 250px;
    }

    section.cards .card .card-img-top {
        margin-bottom: 3.25px;
    }
	
	.slick-list {
		overflow: hidden;
	}
	
	.gform_wrapper .gform-body.gform_body {
		columns: 1 auto;
	}
	
	.gform_wrapper#gform_wrapper_1 .gform_body .gform_fields .gfield textarea {
		min-block-size: 6rem;
		margin-top: 0px;
	}
	
	.gform_wrapper#gform_wrapper_2 .gform_body .gform_fields .gfield textarea {
		min-block-size: 13rem;
		margin-top: 0px;
	}
	
	footer .footer-main--left {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	
	footer .footer-main--right {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

    footer .footer-main__menu {
        margin-bottom: var(--medium);
    }

    footer .footer-main__socials {
        padding-top: var(--extrasmall);
    }
	
	footer .footer-sub__certificates {
		justify-content: center;
	}

    footer .footer-sub__copyright {
        justify-content: center;
        margin-top: var(--extrasmall);
    }
}

