.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 155px;
}

.content {
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    background: #f6f5f2;
}

.content__info,
.content__carousel {
    width: 50%;
}

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

.content__info-content {
    height: 100%;
    padding: 30px 0;
    display: flex;
    width: 80%;
    max-width: 500px;
    flex-direction: column;
    justify-content: space-evenly;
}

.content__title {
    font-family: miller-display, serif;
    font-weight: 300;
    font-size: 35px;
    line-height: 45px;
    color: #000000;
}

.content__subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 23px;
    color: #000000;
    mix-blend-mode: normal;
    opacity: 0.5;
}

.content__tabs {
    height: 210px;
    max-width: 450px;
    background: white;
}

.content__tab {
    float: left;
    padding: 25px;
    height: calc(100% - 45px);
    flex-wrap: wrap;
    align-content: space-around;
    display: none;
}

.content__tab > div {
    width: 50%;
}

.content__tab.selected {
    display: flex;
}

.content__tab-name {
    font-family: miller-display, serif;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}

.content__tab-address {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    opacity: 0.6;
}

.content__tab-tel {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.5;
}

.content__tab-telephone {
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    opacity: 0.6;
}

.content__tab-telephone a {
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    color: #000000;
}

.content__tabs-button {
    font-family: "Open Sans", sans-serif;
    display: flex;
    float: left;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 50%;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.5;
    cursor: pointer;
    background: #ede9e2;
}

.content__tabs-button.selected {
    cursor: default;
    background: white;
}

.content__contact {
    display: flex;
    align-items: center;
}

.content__contact a {
    font-family: "Open Sans", sans-serif;
    margin-left: 10px;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.5px;
    color: #1f1f1f;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.content__carousel {
    position: relative;
    display: flex;
    justify-content: center;
}

.content__carousel-image {
    position: absolute;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.content__carousel-image--1 {
    background-image: url("../images/baron-gros.png");
}

.content__carousel-image--2 {
    display: none;
    background-image: url("../images/george-romney.png");
}

.content__carousel-controls {
    position: absolute;
    width: 70%;
    height: 60px;
    background: black;
    bottom: 55px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.content__carousel-controls-arrow {
    position: relative;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.content__carousel-name {
    font-family: miller-display, serif;
    font-size: 15px;
    line-height: 22px;
    color: #ffffff;
}

.content__carousel-name--2 {
    display: none;
}

.content__carousel-controls-left-arrow,
.content__carousel-controls-right-arrow {
    border: solid white;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 7px;
}

.content__carousel-controls-left-arrow {
    transform: rotate(135deg);
}

.content__carousel-controls-right-arrow {
    transform: rotate(-45deg);
}

.footer {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer p {
    font-family: miller-display, serif;
    font-size: 21px;
    line-height: 22px;
    letter-spacing: 0.65px;
    color: #000000;
    margin-bottom: 10px;
}

.footer a {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.5px;
    color: #1f1f1f;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

body {
    position: relative;
    min-height: 940px;
    height: 100%;
}

main {
    height: calc(100% - 255px);
}

footer {
    position: absolute;
    width: 100%;
    bottom: 0%;
}

* {
    box-sizing: border-box;
}
