body,html{
    overflow-x: hidden;
    font-family: "Red Hat Display";
    padding-top: 50px;

    text-transform: uppercase;
}
a{
    text-decoration: none !important;
}
.container-fluid{
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 100%;
}
.navbar{
    background-color: black;
    color: rgb(185, 185, 185);
}
.nav-item a{
    color: rgb(185, 185, 185);

}
.nav-item.active a{
    color: #ddc05f;    font-weight: bold;
}

.text-white{
    color: white;
}
.text-grey{
    color: grey;
}
.text-pri{
    color: black;
}
.text-pri2{
    color: rgb(68, 68, 68);
}
.text-sec{
    color: #ddc05f;
}
.bg-pri{
    background-color: black;
}
.bg-sec{
    background-color: #ddc05f;
}
.f-bold{
    font-weight: bold;
}
.f-bolder{
    font-weight: bolder;
}
.radius-5{
    border-radius: 5px;
}
.radius-10{
    border-radius: 10px;
}
.r-none{
    border-radius: 0;
}
.form-control{
    border-radius: 0;
}
.jc{
    justify-content: center;
}
.ac{
    align-items: center;
}
.op50{
    opacity: .2;
}

.service-item{
    background-color: #ddc05f;
    color: black;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: all ease-in-out .2s;
    position: relative;
}
.service-item .overlay{
position: absolute;
top: 0;left: 0;width:100%;height: 100%;background-position: center;background-size: cover;background-repeat: no-repeat;
opacity: .1;z-index: 1;
}
.service-item:hover{
    background-color: #c9ab4b;
}
.service-item:hover>img{
    height:100px;

}
.service-item img{
    height: 85px;
    width: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.2rem;
    filter: grayscale(10%);
    transition: all ease-in-out .2s;
    z-index: 2;
}
.service-item h4{
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2;
}
.fixed-bg{
    width: 100%;
    height: 350px;
    text-align: center;
    background-attachment: fixed;

    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;align-items: center;
}
footer ul{
    list-style: none;
}
footer ul li a{
   color: black;

}
footer ul li{
    transition: all ease-in-out .2s;
}
footer ul li:hover{
    margin-left: .2rem;
}
.me-auto{
    margin-inline-start: auto;
}
h1{
    font-size: 2.5rem;
}
h2{
    font-size: 2rem;
}
@media only screen and (max-width:480px) {
    h1{
        font-size: 1.8rem;
    }
    h2{
        font-size: 1.5rem;
    }
}
.large{
    font-size: large;
}
.medium{
    font-size: medium;
}
