body {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    overflow: hidden;
    max-height: 1000px;
}

.hero-image {
    height: 100%;
    object-fit: cover;
}

.display-5 {
    font-size: 2.8rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
}

.text-danger {
    color: #ed1c24 !important;
}

/* Small text / Forms */
.btn {
    font-family: 'Roboto', sans-serif;
}

.btn-danger {
    background-color: #ed1c24;
    border-color: #ed1c24;
    border-radius: 0;
    padding: 13px 36px;
}

.email strong {
    font-weight: 600;
}

.email a {
    text-decoration: none;
    color: #231f20;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: #c9151b;
    border-color: #c9151b;
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 8rem;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 400;
}

.hero-content p {
    font-size: 22px;
    max-width: 990px;
    margin: auto;
    font-weight: 600;
}

.pl-5 {
    padding-right: 5rem;
}

.pl-6 {
    padding-right: 6rem;
}

.footer {
    background: #1b171c;
    border-bottom: 10px solid #e31e24;
}


.hello-text {
    font-family: "Playfair Display", serif;
    font-size: 90px;
    color: #fff;
    font-weight: 400;
}

.hello-text span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-40px);
    animation: letterMove .6s forwards;
}


@keyframes letterMove {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@media (min-width: 768px) and (max-width: 1024px) {

    .hero-section {
        height: 500px;
    }

    .hero-content {
        bottom: 20px;
    }

    .hero-content {
        bottom: 60px;
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 72px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 650px;
    }

    .logo img {
        width: 170px;
    }

    /* Page 1 */

    .display-4 {
        font-size: 2.8rem;
    }

    .row.align-items-center {
        row-gap: 40px;
    }

    .col-lg-5,
    .col-lg-7 {
        width: 100%;
    }

    .btn-danger {
        padding: 12px 30px;
    }



    /* Contact Page */

    .card-body {
        padding: 35px !important;
    }

    .form-control {
        height: 48px;
    }

    textarea.form-control {
        height: auto;
        min-height: 140px;
    }

    .btn-secondary {
        height: 55px;
        font-size: 18px;
    }

    /* Footer */

    .footer {
        padding: 60px 20px;
    }

    .footer img {
        width: 220px;
    }

    .footer h3 {
        font-size: 30px;
    }
}

@media(max-width:768px) {
    .hero-content {
        bottom: 20px;
    }

    body {
        font-size: 14px;
    }

    .h3,
    h3 {
        font-size: calc(1rem + .6vw);
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .p-5 {
        padding: 1rem !important;
    }

    .display-5 {
        font-size: calc(1.4rem + 2.1vw);
    }

    .btn-danger {
        margin-top: 10px !important;
    }

    .hero-section {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .pl-5 {
        padding-right: 0;
    }

    .pl-6 {
        padding-right: 0;
    }

    .hero-content p {
        font-size: 14px;
        padding: 0 20px;
        font-weight: 500;
    }

    .logo img {
        width: 150px;
    }

}