* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    width: 100%;
    background-image: linear-gradient(rgba(142, 53, 55, 0.63), rgba(142, 53, 55, 0.63)),url(Images/IMG_9644.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
}

nav {
    max-height: 50px;
    background-color: #8e3537;
    display: flex;
    padding: 30px;
    justify-content: space-between;
    align-items: center;
    width: auto;
}

nav img {
    width: auto;
    max-width: 100px;
}

.nav-links {
    flex: 1;
    text-align: right;
    font-weight: bold;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}


.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #d35759;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
    font-weight: 700;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #d35759;
    background: #d35759;
    transition: 0.5s;
}

nav .fa {
    display: none;
}

@media(max-width: 700px) {
    .text-box h1 {
        font-size: 55px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: absolute;
        background-color: #d35759;
        height: 222vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        display: block;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
}

.services-offered {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
}

.services-offered h1 {
    font-size: 36px;
    font-weight: 700;
}

.services-offered p {
    color: rgb(92, 92, 92);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: center;
}

.services-offered-col {
    flex-basis: 31%;
    background-color: #d35759;
    border-radius: 10px;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.services-offered-col h3 {
    text-align: center;
    font-weight: 700;
    margin: 10px 0;
    color: white;
}

.services-offered-col p {
    color: white;
    font-weight: 600;
}

@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

.image-container {
    width: auto;
    height: 225px;   
}

.image-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    background-color: #8e3537;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.footer p {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.icons .fa {
    color:white;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}