/* 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(http://fonts.googleapis.com/css?family=Poppins:wght@300,400,500,600,700,800);
.myButton {
  background-color: #F25A3F;
  border: 1px solid #F25A3F;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none; }

.myButton:hover {
  background-color: rgba(242, 90, 63, 0.8); }

.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: #F5A241;
  color: #ffffff;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px; }

.btn-go-top:hover {
  background-color: #F5A241; }

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

html {
  scroll-behavior: smooth; }

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

.container {
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .container {
      max-width: 1210px;
      padding: 0; } }
  @media (min-width: 1440px) {
    .container {
      max-width: 1510px; } }

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

/*===  Main  ===*/
.main-wrapper {
  padding: 85px 0;
  position: relative; }

.main-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 20px; }
  @media (min-width: 992px) {
    .main-content {
      flex-direction: row;
      padding: 0; } }

@media (min-width: 992px) {
  .main-content-text {
    margin-left: calc((100vw - 1200px)/2);
    width: 40%; } }

@media (min-width: 1440px) {
  .main-content-text {
    margin-left: calc((100vw - 1510px)/2); } }

.main-content-title {
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 600;
  color: #393939;
  margin-bottom: 25px; }
  @media (min-width: 992px) {
    .main-content-title {
      font-size: 50px; } }
  @media (min-width: 1440px) {
    .main-content-title {
      font-size: 70px; } }
  .main-content-title span {
    display: block; }

.main-content-subtitle {
  font-size: 21px;
  color: #393939;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7; }
  .main-content-subtitle span {
    display: block; }

.main-content-image {
  margin-right: 2%;
  width: 100%; }
  @media (min-width: 992px) {
    .main-content-image {
      width: 60%; } }
  .main-content-image img {
    width: 100%; }
    @media (min-width: 1440px) {
      .main-content-image img {
        width: initial; } }

/*** Header ***/
.navbar {
  padding: 15px 0; }

.navbar-container {
  display: grid;
  grid-template-columns: auto 1fr;
  height: 100%;
  align-items: center; }

.navbar-item {
  margin: 60px 21px 0;
  width: 100%;
  white-space: nowrap; }
  .navbar-item a.myButton {
    font-size: 18px;
    padding: 10px 16px; }

.navbar-link {
  color: #2d2d2d;
  text-decoration: none;
  display: flex;
  font-size: 16px;
  font-weight: 300;
  align-items: center;
  justify-content: center;
  width: 100%; }

li.navbar-item:first-of-type a.navbar-link {
  color: #000000;
  font-weight: 600;
  border-bottom: 2px solid #F25A3F; }

.navbar-link:focus,
.navbar-link:hover {
  color: #2E5342; }

.navbar-logo-link {
  margin-left: 0px; }

.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%;
  padding: 0 0 0 20px; }
  @media (min-width: 992px) {
    .navbar-toggle-wrapper {
      display: none; } }

.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: #000000;
  border: 2px solid #2E5342; }

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #2E5342;
  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;
  z-index: 3; }
  @media (min-width: 992px) {
    .navbar .navbar-menu,
    .navbar.opened .navbar-menu {
      position: static;
      display: block;
      height: 100%; } }

.navbar-menu {
  justify-self: right; }

.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-links .navbar-item:last-child a.navbar-link {
  color: #FFFFFF; }
  @media (min-width: 992px) {
    .navbar-links .navbar-item:last-child a.navbar-link {
      margin: 0 0 0 25px; } }

.navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
  background-color: #2E5342; }
  @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: #ffffff; }

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

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

.navbar-live-support {
  display: none; }
  @media (min-width: 992px) {
    .navbar-live-support {
      display: block; } }

/*===  Support  ===*/
.section-support {
  padding: 50px 0 85px; }

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 992px) {
    .support-content {
      flex-direction: row; } }

.support-text {
  width: 100%;
  padding-right: 30px; }
  @media (min-width: 992px) {
    .support-text {
      width: 30%; } }

.support-title {
  color: #232227;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  position: relative; }
  .support-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 20px;
    background-color: #2E5342;
    bottom: -30px;
    left: 0; }

.support-items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  width: 100%;
  padding-top: 50px; }
  @media (min-width: 992px) {
    .support-items {
      grid-template-columns: 1fr 1fr;
      padding-top: 0;
      width: 70%; } }
  @media (min-width: 1440px) {
    .support-items {
      grid-template-columns: 1fr 1fr 1fr; } }

.support-item {
  border: 2px solid #2E5342;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  padding: 30px; }

.support-item-header {
  display: flex;
  align-items: center;
  padding: 10px 0; }

.support-item-title {
  color: #232227;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 20px; }

.support-item-des {
  color: #232227;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7; }

/*===  Service  ===*/
.section-service {
  padding: 70px 20px; }
  @media (min-width: 992px) {
    .section-service {
      padding: 70px 0; } }

.service-title {
  color: #232227;
  font-size: 50px;
  font-weight: 700;
  text-align: center; }

.service-subtitle {
  color: #232227;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  padding: 0 10px; }
  @media (min-width: 992px) {
    .service-subtitle {
      padding: 0 140px; } }

.service-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  grid-gap: 10px;
  padding-top: 30px; }
  @media (min-width: 992px) {
    .service-content {
      grid-template-columns: repeat(3, 1fr); } }

.service-content-item {
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px; }
  @media (min-width: 992px) {
    .service-content-item {
      padding: 40px; } }

.service-content-item:nth-child(2) {
  background-color: #F25A3F; }
  .service-content-item:nth-child(2) .services-content-item-text {
    color: #FFFFFF; }

.service-content-item-img {
  position: relative;
  max-height: 120px;
  height: 100%; }

.icon-img {
  width: 100%; }

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

.service-item-title {
  font-size: 18px;
  font-weight: 600; }
  @media (min-width: 992px) {
    .service-item-title {
      font-size: 21px; } }
  @media (min-width: 1440px) {
    .service-item-title {
      font-size: 40px; } }

.service-item-subtitle {
  padding-top: 20px;
  line-height: 1.9;
  font-size: 18px;
  font-weight: 100; }

/*===  About Us  ===*/
.section-aboutus {
  background-color: #F8F8F8;
  padding: 50px 0; }

.aboutus_wrapp {
  padding: 0 10px; }
  @media (min-width: 992px) {
    .aboutus_wrapp {
      padding: 0 100px; } }

.aboutus-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px; }
  @media (min-width: 992px) {
    .aboutus-content {
      grid-template-columns: 1fr 1fr;
      grid-gap: 50px;
      padding: 50px 0; } }

.aboutus-content-title {
  color: #393939;
  font-size: 50px;
  font-weight: 600;
  text-align: center; }

.aboutus-content-text-des {
  color: #393939;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 300; }
  @media (min-width: 992px) {
    .aboutus-content-text-des {
      font-size: 15px;
      line-height: 1.7; } }
  @media (min-width: 1440px) {
    .aboutus-content-text-des {
      font-size: 18px; } }
  .aboutus-content-text-des span {
    font-weight: 600;
    display: block;
    color: #F25A3F;
    text-decoration: underline; }

@media (min-width: 992px) {
  .aboutus-content-text-des:nth-child(1) {
    padding-right: 110px; } }

.aboutus-content-image img {
  width: 100%; }

/*===  Live Support  ===*/
.section-live-support {
  background-color: #F8F8F8;
  padding: 10px 0; }

.live-support-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column; }
  @media (min-width: 992px) {
    .live-support-content {
      flex-direction: row;
      padding: 50px 100px; } }

.live-support-text {
  display: flex;
  flex-direction: column; }

.live-support-title {
  color: #393939;
  font-size: 38px;
  font-weight: 600;
  position: relative; }
  @media (min-width: 992px) {
    .live-support-title {
      font-size: 50px; } }

.live-support-des {
  color: #393939;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 300;
  margin-top: 30px;
  width: 100%; }
  @media (min-width: 992px) {
    .live-support-des {
      font-size: 15px;
      line-height: 1.5; } }
  @media (min-width: 1440px) {
    .live-support-des {
      font-size: 18px; } }

/*===  Testimonial  ===*/
.section-testimonial {
  padding: 50px 0 100px; }

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center; }

.testimonial-title {
  color: #232227;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  position: relative; }

.testimonial-items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 70px;
  padding-top: 30px; }
  @media (min-width: 992px) {
    .testimonial-items {
      grid-template-columns: 1fr 1fr;
      grid-gap: 20px; } }

.testimonial-item {
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding: 70px;
  position: relative;
  margin-top: 100px; }
  .testimonial-item:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #F8F8F8;
    position: absolute;
    left: 11%;
    bottom: -25px; }
  @media (min-width: 992px) {
    .testimonial-item {
      margin-top: 0; } }

.testimonial-item:nth-child(2) {
  background-color: #F25A3F; }
  .testimonial-item:nth-child(2) .testimonial-item-des {
    color: #FFFFFF; }
  .testimonial-item:nth-child(2):after {
    border-top: 30px solid #F25A3F; }

.testimonial-item-icon {
  padding-bottom: 20px; }

.testimonial-item-des {
  color: #606060;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7; }

.testimonial-item-profile {
  position: absolute;
  bottom: -150px;
  left: 7%;
  display: flex;
  flex-direction: row;
  align-items: center; }

.testimonial-item-name {
  font-size: 22px;
  font-weight: 600;
  padding-top: 10px;
  padding-left: 21px; }

/*===  Faq  ===*/
.section-faq {
  background-color: #F8F8F8;
  padding: 30px 0;
  margin-top: 100px; }
  @media (min-width: 992px) {
    .section-faq {
      padding: 50px 0; } }

.faq-content {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center; }

.faq-content-text {
  width: 100%;
  text-align: left;
  padding: 0; }
  @media (min-width: 992px) {
    .faq-content-text {
      padding: 0 30px 0 0;
      width: 45%; } }

.faq-title {
  color: #232227;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  display: inline;
  position: relative;
  margin-bottom: 65px; }

.faq-content-text-des span {
  display: block; }

.faq-content-text-des {
  color: #000000;
  font-size: 16px;
  line-height: 1.3; }
  @media (min-width: 992px) {
    .faq-content-text-des {
      line-height: 1.7; } }
  @media (min-width: 1440px) {
    .faq-content-text-des {
      font-size: 18px; } }

/* accordian */
.faq-accordian-wrapper {
  position: relative;
  width: 100%;
  margin-top: 20px; }
  @media (min-width: 992px) {
    .faq-accordian-wrapper {
      padding: 0 55px;
      margin-top: 0; } }
  @media (min-width: 1440px) {
    .faq-accordian-wrapper {
      padding: 0 120px; } }

.faq-content-accordian {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px; }
  @media (min-width: 992px) {
    .faq-content-accordian {
      grid-template-columns: 1fr 1fr; } }

.accordion {
  background-color: transparent;
  color: #393939;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  position: relative;
  display: flex;
  align-items: center; }

.accordion-title {
  font-size: 12px;
  font-weight: 700;
  padding-left: 20px;
  width: 60%; }
  @media (min-width: 992px) {
    .accordion-title {
      font-size: 15px;
      width: 80%; } }
  @media (min-width: 1440px) {
    .accordion-title {
      font-size: 18px; } }

.panel {
  overflow: hidden;
  transition: max-height 0.2s ease-out; }

.panel p {
  padding: 10px 60px 10px 0px;
  font-size: 12px;
  font-weight: 300;
  color: #393939;
  line-height: 1.7; }
  @media (min-width: 992px) {
    .panel p {
      font-size: 16px; } }
  @media (min-width: 1440px) {
    .panel p {
      font-size: 16px; } }

.panel p a {
  color: #F25A3F; }

.faq-content a {
  color: #116cff;
  text-decoration: none; }

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

.contact-title {
  color: #393939;
  font-size: 28px;
  font-weight: 700;
  font-family: sans-serif;
  text-align: center; }
  @media (min-width: 992px) {
    .contact-title {
      font-size: 38px; } }
  @media (min-width: 1440px) {
    .contact-title {
      font-size: 50px; } }

.contact-list-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; }
  @media (min-width: 992px) {
    .contact-list-wrapper {
      flex-direction: row; } }

.contact-list-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 0; }
  @media (min-width: 992px) {
    .contact-list-items {
      flex-direction: row;
      align-items: top;
      padding: 50px 150px;
      width: 100%; } }

.contact-list-item {
  display: flex;
  flex-direction: column;
  max-width: 33%; }

.contact-item-title {
  color: #F25A3F;
  font-size: 25px;
  font-weight: 600; }

.contact-item-image img {
  width: initial; }

.contact-item-des {
  font-size: 16px;
  color: #232227; }

.contact-item-des span {
  display: block; }

.contact-item-des a {
  color: #232227;
  text-decoration: none; }

.contact-action a.myButton {
  background-color: #F5A241;
  border-color: #F5A241;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600; }

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

.footer-content {
  text-align: left;
  color: #000000;
  font-size: 16px; }
