:root {
    --transition: 0.5s;
    --color-one: #095b6b;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
font-family: 'Cairo', sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h1 {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: white;
}

/* ::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, #51050F, #ff4838);
} */

/* CONTAINER........................... */
/* .container {
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        width: 760px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
} */

.serv1 {
    background-image: url(/images/background.png);
    background-size: cover;
    background-position: center;
    width: 100%;



}

.serv1 h1 {
    text-align: center;
    margin-bottom: 30px;
}

.serv1 h1  {
    color: var(--color-one);
    
    position: relative;
}
h1::before {
    content: "";
    position: absolute;
    background-image: url(/images/shape-4.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 120px;
    height: 13px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}



.serv1 p {
    font-size: 30px;
    margin-bottom: 0 !important;
}



.serv1 .a-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.a-boxes .imgs {
    margin-bottom: 40px;
    margin-top: 40px;
}
.a-boxes .imgs img {
    width: 122px;
    height: 129px;
  
}
.a-boxes .imgs img:not(:last-child) {
    margin-left: 100px;
}