@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; list-style: none; text-decoration: none;
}
  
:root{
      /* colors */
      --body-color: #C8B6A6; 
      --sidebar-color: #FAF3F0;
      --primary-color: #fff; 
      --primary-color-light: #9c7e58;
      --toggle-color: #9c7e58;
      --text-color: #9c7e58;
  
      /* transition */
      --tran-02: all 0.2s ease;
      --tran-03: all 0.3s ease;
      --tran-04: all 0.4s ease;
      --tran-05: all 0.5s ease;
}
  
body{
    background: linear-gradient(#FFEECC, #FFDDCC); height: 500vh; position: relative;
}

/* body::before{
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(#FAF3F0, #F88020); 
    clip-path: circle(25% at 90%  40%); z-index: 1;
}

body::after{
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(#F88020, #FAF3F0); 
    clip-path: circle(20% at 20% 95%);  z-index: 2;
} */

.sidebar{
    position: fixed; height: 100%; width: 200px; background: #fff;  transition: var(--tran-05);
    z-index: 100; border-top-right-radius: 15px; border-bottom-right-radius: 15px;
}

.sidebar header{
    position: relative; 
}
  
.image-text img{
    width: 60px; border-radius: 50%; margin-top: 20%; 
}
  
.sidebar header .image-text{
    display: flex; align-items: center;
}

.sidebar .text{
    font-size: 14px; font-weight: 600; color: var(--text-color);
    opacity: 1; 
}
  
.sidebar .image{
    min-width: 80px; display: flex; align-items: center; justify-content: center;
}
  
.sidebar header .image-text{
    padding-top: 20%;
}

header .image-text .header-text{
    display: flex; flex-direction: column; 
}
  
.header-text .logoName{
    font-weight: 600; font-size: 30px;
}
  
.header-text .motto{
    font-size: 10px; font-weight: 500; letter-spacing: 1px;
    white-space: nowrap;
}
  
.sidebar header .toggle{ 
    position: absolute; top: 50%; right: -15px;
    transform: translateY(-60%) rotate(180deg);
    height: 25px; width: 25px; background: #fff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20%; color: var(--primary-color-light); 
    font-size: 15px; transition: var(--tran-05); cursor: pointer;
}
  
.sidebar li{
    height: 50px; margin-top: 10px; list-style: none;
    display: flex; align-items: center; 
}
  
.sidebar li .icon{
    font-size: 20px; min-width: 60px; display: flex; align-items: center;
    justify-content: center; 
}
.sidebar li .icon, .sidebar li .text{
    color: var(--text-color); transition: var(--tran-02);
}
  
.sidebar li a{
    text-decoration: none; display: flex; width: 100%; height: 100%; 
    align-items: center; border-radius: 6px; transform: var(--tran-04);
}
  
.sidebar li a:hover{
    background: #f1ecec; color: var(--text-color);
}
  
.sidebar li a {
    height: 100%; width: 100%; border-radius: 6px;
}
  
.sidebar .menu-bar{
    height: calc(100% -50px); display: flex; flex-direction: column;
    justify-content: space-between; 
}
  
.sidebar.close{
    width: 65px; transition: var(--tran-05);
}
  
.sidebar.close .text, .sidebar.close .mode .moon, .sidebar.close .mode .sun{
    opacity: 0;
}

.sidebar.close header .toggle{
    transform: translateY(-10%); left: 55px; transition: var(--tran-05);
}

.sidebar.close .bottom-content .mode .toggle-switch{
    left: 7px;
}

.sidebar.close .image-text img{
    margin-top: 35%; margin-left: -20px; width: 50px; 
}

.menu-bar .mode{
    position: relative; border-radius: 6px; background: var(--primary-color-light); 
}
  
.menu-bar .mode i{
    position: absolute; transition: var(--tran-03);
}
  
.menu-bar .menu ul{
    background: transparent;
}
  
.menu-bar .mode .dark-light{
    height: 50px; width: 60px; display: flex; align-items: center;
}
  
.menu-bar .mode i.sun{
    opacity: 0; padding-left: 20px; color: #fff; font-size: 20px; 
}
  
body.dark .menu-bar .mode i.sun{
    opacity: 1;
}
  
body.dark .menu-bar .mode i.moon{
    opacity: 0;
}
  
.menu-bar .menu ul{
    padding-top: 50px; color: var(--text-color); 
}
  
.menu-bar .mode i.moon{
    padding-left: 20px; color: var(--primary-color-light); font-size: 20px;
}
  
.bottom-content{ 
    padding-top: 100px;
}
  
.bottom-content .mode{ 
    background: transparent;
}

.menu-bar .mode .toggle-switch{
    position: absolute; height: 100%; min-width: 50px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    right: 5px; background: transparent; border-radius: 6px;
}
  
.toggle-switch .switch{
    height: 22px; width: 44px; background: var(--toggle-color); 
    position: relative; border-radius: 25px;
}
  
.switch::before{
    height: 15px; width: 15px; background-color: var(--sidebar-color);
    content: ''; position: absolute; border-radius: 50%; top: 50%;
    left: 5px; transform: translateY(-50%); 
    transition: var(--tran-03);
}
  
body.dark{
    --body-color: #18191A;
    --sidebar-color: #242526;
    --primary-color: #3A3B3C;
    --primary-color-light: #242526;
    --toggle-color: #fff;
    --text-color: #fff;
}

body.dark .sidebar, body.dark .sidebar li, body.dark .sidebar li a,
body.dark .sidebar .menu-bar .mode .toggle-switch, body.dark .sidebar ul{
    color: var(--sidebar-color); background: var(--primary-color);
    transition: var(--tran-05);
}

body.dark .sidebar li a:hover, body.dark .sidebar li a:hover{
    background: var(--sidebar-color); color: var(--primary-color);
}

body.dark .switch::before{
    left: 25px;
}
  
body.dark .sidebar header .toggle{
    color: #fff; background: var(--primary-color); 
}
  
.aboutPage{
    height: 100vh; position: relative;  transform: var(--tran-05);
}
  
.sidebar.close ~ .home{
    left: 88px; width: calc(100% - 88px);
} 
  
body.dark .aboutPage{
    background-color: #18191A; width: 100%; 
}

body.dark section{
    margin: 0; position: relative;
}

body.dark .featured-artist{
    background-color: #272626; width: 100%; 
}

body.dark .featured-artist :is(h2, h3, p){
    color: #fff; width: 100%; 
}

body.dark .aboutContainer{
    background-color: #272626; width: 100%;
}


.aboutPage .about h1{
    position: relative; color: #9c7e58;
}

.aboutPage .about p, .aboutPage .about h1{
    max-width: 1000px; text-align: center; border-radius: 10px; 
    z-index: 3; position: relative; padding-left: 300px;
    padding-top: 30px; 
}

.aboutPage .about p{
    font-size: 20px; color: #18191A; font-weight: 400;
}

.main{
    width: 300px; min-height: 380px; text-align: center; position: relative;
    cursor: pointer; margin-left: 100px; display: inline-flex; 
    margin-top: 50px; 
}

.mission{
    position: absolute; background: #9c7e58; border-radius: 10px;
    bottom: 0; padding: 20px 20px 20px 20px; height: 300px;
}

.mission-logo{
    width: 80px; height: 80px; border-radius: 50%; margin: -60px auto 0;
    background: #9c7e58;
}

.mission-logo i{
    font-size: 45px;  
    color: #fff; padding: 15px;
}

.mission h4{
    padding-top: 20px; color: #fff;
}

.mission p{
    font-size: 12px; padding-top: 20px; color: #fff;
}

.mission-logo .puzzle{
    font-size: 40px; display: flex; padding-left: 22px; 
}

#more{
    margin-top: 50px; 
}

#more button{
    cursor: pointer; background: #fff; color: #9c7e58; border-radius: 20px;
    border: none; padding: 3px 5px 3px 5px; transition: 0.5s; transform: translateY(-50%);
}

#more button:hover{
    background: #f1d9b9; color: #9c7e58; padding: 5px 7px 5px 7px;
}

.shadow1{
    height: 200px; width: 80%; background: #9c7e58; position: absolute;
    border-radius: 10px; bottom: 0; left: 10%; z-index: -1;
}

.shadow2{
    height: 200px; width: 64%; background: #9c7e58; position: absolute;
    border-radius: 10px; bottom: 0; left: 18%; z-index: -2;
}

body.dark .main{
    z-index: 10; 
}

.shadow1{
    z-index: -1;
}

.shadow2{
    z-index: -1;
}

.main:hover .mission{
    transform: translateY(-50px);
}

.main:hover .shadow1{
    transform: translateY(-25px);
}

.featured-artist{
    margin: 0; padding: 50px, 50px, 20px, 50px; position: absolute;
}

.featured-artist h2{
    padding-top: 100px; display: flex; justify-content: center; align-items: center;
}

.featured-artist :is(.alcantara, .napoleon, .alvarado, .legaspi, .alcuaz){
    padding-left: 150px; padding-top: 60px; padding-right: 150px;
    display: flex; white-space: wrap;
}

.featured-artist h5{
    font-weight: 600; color: #9c7e58;
}

.featured-artist p{
    font-size: 12px; text-align: justify; padding-top: 10px; text-indent: 20px;
}

.featured-artist :is(img){
    border-radius: 50%; width: 280px; height: 300px; 
    margin-left: 20px; margin-right: 20px;
}

.back a{
    color: #18191A; font-size: 12px; padding-left: 1000px;
}

.back{
    padding-top: 100px; padding-bottom: 20px;
}

body.dark .back a{
    color: #DFD7BF;
}

body.dark .aboutPage .about p{
    color: #ffffff;
}

/* footer */

ul{
    list-style: none;
  }
  
  .row{
    display: flex; flex-wrap: wrap;
  }
  
  .footer{
    background-color: #24262b; margin-top: 2100px;
    padding-top: 20px; padding-bottom: 20px; padding-left: 100px;

  }
  
  .footer-col{
     width: 20%; margin-left: 25px;  display: inline-block; margin-right: 25px;
  }
  .footer-col h4{
      font-size: 16px; color: #ffffff; text-transform: capitalize;
      margin-bottom: 20px; font-weight: 500; position: relative;
    margin-top: 20px;
  }
  .footer-col h4::before{
      content: ''; position: absolute; left:0; bottom: -10px; background-color: #9c7e58; height: 2px;
      box-sizing: border-box; width: 50px;
  }
  
  .footer .container-footer h5{
    color: #fff; margin-left: 70%;
  }
  
  .footer-col ul li:not(:last-child){
      margin-bottom: 10px;
  }
  
  .footer-col ul span{
    white-space: nowrap; 
  }
  
  .footer-col ul span img{
    width: 50px; 
  }
  
  .footer-col ul li a{
      font-size: 14px; text-transform: capitalize; color: #ffffff;
      text-decoration: none; font-weight: 300; color: #bbbbbb;
      display: block; transition: all 0.3s ease; margin-top: 1px;
      white-space: wrap;
  }
  .footer-col ul li a:hover{
      color: #ffffff;
      padding-left: 8px;
  }
  .footer-col .social-links a{
      display: inline-block;
      height: 40px;
      width: 40px;
      background-color: rgba(255,255,255,0.2);
      margin:0 10px 10px 0;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      color: #ffffff;
      transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
      color: #24262b;
      background-color: #ffffff;
  }


  @media (max-width: 1600px){
    body.dark .featured-artist :is(h2, h3, p){
        color: #fff; width: 100%; 
    }
    
    body.dark .aboutContainer{
        background-color: #18191A; width: 100%;
    }
    
    
    .aboutPage .about h1{
        position: relative; color: #9c7e58;
    }
    
    .aboutPage .about p, .aboutPage .about h1{
        max-width: 1000px; text-align: center; border-radius: 10px; 
        z-index: 3; position: relative; padding-left: 20%; padding-top: 30px; padding-right: 0;
    }
    
    .aboutPage .about p{
        font-size: 16px; color: #18191A; font-weight: 400;
    }
    .container{
        margin-left: 5%; 
    }
    .main{
        width: 27%; min-height: 380px; text-align: center; position: relative;
        cursor: pointer; margin-left: 40px; display: inline-flex; 
        margin-top: 50px; 
    }
    
    .mission{
        position: absolute; background: #9c7e58; border-radius: 10px;
        bottom: 0; padding: 10px 10px 10px 10px; height: 300px;
    }
    
    .mission-logo{
        width: 80px; height: 80px; border-radius: 50%; margin: -60px auto 0;
        background: #9c7e58;
    }
    
    .mission-logo i{
        font-size: 45px;  
        color: #fff; padding: 15px;
    }
    
    .mission h4{
        padding-top: -200px; color: #fff;
    }
    
    .mission p{
        font-size: 12px; padding-top: 20px; color: #fff;
    }
    
    .mission-logo .puzzle{
        font-size: 40px; display: flex; padding-left: 22px; 
    }
    
    #more{
        margin-top: 50px; 
    }
    
    #more button{
        cursor: pointer; background: #fff; color: #9c7e58; border-radius: 20px;
        border: none; padding: 3px 5px 3px 5px; transition: 0.5s; transform: translateY(-50%);
    }
    
    #more button:hover{
        background: #f1d9b9; color: #9c7e58; padding: 5px 7px 5px 7px;
    }
    
    .shadow1{
        height: 200px; width: 80%; background: #9c7e58; position: absolute;
        border-radius: 10px; bottom: 0; left: 10%; z-index: -1;
    }
    
    .shadow2{
        height: 200px; width: 64%; background: #9c7e58; position: absolute;
        border-radius: 10px; bottom: 0; left: 18%; z-index: -2;
    }
    
    body.dark .main{
        z-index: 10; 
    }
    
    .shadow1{
        z-index: -1;
    }
    
    .shadow2{
        z-index: -1;
    }
    
    .main:hover .mission{
        transform: translateY(-50px);
    }
    
    .main:hover .shadow1{
        transform: translateY(-25px);
    }
    
    .featured-artist{
        margin: 0; padding: 50px, 50px, 20px, 50px; position: absolute;
    }
    
    .featured-artist h2{
        padding-top: 100px; display: flex; justify-content: center; align-items: center;
    }
    
    .featured-artist :is(.alcantara, .napoleon, .alvarado, .legaspi, .alcuaz){
        padding-left: 120px; padding-top: 60px; padding-right: 50px;
        display: flex; white-space: wrap;
    }
    
    .featured-artist h5{
        font-weight: 600; color: #9c7e58;
    }
    
    .featured-artist p{
        font-size: 12px; text-align: justify; padding-top: 10px; text-indent: 20px;
    }
    
    .featured-artist :is(img){
        border-radius: 50%; width: 220px; height: 280px; 
        margin-left: 20px; margin-right: 20px;
    }
    
    .back a{
        color: #18191A; font-size: 12px; padding-left: 1000px;
    }
    body.dark .back{
        padding-bottom: 110px;
    }
    
    .back{
        padding-top: 100px; padding-bottom: 20px;
    }
    
    body.dark .back a{
        color: #DFD7BF;
    }
    
    body.dark .aboutPage .about p{
        color: #ffffff;
    }
    
    .sidebar{
        width: 180px; 
    }
    .image-text img, .sidebar.close .image-text img{
        width: 50px;  
    }
    .header-text .logoName{
        font-size: 20px; 
    }  
    .sidebar .text{
        font-size: 14px;
    }
    .header-text .motto{
        font-size: 10px; 
    }    
    .sidebar header .toggle{ 
        height: 30px; 
    } 
    .sidebar li .icon, .menu-bar .mode i.sun, .menu-bar .mode i.moon{
        font-size: 20px; 
    } 
    .sidebar li a{
        height: 80%; 
    }
    .sidebar.close{
        width: 60px; transition: var(--tran-05);
    }
    .sidebar.close .image-text img{
        margin-top: 50px; margin-left: -20px; width: 38px; 
    }
    .toggle-switch .switch{
        right: 5px; 
    }
    .sidebar.close .toggle-switch .switch{
        right: 2px; 
    }
    .mode .text{
        font-size: 10px; 
    }

    .back a{
        color: #3d5772; font-size: 10px; padding-left: 88%;
    }
    .footer{
        background-color: #24262b; padding-top: 2px; padding-left: 8%; 
    }
    .footer-col{
         width: 22%; margin-right: 2px; margin-bottom: 50px;
    }
    .footer-col h4, .footer h5{
        font-size: 14px; 
    }
    .footer-col ul span{
        white-space: wrap; 
    }
    .footer-col ul span img{
        width: 60px; 
    } 
    .footer-col ul li a{
        font-size: 12px; 
    }
    .footer-col ul li a:hover{
        padding-left: 6px;
    }
    .footer-col .social-links a{
        height: 42px; width: 42px;
        line-height: 44px;
    }
    .footer .container-footer h5{
        font-size: 12px; white-space: nowrap; display: flex; justify-content: center;
        align-items: center; margin-left: -5%;
    }
  }


  @media (max-width: 990px){
    .sidebar{
        width: 160px; 
    }
    .image-text img, .sidebar.close .image-text img{
        width: 50px;  
    }
    .header-text .logoName{
        font-size: 20px; 
    }  
    .sidebar .text{
        font-size: 14px;
    }
    .header-text .motto{
        font-size: 10px; 
    }    
    .sidebar header .toggle{ 
        height: 30px; 
    } 
    .sidebar li .icon, .menu-bar .mode i.sun, .menu-bar .mode i.moon{
        font-size: 20px; 
    } 
    .sidebar li a{
        height: 80%; 
    }
    .sidebar.close{
        width: 60px; transition: var(--tran-05);
    }
    .sidebar.close .image-text img{
        margin-top: 50px; margin-left: -20px; width: 38px; 
    }
    .toggle-switch .switch{
        right: 50px; 
    }
    .sidebar.close .toggle-switch .switch{
        right: 2px; 
    }
    .mode .text{
        display: none;
    }

    .back a{
        color: #3d5772; font-size: 10px; padding-left: 85%;
    }
    .featured-artist{
        height: 350vh;
    }
    .footer{
        background-color: #24262b; padding-top: 2px; padding-left: 12%;
        margin-top: 2180px;
    }
    .footer-col{
         width: 23%; margin-left: 5px;  margin-right: 5px;
    }
    .footer-col h4, .footer h5{
        font-size: 12px; 
    }
    .footer-col ul span{
        white-space: wrap; 
    }
      
    .footer-col ul span img{
        width: 60px; 
    } 
    .footer-col ul li a{
        font-size: 10px; 
    }
    .footer-col ul li a:hover{
        padding-left: 4px;
    }
    .footer-col .social-links a{
        height: 40px; width: 40px;
        line-height: 38px;
    }
    .footer .container-footer h5{
        font-size: 10px; white-space: nowrap; display: flex; justify-content: center;
        align-items: center; margin-left: -5%;
    }
  body.dark .aboutPage{
    background-color: #18191A; width: 100%; 
}

body.dark section{
    margin: 0; position: relative;
}

body.dark .featured-artist{
    background-color: #18191A; width: 100%; 
}

body.dark .featured-artist :is(h2, h3, p){
    color: #fff; width: 100%; margin-top: 480px;
    display: flex; 
}

body.dark .aboutContainer{
    background-color: #18191A; width: 100%;
}
.aboutPage .about h1{
    position: relative; color: #9c7e58;
}
.aboutPage{
    margin-bottom: 480px;
}

.aboutPage .about p, .aboutPage .about h1{
    max-width: 95%; text-align: center; border-radius: 10px; 
    z-index: 3; position: relative; padding-left: 15%;
    padding-top: 10px; scroll-padding-right: 14%;
}

.aboutPage .about p{
    font-size: 14px; color: #18191A; font-weight: 400;
}

.main{
    width: 50%; min-height: 320px; text-align: center; position: relative; cursor: pointer; margin-left: 30%; display: inline-flex; margin-top: 30px; margin-left: 30%;
}

.container{
    margin-top: -20px;
}

.mission{
    position: absolute; background: #9c7e58; border-radius: 10px;
    bottom: 0; padding: 20px 20px 20px 20px; height: 250px;
}

.mission-logo{
    width: 60px; height: 60px; border-radius: 50%; margin: -50px auto 0;
    background: #9c7e58;
}

.mission-logo i{
    font-size: 35px;  
    color: #fff; padding: 12px;
}

.mission h4{
    padding-top: 16px; color: #fff;
}

.mission p{
    font-size: 10px; padding-top: 20px; color: #fff;
}

.mission-logo .puzzle{
    font-size: 30px; display: flex; padding-left: 18px; 
}

#more{
    margin-top: 50px; 
}

#more button{
    cursor: pointer; background: #fff; color: #9c7e58; border-radius: 20px;
    border: none; padding: 3px 5px 3px 5px; transition: 0.5s; transform: translateY(-50%);
}

#more button:hover{
    background: #f1d9b9; color: #9c7e58; padding: 5px 7px 5px 7px;
}

.shadow1{
    height: 200px; width: 80%; background: #9c7e58; position: absolute;
    border-radius: 10px; bottom: 0; left: 10%; z-index: -1;
}

.shadow2{
    height: 200px; width: 64%; background: #9c7e58; position: absolute;
    border-radius: 10px; bottom: 0; left: 18%; z-index: -2;
}

body.dark .main{
    z-index: 10; 
}

.shadow1{
    z-index: -1;
}

.shadow2{
    z-index: -1;
}

.main:hover .mission{
    transform: translateY(-50px);
}

.main:hover .shadow1{
    transform: translateY(-25px);
}


.featured-artist{
    margin: 0; padding: 10px, 5px, 10px, 5px; position: absolute;
}

.featured-artist h2{
    padding-top: 100px; display: flex; justify-content: center; align-items: center;  padding-left: 15%; font-size: 24px;
}


.featured-artist :is(.alcantara, .napoleon, .alvarado, .legaspi, .alcuaz){
    padding-left: 20%; padding-top: 20px; padding-right: 1%;
    display: flex; white-space: wrap; max-width: 100%;
}

body.dark .featured-artist :is(.alcantara, .napoleon, .alvarado, .legaspi,.alcuaz){
    margin-top: -480px;
}

body.dark .alcantara p, body.dark .napoleon p, body.dark .alvarado p, body.dark .legaspi p, body.dark .alcuaz p{
    margin-top: 10px;
}

.artist-content{
    max-width: 90%; 
}

.featured-artist h5{
    font-weight: 600; color: #9c7e58; font-size: 10px;
}

.featured-artist h3{
    font-size: 15px;
}

.featured-artist p{
    font-size: 11px; text-align: justify; padding-top: 10px; text-indent: 20px;
}

body.dark .featured-artist p{
    padding-top: 2px;
}

.featured-artist :is(img){
    display: none;
}
.back a{
    color: #18191A; font-size: 12px; padding-left: 500px;
}

.back{
    padding-top: 60px; padding-bottom: 80px;
}

body.dark .back a{
    color: #DFD7BF;
}

body.dark .aboutPage .about p{
    color: #ffffff;
}
}


  @media (max-width: 700px) and (max-width: 900px){
    .featured-artist{
        height: 100vh;
    }
    body.dark .aboutPage{
        background-color: #18191A; width: 100%; 
    }
    
    body.dark section{
        margin: 0; position: relative; 
    }
    
    body.dark .featured-artist{
        background-color: #18191A; width: 100%; 
    }
    
    body.dark .featured-artist :is(h2, h3, p){
        color: #fff; width: 100%; margin-top: 480px;
        display: flex; 
    }
    
    body.dark .aboutContainer{
        background-color: #18191A; width: 100%;
    }
    .aboutPage .about h1{
        position: relative; color: #9c7e58;
    }
    .aboutPage{
        margin-bottom: 480px;
    }
    
    .aboutPage .about p, .aboutPage .about h1{
        max-width: 90%; text-align: center; border-radius: 10px; 
        z-index: 3; position: relative; padding-left: 20%;
        padding-top: 10px; 
    }
    
    .aboutPage .about p{
        font-size: 12px; color: #18191A; font-weight: 400;
    }
    
    .main{
        width: 70%; min-height: 320px; text-align: center; position: relative; cursor: pointer; margin-left: 100px; display: inline-flex; margin-top: 30px; 
    }

    .container{
        margin-top: -20px;
    }
    
    .mission{
        position: absolute; background: #9c7e58; border-radius: 10px;
        bottom: 0; padding: 20px 20px 20px 20px; height: 250px;
    }
    
    .mission-logo{
        width: 60px; height: 60px; border-radius: 50%; margin: -50px auto 0;
        background: #9c7e58;
    }
    
    .mission-logo i{
        font-size: 35px;  
        color: #fff; padding: 12px;
    }
    
    .mission h4{
        padding-top: 16px; color: #fff;
    }
    
    .mission p{
        font-size: 10px; padding-top: 20px; color: #fff;
    }
    
    .mission-logo .puzzle{
        font-size: 30px; display: flex; padding-left: 18px; 
    }
    
    #more{
        margin-top: 50px; 
    }
    
    #more button{
        cursor: pointer; background: #fff; color: #9c7e58; border-radius: 20px;
        border: none; padding: 3px 5px 3px 5px; transition: 0.5s; transform: translateY(-50%);
    }
    
    #more button:hover{
        background: #f1d9b9; color: #9c7e58; padding: 5px 7px 5px 7px;
    }
    
    .shadow1{
        height: 200px; width: 80%; background: #9c7e58; position: absolute;
        border-radius: 10px; bottom: 0; left: 10%; z-index: -1;
    }
    
    .shadow2{
        height: 200px; width: 64%; background: #9c7e58; position: absolute;
        border-radius: 10px; bottom: 0; left: 18%; z-index: -2;
    }
    
    body.dark .main{
        z-index: 10; 
    }
    
    .shadow1{
        z-index: -1;
    }
    
    .shadow2{
        z-index: -1;
    }
    
    .main:hover .mission{
        transform: translateY(-50px);
    }
    
    .main:hover .shadow1{
        transform: translateY(-25px);
    }
    .featured-artist{
        margin: 0; padding: 10px, 5px, 10px, 5px; position: absolute;
    }
    
    .featured-artist h2{
        padding-top: 100px; display: flex; justify-content: center; align-items: center;
    }

    .featured-artist h2{
        padding-left: 15%; font-size: 20px;
    }
    
    
    .featured-artist :is(.alcantara, .napoleon, .alvarado, .legaspi, .alcuaz){
        padding-left: 20%; padding-top: 20px; padding-right: 1%;
        display: flex; white-space: wrap; max-width: 100%;
    }

    body.dark .featured-artist :is(.alcantara, .napoleon, .alvarado, .legaspi,.alcuaz){
        margin-top: -480px;
    }

    body.dark .alcantara p, body.dark .napoleon p, body.dark .alvarado p, 
    body.dark .legaspi p, body.dark .alcuaz p{
        margin-top: 10px;
    }

    .artist-content{
        max-width: 90%; 
    }
    
    .featured-artist h5{
        font-weight: 600; color: #9c7e58; font-size: 10px;
    }

    .featured-artist h3{
        font-size: 15px;
    }
    
    .featured-artist p{
        font-size: 10px; text-align: justify; padding-top: 10px; text-indent: 20px;
    }

    body.dark .featured-artist p{
        padding-top: 2px;
    }
    
    .featured-artist :is(img){
        display: none;
    }
    .back a{
        color: #18191A; font-size: 12px; padding-left: 100px;
    }
    
    .back{
        padding-top: 20px; padding-bottom: 20px;
    }
    
    body.dark .back a{
        color: #DFD7BF;
    }
    
    body.dark .aboutPage .about p{
        color: #ffffff;
    }

    .sidebar{
        width: 140px; 
    }
    .image-text img, .sidebar.close .image-text img{
        width: 40px;  
    }
    .sidebar .text, .header-text .logoName{
        font-size: 12px; 
    }  
    .header-text .motto{
        font-size: 8px; 
    }    
    .sidebar header .toggle{ 
        height: 20px; 
    } 
    .sidebar li .icon, .menu-bar .mode i.sun, .menu-bar .mode i.moon{
        font-size: 15px; 
    } 
    .sidebar li a{
        height: 80%; 
    }
    .sidebar .menu-bar{
        height: calc(100% -50px); display: flex; flex-direction: column;
        justify-content: space-between; 
    }
    .sidebar.close{
        width: 55px; transition: var(--tran-05);
    }
    .sidebar.close .image-text img{
        margin-top: 50px; margin-left: -25px; width: 35px; 
    }
    .sidebar.close .text, .sidebar.close .mode .moon, .sidebar.close .mode .sun{
        opacity: 0;
    }
    .sidebar.close header .toggle{
        transform: translateY(-40%); left: 45px; transition: var(--tran-05);
    }
    .sidebar.close .bottom-content .mode .toggle-switch{
        left: 5px; width: 45px;
    }
    .menu-bar .mode .dark-light{
        height: 30px; width: 40px; 
    }  
    .toggle-switch .switch{
        right: 20px; 
    }
    .menu-bar .mode .toggle-switch{
        position: absolute; height: 100%; min-width: 50px; cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        right: 5px; background: #fff; border-radius: 6px;
    } 
    .sidebar.close .toggle-switch .switch{
        height: 22px; width: 44px; right: 2px;
    }
    .mode .text{
        display: none;
    }
    .sidebar.close .menu-bar .menu-links .icon{
        padding-right: 5px;
    }
    .back a{
        color: #3d5772; font-size: 10px; padding-left: 350px;
    }

    .featured-artist{
        height: 100vh;
    }
    .footer{
        background-color: #24262b; padding-top: 2px; padding-left: 80px; 
        bottom: 0;  margin-bottom: -500px;
    }
    .footer-col{
         width: 22%; margin-left: 5px;  margin-right: 5px;
    }
    .footer-col h4, .footer h5{
        font-size: 12px; 
    }
    .footer-col ul span{
        white-space: wrap; 
    }
      
    .footer-col ul span img{
        width: 60px; 
    } 
    .footer-col ul li a{
        font-size: 10px; 
    }
    .footer-col ul li a:hover{
        padding-left: 4px;
    }
    .footer-col .social-links a{
        height: 30px; width: 30px;
        line-height: 32px;
    }
    .footer .container-footer h5{
        font-size: 10px; white-space: nowrap; display: flex; justify-content: center;
        align-items: center; margin-left: -5%;
    }
  }

  @media (max-width: 360px) and (max-width: 560px){
    .featured-artist{
        height: 200vh;
    }
 
    body{
        height: 200vh;
    }
    .footer{
        background-color: #24262b; padding-top: 2px; padding-left: 80px; 
    }
  }