
/* ************************************************
    GENERAL
  *************************************************** */

  body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #2487ce;
    text-decoration: none;
  }
  
  a:hover {
    color: #469fdf;
    text-decoration: none;
  }
  
  /* ************************************************
    BTN BACK TO TOP
  *************************************************** */
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #2487ce;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #3e9bdd;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /* ************************************************
    NAV MENU
  *************************************************** */

  /* *** MENU NAV DESKTOP AND MOBILE *** */
  #menu-toggle:checked + #menu {
    display: block;
  }

  /* ************************************************
    HOME SECTION
  *************************************************** */
  #home {
    width: 100%;
    background: linear-gradient(to bottom, #FFF, #ccdcde);
  }
  #home img{
    border-radius: 15px;
    margin-bottom: 20px;
  }
  
  /* ************************************************
    ABOUT SECTION
  *************************************************** */
  #about {
    width: 100%;
    background: linear-gradient(to bottom, #ccdcde, #FFE8E8);
  }

  /* ************************************************
    SERVICES SECTION
  *************************************************** */
  #services {
    width: 100%;
    /*background: linear-gradient(to bottom, #FEE5E5, #FFF);*/
    background: #FFE8E8;
  }

  /* ************************************************
    PROCESS SECTION
  *************************************************** */
  #process {
    width: 100%;
    background: linear-gradient(to bottom, #FFE8E8, #FFF);
  }

  /* ************************************************
    CUSTOMERS SECTION
  *************************************************** */
  #customers {
    width: 100%;
    background: linear-gradient(to bottom, #FFE8E8, #FFF);
  }

  /* ************************************************
    SECTIONS
  *************************************************** */
  section {
    padding: 80px 0;
    overflow: hidden;
  }

  .section-bg {
    background-color: #f8fbfe;
  }

  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }

  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #124265;
  }

  .section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  footer {
    color: #444444;
    font-size: 14px;
  }