/*
0-600px :      Phone
601-900px :    Tablet Portrait
900-1200px :   Tablet Landscape
[1200-1800px]:  standard styles
1800px + :     Big desktop

$breakpoint argument choices
-phone
-tab-port
-tab-land
-bigdesktop

1em= 16 pixels

600 / 16 = 37.5em .eg

*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,900&display=swap");
:root {
  --color-primary: hsl(35, 95%, 61%);
  --color-primary--dark: hsl(35, 95%, 50%);
  --color-secondary: hsl(0, 0%, 20%);
  --color-secondary--dark: hsl(0, 0%, 15%);
  --text-dark: rgb(100, 100, 100);
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

@media (max-width: 75em) {
  html {
    font-size: 56.25;
  }
}

@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.6rem;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.header {
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3))), url(../img/theme-photos-Klby0nxseY8-unsplash-small-min.jpg);
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/theme-photos-Klby0nxseY8-unsplash-small-min.jpg);
  background-size: cover;
  /*always trys to fit screen*/
  background-position: bottom;
  /*keeps top the same if cropped*/
  position: relative;
  margin-bottom: 10rem;
}

@media (max-width: 37.5em) {
  .header {
    margin-bottom: 4rem;
  }
}

.header:not(.sticky) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.header__contents {
  max-width: 114rem;
  height: 100vh;
  margin: 0 auto;
  position: relative;
}

.hero-text-box {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media (max-width: 75em) {
  .hero-text-box {
    width: 100%;
    left: 9.5%;
  }
}

@media (max-width: 37.5em) {
  .hero-text-box {
    width: 80%;
    top: 35%;
  }
}

h1 {
  font-size: 5rem;
  padding: 0 0 1rem 0;
  font-weight: 300;
  color: #fff;
}

@media (max-width: 75em) {
  h1 {
    font-size: 3rem;
    margin: 0 auto;
  }
}

@media (max-width: 37.5em) {
  h1 {
    font-size: 4rem;
    font-weight: 300;
  }
}

h2 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 230%;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

h2:after {
  display: block;
  height: 2px;
  background-color: var(--color-primary);
  content: ' ';
  width: 10rem;
  margin: 0 auto;
  margin-top: 3rem;
}

h3 {
  font: size 110%;
  margin-bottom: 15px;
}

h3 span {
  color: var(--color-primary);
}

.contact {
  margin-bottom: 5rem;
}

.pageBreak {
  width: 70%;
  margin: 15px 0px;
  height: 0px;
  padding: 0px;
  border-width: 1px 0px 1px 0;
  border-style: solid;
  border-top-color: #f1f1f1;
  border-right-color: transparent;
  border-bottom-color: white;
  border-left-color: transparent;
  overflow: visible;
  margin: 10rem auto;
}

@media (max-width: 37.5em) {
  .pageBreak {
    margin: 5rem auto;
  }
}

/*--------------------------
Buttons
---------------------------*/
/* Remove blue highlight on select-- mobiles */
button,
textarea,
input,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:link,
.btn:visited {
  display: inline-block;
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 200px;
  -webkit-transition: background-color 1s, border 1s, color 1s;
  transition: background-color 1s, border 1s, color 1s;
}

.btn-full:link,
.btn-full:visited {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
  margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn:hover,
.btn:active,
input[type='submit']:hover,
input[type='submit']:active {
  background-color: var(--color-primary);
}

.btn-full:hover,
.btn-full:active {
  border: 1px solid var(--color-primary--dark);
}

.btn-ghost:hover,
.btn-ghost:active {
  border: 1px solid var(--color-primary);
  color: #fff;
}

.icon__big {
  font-size: 6rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media (max-width: 37.5em) {
  .contact__header {
    width: 80%;
  }
}

.contact__form {
  width: 80%;
}

@media (max-width: 75em) {
  .contact__form {
    width: 100%;
  }
}

.contact__messages {
  color: #fff;
  width: 40%;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}

@media (max-width: 37.5em) {
  .contact__messages {
    width: 60%;
  }
}

.contact__messages--error {
  background-color: red;
}

.contact__messages--success {
  background-color: #01c801;
}

.contact__submit input {
  width: 40%;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
  padding: 1rem 3rem;
  font-weight: 300;
  text-decoration: none;
  border-radius: 0.5rem;
  -webkit-transition: background-color 1s, border 1s, color 1s;
  transition: background-color 1s, border 1s, color 1s;
}

@media (max-width: 37.5em) {
  .contact__submit input {
    width: 60%;
  }
}

input[type='text'],
input[type='email'],
textarea {
  font-family: inherit;
  font-size: 1.6rem;
  width: 40%;
  padding: 1rem;
  border-radius: 3px;
  border: 1px solid #ccc;
  margin: 10px 0;
}

@media (max-width: 37.5em) {
  input[type='text'],
  input[type='email'],
  textarea {
    width: 60%;
  }
}

textarea {
  font-family: inherit;
  font-size: 1.6rem;
  resize: none;
}

.footer {
  width: 100%;
  height: 20rem;
  background-color: var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5rem;
}

.footer__top {
  width: 60%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__nav li {
  font-size: 2rem;
  display: inline-block;
  margin-right: 2rem;
}

.footer__nav li a:link,
.footer__nav li a:visited {
  text-decoration: none;
  border: none;
  color: var(--text-dark);
}

.footer__nav li a:hover {
  color: #888;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer__social li {
  font-size: 3rem;
  display: inline-block;
  margin-right: 1rem;
}

.footer__social li a:link,
.footer__social li a:visited {
  text-decoration: none;
  border: none;
  color: var(--text-dark);
}

.footer__social li a:hover {
  color: #888;
  -webkit-transition: color 0.8s;
  transition: color 0.8s;
}

.footer__rights {
  color: var(--text-dark);
}

.designedBy {
  margin-top: 1rem;
}

.designedBy a {
  color: var(--text-dark);
  text-decoration: none;
}

.designedBy a:hover {
  color: #888;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding: 3rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__logo, .nav__logo--black {
  cursor: pointer;
  height: 6rem;
  margin-right: auto;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  z-index: 120;
}

@media (max-width: 75em) {
  .nav__logo, .nav__logo--black {
    margin: 0 auto;
  }
}

@media (max-width: 37.5em) {
  .nav__logo, .nav__logo--black {
    height: 5rem;
    margin-left: 1.5rem;
  }
}

.nav__logo--black {
  display: none;
}

.nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 75em) {
  .nav__buttons {
    margin: 0 auto;
  }
}

.nav__buttons.nav__active {
  overflow: hidden;
  max-height: 20rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 37.5em) {
  .nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 0;
    overflow: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
}

.nav__buttons li {
  font-size: 2rem;
  font-weight: 300;
  list-style: none;
}

.nav__buttons li:not(:last-child) {
  margin-right: 8rem;
}

@media (max-width: 37.5em) {
  .nav__buttons li {
    margin: 0 2rem;
  }
}

.nav__buttons li a:link,
.nav__buttons li a:visited {
  color: #fff;
  padding: 0.8rem 0;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-bottom 0.2s;
  transition: border-bottom 0.2s;
}

@media (max-width: 37.5em) {
  .nav__buttons li a:link,
  .nav__buttons li a:visited {
    border: none;
  }
}

.nav__buttons li a:hover,
.nav__buttons li a:active {
  border-bottom: 2px solid var(--color-primary);
}

@media (max-width: 37.5em) {
  .nav__buttons li a:hover,
  .nav__buttons li a:active {
    border: none;
  }
}

.nav__icon {
  cursor: pointer;
  color: #fff;
  display: none;
  font-size: 5rem;
  width: 5rem;
  height: 5rem;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

@media (max-width: 37.5em) {
  .nav__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 4rem;
  }
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  z-index: 90;
}

.sticky .nav__icon {
  color: #555;
}

.sticky .nav__logo {
  display: none;
}

.sticky.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sticky .nav__logo--black {
  display: block;
  margin: 0 auto;
  height: 5rem;
}

.sticky .nav__buttons {
  margin: 0 auto;
}

.sticky .nav__buttons li a:link,
.sticky .nav__buttons li a:visited {
  color: #555;
  padding: 1.7rem 0;
}

.sticky .nav__buttons li a:hover,
.sticky .nav__buttons li a:active {
  border-bottom: 3px solid var(--color-primary);
  z-index: 120;
}

@media (max-width: 37.5em) {
  .sticky .nav__buttons li a:hover,
  .sticky .nav__buttons li a:active {
    border-bottom: none;
  }
}

.services {
  max-width: 114rem;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

.services__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 37.5em) {
  .services__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.services__header {
  margin-bottom: 4rem;
}

.services__box {
  margin: 2rem;
  width: 80%;
}

.testimonial {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonial__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 37.5em) {
  .testimonial__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.testimonial__quote {
  position: absolute;
  top: 0;
  left: 0;
  color: #dddddd;
  font-size: 5rem;
  z-index: 5;
  padding: 1rem;
}

.testimonial__text {
  margin: 1rem 0;
  padding: 3rem 1rem;
  z-index: 10;
}

.testimonial__name {
  margin: -1rem 0 0 0;
  color: var(--color-primary);
}

.testimonial__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fbfbfb;
  border-radius: 0.25rem;
  width: 15%;
  height: 30rem;
  margin: 5rem;
  -webkit-box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 50;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media (max-width: 75em) {
  .testimonial__card {
    width: 20%;
  }
}

@media (max-width: 37.5em) {
  .testimonial__card {
    width: 60%;
  }
}
/*# sourceMappingURL=main.css.map */