@font-face {
    font-family: font1;
    src: url("../fonts/CenturyGothic2.ttf");
}

* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(255, 255, 255);
    display: flex;
    font-family: font1, Verdana, sans-serif;
    overflow: hidden;
}

.main {
    display: flex;
    height: 100vh;
    width: 100%;
    min-width: 10px;
    background-color: #ffffff;
}

.info {
    background-image: url("../images/office_slider/o2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 49%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.wrapper {
    background-color: rgb(24, 24, 24);
    width: 100%;
    height: 100%;
}

.office_slider {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.img_cover {
    position: absolute;
    background-color: rgb(24, 24, 24);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10;
}

.right-enter_active {animation: right-enter .5s;}

.right-leave_active {animation: right-leave 1s;}

@keyframes right-enter {
    0% { clip-path: inset(0 0 0 100%); }
    100% { clip-path: inset(0); }
}
  
@keyframes right-leave {
    0% { clip-path: inset(0); }
    99% { clip-path: inset(0 100% 0 0); }
    100% { display: none; }
}

@keyframes slide {
    0%{transform: translateX(0);}
    18%{transform: translateX(0);}
    20%{transform: translateX(-100%);}
    38%{transform: translateX(-100%);}
    40%{transform: translateX(-200%);}
    58%{transform: translateX(-200%);}
    60%{transform: translateX(-300%);}
    78%{transform: translateX(-300%);}
    80%{transform: translateX(-400%);}
    98%{transform: translateX(-400%);}
    100%{transform: translateX(-500%);}
}

.office_image_none {
    width: 100%;
    height: 100vh;
    display: none;
}

.office_image_hidden {
    width: 100%;
    height: 100vh;
    display: block;
    left: -100%;
}

.office_image_visible {
    width: 100%;
    height: 100vh;
    left: 0%;
    transition: 1s;
}

.info_textbox {
    width: 90%;
    height: 100vh;
    margin-left: 150px;
    position: absolute;
    top: 55%;
    transform: translate(0%, -55%);
    color: #ffffff;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.info_filler_top {
    height: 150px;
    width: 10px;
}

.info_filler_bottom {
    height: 40px;
    width: 10px;
}

.info_logo_p_cont {
    display: flex;
    justify-content: start;
    align-items: end;
}

.info_logo {
    background-color: rgba(0, 0, 0, .6);
    width: fit-content;
    padding: 10px;
    font-weight: 200;
    font-size: 45px;
    border-radius: 1px;
}

.info_image {
    width: auto;
    height: 275px;
    background-color: rgba(0, 0, 0, .6);
}

.info_p {
    background-color: rgba(0, 0, 0, .6);
    padding: 7px 15px;
    width: auto;
    height: fit-content;
    line-height: 32px;
    font-size: 22px;
    font-weight: lighter;
    border-radius: 1px;
    margin: 0 0 0 15px;
}




.projects {
    background-color: #fdfdfd;
    width: 51%;
    padding-bottom: 150px;
    overflow: auto;
}

.project {
    width: 60%;
    height: fit-content;
    margin: 125px auto 0px;
}

.project_image_holder {
    padding: 0;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.project_image {
    width: 100%;
    aspect-ratio: 1;
    transition: .7s ease-in-out;
}

.project_image:hover {
    transform: scale(1.05);
    transition: .7s ease-in-out;
}

.project_title {
    padding: 0;
    margin: 0;
    font-weight: lighter;
    font-size: 36px;
    line-height: 60px;
    margin-left: 10px;
}

.project_sub {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: lighter;
    color: #555555;
    margin-left: 10px;
}





.menu {
    padding-left: 96px;
    height: 100vh;
    width: 0%;
    background-color: rgb(0, 0, 0);
    position: fixed;
    z-index: 100;
    left: 0%;
    top: 0%;
    visibility: hidden;
    transition: .15s;
}

.menu2 {
    padding-left: 96px;
    visibility: visible;
    width: 46%;
    transition: .15s;
    display: flex;
}

.menu_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: auto;
}

.contact_container {
    display: flex;
    justify-content: center;
}

.menu_box {
    flex-direction: column;
    height: fit-content;
    color: white;
    text-align: center;
}

.sep {
    width: 100%;
    border-bottom: 1px solid rgb(40, 40, 40);
}

.menu_h1 {
    font-weight: lighter;
    color: white;
}

#options_menu_box {
    text-align: center;
}

#menu_phil {
    padding: 0 20px;
    margin-bottom: 20px;
}

#menu_serv {
    padding: 0 20px;
}

#contact_menu_box {
    text-align: center;
}

.menu_serv_text {
    text-align: left;
}

.menu_project_options {
    height: fit-content;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu_about_options {
    margin-bottom: 25px;
}

.menu_a {
    margin: 5px 15px;
    color: rgb(160, 160, 160);
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    transition: .15s;
}

.menu_a:hover {
    color: rgb(255, 255, 255);
    transition: .15s;
}

.contact_box {
    height: fit-content;
    width: 33%;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.icon_container {
    background-color: rgb(0, 0, 0);
    width: 50px;
    height: 50px;
    text-align: center;
    border: 2px rgb(255, 255, 255) solid;
    border-radius: 50%;
    display: inline-block;
    margin: 0 auto 25px;
}

.contact_svg {
    fill: rgb(255, 255, 255);
    height: 30px;
    width: auto;
} 

#location_svg {
    margin-top: 7px;
}

#phone_svg {
    margin: 9px;
}

#mail_svg {
    margin: 10px;
}

.contact_ul {
    text-align: center;
    list-style: none;
    height: fit-content;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
    color: rgb(160, 160, 160);
    line-height: 16px;
    padding-inline-start: 0;
}

.contact_li {
    line-height: 16px;
    padding-top: 0px;
    margin:5px 0;
}

.menu_span {
    color: white;
}

.contact_sep {
    height: 150px;
    width: 2px;
    position: relative;
    bottom: 0;
    background-color: rgb(160, 160, 160);
}

.view_all_a {
    text-align: center;
    text-decoration: none;
    color: rgb(160, 160, 160);
    font-size: 26px;
    width: fit-content;
    position: relative;
    margin: 0 auto;
}

.view_all_a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    height: 2px;
    width: 100%;
    left: 0;
    margin: 0 auto;
    background-color: rgb(120, 120, 120);
    transition: .15s;
    transition-timing-function: ease-in-out;
    transform: scaleX(0);
}

.view_all_a:hover::after {
    transform: scaleX(1);
}

.view_all_a:hover {
    color: rgb(120, 120, 120);
    transition: .15s;
}

.view_all_a:active {
    color: rgb(0, 0, 0);
}

#view_all_div {
    text-align: center;
}










@media only screen and (max-width: 1024px) {
    .main {
        display: block;
        height: auto;
        width: 100%;
        background-color: #ffffff;
        overflow: scroll;
    }

    .info {
        background-image: none;
        background-color: white;
        margin-top: 90px;
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .wrapper {
        height: fit-content;
    }

    .info_textbox {
        width: 100%;
        height: 100%;
        margin-left: 25px;
        position: absolute;
        color: #ffffff;
        z-index: 9;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
    }

    .info_filler_top, .info_filler_bottom {
        height: 1px;
    }

    .projects {
        background-color: #fdfdfd;
        width: 100%;
    }

    .project {
        width: 90%;
        height: fit-content;
        margin: 125px auto 0px;
    }






    .menu {
        padding-top: 90px;
        height: calc(100vh - 90px);
        width: 0%;
        background-color: rgb(0, 0, 0);
        position: fixed;
        z-index: 100;
        left: 0%;
        top: 0%;
        visibility: hidden;
        transition: .15s;
    }
    
    .menu2 {
        padding-left: 0px;
        padding-top: 90px;
        visibility: visible;
        width: 100%;
        transition: .15s;
        display: flex;
        overflow: auto;
    }

    .menu_h1 {
        font-size: 24px;
        margin: 10px auto;
    }


}

@media only screen and (max-width: 480px) {
    .menu {
        padding-top: 80px;
        height: 0%;
        width: 100%;
        background-color: rgb(0, 0, 0);
        position: fixed;
        z-index: 100;
        left: 0%;
        top: 0%;
        visibility: hidden;
        transition: .15s;
    }
    
    .menu2 {
        padding-left: 0px;
        padding-top: 80px;
        visibility: visible;
        height: calc(100vh - 80px);
        transition: .15s;
        display: flex;
        overflow: auto;
    }

    .menu_container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        overflow: auto;
    }

    .menu_project_options, .menu_about_options {
        margin-bottom: 15px;
    }
    
    .menu_h1 {
        margin: 15px 0 10px 0;
    }

    .contact_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact_sep {
        width: 100%;
        height: 1px;
    }

    .contact_box {
        height: fit-content;
        width: 100%;
        padding: 5px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        text-align: start;
    }

    .contact_ul {
        width: auto;
        text-align: start;
        margin: 0 0 0 10px;
    }

    .icon_container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px;
    }

    /*
    .info {
        background-image: url("../images/office_slider/o2.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 80px;
        width: 100%;
        height: calc(50vh - 80px);
        aspect-ratio: 1;
    }
    */
    .info {
        background-image: url("../images/office_slider/o2.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 80px;
        width: 100%;
        height: fit-content;
    }

    .office_slider {
        width: 100%;
        height: auto;
    }

    .info_image {
        width: auto;
        height: 175px;
        background-color: rgba(0, 0, 0, .7);
    }
    
    .info_p {
        background-color: rgba(0, 0, 0, .7);
        padding: 5px 12px;
        width: auto;
        height: fit-content;
        line-height: 20px;
        font-size: 16px;
        font-weight: lighter;
        border-radius: 1px;
        margin: 0 0 0 7px;
    }

    .projects {
        padding-bottom: 75px;
    }

    .project {
        width: 90%;
        height: fit-content;
        margin: 100px auto 0px;
    }

    .project_title {
        margin: 16px 0 8px 0;
        line-height: 32px;
        font-size: 28px;
    }

    .project_sub {
        margin: 0;
        font-size: 16px;
    }

    .view_all_a {
        color: rgb(160, 160, 160);
        font-size: 20px;
        width: fit-content;
        position: relative;
        margin: 0 auto;
        border-bottom: 2px solid rgb(160, 160, 160);
    }
}