* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

p {
    font-weight: 300;
    color: #111;
}

#horseP {
    width: 80%;
}

.bannerText {
    color: #fff;
    text-shadow: 1px 1px #111;
}

/* vh is viewport height */ 
.banner {
    position: relative;
    width: 100%;
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("https://www.dropbox.com/s/79grnw9at3a4gqm/iceland.jpg?raw=1");
    background-size: cover;
}

.banner .content {
    max-width: 900px;
    text-align: center;
}

.banner .content h2 {
    font-size: 5em;
    color: #fff;
    text-shadow: 1px 1px #111;
}

.banner2 {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("https://www.dropbox.com/s/79grnw9at3a4gqm/iceland.jpg?raw=1");
    background-size: cover;
}

.banner2 .content {
    max-width: 900px;
    text-align: center;
}

.banner2 .content h2 {
    font-size: 5em;
    color: #fff;
    text-shadow: 1px 1px #111;
}

.btn {
    font-size: 1em;
    color: #fff;
    background: #015268;;
    display: inline-block;
    padding: 5px 15px;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
}

.btn:hover {
    letter-spacing: 4px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

header.sticky {
    background: #fff;
    padding: 10px 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,05);
}

.logo {
    color: #fff;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
}

header.sticky .logo {
    color: #111;
}

.logo span {
    color: #587983;
}

.nav {
    position: relative;
    display: flex;
}

.nav li {
    list-style: none;
    margin-left: 30px;
}

.nav li a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}

.nav li a:hover {
    color: #1b292e;
}

header.sticky .nav li a {
    color: #111;
}

header.sticky .nav li a:hover {
    color: #1b292e;
}

section {
    padding: 100px;
}

#quizLink {
    text-decoration: none;
    color: #015268;
}

#quizLink:hover {
    color: #880255;
    text-decoration-line: underline;
}

.row {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.row .col50 {
    position: relative;
    width: 48%;
}

.titleText {
    color: #111;;
    font-size: 2em;
    font-weight: 300;
}

.titleText span {
    color: #015268;
    font-weight: 700;
    font-size: 1.5em;
}

.row .col50 .imgBx {
    position: relative;
    width: 100%;
    height: 100%;
}

.row .col50 .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.horses .content {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-top: 40px;
}

.horses .content .box {
    width: 340px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.08);
}

.horses .content .box .imgBx {
    position: relative;
    width: 100%;
    height: 300px;
}

.horses .content .box .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horses .content .box .text {
    padding: 15px 0 5px;
}

.horses .content .box .text h3 {
    font-weight: 400;
    color: #111;
}

.housing .content {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-top: 40px;
}

.housing .content .box {
    width: 340px;
    margin: 20px;
    border: 15px solid #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.08);
}

.housing .content .box .imgBx {
    position: relative;
    width: 100%;
    height: 300px;
}

.housing .content .box .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.housing .content .box .text {
    padding: 15px 0 5px;
}

.housing .content .box .text h3 {
    font-weight: 400;
    color: #111;
}

.contactForm {
    padding: 75px 50px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 500px;
    margin-top: 50px;
}

.contactForm h3 {
    color: #111;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
    width: 100%;
    border: 1px solid;
    padding: 10px;
    color: #111;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    resize: none;
}

.contactForm .inputBox input[type="submit"] {
    font-size: 1em;
    color: #fff;
    background: #015268;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
    max-width: 100px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

footer {
    margin: 100px;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    font-weight: 300;
    margin: 0px;
    padding: 10px;
    font-size: 20px;
    background-color: #444;
    color: #fff;
}

.question {
    font-size: 30px;
    margin-bottom: 10px;
}

.answers {
    margin-bottom: 20px;
    text-align: left;
    display: inline-block;
}

.answers label {
    display: block;
    margin-bottom: 10px;
}

.quizBtn {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    background-color: #279;
    color: #fff;
    border: 0px;
    border-radius: 3px;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 80px;
}

.quizBtn:hover {
    background-color: #38a;
}

.slide {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

.active-slide {
    opacity: 1;
    z-index: 2;
}

.quiz-container {
    position: relative;
    height: 200px;
    margin-top: 40px;
}
