@font-face {
    font-family: 'comicfont';
    src: url('../fonts/Comic\ Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
   
    background-color: #FFDA40;
    background-size: 100%;
}

html {
    scroll-behavior: smooth;
}


/* ---------------------  Desktop Css --------------------------- */
@media (min-width: 768px) {

/*----Fixing the content in the middle to resize the space around only----*/
.container {
    width: 100%;
    max-width: 70rem;
    margin: 0 auto;
}
/*----------------------------------Nav Bar-------------------------------------*/
.navbar {
    background-color: #c62a00;
    width: 100%;
    height: auto;
    padding: 0 2%; 
    line-height: 3.3rem;
    display: flex;
    border-bottom: 7px solid #3f3f3f; 
}

#navbar-logo {
    height: auto; 
    max-height: 35px; 
    width: auto; 
    max-width: auto; 
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}


.nav a {
    padding-left:1.8vw;
    font-size: 1.0rem;
    color: #efefef;
    font-family: 'comicfont';
    letter-spacing: 0.2rem;
    font-optical-sizing: auto;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    text-decoration: #ffd500 wavy underline;    
}

/*----------------------------------Main Banner-------------------------------------*/
.bkg-banner{
background-image: url(../assets/images/blue-bkg.jpg);
background-position: center;
background-repeat: no-repeat;
width: 100%;
height: auto;
border-bottom: 7px solid #3f3f3f; 
}

#mainBanner { 
    display: flex;
    align-items: center;
    height: auto;
    justify-content: space-between; 
    gap:0%;
    padding: 0% 2%;
}

/* --------------Right content main banner----------------*/

#selected-skin {
    width: 60%;
}
.banner-image{    
  max-width: 100%;
  height: auto;
}
/* --------------left content main banner----------------*/
#yellow-box{
    text-align: center;
    position: relative;
}

.yellow-image{
  max-width: 100%;
}

#select-skill {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#yellow-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#white-box {
    padding-top: 10%;
    width: 80%; 
    text-align: center;
    color: #333;
    font-family: 'comicfont';
    letter-spacing: 0.2rem;
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: 110%; 
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);  
}

#white-box p {
    margin: 2vw 0 1vw 0;
    cursor: pointer;
    display: block;
}
#white-box p:hover {
    background-color: #ea8c0084;
}

/* -----------------------------------Portfolio Section----------------------------------------*/

.portfolio-section{
    width: 100%;
}

.projects-container {
    width: calc(100% - 4%); 
    max-width: 70rem;
    margin: 5% auto;
    background-image: url(../assets/images/projects-box.png);
    background-size: contain; 
    background-position: center center; 
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%; 
    box-sizing: border-box;
}

.portfolio{
    position: relative;    
    display: flex;
    align-items: center;
}

.project-title-card{
    text-align: center;
    font-family: 'comicfont';
    src: url('../fonts/Comic\ Book.woff') format('woff');
    font-weight: 400;
    margin-top: 5%;
}

.button-open{
    max-width: 40%;
    margin-top: -12%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 10%;
}

.button-open:hover{
    scale: 1.2;
}

.swiper{
  width: 100%;
}

.card{
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.card:hover{
    scale: 1.05;
    position: relative;
  }

.card::before{
  content: "";
  position: absolute;
  width: 100%;
}

.card .card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 100;
}

section .card .image{
  max-width: 75%;
  margin-top: 4%;
}

.swiper-pagination{
  position: absolute;
  margin-bottom: 2vw;
}

.swiper-pagination-bullet{
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background-color: #c62a00 !important;
}

.swiper-button-next, .swiper-button-prev{
  opacity: 1;
  color: #c62b0000 !important;
  transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  opacity: 1;
  scale: 1.2;
}

.swiper-button-next{
    background-image: url(../assets/images/right.png);
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: center center; 
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%; 
    box-sizing: border-box;
}

.swiper-button-prev{
    background-image: url(../assets/images/left.png);
    background-repeat: no-repeat;
    background-size: contain; 
    background-position: center center; 
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%; 
    box-sizing: border-box;
}


/* -----------------------------------About Section----------------------------------------*/

@keyframes scaleBalloon {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.about{
    width: 100%;
    padding-bottom: 5%;
}
.container-about{
    width: 100%;
    max-width: 70rem;
    margin: 0 auto;
}

#bkg-about{
    margin-top: 7%;
}

.about-btn{
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

#title-balloon{
    position: absolute;
    margin-top: -38%;
    left:13%;
    max-width: 23%;
    animation: scaleBalloon 4s ease-in-out infinite;
}

#work-experience{
    margin-top: -27.5%;
    max-width: 23%;
    left:13%;
}

#education{
    margin-top: -31%;
    max-width: 20%;
    left:39%;
}

#skills{
    margin-top: -15.5%;
    max-width: 17%;
    left:11%;
}

#who-is{
    margin-top: -17%;
    max-width: 22%;
    left:34%;
}

.about-btn:hover{
scale: 1.05;
}

#gif-pointing{
   position: absolute;
    max-width: 30%;
    margin-top: -31.8%;    
    left:57%;
    
}

#popup-container{
position: absolute;
max-width: 83.5%;
left: 8.3vw;
padding: 2%;
margin-top: -37.2%;
display: flex;
justify-content: center;
align-items: center;
}
#popup-close{
    position: absolute;
    max-width: 4.5%;
    right: 1.5vw;
    margin-top: -34%;
    transition: all 0.3s ease;
    cursor: pointer;
}

#popup-close:hover{
    scale:1.2  
}

#popup-work , #popup-close, #popup-skills, #popup-education, #popup-who{
    display: none;
}



/* -----------------------------------Contact Section----------------------------------------*/

.contact-me2 {
    display: none;  
    align-items: center;      
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3%;
    min-height: 70vh; 
    margin: 2%;
    margin-bottom: 5vw;
    
    
}
.contact-inner {                
    display: flex;            
    flex-direction: column; 
    justify-content: center;  
    align-items: center;      
    color: white; 
    background-image: url(../assets/images/contact.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3%;
    min-height: 70vh; 
    margin:2%;
    margin-bottom: 5vw;
}

form {
    width: 50%;  
    max-width: 40rem; 
    margin-left: 47%; 
    margin-right: auto;
    display: flex;
    flex-direction: column;
    color: #3f3f3f;
}
 
form input,
form textarea { 
    width: 100%;
    padding: 1%;
    margin-bottom: 1.2%;
    border: 4px solid #3f3f3f;
    border-radius: 6px;
    background-color: #fff9b0;
    font-size: 100%; 
    height: 1.5vw;
    min-height: 2rem;
}

form textarea {
    min-height: 4rem;
    resize: vertical;
}

form label{
    font-family: 'comicfont';
    margin-top: 1.5%;
}

#buttonSend {
    width: 100%;
    padding: 4%;
    margin-top: 1.7%;
    margin-bottom: 5%;
    background-color: #ea5200;
    color: #ffffff;
    border: 4px solid #3f3f3f;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'comicfont';
    font-size: 100%;
    font-weight: 500;
    line-height: 1%;
}

#buttonSend:hover {
    background-color: #f77f3e;
}

/* -----------------------------------Footer Section----------------------------------------*/
.footer {
    height: 3rem;
    text-align: center;
    background-color: #FF7F00;
    line-height: 2.5rem;
    border-top: 7px solid #3f3f3f;
    font-family: 'comicfont';
    font-weight: 600;
    color: #3f3f3f;
}



/* -----------------------------------Back to top Button----------------------------------------*/
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: scale 0.3s;
    
}

#backToTop:hover {
    scale: 1.2;
}



}























/* ------------------------------  Tablet Css ---------------------------------- */
@media (min-width: 600px) and (max-width: 767px) {

    .container {
        width: 100%;
        max-width: 48rem;
        margin: 0 auto;
    }

        /*--------------------------Nav Bar-----------------------------*/
    
        .navbar {
        background-color: #c62a00;
        width: 100%;
        height: auto;
        padding: 0 2%; 
        line-height: 2.7rem;
        display: flex;
        border-bottom: 7px solid #3f3f3f; 
        }

    #navbar-logo {
        height: auto; 
        max-height: 30px; 
        width: auto; 
        max-width: auto; 
    }

    .flex-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }


    .nav a {
        padding-left:1.8vw;
        font-size: 0.7rem;
        color: #efefef;
        font-family: 'comicfont';
        letter-spacing: 0.2rem;
        font-optical-sizing: auto;
        font-weight: 400;
        text-decoration: none;
    }

    a:hover {
        text-decoration: #ffd500 wavy underline;    
    }

    /*----------------------------------Main Banner-------------------------------------*/
.bkg-banner{
    background-image: url(../assets/images/blue-bkg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    border-bottom: 7px solid #3f3f3f; 
    }
    
    #mainBanner { 
        display: flex;
        align-items: center;
        height: auto;
        justify-content: space-between; 
        gap:0%;
        padding: 0% 2%;
    }
    
    /* --------------Right content main banner----------------*/
    
    #selected-skin {
        width: 60%;
    }
    .banner-image{
      max-width: 100%;
      height: auto;
    }
    
    /* --------------left content main banner----------------*/
    #yellow-box{
        text-align: center;
        position: relative;
    }
    
    .yellow-image{
      max-width: 100%;
    }
    
    #select-skill {
        width: 50%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    #yellow-box {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    #white-box {
        padding-top: 8%;
        width: 80%; 
        text-align: center;
        color: #333;
        font-family: 'comicfont';
        letter-spacing: 0.2rem;
        font-optical-sizing: auto;
        font-weight: 800;
        font-size: 90%; 
        position: absolute;
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%);  
    }
    
    #white-box p {
        margin: 2vw 0 1vw 0;
        cursor: pointer;
        display: block;
    }
    #white-box p:hover {
        background-color: #ea8c0084;
    }
    
    /* -----------------------------------Portfolio Section----------------------------------------*/
    
    .portfolio-section{
        width: 100%;
    }
    
    .projects-container {
        width: calc(100% - 4%); 
        margin: 5% auto;
        background-image: url(../assets/images/projects-box-tablet.png);
        background-size: contain; 
        background-position: center center; 
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5%; 
        box-sizing: border-box;
    }
    
    .portfolio{
        position: relative;    
        display: flex;
        align-items: center;
    }
    
    .project-title-card{
        text-align: center;
        font-family: 'comicfont';
        font-weight: 400;
        margin-top: 20%;
        font-size: 80%;
        display: none;
    }
    
    .button-open{
        max-width: 40%;
        margin-top: -7%;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-bottom: 10%;
    }
    
    .button-open:hover{
        scale: 1.2;
    }
    
    .swiper{
      width: 100%;
    }
    
    .card{
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease !important;
    }
    
    .card:hover{
        scale: 1.05;
        position: relative;
      }
    
    .card::before{
      content: "";
      position: absolute;
      width: 100%;
    }
    
    .card .card-content{
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 100;
    }
    
    section .card .image{
      max-width: 65%;
      margin-top: 10%;
    }

    
    .swiper-pagination{
      position: absolute;
      margin-bottom: 4vw;
    }
    
    .swiper-pagination-bullet{
      height: 7px;
      width: 26px;
      border-radius: 25px;
      background-color: #c62a00 !important;
    }
    
    .swiper-button-next, .swiper-button-prev{
      opacity: 1;
      color: #c62b0000 !important;
      transition: all 0.3s ease;
    }
    .swiper-button-next:hover, .swiper-button-prev:hover{
      opacity: 1;
      scale: 1.2;
    }
    
    .swiper-button-next{
        background-image: url(../assets/images/right.png);
        background-repeat: no-repeat;
        background-size: contain; 
        background-position: center center; 
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3%; 
        box-sizing: border-box;
    }
    
    .swiper-button-prev{
        background-image: url(../assets/images/left.png);
        background-repeat: no-repeat;
        background-size: contain; 
        background-position: center center; 
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3%; 
        box-sizing: border-box;
    }
    
    
    /* -----------------------------------About Section----------------------------------------*/
    
    @keyframes scaleBalloon {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    
    .about{
        width: 100%;
        padding-bottom: 5%;
    }
    .container-about{
        width: 100%;
        max-width: 70rem;
        margin: 0 auto;
    }
    
    #bkg-about{
        margin-top: 7%;
    }
    
    .about-btn{
        position: absolute;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    #title-balloon{
        position: absolute;
        margin-top: -47%;
        left:3%;
        max-width: 30%;
        animation: scaleBalloon 4s ease-in-out infinite;
    }
    
    #work-experience{
        margin-top: -33.7%;
        max-width: 28%;
        left:4%;
    }
    
    #education{
        margin-top: -39%;
        max-width: 25%;
        left:37%;
    }
    
    #skills{
        margin-top: -19%;
        max-width: 20%;
        left:2.5%;
    }
    
    #who-is{
        margin-top: -21%;
        max-width: 26%;
        left:32%;
    }
    
    .about-btn:hover{
    scale: 1.05;
    }
    
    #gif-pointing{
       position: absolute;
        max-width: 38%;
        margin-top: -40%;    
        left:59%;
        
    }

    #popup-container{
        position: absolute;
        max-width: 100%;
        padding: 1.5%;
        margin-top: -44.5%;
        display: flex;
        justify-content: center;
        align-items: center;
        }
        #popup-close{
            position: absolute;
            max-width: 4.5%;
            right: 1.5vw;
            margin-top: -34%;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        #popup-close:hover{
            scale:1.2  
        }
        
        #popup-work , #popup-close, #popup-skills, #popup-education, #popup-who{
            display: none;
        }
    
    
    /* -----------------------------------Contact Section----------------------------------------*/

    .contact-me2 {
        display: none;          
        padding: 3%;
        min-height: 70vh; 
        padding: 8% 2%;
        margin-bottom: 5vw;
     }
    .contact-inner {                
        display: flex;            
        flex-direction: column; 
        justify-content: center;  
        align-items: center;      
        color: white; 
        background-image: url(../assets/images/contact-tablet.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        padding: 3%;
        min-height: 70vh; 
        padding: 8% 2%;
        margin-bottom: 5vw;
    }
    
    form {
        width: 50%;  
        max-width: 80%; 
        margin-left: 47%; 
        margin-right: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
        color: #3f3f3f;
        min-height: 45vh;
    }
     
    form input,
    form textarea { 
        width: 100%;
        padding: 8px;
        margin-bottom: 1.2%;
        border: 4px solid #3f3f3f;
        border-radius: 6px;
        background-color: #fff9b0;
        font-size: 0.7rem; 
        height: 1rem;
        min-height: 2rem;
    }
    
    form textarea {
        min-height: 3.5rem;
        resize: vertical;
    }
    
    form label{
        font-family: 'comicfont';
        margin-top: 1.5%;
    }
    
    #buttonSend {
        width: 100%;
        padding: 2%;
        margin-top: 1.7%;
        margin-bottom: 5%;
        background-color: #ea5200;
        color: #ffffff;
        border: 4px solid #3f3f3f;
        border-radius: 6px;
        cursor: pointer;
        font-family: 'comicfont';
        font-size: 100%;
        font-weight: 500;
        line-height: 1%;
    }
    
    #buttonSend:hover {
        background-color: #f77f3e;
    }
    
    /* -----------------------------------Footer Section----------------------------------------*/
    .footer {
        height: 3rem;
        text-align: center;
        background-color: #FF7F00;
        line-height: 2.5rem;
        border-top: 7px solid #3f3f3f;
        font-family: 'comicfont';
        font-weight: 600;
        color: #3f3f3f;
    }
    
    
    
    /* -----------------------------------Back to top Button----------------------------------------*/
    #backToTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        cursor: pointer;
        display: none;
        z-index: 1000;
        transition: scale 0.3s;
        
    }
    
    #backToTop:hover {
        scale: 1.2;
    }
    
 }



















/* ---------------------  Mobile Css --------------------------- */
@media (max-width: 599px) {

    .container {
        width: 100%;
        margin: 0 auto;
    }

       /*--------------------------Nav Bar-----------------------------*/
       .navbar {
        background-color: #c62a00;
        width: 100%;
        height: auto;
        padding: 1% 2% 1% 5%; 
        line-height: 2.7rem;
        display: flex;
        border-bottom: 5px solid #3f3f3f; 
        }

                
        .container {
            width: 100%;
            margin: 0 auto;
        }
    
    
        #navbar-logo {
            height: auto; 
            max-height: 30px; 
            width: auto; 
            max-width: auto; 
            margin:  1vw;
        }
    
        .flex-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }


       .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 6%;
        right: 0;
        background-color: #ffffff ;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        color: #3f3f3f !important;
    }
    
    .nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger div {
        width: 30px;
        height: 3px;
        border-radius: 4px ;
        background-color: #ffffff;
        margin: 5px 0 0 0;
        transition: 0.4s;
    }

    .navbar a{
        color: #3f3f3f;
        font-size: 1.3rem;
        font-family: 'comicfont';
        letter-spacing: 0.2rem;
        font-optical-sizing: auto;
        font-weight: 400;
        text-decoration: none;
     }


        /*----------------------------------Main Banner-------------------------------------*/
    .bkg-banner{
        background-image: url(../assets/images/blue-bkg-mobile.jpg);
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        height: auto;
        border-bottom: 5px solid #3f3f3f; 
        height: 53vw;
        }
        
        #mainBanner { 
            display: none;           
        
        }
         
        /* -----------------------------------Portfolio Section----------------------------------------*/
    
    .portfolio-section{
        width: 100%;
        padding: 4%;
    }
    
    .projects-container {
        width: calc(100% - 5%); 
        background-image: url(../assets/images/projects-box-mobile.png);
        background-size: contain; 
        background-position: center center; 
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5%; 
        box-sizing: border-box;
    }
    
    .portfolio{
        position: relative;    
        display: flex;
        align-items: center;
        margin-top: 10%;
    }
    
    .project-title-card{
        text-align: center;
        font-family: 'comicfont';
        font-weight: 400;
        margin-top: 20%;
        font-size: 80%;
        display: none;
    }
    
    .button-open{
        max-width: 33%;
        margin-top: -7%;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-bottom: 10%;
    }
    .swiper{
      width: 100%;
    }
    
    .card{
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease !important;
    }
    
    
    .card::before{
      content: "";
      position: absolute;
      width: 100%;
    }
    
    .card .card-content{
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 100;
    }
    
    section .card .image{
      max-width: 65%;
      margin-top: 10%;
    }

    
    .swiper-pagination{
      position: absolute;
      margin-bottom: 4vw;
    }
    
    .swiper-pagination-bullet{
      height: 10px;
      width: 29px;
      border-radius: 25px;
      background-color: #c62a00 !important;
    }
    
    .swiper-button-next, .swiper-button-prev{
      opacity: 1;
      color: #c62b0000 !important;
      transition: all 0.3s ease;
    }
   
    
    .swiper-button-next{
     opacity: 0;
    }
    
    .swiper-button-prev{      
        opacity: 0;
    }
    

    /* -----------------------------------About Section----------------------------------------*/
    
    @keyframes scaleBalloon {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }    
    
    .about{
        
        width: 100%;
    }
    .container-about{
        width: 100%;
        margin: 0 auto;        
        padding: 2%;
        position: relative;
    }
    
    #bkg-about{
        margin-top: 17%;
    }
    
    .about-btn{
        position: absolute;
    }
    
    #title-balloon{
        position: absolute;
        top: -89vw;
        left:5%;
        max-width: 48%;
        animation: scaleBalloon 4s ease-in-out infinite;
    }
    
    #work-experience{
        max-width: 37%;
        left:7%;
        top:-69vw;
    }
    
    #education{
        max-width: 34%;
        left:57%;
        top:-75.5vw;
    }
    
    #skills{
        max-width: 26%;
        left:10%;
        top:-50vw;
    }
    
    #who-is{
        max-width: 35%;
        left:9%;
        top:-27vw;
    }    
    
    #gif-pointing{
        margin-top: -65%;
        max-width: 62%;
        margin-left: 40%;
    }
    

    #popup-container{
        position: absolute;
        max-width: 100%; 
        left:0;       
        margin-top: -80.5%;
        display: flex;
        justify-content: center;
        align-items: center;
        }

        #popup-close{
            position: absolute;
            max-width: 12%;
            right: 1.5vw;
            margin-top: -80%;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        #popup-close:hover{
            scale:1.2  
        }
        
        #popup-work , #popup-close, #popup-skills, #popup-education, #popup-who{
            display: none;
        }

        #popup-work {
            content: url('../assets/images/work-xp-mobile.png');
        }
    
        #popup-education {
            content: url('../assets/images/education-xp-mobile.png');
        }
    
        #popup-skills {
            content: url('../assets/images/skills-xp-mobile.png');
        }
    
        #popup-who {
            content: url('../assets/images/who-xp-mobile.png');
        }
    
        
    
    /* -----------------------------------Contact Section----------------------------------------*/

    .contact-me2 {
        display: none;
        margin:10% 4% 0% 4%;
        height: 139vw;
        margin-bottom: 5vw;
     }
    .contact-inner {                
        display: flex;            
        flex-direction: column; 
        justify-content: center;  
        align-items: center;      
        color: white; 
        background-image: url(../assets/images/contact-mobile.png);
        background-size:contain;
        background-repeat: no-repeat;
        background-position: center;       
        margin:10% 4% 0% 4%;
        height: 139vw;
        margin-bottom: 5vw;
    }
    
    form {
        width: 80%; 
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
        color: #3f3f3f;
        margin-top: -18%;
    }
     
    form input,
    form textarea { 
        width: 100%;
        padding: 8px;
        border: 4px solid #3f3f3f;
        border-radius: 6px;
        background-color: #fff9b0;
        font-size: 1.2rem; 
        height: 12vw;
    }
    
    form textarea {
        resize: vertical;
    }
    
    form label{
        font-family: 'comicfont';
        margin-top: 4%;
        margin-bottom: 2%;
        font-size: 120%;
    }
    
    #buttonSend {
        width: 100%;
        padding: 2%;
        margin-top: 5%;
        background-color: #ea5200;
        color: #ffffff;
        border: 4px solid #3f3f3f;
        border-radius: 6px;
        cursor: pointer;
        font-family: 'comicfont';
        font-size: 120%;
        font-weight: 500;
        line-height: 2%;
    }
    
  
    
    /* -----------------------------------Footer Section----------------------------------------*/
    .footer {
        height: 40px;
        line-height: 33px;
        text-align: center;
        background-color: #FF7F00;
        border-top: 5px solid #3f3f3f;
        font-family: 'comicfont';
        font-weight: 600;
        font-size: 12px;
        color: #3f3f3f;
    }
    
    
    
    /* -----------------------------------Back to top Button----------------------------------------*/
    #backToTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        cursor: pointer;
        display: none;
        z-index: 1000;
        transition: scale 0.3s;
        
    }
          
}





