    /* CSS HEX
    --gray-web: #818083ff;
    --dark-cornflower-blue: #293a6eff;
    --cyan-process: #00bcf5ff;
    --cultured: #f8f8f8ff;
    --medium-aquamarine: #3ae4aeff;

    CSS HSL
    --gray-web: hsla(260, 1%, 51%, 1);
    --dark-cornflower-blue: hsla(225, 46%, 30%, 1);
    --cyan-process: hsla(194, 100%, 48%, 1);
    --cultured: hsla(0, 0%, 97%, 1);
    --medium-aquamarine: hsla(161, 76%, 56%, 1);

    SCSS HEX
    $gray-web: #818083ff;
    $dark-cornflower-blue: #293a6eff;
    $cyan-process: #00bcf5ff;
    $cultured: #fefeffff;
    $medium-aquamarine: #3ae4aeff;


    SCSS RGB
    $gray-web: rgba(129, 128, 131, 1);
    $dark-cornflower-blue: rgba(41, 58, 110, 1);
    $cyan-process: rgba(0, 188, 245, 1);
    $cultured: rgba(248, 248, 248, 1);
    $medium-aquamarine: rgba(58, 228, 174, 1);
    */

/* Footer */

   .footer {
       width: 100%;
       position: absolute;
       bottom: 0;
       padding: 1rem 0 0;
       }
   .footer h6{
       color: #f8f8f8;
       font-size: 16px;
       font-weight: 400;
   }
   .footer a {
       text-decoration: none;
       color: inherit;
       cursor: pointer;
   }
   .footer a:hover {
       color: ;
       cursor: pointer;
   }

   @media (max-width: 991.98px) {
       .navbar-collapse{
           padding-bottom: 20rem;
       }
    }



   @media (max-width: 576px) {
       .footer h6 {
           font-size: 12px;
       }
       .footer .policyTerm h6 {
           font-size: 9px;
       }
    }
