@font-face {
    font-family: MessinaRegular;
    src: url(../fonts/MessinaSans-Light.ttf);
}

@font-face {
    font-family: MessinaBold;
    src: url(../fonts/MessinaSans-Bold.ttf);
}

body {
    background-color: #121212;
    color: #fff;
    font-family: Helvetica, sans-serif;
    line-height: 1.5;
}

body,
section,
h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
}

section {
    padding: 96px 96px;
}

article {
    margin: auto;
    padding-bottom: 48px;
    max-width: 70%;
    min-height: 420px;
}

nav {
    text-align: center;
    padding: 24px 0;
    border-bottom: 0.5px solid #121212;
}

nav,
.content-intro,
.content-services,
.carousel,
.content-hello {
    background-color: #1b1b1b;
}

.content-intro,
.content-services,
.carousel {
    background-color: #1b1b1b;
}

.carousel-inner {
    height: inherit;
}

a {
    margin: 0;
    padding: 0;
    color: #d66e6e;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #cc4444;
}

h1 {
    margin-bottom: 32px;
    text-align: left;
    font-size: 96px;
    line-height: 1.2;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 400;
    font-style: normal;

}

h2 {
    margin-bottom: 32px;
    text-align: left;
    font-size: 64px;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    margin-bottom: 16px;
    text-align: left;
    font-size: 24px;
    font-family: "p22-mackinac-pro", serif;
    font-weight: 400;
    font-style: normal;
    color: #f5f5f5;
}

h4 {
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
    font-size: 24px;
    font-family: MessinaRegular, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    color: #f5f5f5;
}

p {
    margin-bottom: 16px;
    font-size: 18px;
    font-family: MessinaRegular, Helvetica, sans-serif;
    color: #e1e1e1;
}

ul {
    margin-bottom: 32px;
}

li {
    font-size: 18px;
    font-family: MessinaRegular, Helvetica, sans-serif;
    color: #e1e1e1;
    margin-bottom: 8px;
}

img {
    max-width: 100%;
    opacity: 0.9;
    scale: 0.95;
    transition: all 0.5s ease-in-out;
}

img:hover {
    opacity: 1;
    scale: 1;
}

.color-add {
    color: #d66e6e;
}

.color-punch {
    color: #d66e6e;
    font-style: italic;
}

.bold-punch {
    color: #d66e6e;
    font-family: MessinaBold;
}

.italic-add {
    font-style: italic;
}

.content-inner-left {
    display: grid;
    grid-template-columns: 4fr 1fr;
}

.content-inner-right {
    display: grid;
    grid-template-columns: 1fr 4fr;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.footer p {
    text-align: center;
    opacity: 0.5;
}

@media all and (max-width: 1024px) {
    .content-inner-left,
    .content-inner-right,
    .gallery {
        display: block;
    }

    section {
        padding: 48px 48px;
    }

    article {
        max-width: 80%;
    }

    .gallery img {
        margin-bottom: 24px;
    }
}

@media all and (max-width: 600px) {

    section {
        padding: 48px 24px;
    }

    h1 {
        font-size: 56px;
    }

    li {
        font-size: 16px;
    }

    article {
        max-width: 88%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        max-width: 4%;
    }
}