* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background-color: #272626;
    height: 100%;

}

header {
    background-color: #000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 9999
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#logo-bd {
    height: 45px;
}

.contact {
    display: flex;
    gap: 10px;
}

.contact-mobile {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.contact-mobile a i {
    font-size: 55px;
}


.header-container nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 30px;
}

a {
    color: white;
    font-family: "Roboto", sans-serif;
}

.menu-options {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.menu-options:hover {
    text-decoration: underline;
}

.icon-contact {
    color: #fff;
    font-size: 25px;
    transition: transform 0.3s ease;
}

.icon-contact:hover {
    transform: translateY(-3px);

}

.about {
    color: #fff;
    font-size: 16px;
    font-family: "Stack Sans Text";
    font-weight: 300;
}

.skills {
    display: flex;
    padding: 5px;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.subtitle {
    text-align: center;
    color: #fff;
    margin: 15px 0;
    font-size: 20px;
    font-weight: 100;
    font-family: "Stack Sans Text";
}

.skill-square {
    position: relative;
    background-color: #424242;
    height: 180px;
    width: 275px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 0
}

.overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    font-size: 25px;
    font-weight: 500;
    font-family: "Stack Sans Text";
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
}

.overlay-figma {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    font-size: 25px;
    font-weight: 500;
    font-family: "Stack Sans Text";
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
}


.skill-square:hover {
    transform: translateY(-3px);
}

.skill-square:hover .overlay {
    opacity: 1;
}

.tech-icon {
    height: 130px;
}

.topic {
    width: 10px;
    background-color: #fff;
    color: #fff;
}

.section {
    font-size: 32px;
    display: flex;
    margin: 40px 0 40px 0px;
    font-family: "Stack Sans Text"
}

.first-section {
    font-size: 32px;
    display: flex;
    padding-top: 120px;
    margin-bottom: 40px;
    font-family: "Stack Sans Text"

}

.title {
    margin-left: 10px;
    color: #fff;
}

.company-logo {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    border: 1px solid rgb(66, 64, 64);
}

.company-card {
    display: flex;
    color: #fff;
    gap: 10px
}

.profession-title {
    font-size: 16px;
    font-family: "Stack Sans Text";
}

.company {
    font-size: 14px;
    font-family: "Stack Sans Text";
    font-weight: 200;
}

.data {
    font-size: 14px;
    font-family: "Stack Sans Text";
    font-weight: 200;
    opacity: 0.6;
}

.description {
    font-size: 14px;
    font-family: "Stack Sans Text";
    font-weight: 200;
}

.projects {
    text-align: center;
    font-size: 20px;
    font-family: "Stack Sans Text";
    font-weight: 200;
    color: #fff;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    background-color: #000;
    color: #fff;
    font-family: "Stack Sans Text";
    font-weight: 100;
    font-size: 13px;
}

.mobile-menu  {
    background-color: rgba(0, 0, 0, 0.705);
    backdrop-filter: blur(10px);
    top: 80px;
    width: 100%;
    height: 100vh;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    align-items: center;
    position: fixed;
    z-index: 1;
     transform: translateX(100%);
     transition: transform 0.4s ease;
}

.mobile-menu-options {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
} 

.mobile-menu.active {
  display: block;
    transform: translateX(0);
}

.mobile-contact {
    background-color: rgb(15, 140, 241);
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;

}


#ifes {
    background-color: #fff;
}

#ifes2 {
    visibility: hidden;
}

#mobile-menu-icon{
    color: #fff;
    display: none;
}





@media screen and (max-width:1030px) {

    #mobile-menu-icon {
        display: block;
        font-size: 25px;
        cursor: pointer;
    }


    .header-container nav, .contact {
        display: none;
    }

    a {
        text-decoration: none;
    }

}