@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

h1,
h2 {
  font-weight: 300;
  line-height: 1.2;
}

p {
  margin: 10px 0;
}

img {
  width: 100%;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #f3f3f3; */
  /* color: #000; */
  background-color: #f4f4f4;
  color: rgb(3, 118, 255);
  opacity: 0.8;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0px;
  padding: 0 30px;
}

.navbar a {
  /* color: #fff; */
  color: rgb(3, 118, 255);
  padding: 10px 15px;
  margin: 0 2px;
}

.navbar a:hover {
  border-bottom: #fff 2px solid;
  /* border-bottom: rgb(3, 118, 255) 2px solid; */
}

.navbar ul {
  display: flex;
}

.navbar .logo {
  font-weight: 400;
}

.navbar img {
  width: 150px;
  height: 100px;
}

/* Header */
.hero {
  background: url('./images/cleanedLR.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: #fff;
  border-bottom: 20px #333 solid;
}

.hero .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 0 20px;
}

.hero .content h1 {
  font-size: 55px;
}

.hero .content p {
  font-size: 23px;
  max-width: 600px;
  margin: 20px 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero * {
  z-index: 10;
}

/* .separator {
  background-image: url(images/separator.svg);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
} */

.about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem;
  margin: auto;

}

.about img {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
}

.samples img {
  width: 100%;
  height: 100%;
  padding: 10px;
}

/* 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 .btn {
  padding: 12px 0;
  margin-top: 20px;
}


/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100px;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #28a745;
}

.footer .social>* {
  margin-right: 30px;
}

/* Mobile */

/* @media(max-width: 1024px) {
  .logo {
    font-size: 1.2em;
  }
} */

@media(max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: 120px;
    padding: 20px;
  }

  .navbar a {
    padding: 10px 10px;
    margin: 0 3px;
  }

  .about,
  .samples {
    display: flex;
    flex-direction: column;
  }

  .flex-columns .column {
    flex: 100%;
    max-width: 100%;
  }
}