.hero {
    padding: 3rem 0;
    height: 80vh;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: baseline;
}

.hero-content {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.hero h1 {
    color: white;
	text-shadow: 2px 2px 30px rgb(10 12 14 / 40%);
}

.hero-btn {
    display: flex;
    height: 8.625rem;
    padding: 1.22rem;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    background: var(--secondaryColor);
    border-radius: 0.25rem;
    color: white;
    min-width: 18rem;
    transition: 0.2s all;
	box-shadow: 2px 2px 30px rgb(10 12 14 / 40%);
}

.hero-btn:hover {
    filter: brightness(1.1);
}

.hero-btn span {
    display: flex;
    font-size: 16px;
    gap: 4rem;
    justify-content: space-between;
    color: #de9898;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
@media (min-width: 1399px) {
    .hero-btn span {
        font-size: 19px;
    }
}

.hero-btn span svg {
    width: 40px;
}

.hero-btn p {
    font-weight: 500;
    font-size: 2rem;
}

.service {
    display: flex;
    padding: 1.875rem 1.2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.875rem;
    border-radius: 1rem;
    border: 1px solid #061F40;
    background: #FFF;
    transition: 0.3s all;
}

.service:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 0 15px 0 #dfdfdf;
}

.service img {
    height: 50px;
}

.service p {
    line-height: 1.5rem;
    color: var(--primaryColor);
    text-align: center;
}

.why-content h2 { margin-bottom: 40px; }

.testimonial {
    padding: 0.5rem 0;
    margin: 0 auto;
    position: relative;
    color: white;
    text-align: center;
    max-width: 750px;
}

.testimonial p {
    font-size: 1.35rem;
    line-height: 150%;
    color: white;
    text-align: center;
    margin: 2rem 0;
}

.testimonial span {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial i {
    color: var(--secondaryColor);
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    list-style: none;
}

ul.slick-dots li button {
    background: white;
    border: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
}

ul.slick-dots li.slick-active button {
    background: var(--primaryColor);
}

.marquee-section {
    overflow: hidden;
}

.marquee {
    display: flex;
    /* overflow: hidden; */
    white-space: nowrap;
    position: relative;
    transition: transform 0.1s linear;
    justify-content: flex-start;
}
.reverse-marquee {
    justify-content: flex-end;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    margin-right: 2rem;
}

.marquee h2 {
    font-size: 5rem;
}

.marquee img {
    width: 10rem;
    height: 6rem;
    border-radius: 9.375rem;
    margin-left: 2rem;
    object-fit: cover;
}

.reverse-marquee img {
    margin-right: 0;
    margin-right: 2rem;
}