*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 7000px;
    background-color:#0d0d10;
    font-family: sans-serif;
    background-attachment: fixed;
    background-size: cover;
    
   
}
.home{
    background-image: url(../img/kyle-brinker-0vVHYD3PcKo-unsplash_3.jpg);
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    
    
}
.home-contact{
    width:1000px;
    margin: auto;

    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50% , -50%);

   
}
.home-title{
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 75px;
    font-weight: 1000;
}
.home-p{
    color: rgb(176, 182, 188);
    width: 600px;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    line-height: 20px;
    font-family: sans-serif;
    font-size: 16px;
}
.div-btn{
    padding-top: 50px;
    text-align: center;
}
.home-btn{

    margin-right: 10px;
    width: 150px;
    height: 55px;
    border-radius: 40px;
    color: rgb(0, 0, 0);
    background-color: rgb(64, 210, 210);  
}
.home-btn:hover{
    background-color: rgba(73, 227, 227, 0.811);
    color: #ffffff;
    border: 1px solid rgb(39, 220, 199);
}
.home-overlay{}

/* ............................................................................. header */

.home-overlay{
}
.header{
    width: 95%;
    height: 55px;
    border: 0px solid rgb(164, 160, 160);
    border-radius:40px;
    background-color: rgba(0, 0, 0, 0.598);
    position: fixed;
    top: 7%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 1;
}

.home-icons{
    display: inline;
    padding-left: 15px;
    font-size: 20px;
    line-height:50px; 
}
.home-i-home{
    color: rgb(73, 227, 227);
    cursor: pointer;
}
.home-i-home:hover{
    color: aliceblue;
}
.home-search{
    position: relative;
    display: inline;
    padding-left: 20px;   
}
.home-input-search{
    border: none;
    border-radius: 20px;
    height: 30px;
    text-align: center;
}
.home-i-search{
    color: rgb(112, 111, 111);
    position: absolute;
    padding-left: 10px;
    padding-top: 18px;
}
/* ---------------------------------------------------------------------- home-list */
.home-list{
   display: inline;
}
.list{
    list-style-type: none;
    text-align: center;
    float: right;
    font-family: sans-serif;
    line-height: 55px;
    position: relative;  
}
.list li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}
.list li a{
    color: aliceblue;
    text-decoration: none;
}
.list li a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    top: 0;
    left: 0;
    background-color: rgb(0, 255, 255);
    margin-top: 40px;
    transition: .4s;
}
.list li a:hover::after{
   width: 100%;
  transition: .4s;
}
/* ............................................................................... dropdown */
.dropdown{
    display: inline;  
}
.list-dropdown{ 
    background-color: #dad8d8;
    width: 150px;
    border: .2px solid darkgray;
    border-radius: 10px;
    position: absolute;
    left: 57%;
    visibility: hidden; 
    opacity: 0;
    transition: .5s;
    text-align: center;
}
.list-dropdown li{
    display: inline-block;
    margin: auto;
    width: 100px;
}
.list-dropdown li a{
    color: #000000;  
}
.dropdown:hover  .list-dropdown {
    visibility: visible;
    opacity: 1;
    transition: .5s;
}
.list-dropdown li a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    top: 0;
    left: 0;
    background-color: aqua;
    margin-top: 40px;
}
.list-dropdown li a:hover::after{
   width: 100%;
  transition: .7s;
}
.list-dropdown li a:hover{
   color: #475858;
}
/* ---------------------------------------------------   section-1 */ 
.s1-title-1{
    margin: auto;
    margin-top:120px ;
    width: 700px;
    height: 100px;
}
.s1-title-1 .s1-title{

    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 50px;
}
.s1-line{
    margin: auto;
    margin-top:30px;
    background-color: aqua;
    border-radius: 2px;
    width: 50px;
    height: .5px;
    transition: 1s;
}
.s1-title-1:hover .s1-line{
    width: 520px;
    transition: 1s;
}
/* ...................................................... s1-cntaner */
.s1-cntaner{
    
    width: 90%;
    margin: auto;
    margin-top: 70px;
}
.s1-parent{
}
.s1-item{
    float: left;
    width: 30%; 
    height: 300px;
    border: .2px solid rgb(55, 54, 54);
    border-radius: 20px;
    color: aliceblue;
    text-align: center;
    position: relative; 
    overflow: hidden;
    transition: .7s;
    background-image: url(../img/bg-footer2.jpg);
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
}
.s1-item2{
    margin: 0px 5%;
}
.s1-item::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    z-index: -1;
}
.s1-item:hover::before  {
    background-color: rgba(0, 255, 255, 0.185);
    width: 100%;
    height: 100%;
    transition: .7s; 
    z-index: -1;
}
.s1-item:hover{
    border: .2px solid rgb(73, 227, 227);
    transition: 1s;
}
.s1-icons{
    font-size: 50px;
    padding-top: 30px;
    color: rgb(36, 200, 200);
}

.s1-info{
    padding-top: 40px;
}
.s1-info-h2{

}
.s1-info-p{
    padding-top: 10px;
    line-height: 20px;
    color: darkgray;
}

.s1-info-a{
    display: inline-block;
    margin-top: 40px;
    text-decoration: none;
    color: rgb(73, 227, 227);
}
.s1-info-a:hover{
    color: rgb(26, 186, 186);
}
.s1-item:hover .s1-icons{
    color: rgb(73, 227, 227);
    transition: .4s;
}
.s1-item:hover h2{
    color: rgb(73, 227, 227);
    transition: .4s;
}
.s1-info-a-i{
    font-size: 10px;
}
/* ............................................... section 2 */

.s2-background-home{
    background-color: rgb(18, 22, 25);
    height: 750px;
    background-size: cover;
    margin-top:700px ;
}
.s2-title-1{
    
     margin: auto;
     width: 500px;
     padding-top:20px;
 }
 .s2-title-1 .s2-title{
     border-radius: 20px;
     color: rgb(255, 255, 255);
     text-align: center;
     font-size: 50px;
     margin-top: 50px;
 }
 .s2-line{
     margin: auto;
     margin-top:30px;
     background-color: aqua;
     border-radius: 2px;
     width: 50px;
     height: .5px;
     transition: 1s;
 }
 .s2-title-1:hover .s2-line{
     width: 320px;
     transition: 1s;
 }
/* ........................................................... s2-contaner */
 .s2-contaner{
    width:80%;
    margin: auto;
    text-align: center;
    margin-top: 10px;
 }

 .s2-parent{
 }
 .s2-img{
    width: 30%;
    float: left;
    text-align: center;
    position: relative;
    margin-top:40px ;
    height: 200px;
    z-index: 0;
 }
.radius-img{
    border-radius:5px ;
}
 .s2-img2{
    margin-left: 5%;
    margin-right: 5%;
 }

 .s2-img::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.516);
    visibility: hidden;
    opacity: 0;
    transition: .5s;
 }
 .s2-img:hover::after {
   background-color: rgba(0, 0, 0, 0.516);
   visibility: visible;
   width: 100%;
   height: 100%;
   opacity: 1;
   transition: .7s;
 }
 .s2-content{
    color: rgb(255, 255, 255);
    display: inline;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
 }
 .s2-img:hover  .s2-content{
    opacity: 1;
    transition: .7s;
 }

 .s2-h2{
    padding-top: -50px;
    font-size: 40px;
 }
 .s2-p{
   padding-top: 20px;
   font-size: 20px;
 }
 .s2-icons-1{
    margin-right:  7px;
 }

.s2-icons{
    margin-top: 30px;
    padding-top: 5px;
    font-size: 20px;
    width: 40px;
    height: 30px;
    background-color: rgb(73, 227, 227);
    color: #000;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    cursor: pointer;
}
.s2-icons:hover {
    background-color: rgb(55, 169, 169);
}
/* .............................................................................sction-3 */
.s3-title-1{
    margin: auto;
    margin-top:120px ;
     width: 700px;
     height: 100px;
 }
 .s3-title-1 .s3-title{
 
     color: rgb(255, 255, 255);
     text-align: center;
     font-size: 50px;
 }
 .s3-line{
     margin: auto;
     margin-top:30px;
     background-color: aqua;
     border-radius: 2px;
     width: 50px;
     height: .5px;
     transition: 1s;
 }
 .s3-title-1:hover  .s3-line{
     width: 520px;
     transition: 1s;
 }
 /* ...................................................... s3-cntaner */
 .s3-cntaner{
     width: 90%;
     height: 700px;
     margin: auto;
     margin-top: 60px;
 }
 .s3-parent{
   
 }
 .s3-item{
     background-color: #000;
     float: left;
     width: 30%; 
     height: 240px;
     border: .2px solid rgb(55, 54, 54);
     border-radius: 20px;
     color: aliceblue;
     text-align: center;
     position: relative; 
     overflow: hidden;
     margin-top: 60px;
     transition: .4s;
     z-index:0;
 }
 .s3-item2{
     margin-left: 5%;
     margin-right: 5%;
 }
 .s3-item::before{
     content: "";
     position: absolute;
     width: 0%;
     height: 0%;
     top: 0;
     left: 0; 
 }
 .s3-item:hover::before  {
     background-color: rgba(0, 255, 255, 0.185);
     width: 100%;
     height: 100%;
     transition: .7s; 
     z-index: -1;
 }
 .s3-item:hover{
     border: .2px solid rgb(73, 227, 227);
     transition: 1s;
 }
 .s3-icons{
     float: left;
     font-size: 40px;
     padding-top: 30px;
     color: rgb(36, 200, 200);
     padding-left: 10px;
     height: 100%;
     width: 80px;
 }
 .s3-info{
     padding-top: 50px;
 }
 .s3-info-h2{
     display: inline-block;
     float: left;
     margin-top: -15px;
 }
 .s3-info-p{
     text-align: left;
     display: block;
     line-height: 20px;
     padding-top: 60px;
     color: darkgray;
     width: 320px; 
 }
 .s3-item:hover .s3-icons{
    color: rgb(73, 227, 227);
    transition: .4s;
 }
 .s3-item:hover h2{
     color: rgb(73, 227, 227);
     transition: 1s;
 }
 .s3-item:hover .s3-info-p{
     color: rgb(255, 255, 255);
     transition: 2s;
 } 

 /* ...............................................................section-4 */

.s4-home{
    margin-top:70px;
    height: 900px;
    background-color: rgb(18, 22, 25);
}
.s4-contaner{
    width: 90%;
    margin: auto;
}
.s4-item{
    color: azure;
    top: 50%;
    padding-top: 150px; 
}
.s4-img{
    float: right;
   height: 650px;
   width: 500px ;
   text-align: center;;
}
.s4-img-1{
    border-radius: 10px;
}
.s4-radio{
   margin-top: 20px;
   cursor: pointer;
}
.radio-2{
    margin: 0px 10px;
}
.s4-info{
    width: 500px;
}
.s4-titel{
    font-size: 50px;
    position: relative;
    width: 400px;
}
.s4-titel::after{
    content: "";
    position: absolute;
    width: 40px;
    height: .5px;
    top: 0;
    left: 0;
    background-color: aqua;
    margin-top: 66px;
    transition: .7s;
}
.s4-titel:hover::after{
   width: 380px;
  transition: 1s;
}
.s4-titel-p{
    padding: 40px 0px;
    border-bottom: 30px;
    line-height: 25px;
    font-size: 12px;
    word-spacing: 2px;
    color: darkgray;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.s4-p{
    padding: 30px 0px;
    color: rgb(215, 215, 215);
}
.s4-icons{
    margin-right: 10px;
    color: rgb(73, 227, 227);
}

/* ................................................................................section-5 */

.s5-contaner{
    width: 100%;
    height:400px;
    background-image: url(../img/writing-down-plans-RCXG6TP_2-1-e1712554458643.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    margin-top: 150px;
    align-items: center;
    position: relative;
}
.s5-overlay {
    width: 100%;
    height: 100%;
    background-color: #000000a4;
}
.s5-item{
    width: 90%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.s5-info{
   float: left;
   width: 25% ;
   color: #dad8d8;
   text-align: center;
 
}
.s5-icon{
    font-size: 40px;
    color: rgb(73, 227, 227);
}
.s5-icon:hover{
    color: aliceblue;
}
.s5-p1{
   padding-top: 15px;
   font-family: serif;
}
/* ................................................................section-6 */
.s6-home{
    height: 100vh;
}
.s6-title-1{
    
    margin: auto;
    width: 500px;
    margin-top: 100px;
}
.s6-title-1 .s6-title{
    border-radius: 20px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 50px;
    margin-top: 50px;
}
.s6-line{
    margin: auto;
    margin-top:30px;
    background-color: aqua;
    border-radius: 2px;
    width: 50px;
    height: .5px;
    transition: 1s;
}
.s6-title-1:hover .s6-line{
    width: 320px;
    transition: 1s;
}
/* ..............................................s6-contaner */
.s6-contaner{
    width: 90%;
    background-color: azure;
    margin: auto;
    text-align: center;
    margin-top: 70px;
}
.s6-item{
    background-image: url(../img/bg-footer2.jpg);
    background-size: cover;
    width: 30%;
    height: 420px;
    float: left;
    color: rgb(234, 234, 234);
    border: .2px solid rgb(55, 54, 54);
    border-radius: 20px;
    padding-top: 30px;
    position: relative;
    transition: .5s;
    overflow: hidden;
    z-index: 0;
}
.s6-item-2 {
    margin: 0% 5%;
}
.s6-item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    top: 0;
    left: 0; 
    transition: .5s;
}
.s6-item:hover::before  {
    background-color: rgba(0, 255, 255, 0.185);
    width: 100%;
    height: 100%;
    transition: .7s; 
    z-index: -1;
}
.s6-price{
    margin: auto;
    border: .2px solid rgb(55, 54, 54);
    width: 110px;
    height: 110px;
    border-radius: 60px;
    margin-top: 30px;
    padding-top: 25px;
}
.p-price{
    font-size: 35px;
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.p-month{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: small;
}
.s6-p{
    padding-top: 30px;
}
.s6-btn{
    margin-top: 40px;
    width: 150px;
    height: 27px;
    border-radius: 10px;
}
.s6-item:hover{
    border: .2px solid rgb(73, 227, 227);
    transition: 1s;
}
.s6-item:hover .s6-price{
    border: .2px solid rgb(73, 227, 227);
    transition: 1s;
}
.s6-item:hover .s6-h4{
    color:rgb(73, 227, 227) ;
}
.s6-btn:hover{
    border: .2px solid rgb(73, 227, 227);
}
/* ........................................................................section-7 */
.s7-home{
    width: 100%;
    height: 400px;
    margin-top: 150px;
    background-image: url(../img/annie-spratt-FSFfEQkd1sc-unsplash_2-e1712554426216.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.s7-home-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000ad;
}
.s7-contaner{
    width: 80%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.s7-item{
    float: left;
    width: 40%;
    color: aliceblue;
}
.s7-item-1{
   margin-right: 20%;
}
.s7-img{
    width: 100px;
    height: 100px;
    border-radius: 60px;
    margin-top: 50px;
    float: left;
    display: block;
}
.s7-img-1{
    background-image: url(../img/f909cb561c94235ad18b96d7c94409f6.jpg);
    background-size: cover;
}
.s7-img-2{
    background-image: url(../img/e545ca570256c9b8969b8fedb4c43b13.jpg);
    background-size: cover;
}
.s7-img-p{
   
    display: inline-block; 
    padding-top:70px;
    padding-left: 20px;
    line-height: 30px;
}
.s7-img-p1{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.s7-img-p2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(73, 222, 222);
    font-size: 12px;
}
.s7-img-p3{
    width: 400px;
    padding-top: 50px;
    font-size: 13px;
    line-height:20px ;
}
/* ................................................................section-8 */
.s8-home{
    width: 100%;
    margin-top: 75px;
    height:800px;
    background-color: rgb(18, 22, 25);
}
.s8-title-1{
    margin: auto;
    width:250px;
    height: 50px;
    padding-top: 30px;
}
.s8-title-1 .s8-title{
    border-radius: 20px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 50px;
    margin-top: 50px;
}
.s8-line{
    margin: auto;
    margin-top:30px;
    background-color: aqua;
    border-radius: 2px;
    width: 50px;
    height: .5px;
    transition: 1s;
}
.s8-title-1:hover .s8-line{
    width: 150px;
    transition: 1s;
}
/* ............................................................contaner-8 */
.s8-contaner{
    width: 90%;
    margin: auto;
    margin-top: 220px;
}
.s8-item{
    float: left;
    width: 25%;
    height: 320px;
    border: .2px solid rgb(55, 54, 54);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.s8-item-2{
    margin-left: 12.5%;
    margin-right: 12.5%;
}
.s8-item::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    top: 0%;
    left: 0%;
    background-color: #00000044;
    transition: .4s;
}
.s8-item:hover::after{
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background-color: #00000044;
    transition: .6s;
}
.s8-img{
    margin: auto;
    background-color: beige;
    width: 230px;
    height: 230px;
    margin-top: 20px;
    border-radius: 10px;
}
.s8-img-1{
    background-image: url(../img/87abfa0103a3bb7e801b7e90bc58260a.jpg);
    background-size: cover;
}
.s8-img-2{
    background-image: url(../img/ce106454f44a878280ab2439dc00129a.jpg);
    background-size: cover;
}
.s8-img-3{
    background-image: url(../img/dcef372fb2fe925a74e77c6c18ac868d.jpg);
    background-size: cover;
}
.s8-icons{
    float: right;
    background-color: #0000006f;
    border-radius: 10px;
    width: 40px;
    margin: 4px;
    height: 130px;
    visibility: hidden;
}
.s8-item:hover .s8-icons{
   visibility: visible;
   transition: .7s;
}
.s8-icons i{
    display: block;
    background-color:  rgb(73, 227, 227);
    color: #000;
    border-radius: 30px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: 10px;
    margin-left: 5px;  
}

.s8-info{
    text-align: center;
    margin: auto;
    margin-top: 20px;
    color: white;
}
.s8-info h6{
    font-size: 16px;
}
.s8-info p{
    font-size: 11px;
    padding-top: 7px;
}
/* ................................................................section-9 */
.s9-home{
    width: 100%;
    margin-top: 75px;
    height:800px;
   
}
.s9-title-1{
    margin: auto;
    width:380px;
    height: 50px;
    padding-top: 30px;
}
.s9-title-1 .s9-title{
    border-radius: 20px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 50px;
    margin-top: 50px;
}
.s9-line{
    margin: auto;
    margin-top:30px;
    background-color: aqua;
    border-radius: 2px;
    width: 50px;
    height: .5px;
    transition: 1s;
}
.s9-title-1:hover .s9-line{
    width: 230px;
    transition: .7s;
}
/* ............................................................contaner-9 */
.s9-contaner{
    width: 90%;
    margin: auto;
    margin-top: 220px;
}
.s9-item{
    float: left;
    width: 30%;
    height: 470px;
    border: .2px solid rgb(55, 54, 54);
    color: rgb(249, 249, 249);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.s9-item-2{
  margin: 0% 5%;
}
.s9-item::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    top: 0%;
    left: 0%;
    background-color: rgba(73, 227, 227, 0.701);
    transition: .4s;
    z-index: -1;
}
.s9-item:hover::after{
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background-color: rgba(73, 227, 227, 0.228);
    transition: .6s;
    z-index: -1;
}
.s9-img{
    margin: auto;
    background-color: beige;
    width: 280px;
    height: 250px;
    margin-top: 20px;
    border-radius: 10px;
}
.s9-img-1{
    background-image: url(../img/38d564e91b64bc0258896e35c8df359e.jpg);
    background-size: cover;
}
.s9-img-2{
    background-image: url(../img/6e99e7681c0111a203c2daaf78e593b2.jpg);
    background-size: cover;
}
.s9-img-3{
    background-image: url(../img/54a9a3b625c4a36d99498adaf752fa26.jpg);
    background-size: cover;
}
.s9-info{
    padding-top: 20px;
    width: 280px;
    text-align: center;
    margin: auto;
}
.s9-icons i{
    color: rgb(73, 227, 227);
    text-align: center;
    margin-right: 3px;
}
.s9-icons span{
    font-size: 11px;
    margin-right: 15px;
    color: #e6e2e2;
}
.s9-topic{
    padding-top: 20px;
}
.s9-topic h6{
   color: #dad8d8;
   font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.s9-topic p{
   width: 280px;
   padding-top: 15px;
   color: darkgrey;
   font-size: 12px;
   line-height: 17px;
}
.s9-a{
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    font-size: 11px;
    color: rgb(73, 227, 227);
}
.s9-a:hover{
    color: rgb(35, 192, 192);
}
.s9-item:hover .s9-topic p {
    color: rgb(73, 227, 227);
    transition: 1.3s;
}
.s9-item:hover .s9-icons span {
    color: rgb(73, 227, 227);
    transition: 1.3s;
}

/* .......................................................................section-10 */
.s10-home{
    margin-top: 150px;
    width: 100%;
    height: 360px;
    background-image: url(../img/bg-footer2.jpg);
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}
.s10-img{
   margin-top: 50px;
   border-radius: 20px;
}
.s10-icon{
    margin-top: 40px;
}
.s10-icon i{
    background-color:  rgb(73, 227, 227);
    color: #000;
    border-radius: 30px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
}
.s10-icon i:hover{
    background-color:  rgba(73, 227, 227, 0.66);
    color: aqua;
}
.s10-p{
    color: white;
    font-size: 7px;
    padding-top: 15px;
    color: darkgray;
}