:root{
    --text-col: #FDB44E;
    --text-col2: rgb(0,0,0);
    --bkgnd-col: rgb(0, 0, 0);
    --bkgnd-col2: #FDB44E;
    --col4: rgb(255, 255, 255);
    --col3: rgb(0, 0, 0);
}


.inter-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

*{
    padding: 0;
    margin: 0;
    /*outline: 1px solid red;*/
}

body{
    height: 100%;
    width: 100%;
    font-family: "Inter";
    background-color: var(--bkgnd-col);
    color: var(--text-col);
}

/*nav*/
nav{
    width: 100%;
    height: 15vh;
    position: fixed;
    display: flex;
    align-items: center;
    background-color: var(--bkgnd-col2);
    color: var(--text-col2);
    z-index: 100;
}

nav ul{
    list-style-type: none;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 30px;
}

nav ul li p{
    color: var(--text-col2);
    font-size: 1.4rem;
    font-family: "Inter";
    cursor: pointer;
}

nav ul .active{
    text-decoration: underline;
}

/*hero*/
section.hero{
    display: flex;
    width: 100%;
    height: 85vh;
    gap: 10%;
    padding-top: 15vh;
}

section.hero .l{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex: 1fr;
}

section.hero .l h1{
    font-size: 3rem;
    margin-left: 10%;
    margin-top: 30%;
}

section.hero .l h1 span{
    color: var(--col4);
    font-size: 3.2rem;
}

section.hero .l p{
    margin-left: 10%;
    margin-top: 20px;
    font-size: 1.3rem;
}

section.hero .r{
    flex: 1fr;
    display: flex;
    height: 100%;
    justify-content: center;
}

section.hero .r img{
    width: 100%;
    height: 100%;
    margin-right: 20%;
    margin-top: auto;
}

section.prices{
    width: 100%;
    height: 150vh;
}

section.prices .container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

section.prices .container img{
    height: 100%;
    width: 80%;
}

section.services{
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

section.services .t{
    margin-top: 30px;
    width: 50%;
    text-align: center;
}

section.services .t h1{
    font-size: 4.5rem;
}

section.services .t p{
    font-size: 1.3rem;
}

section.services .b{
    align-self: center;
    width: 60%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

section.services .b .grid-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.services .b .grid-item img{
    width: 50%;
    height: auto;
}

section.services .b .grid-item p{
    text-align: center;
}

section.work{
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

section.work h1{
    font-size: 3rem;
    margin-top: 40px;
}

section.work .img-container{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 5px;
}

section.work .img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
    z-index: 2;
}

section.work .img-container img:hover{
    cursor: pointer;
    transform: scale(1.4);
    z-index: 5;
}

section.footer{
    display: flex;
    flex-direction: row;
    width: 95%;
    padding: 2.5%;
    justify-content: space-between;
    background-color: var(--text-col);
    color: var(--bkgnd-col);
    margin-top: 75px;
    align-items: center;
}

section.footer p{
    font-size: 100%;
}

section.footer .l h1{
    font-size: 250%;
}

section.footer .r{
    margin-right: 10px;
}

@media (max-width: 768px) {
    section.hero{
        flex-direction: column;
        align-items: center;
        gap: 0;
        height: max-content;
    }

    section.hero .l{
        width: 80%;
    }

    section.hero .l h1{
        margin-left: 10px;
    }

    section.hero .l p{
        margin-left: 10px;
    }

    section.hero .r{
        width: 100%;
    }

    section.hero .r img{
        height: 90%;
        width: 90%;
        margin: 0;
    }
}

@media (max-width: 350px) {
    nav{
        display: none;
    }

    section.hero{
        margin-top: 0;
        padding-top: 0;
    }
}