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

body {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: blue;
}

::-webkit-scrollbar {
  background: #444;
  width: 1em;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3em;
}

.nav_btn {
  position: fixed;
  box-shadow: 0 1em 1em rgba(0, 0, 0, 0.5);
  background: #fff;
  width: 4em;
  height: 4em;
  border-radius: 4em;
  color: #000;
  z-index: 1500;
  border: solid 1px #fff;
  cursor: pointer;
  outline: none;
  top: 3em;
  left: 90%;
  transition: 0.4s;
}

.nav_btn:hover {
  top: 3.5em;
  box-shadow: 0 .5em .5em rgba(0, 0, 0, 0.5);
}

.header {
  animation-name: scale_nav;
  animation-duration: .6s;
  animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);
  transform: scale(1.1, 1.1);
  position: fixed;
  background: rgba(52, 73, 94, 1);
  padding: 5.5em;
  display: none;
  z-index: 1000;
  height: 100%;
  width: 100%;
}

.logo_title {
  position: relative;
  left: 5em;
  font-size: 2em;
  color: #fff;
  font-style: italic;
}

.header_nav {
  text-align: center;
}

.link {
  margin: 1.9em auto;
  font-size: 1.4em;
  color: #fff;
  padding: 2em 3em;
  border-bottom: solid 1px rgba(230, 126, 34, 1);
  clip-path: polygon(0 0, 0 90%, 100% 100%, 100% 10%);

  transition: .4s;
  display: block;
  width: 20%;
}

.link:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(230, 126, 34,1.0);
  border-bottom: solid 1px #fff;
}

.services_container {

}

.services_header {
  background: url("assets/back_2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  clip-path: polygon(0 0, 0 100%, 100% 90%, 100% 0);
}

.header_caption {
  text-align: center;
  color: #fff;
  position: relative;
  top: 20em;
  line-height: 5em;
}

.header_caption h1 {
  font-weight: lighter;
  font-size: 5.3em;
  letter-spacing: 2px;
}

.header_caption p {
  font-size: 1.7em;
  font-style: italic;
  letter-spacing: 1px;
}

.header_caption a {
  text-decoration: none;
  color: #fff;
  background: coral;
  padding: 2em 5em;
  position: relative;
  top: 3em;
  font-size: 1.2em;
  transition: .4s;
}

.header_caption a:hover {
  color: coral;
  background: #fff;
}

.showcase_header {
  font-size: 3em;
  text-align: center;
  font-weight: lighter;
  letter-spacing: 2px;
  margin: 2em auto;
}

hr {
  width: 30%;
  margin: auto;
  background: coral;
}

.something {
  width: 99%;
  margin: auto;
  text-align: center;
}

.serve_box {
  display: inline-block;
  width: 20%;
  padding: 2em;
  margin: 2em 1.2em;
  margin-left: 1.5em;
  background: #888;
  box-shadow: 0 1em 2em rgba(0, 0, 0, 0.8);
  transition: .6s;
}

.serve_box:hover {
  position: relative;
  transform: translateY(1em);
  box-shadow: 0 .1em .1em rgba(0, 0, 0, 0.5);
}

.price {
  text-align: center;
  padding: 2em;
}

.serve_box a {
  text-align: center;
  color: #fff;
  background: coral;
  padding: .5em 4em;
  position: relative;
  top: 1em;
  left: 1em;
  border-radius: 4em;
  transition: .4s;
  font-size: 1.3em;
}

.serve_box a:hover {
  color: coral;
  background: #fff;
}

.serve_box h2 {
  font-size: 2em;
  text-align: center;
}

.serve_box p {
  font-size: 1.3em;
  font-weight: bold;
}

.serve_1 {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
}

.serve_1 a,
.serve_3 a {
  background: rgba(25, 42, 86, 1);
}

.serve_2 {
  background: linear-gradient(to bottom, #373b44, #4286f4);
  color: #fff;
}

.serve_3 {
  background: linear-gradient(to right, #fd746c, #ff9068);
}

.serve_4 {
  background: linear-gradient(to top, #000046, #1cb5e0);
  color: #fff;
}

.disclaimer {
  text-align: center;
  background: #888;
  clip-path: polygon(0 0, 0 85%, 100% 100%, 100% 15%);
  color: #fff;
  padding: 6em;
  font-size: 1.2em;
  margin: 5em auto;
}

.footer {
  background: #333;
  color: #fff;
  padding: 3em;
  line-height: 2em;
  font-size: 1.4em;
  margin-top: 4em;
  background: rgba(44, 62, 80, 1);
}

.footer h2 {
  border-bottom: solid 1px #fff;
  width: 25%;
  font-weight: lighter;
}

ul {
  list-style-type: none;
}

ul img {
  padding-right: 1em;
}

ul li {
  border-bottom: solid 1px #000;
  padding: 1em;
  text-align: left;
  font-size: 1.8em;
}

@keyframes scale_nav {
  0% {
    width: 0;
    height: 0;
  }

  100% {
    width: 100%;
    height: 100%;
  }
}
