/* Lappdals Islandshästar */

/* ==========================================================================
Generellt  
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 7rem;
    --menu-height-scrolled: 7rem;
    --section-width: 120rem;

    /* 	Colors */
    --primary-color: 149, 203, 123;
    --primary-dark-color: 122, 165, 101;
    --secondary-color: 252, 247, 240;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 89, 91, 97;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

    /* 	Typography */
    --base-size: 1.7rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1150;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

/* Layout
========================================================================== */
.section-block {
    padding: 8rem 5rem;
}

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem 2rem 1rem;
}

.p-4 .section-block,
.p-4:not(.section-wrapper) {
    padding: 4rem;
}

.p-8 .section-block,
.p-8:not(.section-wrapper) {
    padding: 8rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

.pt-4 .section-block,
.pt-4:not(.section-wrapper) {
    padding-top: 4rem;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.py-5 .section-block,
.py-5:not(.section-wrapper) {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Margins */
.mt-3 {
    margin-top: 3rem;
}

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1300 .section-block-wrapper {
    max-width: 130rem;
}

.mw-1500 .section-block-wrapper {
    max-width: 150rem;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }

    .p-8 .section-block,
    .p-8:not(.section-wrapper) {
        padding: 2rem;
    }

    .p-4 .section-block,
    .p-4:not(.section-wrapper) {
        padding: 4rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: "PT Serif", serif;
}

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 1em;
}

.section-title {
    font-size: 4rem;
    font-weight: 200;
    color: rgb(var(--gray-dark-color));
    line-height: 1.2;
    padding-bottom: 0.5em;
}

.small-title {
    font-size: 2.9rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 0.7em;
    color: rgb(var(--gray-dark-color));
}

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 400;
    color: rgb(var(--gray-color));
    line-height: 1.9em;
    letter-spacing: 0.05em;
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 85rem;
    margin-left: auto;
    margin-right: auto;
}

.text-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-small {
    font-size: 1.5rem;
}

@media only screen and (max-width: 1200px) {
    .section-title {
        font-size: 3.8rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }

    .text-label {
        font-size: 1.2rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-wrapper.center {
    justify-content: center;
}

/* Knappar */
.btn {
    min-width: 20rem;
    padding: 1.1rem 2rem;
    font-size: 1.4rem;
    font-weight: 400;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.1rem;
    font-family: "Open sans", sans-serif;
}

.btn-primary-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-dark-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: rgb(var(--primary-dark-color));
}

.btn-primary-filled:hover {
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    color: rgb(var(--primary-color));
}

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-color));
}

.arrow-link::after {
    content: " \f105";
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: "Font Awesome 5 Pro";
    transition: transform 0.4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform 0.4s ease;
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-secondary {
    background-color: rgb(var(--secondary-color));
}

.bg-white {
    background-color: rgb(var(--white-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

/* Overlays */
.overlay-black .section-block {
    background-color: rgb(var(--black-color), 0.8);
}

/* Text */
.text-primary-dark {
    color: rgb(var(--primary-dark-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper,
.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Parallax
========================================================================== */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media only screen and (hover: none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Specifika bredder */
.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

.card-1-1 .card-item {
    height: 35rem;
}

.card-3-1 .small-title {
    font-size: 2rem;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-image {
    width: 50%;
}

/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

.split-wrapper .w-40 {
    width: 40%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 1000px) {
    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
        padding: 0 0 3rem;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

    .px-15 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Header / Navigation
========================================================================== */
header.scrolled {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), 0.1);
}

header .container {
    padding: 0;
    margin: 0 auto;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

.header-logo img {
    padding: 1.8rem 0;
}

.flag-uk {
    width: 2rem;
}

/* Nav */
.TemplateMenu a {
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    color: rgb(var(--gray-dark-color));
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    .header-logo a {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
  Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(var(--black-color), .3);
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section .section-title {
    font-size: 6rem;
    font-weight: 400;
    max-width: 70rem;
    color: rgb(var(--white-color));
}

.top-section p {
    max-width: 55rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-title {
        font-size: 3rem;
    }
}

/* Ridtur
========================================================================== */
.section-tour {
    background-image: url("/assets/images/lappdalsislandshastar-ridtur-mamma-son-2000px.jpeg");
}

/* International
========================================================================== */
.section-international {
    background-image: url("/assets/images/hastar-2000px.jpeg");
}

/* Kontakt
========================================================================== */
.section-contact .layout-2 .col-0 {
    padding: 5rem 10rem;
    align-content: center;
    background-color: rgb(var(--secondary-color));
}

@media only screen and (max-width: 780px) {
    .section-contact .layout-2 .col-0 {
        padding: 4rem 2rem;
        background-color: rgb(var(--secondary-color));
    }
}

/* ==========================================================================
  Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 40rem;
}

.hero .section-block-wrapper {
    width: 100%;
}

.hero .section-title {
    font-size: 6rem;
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 4rem;
    }
}

/* Tva textkolumner
========================================================================== */
.split-info .split-content {
    width: calc(50% - 1rem);
}

/* margins och paddings */
.split-info .ml-1 {
    margin-left: 1rem;
}

.split-info .mr-1 {
    margin-right: 1rem;
}

.split-info .split-content {
    padding: 8rem 15rem 8rem 15rem;
}

@media screen and (max-width: 1400px) {
    .split-info .split-content {
        padding: 5rem;
    }
}

@media screen and (max-width: 1100px) {
    .split-info .split-content {
        width: 100%;
        padding: 3rem 2rem;
    }

    .split-info .ml-1 {
        margin-left: 0rem;
    }

    .split-info .mr-1 {
        margin-right: 0rem;
    }

    .split-info .section-block {
        padding-bottom: 3rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(var(--white-color));
    text-align: center;
    padding: 3rem 5rem 1rem;
}

.footer li,
.footer p,
.footer a {
    color: rgb(var(--black-color), 0.6);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--black-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.4rem;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}