* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}


ul {
  list-style: none;
}

a {
  color: #fff;
  text-decoration: none;
}

h1,
h2 {
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  font-size: 1.6em;
}

p {
  margin: 10px 0;
}

/* Navbar */
.navbar.top {
  background: transparent;
}



.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color: #FFF;
  width: 100%;
  height: 70px;
  padding: 1em;
  position: fixed;
}

.top-nav img {
  height: 50px;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu>li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

/* ////////////////////  HERO  ///////////////////////////////// */
.hero {
  background: url('/images/kitchen.JPG') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: #fff;
}

.hero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 20px;
}

.hero .content h1 {
  font-size: 60px;
}

.hero .content p {
  font-size: 23px;
  max-width: 600px;
  margin: 20px 0 30px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero * {
  z-index: 10;
}

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  background-color: #01011d;
  border: none;
  border-radius: 5px;
}

/* //////////////////////////  ICON  ///////////////////////// */
.icon {
  color: #01011d;
  font-size: 100px;
  padding: 20px;
}

.bar {
  color: #fff;
  font-size: 20px;
}

.estimate {
  justify-content: center;
  align-items: center;
  padding: 0 150px;
}

.simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.info-box {
  justify-content: center;
  align-items: center;
}

.info h3,
p {
  text-align: left;
}

.banner {
  color: #daa520;
  background-color: #01011d;
}

.mission {
  display: flex;
  padding: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
}


.mission_color {
  color: #daa520;
}

.mission_box {
  width: 50%;
}

.mission img {
  border-radius: 10px;
  width: 50%;
}

.statement {
  display: flex;
  padding: 5px 20px;
}

.mission p {
  padding: 10px 20px;
  text-align: center;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  gap: 1rem;

}

.service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.planning {
  width: 50%;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.planning h3 {
  text-align: center;
}

.title {
  text-align: center;
  font-size: 1.2rem;
  padding: 10px 20px;
}

.title h2 {
  font-weight: 800;
}

/* Samples */
.sample {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 25vw);
  grid-gap: 1rem;
  padding: 20px;
}

.sample2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 25vw);
  grid-gap: 1rem;
  padding: 20px;
}

.samples img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq span {
  font-size: 20px;
  font-weight: bold;
}

.faq {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
}

/* About */
.about {
  background-color: #f0f0f0;
  display: flex;
  padding: 0 10px;
  margin: 20px 20px;
  justify-content: center;
  align-items: center;
}

.about p {
  padding: 30px;
  font-size: .8em;
  font-weight: 800;
}

.about img {
  width: 10rem;
}

i {
  font-size: 3rem;
  padding: 2rem;
}



/* Flex Items */

.flex-items {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.flex-items>div {
  padding: 40px;
}

.flex-items>div .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  font-size: 1.2em;
  text-align: left;
  line-height: 2;
}

/* Flex Columns */
.flex-columns.flex-reverse .row {
  flex-direction: row-reverse;
}

.flex-columns .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.flex-columns .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.flex-columns .column .column-1,
.flex-columns .column .column-2 {
  height: 100%;
}

.flex-columns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-columns .column-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
}

.flex-columns h2 {
  font-size: 40px;
  font-weight: 100;
}

.flex-columns h4 {
  margin-bottom: 10px;
}

.flex-columns p {
  margin: 20px 0;
}

/* Flex grid */
.flex-grid .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.flex-grid .column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

/* Section header */
.section-header {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-header h2 {
  font-size: 40px;
  margin: 20px 0;
}

.section-padding {
  padding: 20px 20px 40px;
}

/* Callback form */
.callback-form {
  width: 100%;
  padding: 20px 0;
}

.callback-form label {
  display: block;
  margin-bottom: 5px;
}

.callback-form .form-control {
  margin-bottom: 15px;
}

.callback-form input {
  width: 100%;
  padding: 4px;
  height: 40px;
  border: #f5f5f5 1px solid;
}

.callback-form input#age {
  display: none;
}

.callback-form input:focus {
  outline-color: #28a745;
}

.callback-form .btn {
  padding: 12px 0;
  margin-top: 20px;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 200px;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #28a745;
}

.footer .social>* {
  margin-right: 30px;
}

.social i {
  color: #a52a2a;
}



@media(max-width: 1000px) {
  .menu li {
    margin: 0 0.5rem
  }

  .statement>p {
    padding: 20px;
  }

  .logo {
    font-size: 1.5em;
  }

  .services,
  .sample,
  .mission {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin: 0 20px;
  }

  .flex-items>div .container {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px 20px;
  }

  .flex-columns .column,
  .flex-grid .column {
    flex: 100%;
    max-width: 100%;
  }

  .testimonial-items {
    grid-template-columns: repeat(2, 1fr);
  }
}




@media (max-width: 870px) {
  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  #menu-toggle~.menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked~.menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu>li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
    z-index: 10;
  }

  .menu>li:not(:last-child) {
    border-bottom: 1px solid #444;
  }


  .mission img {
    width: 75%;
  }

  .estimate {
    padding: 20px;
    margin: auto;
    flex-grow: initial;
  }

}


@media(max-width: 622px) {
  .about {
    padding: 20px 0;
  }

  .testimonial-items {
    grid-template-columns: repeat(1, 1fr);
  }
}