*{
    margin: 0;
    padding: 0;
}

.topbar{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    transition: background-color 0.16s, box-shadow 0.16s, padding 0.16s;
    z-index: 3000;
}

.topbar:hover{
    background-color: #191919;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.topbar-scrolled {
    background-color: #191919;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 0;
}

.topbar-left{
    width: 30%;
    text-align: center;
}

.topbar-right{
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7%;
}

.topbar-btn{
    display: inline-block;
    background: none;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFFE6;
    text-decoration-style: solid;
    cursor: pointer;
    transition: color 0.3s;
}

.topbar-btn:hover{
    color: White;
}

h1{
    font-family: 'Raleway', sans-serif;
    font-size: 2.1rem;
    color: White;
    cursor: pointer;
}

.main{
    width: 100%;
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, rgba(0, 1, 1, 0.9), rgba(0, 1, 1, 0.4)), linear-gradient(to left, rgba(1, 14, 22, 0.9), rgba(1, 13, 17, 0.4)), url(./Assets/bg1.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    gap: 1%;
}

.main-welcome{
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: White;
}

.main-sub-text{
    font-family: 'Open Sans', sans-serif;
    font-size: 1.12rem;
    font-weight: 400;
    color: #EEEEEE;
}

.main-quote{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #EEEEEE;
}

.main-logo-box{
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 3%;
    gap: 4%;
}

.main-logo{
    width: 4%;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.3s;
}

.main-logo:hover{
    opacity: 0.7;
}

.skills{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    background-image: linear-gradient(to right, rgba(0, 1, 1, 0.9), rgba(0, 1, 1, 0.4)), linear-gradient(to left, rgba(1, 14, 22, 0.9), rgba(1, 13, 17, 0.4)), url(./Assets/bg4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: round;
    align-items: center;
    text-align: center;
    gap: 12%;
    color: White;
}

.skills-text{
    margin-top: 12%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 3%;
}

.skills-main-text{
    font-family: 'Oswald', sans-serif;
    font-size: 2.1rem;
    font-weight: bold;
}

.skills-sub-text{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #EEEEEE;
}

.skills-card-box{
    width: 94%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    justify-content: center;
    align-items: center;
    justify-items: center;
    gap: 1rem;
    margin-bottom: 12%;
}

.skills-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12%;
    gap: 0.7rem;
    background-color: rgba(44, 41, 41, 0.833);
    transition: opacity 0.12s;
    cursor: default;
    opacity: 0;
    transform: translateY(30%);
    transition: opacity 1s ease, transform 1s ease;
}

.skills-card.show{
    opacity: 1;
    transform: translateY(0);
}

.skills-card:hover{
    opacity: 0.7;
}

.skills-card-img{
    width: 12%;
}

.skills-card-title{
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.skills-card-description{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.education{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7% 0;
    gap: 1rem;
    background-color: Black;
}

.education-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: White;
    gap: 3%;
    margin-bottom: 3rem;
}

.education-title{
    font-family: 'Oswald', sans-serif;
    font-size: 2.1rem;
    font-weight: bold;
}

.education-description{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.education-accordion {
    width: 56%;
    overflow: hidden;
    background-color: rgba(44, 41, 41, 0.833);
  }
  
.education-accordion-header {
    background-color: rgba(44, 41, 41, 0.833);
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    opacity: 1;
    transition: background-color 0.3s, color 0.3s;
}
  
.education-accordion-header:hover {
    opacity: 0.7;
}
  
.education-accordion-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(44, 41, 41, 0.833);
}
  
.education-accordion-content .content {
    display: flex;
    flex-direction: column;
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    text-align: justify;
    color: White;
    gap: 0.7rem;
}

.education-accordion-card-title{
    font-size: 1rem;
    font-weight: 600;
}

.education-accordion-card-description{
    font-size: 0.9rem;
}
  
.education-logo {
    display: block;
    margin: 0 auto 15px;
    max-width: 100px;
}

#amber-everest{
    border-radius: 50%;
}
  
.about_section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 0;
    background-image: linear-gradient(to bottom, rgb(1, 14, 22, 0.25), rgba(1, 13, 17, 0.75)), url(https://rare-gallery.com/uploads/posts/5003862-mountains-nepal-nature-hd-4k-sky-photography.jpg);
    background-repeat: round;
    background-size: cover;
    text-align: center;
}

.about_section_container
{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about_section_title
{
    font-size: 2.75rem;
    font-family: 'Raleway', sans-serif;
    color: White;
}

.about_section_image
{
    width: 21%;
    margin-top: 2rem;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(30%);
    transition: opacity 1s ease, transform 1s ease;
    
}

.about_section_image.show{
    opacity: 1;
    transform: translateY(0);
}

.about_section_name
{
    font-size: 1.75rem;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: White;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(30%);
    transition: opacity 1s ease, transform 1s ease;
}

.about_section_name.show{
    opacity: 1;
    transform: translateY(0);
}

.about_section_description-first
{
    font-size: 1.25rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    color: White;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(30%);
    transition: opacity 1s ease, transform 1s ease;
}

.about_section_description-first.show{
    opacity: 1;
    transform: translateY(0);
}


.about_section_description-second
{
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    color: White;
    margin-top: 0.3rem;
    opacity: 0;
    transform: translateY(30%);
    transition: opacity 1s ease, transform 1s ease;
}

.about_section_description-second.show{
    opacity: 1;
    transform: translateY(0);
}

.about_section_single_line
{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about_section_commitment
{
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: White;
    margin-top: 1rem;
    font-weight: lighter;
    opacity: 0;
    transform: translateY(30%);
    transition: opacity 1s ease, transform 1s ease;
}

.about_section_commitment.show{
    opacity: 1;
    transform: translateY(0);
}

.contact_section
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
    background-color: Black;
}

.contact_section_title
{
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    color: White;
}

.contact_box
{
    width: 75%;
    display: flex;
    flex-direction: row;
    margin-top: 2.25rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.contact_box_left_content
{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #117569;
}

iframe{
    width: 100%;
}

.contact_box_right_content
{
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.contact_box_right_content_title
{
    font-size: 2.15rem;
    font-family: 'Raleway', sans-serif;
    color: #083d37;
}

form
{
    margin-top: 1.75rem;
}

.contact_box_single_line_inputs
{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.short_input
{
    width: 40%;
    height: 2.25rem;
    padding-left: 0.5rem;
    margin: 0 1rem;
}

.long_input
{
    width: 85%;
    height: 2.25rem;
    padding-left: 0.5rem;
    margin-left: 1rem;
    margin-top: 1.5rem;
}

input{
    background: none;
    border: none;
    border-bottom: 1px solid gray;
    color: #EEEEEE;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.contact_box_button
{
    width: 7rem;
    height: 2.25rem;
    font-size: 1.15rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
    margin-left: 1rem;
    margin-top: 1.5rem;
    background-color: rgb(50, 219, 198);
    border: none;
    color: #191919;
    cursor: pointer;
    transition: 0.5s;
}

.contact_box_button:hover
{
    background-color: #117569;
    color: White;
    transition: 0.5s;
}

.copyright{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.7% 0;
    background-color: #191919;
}

.copyright-notice{
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: White;
}

@media (max-width: 500px) {
    .topbar-right{
        display: none;
    }

    .topbar-left{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    h1{
        font-size: 1.2rem;
    }

    .main-welcome{
        font-size: 2.1rem;
    }

    .main-sub-text{
        font-size: 1rem;
    }

    .main-quote{
        font-size: 0.8rem;
    }

    .main-logo{
        width: 12%;
    }

    .main{
        height: 70vh;
    }

    .skills-main-text, .education-title{
        font-size: 1.6rem;
    }

    .skills-sub-text, .education-description{
        font-size: 0.8rem;
    }

    .contact_box_left_content{
        display: none;
    }

    .contact_box_right_content{
        width: 100%;
    }

    input{
        font-size: 0.7rem;
    }

    .about_section_image{
        width: 37%;
    }
}

.bar-icon-box{
    width: 100%;
    display: flex;
    flex-direction: row;
    position: fixed;
    justify-content: flex-end;
    align-items: center;
    top: 0;
    z-index: 4000;
    padding: 1rem 0;
}

.bar-icon{
    width: 5.6%;
    margin-right: 5.6px;
}

.bar-drag{
    width: 50%;
    height: 100%;
    display: none;
    flex-direction: column;
    position: fixed;
    align-items: flex-start;
    justify-content: center;
    top: 0;
    right: 0;
    z-index: 4000;
    padding: 1rem 0;
    gap: 3rem;
    background-color: #191919;
}

.bar-drag-btns-box{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.bar-drag-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.bar-drag-links-img{
    width: 7%;
}

.bar-drag-close{
    width: 7%;
    margin-left: 1rem;
}

.bar-drag-btn{
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    background: none;
    border: none;
    color: White;
    opacity: 1;
}

.bar-drag-btn:hover{
    color: rgb(50, 219, 198);
    opacity: 0.7;
}

@media (min-width: 900px){
    .bar-drag{
        display: none;
    }

    .bar-icon-box{
        display: none;
    }
}

@media (max-width: 900px) {
    .topbar-right{
        display: none;
    }

    .topbar-left{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    h1{
        font-size: 1.2rem;
    }

    .main-welcome{
        font-size: 2.1rem;
    }

    .main-sub-text{
        font-size: 1rem;
    }

    .main-quote{
        font-size: 0.8rem;
    }

    .main-logo{
        width: 12%;
    }

    .main{
        height: 70vh;
    }

    .skills-main-text, .education-title{
        font-size: 1.6rem;
    }

    .skills-sub-text, .education-description{
        font-size: 0.8rem;
    }

    .contact_box_left_content{
        display: none;
    }

    .contact_box_right_content{
        width: 100%;
    }

    input{
        font-size: 0.7rem;
    }
}
