* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Century Gothic', serif;
    scrollbar-width: thin;          /* "auto" or "thin" */
    scrollbar-color: #b6d699 rgb(243, 242, 242) ;   /* scroll thumb and track */
  }

  .f_page {
    background: #304e4c;
    width: 100%;
    display: flex; 
    flex-direction: column; 
  }

  .nav_bar {
    position: relative;
    background: #304e4c;
  }

  .nav_bar img { 
    width: 20%; 
    height: auto; 
    margin: 1%;
  } 

  .main_page {
    position: relative;
    text-align: left;
  }

  footer {
    bottom: 0px;
    width: 100%;
    background: #b6d699;
  }

  .main-content {
    display: flex;
  }

  .main-content .box {
    flex-basis: 50%;
    padding: 10px 20px;
  }

  .box h2 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .box .content {
    margin: 20px 0 0 0;
    position: relative;
  }

  .box .content:before {
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #304e4c;
  }

  .box .content:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #304e4c;
    top: -10px;
  }

  .left .content p {
    text-align: justify;
  }

  .left .content .social {
    margin: 20px 0 0 0;
  }

  .left .content .social a {
    padding: 0 2px;
  }

  .left .content .social a span {
    background: #bb6739;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
    border-radius: 50%;
    opacity: 0.8; 
    font-size: 1.4375rem;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
  }

  .left .content .social a span:hover {
    background: #bb6739;
    opacity: 1;
  }

  .center .content .fas {
    font-size: 1.4375rem;
    background: #bb6739;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
    opacity: 0.8; 
  }

  .center .content .fas:hover {
    background: #bb6739;
    opacity: 1; 
  }

  .center .content .text {
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
    color: #1a1a1a; 
  }

  .center .content .phone {
    margin: 15px 0;
  }

  /* .right form .text {
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #656565;
  }

  .right form .msg {
    margin-top: 10px;
  }

  .right form input, .right form textarea {
    width: 100%;
    font-size: 1.0625rem;
    background: #304e4c;
    padding-left: 10px;
    border: 0.4px solid #222222;
    border-radius: 10px;
  }

  .right form input:focus,
  .right form textarea:focus {
    outline-color: #ffffff;
  }

  .right form input {
    height: 35px;
  }

  .right form .btn {
    margin-top: 10px;
  }

  .right form .btn button {
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    background: #304e4c;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
  }

  .right form .btn button:hover {
    background: #000;
  } */

  .content .fab {
    color:#000;
  }

  body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: rgb(243, 242, 242);        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #b6d699;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid rgb(243, 242, 242);  /* creates padding around scroll thumb */
  }

  @media screen and (max-width: 900px) {
    footer {
      position: relative;
      bottom: 0px;
    }

    .main-content {
      flex-wrap: wrap;
      flex-direction: column;
    }

    .main-content .box {
      margin: 5px 0;
    }

  }