.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-linkedin {
    width: fit-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.cta-linkedin img {
    width: 30px;
    height: 30px;
}

.section-about h3 {
    max-width: 93%;
}

.section-about .arrow-cta {
    margin-top: 38px;
}

.section-awards {
    background: url('../images/homepage/rewards.jpg') no-repeat center center;
    background-size: cover;
}

.section-awards .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.section-awards .year,
.section-awards .award {
    font-size: 24px;
}

.section-linkedin {
    min-height: 657px;
    display: flex;
    align-items: center;
}

.section-linkedin .swiper-wrapper {
    align-items: center !important;
}

.section-newsletter {
    border-top: 1px solid #575756;
}

.section-newsletter .privacy-row {
    margin: 39px 0px 45px;
}

.section-newsletter form {
    font-family: 'Poppins', sans-serif;
}

.section-newsletter input[type='submit'] {
    background-color: var(--secondary);
    color: var(--white);
    padding: 19px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    height: 60px;
}

.section-newsletter input[type='email'] {
    border: none;
    background: var(--primary);
    padding: 18px 16px;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}

.section-newsletter input[type='email']::placeholder {
    font-style: italic;
}

.section-newsletter .privacy-row label {
    font-size: 12px;
}

.section-newsletter .privacy-row a {
    color: var(--secondary);
    text-decoration: underline;
}

.section-newsletter input[type='checkbox'] {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    width: 16px;
    height: 16px;
    cursor: pointer;
    border: 1px solid var(--secondary);
    flex-shrink: 0;
    position: relative;
    display: grid;
    place-content: center;
    top: 3px;
}

.section-newsletter input[type='checkbox']::before {
    content: "";
    width: 14px;
    height: 14px;
    transform: scale(0);
    box-shadow: inset 16px 16px var(--secondary);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.section-newsletter input[type='checkbox']:checked::before {
    transform: scale(1);
}

@media screen and (min-width: 992px) and (max-width: 1320px) {
    .section-about h3 {
        max-width: 80%;
    }
}

@media screen and (max-width: 991px) {
    .section-about {
        padding: 60px 0px;
    }
}

@media screen and (max-width: 768px) {
    
    .section-about, .section-awards, .section-newsletter {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-awards .year,
    .section-awards .award {
        font-size: 20px;
    }

    .section-newsletter input[type='submit'] {
        font-size: 12px;
        padding: 10px 12px;
        height: 50px;
    }

    .section-newsletter input[type='email'] {
        padding: 10px 12px;
        font-size: 12px;
        height: 50px;
    }
    
}