*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.no-margin{
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

.card.hover-custom {
    transition: transform .2s;
}

.card.hover-custom:hover {
    cursor: pointer;
    transform: scale(1.05) !important;
}

.text-description{
    color: #fff !important;
    padding: 1.2rem;
    background: rgba(0, 0, 0, .5);
}

.spacer{
    margin: 8% 0;
}

.spacer-card{
    margin: 4% 0;
}

.spacer-bottom{
    margin-bottom: 4%;
}

.title{
    font-size: 2.5rem;
}

.gray{
    background: #F0F0F0;
}

.services-grid {
    padding: 8% 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem !important;
}

.heading{
    font-size: 2rem;
}

@media (max-width: 768px) {
    .custom-grid {
        grid-template-columns: 1fr;
    }

    .box1, .box2, .box3, .box4 {
        height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .banner{
        height: auto !important;
        padding-top: 2% !important;
    }

    .heading{
        font-size: 1.5rem;
        margin-top: 4%;
    }

    .spacer-card{
        margin: 10% 0;
    }

    .title{
        font-size: 2rem;
    }
}

.banner{
    height: 50vh;
    background: url("../img/banner.webp") center center;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.img-card-custom{
    max-width: 90% !important;
}

.box-white {
    background: linear-gradient(to right, 
        rgb(39, 30, 22) 0%, 
        rgb(39, 30, 22) 20%, 
        rgb(93, 71, 50) 50%, 
        rgb(39, 30, 22) 80%, 
        rgb(39, 30, 22) 100%);
    padding: 2% 10%;
    margin-bottom: 3%;
}

.footer-img{
    max-width: 150px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

  
#myBtn:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}