@font-face {
    font-family: 'Candara', sans-serif;
    src: url('fonts/Candara-Bold.woff2') format('woff2'),
        url('fonts/Candara-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* CSS vars */

:root { 
    --clr-primary400: #B5C4A4; 
    --clr-primary500:  #AAB991;
    --clr-secondary100: #E3EEF1;
    --clr-secondary200: #B0C9D3;
    --clr-secondary500: #115776;
    --clr-greyscale100: #FAFAFA;
    --clr-greyscale200: #E5E5E5;
    --clr-greyscale300: #CCCCCC;
    --clr-greyscale400: #B3B3B3;
    --clr-greyscale500: #999999;
    --clr-greyscale600: #7F7F7F;
    --clr-greyscale700: #666666;
    --clr-greyscale800: #4C4C4C;
    --clr-greyscale900: #252525;
  
    --clr-text: var(--clr-greyscale900);
    --clr-text-light: var(--clr-greyscale600);
    --clr-text-reverse: white;
  
    /* widths */
    --width-content: 1400px;
    --width-gutter: 60px;
    /* spacing */
    --b-space: 120px;
    --b-space-lg: 170px;
    --b-space-sm: 74px;
    /* font family */
    --ff-body: 'Candara', sans-serif;
    --ff-heading: var(--ff-body);
    /* font sizes */
    --fs-h1: 4.75rem;
    --fs-h2: 2rem;
    --fs-p: 1rem;
    --fs-p-lg: 1.125rem;
    --fs-p-sm: .875rem;
}
  
@media screen and (max-width: 980px) {

    :root {
        --width-gutter: 3.75rem;
    }

}

@media screen and (max-width:600px) {
    :root {
        --width-gutter: 1.5rem;

        /* font sizes */
        --fs-h1: 3rem;
        --fs-h2: 1.75rem;
        /* spacing */

        --b-space: 60px;
        --b-space-sm: 32px;
        --b-space-lg: 88px;
    }
} 

@media screen and (max-width:480px) {
    :root {
        --fs-h1: 2.3rem;
    }
}

/* utilities */

.u-wc {
    width:100%;
    max-width: var(--width-content);
    padding: 0 var(--width-gutter);
    margin:0 auto;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}

/* base styles */

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body {
    background: white;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: var(--fs-p);
    margin: 0;
    color: var(--clr-text);
    position: relative;
    line-height: 1.6;
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
}

.u-primary500-color {
    color: var(--clr-primary500);
}

.u-white-color {
    color: #ffffff;
}

.u-black-background-color {
    background: black;
}

.u-greyscale200-background-color {
    background-color: var(--clr-greyscale200);
}

b, strong {
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: .3s color;
}

img, svg {
    max-width: 100%;
    height: auto;
}


.content-wrap {
    overflow: clip;
}

p, h1, h2, h3, h4, h5, h6, ul{
    margin:0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
}

h1 a, h2 a, h3 a, h4 a, h5 a {
    text-decoration: none;
}

h1 {
    font-size: var(--fs-h1);
    line-height: .9;
    margin: 0 0 .5rem 0;
}

h1 + h2 {
    margin-top: 0;
}

h2 {
    font-size: var(--fs-h2);
    line-height: 1.2;
    margin: 1.5rem 0 1rem;
    color: var(--clr-primary500);
}

h2:first-child {
    margin-top: 0;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
    margin-bottom: 0;
}

p {
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 600px) {
    h1 {
        line-height: 1.2;
    }
}

main {
    overflow-x: clip;
}

.mho-header {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
}

.mho-header__logo {
    margin: 0 auto;
    padding: 16px 24px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    background: white;
    width: fit-content;
}


.mho-header__logo img {
    display: block;
}

@media screen and (max-width: 600px) {
    .mho-header__logo img {
        max-width: 120px;
    }  
}

.mho-hero {
    background: black;
    min-height: 80vh;
    position: relative;
    display: flex;
    padding: calc(var(--b-space) + 72px) 0 calc(var(--b-space) + 60px);
}

.mho-hero:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.4);
}

.mho-hero:before {
    content: '';
    position: absolute;
    z-index: 4;
    bottom: -1px;
    left: 0;
    right: -2px;
    height: 29px;
    background: url('imgs/wavepath.svg') repeat center center / 100% 29px;
}

@media screen and (max-width: 600px) {
    .mho-hero:before {
        background-size: 200% 29px;
    }
}

.mho-hero .u-wc {
    display: flex;
    flex-grow: 1;
}

.mho-hero__content {
    margin: auto;
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.mho-hero__content h1 {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,.5);
}

.mho-hero__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    
}

.mho-bgSlider {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mho-bgSlider .owl-stage-outer, .mho-bgSlider  .owl-stage, .mho-bgSlider .owl-item {
    height: 100%;
}

.mho-bgSlider__slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}

.mho-bgSlider__slide--1 {
    background-image: url('imgs/slide-1.jpg');
}

.mho-bgSlider__slide--2 {
    background-image: url('imgs/slide-2.jpg');
}

.mho-bgSlider__slide--3 {
    background-image: url('imgs/slide-3.jpg');
}

.mho-bgSlider__slide--4 {
    background-image: url('imgs/slide-4.jpg');
}

.mho-newsletter {
    max-width: 550px;
    margin: 24px auto 0;
}

.mho-newsletter p {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,.8);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (max-width: 480px) {
    .mho-newsletter p {
        font-size: 1.125rem;
    }
}

.mho-newsletter__inputs {
    display: flex;
    gap: 8px;
}

.mho-newsletter input[type="email"] {
    display: block;
    width: 100%;
    background: white;
    color: black;
    border-radius: 50px;
    padding: 12px 32px 10px;
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

.mho-newsletter input[type="submit"] {
    background: var(--clr-primary500);
    border: 1px solid var(--clr-primary500);
    padding: 12px 32px 10px;
    letter-spacing: .05em;
    border-radius: 100px;
    color: white;
    text-transform: uppercase;
    outline: none;
    font-weight: 700;
    font-size: inherit;
    font-family: inherit;
    flex-shrink: 0;
    transition: .3s background, .3s color, .3s border;
}

.mho-newsletter input[type="submit"]:hover {
    background: var(--clr-primary400);
    border: 1px solid var(--clr-primary400);
}

@media screen and (max-width: 480px) {
    .mho-newsletter__inputs { 
        flex-direction: column;
    }
}

.mho-btn {
    background: var(--clr-primary500);
    border: 1px solid var(--clr-primary500);
    padding: 12px 32px 10px;
    letter-spacing: .05em;
    border-radius: 100px;
    color: white;
    text-transform: uppercase;
    transition: .3s background, .3s color, .3s border;
}

.mho-btn:hover {
    background: var(--clr-primary400);
    border: 1px solid var(--clr-primary400);
}

.mho-btn--secondary {
    background: var(--clr-secondary100);
    border: 1px solid var(--clr-secondary500);
    color: var(--clr-secondary500);
}

.mho-btn--secondary:hover {
    background: var(--clr-secondary200);
    border: 1px solid var(--clr-secondary500);
    color: var(--clr-secondary500);
}

.mho-content {
    text-align: center;
    padding: var(--b-space) 0;
}

.mho-content .u-wc {
    margin-top: -32px;
}

.mho-checkList {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 8px;
    text-align: left;
    margin: 40px auto;
    max-width: 1000px;
}

.mho-checkList:first-child {
    margin-top: 0;
}

.mho-checkList:last-child {
    margin-bottom: 0;
}


.mho-checkList li {
    padding: 0;
    margin: 0;
    width: calc((100% - 24px) / 2);
    font-size: 1.5rem;
    color: var(--clr-secondary500);
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.2;
}

.mho-checkList li:before {
    content: '';
    background: url('imgs/icon-check.png') center center / 28px 28px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    position: relative;
    top: -3px;
}

@media screen and (max-width: 800px) {
    .mho-checkList li {
        width: 100%;
        font-size: 1.3rem;
    }

    .mho-checkList li:before { 
        top: -1px;
    }
}

@media screen and (max-width: 600px) {
    .mho-checkList {
        margin: 24px auto;
    }
}