    
    
    @font-face {
        font-family: 'HeadingFont';
        src: url('/assets/fonts/heading_font.otf');
    }

    @font-face {
        font-family: 'SubHeadingFont';
        src: url('/assets/fonts/sub_heading_font_2.ttf');
    }

    h1,h2,h3,h4,button{
        font-family: 'HeadingFont';
    }

    p,label,span,input,textarea,a,ul,li{
        font-family: 'SubHeadingFont';
        /*font-weight: 700;*/
    }

    li{
        color: #555;
        margin-bottom: 15px;
    }


    input,select{
        width: 100%;
        box-sizing: border-box;
        padding: 14px;
        border-radius: 5px;
        background-color: #f9f9f9;
        border: none;
        outline: none;
        font-size: 14px;
        margin-bottom: 10px;
    }

    label{
        display: inline-block;
        margin-bottom: 10px;
        font-weight: 500;
    }

    h1{
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    h3{
        text-transform: uppercase;
        font-size: 14px;
        color: #555;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    p{
        color: #555;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    h4{
        font-size: 18px;
        font-weight: bold;
    }


    
  @media (max-width:991px) and (min-width:768px) {
   
  }

  @media (max-width:767px) and  (min-width:418px) {
        h1{
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        h3{
            text-transform: uppercase;
            font-size: 14px;
            color: #555;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        p{
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        h4{
            font-size: 18px;
            font-weight: bold;
        }
  }

  @media(max-width:418px){
    h1{
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    h3{
        text-transform: uppercase;
        font-size: 14px;
        color: #555;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    p{
        color: #555;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    h4{
        font-size: 18px;
        font-weight: bold;
    }
  }


    /* Default CSS style for scrollbars */

    /* For modern browsers */
    ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    /* For Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: #888 #f1f1f1;
    }

    /* For Internet Explorer and Edge */
    .scrollbar {
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

