@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;700&display=swap");
/* font-family: 'IBM Plex Mono', monospace; */

/* google font */

:root {
  --clr-primary: #6dfc56;
  --clr-secondary: rgb(221, 247, 88);
  --clr-text: #13390d;
  --clr-link: rgb(255, 105, 22);

  --white: #ffffff;
  --black: #212121;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  /* background-color: var(--clr-primary); */
}

h2 {
  line-height: 1.2;
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--clr-link);
}

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

/* ends base  */

.container {
  width: 1130px;
  max-width: 95%;
  padding: 0 10px;
  margin: 0 auto;
}

main {
  background-color: var(--clr-primary);
  overflow-x: hidden;
}

header {
  height: 100px;
  padding:30px 0px;
  position: relative;
}

header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

header nav {
  width: 300px;
  height: auto;
  padding: 30px 50px;
  background-color: var(--black);
  position: absolute;
  right: -100%;
  top: 90px;
  z-index: 3;
  box-shadow: 0 0 5px #000000bf, 0 0 20px #0000004d;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(1, 0.04, 0.31, 0.94);
  transition-property: right;
}

header nav.check {
  right: 0%;
}

header nav ul {
  list-style: none;
}

header nav ul li {
  display: block;
}

header nav ul li a {
  font-size: 1.1rem;
  margin: 10px 0px;
}
header nav ul li a:hover {
  color: white;
  text-decoration: underline;
}

header nav ul li.button a {
  border: 2px solid var(--clr-link);
  padding: 10px 25px;
  border-radius: 5px;
}

header nav ul li.button a:hover {
  text-decoration: none;
  background: var(--clr-link);
  color: white;
  transition: .3s;
  transition-property: background, color;
}

/* end nav  */

.hamb {
  width: 40px;
  height: auto;
  cursor: pointer;
}

.hamb span {
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
  background-color: var(--clr-text);
}

.hamb span.mid {
  margin: 7px 0;
}

/* end header  */

.banner {
  padding-top: 30px;
  padding-bottom: 170px;
  position: relative;
  z-index: 1;
}

.banner .our-slogan {
  min-width: 500px;
  margin-bottom: 50px;
}

.banner .our-slogan .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-right: 30%;
}

.banner .our-slogan .smalltalk {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.banner .our-slogan .btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  background-color: #ff6916;
  border-radius: 5px;
  padding: 10px 35px;
  border: 2px solid transparent;
}

.banner .our-slogan .btn:hover {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-link);
  background-color: var(--white);
  border: 2px solid var(--clr-link);
  transition-duration: .3s;
  transition-property: background-color, color, border;
}

.banner .placeholder {
  width: 75%;
  position: absolute;
  bottom: 0;
  right: 3%;
  z-index: -1;
}