* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    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;
    margin-bottom: -50px;
}

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;
}

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: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        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: 100px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

p {
    color: black;
    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: 67%;
    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;
}

h3 {
    text-align: center;
    font-weight: 700;
    margin: 10px 0;
    color: white;
    font-size: 35px;
}

.services-offered-col p {
    color: white;
    font-size: 17px;
}

.services-offered-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.3);
}

@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;
}

.formcarry-container * {
    box-sizing: border-box;
      --color-blue: #d35759;
    --color-light-blue: #d35759e8;
    --color-gray: #e5e7eb;
    --color-dark-gray: #9da3ae;
    --color-pink: #d35759;
  }
  
  .formcarry-container {
    --c-width: 50%;
    --c-max-width: 500px;
  
    width: var(--c-width);
    max-width: var(--c-max-width);
    display: block;
    margin: 10vh auto 0 auto;
  }
  
  .formcarry-form label {
    display: block;
    padding: 12px 0 2px 0;
    letter-spacing: -0.2px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
  }
  
  .formcarry-form input,
  .formcarry-form textarea {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--color-gray);
    border: none;
    border: 4px solid var(--color-gray);
    outline: none;
    border-radius: 8px;
    color: var(--color-dark-gray);
  }
  
  .formcarry-form input:focus,
  .formcarry-form textarea:focus {
    background-color: #fff;
    color: var(--color-dark-gray);
  }
  
  .formcarry-form input:focus:required:invalid {
    border-color: var(--color-pink);
    background-color: #fff;
  }
  
  .formcarry-form button {
    display: block;
    margin-top: 12px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
      border-color: transparent;
    background-color: var(--color-blue);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
  
    transition: 300ms all;
  }
  
  .formcarry-form button:hover {
    background-color: var(--color-light-blue);
  }
  
  .formcarry-alert {
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-top: 12px;
    display: none;
  }
  
  .formcarry-alert.visible {
    display: block;
  }
  
  .formcarry-alert.success {
    background: #69cf9d;
  }
  
  .formcarry-alert.error {
    background: #de524c;
  }