main#main {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#scroll-left,
#scroll-right {
    background: #c89832;
    color: #fff;
    height: 100px;
    width: 30px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    animation: pulse-black 2s infinite;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(200, 152, 50, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(200, 152, 50, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(200, 152, 50, 0);
    }
}

#scroll-right {
    right: 10px;
}


#scroll-left {
    left: 10px;
    display: none;
}

.project-container {
    justify-content: space-between;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    display: flex;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding: 0 2%;
}


.project p.project-detail {
    line-height: 1.3;
    min-height: 90px;
    font-size: 18px;
}

.project {
    background: linear-gradient(to bottom, white 70%, transparent 70%);
    width: 85%;
    margin-right: calc((100% - 85%) / 3);
    scroll-snap-type: x mandatory;
    scroll-snap-align: center;
    /* margin-left: 2%; */
}

.project-content {
    /* padding: 5% 3%; */
    padding: 5%;
}

.project h3 {
    width: 100%;
    font-size: 40px;
}

.project p {
    width: 100%;
    padding-top: 5%;
    text-align: justify;
    font-size: 20px;
}


.project img {
    width: 100%;
}

.project img.project-featured-image {
    margin: 0 -6.5% -3% 6.5%;
}

a.button {
    background: white;
    padding: 3% 6%;
    float: right;
    transition: all;
    text-decoration: none;
    color: #333;
    transition: all 0.25s;
}

a.button:hover {
    background-color: #C89832;
    color: #fff;
}



div#carousel-links-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: 5%;
}

div#carousel-links-container a {
    width: 30px;
    height: 30px;
    background: white;
    margin-right: 2.5%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}


a.link {
    transition: all;
}

a.link.active {
    background-color: #c89832 !important;
    color: #c89832 !important;
}


/* Phones Portrait and Landscape */
@media (min-width: 320px) and (max-width: 480px) {

    main#main {
        margin: 5% 0;
    }

    .project {
        min-width: 85vw;
        margin-right: 10%;
        margin-left: 2%;
    }

    .project h3.project-title {
        font-size: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    main#main {
        margin: 5% 0;
    }

    .project {
        min-width: 60vw;
        margin-left: 2%;
    }

    .project-container {
        display: flex;
        justify-content: space-between;
    }
}


@media (min-width: 768px) and (max-width: 1023px) {
    .project p.project-detail {
        min-height: 80px;
    }

    .project {
        margin-right: calc((100% - 85%) / 2);
    }
}


@media (min-width: 1024px) and (max-width: 1179px) {
    .project p.project-detail {
        min-height: 60px;
    }
}




@media (min-width: 1201px) {
    div#carousel-links-container {
        display: none;
    }

    #scroll-left,
    #scroll-right {
        display: none;
    }
}

/* Laptops */
@media (min-width: 1200px) and (max-width: 1600px) {}