/* ----------------------------- */
/* BASIC SETUP */
/* ----------------------------- */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html,
body {
    color: #2F2F2F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1em;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ----------------------------- */
/* RESUSABLE COMPONENTS */
/* ----------------------------- */


/* Layout */

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.flex-container-reversed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.three-col {
    width: 33%;
}

.four-col {
    width: 24.2%;
}

.divider {
    height: 1px;
    background-color: #5C9EAD;
    max-width: 1140px;
    margin: 0 auto;
}

/* Components */

.notice-container {
    margin-top: 48px;
    padding: 24px;
    background-color: rgba(92, 158, 173, 0.10);
    text-align: left;
}

.notice-container li {
    list-style: none;
    margin-bottom: 24px;
}

.notice-container span {float: right;}

.notice-container .divider {margin: 24px 0px;}

.notice {font-size: 0.8em;}

.notice h3 {margin: 0 0 16px 0;}

.white-box {
    background-color: #fff;
    padding: 24px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.05);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.white-box p {-webkit-box-flex: 2;-ms-flex: 2;flex: 2}

.white-box h3 {margin: 12px 0 0 0;}

.quote {
    font-size: 4em;
    font-weight: 700;
    color: #E39774; 
}

.white-box:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.1);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

/* Links and buttons */

.link:link,
.link:visited {
    color: #326273;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent; 
    font-weight: 600;
    -webkit-transition: border-bottom 0.2s;
    -o-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.link:hover,
.link:visited {
    color: #326273;
    padding-bottom: 4px;
    border-bottom: 2px solid #326273;
}

.button:link,
.button:visited {
    padding: 8px 24px;
    margin-top: 10px;
    color: #326273;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid #326273;
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.button:hover,
.button:active {
    padding: 8px 24px;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    background-color: #326273;
}

/* Sections */

section {padding: 80px 0;}

.left-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 24px;
}

.right-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 24px;
}

.background-img {
    background-size: cover;
}

section h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 24px;
}

section h3 {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 24px;
}

section p {
    line-height: 1.75;
    margin-bottom: 16px;
}

section p:last-child {margin-bottom: 0px;}

.img-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.light-grey {
    background-color: #F8F8F8;
    text-align: center;
}

.animate__animated.animate__fadeInUp {
    animation-duration: 1s;
}

/* ----------------------------- */
/* HEADER */
/* ----------------------------- */

/* Main-nav */
nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 36px 0;
}

.logo a {
    list-style: none;
    font-size: 1.250em;
    font-weight: 600;
    color: #2F2F2F;
    text-decoration: none;
}

.main-nav {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   list-style: none;
}

.main-nav li a {
    margin-left: 48px;
    font-weight: 600;
    color: #BCBCBC;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.main-nav li a:hover, .main-nav li a:active {color: #2F2F2F;}

.main-nav .active {
    color: #2F2F2F;
    padding-bottom: 4px;
    border-bottom: 2px solid #5C9EAD;
}

/* Mobile-nav */

.burger-icon {cursor: pointer;}

nav a.burger-icon {
    display: none;
    font-size: 2rem;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    overflow-y: hidden;
    background-color: rgba(255, 255, 255);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.overlay-nav {
        position: relative;
        top: 25%;
        width: 100%;
        margin-top: 30px;
}

.overlay-nav a {
    display: block;
    font-size: 2em;
    text-align: center;
    font-weight: 600;
    color: #BCBCBC;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    margin-bottom: 24px;
    -webkit-transition: border-bottom 0.2s;
    -o-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
    -webkit-transition: font-weight 0.2s;
    -o-transition: font-weight 0.2s;
    transition: font-weight 0.2s;
}

.overlay-nav .active {color: #2F2F2F;}

.overlay .close-icon {
    position: absolute;
    top: 36px;
    right: 4%;
    font-size: 2rem;
    color: #2F2F2F;
}

/* Hero-box */

.hero-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.hero-box h1 {
    margin: 0;
    margin-bottom: 16px;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    color: #fff;
    font-size: 3em;
}

.hero-box span {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.25em;
}

/* Page-header */

.page-header {
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.page-header h1 {
    font-size: 3em;
}

/* ----------------------------- */
/* OUR CATTERY-SECTION */
/* ----------------------------- */

.our-cattery p:nth-child(3) {
    margin-bottom: 36px;
}

.our-cattery .img-col div {
    height: 49.6%;
}

/* ----------------------------- */
/* ACCOMMODATION */
/* ----------------------------- */

.accommodation .img-col {
    height: 600px;
}

.accommodation .flex-container {
    height: 49.6%;
}

.accommodation .flex-container div {
    overflow: hidden;
    background-color: #fff;
}

.accommodation img {
    opacity: 0.9;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.accommodation img:hover {
    opacity: 1;
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

/* ----------------------------- */
/* OUR SERVICE */
/* ----------------------------- */

.our-service p {
    margin-bottom: 24px;
}
.our-service ul {
    margin-left: 16px;
}

.our-service li {
    margin-bottom: 24px;
}

.our-service li:last-child {
    margin-bottom: 0;
}

.our-service .background-img {
    background-position: 0% 70%;
}

/* ----------------------------- */
/* PRICES */
/* ----------------------------- */

.small-copy:last-of-type {
    margin: 36px 0;
}

.price-list {
    margin: 24px 0;
}

.food {
    color: #E39774;
    font-size: 1.125em;
    margin-bottom: 0;
}

.price {
    font-size: 2.5em;
    font-weight: 500;
    margin-bottom: 0;
}

.price-list span {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgb(189, 189, 189);
}

.price-list .divider {
    background-color: #EAEAEA;
    margin: 24px 0px;
}

/* ----------------------------- */
/* GET IN TOUCH */
/* ----------------------------- */

.get-in-touch ul {
    list-style: none;
}

.get-in-touch li {
    margin-bottom: 24px;
}

.get-in-touch .notice-container {
    margin-top: 0;
}

/* ----------------------------- */
/* FOOTER */
/* ----------------------------- */


footer {
    padding: 40px 0;
    background-color: #326273;
    font-size: 0.8em;
    color: #fff;
}

footer p {
    line-height: 2em;
    margin-bottom: 16px;
}

footer a:link,
footer a:visited {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent; 
    -webkit-transition: border-bottom 0.2s; 
    -o-transition: border-bottom 0.2s; 
    transition: border-bottom 0.2s;
}

footer a:hover,
footer a:active {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #fff; 
    -webkit-transition: border-bottom 0.2s; 
    -o-transition: border-bottom 0.2s; 
    transition: border-bottom 0.2s;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 12px;
    text-align: right;
}

footer .divider {
    margin-top: 36px;
    margin-bottom: 36px;
    background-color: #fff;
}