/* font by goole fonts  */
@font-face {
  font-family: 'Nunitosans_bold';
  src: url(../fonts/NunitoSans_7pt_Condensed-Bold.ttf) format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'roboto';
  src: url(../fonts/Roboto-Regular.ttf) format('ttf');
  font-weight: normal;
  font-style: normal;
}

body>div {
  font-family: 'roboto', Verdana, Geneva, Tahoma, sans-serif;
  display: grid;
  grid-template-areas:
    "header header"
    "main aside"
    "section1 section1"
    "section2 section2"
    "footer footer"
  ;
  grid-template-rows: auto;
  min-height: 100vh;
}

body>div>header>nav>div>.navbar-brand {
  color: rgb(203, 128, 128);
  font-weight: bold;
  font-family: 'Nunitosans_bold', Arial, Helvetica, sans-serif;
}

#navbarSupportedContent > form > button{
  background-color: rgb(203, 128, 128);
  color: white;
}

#navbarSupportedContent > form > button:hover{
  background-color: rgb(250, 128, 128);
}


header {
  grid-area: header;
}

main {
  grid-area: main;
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-top: 2em;
  margin-left: 10em;

}

aside {
  grid-area: aside;
  width: 20vw;
  background-color: #fff;
  margin-top: 2em;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: auto;
  cursor: pointer;
  color: rgb(203, 128, 128);
}

aside>img {
  width: 300px;
  height: auto;
  border-radius: 5px;
}

aside>p {
  padding: 10px;
}

body>div>section:nth-child(3) {
  grid-area: section1;
}



body>div>section:nth-child(4) {
  grid-area: section2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 40px;

}

body>div>section:nth-child(4)>div:nth-child(1),
div:nth-child(2),
div:nth-child(3) {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

body>div>section:nth-child(4)>div:nth-child(1)>img,
div:nth-child(2)>img,
div:nth-child(3)>img {
  border-radius: 50px;
  margin: auto;
  display: flex;
  justify-content: center;

}

body>div>section:nth-child(4)>div:nth-child(1)>h3,
div:nth-child(2)>h3,
div:nth-child(3)>h3 {
  text-align: center;
  font-family: 'Nunitosans_bold', Verdana, Geneva, Tahoma, sans-serif;
  border-bottom: 2px solid rgb(203, 128, 128);
}

body>div>section:nth-child(4)>div:nth-child(1)>p:nth-child(3),
div:nth-child(2)>p:nth-child(3),
div:nth-child(3)>p:nth-child(3) {
  text-align: center;
  padding: 5px 30px;
}

body>div>section:nth-child(4)>div:nth-child(1)>p:nth-child(4),
div:nth-child(2)>p:nth-child(4),
div:nth-child(3)>p:nth-child(4) {
  padding: 10px 30px;

}


#accordionPanel>div>div>h2>button {

  color: rgb(62, 56, 56);
  font-weight: bold;
  font-size: 0.7em;
}

footer {
  grid-area: footer;
  text-align: center;
}