/* Hero Title */
.hero-title {
    font-size: 60px;
    font-weight: 900;
}




.projectSection {
    width: 100%;
    background-size: cover;
    background-position: bottom center;
}


/* hero gradients */
.bg-partners{
    background-image: url(../img/gradient/partners-new.jpg);
}

.bg-projects{
    background-image: url(../img/gradient/projects.jpg);
}

.bg-services{
    background-image: url(../img/gradient/services-new.jpg);
}

.bg-team{
    background-image: url(../img/gradient/team-new.jpg);
}

.bg-about{
    background-image: url(../img/gradient/about-new.jpg);
}

.bg-careers{
    background-image: url(../img/gradient/careers-new.jpg);
}

.bg-contact{
    background-image: url(../img/gradient/contact-new.jpg);
}

.projectDarkSection {
    width: 100%;
    background-image: url(../img/cubeTrans.png), linear-gradient(to right top, #000000d5, #201c1c);
}

.gradientSection {
    background-color: #99e0ff;
    background-image:
        radial-gradient(at 86% 39%, hsla(262, 64%, 65%, 1) 0px, transparent 50%),
        radial-gradient(at 29% 69%, hsla(218, 99%, 70%, 1) 0px, transparent 50%),
        radial-gradient(at 39% 68%, hsla(358, 64%, 70%, 1) 0px, transparent 50%),
        radial-gradient(at 86% 70%, hsla(201, 84%, 64%, 1) 0px, transparent 50%),
        radial-gradient(at 14% 19%, hsla(228, 65%, 73%, 1) 0px, transparent 50%),
        radial-gradient(at 21% 55%, hsla(175, 99%, 78%, 1) 0px, transparent 50%),
        radial-gradient(at 13% 66%, hsla(357, 61%, 66%, 1) 0px, transparent 50%);
}

.cubeBackground {
    background-image: url(../img/cubes.png), linear-gradient(to right top, #2f81edd5, #ffffff);
}


.projectImg {
    height: 100%;
}

.projectInfo {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;

}

.borderRight {
    border-right: 1px solid rgb(227, 227, 227);
}





.partnerCard{
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    border: 1px solid rgba(212, 212, 212, 0.4);
}










/* These 2 media screens help to push content below the nav. */
@media (max-width: 1118px) {

    .projectSection{
        margin-top: 3.5rem;
    }
}

@media screen and (min-width: 1118px) {

    .projectSection {
        margin-top: 5.5rem;
    }
}








/* Media Query for Mobile Devices */
@media (max-width: 480px) {


    .hero-title {
        font-size: 40px;
    }

    .projectSection {
        margin-top: 3.5rem;
        height: auto;
    }

    .projectDarkSection {
        height: auto;
    }

    .borderRight {
        border: 0;
        border-bottom: 1px solid rgb(242, 241, 241);
    }

    .projectInfo{
        margin-top: -3.5rem;
    }



}


/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {

    .hero-title {
        font-size: 55px;
    }





}



/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {

    .hero-title {
        font-size: 60px;
    }

    .borderRight {
        border: 0;
    }



}


/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {

    .borderRight {
        border: 0;
    }


    .projectInfo{
        margin-top: -1.3rem;
    }
}



/* Media Query for Laptops and Desktops */
@media (min-width: 1281px) and (max-width: 1400px) {


    .projectInfo{
        margin-top: -1rem;
    }
}



/* Media Query for Large screens */
@media (min-width: 1400px) {

    .projectInfo{
        margin-top: -3rem;
    }


}


