html,
body {
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    background-color: #FFFFFF;
    color: #000000;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

h5 {
    font-family: 'Roboto', sans-serif;
    color: black;
}


/* Resetting */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:focus {
    outline: none;
}

/* Removes all decimals and discs from lists */
ol,
ul {
    list-style-type: none;
}

li {
    list-style-type: none;
    padding-top: 5px;
}

main .hero {
    position: relative;
    height: 720px;
}


main .hero .hero__bg {
    margin: auto;
    width: 1280px;
    height: 720px;
}

main .hero .hero__video {
    pointer-events: none;
    width: 1280px;
    height: 720px;
}

.hero__svg {
    width: 500px;
}

main .hero .hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgb(255, 255, 255); /* Fallback for older browsers without RGBA-support */
    background: rgba(255, 255, 255, 0.7);
}

main .hero .hero__content .hero__desc {
    text-align: center;
    font-size: 1.25rem;
}

main .hero .hero__title_container {
    padding: 10px;
    //background-color: #FFFFFF;
    //border: 1px solid #E0E0E0;
    opacity: 0.9;
}

main .objective {
    padding: 2rem 2rem;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

main .objective .obj__header {
    text-align: center;
}

main .objective .obj__header .obj__title {
    padding: 1rem;
}

main .objective .obj__header .obj__subtitle {
    padding: 0 20rem;
    font-size: 1.25rem;
    color: #363A43;
    line-height: 1.2;
}

main .objective .obj__content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 3rem 10rem;
}

main .objective .obj__content .obj__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

main .objective .obj__content .obj__card .obj__figure {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

main .objective .obj__content .obj__card .obj__figure .obj__icon {
    height: 70px;
    margin: 0 auto;
}

main .objective .obj__content .obj__card .obj__figure .obj__caption {
    font-weight: 700;
}

main .objective .obj__content .obj__card .obj__desc {
    text-align: center;
    color: #363A43;
    font-size: 1rem;
    font-weight: 400;
}

main .about-us {
    display: flex;
    align-items: center;
    padding: 5rem 10rem;
    background-color: #363A43;
}

main .about-us .about__left {
    color: #FFFFFF;
    flex: 3;
}

main .about-us .about__left .about__title {
    font-size: 2rem;
    line-height: 1.2;
}

main .about-us .about__left .about__subtitle {
    width: 65%;
    font-weight: 400;
    margin: 1rem 0;
}

main .about-us .about__right .about__btn {
    border: none;
    border-radius: 0.5rem;
    background-color: #CF2E2E;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    transition: all 0.25s linear;
}

main .about-us .about__right .about__btn:hover {
    opacity: 0.2;
}

main .contact-us {
    display: flex;
    align-items: center;
    padding: 2rem 2rem;
    background-color: #ffffff;
}

main .contact-us {
    color: #363A43;
    flex: 3;
}

main .contact-us .contact__left .contact__subtitle {
    width: 65%;
    font-weight: 400;
    margin: 1rem 0;
}

/* FOOTER SECTION */
.footer {
    display: grid;
    place-content: center;
    gap: 1.5rem;
    padding: 3rem 0rem;
    font-size: 0.8rem;
}

.footer__href {
    font-size: 1.25rem;
    text-decoration: none;
    color: black;
}

.footer__mailto {
    color: #EA4335;
}

.footer__social {
    background-color: #F9F9F9;
    padding: 30px;
}

.footer .footer__social ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer .footer__social ul .footer__icon {
    border-radius: 0.35rem;
    background-color: #FFFFFF;
    transition: all 0.25s linear;
}

.footer .footer__social ul .footer__icon:hover .fa-twitter,
.footer .footer__social ul .footer__icon:hover .fa-linkedin-in,
.footer .footer__social ul .footer__icon:hover .fa-envelope {
    border: 2px solid transparent;
    transition: all 0.25s linear;
    background-color: #FFFFFF;
}

.footer .footer__social ul .footer__icon:hover .fa-twitter {
    background-color: #1DA1F2;
    color: #FFFFFF;
}

.footer .footer__social ul .footer__icon:hover .fa-linkedin-in {
    background-color: #0077B5;
    color: #FFFFFF;
}

.footer .footer__social ul .footer__icon:hover .fa-envelope {
    background-color: #EA4335;
    color: #FFFFFF;
}

.footer .footer__social ul .footer__icon .fa-brands,
.footer .footer__social ul .footer__icon .fa-solid {
    font-size: 2rem;
    color: #363A43;
    padding: 1rem;
    border-radius: 0.35rem;
}

.footer .footer__social ul .footer__icon .fa-twitter {
    border: 2px solid #1DA1F2;
    color: #1DA1F2;
}

.footer .footer__social ul .footer__icon .fa-linkedin-in {
    border: 2px solid #0077B5;
    color: #0077B5;
}

.footer .footer__social ul .footer__icon .fa-envelope {
    border: 2px solid #EA4335;
    color: #EA4335;
}

.footer .footer__links ul {
    display: flex;
    gap: 1.5rem;
}

.footer .footer__links ul .footer__link {
    color: #000000;
    text-align: center;
    transition: all 0.25s linear;
}

.footer .footer__links ul .footer__link:hover {
    color: #CF2E2E;
}

.footer .footer__copyright .footer__converello {
    text-align: center;
    font-size: 0.9rem;
}


/******** MEDIA QUERY *********/

@media screen and (max-width: 30em) {

    main .hero {
        height: 40vh;
    }

    main .hero .hero__bg {
        width: 100vw;
        height: 18em;
    }

    main .hero .hero__bg .hero__video {
        width: 80vw;
        height: 40vh;
    }

    main .hero .hero__title_container .hero__svg {
        transform: scale(0.50);
    }

    main .objective .obj__content {
        flex-direction: column;
        padding: 0;
    }

    footer {
        transform: scale(0.70);
    }
}

@media screen and (max-width: 48em) {

    main .hero {
        height: 40vh;
    }

    main .hero .hero__bg {
        width: 100vw;
        height: 18em;
    }

    main .hero .hero__bg .hero__video {
        width: 100vw;
        height: 40vh;
    }

    main .hero .hero__title_container .hero__svg {
        transform: scale(0.80);
    }

    main .objective .obj__content {
        flex-direction: column;
        padding: 0em;
    }
}

@media screen and (max-width: 64em) {

    main .hero {
        height: 40vh;
    }

    main .hero .hero__bg {
        width: 100vw;
        height: 18em;
    }

    main .hero .hero__bg .hero__video {
        width: 100vw;
        height: 40vh;
    }

    main .objective .obj__content {
        flex-direction: column;
        padding: 0em;
    }
}

.red {
    color: #BD3D36;
}









