
@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}



* {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1px;
    user-select: none;
}

:root {
    --yellow: #c59d5f;
    --white: #fff;
    --black: #000;
}

.clr {
    clear: both;
    height: 3rem;
}

/* Banner */
#banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/image/banner/banner.jpg") no-repeat center center/cover;
    max-width: 100%;
    height: 36rem;
    text-align: center;
}

.banner-context {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

}

#banner .banner-context p {
    width: 25rem;
    color: var(--white);
    font-weight: 200;
}

#banner .banner-context button {
    max-width: 8rem;
    width: auto;
    color: var(--white);
    background-color: var(--yellow);
    padding: .7rem;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    transition: .5s;
}

#banner .banner-context button:hover {
    color: var(--yellow);
    background-color: var(--white);
}

/* Banner Mobile */
@media only screen and (max-width: 1450px) {
    #banner {
        background: url("/image/banner/banner-mobile.jpg") no-repeat center center/cover;
    }

    #banner .banner-context p {
        font-size: .8rem;
        width: 18rem;
    }
}

@media only screen and (min-width: 1495px) {
    #banner {
        background: url("/image/banner/banner.jpg") no-repeat center center/cover;
        height: 48rem;
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* Our Services */
#our-services {
    margin: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#our-services .section-title p {
    color: var(--black);
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

#our-services .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

@media only screen and (min-width: 1920px) {
    #our-services .boxes {
        display: flex;
        justify-content: center;
        max-width: 1600px;
    }
}

#our-services .boxes .box {
    border: 1px solid #c59d5f;
    border-radius: 5px;
    padding: 2rem 0.5rem;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 150px;
    min-height: 150px;
    width: 315px;
    height: 315px;
}

#our-services .boxes .box:hover {
    background-color: var(--yellow);
    color: var(--white);
}

#our-services .boxes .box img {
    width: 290px;
    height: 290px;
    object-fit: contain;
    border-radius: 5px;
}

@media only screen and (max-width: 510px) {
    #our-services .boxes .box {
        padding: .5rem .2rem;
        width: 250px;
        height: 250px;
    }

    #our-services .boxes .box img {
        width: 200px;
        height: 200px;
    }
}

#our-services .boxes .box p {
    margin: 8px 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 1px;
}

/* Price List */
#price-list {
    background: url("/image/price-list/price-list-bg.jpg") no-repeat center center/cover;
}

@media only screen and (min-width: 1495px) {
    #price-list {
        background: url("/image/price-list/price-list-bg.jpg") no-repeat center center/cover;
        height: 45rem;
        max-width: 1920px;
        margin: 0 auto;
        /* display: flex;
        justify-content: space-around;
        align-items: center; */
    }
}

#price-list .section-title p {
    color: var(--black);
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 2rem;
}

.price-list-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
    margin: 0 4rem;
}

@media only screen and (max-width: 510px) {
    .price-list-display {
        gap: 1rem;
    }
}


#price-list .half {
    display: flex;
    flex-direction: column;
    width: 20rem;
}

#price-list .context {
    display: flex;
    flex-direction: row;
    gap: 7rem;
}

@media only screen and (max-width: 510px) {
    #price-list .context {
        gap: 2rem;
    }
}

.price-title {
    color: var(--yellow);
    font-weight: 400;
    margin-bottom: .5rem;
    font-size: 1.2rem;
}

.half .text p {
    margin-bottom: .3rem;
    font-weight: 300;
}

@media only screen and (max-width: 510px) {

    .half .text p,
    .price-list-display .half .context .price p {
        font-size: .7rem;
    }
}

@media only screen and (max-width: 1415px) {
    .half .text {
        min-width: 14rem;
    }
}

.half .text {
    margin-bottom: 2rem;
}

.half .text .tiny {
    font-size: .8rem;
    width: 23rem;
}

@media only screen and (max-width: 510px) {
    .half .text .tiny {
        font-size: .6rem;
        width: 15rem;
    }
}

.price-list-display .half .context .price p {
    font-weight: 300;
    margin-bottom: .3rem;
}

/* Footer */
#footer {
    background: url("/image/footer/footer-bg.jpg") no-repeat center center/cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    height: 21rem;
    padding: 5rem;
}

@media only screen and (min-width: 1495px) {
    #footer {
        background: url("/image/footer/footer-bg.jpg") no-repeat center center/cover;
        height: 30rem;
        max-width: 1920px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

@media only screen and (max-width: 1005px) {
    #footer {
        background: url("/image/footer/footer-bg-mobile.jpg") no-repeat center center/cover;
        height: 60rem;
        padding: 4rem 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

#footer .copyright img {
    margin-bottom: .5rem;
}

#footer .copyright p {
    color: var(--white);
    font-size: .6rem;
    text-align: center;
}

#footer .contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#footer .contact i {
    color: var(--yellow);
    transition: .5s;
}

#footer .contact i:hover {
    color: var(--white);
}

#footer .phone p {
    color: var(--white);
}

.phone,
.address {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.address p {
    color: var(--white);
}

.social {
    display: flex;
    gap: 1.3rem;
}

.social i {
    cursor: pointer;
    font-size: 26px;
    transition: .2s;
    margin-top: 1rem;
}

.social i:hover {
    color: var(--white);
}

.phone-i,
.address-i {
    padding-top: .6rem;
}

.contact-title {
    color: var(--yellow);
    font-weight: 500;
}

.contact-text {
    width: 20rem;
}

@media only screen and (max-width: 510px) {

    .contact-text {
        width: 15rem;
    }
}

.phone-number {
    color: var(--white);
    text-decoration: none;
}