

/* Header and CTA Buttons */

.jumbotron {
    height: 49rem;
    display: flex;
    flex-flow: column wrap;
    width: 93%;
    margin: 7px 0 7px 6.3%;
    border-radius: 24px;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-image: url('https://images.pexels.com/photos/5011647/pexels-photo-5011647.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.jumbotron .icons span {
    color: #7fcfff;
    font-size: 3rem;
}

.jumbotron .headers-cta {
    display: flex;
    flex-flow: row wrap;
    width: 80%;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.jumbotron .text h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: bolder;
}

.jumbotron .text span {
    font-size: 1.5rem;
    font-family: 'Work Sans', 'Plus Jakarta Sans';
    letter-spacing: -1px;
}

.jumbotron .headers-cta .header-cta,
.container-cta {
    width: 32rem;
    height: 7rem;
    background-color: #28292a;
    padding: 0px 20px 20px 20px;
    text-align: left;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.jumbotron .headers-cta .header-cta:hover,
.container-cta:hover {
    background-color: #1b5e84;
    transition: all 0.2s ease-in-out;
}

.jumbotron .headers-cta .header-cta h4 {
    font-size: 1.5rem;
    line-height: 2.1;
}

.jumbotron .headers-cta a {
    text-decoration: none;
}


/* Main page content */

main {
    display: flex;
    flex-flow: column wrap;
    margin: 2rem 0 7px 7%;
}

main .content-container {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

main svg {
    width: 40rem;
}

main .left-container {
    width: 50%;
    height: 100%;
}

main .right-container {
    position: sticky;
    top: 1.2%;
    right: 0.7%;
    width: 50%;
    height: 48.3rem;
    border-radius: 24px;
    background-size: cover;
    background-repeat: no-repeat;
}

main .colors {
    background-image: url('https://images.pexels.com/photos/6801872/pexels-photo-6801872.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}
main .buttons {
    background-image: url('https://images.pexels.com/photos/7015038/pexels-photo-7015038.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}
main .fonts {
    background-image: url('https://images.pexels.com/photos/7731326/pexels-photo-7731326.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}

main .text-styles {
    background-image: url('https://images.pexels.com/photos/3184431/pexels-photo-3184431.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
}


main .insider-container {
    height: 44rem;
    margin: 7rem 2rem;
}

main h2 {
    font-size: 3.2rem;
    margin: 1.8rem auto;
    width: 100%;
}

main p {
    line-height: 1.9;
    font-weight: lighter;
    font-size: 1rem;
    margin-bottom: 1rem;
}

main .insider-container .container-cta {
    margin-top: 2.8rem;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

main .insider-container .container-cta .text {
    flex: 1;
    height: 50%;
}

main .insider-container .container-cta .icon {
    align-items: start;
    height: 50%;
}

main .insider-container .container-cta .icon span {
    font-size: 2rem;
}

main .insider-container .container-cta .text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

/* SVG's dividers */
.footer-divider {
    width: 100%;
}

.left-divider {
    width: 90%;
}

/* Footer */

footer {
    width: 85%;
    margin: 2rem 5rem 9rem 9.3%;
}

footer .main-footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 2.5rem 0;
}

footer .main-footer .links {
    width: 40%;
    justify-content: space-evenly;
}

footer .main-footer .description {
    width: 60%;
    line-height: 1.7;
}

footer .main-footer .description span {
    font-size: 2rem;
}

footer .main-footer .description p {
    font-weight: lighter;
}

footer .main-footer .links {
    display: flex;
    flex-flow: row nowrap;
}

footer .main-footer .links .column {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

footer .main-footer .links .column h6 {
    font-size: 0.8rem;
}

footer .main-footer .links .column span {
    display: block;
    color: #a6c5f8;
    font-size: 1rem;
    transition: all 0.5s ease-in-out;
}

footer .main-footer .links .column span:hover {
    color: #fbfdff;
}

footer .legal-footer a {
    color: #fff;
    margin-right: 3rem;
    font-size: 0.98rem;
}

footer .legal-footer a:not(.page-name):hover {
    text-decoration: underline;
}

footer .legal-footer a:first-child {
    font-size: 1.2rem;
    font-weight: bolder;
}