@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Yellowtail&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;700&display=swap");
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  height: 100vh;
  background: white;
}
ul {
  list-style: none;
  padding: 0;
  margin-right: auto;
}
a {
  text-decoration: none;
  color: black;
}
li a {
  margin-right: 2em;
}
h1 {
  font-size: 3em;
  margin-top: 1.5em;
}
p {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}

ul.transition {
  display: flex;
  position: absolute;
  z-index: 20;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  pointer-events: none;
}
ul.transition li {
  transform: scaleY(0);
  background-color: black;
  width: 20%;
}
/*********************************
/*         Menu System          */
/*********************************/
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
}
.menu-toggle {
  display: block;
  width: 40px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  z-index: 9;
}
.menu-toggle.on .one {
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle.on .two {
  opacity: 0;
}
.menu-toggle.on .three {
  -moz-transform: rotate(-45deg) translate(8px, -10px);
  -ms-transform: rotate(-45deg) translate(8px, -10px);
  -webkit-transform: rotate(-45deg) translate(8px, -10px);
  transform: rotate(-45deg) translate(8px, -10px);
}
.one,
.two,
.three {
  width: 100%;
  height: 5px;
  background: white;
  margin: 6px auto;
  backface-visibility: hidden;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.menu-section {
  display: block;
  z-index: 9;
}
.menu-section.on {
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
}
nav ul.hidden {
  display: none;
}
.menu-section nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 4em auto;
  text-align: center;
}
.menu-section nav ul a {
  font-family: "Bebas Neue", cursive;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  text-decoration: none;
  color: white;
  font-size: 3vh;
  line-height: 1.5;
  width: 100%;
  display: block;
}
.menu-section nav ul a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/*end menu system*/
.home-container {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.322) 0%,
      rgba(0, 0, 0, 0.24) 59%,
      rgba(0, 0, 0, 0.274) 100%
    ),
    url("https://think-huge.com/portfolio/OCI/assets/img/Image1.jpg");
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.classy {
  font-family: "Yellowtail", cursive;
  font-size: 5rem;
  color: white;
  padding: 2.5vh 0;
  margin: 0;
}
.custom-mill {
  font-family: "Bebas Neue", cursive;
  font-size: 5rem;
  text-align: center;
  color: white;
  padding: 1vh 0;
  margin: 0;
}
.est {
  font-family: "Bebas Neue", cursive;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  color: white;
  padding: 0.5vh 0;
  margin: 0;
}

/*********************************
/*        About Us               */
/*********************************/

.about-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.about-img {
  width: 50%;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.322) 0%,
      rgba(0, 0, 0, 0.24) 59%,
      rgba(0, 0, 0, 0.274) 100%
    ),
    url("https://think-huge.com/portfolio/OCI/assets/img/AGA-NandosBaySt-02.jpg");
  background-size: cover;
}
.about-us {
  width: 50%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #bf771c;
}
.about-us h1,
.aboutus h2 {
  line-height: 2rem;
}
@media screen and (max-width: 800px) {
  .about-container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .about-img {
    width: 100%;
    min-height: 50vh;
  }
  .about-us {
    width: 100%;
    min-height: 100%;
    padding: 1rem;
    height: 100%;
    flex-grow: 1;
  }
  .about-us h1,
  .about-us h2 {
    font-size: 1rem;
    padding: 0;
  }
}
.about-us h1,
.about-us h2,
.about-us p {
  color: white;
}
.about-us h1,
.about-us h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 3rem;
  margin: 0;
  padding: 1vh 0;
}
.about-us p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.5rem;
  margin: 0;
  padding: 1vh 0;
}
/*********************************
/*        Service               */
/*********************************/

.service-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.service-img {
  width: 50%;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.322) 0%,
      rgba(0, 0, 0, 0.24) 59%,
      rgba(0, 0, 0, 0.274) 100%
    ),
    url("https://think-huge.com/portfolio/OCI/assets/img/AGA-NandosBaySt-07.jpg");
  background-size: cover;
}
.service {
  width: 50%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #4988ad;
}
@media screen and (max-width: 800px) {
  .service-container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .service-img {
    width: 100%;
    min-height: 50vh;
  }
  .service {
    width: 100%;
    min-height: 100%;
    padding: 1rem;
    height: 100%;
    flex-grow: 1;
  }
  .service h1,
  .service h2 {
    font-size: 1rem;
    padding: 0;
  }
}
.service h1,
.service h2,
.service p {
  color: white;
}
.service h1,
.service h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 3rem;
  line-height: 3rem;
  margin: 0;
  padding: 1vh 0;
}
.service p {
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin: 0;
  padding: 1vh 0;
}

/*********************************
/*        Portfolio              */
/*********************************/
.portfolio-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10rem 5rem;
  background: #bf771c;
  align-items: center;
  justify-content: center;
}
.portfolio-container a {
  cursor: pointer;
  margin: 0.5rem;
}
.portfolio-container a img {
  width: 150px;
  height: 150px;
  border: 2px white solid;
}
/*********************************
/*        Contact                */
/*********************************/
.contact-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.map {
  width: 50%;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.322) 0%,
      rgba(0, 0, 0, 0.24) 59%,
      rgba(0, 0, 0, 0.274) 100%
    ),
    url("https://think-huge.com/portfolio/OCI/assets/img/contact-bg.jpg");
  background-size: cover;
}
.contactform {
  width: 50%;
  padding: 5rem;
  background: #33518a;
}
@media screen and (max-width: 800px) {
  .contact-container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .map {
    width: 100%;
    min-height: 50vh;
  }
  .contactform {
    width: 100%;
    min-height: 100%;
    padding: 1rem;
    height: 100%;
    flex-grow: 1;
  }
}
.contactform h1 {
  font-family: "Bebas Neue", cursive;
  font-size: 3rem;
  margin: 0;
  padding: 1vh 0;
  color: white;
}
.contactform p {
  font-size: 1.5rem;
  line-height: 2.5rem;
  padding: 0;
  margin: 2.5vh 0;
  color: white;
}
.address {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 1rem;
  margin: 2.5vh 0;
}
.address p {
  line-height: normal;
  padding: 0;
  margin: 0;
}
.address a {
  color: white;
  text-decoration: underline;
}
.address a:hover {
  text-decoration: none;
}
/*********************************
/*        Footer                 */
/*********************************/

.copyright {
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", cursive;
  font-size: 1rem;
  padding: 1rem;
  font-weight: 400;
}
.copyright a {
  color: white;
}
#privacy-content {
  background: #4988ad;
}
#privacy-content h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 3rem;
  color: white;
  margin: 0;
  padding: 1vh 0;
}
#privacy-content h3 {
  font-family: "Bebas Neue", cursive;
  font-size: 2rem;
  color: white;
  margin: 0;
  padding: 1vh 0;
}
#privacy-content p {
  font-family: "Bebas Neue", cursive;
  font-size: 1.5rem;
  color: white;
  line-height: 2.5rem;
  margin: 0;
  padding: 1vh 0;
}
#privacy-content a {
  color: white;
  text-decoration: underline;
}
#privacy-content a:hover {
  color: white;
  text-decoration: none;
}
