@charset "UTF-8";
body{
    background: rgba(43, 93, 90, 1);
}
.main-content {
    visibility: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
}
.app-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.contact-separator-p {
    display: flex;
    justify-content: center;
    height:20vh;
    align-items: center;
    background-color: rgb(43, 93, 90);
}
.content-box-p {
    display:flex;
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 1);
    justify-content: space-between;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 100%;
    max-width: 70vw;
    width: 80%;
    margin: 3% 0 3% 0;
}
/*Projects header*/
.project-start{
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgba(14, 14, 14,0.9);
    height: 50vw;
    width: 100%;
}
.project-front-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
    object-fit: contain;
}
.first-project-separator {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(14, 14, 14, 0.5);
    z-index: 1;
}
.project-overlay {
    position: absolute;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: white;
}
.project-front-header {
    justify-content: flex-start;
}
.project-front-description {
    justify-content: flex-start;
    background-color: rgba(14, 14, 14, 0.3);
}
.header-separator{
    background-color: rgb(43, 93, 90);
}
/*Projects header*/

/*Projects Body*/
.projects-body{
    background-color: white;
    display: flex;
    width: 100%;
    height: auto;
}
#projects-body-layout{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    margin: 0 auto;
    width: 95%;
    justify-items: center;
    align-content: center;
    box-sizing: border-box;
    height:auto;
}
.row1{
    position: relative;
    height: 100%;
    width: 88%;
    text-align: center;
}
.row2{
    width: 90%;
    height: auto;
    margin: 3vh 0 3vh 0;
    background-color: #FBFBFB;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/*Projects Body*/

/*row1 slider*/
#slider-section {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background:white;
    margin:0.5vw 0 0 0;
    padding:0;
}
.container {
    display: flex;
    width: 100%;
    max-width:100%;
}
.sub-container {
    width: 100%;
    max-width: 100%;
    height:100%;
    padding:0;
}
.slider-wrapper{
    position: relative;
    padding:0 0.5vw 1vw 0.5vw;
    margin:0;
    border: 1px solid #F1F1F1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.09);
    width:100%;
}
.previous,
.next {
    padding: 0;
    width: 2vw;
    height: 2.2vw;
    cursor: pointer;
    outline: none;
    transition: 0.7s ease-in-out;
    position: absolute;
    top: 40%;
    border-width: 0;
    background-color: transparent;
}
.previous {
    left: 1%;
}
.next {
    right: 1%;
}
#controls i {
    color: rgba(255, 255, 255, 0.45);
    border-radius: 2vw;
    font-size: 1vw;
    transition: 0.6s ease-in-out;
}
#controls i:hover {
    color: rgba(255, 255, 255, 1);
}
/* DYNAMIC HTML */
.slide{
    position:relative;
    width: auto;
    height: 8vw;
    padding:0;
    margin:0;
    overflow: hidden;
    z-index:1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.location-text {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: bold;
    padding: 10px;
    opacity: 0;
    transition: opacity 1s ease;
    visibility: hidden;
    height:100%;
    width:100%;
    font-size: 0.9vw;
    z-index:2;
}
.slide:hover .location-text {
    opacity: 1;
    visibility: visible;
}
.location-text:hover {
    opacity: 1;
    color: white;
}
/*projects gallery*/

/*double vertical slider*/
.slider-container {
    position: relative;
    overflow: hidden;
    height: 52vh;
    width: auto;
    box-sizing: border-box;
    margin: 2vw 5vw 2vw 5vw ;
}
.left-slide {
    width: 45%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}
.left-slide > div {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.left-slide h3 {
    font-size: 1.6vw;
}
.left-slide p {
    font-size: 0.9vw;
}
.right-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 45%;
    width: auto;
    transition: transform 0.5s ease-in-out;
}
.right-slide > div {
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: auto;
}
.slider-container .action-buttons button {
    position: absolute;
    left: 45%;
    top: 50%;
    z-index: 1;
    background: #fff;
    border: none;
    color: #aaa;
    font-size: 16px;
    padding: 15px;
    cursor: pointer;
}
.slider-container .action-buttons button:hover {
    color: #222;
}
.slider-container .action-buttons button:focus {
    outline: none;
}
.slider-container .action-buttons .up-button {
    transform: translateY(-100%);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.slider-container .action-buttons .down-button {
    transform: translateX(-100%);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
/*slider within vs*/
.slider-vs {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.slider-vs-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}
#controls-slider-vs i {
    color: rgba(255, 255, 255, 0.45);
    border-radius: 2vw;
    font-size: 1vw;
    transition: 0.6s ease-in-out;
}
.left-arrow,
.right-arrow {
    cursor: pointer;
    outline: none;
    transition: 0.7s ease-in-out;
    position: absolute;
    top: 90%;
    border-width: 0;
    background-color: transparent;
}
.left-arrow {
    left: 93%;
    z-index:0;
}
.right-arrow {
    right: 1.5%;
    z-index:0;
}
#controls-slider-vs i:hover {
    color: rgba(255, 255, 255, 1);

}
/*slider within vs*/
/*double vertical slider*/

/* Sizing styles start */
/* Media query for extra large screens */
@media (min-width: 1200px) {
    .projects-page-seperator-top{
        height: 11vh;
    }
    /*projects header*/
    .project-front-img {
        align-items: flex-start;
        height:100%;
        width: 100%;
        object-fit: scale-down;
    }
    .project-overlay{
        top: 9vw;
        width: 35%;
        left: 9vw;
    }
    .first-project-separator {
        height: 4vw;
    }
    .project-front-header {
        font-size: 5vw;
        margin-bottom:0.2vw;
    }
    .project-front-description {
        font-size: 2vw;
        margin-bottom:0.1vw
    }
    .header-separator{
        height: 1.5vw;
    }
    /*projects header*/
    /*Projects Body*/
    /*row1 slider*/
    #slider-section {
        height: auto;
        width: 100%;
        display: flex;
        background:white;
        margin:1vw 0 0 0;
        padding:0;
    }
    .slider-wrapper{
        padding: 1vw 1vw 1vw 1vw;
        width:100%;
        height:100%;
    }
    .previous,
    .next {
        display: flex;
        padding: 0 0 0 0;
        width: 2.5vw;
        height: 3vw;
        top: 42%;
        justify-items: center;
        align-items: center;
    }
    .previous {
        left: 0.5%;
    }
    .next {
        right: 0.7%;
    }
    #controls i {
        color: rgba(255, 255, 255, 0.5);
        border-radius: 2vw;
        font-size: 2.2vw;
        transform: translateX(70%); /* Adjust the value as needed */
    }
    #controls:hover i {
        transform: translateX(70%); /* Adjust the value as needed */
    }
    /* DYNAMIC HTML */
    .slide{
        height: 9vw;
    }
    .location-text {
        padding: 10px;
        font-size: 1vw;
    }
    /*row1 slider*/
    /*row2 slider*/
    .row2{
        width: 85%;
        height: auto;
        margin: 3vh 0 5vh 0;
        background-color: #FBFBFB;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    /*double vertical slider*/
    .slider-container {
        height: 58vh;
        width: auto;
        margin: 2vw 3vw 2vw 3vw ;
    }
    .left-slide h3 {
        font-size: 2vw;
        padding: 0 1vw;
    }
    .left-slide p {
        font-size: 1vw;
    }
    .right-slide {
        height: 100%;
        width: auto;
    }
    .right-slide > div {
        height: 100%;
        width: auto;
    }
    .slider-container .action-buttons button {
        left: 45%;
        top: 50%;
        font-size: 24px;
        padding: 18px;
    }
    /*right slider*/
    .slider-vs {
        height: 58vh;
        width: 100%;
        z-index: 1;
    }
    .left-arrow,
    .right-arrow {
        width: 2.5vw;
        height: 2.75vw;
        border-radius: 50%;
        justify-items: center;
        align-items: center;
        top: 85%;
        display: flex;
    }
    .left-arrow {
        left: 82%;
        z-index:3;
    }
    .right-arrow {
        right: 5%;
        z-index:3;
    }
    #controls-slider-vs i {
        font-size: 4vw;
    }
    .right-arrow i{
        transform: translateX(30%);
    }
    .left-arrow i{
        transform: translateX(30%);
    }
    /*slider within vs*/
    /*double vertical slider*/
    /*Projects Body*/
    .contact-separator-p {
        height:2.5vw;
    }
}

/* Media query for medium to larger screens */
@media (max-width: 1200px) {
    .projects-page-seperator-top{
        height: 9vh;
    }
    /*projects header*/
    .project-start{
        height: auto;
        width: 100%;
    }
    .project-front-img {
        height:100%;
        width: 100%;
        object-fit: scale-down;
    }
    .project-overlay{
        top: 8vw;
        width: 35%;
        margin-left: 5vw;
    }
    .project-front-header {
        font-size: 6vw;
        top: 2vw; /* Adjust as needed */
        left: 2vw; /* Adjust as needed */
    }
    .project-front-description {
        font-size: 2vw;
        top: 6vw; /* Adjust as needed */
        left: 2vw; /* Adjust as needed */
    }
    .first-project-separator {
        height: 5.5vw;
    }
    .header-separator{
        height: 1.5vw;
    }
    /*projects header*/
    /*Projects Body*/
    #projects-body-layout{
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        margin: 0 auto;
        width: 90%;
        justify-items: center;
        align-content: center;
        box-sizing: border-box;
        height:auto;
    }
    /*row1 slider*/
    .row1{
        position: relative;
        height: 100%;
        width: 100%;
        text-align: center;
    }
    #slider-section {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background:white;
        margin:2vw 0 0 0;
        padding:0;
    }
    .slider-wrapper{
        padding: 1vw 1vw 1vw 1vw;
        margin:0;
        width:100%;
        height:100%;
    }
    .previous,
    .next {
        display: flex;
        padding: 0 0 0 0;
        width: 3.5vw;
        height: 4vw;
        top: 42%;
        justify-items: center;
        align-items: center;
    }
    .previous {
        left: 0;
    }
    .next {
        right: 1.3%;
    }
    #controls i {
        color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        font-size: 3.5vw;
        transform: translateX(88%);
    }
    #controls:hover i {
        transform: translateX(88%);
    }
    /* DYNAMIC HTML */
    .slide{
        height: 15vw;
    }
    .location-text {
        padding: 10px;
        font-size: 1.8vw;
    }
    /*row1 slider*/
    /*row2 slider*/
    .row2{
        width: 96%;
        height: auto;
        margin: 3vh 0 3vh 0;
        background-color: #FBFBFB;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    /*double vertical slider*/
    .slider-container {
        height: 38vw;
        width: auto;
        margin: 2vw 3vw 2vw 3vw ;
    }
    .left-slide h3 {
        font-size: 2.7vw;
        padding: 0 1vw;
    }
    .left-slide p {
        font-size: 1.5vw;
    }
    .right-slide {
        height: 100%;
        top: 0;
        left: 45%;
        width: auto;
    }
    .right-slide > div {
        height: 100%;
        width: auto;
    }
    .slider-container .action-buttons button {
        left: 45%;
        top: 50%;
        font-size: 18px;
        padding: 11px;
    }
    /*right slider*/
    .slider-vs {
        height: 38vw;
        width: 100%;
        z-index: 1;
    }
    .slider-vs-img {
        width: 100%;
        height: 100%;
    }
    .left-arrow,
    .right-arrow {
        width: 4vw;
        height: 4.5vw;
        border-radius: 50%;
        justify-items: center;
        align-items: center;
        top: 85%;
        display: flex;
    }
    .left-arrow {
        left: 78%;
        z-index:3;
    }
    .right-arrow {
        right: 5%;
        z-index:3;
    }
    #controls-slider-vs i {
        font-size: 5vw;
    }
    .right-arrow i{
        transform: translateX(40%);
    }
    .left-arrow i{
        transform: translateX(40%);
    }
    /*slider within vs*/
    /*double vertical slider*/
    /*Projects Body*/
    .contact-separator-p {
        height: 2vw;
    }
    .content-box-p {
        padding: 5px;
        height: auto;
        width: 100%;
        max-width: 80vw;
    }
}
@media (max-width: 430px) {
    .projects-page-seperator-top{
        height: 8vh;
    }
    /*projects header*/
    .first-project-separator {
        height: 7vw;
    }
    .project-front-img {
        height:100%;
        width: 100%;
        object-fit: fill;
    }
    .project-overlay{
        top: 9vw;
        width: 50%;
        margin-left: 5vw;
    }
    .project-front-header {
        font-size: 5vw;
        top: 0;
        left: 10vw;
    }
    .project-front-description {
        font-size: 2.5vw;
        top: 5.5vw;
        left: 2vw;
    }
    /*projects header*/

    /*Projects Body*/
    #projects-body-layout{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        margin: 0 auto;
        width: 98%;
        justify-items: center;
        align-content: center;
        box-sizing: border-box;
        height:auto;
    }
    /*row1 slider*/
    .row1{
        height: 100%;
        width: 100%;
    }
    #slider-section {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background:white;
        margin:2vw 0 0 0;
        padding:0;
    }
    .container {
        width: 100%;
    }
    .sub-container {
        width: 100%;
        height:100%;
        padding:0;
    }
    .slider-wrapper{
        padding: 2vw;
        margin:0;
        width:100%;
    }
    .previous,
    .next {
        display: flex;
        padding: 0 0 0 0;
        width: 7vw;
        height: 8vw;
        cursor: pointer;
        border-radius: 50%;
        outline: none;
        top: 40%;
        justify-items: center;
        align-items: center;
    }
    .previous {
        left: 0;
    }
    .next {
        right: 1.5%;
    }
    #controls i {
        color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        font-size: 6vw;
        transform: translateX(88%);
    }
    #controls:hover i {
        transform: translateX(90%); /* Adjust the value as needed */
    }
    /* DYNAMIC HTML */
    .slide{
        height: 25vw;
    }
    .location-text {
        padding: 10px;
        font-size: 2.3vw;
    }
    /*row1 slider*/
    /*row2 slider*/
    .row2{
        width: 94%;
        height: auto;
        margin: 3vh 0 3vh 0;
        background-color: #FBFBFB;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    /*double vertical slider*/
    .slider-container {
        height: 50vw;
        width: auto;
        margin: 2vw 3vw 2vw 3vw ;
    }
    .left-slide {
        width: 45%;
        height: 100%;
        top: 0;
        left: 0;
    }
    .left-slide > div {
        width: auto;
        height: 100%;
        color: #fff;
    }
    .left-slide h3 {
        font-size: 3vw;
        padding: 0 1vw;
    }
    .left-slide p {
        font-size: 2vw;
        width: 90%;
    }
    .right-slide {
        height: 100%;
        top: 0;
        left: 45%;
        width: auto;
    }
    .right-slide > div {
        height: 100%;
        width: auto;
    }
    .slider-container .action-buttons button {
        left: 45%;
        top: 50%;
        z-index: 2;
        background: #fff;
        font-size: 12px;
        padding: 6px;
    }

    .slider-container .action-buttons .up-button {
        transform: translateY(-100%);
    }
    .slider-container .action-buttons .down-button {
        transform: translateX(-100%);
    }
    /*right slider*/
    .slider-vs {
        height: 50vw;
        width: 100%;
        z-index: 0;
    }
    .slider-vs-img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
    .left-arrow,
    .right-arrow {
        width: 8vw;
        height: 9vw;
        justify-items: center;
        align-items: center;
        top: 80%;
        display: flex;
    }
    .left-arrow {
        left: 75%;
        z-index:0;
    }
    .right-arrow {
        right: 1.5%;
        z-index:0;
    }
    .right-arrow i{
        transform: translateX(70%);
    }
    .left-arrow i{
        transform: translateX(60%);
    }
    #controls-slider-vs i {
        font-size: 6vw;
    }

    /*slider within vs*/
    /*double vertical slider*/
    /*Projects Body*/
    .contact-separator-p {
        height:3.5vw;
    }
    .content-box-p {
        padding: 5px;
        height: auto;
        width: 100%;
        max-width: 90%;
        flex-direction: column;
    }
}