/*=======================================
            Fonts
========================================*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

.libre-baskerville-regular {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}

.libre-baskerville-bold {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
}

.libre-baskerville-regular-italic {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
}


/*=======================================
            Stuff
========================================*/


html * {
    box-sizing: border-box;
}

body {
    background-color: #A2B1A4;
    margin: 0;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}

.main {
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main .left,
.main .right {
    width: 50%;
    height: 100%;
}

/* Left */

.main .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main .left .inner {
    max-width: 700px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Logo */

.main .left .logo {
    margin-bottom: 65px;
}

.main .left .logo img {
    max-width: 325px;
}

.main .mobile-logo {
    display: none;
}


/* Text */

.main .left h1 {
    color: #1D1932;
    margin: 0 0 35px 0;
    font-size: 42px;
    line-height: 1.3;
}

.main .left .text-container {
    color: #1D1932;
    font-size: 20px;
    line-height: 1.5;
}

.main .left p {
    margin: 0 auto 30px;
    max-width: 560px;
}

.main .left .text-container a {
    color: #1D1932;
    text-decoration: underline;
}


/* Right */

.main .right {
    border-radius: 0;
}

.main .right .slick-list,
.main .right .slick-track {
    height: 100%;
}

.ss-caption-wrap,
.ss-paginate-wrap {
    display: none;
}

.ss-slide-stage,
.ss-slide {
    height: 100%;
    border-radius: 0 !important;
}

.smoothslides img {
    height: 90vh !important;
    width: auto;
    display: block !important;
}

/* @media only screen and (max-width: 1500px) {

    .main .left .logo img {
        max-width: 200px;
    }

} */

@media only screen and (max-width: 1250px) {

    .main .left .inner {
        width: 100%;
        padding: 0 30px;
    }

    .main .left .logo {
        margin-bottom: 40px;
    }

    .main .left .logo img {
        max-width: 250px;
    }

    .main .left .text-container {
        font-size: 16px;
    }

    .main .left h1 {
        font-size: 34px;
    }

}


@media only screen and (max-width: 992px) {

    .main {
        align-items: unset;
        height: auto;
    }

    .main .left {
        width: 100%;
        height: auto;
        order: 2;
    }

    .main .left .inner {
        padding: 40px 30px;
    }

    .main .right {
        width: 100%;
        height: 600px;
        order: 1;
    }

    .smoothslides img {
        width: 100% !important;
        height: 650px !important;
        position: relative;
        object-fit: cover;
        right: 0;
        top: 0;
    }

}

@media only screen and (max-width: 600px) {

    .main .left .logo {
        display: none;
    }

    .main .mobile-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 0;
        padding: 20px 0;
        width: 100%;
    }

    .main .mobile-logo img {
        width: 150px;
        height: auto;
    }

    .main .left .logo img {
        max-width: 120px;
    }

    .main .right {
        height: 500px;
    }

    .main .left .inner {
        padding: 30px;
    }

}

@media (max-width: 450px) {

    .main .left h1 {
        font-size: 30px;
    }

    .smoothslides img {
        width: auto !important;
        height: 500px !important;
        position: relative;
        top: 0;
    }

}