: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;
    }
} */

.tabs h1 {
    text-align: center;
   
}
h1 span {
    color: var(--color-one);
    position: relative;
}
h1 span::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%);
}
.All {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 20px;
    margin-top: 60px ;
    margin-bottom: 60px ;
}
.All p.num {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    background-color: var(--color-one);
    border: 1px solid var(--color-one);
    border-radius: 50%;
   width: 200px;
   height: 200px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.All p.num:hover {
    background-color: #05333c;
}
.All .content {
    font-size: 18px;
}