   /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {

        ::selection {
        background: rgba(198,40,40 ,1); /* WebKit/Blink Browsers */
        }
        ::-moz-selection {
          background: rgba(198,40,40 ,1); /* Gecko Browsers */
        }
        footer{
            padding:40px 0;
            margin:auto;
            background-color:#212121;
        }
        footer .wrap{
            display: flex;
            margin:auto;
            width:60%;
        }
        footer .first-row {
            margin:auto;
        }
        footer .first-row img{
            width:60%;
            display: block;
        }
        footer .last-row {
            height:fit-content;
            height: -moz-fit-content;
            margin:auto;
        }
        footer .last-row p {
            color:white;
            margin:auto;
            text-align:center;
            font-size:17px;
        }
        footer .last-row a {
            color:red;
            text-decoration: none;
        }
    }

    /* Medium Devices, Desktops */
    @media (min-width : 992px) and (max-width: 1199px){

        ::selection {
        background: rgba(198,40,40 ,1); /* WebKit/Blink Browsers */
        }
        ::-moz-selection {
          background: rgba(198,40,40 ,1); /* Gecko Browsers */
        }
        footer{
            padding:40px 0;
            margin:auto;
            background-color:#212121;
        }
        footer .wrap{
            display: flex;
            margin:auto;
            width:60%;
        }
        footer .first-row {
            margin:auto;
        }
        footer .first-row img{
            width:60%;
            display: block;
        }
        footer .last-row {
            height:fit-content;
            height: -moz-fit-content;
            margin:auto;
        }
        footer .last-row p {
            color:white;
            margin:auto;
            text-align:center;
            font-size:17px;
        }
        footer .last-row a {
            color:red;
            text-decoration: none;
        }

    }

    /* Small Devices, Tablets */
    @media (min-width : 768px) and (max-width: 991px){

        ::selection {
        background: rgba(198,40,40 ,1); /* WebKit/Blink Browsers */
        }
        ::-moz-selection {
          background: rgba(198,40,40 ,1); /* Gecko Browsers */
        }
        footer{
            padding:80px 0;
            margin:auto;
            background-color:#212121;
        }
        footer .wrap{
            display: block;
            margin:auto;
            width:80%;
        }
        footer .first-row {
            margin:auto;
            display:none;
        }
        footer .first-row img{
            width:60%;
            display: block;
        }
        footer .last-row {
            height:fit-content;
            height: -moz-fit-content;
            margin:auto;
        }
        footer .last-row p {
            color:white;
            margin:auto;
            text-align:center;
            font-size:33px;
        }
        footer .last-row a {
            color:red;
            text-decoration: none;
        }

    }

    /* Extra Small Devices, Phones */
    @media (min-width : 480px) and (max-width: 767px){

        ::selection {
        background: rgba(198,40,40 ,1); /* WebKit/Blink Browsers */
        }
        ::-moz-selection {
          background: rgba(198,40,40 ,1); /* Gecko Browsers */
        }
        footer{
            padding:80px 0;
            margin:auto;
            background-color:#212121;
        }
        footer .wrap{
            display: block;
            margin:auto;
            width:80%;
        }
        footer .first-row {
            margin:auto;
            display:none;
        }
        footer .first-row img{
            width:60%;
            display: block;
        }
        footer .last-row {
            height:fit-content;
            height: -moz-fit-content;
            margin:auto;
        }
        footer .last-row p {
            color:white;
            margin:auto;
            text-align:center;
            font-size:33px;
        }
        footer .last-row a {
            color:red;
            text-decoration: none;
        }

    }

    /* Custom, iPhone Retina */
    @media (min-width : 320px) and (max-width: 479px) {


        ::selection {
        background: rgba(198,40,40 ,1); /* WebKit/Blink Browsers */
        }
        ::-moz-selection {
          background: rgba(198,40,40 ,1); /* Gecko Browsers */
        }
        footer{
            padding:80px 0;
            margin:auto;
            background-color:#212121;
        }
        footer .wrap{
            display: block;
            margin:auto;
            width:80%;
        }
        footer .first-row {
            margin:auto;
            display:none;
        }
        footer .first-row img{
            width:60%;
            display: block;
        }
        footer .last-row {
            height:fit-content;
            height: -moz-fit-content;
            margin:auto;
        }
        footer .last-row p {
            color:white;
            margin:auto;
            text-align:center;
            font-size:20px;
        }
        footer .last-row a {
            color:red;
            text-decoration: none;
        }
    }
