/* main.css */

/* Navigation */
.main-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}

.main-nav__logo {
  width: 70px;
  height: 70px;
}

.main-nav__items {
  display: flex;
}

.main-nav__items li {
  padding: 1rem 1.5rem;
}

.main-nav__items li a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  padding-bottom: 0.5rem;
  transition: border-color 0.5s;
}

.main-nav__items li a:hover {
  border-color: #ccc;
}

.main-nav__items li a.active {
  border-color: #EF6D6D;
}

.main-nav__items li a.active-1 {
  border-color: #457b9d;
}

.main-nav__items li a.active-2 {
  border-color: #a8dadc;
}

.main-nav__items li a.active-3 {
  border-color: #eb5e28;
}

/* Header */
#header__home {
  background: url("../img/bg-1.jpg") no-repeat center right/cover;
  height: 100vh;
  color: #C9B79C;
  overflow: hidden;
}

#header__home .header-content {
  text-align: center;
  padding: 30%;
}

#header__home h1 {
  font-size: 4rem;
  line-height: 1.2;
}

#header__home .typewrite {
  display: block;
}

#header__inner {
  background: url("../img/bg-1.jpg") no-repeat 40% 20%/cover;
  height: 5.5rem;
  border-bottom: 3px solid #457b9d;
}

/* Sections grid */
#home__a .skills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

#home__a .skills i {
  color: #EF6D6D;
  padding-bottom: 0.5rem;
}

#home__b .profile {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#home__b li.title {
  font-size: 1.5rem;
}

#home__b li.number {
  font-size: 2rem;
  font-weight: bold;
}

#home__b > div {
  padding: 3rem 0;
}

#home__b > div:nth-child(odd) {
  background-color: #ffffff;
}

#home__b > div:nth-child(even) {
  background-color: #ccc5b9;
}

#home__c .process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  position: relative;
}

#home__c .process__step {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 25px;
  background: #EF6D6D;
  border-radius: 50%;
  line-height: 15px;
  padding: 1rem;
  transition: all 1s;
}

#home__c .process__icon {
  position: relative;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #121111;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

#home__c .process__icon:hover {
  background-color: #EF6D6D;
}

#home__c .process__icon:hover .process__step {
  background-color: #121111;
}

/* About section */
#about-a .info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.2rem;
}

#about-a .info__image {
  border: 1px solid #ffffff;
  padding: 0.5rem;
  border-radius: 3px;
}

#about-a .info__bio {
  border: 1px solid #ffffff;
  padding: 0.8rem;
}

#about-c .about-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

#about-c .about-logos img {
  width: 90%;
}

/* Footer */
#main-footer {
  background: #121111;
  color: aliceblue;
  height: 5rem;
}

#main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

#main-footer .footer-content .social .fab {
  margin-right: 1rem;
  border: 2px solid #fff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  padding: 0;
  display: inline-block;
  transition: all 1s;
  background-color: #EF6D6D;
}

#main-footer .footer-content .social .fab:hover {
  background-color: #ffffff;
}

