/* mobile first */
/* desktop first */
/*
@mixin breakpoint($point) {
    @if $point == desktop {
        @media screen and (max-width: $largedesktop) { @content; }
    }
    @else if $point == tablet {
        @media screen and (max-width: $desktop) { @content; }
    }
    @else if $point == mobile {
        @media screen and (max-width: $tablet) { @content; }
    }
    
} 
*/
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;500;600;700;900&display=swap");
.myButton {
  background-color: #2588EB;
  border: 1px solid #2588EB;
  display: inline-block;
  cursor: pointer;
  color: #FFFFFF;
  font-family: Arial;
  font-size: 21px;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px; }

.myButton:hover {
  background-color: rgba(37, 136, 235, 0.9); }

.myButton:active {
  position: relative;
  top: 1px; }

/* button go to top */
.btn-go-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #FFFFFF;
  color: #4D5058;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px; }

.btn-go-top:hover {
  background-color: rgba(255, 255, 255, 0.9); }

/*===  Global  ===*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Exo', sans-serif; }

.container {
  width: 100%;
  padding: 0 1.4rem;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .container {
      width: 1200px; } }
  @media (min-width: 1440px) {
    .container {
      width: 1300px; } }

.link-in-text {
  color: #2160a3;
  text-decoration: none; }

/*===  peekoutinc.com  ===*/
.page {
  display: flex;
  flex-direction: column; }

/*===  Main  ===*/
.main {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0;
  position: relative;
  height: 100%;
  padding: 0 0 50px; }
  @media (min-width: 992px) {
    .main {
      background-size: cover;
      height: 100vh; } }

.main-content {
  margin-top: 80px;
  text-align: right; }
  @media (min-width: 992px) {
    .main-content {
      margin-top: 80px; } }
  @media (min-width: 1440px) {
    .main-content {
      margin-top: 180px; } }

.main-content-title {
  font-size: 30px;
  font-weight: 700;
  color: #4D5058;
  margin-bottom: 25px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .main-content-title {
      font-size: 62px; } }
  @media (min-width: 1440px) {
    .main-content-title {
      font-size: 72px; } }
  .main-content-title span {
    display: block;
    margin-top: -10px; }
    @media (min-width: 992px) {
      .main-content-title span {
        margin-top: -20px; } }

.main-content-subtitle {
  font-size: 22px;
  font-weight: 300;
  color: #4D5058;
  text-transform: uppercase;
  width: 100%;
  margin-left: auto; }
  @media (min-width: 992px) {
    .main-content-subtitle {
      font-size: 32px;
      width: 45%; } }

.main-content-link {
  margin-top: 50px; }
  @media (min-width: 992px) {
    .main-content-link {
      margin-top: 100px; } }
  @media (min-width: 1440px) {
    .main-content-link {
      margin-top: 150px; } }

.link-ls {
  font-size: calc(1vw + 18px);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #4D5058;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  .link-ls img {
    padding-right: 16px;
    width: 50px;
    height: 20px; }

/*** Header ***/
.navbar {
  padding: 40px 0 0; }
  @media (min-width: 992px) {
    .navbar {
      padding: 20px 0 0; } }
  @media (min-width: 1440px) {
    .navbar {
      padding: 40px 0 0; } }

.navbar-logo-link img {
  width: 200px; }
  @media (min-width: 992px) {
    .navbar-logo-link img {
      width: auto; } }

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center; }

.navbar-item {
  margin: 0 0 0 25px;
  width: 100%;
  white-space: nowrap; }

.navbar-link {
  color: #4D5058;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4em 0;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1.2px;
  position: relative; }

.navbar-link:focus,
.navbar-link:hover {
  color: #4D5058; }

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto; }
  @media (min-width: 992px) {
    .navbar-toggle {
      display: none; } }

.navbar-toggle-wrapper {
  width: 100%; }

.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  transition: background-color 0.2s ease-in-out,  transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  background-color: #2588EB;
  border: 2px solid #2588EB; }

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #2588EB;
  border: none;
  outline: none; }

.navbar.opened .navbar-toggle .icon-bar:first-child,
.navbar.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px; }

.navbar.opened .navbar-toggle .icon-bar:first-child {
  transform: rotate(45deg); }

.navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0; }

.navbar.opened .navbar-toggle .icon-bar:last-child {
  transform: rotate(-45deg); }

.navbar .navbar-menu,
.navbar.opened .navbar-menu {
  opacity: 1;
  visibility: visible; }
  @media (min-width: 992px) {
    .navbar .navbar-menu,
    .navbar.opened .navbar-menu {
      position: static;
      display: block;
      height: 100%; } }

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
  @media (min-width: 992px) {
    .navbar-links {
      margin: 0;
      padding: 0;
      box-shadow: none;
      position: static;
      flex-direction: row;
      list-style-type: none;
      max-height: max-content;
      width: 100%;
      height: 100%; } }

.navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
  background-color: #FFFFFF; }
  @media (min-width: 992px) {
    .navbar.opened .navbar-links {
      margin: 0;
      padding: 0;
      box-shadow: none;
      position: static;
      flex-direction: row;
      list-style-type: none;
      max-height: max-content;
      width: 100%;
      height: 100%; } }

.navbar.opened .navbar-link {
  color: #2588EB; }

.navbar.opened .navbar-item {
  margin: 0; }

.navbar .navbar-toggle:focus,
.navbar.opened .navbar-toggle:focus {
  outline: none; }

/*===  Service  ===*/
.section-service {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100%; }
  @media (min-width: 992px) {
    .section-service {
      height: 100vh; } }

.service-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px; }

.service-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .service-title {
      font-size: 56px; } }
  @media (min-width: 1440px) {
    .service-title {
      font-size: 76px; } }

.service-subtitle {
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .service-subtitle {
      font-size: 25px; } }
  @media (min-width: 1440px) {
    .service-subtitle {
      font-size: 32px; } }

.service-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  grid-gap: 30px;
  margin-top: 20px; }
  @media (min-width: 992px) {
    .service-content {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 100px;
      padding: 0 50px; } }
  @media (min-width: 1440px) {
    .service-content {
      padding: 0 150px; } }

.service-content-item {
  border: 2px solid #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px; }

.service-content-item-img {
  position: relative; }

.icon-img {
  width: 100%; }

.services-content-item-text {
  margin-top: 20px;
  color: #FFFFFF;
  text-align: center; }

.service-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .service-item-title {
      font-size: 18px; } }
  @media (min-width: 1440px) {
    .service-item-title {
      font-size: 21px; } }

.service-content-item:nth-child(4) .service-item-title {
  padding: 0 20px; }

.service-item-subtitle {
  padding-top: 10px;
  font-size: 14px; }

/*===  About Us  ===*/
.section-aboutus {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100%; }
  @media (min-width: 992px) {
    .section-aboutus {
      height: 100vh; } }

.aboutus-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px; }

.img-clock {
  padding-bottom: 20px;
  width: 150px; }
  @media (min-width: 992px) {
    .img-clock {
      width: auto;
      padding-bottom: 30px; } }
  @media (min-width: 1440px) {
    .img-clock {
      width: auto;
      padding-bottom: 120px; } }

.aboutus-title {
  font-size: 46px;
  font-weight: 700;
  color: #4D5058;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .aboutus-title {
      font-size: 56px; } }
  @media (min-width: 1440px) {
    .aboutus-title {
      font-size: 76px; } }

.aboutus-subtitle {
  font-size: 32px;
  font-weight: 500;
  color: #4D5058;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .aboutus-subtitle {
      font-size: 25px; } }
  @media (min-width: 1440px) {
    .aboutus-subtitle {
      font-size: 32px; } }

.aboutus-des {
  font-size: 18px;
  font-weight: 300;
  color: #4D5058;
  margin-top: 30px;
  width: 100%; }
  @media (min-width: 992px) {
    .aboutus-des {
      font-size: 25px;
      margin-top: 30px;
      width: 80%; } }
  @media (min-width: 1440px) {
    .aboutus-des {
      font-size: 32px;
      margin-top: 80px;
      width: 80%; } }

/*===  F.A.Q  ===*/
.section-faq {
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  position: relative;
  height: 100%; }
  @media (min-width: 992px) {
    .section-faq {
      background-position: center;
      height: 100vh; } }

.faq-wrapper {
  padding-top: 50px;
  padding-bottom: 50px; }

.faq-title {
  font-size: 46px;
  font-weight: 700;
  text-align: left;
  color: #4D5058;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .faq-title {
      font-size: 56px; } }
  @media (min-width: 1440px) {
    .faq-title {
      font-size: 76px; } }

.faq-subtitle {
  font-size: 21px;
  font-weight: 500;
  text-align: left;
  color: #4D5058;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .faq-subtitle {
      font-size: 25px; } }
  @media (min-width: 1440px) {
    .faq-subtitle {
      font-size: 32px; } }

.faq-content {
  margin-top: 20px; }

.faq-content-item {
  padding: 10px 0 0;
  width: 100%; }
  @media (min-width: 992px) {
    .faq-content-item {
      width: 50%; } }
  @media (min-width: 1440px) {
    .faq-content-item {
      padding: 25px 0 0; } }

.faq-content-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #4D5058;
  margin-bottom: 5px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .faq-content-item-title {
      font-size: 18px; } }
  @media (min-width: 1440px) {
    .faq-content-item-title {
      font-size: 23px; } }

.faq-content-item-des {
  font-size: 12px;
  font-weight: 400;
  color: #4D5058; }
  @media (min-width: 992px) {
    .faq-content-item-des {
      font-size: 14px; } }
  @media (min-width: 1440px) {
    .faq-content-item-des {
      font-size: 15px; } }

/*===  Contact  ===*/
.section-contact {
  padding: 50px 0; }

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px; }
  @media (min-width: 992px) {
    .contact-content {
      flex-direction: row; } }

.contact-content-image {
  width: 100%; }
  @media (min-width: 992px) {
    .contact-content-image {
      width: 35%; } }
  .contact-content-image .icon-img {
    width: auto; }

.contact-content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #4D5058;
  width: 100%; }
  @media (min-width: 992px) {
    .contact-content-text {
      width: 65%; } }

.contact-content-title {
  font-size: 46px;
  font-weight: 700;
  padding-bottom: 20px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .contact-content-title {
      font-size: 56px; } }
  @media (min-width: 1440px) {
    .contact-content-title {
      font-size: 76px; } }

.contact-content-text {
  font-size: 16px;
  font-weight: 400;
  color: #4D5058; }
  .contact-content-text .link-in-text {
    color: #4D5058; }
  @media (min-width: 992px) {
    .contact-content-text {
      font-size: 21px; } }
  @media (min-width: 1440px) {
    .contact-content-text {
      font-size: 25px; } }

.contact-content-link {
  margin-top: 50px; }

/**************************************
******** section - Footer *************
***************************************/
.section-footer {
  background-color: #ebebeb;
  padding: 35px 0; }

.footer-content {
  text-align: center;
  color: #4D5058;
  font-size: 13px;
  letter-spacing: 0.5px; }
  .footer-content span {
    font-weight: 600; }
