/* - header styles - */
.header {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(231, 231, 231);
    width: 100%;
    height: 4rem;
    padding: .5rem 4rem;
    z-index: 1000000;
}

/* -- header logo -- */
.logo {
    width: 15rem;
    height: 5rem;
    
}

.logo-img {
    width: 7rem;
    height: 7rem;
    margin-top: 1.5rem;
}

.name-container {
    width: 700px;
    text-align: center;
    font-size: 23px;
    
}

.orange {
    font-family: var(--ff-accent);
    
    font-weight: 600;
    color: #DA5000;
}

.yellow {
    font-family: var(--ff-main);
    
    font-weight: 600;
    color: #FFB200;
}

/* -- header button -- */
a:link,
a:visited {
    background-color: #DA5000;
    border: 2px solid #DA5000;
    border-radius: 50px;
    color: rgb(231, 231, 231);
    padding: 0.5rem 4rem;
    font-family: var(--ff-main);
    font-size: 16;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
}

a:hover,
a:active {
    background-color: rgb(231, 231, 231);
    color: #DA5000;
}

/* -- hamburger menu -- */
.hamburger-container {
    width: 33px;
    cursor: pointer;
    margin-left: 3rem;
}
  
.bar1, 
.bar2, 
.bar3 {
    width: 30px;
    height: 3px;
    background-color: rgb(29, 13, 10);
    margin: 6px 0;
    transition: 0.4s;
}

.hamburger-container:hover 
.bar2 {
    transform: translate(8px, 0);
}
  
.change 
.bar1 {
    transform: translate(0, 9px) rotate(-45deg);
}
  
.change 
.bar2 {
    opacity: 0;
}
  
.change 
.bar3 {
    transform: translate(0, -9px) rotate(45deg);
}


/* - footer - */
.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: auto;
    background-color: #212121;
    font-family: var(--ff-main);
    font-size: 14px;
    color: rgb(231, 231, 231);
    padding: 3rem 5rem;
    margin-top: 2rem;
}
.list {
    padding: 0;
}

li {
    list-style-type: none;
    line-height: 1.8;
}

.footer-text {
    font-family: var(--ff-accent);
    font-size: 20px;
    font-weight: 600;
    color: #DA5000;
    margin-bottom: 0;
}

.socials-container {
    align-content: flex-end;
}

.fa-brands {
    margin: 0 0.4rem;
    color: rgb(231, 231, 231);
    font-size: 20px;
}

.fa-brands:hover {
    color: #DA5000;
}