/* =====  GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
/* ==== VARIABLES CSS ==== */
:root{
    --header-height: 3rem;
    --font-semi: 600;
}

/* ==== COLORS ==== */
:root{
    --first-color: #4070F4;
    --second-color: #0E2431;
}

/* ==== TYPOGRAPHY ==== */
:root{
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 2rem;
    --h2-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
}

@media screen and (min-width: 768px){
    :root{
        --big-font-size: 3.5rem;
        --h2-font-size: 2rem;
        --normal-font-size: 1rem;
    }
    
}

/* ==== Margins ===== */
:root{
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
}

/* ==== z-index ==== */
:root{
    --z-back: -10;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* === base === */
*,::before::after{
    box-sizing: border-box;
    
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #fff;
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--second-color);
    transition: background .2s linear;
}

h1,h2,p{
    margin: 0;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* === CLASS CSS === */
.section-title{
    position: relative;
    font-size: var(--h2-font-size);
    color: var(--first-color);
    margin-top: var(--mb-2);
    margin-bottom: var(--mb-4);
    text-align: center;
}
.section-title::after{
    position: absolute;
    content : '';
    width: 64px;
    height: 0.18rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 2rem;
    background-color: var(--first-color);
}
.section{
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* === LAYOUT === */
.bd-grid{
    max-width: 1024px;
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 2rem;
    width: calc(100% - 2rem);
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
}
.l-header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: rgba(255, 255, 255, 0.931);
    box-shadow: 0 1px 4px rgba(146,161,176,.15);
}
/*
Preloader style
*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999; }
  
  #preloader-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 5px;
    width: 2em;
    height: 2em;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    border-top: 0.5em solid #75a6f0;
    border-right: 0.5em solid rgba(245, 245, 245, 0.5);
    border-bottom: 0.5em solid rgba(245, 245, 245, 0.5);
    border-left: 0.5em solid rgba(245, 245, 245, 0.5);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 .5s infinite linear;
    animation: load8 .5s infinite linear; }
  
  #preloader-inner,
  #preloader-inner:after {
    border-radius: 50%;
    width: 5em;
    height: 5em; }
  
  @-webkit-keyframes load8 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg); } }
  
  @keyframes load8 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg); } }
        
/* === NAV === */
.nav{
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: var(--font-semi);
}
@media screen and (max-width: 768px){
    .nav__menu{
        position: fixed;
        top: var(--header-height);
        right: -120%;
        width: 60%;
        height: 100%;
        padding: 2rem;
        background-color: var(--second-color);
        transition: .5s;
        
    }
}


.bar{
    width: 1.9rem;
    height: 1.5px;
    border-radius: 2px;
    background-color: #000;
    transition: 0.5s;
    position: relative;
}

.bar:before, .bar:after{
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #000;
    transition: 0.5s;
}
.bar:before{
    transform: translateY(-9px);
}

.bar:after{
    transform: translateY(9px);
}



.nav__item{
    margin-bottom: var(--mb-4);
}
.nav__link{
    position: relative;
    color: #fff;
}
.nav__link:hover{
    position: relative;
}
.nav__link::before{
    position: absolute;
    content: "";
    width: 0%;
    height: 0.20rem;
    left: 0;
    top: 2rem;
    background-color: var(--first-color);
    transition: width 1s;
}

.nav__link:hover::before{
    width: 100%;
}

.nav__logo{
    color: var(--second-color);
}
.nav__toggle{
  
    color: var(--first-color);
    width: 1.9rem;
    height: 1.5px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ===Active menu=== */
.active::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 0.20rem;
    left: 0;
    top: 2rem;
    background-color: var(--first-color);
   
}


/* === Show menu === */

.show{
    right: 0;
}
/* === toggle === */
input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
}

label{
    cursor: pointer;
    text-indent: -9999px;
    width: 52px;
    height: 27px;
    background: grey;
    float: right;
    border-radius: 100px;
    position: relative;
}

label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

input:checked + label {
    background-color: rgb(94, 94, 230);
}

input:checked + label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

label:active:after{
    width: 45px;
}

/* === HOME === */
.home{
    height: calc(100vh - 3rem);
    row-gap: 1rem;
}
.home__data{
    align-self: center;
}
.home__title{
    font-size: var(--big-font-size);
    margin-bottom: var(--mb-5);
}
.home__title span{
    color: var(--first-color);
}
.home__social{
    display: flex;
    flex-direction: column;
}
.home__social-icon{
    width: max-content;
    margin-bottom: var(--mb-2);
    font-size: 1.5rem;
    color: var(--second-color);
}
.home__social-icon:hover{
    color: var(--first-color);
}
.home__img{
    position: absolute;
    padding-top: 200px;
    right: 0;
    bottom: 0;
    width: 295px;
}
#myIcon{
  width: 50px; 
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  transition: 5s;
}
/* BUTTONS  */
button{
     border: none;
}
.button{
   
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    padding: .75rem 2.5rem;
    font-weight: var(--font-semi);
    border-radius: .5rem;
}
button:hover{
    box-shadow: 0 10px 36px rgba(22, 21, 21, 0.19);
}


/* === ABOUT === */
.about__container{
    display: grid;
    row-gap: 2rem;
    text-align: center;
}
.about__subtitle{
    margin-bottom: var(--mb-2);
}
.about__img{
    justify-self: center;
}
.about__img img{
    width: 200px;
    border-radius: .5rem;
}

/* === SKILLS === */
.skills__container{
    row-gap: 2rem;
    text-align: center;
}
.skills__subtitle{
    margin-bottom: var(--mb-2);
}
.skills__text{
    margin-bottom: var(--mb-4);
}
.skills__data{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-weight: var(--font-semi);
    padding: .5rem 1rem;
    margin-bottom: var(--mb-4);
    border-radius: .5rem;
    box-shadow: 0 4px 25px rgba(14, 36,49,.15);
}
.skills__icon{
    font-size: 2rem;
    margin-right: var(--mb-2);
}
.skills__names{
    display: flex;
    align-items: center
}
.skills__bar{
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--first-color);
    height: .25rem;
    border-radius: .5rem;
    z-index: var(--z-back);
}
.skills__html{
    width: 90%
}
.skills__css{
    width: 80%
}
.skills__js{
    width: 70%
}
.skills__ux{
    width: 50%
}
.skills__react{
    width: 20%;
}
.skills__img{
    width: 100%;
    border-radius: .5rem;
}


/* === SERVICES === */
.services__container{
    display: grid;
    grid-gap: 2rem;
    grid-template-rows: repeat(1, auto);
}
.services__data{
    border: 1px solid rgba(0, 0, 0, 0.198);
    box-shadow: 0 4px 25px rgba(14,36,49,.15);
    border-radius: .5rem;
    overflow: hidden;
    width: 100%;
    height: 300px;
}
.services__data:hover{
    transform: scale(1.1);
    transition: .5s;
}
.services__data:hover::before{
   
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 255, 0.424);
}
.services__img{
    padding-top: 50px;
    padding-left: 40%;
    width: 100px;
}
.services__header{
    text-align: center;
}
.services__text{
    text-align: center;
}
/* === WORK === */


.work__container{
    row-gap: 2rem;
}
.l-main#blur.hello{
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
}
.bxs-x-circle{
    padding-left: 650px;
  
}
#pop{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}
#pop.hello{
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transition: .5s;
    top: 50%;
}
#pop0{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}
#pop0.hello{
    visibility: visible;
    opacity: 1;
    transition: .5s;
    top: 50%;
}
#pop1{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}
#pop1.hello{
    visibility: visible;
    opacity: 1;
    transition: .5s;
    top: 50%;
}
#pop2{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}
#pop2.hello{
    visibility: visible;
    opacity: 1;
    transition: .5s;
    top: 50%;
}
#pop3{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}
#pop3.hello{
    visibility: visible;
    opacity: 1;
    transition: .5s;
    top: 50%;
}
#pop4{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}
#pop4.hello{
    visibility: visible;
    opacity: 1;
    transition: .5s;
    top: 50%;
}
.work__card{
    transition: .5s;
    border: 1px solid rgba(0, 0, 0, 0.198);
    box-shadow: 0 4px 25px rgba(14,36,49,.15);
    border-radius: .5rem;
    overflow: hidden;
  
}

.work__card .work__info img{
    width: 734px;
    height: 300px;
}
.work__card .work__info img:hover{
    transform: scale(0.9);
    transition: .5s;
}  
.work__card .work__info:hover{
    transform: scale(0.9);
    transition: .5s;
} 

/* .work__card:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(0, 176, 155, 0.5), rgba(150,201,61,1)); 
    z-index: 2;
    transition: 0.5s all;
  
}  */

/* .work__card:hover:before{
    opacity: 1;
} */

/* .work__card .work__info{
    position: relative;
    z-index: 3;
    /* color: #fff; 
    transform: translateY(30px);
    transition: 0.5s all;
} */
.work__card .work__info{
    opacity: 1;
    transform: translateY(0px);
    margin-left: 20px;
}
.work__card .work__info h1{
    margin: 0;
}
.work__card .work__info p{
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 20px;
}
.btn{
    margin-top: var(--mb-6);
    text-decoration: none;
    padding: .5rem 1rem;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    
}
.work__card .work__info .btn{
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s ;
    
    
}
.work__card .work__info .btn:hover{
    box-shadow: 0 4px 25px rgba(14,36,49,.15);
} 

/* === CONTACT === */
.contact__info{
    margin: 1rem 1rem;
}
.contact__input{
    width: 90%;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi);
    padding: 1rem;
    border-radius: .5rem;
    border: 1.5px solid var(--second-color);
    outline: none;
    margin-bottom: var(--mb-4);
  
 
}
#form .indicator{
    position: absolute;
    top: 106px;
    right: 40px;
    width: 10px;
    height: 10px;
    z-index: 1;
    background: #555;
    border-radius: 50%;

}
#form.valid .indicator{
    background: #0f0;
    box-shadow: 0 0 5px #0f0,
                0 0 10px #0f0,
                0 0 20px #0f0,
                0 0 40px #0f0;
}
#form.invalid .indicator{
    background: #f00;
    box-shadow: 0 0 5px #f00,
                0 0 10px #f00,
                0 0 20px #f00,
                0 0 40px #f00;
}
form{
    position: relative;
    z-index: 0;
}
.contact__button{
    display: block;
    border: none;
    outline: none;
    font-size: var(--normal-font-size);
    cursor: pointer;
    margin-left: auto;
}

/* === FOOTER === */
.footer{
    background-color: var(--second-color);
    color: #fff;
    text-align: center;
    font-weight: var(--font-semi);
    padding: 2rem 0;
}
.footer__title{
    font-size: 2rem;
    margin-bottom: var(--mb-4);
}
.footer__title span{
    color: rgb(228, 11, 11);
}
.footer__social{
    margin-bottom: var(--mb-4);
}
.footer__icon{
   
    color: #fff;
    margin: 0 var(--mb-2);
}
.togtit{
        display: none;
    }
/* === MEDIA QUERIES === */
@media screen and (min-width: 768px){
    .togtit{
        display: block;
    }
    body{
        margin: 0;
    }
    .section{
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    .section-title{
        margin-bottom: var(--mb-6);
    }
    .section-title::after{
        width: 80px;
        top: 3rem;
    }
    
    .nav{
        height: calc(var(--header-height) + 1rem)
    }
    .nav__list{
        display: flex;
        padding-top: 0;
    }
    .nav__item{
        margin-left: var(--mb-6);
        margin-bottom: 0;
    }
    .nav__toggle{
        display: none;
    }
    .nav__link{
        color: var(--second-color);
    }
    .home{                                                                                                                      
        height: 100vh;
    }
    .home__data{
        align-self: flex-end;
    }
    .home__social{
        padding-top: 0;
        padding-bottom: 2.5rem;
        flex-direction: row;
        align-self: flex-end;
    }
    .home__social-icon{

        margin-bottom: 0;
        margin-right: var(--mb-4);
    }
    .home__img{
        width: 457px;
        bottom: 5%;
    }
    .about__container, .skills__container{
        grid-template-columns: repeat(2,1fr);
        align-items: center;
        text-align: initial;
    }
    .about__img img{
        width: 300px;
    }
    .services__container{
        grid-gap: 7rem;
        grid-template-columns: repeat(3, auto);
    }
    .services__img{
        padding-left: 80px;
        width: 100px;
    }
    .work__container{
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2,1fr);
        column-gap: 2rem;
        
    }
    .work__card img{
        width: 320px;
        height: 239.69px;
    }
    #pop{
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 50px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
        background: #fff;
        visibility: hidden;
        opacity: 0;
        transition: .5s
    }
    #pop.hello{
     
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop.hello img{
        width: 100px;
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop0{
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 50px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
        background: #fff;
        visibility: hidden;
        opacity: 0;
        transition: .5s
    }
    #pop0.hello{
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop0.hello img{
        width: 100px;
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop1{
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 50px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
        background: #fff;
        visibility: hidden;
        opacity: 0;
        transition: .5s
    }
    #pop1.hello{
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop1.hello img{
        width: 100px;
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop2{
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 50px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
        background: #fff;
        visibility: hidden;
        opacity: 0;
        transition: .5s
    }
    #pop2.hello{
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop2.hello img{
        width: 100px;
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop3{
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 50px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
        background: #fff;
        visibility: hidden;
        opacity: 0;
        transition: .5s
    }
    #pop3.hello{
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop3.hello img{
        width: 100px;
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop4{
        position: fixed;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 50px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
        background: #fff;
        visibility: hidden;
        opacity: 0;
        transition: .5s
    }
    #pop4.hello{
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    #pop4.hello img{
        width: 100px;
        visibility: visible;
        opacity: 1;
        transition: .5s;
        top: 50%;
    }
    .contact__form{
        width: 360px;
    }
    .contact__container{
        grid-template-columns: repeat(2,1fr);
        justify-items: center;
    }
    .contact__input{
        width: 90%;
        font-size: var(--normal-font-size);
        font-weight: var(--font-semi);
        padding: 1rem;
        border-radius: .5rem;
        border: 1.5px solid var(--second-color);
        outline: none;
        margin-bottom: var(--mb-4);
      
     
    }
    #form .indicator{
        position: absolute;
        top: 106px;
        right: 20px;
        width: 10px;
        height: 10px;
        z-index: 1;
        background: #555;
        border-radius: 50%;
    
    }
    #form.valid .indicator{
        background: #0f0;
        box-shadow: 0 0 5px #0f0,
                    0 0 10px #0f0,
                    0 0 20px #0f0,
                    0 0 40px #0f0;
    }
    #form.invalid .indicator{
        background: #f00;
        box-shadow: 0 0 5px #f00,
                    0 0 10px #f00,
                    0 0 20px #f00,
                    0 0 40px #f00;
    }
}

@media screen and (min-width: 1024px){
    .bd-grid{
        margin-left: auto;
        margin-right: auto;
    }
    .home__img{
        right: 10%;
    }    
}

/* dark mode */
body.dark{
  background-color: rgba(0, 0, 0, 0.705);
}
body.dark p{
    color: rgba(255, 255, 255, 0.603);
}
body.dark .p{
    color: #000;
}
body.dark .togtit{
    color: #fff;
    }
body.dark .home__title{
    color: #fff;
}
body.dark .home__social-icon{
    color: #fff;
}
body.dark .home__social-icon:hover{
    color: var(--first-color);
}
body.dark .about__subtitle, .dark .skills__subtitle{
    color: #fff;
}
body.dark .work__card{
    background: #fff;
    border: 1px solid #000;
}
body.dark .skills__bar{
    
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--first-color);
    height: .25rem;
    border-radius: .5rem;
    z-index: var(--z-normal);
  
}

body.dark .skills__data{
    background: #fff;
}
body.dark .l-header{
    background: rgba(0, 0, 0, 0.911);
}
body.dark .nav__logo{
    color: #fff;
} 
.dark .bar, .dark .bar:after, .dark .bar:before{
    background-color: #fff;
}
body.dark .nav__link{
  color: #fff;
}
.dark .sow{
    background-color: transparent;
}
.dark .services__data{
    color: rgba(255, 255, 255, 0.719);
}


.btns{
    display: flex;
    gap: 20px;
}