html {
  overflow-x: hidden;
}
body {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow-x: hidden;
  background: #fff;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 11px;
}
::-moz-selection {
  background: #fff;
  text-shadow: none;
}
::selection {
  background: #fff;
  text-shadow: none;
}
* {
  box-sizing: border-box;
}
*:before,
*:after { 
  box-sizing: border-box;
}
.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1024px;
  display: flex;
}
.left {
  float: left;
}
.right {
  float: right;
}
section {
  padding: 40px 0;
}
hr {
  display: block;
  width: 70%;
  padding: 0;
  margin: 30px 0px;
  border-top: 1px solid #D1D1D1;
}
img {
  width: 100%;
  height: auto;
}
.mobile-only {
  display: none;
}
h1,
h3 {
  font-family: Merriweather-Bold, Georgia, 'Times New Roman', Times, serif, sans-serif;
  text-align: center;
  margin: 0 auto;
}
h2, h4, h5, p {
  font-family: 'Open Sans', Arial, sans-serif;
  text-align: center;
}
h1 {
  font-size: 48px;
  line-height: 51px;
  margin-bottom: 10px;
}
h2 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  margin: 0 auto;
}
h3, h4 {
  font-size: 36px;
  margin-bottom: 20px;
}
h4 {
  font-weight: 400;
}
h5 {
  font-size: 14px;
  font-weight: 600;
  color: #323232;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  margin: 0 0 5px 0;
}
p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #747474;
  margin: 0 auto;
}
a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
a.hot-link {
  position: absolute;
  width: 100%;
  height: inherit;
  display: block;
}
a:focus,
a:active {
  outline: none;
}
.dark-grey {
  color: #323232;
}
.grey {
  color: #747474;
}
.white {
  color: #fff;
}
.one-third {
  width: 33.33%;
  padding: 0 2%;
  float: left;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  column-gap: normal;
}
.column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.row {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.material-icons {
  font-size: 40px !important;
  margin: 0 0 5px 0;
  color:#919191;
}
/* ==========================================================================
   Nav
   ========================================================================== */
nav {
  width: 100%;
  height: 54px;
  margin: 0 auto;
  text-transform: uppercase;
  background: #7E8187;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0.73px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
nav a {
  padding: 20px;
  box-sizing: unset;
  display: flex;
  align-items: center;
}
nav .logo {
  height: 22px;
  width: 137px;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

header {
  background-image: url(../img/header.jpg);
}
header, #section-02 {
  height: calc(100vh - 54px);
  width: 100vw;
  text-align: center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-position-x: center;
}
header .container, #section-02 .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#section-02 {
  background-image: url(../img/section-02.jpg);
}
#section-03 {
  background-color: #F6F6F6;
}
#section-04 {
  padding: 20px 0;
}
.container:after {
  content: "";
  display: table;
  clear: both;
}
img.mobile-phone {
  width: 100%;
  max-width: 200px;
}
header a.hot-link {
  background-color: rgba(0,0,0,.22);
}
#section-02 a.hot-link {
  background-color: rgba(0,0,0,.3);
  margin-top: -40px;
}
/* ==========================================================================
   Buttons
   ========================================================================== */
a.btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  color: #000;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  background-color: #90EEAD;
  background: #90EEAD;
  margin: 15px auto;
}
a.btn:hover {
  background-color: #AFFFC8;
  background: #AFFFC8;
}
a.btn.big {
  font-size: 16px;
  padding: 12px 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  clear: both;
  background: #000;
  padding: 20px;
}
footer p {
  font-family: 'Open Sans', Arial, sans-serif;
}
footer a {
  color: #747474;;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 760px) {
  section {
    padding: 30px 0px;
  }
  .row {
    flex-direction: column;
  }
  .one-third {
    width: 70%;
    min-width: 270px;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  header, #section-02 {
    height: 260px;
  }
  header .container {
    top: 56%;
  }
  #section-03 .one-third{
    margin-top: 20px;
  }
  #section-02 a.hot-link {
    margin-top: -30px;
  }
  h1 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  h2 {
    width: 60%;
    min-width: 200px;
  }
  h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 24px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 365px) {
  h1 {
    font-size: 24px;
    line-height: 24px;
  }
  h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 340px) {
  .container {
    width: 80%;
  }
}
