/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */

body {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/**
 * Add your custom styles below
 * 
 * Remember: 
 * - Be organised, use comments and separate your styles into meaningful chunks
 *    for example: General styles, Navigation styles, Hero styles, Footer etc.
 * 
 * - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
 */

header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.burger-button {
  display: none;
  font-size: 30px;
  cursor: pointer;
  margin-left: auto;
}
header img {
  width: 70px;
  height: 50px;
  padding: 15px;
  margin-left: 2rem;
}
.nav-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 2rem;
}
a {
  text-decoration: none;
  color: rgb(129, 121, 121);
}
a:hover {
  font-weight: bold;
  color: rgba(240, 81, 18, 0.904);
}
.nav-header .active {
  font-weight: bold;
  color: rgb(85, 81, 81);
}
.nav-header .active:hover {
  color: rgba(240, 81, 18, 0.904);
}
.section1 {
  position: relative;
  text-align: center;
}
h3 {
  font-size: 2.5rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.section1 img {
  width: 100%;
  height: auto;
}
.section1_detail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.section1 p {
  font-size: 2rem;
}
button {
  background-color: rgba(240, 81, 18, 0.904);
  padding: 20px;
  width: 150px;
  text-decoration: none;
  font-size: 1.2rem;
  border-color: rgba(240, 81, 18, 0.904);
}
button:hover {
  transform: scale(1.05);
}
h1 {
  margin-top: 8rem;
  text-align: center;
  padding: 30px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-items: center;
}
.item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.fot img {
  width: 20px;
}
footer {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer :nth-child(1) {
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 20px;
}
a {
  padding: 20px;
}
footer :nth-child(3) {
  color: rgb(177, 173, 173);
}

.level2 {
  margin-top: 5rem;
  display: flex;
  background-color: #fcefeb;
  align-items: center;
}
.level2 div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.responsive-img {
  max-width: 100%;
  height: auto;
}
.sec_2cont p {
  font-size: 2rem;
  text-align: center;
  width: 40%;
  font-family: "Times New Roman", Times, serif;
}
.sec_2cont button {
  color: white;
  width: 200px;
  border-color: rgba(240, 81, 18, 0.904);
}

.quote {
  color: black;
  position: relative;
}
.quote::before,
.quote::after {
  color: rgba(240, 81, 18, 0.904);
  font-size: 1.5em;
}

.quote::before {
  content: "“";
}

.quote::after {
  content: "”";
}

@media (max-width: 768px) {
  header {
    align-items: center;
    height: auto;
    padding: 20px;
  }

  header :nth-child(2) {
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
  }
  header img {
    width: 50px;
    height: 40px;
    padding: 15px;
    margin-left: 1rem;
  }

  .section1_detail {
    padding: 8px;
  }

  h3 {
    font-size: 1.2rem;
  }

  .section1 p {
    font-size: 0.9rem;
  }
  .section1 img {
    height: 240px;
  }

  button {
    font-size: 0.675rem;
    padding: 10px;
    width: 90px;
  }
  .container {
    flex-direction: column;
  }
  h1 {
    font-size: 1.5rem;
  }
  .level2 {
    display: flex;
    flex-direction: column;
  }
  .level2 div:nth-child(2) {
    width: 100%;
  }
  .responsive-img {
    width: 100%;
  }
  .sec_2cont button {
    width: 110px;
  }

  .burger-button {
    display: block;
  }
  .nav-header {
    display: none;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    gap: 10px;
    right: 0;
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 10;
    background: white;
  }
  .sec_2cont p {
    font-size: 1.1rem;
    width: 50%;
  }
  .nav-header.active {
    display: flex;
  }

  header :nth-child(2) {
    margin-left: 0;
  }
}
