    *{
        margin: 0;
padding: 0;   
box-sizing: border-box;
/* overflow-x: hidden; */
}
body,html{

    display: grid;
    scroll-behavior: smooth;
}
/* Start nav bar */

.navbar{
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
position: fixed;
z-index: 12;
background: rgb(2, 8, 45);
border-radius: 0px;
}
.navbar .heading{
    padding: 20px;
}
.navbar .heading .blink{
    animation: blink 1s linear infinite;
    
}
@keyframes blink{
    50%{
        opacity: 0;
    }
    80%{
        opacity: 0.6;
    }
}
.navbar .heading h2{
    font-size: 1.5em;
color: orangered;
}
.navbar .linkd{
    display: flex;
    padding-right: 20px;
}
.navbar .linkd ul{
    display: flex;
padding: 25px;
position: relative;
overflow: hidden;
}
.navbar .linkd ul::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: orangered;
    top: 44px;
    transition: 1s;
}
.navbar .linkd ul:hover::after{
    width: 100%;
}
.navbar .linkd ul a{
    text-decoration: none;
    color: white;
    font-weight: 800;
    transition: 0.6s;
}
/* .navbar .linkd ul a:hover{
    animation: animate 2s infinite;
    color: orangered;
    -webkit-animation: animate 2s infinite;
} */
@keyframes animate {
    50%{
        transform: scale(1.3);
}
    80%{
    transform: rotate(360deg);
}
}
.navbar .linkd .index{
   display: none;
}
    .navbar .menu{
display: none;
    }
/* End nav bar */
/* media query navbar start */
/* media query navbar end */
/* start profile */
.profiles{
    display: flex;
    padding: 90px;
justify-content: center;
align-items: center;
margin-top: 30px;

}
.profiles .profiledetail{
    display: flex;
    flex-direction: column;
}

.profiles .profiledetail .btn{
    display: flex;
    padding: 10px;
}
.profiles .profiledetail .btn ul{
    padding: 15px ;  
}
.profiles .profiledetail .btn ul button{
    background-color: orangered;
    width: 3em;
    height: 2.5em;
    border: none;
    border-radius: 0.4em;
    color: white;
    transition: 0.7s;
}
.profiles .profiledetail .btn ul button .bntset{
    font-size: 1.3em;
}
.profiles .profiledetail .btn ul button:hover{
background-color: transparent;
border: 1px solid orangered;
color: orangered;
}
.profiles .profiledetail .p-heading{
    display: flex;
    flex-wrap: wrap;
}
.profiles .profiledetail .p-heading span{
    color: orangered;
    
}
.profiles .profiledetail .para{
    display: flex;
    flex-wrap: wrap;
    width: 50%;
padding: 20px;
}
.profiles .profiledetail .p-button{
    display: block;
}
.profiles .profiledetail .p-button button{
    display: flex;
    width: 7em;
    justify-content: center;
    align-items: center;
    height: 2.5em;
    padding: 3px;
    border: none;
    background-color: orangered;
    color: white;
    font-weight: 900;
    transition: 0.6s;
}
.profiles .profiledetail .p-button button:hover{
background-color: transparent;
color: orangered;
border: 1px solid orangered;
}

/* End profile */
/* Start profile Image */
.profiles .profileimage{
    display: flex;
    object-fit: contain;
    background-color: white;
mix-blend-mode: multiply;
    width: 100%;
    transition: 0.9s;
    /* border-radius: 200px 300px 400px 500px; */

    
}

.profiles .profileimage .image{
    display: flex;
    object-fit: contain;
background-image: linear-gradient( rgba(0,0,0,0.7),rgba(0,0,0,0.7)) 
,url('../image/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvbHIvdjEwMTYtYy0wOF8xLWtzaDZtemEzLmpwZw.webp');
background-repeat: no-repeat;
background-size: cover;
/* clip-path: polygon(
    50% 0%, 
    100% 100%, 
    0% 100%
  ); */
  border-radius: 50px;
 
}
.profiles .profileimage .image img{
    width: 100%;
    
  border-radius: 50px;
}

/* start a media query profile */

/* End a media query profile */
/* End profile Image */
/* Start  about */
.aboutinformation{
    display: flex;
    gap: 10px;
    padding: 40px;
}
.aboutinformation .aboutimage{
    display: flex;
    object-fit: contain;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35); */
    width: 100%;
border-radius: 20px;
    /* border-radius: 200px 300px 400px 500px; */
position: relative;
overflow: hidden;} 

.aboutinformation .aboutimage img{
    object-fit: contain;
    width: 100%;
height: 100vh; 
border-radius: 20px;
transform: rotateY(180deg);

}
.aboutinformation .aboutimage::after{
    content: '';
    top: 0;
    left: 0;
    background: red;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../image/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvbHIvdjEwMTYtYy0wOF8xLWtzaDZtemEzLmpwZw.webp');
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
border-radius: 20px;
}
.aboutinformation .aboutmyself{
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
padding: 40px;
border-radius: 20px;

}
.aboutinformation .aboutmyself .Fullname h1{
     padding: 10px;
     letter-spacing: 2px;
}
.aboutinformation .aboutmyself .Fullname span{
color: orangered;
}
.aboutinformation .aboutmyself .skill h1{
    padding: 10px;
    letter-spacing: 2px;
}
.aboutinformation .aboutmyself .skill span{
color: orangered;
}
.aboutinformation .aboutmyself .paragraf{
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}
.aboutinformation .aboutmyself .name{
    display: flex;
    padding: 10px;
}
.aboutinformation .aboutmyself .name p{
    padding-left: 10px;
    margin-top: 4px;
}
.aboutinformation .aboutmyself .country{
    display: flex;
    padding: 10px;
}
.aboutinformation .aboutmyself .country p{
    padding-left: 10px;
    margin-top: 4px;
}
.aboutinformation .aboutmyself .age{
    display: flex;
    padding: 10px;
}
.aboutinformation .aboutmyself .age p{
    padding-left: 10px;
    margin-top: 4px;
}
.aboutinformation .aboutmyself .email{
    display: flex;
    padding: 10px;
}
.aboutinformation .aboutmyself .email p{
    padding-left: 10px;
    margin-top: 4px;
}
.aboutinformation .aboutmyself .collage{
    display: flex;
    padding: 10px;
}
.aboutinformation .aboutmyself .collage p{
    padding-left: 10px;
    margin-top: 4px;
}
.aboutinformation .aboutmyself .phone{
    display: flex;
    padding: 10px;
}
.aboutinformation .aboutmyself .phone p{
    padding-left: 10px;
    margin-top: 4px;
}
.aboutinformation .aboutmyself .buttonCv{
    display: flex;
    padding: 10px;
}
.aboutinformation .aboutmyself .buttonCv button{
    width: 20%;
    height: 40px;
    border: none;
    background-color: orangered;
    color: white;
    transition: 0.7s;
}
.aboutinformation .aboutmyself .buttonCv button:hover{
    border: 1px solid orangered;
    background-color: transparent;
    color: orangered;
}
/* start media query about */

/* End media query about */
/* End about */
/* start education */
.education{
    display: flex;
    padding: 30px;
    flex-direction: column;
    overflow: hidden;
}
.education .educationheading{
    display: flex;
    justify-content: center;
    align-items: center;
}
.education .educationheading span{
    color: orangered;
}
.education .educationheading .underline{
    margin: 2px;
    width: 100%;
    height: 5px;
    background-color: rgb(210, 227, 233);
}
.education .educationheading .underline .fill{
    background-color: orangered;
    width: 50%;
    height: 5px;
}
.e-du-card{
    display: flex;
    position: relative;
   justify-content: center;
   align-items: center;
   position: relative;
   top: 30px;
   gap: 20px;
   height: 700px;
}
.e-du-card .myeducation{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 300px;
    background-color: whitesmoke;

    box-shadow: 0 15px 10px  rgba(0, 0, 0, 0.35);
}
.e-du-card .myeducation .icons .i{
    font-size: 5em;
}
.e-du-card .myeducation .m-edu-heading h1{
    color: orangered;
}
.e-du-card .myexperince{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 300px;
    background-color: whitesmoke;
    box-shadow: 0 15px 10px  rgba(0, 0, 0, 0.35);
}
.e-du-card .myexperince .iconss .i{
    font-size: 5em;
}
.e-du-card .myexperince .m-e-heading h1{
    color: orangered;
}
/* start media query education */

/* end media query education */
/* end education */
/* start Diploma */
.diplomaContainer{
    display: flex;
    position: relative;
    top: 50px;
gap: 20px;
padding: 20px;
}
.diplomaContainer .diploma{
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 15px 10px  rgba(0, 0, 0, 0.35);
    height: 400px;
    transition: 0.8s;
}
.diplomaContainer .diploma , .icons , .date , .heading , .paragraf{
    padding: 15px;
}
.diplomaContainer .diploma  .icons{
    font-size: 4em;
}
.diplomaContainer .diploma  .icons .io{
    background-color: orangered;
    width: 20%;
    height: 90px;
    color: white;
    border-radius: 0.1em;
}
.diplomaContainer .diploma .date{
    color: orangered;
}
.diplomaContainer:hover{
    display: flex;
    justify-content: center;
    align-items: center
}
.diplomaContainer .diploma:hover{
    background-color: rgba(0, 0, 0, 0.76);
    color: white;
    display: flex;
    transform: rotate(2deg);
}
/* start media query */

/* End media query */
/* End Diploma */
/* start my service */
.my-headingmanin{
    position: relative;
    top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.my-headingmanin p{
    padding: 40px;
}
 .my-headingmanin h2{
    font-size: 3em;
}
 .my-headingmanin .underline{
    background-color: rgb(202, 224, 231);
    width: 100%;
    height: 5px;
}
 .my-headingmanin .underline .fill{
    background-color: orangered;
    width: 30%;
    height: 5px; 
}
.myservice{
    display: flex;
    flex-direction: row;
    position: relative;
    top: 200px;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.myservice .skills , #skills{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 100%;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.35);
    transition: all 1s ease-in-out;
}
.myservice #skills:hover{
  position: relative;
  top: -10px;
}
.myservice #skills1:hover{
  position: relative;
  top: -10px;
}
.myservice .skills .iconsss .oio{
    font-size: 3em;
}
.myservice .skills .para{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.myservice .skills .s-heading{
    color: orangered;
}
/* start media query */
/* end media query */
/* end my service */
.myservice{
    display: flex;
    flex-direction: row;
    position: relative;
    top: 200px;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.myservice .skills , #skills{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 100%;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.35);
    transition: all 1s ease-in-out;
}
.myservice .skills:hover{
 margin-top: -20px;
}
.myservice #skills1:hover{
  position: relative;
  top: -10px;
}
.myservice .skills .iconsss .oio{
    font-size: 3em;
}
.myservice .skills .para{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.myservice .skills .s-heading{
    color: orangered;
}
/* start media query */
/* end media query */
/* end my service */
/* start a skill values */
.myskills{
    display: flex;
    position: relative;
    top: 280px;
    flex-direction: column;
}
.myskills .my-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.myskills .my-heading span{
    color: orangered;
}
.myskills .my-heading .underlines{
    background-color: rgb(219, 232, 236);
    width: 100%;
    height: 5px;
}
.myskills .my-heading .underlines .fills{
    background-color: orangered;
    width: 40%;
    height: 5px;
}
.myskills .my-skillscard{
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 50px;
}
.myskills .my-skillscard .my-cardawords{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: orangered;
    border-radius: 1em;
    color: white;
    transition: 0.7s;
}
.myskills .my-skillscard .my-cardawords:hover{
margin-top: -10px;
}
.myskills .my-skillscard .my-cardawords .ui{
font-size: 5em;
}
.myskills .my-skillscard .my-cardawords h1{
    color: black;
}
/* start media query my skill */

/* end media query my skill */
/* end a skill values */

/* start my prices */
.myprice{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 450px;
}
.myprice .mypriceheading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.myprice .mypriceheading span{
    color: orangered;
}
.myprice .mypriceheading .underline{
    background-color: rgb(205, 229, 236);
    width: 100%;
    height: 5px;
}
.myprice .mypriceheading .underline .filll{
    background-color: orangered;
    width: 40%;
    height: 5px;
}
.myprice .my-prices-Card{
    display: flex;
position: relative;
top: 100px;
justify-content: center;
align-items: center;
gap: 100px;
}
.myprice .my-prices-Card .my-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.35);
    width: 90%;
    border-radius: 1em;
    transition: 0.7s;
}
.myprice .my-prices-Card .my-card .ooi{
    font-size: 5em;
color: orangered;
}
.myprice .my-prices-Card .my-card .setpadding{
    padding: 20px;
}
.myprice .my-prices-Card .my-card:hover{
    margin-top: -20px;
}
.myprice .my-prices-Card .my-card button{
    background-color: orangered;
    border: none;
    color: white;
    font-weight: 900;
    transition: 0.7s;
    margin-bottom: 20px;
}
.myprice .my-prices-Card .my-card button:hover{
    background-color: transparent;
    border: 1px solid orangered;
    color: orangered;
}
.myprice .my-prices-Card #focus{
    background-color: rgba(0, 0, 0, 0.904);
    color: white;
}
/* @media query start */
@media(max-width : 767px){
    .myprice .my-prices-Card{
        display: flex;
        flex-direction: column;
    }
}
@media(max-width : 360px){
    .myprice .my-prices-Card{
        display: flex;
        flex-direction: column;
    }
}
/* @media query end */
/* end my prices */
/* strat portfolio */
.portfolio{
    display: flex;
    position: relative;
    top: 700px;
    flex-direction: column;
} 
  .portfolio .p-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
 }  
 .portfolio .p-heading span{
    color: orangered;
 }  
 .portfolio .p-heading .und{
    background-color: rgb(209, 233, 241);
    width: 100%;
    height: 5px;
 }
 .portfolio .p-heading .und .fillll{
    background-color: orangered;
    width: 40%;
    height: 5px;
 }
 .portfolio .p-heading p{
    display: flex;
    justify-content: center;
    align-items: center ;
 }
 .portfolio .p-my-images{
    display: flex;
    object-fit: contain;
    gap: 20px;
position: relative;
top: 90px;
 }
 .portfolio .p-my-images .my-images{
    display: flex;
    object-fit: contain;
    justify-content: center;
    align-items: center;
 }
 .portfolio .p-my-images .my-images img{
    width: 90%;
    height: 350px;
    object-fit: cover;
    transition: 0.7s;
    border-radius: 2em;
}
.portfolio .p-my-images .my-images img:hover{
    transform: scale(1.2);
    z-index: 1;
   width: 300%;
}
/* start @media Query portfolio */
@media(max-width : 767px){
    .portfolio .p-my-images{
        display: flex;
        flex-direction: column;
    }
}
@media(max-width : 360px){
    .portfolio .p-my-images{
        display: flex;
        flex-direction: column;
    }
}
/* end @media Query portfolio */
/* end portfolio */
/* start MY team  */
.myteam{
    display: flex;
    position: relative;
    top: 900px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.myteam .my-team-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.myteam .my-team-heading span{
    color: orangered;
}
.myteam .my-team-heading .under{
    background-color: rgb(200, 221, 228);
    width: 100%;
    height: 5px;
}
.myteam .my-team-heading .under .line{
    background-color: orangered;
    width: 40%;
    height: 5px;
}
.myteam .myteamsCard{
    display: flex;
    position: relative;
    top: 70px;
    gap: 70px;
}
.myteam .myteamsCard .My-T-card{
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.35);

}
.myteam .myteamsCard .teamsCardImge{
    display: flex;
    object-fit: cover;
}
.myteam .myteamsCard .teamsCardImge img{ width: 300px; 
    height: 350px;
     border-radius:1em;
    
}
.myteam .myteamsCard .teamsCard{
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
.myteam .myteamsCard .teamsCard button{
    display: flex;
    padding: 10px;
    margin: 10px;
    border: none;
    background-color: orangered;
    color: white;
    border-radius: 0.6em;
    transition: 0.6s;
 }
.myteam .myteamsCard .teamsCard button:hover{
    background-color: transparent;
    border: 1px solid orangered;
    color: orangered;
}
/* start media query team */
@media (max-width : 767px) {
    .myteam .myteamsCard{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width : 360px) {
    .myteam .myteamsCard{
        display: flex;
        flex-direction: column;
    }
}
/* end media query team */
/* end MY team  */
/* start My blog */
.myblog{
    display: flex;
    position: relative;
    top:  1100px;
    justify-content: center;
    align-items: center;
flex-direction: column;
}
.myblog .my-bolg-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.myblog .my-bolg-heading .under{
    background-color: rgb(209, 227, 233);
    width: 100%;
    height: 5px;
}
.myblog .my-bolg-heading .under .line{
    background-color: orangered;
    width: 40%;
    height: 5px;
}
.myblog .my-blogcard{
    display: flex;
    position: relative;
    top: 90px;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.myblog .my-blogcard .my-blog-item{
    display: flex;
    flex-direction: column;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.35);
    border-radius:1em ;
}
.myblog .my-blogcard .my-blog-item .my-blog-card-itemsimage{
    display: flex;
    object-fit: cover;
}
.myblog .my-blogcard .my-blog-item .my-blog-card-itemsimage img{
    object-fit: cover;
    width: 300px;
    height: 400px;
    border-radius:1em ;
}
.myblog .my-blogcard .my-blog-item .my-blog-card-items{
    display: flex;
    padding: 10px;
}
.myblog .my-blogcard .my-blog-item .my-blog-card-items span{
font-weight: 900;
padding: 10px;
}
.myblog .my-blogcard .my-blog-item .my-blog-card-items  .kkk{
    font-size: 1.5em;
    position: relative;
    top: 8px;
    color: orangered;
}
/* start media query */
@media(max-width : 767px){
    .myblog .my-blogcard {
        display: flex;
        flex-direction: column;
    }
}
@media(max-width : 360px){
    .myblog .my-blogcard {
        display: flex;
        flex-direction: column;
    }
}
/* end media query */
/* End My blog */
/* start contact */
.my-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 1300px;
    flex-direction: column;
}
.my-contact .my-contact-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.my-contact .my-contact-heading span{
    color: orangered;
}
.my-contact .my-contact-heading .under{
    background-color: rgb(221, 238, 243);
    width: 30%;
    height: 5px;
}
.my-contact .my-contact-heading .under .liil{
    background-color: orangered;
    width: 40%;
    height: 5px;
}
.my-contact .my-contact-form{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 90px;
    flex-wrap: wrap;
    width: 70%;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.35);
}
.my-contact .my-contact-form .my-contact-input{
    display: flex;
    padding: 20px;

}
.my-contact .my-contact-form .my-contact-input input{
     width: 100%;
     padding: 10px;
      margin: 10px;
      height: 80px;
      outline: none;
      border: none;
      border: 1px solid rgb(230, 239, 241);
      border-radius: 0.8em;
    }
    .my-contact .my-contact-form .my-contact-input textarea{
        width: 100%;
      outline: none;
      border-radius: 0.8em;
      border: 1px solid rgb(230, 239, 241);
      height: 150px;
    }
    .my-contact .my-contact-form .my-contact-input textarea[type='text']{
        padding: 20px;
    }
    .my-contact .my-contact-form .my-contact-input button{
      background-color: orangered;
      border: none;
      color: white;
      font-weight: 900;
      width: 20%;
      height: 60px;
      border-radius: 0.4em;
      transition: 0.7s;
}
.my-contact .my-contact-form .my-contact-input button:hover{
    background-color: transparent;
    border: 1px solid orangered;
    color: orangered;
}
/* start media query */
@media(max-width : 767px){
    .my-contact .my-contact-form .my-contact-input{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .my-contact .my-contact-form .my-contact-input button{
        width: 100%;
    }
}
@media(max-width : 360px){
    .my-contact .my-contact-form .my-contact-input{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .my-contact .my-contact-form .my-contact-input button{
        width: 100%;
    }
}
/* end media query */
/* end contact */
/* start phone */
.my-phone{
    display: flex;
    position: relative;
    top: 1700px;
gap: 60px;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.877);
border-radius: 0px;
}
.my-phone .my-card-phone{
    display: flex;
flex-direction: column;
padding: 20px;
}
.my-phone .my-card-phone , .phone-heading , .phone-para , .phone-button{
    display: flex;
    padding: 20px;
    color: white;
}
.my-phone .my-card-phone .phone-button{
    display: flex;
}
.my-phone .my-card-phone .phone-button button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
    border: none;
    background-color: rgba(0, 0, 0, 0.63);
    color: white;
    transition: 0.7s;
    clip-path: circle(50%);
}
.my-phone .my-card-phone .phone-button button:hover{
background-color: orangered;
}
.my-phone .my-card-phone .phone-links-heading .underliness{
background-color: orangered;
width: 100%;
height: 2px;
}
.my-phone .my-card-phone .phone-links{
    display: flex;
    padding: 10px;
}
.my-phone .my-card-phone .phone-links .hhhh{
    color: orangered;
}
div{
    border-radius: 20px;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}
/* start media query */

/* end phone */