/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");


/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  margin: 30px 0 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.938rem;
  color: black;
}
h1,h2,p{
  margin: 0;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/*===== CLASS CSS ===== */
.section-title{
  position: relative;
  font-size: 2rem;
  color: brown;
  margin-top: 1erm;
  margin-bottom: 2rem;
  text-align: center;
}

.section{
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/*===== LAYOUT =====*/
.bd-grid{
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 2rem;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
}
.container{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146,161,176,.15);
}

/*===== NAV =====*/
.nav{
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
@media screen and (max-width: 768px){
  .nav__menu{
    position: fixed;
    top: 30px;
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: black;
    transition: .5s;
  }
}
.nav__item{
  margin-bottom: 2rem;
}
.nav__link{
  position: relative;
  color: #fff;
}
.nav__link:hover{
  position: relative;
}
.nav__link:hover::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: brown;
}
.nav__logo{
  color: brown;
}
.nav__toggle{
  color: brown;
  font-size: 1.5rem;
  cursor: pointer;
}

/*Active menu*/
.active::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: brown;
}

/*=== Show menu ===*/
.show{
  right: 0;
}

/*===== HOME =====*/
.home{
  height: calc(100vh - 3rem);
  row-gap: 1rem;
}
.home__data{
  align-self: center;
}
.home__title h1{
  font-size: 2rem;
  margin-bottom: 2.5rem;
  text-align: center
}

.home__title p{
  text-align: center;
  margin-bottom: 2.5rem;
}

.home__title-color{
  color: brown;
}
.home__social{
  display: flex;
  flex-direction: column;
}
.home__social-icon{
  width: max-content;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.home__social-icon:hover{
  color: brown;
}
.home__img{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 295px;
}



/* ===== ABOUT =====*/


.team__container{
  row-gap: 2rem;
  /*text-align: center;*/
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  text-align: initial;
  margin-bottom: 10px;
}

.team__subtitle{
  margin-bottom: 1rem;
}
.team__img{
  justify-self: center;
}
.team__img img{
  width: 200px;
  border-radius: .5rem;
}


.client__container{
  row-gap: 2rem;
  text-align: center;
}

.client__container{
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  text-align: initial;
  margin-bottom: 60px;
}

.client__title{
  position: relative;
  font-size: 2rem;
  color: brown;
  margin-top: 1erm;
  margin-bottom: 3rem;
  text-align: center;
}

.client__title::after{
  position: absolute;
  content: "";
  width: 80px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 3rem;
  background-color: black;
}

.client__subtitle{
  margin-bottom: 1rem;
}

.client__subtitle{
  margin-bottom: 1rem;
}

.client__text{
  margin-bottom: 2rem;
}

.client__img{
  border-radius: .5rem;
}

/*doc*/

.doc-container {
  box-sizing: border-box;
  background-color: white;
}
/* Set additional styling options for the columns*/
.doc-column {
float: left;
width: 33%;
background-color: white;
text-align: center;
}



.doc-row:after {
content: "";
display: table;
clear: both;
background-color: white;
}



/* ===== FOOTER =====*/
.footer{
  background-color: brown;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 2rem 0;
}
.footer__title{
  font-size: 2rem;
  margin-bottom: 2rem;
}
.footer__social{
  margin-bottom: 2rem;
}
.footer__icon{
  font-size: 1.5rem;
  color: #fff;
  margin: 0 1rem
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 768px){
  body{
    margin: 0;
  }
  .section{
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .section-title{
    margin-bottom: 3rem;
  }
  .section-title::after{
    width: 80px;
    top: 3rem;
  }

  .nav{
    height: calc(30px + 1rem);
  }
  .nav__list{
    display: flex;
    padding-top: 0;
  }
  .nav__item{
    margin-left: 3rem;
    margin-bottom: 0;
  }
  .nav__toggle{
    display: none;
  }
  .nav__link{
    color: black;
  }

  .home{
    height: 50vh;
    border: dashed red;;
    margin-bottom: 100px;
    margin-top: 100px;
  }
  .home__data{
    align-self: flex-end;
  }
  .home__social{
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self: flex-end;
  }
  .home__social-icon{
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .home__img{
    width: 457px;
    bottom: 55%;
    margin-right: 190px;
  }

  .skills__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    text-align: initial;
  }
  .about__img img{
    width: 300px;
  }
  .work__container{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2,1fr);
    column-gap: 2rem;
  }
  .contact__form{
    width: 360px;
  }
  .contact__container{
    justify-items: center;
  }
}

@media screen and (min-width: 1024px){
  .bd-grid{
    margin-left: auto;
    margin-right: auto;
  }
  .home__img{
    right: 10%;
  }
}

.gallery-img {
  padding-left: 350px;
}

.display-img {
  width: 60%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 25px;
}

.container-img {
  text-align: center;
  padding: 10px 20px;
}

.pdf-section {
  text-align: center;
}


