* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color:  black;
}

html {
    font-size: 100%;
}

.uppercase {
    text-transform: uppercase;
}

.navbar-image {
    width: 7rem;
}

.primary-header {
    border-bottom: solid 2px #fff;
}


.hero-container {
    position: relative;
    color: #fff;
    display: flex;
    height: 80vh;
    padding-bottom: 0;
}

.hero-image {
    background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,1)), url('images/hero.png');
    background-color: black;
    background-position: center;
    background-size: cover;
    width: 100vw;
    z-index: -1;
}

.company-name {
    font-family: sans-serif;
    font-weight: bold;
    color: #dd322a;
}

.hero-text {
    width: 100%;
    position: absolute;
    margin: 5rem 0 0 1rem;
    margin-top: 8rem;
}

h1 {
    font-weight: 600;
    font-size: 3.2rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-weight: normal;
    line-height: 2.2rem;
    margin-top: 1rem;
    width: 80%;
}

button span {
    font-weight: 600;
}

.service-wrapper {
    color: black;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-wrapper img {
    width: 100px;
}

.head-text {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #dd322a;
}

.service-box {
    background: #fff;
    padding: 45px 30px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: .3s;
    height: 100%;
    margin-right: 0;
    width: auto;
    overflow-y: auto;
}

.service-box:hover {
    border: 4px solid #dd322a;
    transform: translateY(-10px);
}

.service-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-box ul {
    padding-left: 20px;
}

.service-box li {
    font-size: 0.9rem;
}


.service-box p {
    font-size: 14px;
    line-height: 26px;
}

.row {
    width: 100%;
}

ul {
    list-style-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23DD322A"><path d="M9 19c-.26 0-.51-.1-.71-.29l-6-6A.996.996 0 1 1 3.7 11.3l5.29 5.29L20.28 5.3a.996.996 0 1 1 1.41 1.41l-12 12c-.2.2-.45.29-.71.29Z"></path></svg>');
}

li::marker {
    font-size: 50px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
}

.sub-text {
    font-size: 1.2rem;
}

.sub-text span {
    color: #dd322a;
}

.form-head {
    color: #fff;
}

.form-head h2 {
    color: #dd322a;
    font-weight: 700;
}

label {
    color: #fff;
}

.required {
    color: #dd322a;
}

#reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#reviews h2 {
    color: #dd322a;
    font-weight: 700;
    text-transform: uppercase;
}



footer {
    /* background-color: rgb(248, 249, 250); */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    bottom: 4rem;
    width: 170px;
    display: flex;
    justify-content: center;
}

.logo-container a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: .1rem solid ;
    border-radius: 50%;
    font-size: 20px;
    z-index: 1;
    overflow: hidden;
    color: #dd322a;
    margin-right: 1rem;
}


.logo-container a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.538);
    z-index: -1;
    transition: .5s;
}

.logo-container a:hover::before {
    width: 100%;
}
 
@media (min-width: 1100px) {
    .nav-link {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-right: 2rem;
    }
    .hero-text {
      width: auto;
      margin-top: 20rem;
      margin-left: 5rem;
    }
    .hero-text h1 {
        font-size: 7vw;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-text button {
        width: 500px;
    }
    .hero-text button span {
        font-size: 2rem;
    }
    .service-box img{
        width: 200px;
    }
    .service-box h2 {
        font-size: 2rem;
    }
    .service-box ul li {
        font-size: 1.2rem;
        background-size: 200px;
    }
  }

@media (min-width: 1100px) {
    .service-wrapper {
        margin-top: 15rem;
    }
  }
  
@media (min-width: 992px) {
    .service-box {
        height: 100%; /* Adjust the height as needed */
        width: auto;
    }
    .service-box img {
        max-height: 150px; /* Adjust the image height as needed */
        width: auto;
    }
}

@media (max-width: 375px) {
    .service-wrapper {
        margin-top: 5rem;
    }
}

@media screen and (orientation: landscape) {
    .service-wrapper {
        margin-top: 22rem;
    }
}