* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Alegreya", serif;
  font-weight: 400;
}

body {
  direction: ltr;
  background-color: #fffaf0;
  color: #333;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

.container {
  margin: 0 auto;
  overflow: hidden;
  padding: 70px;
}

header {
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  line-height: 60px;
  padding: 0 130px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
}

.logo {
  float: left;
  height: 100%;
}

.logo img {
  height: 80%;
  margin-top: 6px;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 30px;
}

nav a {
  text-decoration: none;
  color: #444;
  font-size: 18px;
}

.clear-fix {
  clear: both;
}

.hero {
  background-image: url("assets/images/drew-coffman-1872.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  padding: 40px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.hero h1 {
  font-size: 76px;
  margin-bottom: 18px;
  line-height: 1.2em;
  font-weight: 400;
}

.hero p {
  margin: 0 0 5px;
  font-size: 22px;
  line-height: 1.86em;
}

.hero_buttons {
  margin-top: 60px;
}

.btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  padding: 15px 28px;
  margin: 0 10px;
}

.btn.focus {
  background-color: #8e7754;
  border: none;
}

.btn:hover {
  background-color: white;
  color: #000;
}

#about {
  background-color: #ffffff;
  width: 100%;
  overflow: hidden;
}

#profile {
  background-color: aquamarine;
  width: 100%;
  overflow: hidden;
}

section .container_image {
  width: 50%;
  height: 100%;
  float: left;
  padding: 50px;
  padding-top: 0px;
}

section .content {
  width: 50%;
  float: right;
  font-size: 17px;
  padding: 40px 0px 40px 0px;
  height: 100%;
}

section .content h2 {
  margin-bottom: 20px;
}

section .content p {
  width: 100%;
  line-height: 2.2;
}

#location {
  background-color: #f8f8f8;
  .content {
    float: left;
  }
  .container_image {
    float: right;
  }
}

#contact_information {
  background-color: #f8f8f8;
  .content {
    float: left;
  }
  .container_image {
    float: right;
  }
  .container_image iframe {
    position: absolute;
    width: 45%;
    height: 80%;
  }
  .icon img {
    background-color: #8e7754;
  }
}

#products {
  background-color: white;
  text-align: center;
  .container {
    text-align: center;
  }
  .container .title {
    margin-bottom: 10px;
  }
  .container .p {
    margin-bottom: 60px;
  }
  .card {
    float: left;
    margin-left: 70px;
    text-align: center;
    width: 26.33333333333333%;
  }
  .card .content {
    float: none;
    padding: 0;
    width: 100%;
    padding-top: 16px;
  }
  .card .container_image {
    float: none;
    padding: 0px;
    width: 100%;
  }
}

.icon {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.icon img {
  width: 40px;
  max-width: 80px;
  height: auto;
  border: #d9d9d9 1px solid;
  border-radius: 50px;
}
.icon span {
  width: 45%;
  font-size: 16px;
  color: #333;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

footer .footer_logo {
  margin-bottom: 20px;
}

footer p {
  margin-bottom: 20px;
  color: gray;
}

footer .icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  .icon {
    width: auto;
  }
  .ico_facebook .ico:hover {
    background-color: #3b5998;
  }
  .ico_google .ico:hover {
    background-color: #dd4b39;
  }
  .ico_linkedin .ico:hover {
    background-color: #007bb5;
  }
  .ico_twitter .ico:hover {
    background-color: #00aced;
  }
  .ico {
    background-color: #484540;
    border: 0;
    transition: background 0.3s ease;
  }
}
