/* 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=Fira+Sans:300,400,500,600,700,800,900);
.myButton {
  background-color: #2BD95E;
  border-radius: 15px;
  border: 2px solid #2BD95E;
  display: inline-block;
  cursor: pointer;
  color: #001A1E;
  font-size: 21px;
  font-weight: 600;
  padding: 15px 32px;
  text-decoration: none; }

.myButton:hover {
  background-color: transparent;
  color: #FFFFFF; }

.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: 'Fira Sans', 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: 1450px; } }

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

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

.main-wrapper {
  height: 80%; }

.main-content {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 20px; }
  @media (min-width: 992px) {
    .main-content {
      padding: 0; } }

.main-content-text {
  margin-top: 0px; }
  @media (min-width: 992px) {
    .main-content-text {
      width: 48%; } }

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

.main-content-subtitle {
  font-size: 12px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.9; }
  @media (min-width: 992px) {
    .main-content-subtitle {
      font-size: 16px; } }
  @media (min-width: 1440px) {
    .main-content-subtitle {
      font-size: 20px; } }
  .main-content-subtitle span {
    display: block; }

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

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

.navbar-item {
  margin: 0 15px;
  width: 100%;
  white-space: nowrap; }
  .navbar-item a.myButton {
    font-size: 18px; }

.navbar-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  font-size: 18px;
  font-weight: 300;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4em 0.3em; }

li.navbar-item:first-of-type a.navbar-link {
  font-weight: 700; }

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

.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 #2BD95E; }

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #2BD95E;
  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: center; }

.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 {
  display: block; }
  @media (min-width: 992px) {
    .navbar-links .navbar-item:last-child {
      display: none; } }

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

.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; }

.support-text {
  width: 100%;
  text-align: center; }

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

.support-subtitle {
  font-size: 12px;
  width: 65%;
  margin: 0 auto;
  padding-top: 20px;
  line-height: 1.5; }
  @media (min-width: 992px) {
    .support-subtitle {
      font-size: 16px; } }
  @media (min-width: 1440px) {
    .support-subtitle {
      font-size: 20px; } }

.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 1fr; } }

.support-item {
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  padding: 41px; }
  .support-item .myButton {
    font-size: 18px;
    font-weight: 600;
    border: none;
    text-align: center; }

.support-item:nth-child(1) {
  background-color: #AFE8F7; }
  .support-item:nth-child(1) .myButton {
    background-color: #00A9F0; }

.support-item:nth-child(2) {
  background-color: #AAF8B5; }
  .support-item:nth-child(2) .myButton {
    background-color: #2BD95E; }

.support-item:nth-child(3) {
  background-color: #E6D1F8; }
  .support-item:nth-child(3) .myButton {
    background-color: #846FF9; }

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

.support-item-title {
  color: #232227;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  height: 30px; }
  @media (min-width: 992px) {
    .support-item-title {
      font-size: 30px;
      height: 41px; } }
  @media (min-width: 1440px) {
    .support-item-title {
      font-size: 38px;
      height: 70px; } }

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

/*===  Services  ===*/
.services-content {
  padding: 40px 0; }
  @media (min-width: 992px) {
    .services-content {
      padding: 80px 0; } }

.services-title {
  font-size: 48px;
  font-weight: 600;
  text-align: left;
  padding: 0 0 30px 30px; }
  @media (min-width: 992px) {
    .services-title {
      text-align: center;
      padding: 0 0 50px; } }

.services-list-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  padding: 0 30px; }
  @media (min-width: 992px) {
    .services-list-content {
      padding: 0;
      grid-template-columns: repeat(3, 1fr);
      grid-row-gap: 0px; } }

.services-item-title {
  font-size: 28px;
  font-weight: 500; }

.services-item-title span {
  display: block; }

.services-item-des {
  font-size: 14px; }

/*===  About Us  ===*/
.section-aboutus {
  padding: 50px 0; }
  .section-aboutus .container {
    height: 100%; }

.aboutus-wrapp {
  display: grid;
  grid-template-columns: 1fr; }
  @media (min-width: 992px) {
    .aboutus-wrapp {
      grid-template-columns: 45% 55%;
      grid-gap: 100px; } }

.aboutus-img {
  display: none; }
  @media (min-width: 992px) {
    .aboutus-img {
      display: block; } }
  .aboutus-img img {
    width: 100%; }

.aboutus-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  width: 100%; }
  @media (min-width: 992px) {
    .aboutus-content {
      width: 70%; } }

.aboutus-content-title {
  color: #061824;
  font-size: 50px;
  font-weight: 700; }

.aboutus-content-text-des {
  color: #061824;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 300;
  margin-top: 20px; }
  @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: 20px; } }

/*===  Live Support  ===*/
.section-live-support {
  background-color: #AAF8B5; }

.live-support-content {
  display: flex;
  justify-content: space-between;
  padding: 50px 20px;
  align-items: center;
  flex-direction: column; }

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

.live-support-title {
  color: #061824;
  font-size: 38px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px; }
  @media (min-width: 992px) {
    .live-support-title {
      font-size: 50px; } }

.live-support-action a.myButton {
  font-size: 20px;
  font-weight: 600; }
  .live-support-action a.myButton:hover {
    color: #000000; }

/*===  Testimonial  ===*/
.section-testimonial {
  background-color: #FAFAFA;
  padding: 50px 0 70px; }

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

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

.testimonial-subtitle {
  color: #061824;
  font-size: 20px;
  line-height: 1.5;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px; }

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

.testimonial-item {
  display: flex;
  position: relative; }

.testimonial-item-right {
  background-color: #AFE8F7;
  border-radius: 25px;
  padding: 30px 41px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  max-width: 500px;
  width: 100%; }

.testimonial-item:nth-child(2) .testimonial-item-right {
  background-color: #E6D1F8; }

.testimonial-item-left {
  padding: 43px 23px 0 0; }

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

.testimonial-item-des {
  color: #061824;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7; }
  @media (min-width: 992px) {
    .testimonial-item-des {
      font-size: 20px; } }

.testimonial-item-profile {
  position: absolute;
  top: 200px;
  left: -10%;
  display: flex;
  flex-direction: column;
  align-items: center; }

.testimonial-item-name {
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
  text-align: right; }
  @media (min-width: 992px) {
    .testimonial-item-name {
      font-size: 22px; } }

/*===  Faq  ===*/
.section-faq {
  background-color: #061824;
  padding: 30px 0; }
  @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: #FFFFFF;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  display: inline;
  position: relative; }

.faq-sub {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0 50px; }
  @media (min-width: 992px) {
    .faq-sub {
      width: 70%; } }

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

.faq-content-text-des {
  color: #FFFFFF;
  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 25px;
      margin-top: 0; } }
  @media (min-width: 1440px) {
    .faq-accordian-wrapper {
      padding: 0 65px; } }

.faq-content-accordian {
  display: flex;
  flex-direction: column;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .faq-content-accordian {
      width: 70%; } }

.faq-accordian-item {
  margin: 20px 0; }

.accordion {
  background-color: transparent;
  color: #FFFFFF;
  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: 18px;
      width: 80%; } }

.active,
.accordion:hover {
  color: #FFFFFF; }

.accordion:after {
  border-radius: 18px;
  position: absolute;
  content: "+";
  font-size: 24px;
  right: 10px;
  color: #FFFFFF;
  top: 50%;
  transform: translate(0, -50%);
  padding: 1px 20px;
  display: none; }

.accordion:hover:after {
  color: #FFFFFF; }

.active:after {
  content: "-";
  color: #FFFFFF; }

.circle {
  display: block;
  width: 65px;
  height: 35px;
  display: flex;
  color: white;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  font-size: 25px; }
  .circle span {
    height: 100%; }

.accordion .minus {
  display: none; }

.accordion.active {
  color: #FFFFFF; }
  .accordion.active .plus {
    display: none; }
  .accordion.active .minus {
    display: flex; }

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding-left: 75px; }

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

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

/*===  Contact  ===*/
.section-contact {
  padding: 50px 0; }
  @media (min-width: 992px) {
    .section-contact {
      padding: 100px 0; } }

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

.contact-list-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 50px;
  padding: 50px 0; }
  @media (min-width: 992px) {
    .contact-list-content {
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 0px;
      grid-row-gap: 20px; } }
  @media (min-width: 1440px) {
    .contact-list-content {
      font-size: 36px; } }

.contact-item-info {
  display: flex;
  padding-top: 20px;
  flex-direction: column;
  align-items: flex-start; }
  @media (min-width: 992px) {
    .contact-item-info {
      flex-direction: row; } }

.contact-item-image img {
  display: block;
  width: 70%;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .contact-item-image img {
      width: auto; } }

.contact-item-text {
  color: #061824;
  text-align: left;
  padding: 10px 0; }
  @media (min-width: 992px) {
    .contact-item-text {
      flex-direction: row;
      padding: 0 0 0 25px; } }

.contact-item-text p {
  font-size: 25px;
  font-weight: 700; }

.contact-item-text span {
  font-size: 16px;
  display: block; }

.contact-item-text a {
  font-size: 16px;
  color: #061824;
  text-decoration: none; }

@media (min-width: 992px) {
  .contact-list-item:nth-child(2) {
    padding-left: 50px; } }

/**************************************
******** section - Footer *************
***************************************/
.section-footer {
  background-color: #f6f6f6;
  padding: 20px; }

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