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

:root {
    --primary-color: #360836;
    --secondry-color: #ff0048;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    font-family: 'Raleway';
    direction: ltr;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

nav {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    font-size: 17px;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--secondry-color);
}

.landing {
    background-image: url('../images/bg-landing.png');
    background-size: cover;
    background-attachment: fixed;
    min-height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.landing h1 {
    font-size: 50px;
    font-style: italic;
    margin: 0;
}

.landing p {
    font-size: 30px;
    margin: 20px 0;
    font-family: Arial;
    margin: 0 0 100px;
    letter-spacing: 5px;
}

.landing span {
    line-height: 1.5;
}

.landing ul {
    margin-top: 20px;
}

.landing ul li {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.landing ul li:nth-child(even) {
    margin: 15px 0;
}

.section-title {
    position: relative;
}

.section-title h2 {
    background-color: var(--secondry-color);
    color: #fff;
    padding: 10px 30px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title h2::before {
    content: '';
    border: 20px solid transparent;
    border-top-color: var(--secondry-color);
    position: absolute;
    bottom: -40px;
    left: 50%;
    margin-left: -20px;
}

.works {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.works .work img {
    width: 100%;
    height: 100%;
}

.meet-the-folks {
    padding-bottom: 40px;
}

.meet-the-folks h3 {
    text-align: center;
    color: var(--secondry-color);
    margin: 60px 0 40px;
    font-size: 30px;
    text-transform: capitalize;
}

.meet-the-folks .row {
    display: grid;
    margin: auto;
}

@media (min-width: 768px) {
    .meet-the-folks .row {
        width: 70%;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}

.meet-the-folks .meet-the-folk {
    padding: 20px;
    text-align: center;
}

.meet-the-folks .meet-the-folk img {
    width: 100%;
}

.meet-the-folks .meet-the-folk h4 {
    color: var(--secondry-color);
    font-size: 30px;
    margin: 20px 0 10px;
}

.meet-the-folks .meet-the-folk h4::first-letter {
    text-transform: uppercase;
}

.meet-the-folks .meet-the-folk p {
    text-transform: capitalize;
    color: grey;
    font-size: 17px;
}

.meet-the-folks a {
    width: fit-content;
    display: block;
    background-color: #333;
    color: #fff;
    padding: 5px 40px;
    font-size: 17px;
    text-transform: uppercase;
    margin: 40px auto 0;
    font-size: 20px;
}

.services {
    background-image: url('../images/bg-services.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0 20px;
}

@media (min-width: 992px) {
    .services .row {
        display: flex;
        flex-wrap: wrap;
        width: 80%;
        margin: auto;
    }
}

.services .service {
    color: #fff;
    padding: 20px;
}

@media (min-width: 992px) {
    .services .service {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .services .service:nth-child(2) {
        padding-top: 200px;
    }
}

.services .service h3 {
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.services .service p {
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.services .service ul {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.services .service ul li {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 15px;
}

.services button {
    background-color: #fff;
    color: #000;
    display: block;
    width: fit-content;
    margin: 20px auto;
    font-size: 20px;
    text-transform: capitalize;
    padding: 10px 50px;
}

footer {
    background-color: #eee;
    padding: 30px 15px;
    text-align: center;
}

footer p {
    text-transform: capitalize;
    color: #333;
    line-height: 1.5;
}

footer p a {
    color: var(--secondry-color);
}