* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-size: var(--p-fs);
    font-family: ibm_sans;
}

@font-face {
    font-family: ibm_sans;
    src: url(./fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf);
}

@font-face {
    font-family: han_sans;
    src: url(./fonts//Black_Han_Sans/BlackHanSans-Regular.ttf);
}

:root {

    --h1-fs: 4vw;
    --h1-s-fs: 3vw;

    --h2-fs: 2.5vw;
    --h2-s-fs: 2vw;

    --h3-fs: 1.8vw;

    --p-b-fs: 1.6vw;
    --p-fs: 1.2vw;
    --p-s-fs: 1vw;
    
}

@media (min-width:1000px) and (max-width:1400px) {
    :root {

        --h1-fs: 5.5vw;
        --h1-s-fs: 4vw;
    
        --h2-fs: 3vw;
        --h2-s-fs: 2.5vw;
    
        --h3-fs: 2.3vw;
    
        --p-b-fs: 2.1vw;
        --p-fs: 1.7vw;
        --p-s-fs: 1.5vw;
        
    }
}

@media (min-width:650px) and (max-width:1000px) {
    :root {

        --h1-fs: 7vw;
        --h1-s-fs: 5vw;
    
        --h2-fs: 3.5vw;
        --h2-s-fs: 3vw;
    
        --h3-fs: 2.8vw;
    
        --p-b-fs: 2.6vw;
        --p-fs: 2.2vw;
        --p-s-fs: 2vw;
        
    }
}

@media (max-width:650px) {
    :root {

        --h1-fs: 9vw;
        --h1-s-fs: 7vw;
    
        --h2-fs: 4.5vw;
        --h2-s-fs: 4vw;
    
        --h3-fs: 3.8vw;
    
        --p-b-fs: 3.6vw;
        --p-fs: 3.2vw;
        --p-s-fs: 3vw;
        
    }
}

p {
    line-height: 2vw;
}

@media (min-width:1000px) and (max-width:1400px) {
    p {
        line-height: 3vw;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    p {
        line-height: 5vw;
    }
}

@media (max-width:650px) {
    p {
        line-height: 7vw;
    }
}

html {
    scroll-behavior: smooth;
}





/* /////////////////////////////////////////////////////////////    NAV    */



nav {
    width: 100%;
    height: 10vh;
    background-color: white;
    position: fixed;
    top: 0%;
    display: flex;
    justify-content: space-between;
    padding: 0% 10%;
    z-index: 100;
}


/* LOGO */


nav .logo {
    width: fit-content;
    height: 100%;
    scale: 1.5;
    margin-left: 2.5%;
}

@media (max-width:400px) {
    nav .logo {
        scale: 1.2;
        margin-left: 2.5%;
    }
}

nav .logo img {
    width: fit-content;
    height: 100%;
    object-fit: cover;
}


/* NAV BTNS */


.nav-btns-container {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width:1000px) {
    .nav-btns-container {
        display: none;
    }
}

.nav-btns-container a {
    display: inline-block;
    font-size: var(--p-fs);
    color: black;
    padding: 1% 0%;
    text-decoration: none;
    position: relative;
}

.nav-btns-container a:not(:last-child) {
    margin-right: 5vw;
}

.nav-btns-container a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: black;
    position: absolute;
    top: 100%;
    left: 0%;
    transition: all ease 0.5s;
}

.nav-btns-container a:hover::after {
    width: 100%;
}


/* NAV CONTACT */


.nav-contact {
    width: fit-content;
    height: 100%;
}

@media (max-width:1000px) {
    .nav-contact {
        display: none;
    }
}

.nav-contact button {
    height: 100%;
    background-color: transparent;
    border: none;
    font-size: var(--p-fs);
    cursor: pointer;
}


/* MOBILE NAV */


.mobile-nav-btn {
    width: fit-content;
    height: 100%;
    position: relative;
    padding: 2% 0%;
    display: none;
    border: none;
    background-color: transparent;
}

@media (min-width:650px) and (max-width:1000px) {
    .mobile-nav-btn {
        padding: 3% 0%;
        display: block;
    }
}

@media (min-width:450px) and (max-width:650px) {
    .mobile-nav-btn {
        display: block;
        padding: 4% 0%;
    }
}

@media (max-width:450px) {
    .mobile-nav-btn {
        display: block;
        padding: 6% 0%;
    }
}

.mobile-nav-btn svg {
    width: 100%;
    height: 100%;
}

.mobile-nav-list {
    width: 60%;
    height: 100vh;
    position: fixed;
    top: 0%;
    right: -60%;
    background-color: rgb(245, 245, 245);
    padding: 5%;
    transition: all ease 0.5s;
    z-index: 101;
}

@media (max-width:650px) {
    .mobile-nav-list {
        width: 70%;
        right: -70%;
    }
}

.mobile-nav-active {
    right: 0%;
}

.mobile-nav-list a {
    display: block;
    width: 100%;
    height: fit-content;
    padding: 5% 3%;
    font-size: var(--p-b-fs);
    margin-bottom: 5%;
    text-decoration: none;
    position: relative;
    color: black;
    font-family: han_sans;
}

@media (min-width:650px) and (max-width:1000px) {
    .mobile-nav-list a {
        font-size: var(--h3-fs);
    }
}

@media (max-width:650px) {
    .mobile-nav-list a {
        font-size: var(--h2-fs);
    }
}

.mobile-nav-list a::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.082);
    position: absolute;
    top: 100%;
    left: 0%;
}

.mobile-nav-list button:first-child {
    width: 20%;
    padding: 2%;
    padding-top: 4%;
    text-align: center;
    font-size: var(--h2-fs);
    color: black;
    font-family: han_sans;
    position: relative;
    color: red;
    background-color: white;
    border: 1px solid rgba(80, 80, 80, 0.116);
    cursor: pointer;
    margin-left: 80%;
}

.mobile-nav-list button {
    display: block;
    width: 100%;
    height: fit-content;
    padding: 5% 3%;
    font-size: var(--p-fs);
    margin-bottom: 5%;
    text-decoration: none;
    position: relative;
    border: none;
    background-color: transparent;
    color: black;
    font-family: han_sans;
}

@media (min-width:650px) and (max-width:1000px) {
    .mobile-nav-list button {
        font-size: var(--h3-fs);
    }
}

@media (max-width:650px) {
    .mobile-nav-list button {
        font-size: var(--h2-fs);
    }
}

.mobile-nav-back-layer {
    width: 100vw;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.603);
    position: fixed;
    top: 0%;
    height: 0%;
    z-index: 101;
    display: none;
}

.mobile-back-layer-active {
    display: block !important;
}






/* /////////////////////////////////////////////////////////////    ASIDE    */



.aside-back-layer {
    width: 100vw;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.603);
    position: fixed;
    top: 0%;
    height: 0%;
    z-index: 100;
    display: none;
}

.aside-back-layer-active {
    display: block !important;
}

aside {
    width: 30%;
    height: 100vh;
    position: fixed;
    top: 0%;
    right: -30%;
    background-color: rgb(245, 245, 245);
    z-index: 101;
    padding: 3% 3%;
    transition: all ease 0.5s;
}

@media (min-width:1000px) and (max-width:1400px) {
    aside {
        width: 40%;
        right: -40%;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    aside {
        width: 100%;
        right: -100%;
        padding: 10% 5%;
    }
}

@media (max-width:650px) {
    aside {
        width: 100%;
        right: -100%;
        padding: 10% 7%;
    }
}

.aside-active {
    right: 0% !important;
}

aside .aside-header {
    width: 100%;
    height: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

aside .aside-header h2 {
    font-size: var(--h2-fs);
    color: black;
    font-family: han_sans;
    position: relative;
}

aside .aside-header button {
    width: 20%;
    padding: 4% 2% 2% 2%;
    text-align: center;
    font-size: var(--h2-fs);
    color: black;
    font-family: han_sans;
    position: relative;
    color: red;
    background-color: white;
    border: 1px solid rgba(80, 80, 80, 0.116);
    cursor: pointer;
}

@media (min-width:650px) and (max-width:1000px) {
    aside .aside-header button {
        padding: 2%;
        padding: 2% 1% 1% 1%;
    }
}

@media (max-width:650px) {
    aside .aside-header button {
        padding: 3% 2% 2% 2%;
    }
}

.pc-aside-close-btn {
    display: block;
}

@media (max-width:1000px) {
    .pc-aside-close-btn {
        display: none;
    }
}

.mobile-aside-close-btn {
    display: none;
}

@media (max-width:1000px) {
    .mobile-aside-close-btn {
        display: block;
    }
}

aside form {
    width: 100%;
    height: fit-content;
    margin-top: 10%;
}

@media (min-width:650px) and (max-width:1000px) {
    aside form {
        margin-top: 7%;
    }
}

@media (max-width:650px) {
    aside form {
        margin-top: 10%;
    }
}

aside form input {
    width: 100%;
    height: fit-content;
    padding: 4%;
    border: 1px solid rgba(80, 80, 80, 0.116);
    border-radius: 0.5vw;
    margin-bottom: 5%;
}

@media (min-width:650px) and (max-width:1000px) {
    aside form input {
        padding: 2%;
        margin-bottom: 3%;
    }
}

@media (max-width:650px) {
    aside form input {
        margin-bottom: 5%;
    }
}

aside form textarea {
    width: 100%;
    height: fit-content;
    min-height: 15vh;
    padding: 4%;
    border: 1px solid rgba(80, 80, 80, 0.116);
    border-radius: 0.5vw;
    margin-bottom: 5%;
}

@media (min-width:650px) and (max-width:1000px) {
    aside form textarea {
        margin-bottom: 5%;
    }
}

@media (max-width:650px) {
    aside form textarea {
        margin-bottom: 10%;
    }
}

aside form input[type="submit"] {
    width: 20%;
    cursor: pointer;
}

@media (min-width:650px) and (max-width:1000px) {
    aside form input[type="submit"] {
        width: 30%;
    }
}

@media (max-width:650px) {
    aside form input[type="submit"] {
        width: 50%;
    }
}

aside .aside-socials {
    width: 100%;
    height: 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10%;
}

@media (min-width:1000px) and (max-width:1400px) {
    aside .aside-socials {
        width: 70%;
        height: 4vw;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    aside .aside-socials {
        width: 50%;
        height: 7vw;
        margin-top: 5%;
    }
}

@media (max-width:650px) {
    aside .aside-socials {
        width: 60%;
        height: 10vw;
        margin-top: 7%;
    }
}

aside h2 {
    font-size: var(--h2-fs);
    color: red;
    font-family: han_sans;
}

aside .aside-socials a {
    width: fit-content;
    height: 100%;
    text-decoration: none;
    transition: all ease 0.5s;
}

aside .aside-socials a:hover {
    scale: 1.2;
}

aside .aside-socials a svg {
    width: 100%;
    height: 100%;
}




/* /////////////////////////////////////////////////////////////    INDEX PAGE    */



.index-body {
    height: fit-content;
    overflow-x: hidden;
}



/* ///////////////////////////////////    INDEX - SECTION    */



.index-body section {
    width: 100%;
    height: fit-content;
}


/* INTRO */


.index-body section .intro {
    width: 100%;
    height: 100vh;
    background-image: url(./pics/intro_banner.jpg);
    background-color: rgba(0, 0, 0, 0.164);
    background-blend-mode: color-burn;
    background-size: cover;
    background-position: center;
    background-position-y: -50%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.index-body section .intro div {
    height: fit-content;
    margin-left: 10%;
}

.index-body section .intro div h1 {
    font-size: var(--h1-fs);
    font-weight: bolder;
    letter-spacing: 1px;
    color: white;
    filter: drop-shadow(1px 2px 3px black);
    font-family: han_sans;
}

.index-body section .intro div h1 span {
    font-size: var(--h1-fs);
    color: red;
    font-family: han_sans;
}


/* CON-1 */


.index-body section .con-1 {
    width: 100%;
    height: fit-content;
    padding: 5% 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.index-body section .con-1 div {
    width: 30%;
}

@media (min-width:650px) and (max-width:1000px) {
    .index-body section .con-1 div {
        width: 100%;
        margin-bottom: 5%;
    }
}

@media (max-width:650px) {
    .index-body section .con-1 div {
        width: 100%;
        margin-bottom: 15%;
    }
}

@media (max-width:650px) {
    .index-body section .con-1 div:nth-child(1) {
        margin-top: 10%;
    }
}

@media (max-width:1000px) {
    .index-body section .con-1 div:nth-child(2) {
        text-align: end;
    }
}

.index-body section .con-1 div h2 {
    font-size: var(--h2-s-fs);
    color: #222222;
}

.index-body section .con-1 div p {
    font-size: var(--p-fs);
    color: #222222;
    margin-top: 5%;
}


/* CON-2 */


.index-body section .con-2 {
    width: 100%;
    height: fit-content;
    padding: 5% 10%;
    position: relative;
}

#our_services_anchor {
    width: 5vw;
    height: 5vw;
    position: absolute;
    bottom: 100%;
    left: 0%;
    opacity: 0;
    pointer-events: none;
}

.index-body section .con-2 span {
    font-size: var(--p-b-fs);
    color: #222222;
    font-family: han_sans;
}

.index-body section .con-2 h2 {
    font-size: var(--h2-fs);
    color: #222222;
    font-family: han_sans;
    margin-top: 2%;
}

.index-body section .con-2 .services-container {
    width: 100%;
    height: fit-content;
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.index-body section .con-2 .services-container .service-item {
    width: 26%;
    margin-bottom: 10%;
    text-decoration: none;
}

@media (min-width:1000px) and (max-width:1400px) {
    .index-body section .con-2 .services-container .service-item {
        width: 30%;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    .index-body section .con-2 .services-container .service-item {
        width: 45%;
    }
}

@media (max-width:650px) {
    .index-body section .con-2 .services-container .service-item {
        width: 80%;
        margin-top: 10%;
    }
}

.index-body section .con-2 .services-container .service-item .service-item-header {
    width: fit-content;
    font-size: var(--p-b-fs);
    font-weight: normal;
    position: relative;
    color: black;
    transition: all ease 0.5s;
}

.service-item:hover .service-item-header {
    color: rebeccapurple !important;
}

.index-body section .con-2 .services-container .service-item .service-item-header::after {
    content: '';
    width: 0%;
    height: 2px;
    position: absolute;
    top: 110%;
    left: 0%;
    transition: all ease 0.5s;
}

.service-item:hover .service-item-header::after {
    width: 100% !important;
    background-color: rebeccapurple !important;
}

.index-body section .con-2 .services-container .service-item .service-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 5%;
}

.index-body section .con-2 .services-container .service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all ease 0.5s;
    perspective: 1000px;
}

.service-item:hover .service-img-wrapper img {
    scale: 1.2;
    transform: rotate3d(-1, -2, -3, 10deg);
}

/* CON-3 */

.index-body section .con-3 {
    width: 100%;
    height: fit-content;
    padding: 5% 10%;
    background-color: yellow;
    background-image: url(./pics/con_3.jpg);
    background-position: center;
    background-color: rgba(0, 0, 0, 0);
    background-blend-mode: color-burn;
    background-size: cover;
    background-attachment: fixed;
}

@media (min-width:650px) and (max-width:1000px) {
    .index-body section .con-3 {
        padding: 7% 10%;
    }
}

@media (max-width:650px) {
    .index-body section .con-3 {
        margin-top: 10%;
        margin-bottom: 10%;
        padding: 10% 10%;
    }
}

.index-body section .con-3 h1 {
    font-size: var(--h1-fs);
    color: white;
    filter: drop-shadow(1px 2px 3px black);
    font-family: han_sans;
}

/* CON-4 */

.index-body section .con-4 {
    width: 100%;
    height: fit-content;
    padding: 5% 10% 10% 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

@media (max-width:650px) {
    .index-body section .con-4 {
        flex-direction: column;
    }
}

#about_us_anchor {
    width: 5vw;
    height: 5vw;
    position: absolute;
    bottom: 100%;
    left: 0%;
    opacity: 0;
    pointer-events: none;
}

.index-body section .con-4 h2 {
    width: 100%;
    font-size: var(--h2-fs);
    font-family: han_sans;
    text-align: end;
    margin-bottom: 5%;
}

@media (max-width:1000px) {
    .index-body section .con-4 h2 {
        margin-bottom: 0%;
    }
}

.index-body section .con-4 .staf-item {
    width: 45%;
    height: fit-content;
    position: relative;
    margin-top: 5%;
}

@media (max-width:650px) {
    .index-body section .con-4 .staf-item {
        width: 100%;
        margin-top: 20%;
    }
}

.index-body section .con-4 .staf-item div {
    width: 50%;
    height: 22vw;
    cursor: pointer;
    overflow: hidden;
}

@media (min-width:1000px) and (max-width:1400px) {
    .index-body section .con-4 .staf-item div {
        width: 65%;
        height: 30vw;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    .index-body section .con-4 .staf-item div {
        width: 76%;
        height: 34vw;
        margin-bottom: 10%;
    }
}

@media (max-width:650px) {
    .index-body section .con-4 .staf-item div {
        width: 70%;
        height: 70vw;
    }
}

.index-body section .con-4 .staf-item img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: all ease 0.5s;
}

.index-body section .con-4 .staf-item div img:hover {
    scale: 1.2;
}

.index-body section .con-4 .staf-item h3 {
    font-size: var(--h3-fs);
    font-weight: bolder;
    margin-top: 5%;
}

.index-body section .con-4 .staf-item h4 {
    font-size: var(--p-fs);
    font-weight: bolder;
    margin-top: 2%;
    color: red;
}

.index-body section .con-4 .staf-item p {
    font-size: var(--p-fs);
    margin-top: 2%;
}


/* CON-5 */


.index-body section .con-5 {
    width: 100%;
    height: fit-content;
    background-color: #222222;
    padding: 5% 10%;
}

@media (min-width:650px) and (max-width:1000px) {
    .index-body section .con-5 {
        padding: 7% 10%;
    }
}

@media (max-width:650px) {
    .index-body section .con-5 {
        padding: 10%;
    }
}

.index-body section .con-5 h1 {
    font-size: var(--h1-fs);
    color: white;
    font-family: han_sans;
}

.index-body section .con-5 p {
    width: 90%;
    font-size: var(--p-b-fs);
    color: white;
    margin-top: 5%;
}

.index-body section .con-5 button {
    width: fit-content;
    padding: 2% 3%;
    display: block;
    font-size: var(--p-b-fs);
    text-decoration: none;
    margin-top: 5%;
    border-radius: 0.5vw;
    background-color: rgb(245, 245, 245);
    color: #222222;
    transition: all ease 0.5s;
    border: none;
    cursor: pointer;
}

@media (min-width:650px) and (max-width:1000px) {
    .index-body section .con-5 button {
        padding: 4% 6%;
        margin-top: 7%;
    }
}

@media (max-width:650px) {
    .index-body section .con-5 button {
        padding: 6% 9%;
        margin-top: 10%;
    }
}

.index-body section .con-5 button:hover {
    scale: 1.1;
}

.pc-lets-start-btn {
    display: block !important;
}

@media (max-width:1000px) {
    .pc-lets-start-btn {
        display: none !important;
    }
}

.mobile-lets-start-btn {
    display: none !important;
}

@media (max-width:1000px) {
    .mobile-lets-start-btn {
        display: block !important;
    }
}




/* /////////////////////////////////////////////////////////////    IMPLEMNTATION PAGE    */



.imp-body {
    height: fit-content;
    overflow-x: hidden;
}

.imp-body section {
    width: 100%;
    height: fit-content;
    padding-top: 20%;
    margin-bottom: 30%;
}

@media (min-width:650px) and (max-width:1000px) {
    .imp-body section {
        padding-top: 30%;
    }
}

@media (max-width:650px) {
    .imp-body section {
        padding-top: 40%;
    }
}

.imp-body section h2 {
    font-size: var(--h1-fs);
    font-family: han_sans;
    padding: 0% 10%;
}

.imp-body section .imp-con {
    width: 100%;
    height: fit-content;
    padding: 0% 10% 0% 0%;
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.imp-body section .imp-con img {
    width: 48%;
    height: fit-content;
    object-fit: cover;
}

@media (min-width:650px) and (max-width:1000px) {
    .imp-body section .imp-con img {
        width: 60%;
    }
}

@media (max-width:650px) {
    .imp-body section {
        padding-top: 40%;
    }
}

.imp-body section .imp-con p {
    width: 48%;
    font-size: var(--p-fs);
    color: black;
}

@media (min-width:650px) and (max-width:1000px) {
    .imp-body section .imp-con p {
        width: 80%;
        margin-left: 10%;
    }
}

@media (max-width:650px) {
    .imp-body section .imp-con p {
        width: 90%;
        margin-left: 10%;
    }
}




/* /////////////////////////////////////////////////////////////    COMMERCIAL PAGE    */



.comm-body {
    height: fit-content;
    overflow-x: hidden;
}

.comm-body section {
    width: 100%;
    height: fit-content;
    padding-top: 20%;
    margin-bottom: 30%;
}

@media (min-width:650px) and (max-width:1000px) {
    .comm-body section {
        padding-top: 30%;
    }
}

@media (max-width:650px) {
    .comm-body section {
        padding-top: 40%;
    }
}

.comm-body section h2 {
    font-size: var(--h1-fs);
    font-family: han_sans;
    padding: 0% 10%;
}

.comm-body section .pseodu-commercial-img {
    width: 100%;
    height: 30vw;
    background-image: url(./pics/commercial.jpg);
    background-color: rgba(0, 0, 0, 0.253);
    background-blend-mode: color-burn;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 5%;
}

@media (max-width:750px) {
    .comm-body section .pseodu-commercial-img {
        height: 40vw;
    }
}

.comm-body section p {
    width: 100%;
    height: fit-content;
    font-size: var(--p-fs);
    padding: 0% 10%;
    margin-top: 5%;
}



/* /////////////////////////////////////////////////////////////    RESIDENTIAL PAGE    */



.resid-body {
    height: fit-content;
    overflow-x: hidden;
}

.resid-body section {
    width: 100%;
    height: fit-content;
    padding-top: 20%;
    margin-bottom: 30%;
}

@media (min-width:650px) and (max-width:1000px) {
    .resid-body section {
        padding-top: 30%;
    }
}
@media (max-width:650px) {
    .resid-body section {
        padding-top: 40%;
    }
}

.resid-body section h2 {
    font-size: var(--h1-fs);
    font-family: han_sans;
    padding: 0% 10%;
}

.resid-body section p {
    width: 100%;
    height: fit-content;
    font-size: var(--p-fs);
    padding: 0% 10%;
    margin-top: 5%;
}

.resid-body section .items-pics-container {
    width: 100%;
    height: fit-content;
    padding: 0% 10%;
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    gap: 1vw;
}

.resid-body section .items-pics-container img {
    max-width: 24%;
    height: 40vw;
    object-fit: cover;
    border-radius: 1vw;
    cursor: pointer;
}

@media (min-width:650px) and (max-width:1000px) {
    .resid-body section .items-pics-container img {
        min-width: 31%;
    }
}

@media (max-width:650px) {
    .resid-body section .items-pics-container img {
        min-width: 47%;
    }
}



/* /////////////////////////////////////////////////////////////    EXTERIORS PAGE    */



.exterior-body {
    height: fit-content;
    overflow-x: hidden;
}

.exterior-body section {
    width: 100%;
    height: fit-content;
    padding-top: 20%;
    margin-bottom: 30%;
}

@media (min-width:650px) and (max-width:1000px) {
    .exterior-body section {
        padding-top: 30%;
    }
}

@media (max-width:650px) {
    .exterior-body section {
        padding-top: 40%;
    }
}

.exterior-body section h2 {
    font-size: var(--h1-fs);
    font-family: han_sans;
    padding: 0% 10%;
}

.exterior-body section p {
    width: 100%;
    height: fit-content;
    font-size: var(--p-fs);
    padding: 0% 10%;
    margin-top: 5%;
}

.exterior-body section .items-pics-container {
    width: 100%;
    height: fit-content;
    padding: 0% 10%;
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    gap: 1vw;
}

.exterior-body section .items-pics-container img {
    max-width: 47%;
    height: fit-content;
    object-fit: cover;
    border-radius: 1vw;
    cursor: pointer;
}

.exterior-body section .items-pics-container img:nth-child(3n+3) {
    max-width: calc(94% + 1vw);
}

/* ZOOM POPUP */

.item-img-zoom-popup {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(50px);
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
}

.item-img-zoom-popup svg {
    width: 5vw;
    height: 5vw;
    position: absolute;
    right: 5%;
    background-color: rgb(245, 245, 245);
    cursor: pointer;
    border-radius: 0.5vw;
    padding: 0.5%;
}

@media (max-width:1000px) {
    .item-img-zoom-popup svg {
        border-radius: 1vw;
    }
}

section .item-img-zoom-popup img {
    width: fit-content;
    max-width: 90%;
    height: fit-content;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 1vw;
}

.hide-body-scroll {
    overflow: hidden;
}



/* /////////////////////////////////////////////////////////////    FOOTER    */



footer {
    width: 100%;
    height: fit-content;
    background-color: rgb(245, 245, 245);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2% 10%;
}

@media (min-width:1000px) and (max-width:1400px) {
    footer {
        padding: 5% 10%;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    footer {
        flex-direction: column;
        align-items: start;
        padding: 10% 10% 5% 10%;
    }
}

@media (max-width:650px) {
    footer {
        flex-direction: column;
        align-items: start;
        padding: 10% 10% 5% 10%;
    }
}

footer .footer-logo {
    width: 20%;
    height: fit-content;
    position: relative;
}

@media (min-width:1000px) and (max-width:1400px) {
    footer .footer-logo {
        width: 50%;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    footer .footer-logo {
        width: 70%;
    }
}

@media (max-width:650px) {
    footer .footer-logo {
        width: 90%;
    }
}

footer .footer-logo img {
    width: 20%;
    height: 100%;
    object-fit: cover;
    scale: 3;
    transform: translateX(30%);
}

footer .footer-socials {
    width: fit-content;
    height: 2vw;
    display: flex;
}

@media (min-width:1000px) and (max-width:1400px) {
    footer .footer-socials {
        height: 4vw;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    footer .footer-socials {
        height: 7vw;
        margin-top: 7%;
    }
}

@media (max-width:650px) {
    footer .footer-socials {
        height: 10vw;
        margin-top: 10%;
    }
}

footer .footer-socials a {
    width: fit-content;
    height: 100%;
    transition: all ease 0.5s;
}

footer .footer-socials a:not(:last-child) {
    margin-right: 3vw;
}

@media (min-width:650px) and (max-width:1000px) {
    footer .footer-socials a:not(:last-child) {
        margin-right: 6vw;
    }
}

@media (max-width:650px) {
    footer .footer-socials a:not(:last-child) {
        margin-right: 7.5vw;
    }
}

footer .footer-socials a:hover {
    scale: 1.2;
}

footer .footer-socials a svg {
    width: 100%;
    height: 100%;
}

footer .footer-location {
    width: fit-content;
    display: flex;
}

@media (min-width:1000px) and (max-width:1400px) {
    footer .footer-location {
        margin-top: 5%;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    footer .footer-location {
        margin-top: 3%;
        flex-direction: column;
    }
}

@media (max-width:650px) {
    footer .footer-location {
        margin-top: 3%;
        flex-direction: column;
    }
}

footer .footer-location div {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (min-width:650px) and (max-width:1000px) {
    footer .footer-location div {
        margin-top: 7%;
    }
}

@media (max-width:650px) {
    footer .footer-location div {
        margin-top: 10%;
    }
}

footer .footer-location div:not(:last-child) {
    margin-right: 2vw;
}

footer .footer-location div svg {
    width: fit-content;
    height: 2vw;
    color: red;
}

@media (min-width:1000px) and (max-width:1400px) {
    footer .footer-location div svg {
        height: 4vw;
    }
}

@media (min-width:650px) and (max-width:1000px) {
    footer .footer-location div svg {
        height: 7vw;
    }
}

@media (max-width:650px) {
    footer .footer-location div svg {
        height: 10vw;
    }
}

footer .footer-location div span {
    font-size: var(--p-fs);
    margin-left: 1vw;
}

@media (min-width:650px) and (max-width:1000px) {
    footer .footer-location div span {
        font-size: var(--p-b-fs);
    }
}

@media (max-width:650px) {
    footer .footer-location div span {
        font-size: var(--p-b-fs);
    }
}

footer .copyrights-p {
    width: 100%;
    font-size: var(--p-fs);
    margin-top: 5%;
    position: relative;
    padding: 4% 0% 3% 0%;
}

@media (min-width:650px) and (max-width:1000px) {
    footer .copyrights-p {
        margin-top: 7%;
        padding: 7% 0% 3% 0%;
    }
}

@media (max-width:650px) {
    footer .copyrights-p {
        margin-top: 10%;
        padding: 8% 0% 3% 0%;
    }
}

footer .copyrights-p::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: black;
    position: absolute;
    top: 0%;
    left: 0%;
    transition: all ease 0.5s;
}



/* /////////////////////////////////////////////////////////////////////////    MAIL SEND    */


.email-sent {
    width: 100%;
    height: fit-content;
    padding: 5% 10%;
    background-color: rgb(245, 245, 245);
}

@media (min-width:650px) and (max-width:1000px) {
    .email-sent {
        padding: 7% 10%;
    }
}

@media (max-width:650px) {
    .email-sent {
        padding: 10%;
    }
}

.email-sent h2 {
    font-size: var(--h1-s-fs);
    color: green;
    font-weight: bolder;
}

.email-sent p {
    font-size: var(--p-b-fs);
    color: black;
    margin-top: 3%;
}

.email-sent a {
    width: fit-content;
    font-size: var(--p-b-fs);
    padding: 2% 4%;
    color: white;
    display: block;
    margin-top: 2%;
    font-weight: bolder;
    background-color: green;
    border-radius: 0.5vw;
    text-decoration: none;
}

@media (min-width:650px) and (max-width:1000px) {
    .email-sent a {
        padding: 4% 6%;
    }
}

@media (max-width:650px) {
    .email-sent a {
        padding: 6% 9%;
    }
}

.email-send-error h2 {
    color: red !important;
}

.email-send-error a {
    background-color: red !important;
}

































































































































































































