* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: "century-gothic", sans-serif;
    font-size: 16px;
    line-height: 1.625;
    color: #34382E;
}
body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "rajdhani", sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 45px;
    margin-bottom: 44px;
}

h3 {
    font-size: 39px;
}

h4 {
    font-size: 31px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 22px ;
}

p {
margin-bottom: 30px;
}

ul {
    list-style: none;
    line-height: 2;
}

footer h6 {
    text-transform: uppercase;
    margin-bottom: 11px;
}

footer a {
    font-size: 18px;
}

img {
    width: 100%;
    height: auto;
}

.button {
    color: white;
    background-color: #8C684E;
    padding: 12px 35px 11px;
    border: none;
    border-radius: 46px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: "rajdhani", sans-serif;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
}

.button:hover {
    background-color: #34382E;
}

.button:active {
    background-color: #34382E;
    transform: translateY(4px);
}

    /* 
    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

    .button span:after {
        content: '\00bb';
        position:absolute;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
    }

    .button:hover span {
        padding-right: 25px;
    } 

    .button:hover span:after {
        opacity: 1;
        right: 0;
    }
    */

.button--secondary {
    background-color: #fff;
    color: #8C684E;
    border: 1px solid #8C684E;
    padding: 12px 35px 11px;
    border-radius: 46px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: "rajdhani", sans-serif;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
}

.button--secondary:hover {
    background-color:#8C684E;
    color: #fff;
    border: 1px solid #fff;
}

.button--secondary:active {
    background-color:#8C684E;
    color: #fff;
    border: 1px solid #fff;
    transform: translateY(4px);
}

.link {
    color: #8C684E;
    text-decoration: underline;
    text-align: center;
    display: inline-block;
    font-family: "rajdhani", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.link:hover {
    color: #34382E;
}

.link:active {
    color: #34382E;
    transform: translateY(4px);
}

.link--text{
    color: #34382E;
    text-decoration: none;
    text-align: left;
}

.flex {
    display: flex;
}

.flex--center-center {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex--center-left {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
}

.flex--center {
    justify-content: space-between;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.row {
    margin: 0 -10px;
    flex-wrap: wrap;
}

.col--6 {
    width: 50%;
}

.col--4 {
    width: calc(33.33% - 20px);
    margin: 0 10px;
}

.col--max-width {
    max-width: 460px;
}

.col--max-width-6 {
    max-width: 380px;
}

.col--media-text {
    max-width: 100%;
    padding-left: 125px;
}

.col--text-media {
    max-width: 100%;
    padding-right: 125px ;
}

.img--square {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: 100%;
}

.img--rounded {
    border-radius: 10px;
}

.slider img {
    border-radius: 10px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    box-shadow: 0px 5px 19px 1px rgba(52, 56, 46, 0.2);
}

.slider .slick-list {
    overflow: visible;
}

.slider .slick-track {
    margin: 0 -10px;
}
.slider .slick-track div {
    padding: 0 10px;
}

.slider .slick-prev {
    left: 0;
}

.slider .slick-next {
    left:50px;
    right:0;
}

.slider .slick-prev, 
.slider .slick-next {
    bottom: -20%;
    top: unset;
    transform: none;
}
 
.slider .slick-prev::before, 
.slider .slick-next::before {
    color: black;
    display: inline-block;
    width: 15px;
    height: 30px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.slider .slick-prev::before {
    content: '';
    background-image: url("../images/arrow_icon_left.svg");
}
 
.slider .slick-next::before {
    content:'';
    background-image: url("../images/arrow_icon_right.svg");
}

.text--center {
    text-align: center;
}

.section--padding {
    padding: 0px 0px 96px;
}

.section--padding-top {
    padding-top: 96px;
}

.teaser--border {
    background-color: white;
    padding: 22px 30px;
    color: #34382E ;
    border: 2px solid #8C684E;
    border-radius: 10px;
}
.teaser--border p {
    max-width: 330px;
}

.teaser {
    background-color: none;
    padding: 22px 30px;
}

.icon--size {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 7px;
}

.icon--testi {
    width: 97px;
    height: 18px;
    object-fit: contain;
    margin-bottom: 11px;
}

.icon--testi-big {
    width: 146px;
    height: 27px;
    object-fit: contain;
    margin-bottom: 11px;
}

/* Header */

.header--green {
    background-color: #969D8E;
    color: white;
    font-size: 14px;
    z-index: 1;
    position: relative;
}

.header--green p {
    padding: 9px 0;
    margin-bottom: 0px;
}

.header--socials {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header--socials ul {
    line-height: 0;
    display: flex;
}

.header--socials ul li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.header--socials ul li:nth-child(2) {
    margin-right: 15px;
}
.header--socials ul li:nth-child(3) {
    margin-right: 0;
}
.header--socials ul li:first-child {
    margin-right: 60px;
}

.logo--header {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: white;
    padding: 54px 48px 23px; 
    box-shadow: 0 5px 19px 1px rgba(52, 56, 46, 0.2);     
    z-index: 0;                            
}

.relative {
    position: relative;
}

.header--white {
    background-color: white;
    box-shadow: 0px 5px 19px 1px rgba(52, 56, 46, 0.2);
    min-height: 60px;
}

.header--white a {
    font-family: "rajdhani", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

/* Body */

.bg--green-light {
    background-color: rgba(150, 157, 142, 0.15);
}

.background--img {
    position: relative;
    padding: 95px 0px;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    z-index: 1;
}

.background--img::before {
    content: '';

    position: absolute;
    top: 0;
    right: 0;

    display: block;
    width: 100%;
    height: 100%;
    background-color: #34382E;
    opacity: 0.73;

    z-index: -1;
}

/* Footer */

.bg--green {
    background-color: rgba(150, 157, 142, 0.5)
}
/*
.width--20 {
    width: 20%;
}
*/
.logo--size {
    max-width: 192px;
    max-height: 187px;
}

.li--bottom {
    display: inline-block;
    margin-right: 32px;
}