/* default styles here for older browsers. 
       I tend to go for a 600px - 960px width max but using percentages
    */
    @media only screen and (min-width: 960px) {
        /* styles for browsers larger than 960px; */
    }
    @media only screen and (min-width: 1440px) {
        /* styles for browsers larger than 1440px; */
    }
    @media only screen and (min-width: 2000px) {
        /* for sumo sized (mac) screens */
    }
    @media only screen and (max-device-width: 480px) {
       /* styles for mobile browsers smaller than 480px; (iPhone) */
    }
    @media only screen and (device-width: 768px) {
       /* default iPad screens */
    }
    /* different techniques for iPad screening */
    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
      /* For portrait layouts only */
    }

    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
      /* For landscape layouts only */
    }

    @media (max-width: 2560px) {
        .page-header.page-header-modern.page-header-background.page-header-background-md {
            padding: 260px 0px 612px 0px;
          }
          .page-header.page-header-modern.page-header-background {
          padding: 130px 0;
          background-size: 100%;
          background-position: 100% 100%;
          background-repeat: no-repeat;
          }
    }

    @media (max-width: 1440px) {
        .page-header.page-header-modern.page-header-background.page-header-background-md {
            padding: 134px 0px 295px 0px;
          }
          .page-header.page-header-modern.page-header-background {
          padding: 130px 0;
          background-size: 100%;
          background-position: 100% 100%;
          background-repeat: no-repeat;
          }
    }


    @media (max-width: 1024px) {
        .page-header.page-header-modern.page-header-background.page-header-background-md {
            padding: 100px 0px 209px 0px;
          }
          .page-header.page-header-modern.page-header-background {
          padding: 130px 0;
          background-size: 100%;
          background-position: 100% 100%;
          background-repeat: no-repeat;
          }
    }


    @media (max-width: 768px) {
        .page-header.page-header-modern.page-header-background.page-header-background-md {
            padding: 54px 0px 162px 0px;
          }
          .page-header.page-header-modern.page-header-background {
          padding: 130px 0;
          background-size: 100%;
          background-position: 100% 100%;
          background-repeat: no-repeat;
          }
    }

    @media screen and (max-device-width:640px), screen and (max-width:640px) {
        .page-header.page-header-modern.page-header-background.page-header-background-md {
            padding: 54px 0px 162px 0px;
          }
          .page-header.page-header-modern.page-header-background {
          padding: 130px 0;
          background-size: 100%;
          background-position: 100% 100%;
          background-repeat: no-repeat;
          }
    }

    
    @media (max-width: 375px) {
        .page-header.page-header-modern.page-header-background.page-header-background-md {
            padding: 40px 0px 54px 0px;
          }
          .page-header.page-header-modern.page-header-background {
          padding: 130px 0;
          background-size: 100%;
          background-position: 100% 100%;
          background-repeat: no-repeat;
          }
    }

    @media (min-width: 320px) and (max-width: 480px) {

        .page-header.page-header-modern.page-header-background.page-header-background-md {
          padding: 28px 0px 28px 0px;
        }
        .page-header.page-header-modern.page-header-background {
        padding: 130px 0;
        background-size: 100%;
        background-position: 100% 100%;
        background-repeat: no-repeat;
        }
    }