body, p, h1, h2 {
    margin: 0;
}

.logo {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header {
    height: 450px;
    width: 100%;
    margin: 0;
    background-image: url('header.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right calc(44.1683vw - 1291px) top 50%;
    color: white;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.header-menu {
    margin-top: 10px;
}

.header-menu a {
    text-decoration: none;
    font-family: 'raleway', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: black;
    margin: 0 8px;
}

.header-open-icon, .header-navbar-mobile {
    display: none;
}

@media screen and (max-width: 1050px) {
    .header {
        background-image: url('header-mobile.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        height: 142vw;
    }

    .header-navbar {
        display: none;
    }

    .header-navbar-mobile {
        display: block;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0, 0.9);
        overflow-x: hidden;
        transition: 0.5s;
    }

    .header-menu {
        position: relative;
        top: 25%;
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

    .header-menu a {
        padding: 16px 0;
        text-decoration: none;
        font-size: 36px;
        color: #dedcdc;
        display: block;
        transition: 0.3s;
        white-space: nowrap;
        overflow: hidden;
    }

    .header-navbar-mobile a:hover, .header-navbar-mobile a:focus {
        color: #f1f1f1;
    }

    .header-open-icon {
         display: block;
         position: absolute;
         right: 25;
         top: 25;
    }

    .header-close-icon {
        position: absolute;
        padding: 0;
        text-decoration: none;
        color: #dedcdc;
        top: 10px;
        right: 30px;
        font-size: 68px;
    }
}

.header-title {
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 90px;
    width: 600px;
    font-weight: 700;
    margin-top: 50px;
}

.header-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    margin-top: 20px;
}

@media screen and (max-width: 1050px) {
    .header-title {
        width: 60%;
        font-size: 1.75em;
        line-height: normal;
        color: black;
    }
    .header-subtitle {
        font-size: 1.2rem;
        color: black;
    }
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-header {
    display: flex;
    justify-content: space-around;
    width: 700px;
    margin: 30px 0;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

@media screen and (max-width: 1050px) {
    .intro-header {
        width: 100%;
    }
}

.intro-header img {
    border-radius: 50%;
    width: 149px;
    height: 187px;
    object-fit: cover;
}

.intro-header h1 {
    font-size: 40px;
    font-weight: 400;
    margin: 50px 20px 0 0;
}

.intro-header p {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    margin: 15px 20px 0 0;
}

.intro-text {
    width: 800px;
    font-family: 'raleway', sans-serif;
    font-size: 15px;
    text-align: center;
    line-height: 28.125px;
}

@media screen and (max-width: 1050px) {
    .intro-header img {
        padding: 18px;
        border-radius: 50%;
        width: 149px;
        height: 187px;
        object-fit: cover;
    }

    .intro-header h1 {
        font-size: 2rem;
        font-weight: 400;
        margin-top: 50px;
    }

    .intro-header p {
        font-size: 18px;
        font-weight: 400;
        font-style: italic;
        margin: 15px 20px 0 0;
    }

    .intro-text {
        width: 80%;
        font-family: 'raleway', sans-serif;
        font-size: 15px;
        text-align: center;
        line-height: 28.125px;
    }
}

.intro-text a, .intro-text a:visited {
    color: black;
}

.conditions-header {
    margin-top: 20px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
    radial-gradient(circle at 84.71612294514973% 74.20097351074219%, #71547D 0%, 17.5%, rgba(113,84,125,0) 35%),
    radial-gradient(circle at 94.35384114583333% 89.61588541666666%, #4682B4 0%, 20%, rgba(70,130,180,0) 40%),
    radial-gradient(circle at 6.503906249999999% 88.037109375%, rgba(113,84,125,0.99) 0%, 25%, rgba(113,84,125,0) 50%),
    radial-gradient(circle at 6.165364583333333% 12.617187499999998%, #757575 0%, 42%, rgba(117,117,117,0) 70%),
    radial-gradient(circle at 93.6865234375% 11.42578125%, #B9B9B9 0%, 42%, rgba(185,185,185,0) 70%),
    radial-gradient(circle at 48.9013671875% 49.521484375%, #FFFFFF 0%, 100%, rgba(255,255,255,0) 100%);
}

.conditions-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: white;
}

@media screen and (max-width: 1050px) {
    .conditions-header {
        height: 66px;
    }

    .conditions-header h1 {
        font-size: 2rem;
    }
}

.conditions-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: 1000px;
    margin: 40px auto;
}

.conditions-container-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

.conditions-card {
    flex: 0 0 auto;
    background-color: #BFBFBF;
    padding: 60px 35px;
}

.conditions-card-header {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.conditions-card-text {
    font-family: 'raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

@media screen and (max-width: 1050px) {
    .conditions-container {
        width: 100%;
        flex-direction: column;
        margin: 20px 0;
        gap: 8px;
    }

    .conditions-card {
        margin: 2px;
        padding: 20px 30px;
    }

    .conditions-container-column {
        gap: 8px;
    }
}

.footer-hours {
    background-color: #F7F7F7;
    text-align: center;
    line-height: 28px;
    padding: 30px;
}

.footer-hours h1 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
}

.footer-hours h2 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    margin: 5px 0 10px 0;
}

.footer-hours p {
    font-family: 'raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.footer-links {
    font-family: 'raleway', sans-serif;
    font-size: 15px;
    text-align: center;
    margin: 20px;
}

.footer-links > * {
    margin: 20px;
}

.footer-links a {
    color: black;
    text-decoration: none;
}

.references {
    background-color: #4D4D4D;
    height: 450px;
    padding: 30px;
}

.references-container {
    width: 1200px;
    margin: auto;
}

.carousel-inner {
    padding: 40px;
    height: 400px;
}

.carousel-caption {
    margin-top: 20px;
    color: #fff;
    top: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 200;
    font-style: italic;
}

.carousel-3-placeholder {
    height: 50px;
}

@media screen and (max-width: 1050px) {
    .references {
        padding: 30px 5px;
        height: auto;
    }

    .references-container {
        width: 100%;
    }

    .carousel-inner {
        padding: 10px;
    }

    .carousel-caption {
        margin-top: 0;
        padding: 0;
        font-size: 0.85rem;
    }

}

.services-title {
    background-color: #FAFAFA;
    padding: 40px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.services-title h1 {
    font-size: 56px;
    font-weight: 400;
}

.services-title p {
    font-size: 50px;
    font-weight: 400;
    font-style: italic;
}

.services-steps {
    display: flex;
    background-color: #d6aed6;
    height: 500px;
    justify-content: center;
    padding-top: 40px;
}

.services-steps-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    margin: 0 5px;
    width: 270px;
    height: 400px;
}

.services-steps-tile-number {
    width: 90px;
    height: 90px;
    background-color: #AED6D6;
    border-radius: 50%;
    font-size: 38px;
    text-align: center;
    margin-top: -20px;
}

.services-steps-tile-number p {
    padding-top: 15px;
}

.services-steps-tile h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin: 12px 0 24px 0;
}

.services-steps-tile-text {
    font-family: 'raleway', sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 28px;
    width: 242px;
}

@media screen and (max-width: 1050px) {

    .services-title {
        margin: 0;
        padding: 15px 20px;
    }

    .services-title h1 {
        font-size: 28px;
    }
    
    .services-title p {
        font-size: 24px;
        padding: 0 40px;
    }

    .services-steps {
        flex-direction: column;
        height: auto;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 10px;
    }
    
    .services-steps-tile {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px 0;
        padding: 10px 0;
        width: 85%;
        height: auto;
    }
    
    .services-steps-tile-number {
        width: 100px;
        height: 100px;
        box-shadow: 0.72px 0.69px 4px 0px rgba(0, 0, 0, 0.6);
    }

    .services-steps-tile h2 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
    }
    
    .services-steps-tile-number p {
        padding-top: 20px;
    }

    .services-steps-tile-text {
        font-family: 'raleway', sans-serif;
        font-size: 18px;
        line-height: 28px;
        width: 75%;
    }
}

.footer-contact {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

