.resume {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px; }
  .resume #pdf-container {
    border: 1px solid #ccc;
    padding: 10px;
    width: 80%;
    height: 700px;
    overflow: auto;
    margin-bottom: 20px; }
  .resume button {
    padding: 10px 20px;
    background-color: #062040;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem; }
  .resume button:hover {
    background-color: #151212; }

#about-a .info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.2rem; }
  #about-a .info__image {
    border: 1px solid #f4f4f4;
    padding: .5rem;
    border-radius: 3px; }
  #about-a .info__bio {
    border: 1px solid #151212;
    padding: .5rem;
    align-content: center; }
    #about-a .info__bio button {
      border: none;
      background-color: #062040;
      padding: 0.8rem 1.5rem;
      border-radius: 1rem;
      margin: 1.6rem; }
      #about-a .info__bio button a {
        color: #fff;
        font-size: 1.2rem; }

#about-b {
  color: #fff; }
  #about-b .progress {
    height: 20px;
    background-color: #ccc;
    border-radius: 5px;
    margin-bottom: .8rem; }
    #about-b .progress div {
      height: 100%;
      text-align: center;
      background-color: #062040; }

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

#about-d .references ul {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  align-items: center; }

#about-d .references p {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5rem; }

#about-d .references img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-right: .5rem; }

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

body {
  background-color: #fff;
  font-family: 'Prompt', sans-serif;
  line-height: 1.5; }

a {
  text-decoration: none;
  color: #151212; }

ul {
  list-style: none; }

img {
  width: 100%; }

#contact-a .form-fields {
  display: grid;
  grid-template-areas: 'name email' 'subject phone' 'message message' 'button button';
  gap: 1rem;
  margin-bottom: 1rem; }
  #contact-a .form-fields .name {
    grid-area: name; }
  #contact-a .form-fields .email {
    grid-area: email; }
  #contact-a .form-fields .subject {
    grid-area: subject; }
  #contact-a .form-fields .phone {
    grid-area: phone; }
  #contact-a .form-fields .message {
    grid-area: message;
    height: 180px; }
    #contact-a .form-fields .message .input {
      height: 180px; }
  #contact-a .form-fields .btn-dark {
    grid-area: button; }
  #contact-a .form-fields .input {
    padding: .5rem 1rem;
    display: block;
    width: 100%; }

#contact-a .alert-message {
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  display: none; }

#contact-a .alert-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb; }

#contact-a .alert-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb; }

#contact-a #sendButton {
  font-size: 1.2rem;
  border-radius: 5px; }

#contact-b {
  color: azure; }
  #contact-b .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center; }

#main-footer {
  height: 5rem;
  background: #151212;
  color: #fff; }
  #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;
      border-radius: 50%;
      text-align: center;
      padding: 0.6rem;
      transition: all 1s;
      color: #fff; }
      #main-footer .footer-content .social .fab:hover {
        background-color: #062040; }

.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: #151212;
        text-transform: uppercase;
        border-bottom: 3px transparent solid;
        padding-bottom: .5rem;
        transition: border-color .5s; }
        .main-nav__items li a:hover {
          border-color: #ccc; }
        .main-nav__items li a.active {
          border-color: #062040; }

#header__home {
  background: url("../img/me.jpg") no-repeat center right/cover;
  height: 100vh;
  color: #fff; }
  #header__home .header-content {
    text-align: center;
    padding-top: 30%; }
  #header__home h1 {
    font-size: 4rem;
    line-height: 1.2; }
  #header__home .typewrite {
    display: block; }

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

#home__a .skills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem; }
  #home__a .skills i {
    color: #062040;
    padding-bottom: .5rem; }

#home__b .profile {
  display: grid;
  grid-template-columns: repeat(4, 1fr); }
  #home__b .profile li.title {
    font-size: 1.5rem; }
  #home__b .profile li.number {
    font-size: 2rem;
    font-weight: bold; }
  #home__b .profile div {
    padding: 3rem 0; }
    #home__b .profile div:nth-child(odd) {
      background-color: #f4f4f4; }
    #home__b .profile div:nth-child(even) {
      background-color: #ccc; }

#home__c .process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center; }
  #home__c .process__step {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    background: #062040;
    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: #151212;
    color: #fff;
    padding: 2rem;
    text-align: center; }
    #home__c .process__icon:hover {
      background-color: #062040; }
      #home__c .process__icon:hover .process__step {
        background-color: #151212; }

@media (max-width: 830px) {
  #projects .items {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  #header__home {
    height: 30rem; }
    #header__home .header-content {
      padding-top: 7rem; }
      #header__home .header-content h1 {
        font-size: 2.6rem; }
  #home__a .skills,
  #home__b .profile,
  #home__c .process, .items {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 576px) {
  #home__a .skills div {
    border-bottom: 1px #f4f4f4 solid;
    padding-bottom: 1rem; }
    #home__a .skills div:last-child {
      border: none;
      padding-bottom: 0; }
  .lead {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    word-spacing: 1px; }
  #header__home {
    height: 10rem;
    border-bottom: 2px solid #062040;
    background-position: 20% 30%; }
    #header__home .header-content {
      display: none; }
  #header__inner {
    height: 10rem; }
  .main-nav {
    flex-direction: column;
    align-items: center; }
    .main-nav li {
      padding: 1rem; }
  #home__a .skills,
  #home__b .profile,
  #home__c .process, .items, #contact-b .contact-info {
    grid-template-columns: 1fr; }
  #main-footer {
    height: 7rem; }
    #main-footer .footer-content {
      flex-direction: column;
      padding: 1rem;
      height: 5rem; }
      #main-footer .footer-content .social {
        padding-top: 1rem; }
  #about-a .info {
    grid-template-columns: 1fr; }
  #about-c {
    display: none; }
  #contact-a .form-fields {
    grid-template-areas: 'name'  'email' 'subject' 'phone' 'message' 'button'; }
  #contact-b div {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #fff; }
    #contact-b div:last-child {
      border: none;
      padding-bottom: 0;
      margin-bottom: 0; }
  #projects .items {
    grid-template-columns: 1fr; } }

.items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  box-shadow: rgba(149, 154, 145, 0.2) 0px 8px 24px; }
  .items .item {
    position: relative;
    background-color: #f4f4f4;
    overflow: hidden; }
    .items .item:hover {
      border: 2px solid #151212; }
    .items .item .source_code {
      background-color: #062040;
      color: #fff;
      padding: 0.5rem 1.5rem;
      border-radius: 5px 10px;
      margin: 1rem;
      font-size: 1rem;
      transition: all 0.2s; }
      .items .item .source_code:hover {
        opacity: 0.8; }
    .items .item .item__text__wrap {
      margin-bottom: 2rem; }
    .items .item .item__text__title {
      margin-bottom: 1rem;
      font-size: 1rem; }

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

.btn-primary, .btn-light, .btn-dark {
  display: inline-block;
  padding: .7rem 2rem;
  transition: all .5s;
  border: none;
  cursor: pointer; }

.btn-primary {
  color: #333;
  background-color: #062040; }

.btn-light {
  color: #333;
  background-color: #f4f4f4; }

.btn-dark {
  color: #fff;
  background-color: #151212; }

button[class^='btn-']:hover,
a[class^='btn-']:hover,
input[class^='btn-']:hover {
  background-color: #062040; }

.bg-dark {
  background-color: #151212; }

.bg-primary {
  background-color: #062040; }

.bg-light {
  background-color: #f4f4f4; }

.py-1 {
  padding: 1rem 0; }

.py-2 {
  padding: 2rem 0; }

.py-3 {
  padding: 3rem 0; }

.py-4 {
  padding: 4rem 0; }

.my-1 {
  margin: 1rem 0; }

.my-2 {
  margin: 2rem 0; }

.my-3 {
  margin: 3rem 0; }

.my-4 {
  margin: 4rem 0; }

.text-center {
  text-align: center; }

.section-title {
  font-size: 2rem;
  padding-bottom: 1rem;
  text-transform: uppercase; }

.border-bottom {
  height: 3px;
  width: 3rem;
  background-color: #062040;
  margin: 0 auto 1rem auto; }

.lead {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  word-spacing: 2px; }
