:root {
  --dark-blue: #031e38;
  --light-blue: #3480bd;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: sans-serif;
  font-family: "Titillium Web", sans-serif;
}

.slide {
  transform: translateX(-300px);
  opacity: 0;
  transition: all ease 1.5s;
  z-index: -100;
  pointer-events: none;
  animation-delay: 5s;
}

.slide.active {
  transform: translateX(0);
  transition: all ease 1.5s;
  opacity: 1;
}

a {
  text-decoration: none;
}

.btn {
  border: solid 2px #f2f2f2;
  background: transparent;
  border-radius: 10rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #f2f2f2;
}
.btn a {
  color: #f2f2f2;
  transition: all 0.3s ease;
  padding: 1rem;
  font-weight: 600;
}

.btn:hover a {
  color: var(--dark-blue);
}

header {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.5s ease;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(3, 30, 56, 0.9);
}

.sticky + .home-content {
  margin-top: 100px;
}

.inner-header {
  max-width: 1920px;
  width: 95%;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-header a img {
  width: 150px;
  height: auto;
}

.inner-header nav ul {
  list-style-type: none;
}

.inner-header nav ul li {
  padding: 0.75rem 1rem;
  display: inline;
}
.inner-header nav ul li a {
  text-transform: uppercase;
  color: #f2f2f2;
  font-size: 1.125rem;
}
.inner-header nav ul li a:hover {
  opacity: 0.7;
}

.nav-toggler {
  display: none;
}

section {
  min-height: 100vh;
}

.home-section {
  z-index: -10;
  background: linear-gradient(rgb(0, 0, 0, 0.5), rgb(0, 0, 0, 0.5)),
    url(../images/bg-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.home-content {
  height: 500px;
  width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.home-content h1 {
  text-align: center;
  font-size: 5rem;
  color: #f2f2f2;
  line-height: 80px;
  padding: 1rem;
}

.home-content p {
  text-align: center;
  padding: 1rem;
  font-size: 2.5rem;
  line-height: 32px;
  color: #eeeeee;
}

.home-content .btn {
  height: 50px;
  width: 200px;
  margin-top: 3rem;
}

.sections {
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100%;
  width: 100%;
}

.section-title {
  text-transform: uppercase;
  font-size: 3rem;
  color: var(--dark-blue);
  line-height: 60px;
  padding: 2rem 0 0;
}

.inner-section {
  max-width: 1920px;
  min-height: 100vh;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-section-left,
.inner-section-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 80%;
}

.section-img {
  -webkit-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  width: 80%;
  height: 800px;
}
.intro-img {
  background: url(../images/section-img.jpg);
  background-size: cover;
}
.products-img {
  background: url(../images/products-img.jpg);
  background-size: cover;
}
.industries-img {
  background: url(../images/industries-img.jpg);
  background-size: cover;
}
.case-img {
  background: url(../images/case-studies-img.jpg);
  background-size: cover;
}

.section-text {
  -webkit-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
}

.section-text p,
.section-text ul li {
  font-size: 1.5rem;
  color: var(--dark-blue);
  padding: 1rem;
}
.products-section .inner-section,
.case-studies-section .inner-section {
  flex-direction: row-reverse;
}
.section-text ul {
  padding: 1rem;
  list-style-type: none;
}

.c-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
form {
  -webkit-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 70%;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-btn {
  margin: 1rem 0;
  cursor: pointer;
  border-color: var(--light-blue);
  color: var(--light-blue);
  width: 200px;
  height: 50px;
  font-weight: 600;
}

.contact-btn:hover {
  color: #f2f2f2;
  background-color: var(--light-blue);
}

.form-group {
  width: 70%;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.form-group label {
  color: var(--dark-blue);
  font-size: 1.575rem;
}
.form-group input,
.form-group textarea {
  border: none;
  background-color: rgba(100, 100, 100, 0.1);
  width: 100%;
  resize: none;
  height: 200px;
  padding: 0.5rem 1rem;
}

.form-group input {
  height: 50px;
}
