:root{
    --btnColor: #0070c9;
    --white: #fff;
    --black: #000;
    --gray: #c1c1c1;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
}

h1{
    font-size: 3.5em !important; 
}

img{
    display: block;
    width: 100%;
    object-fit: cover;
}

.py {
    padding: 100px 0;
}

/* Nav */

nav .nav-link.active {
    color: var(--btnColor) !important;
    border-bottom: 2px solid var(--btnColor);
}


/* header */


header .carousel-indicators  [data-bs-target] {
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

header .carousel-caption {
    top: 40%;
    left: 10%;
    transform: translateY(-40%);
    text-align: left;
}

header form select {
    background: transparent;
    border: 1px solid var(--white);
    width: 300px;
    padding: 8px 16px;
}

header form select option {
    color: var(--black);
}

/* about */

.about {
    background: var(--gray);
}
.about .img-wrapper{
    flex: 0 0 40%;
}

.about .text-wrapper {
    flex: 0 0 60%;
}

.about .numbers h4 {
    margin-bottom: 20px;
}
.about .numbers span {
   background: var(--black);
   color: var(--white);
   border-radius: 50%;
   padding: 2px 7px;
   margin-right: 10px;
   font-size: 16px;
}

/* Much More */

.more{
    background: var(--black);
}

.more img {
    width: 30px;
    display: inline-block;
    margin-right: 20px;
}


/* Repairs filter */



.repairs-wrapper .card {
    border: none;
    display: none;
}

.repairs-wrapper .show {
    display: block;
}


.btns.active{
    color: var(--btnColor) !important;
    border: none;
}

/* Our services */

.services-wrapper .row figure{
    height: 56px;
    width: 49px;
    margin: auto;
}

/* footer */
footer .social {
    font-size: 30px;
}