/* Smartphones (portrait and landscape) ----------- */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    /* Styles */
}


/* Smartphones (landscape) -----------
DONE
*/

@media only screen and (min-width: 321px) and (max-width: 767px) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 130px;
        height: 130px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        padding: 20px;
    }
    .right-side {
        padding: 0;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        /*height: 176px;*/
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 17px;
        text-align: center;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        margin-bottom: 10px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;        
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 18px;
        padding: 12px;
        text-align: center;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 85%;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
        width: 100%
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        position: relative;
        padding: 70px 10px 10px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px 50px;
        text-align: center;
        font-size: 30px;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: block;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        padding: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        padding: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: block;
        background-color: #33332d;
        color: #FFF8E3;
        padding: 30px 15px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 0 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 16px;
        line-height: 26px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 19px;
        line-height: 27px;
        text-align: left;
    }
    .page-header {
        display: none;
    }
    .banner .bullet-list {
        width: 65%;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 20px;
        padding: 0 134px;
    }
    .testimonials .img-holder {
        min-width: 110px;
        height: 110px;
        background-size: 110px 110px;
    }
    .banner {
        padding-top: 135px;
        display: block;
        padding-left: 0;
    }
    .banner .pocket {
        height: 210px;
        margin: auto;
    }
    .banner .bullet-list {
        margin: 27px auto;
        padding-left: 0;
    }
    .toll-free h1 {
        float: none;
        text-align: center;
    }
    .info-form {
        width: 65%;
        margin: auto;
    }
    .signature {
        font-size: 12px;
    }
    .test {
        font-size: 17px;
    }
    .test-vert {
        margin-right: 10px;
    }
    .testimonials .img-holder {
        min-width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 0;
        padding: 0 10px;
        display: block;
    }
    .section .product-logo {
        max-height: 110px;
        max-width: 100%;
    }
    .section .headline {
        width: 90%;
    }
    .section .headline {
        font-size: 26px;
        width: 100%;
        font-weight: normal;
    }
    .section .bullet-list li {
        line-height: 22px;
        margin-bottom: 20px;
    }
    .logo {
        left: calc(50% - 65px);
        margin: 0;
    }
    .footer h3 {
        font-size: 22px;
    }
}


/* Smartphones (portrait) ----------- */

@media only screen and (max-width: 320px) {
    /* Styles */
}


/* iPads (portrait and landscape) -----------
TO DO */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* Styles */
}


/* ??? -----------
DONE */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .right-side {
        padding-right: 50px;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        /*height: 176px;*/
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: block;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 20px;
        line-height: 31px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 29px;
        line-height: 37px;
        text-align: left;
    }
    .page-header {
        display: none;
    }
    .banner .bullet-list {
        width: 65%;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 20px;
        padding: 0 134px;
    }
    .testimonials .img-holder {
        min-width: 110px;
        height: 110px;
        background-size: 110px 110px;
    }
    .banner {
        padding-top: 200px;
        display: block;
        padding-left: 0;
    }
    .banner .pocket {
        width: 350px;
        height: 205px;
        margin: auto;
    }
    .banner .bullet-list {
        width: 100%;
        margin: 27px 25%;
        padding-left: 0;
    }
    .toll-free h1 {
        float: none;
    }
    .info-form {
        width: 65%;
        margin: auto;
    }
    .signature {
        font-size: 12px;
    }
    .test {
        font-size: 17px;
    }
    .test-vert {
        margin-right: 10px;
    }
    .testimonials .img-holder {
        min-width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 0;
        padding: 0 50px;
    }
    .section .product-logo {
        max-height: 110px;
    }
    .section .headline {
        width: 90%;
    }
    .section .headline {
        font-size: 29px;
        width: 100%;
    }
    .section .bullet-list li {
        line-height: 22px;
        margin-bottom: 20px;
    }
    .logo {
        left: calc(50% - 87px);
    }
    .footer h3 {
        font-size: 30px;
    }
}


/* iPads (landscape) -----------
DONE */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
        width: 100vw;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .right-side {
        padding-right: 0;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        height: 176px;
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 0 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 0 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 16px;
        line-height: 25px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 22px;
        line-height: 37px;
        text-align: left;
    }
}


/* iPads (portrait) -----------
DONE */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
        width: 100vw;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .right-side {
        padding-right: 50px;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        height: 176px;
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: block;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 20px;
        line-height: 31px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 29px;
        line-height: 37px;
        text-align: left;
    }
    .page-header {
        display: none;
    }
    .banner .bullet-list {
        width: 65%;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 20px;
        padding: 0 134px;
    }
    .testimonials .img-holder {
        min-width: 110px;
        height: 110px;
        background-size: 110px 110px;
    }
    .banner {
        padding-top: 200px;
        display: block;
        padding-left: 0;
    }
    .banner .pocket {
        width: 350px;
        height: 205px;
        margin: auto;
    }
    .banner .bullet-list {
        width: 100%;
        margin: 27px auto;
        padding-left: 124px;
    }
    .toll-free h1 {
        float: none;
    }
    .info-form {
        width: 65%;
        margin: auto;
    }
    .signature {
        font-size: 12px;
    }
    .test {
        font-size: 17px;
    }
    .test-vert {
        margin-right: 10px;
    }
    .testimonials .img-holder {
        min-width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 0;
        padding: 0 50px;
    }
    .section .product-logo {
        max-height: 110px;
    }
    .section .headline {
        width: 90%;
    }
    .section .headline {
        font-size: 29px;
        width: 100%;
    }
    .section .bullet-list li {
        line-height: 22px;
        margin-bottom: 20px;
    }
    .logo {
        left: calc(50% - 87px);
    }
    .footer h3 {
        font-size: 30px;
    }
}


/* ???? -----------
DONE */

@media only screen and (min-width: 1025px) and (max-width: 1323px) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 50%;
    }
    .right-side {
        padding-right: 50px;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        height: 176px;
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 0 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 0 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 16px;
        line-height: 25px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 22px;
        line-height: 37px;
        text-align: left;
    }
}


/* Desktops and laptops -----------
DONE */

@media only screen and (min-width: 1224px) and (max-width: 1823px) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 50%;
    }
    .right-side {
        padding-right: 50px;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url(ptp.png);
        margin: 0 27px;
        height: 251px;
        background-repeat: no-repeat;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 0 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 0 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 16px;
        line-height: 25px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 27px;
        line-height: 49px;
        text-align: left;
    }
}


/* Large screens -----------
DONE */

@media only screen and (min-width: 1824px) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .right-side {
        padding-right: 50px;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        height: 176px;
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 0 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 0 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 16px;
        line-height: 25px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 27px;
        line-height: 49px;
        text-align: left;
    }
}


/* iPhone 4 - 5s ----------- */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
    /* Styles */
}


/* iPhone 6 ----------- */

@media only screen and (max-device-width: 667px) only screen and (-webkit-device-pixel-ratio: 2) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .right-side {
        padding-right: 50px;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        height: 176px;
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: block;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 20px;
        line-height: 31px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 29px;
        line-height: 37px;
        text-align: left;
    }
    .page-header {
        display: none;
    }
    .banner .bullet-list {
        width: 65%;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 20px;
        padding: 0 134px;
    }
    .testimonials .img-holder {
        min-width: 110px;
        height: 110px;
        background-size: 110px 110px;
    }
    .banner {
        padding-top: 200px;
        display: block;
        padding-left: 0;
    }
    .banner .pocket {
        width: 350px;
        height: 205px;
        margin: auto;
    }
    .banner .bullet-list {
        width: 100%;
        margin: 27px auto;
        padding-left: 124px;
    }
    .toll-free h1 {
        float: none;
    }
    .info-form {
        width: 65%;
        margin: auto;
    }
    .signature {
        font-size: 12px;
    }
    .test {
        font-size: 17px;
    }
    .test-vert {
        margin-right: 10px;
    }
    .testimonials .img-holder {
        min-width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 0;
        padding: 0 50px;
    }
    .section .product-logo {
        max-height: 110px;
    }
    .section .headline {
        width: 90%;
    }
    .section .headline {
        font-size: 29px;
        width: 100%;
    }
    .section .bullet-list li {
        line-height: 22px;
        margin-bottom: 20px;
    }
    .logo {
        left: calc(50% - 87px);
    }
    .footer h3 {
        font-size: 30px;
    }
}


/* iPhone 6+ ----------- */

@media only screen and (min-device-width: 414px) only screen and (-webkit-device-pixel-ratio: 3) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 173px;
        height: 173px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90% 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .banner li div {
        font-size: 17px;
    }
    .banner .bullet-list li .fa-check {
        margin-right: 4px;
    }
    .left-side,
    .right-side {
        display: block;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .right-side {
        padding-right: 50px;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        height: 176px;
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 22px;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        padding: 12px;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 270px;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        padding: 90px 0 54px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px;
        text-align: center;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 45%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .text-on-left {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
        text-align: right;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding-right: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .section-2 .bullet-list li,
    .section-4 .bullet-list li {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: block;
        background-color: #33332d;
        color: #FFF8E3;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 54px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 20px;
        line-height: 31px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 29px;
        line-height: 37px;
        text-align: left;
    }
    .page-header {
        display: none;
    }
    .banner .bullet-list {
        width: 65%;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 20px;
        padding: 0 134px;
    }
    .testimonials .img-holder {
        min-width: 110px;
        height: 110px;
        background-size: 110px 110px;
    }
    .banner {
        padding-top: 200px;
        display: block;
        padding-left: 0;
    }
    .banner .pocket {
        width: 350px;
        height: 205px;
        margin: auto;
    }
    .banner .bullet-list {
        width: 100%;
        margin: 27px auto;
        padding-left: 124px;
    }
    .toll-free h1 {
        float: none;
    }
    .info-form {
        width: 65%;
        margin: auto;
    }
    .signature {
        font-size: 12px;
    }
    .test {
        font-size: 17px;
    }
    .test-vert {
        margin-right: 10px;
    }
    .testimonials .img-holder {
        min-width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 0;
        padding: 0 50px;
    }
    .section .product-logo {
        max-height: 110px;
    }
    .section .headline {
        width: 90%;
    }
    .section .headline {
        font-size: 29px;
        width: 100%;
    }
    .section .bullet-list li {
        line-height: 22px;
        margin-bottom: 20px;
    }
    .logo {
        left: calc(50% - 87px);
    }
    .footer h3 {
        font-size: 30px;
    }
}


/* ???
/* Smartphones (landscape) -----------
DONE
*/

@media only screen and (max-width: 320px) {
    * {
        padding: 0;
        margin: 0;
    }
    a {
        text-decoration: none;
        color: #33332d;
    }
    a:-webkit-any-link {
        color: #33332d;
    }
    a[href^="tel"] {
        color: inherit;
        text-decoration: none;
    }
    body,
    html {
        background-color: white;
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        margin: 0 auto;
        width: 98%;
        position: relative;
    }
    #main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
    .fixed {
        position: fixed;
        z-index: 100;
        left: 0;
        right: 0;
        background-color: #fff8e3;
        height: 63px;
    }
    .page-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #fff8e3;
        color: #33332d;
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.62);
    }
    .logo {
        width: 130px;
        height: 130px;
        position: absolute;
        z-index: 200;
        background: url('si-logo.png');
        background-position: center center;
        background-size: 90%;
        margin: 9px 27px;
        background-color: #FFF8E3;
        border-radius: 100%;
        background-repeat: no-repeat;
        box-shadow: 0 0 8px rgba(0, 0, 0, 1);
    }
    .menu-items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        width: 100%;
    }
    .menu-items li {
        padding: 16px;
        font-size: 14px;
        cursor: pointer;
    }
    .menu-items li:hover {
        background-color: rgba(204, 204, 159, 0.32);
    }
    .banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        background-color: #33332d;
        color: #CCCC9F;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding-left: 144px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 72px;
        position: relative;
    }
    .banner::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #33332D;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 60px);
        z-index: 2;
    }
    .left-side,
    .right-side {
        display: block;
        padding: 20px;
    }
    .right-side {
        padding: 0;
    }
    .banner .headline {
        color: #9fb4cc;
        font-size: 42px;
    }
    .banner .pocket {
        background-image: url('ptp.png');
        height: 176px;
        background-position: center center;
        margin: 0 27px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .banner .byline {
        color: #CCCC9F;
        font-weight: normal;
        margin-top: 9px;
        font-size: 17px;
        text-align: center;
    }
    .banner .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .banner .bullet-list li {
        color: #fff8e3;
        line-height: 49px;
        margin-bottom: 10px display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .banner .bullet-list li .fa-check {
        color: #db4105;
        font-size: 36px;
        padding-right: 6px;
        text-decoration: none;
        margin-top: -7px;
        margin-bottom: 13px;
    }
    .tel-num {
        color: #FA7F4F;
        font-weight: bold;
        padding: 2px;
    }
    .or-fill {
        font-style: italic;
        font-weight: normal;
        font-size: 15px;
        padding: 12px;
        text-align: center;
    }
    .info-form {
        display: block;
        background-color: #fff8e3;
        color: #33332d;
        padding: 36px;
        border-radius: 5px;
        box-shadow: 0px 10px 15px rgba(0, 0, 0, .7);
    }
    .form-heading {
        color: #db4105;
        font-size: 23px;
    }
    .info-form hr {
        border: none;
        border-bottom: 1px solid rgba(219, 65, 5, 0.42);
        margin: 7px 0 20px;
    }
    .form-name,
    .form-email,
    .form-phone {
        outline: none;
        width: 85%;
        line-height: 31px;
        border-radius: 9px;
        margin: 9px 0;
        padding: 0 18px;
    }
    .form-checkbox {
        margin: 9px 0;
    }
    .form-checkbox label {
        font-style: italic;
        font-size: 16px;
    }
    .submit-btn {
        text-decoration: none;
        padding: 9px;
        background-color: #db4105;
        margin-top: 11px;
        color: white;
        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        font-size: 18px;
    }
    .submit-btn:hover {
        background-color: #FF6529;
        color: white;
    }
    .testimonials {
        display: block;
        background-color: #fff8e3;
        position: relative;
        padding: 70px 10px 10px;
    }
    .testimonials::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #FFF8E3;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .testimonials .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 36px 30px;
    }
    .testimonials h1 {
        color: #9fb4cc;
        padding: 9px 50px;
        text-align: center;
        font-size: 24px;
    }
    .testimonials .img-holder {
        min-width: 150px;
        height: 150px;
        border-radius: 100px;
        border: 4px solid #9fb4cc;
        box-shadow: 0 9px 9px rgba(0, 0, 0, .5);
        background-position: center center;
        background-size: 150px 150px;
    }
    .test-vert {
        display: block;
        margin-left: 18px;
        margin-right: 18px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding: 18px;
    }
    .test {
        font-size: 20px;
        font-style: italic;
        line-height: 25px;
        text-align: left;
    }
    .test span:first-child {
        margin-right: 5px;
    }
    .testimonial-1 .img-holder {
        background-image: url("Shaun-Robert.jpg");
    }
    .testimonial-2 .img-holder {
        background-image: url("Luis-Alcina.jpg");
    }
    .testimonial-3 .img-holder {
        background-image: url("Mohammed.jpg");
    }
    .testimonial-4 .img-holder {
        background-image: url("Jesus-Zavala.jpg");
    }
    .ltr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .signature {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-top: 9px;
    }
    /*section*/
    .section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: block;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 54px 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
    .section .headline {
        margin-top: 18px;
        margin-bottom: 18px;
        line-height: 40px;
        font-size: 36px;
    }
    .section .collection-image {
        width: 100%;
    }
    .section .text-on-right {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .section .bullet-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        line-height: 49px;
    }
    .section .benefit {
        font-size: 20px;
    }
    /*sections 1 & 3*/
    .section-1 {
        background-color: #9fb4cc;
    }
    .section .product-logo {
        max-height: 150px;
    }
    .section-3 {
        background-color: #db4105;
    }
    .section-1::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #9FB4CC;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-3::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #db4105;
        position: absolute;
        bottom: -35px;
        left: calc(32% - 60px);
        z-index: 2;
    }
    .section-1 .headline {
        color: #db4105;
    }
    .section-3 .headline {
        color: #fff8e3;
    }
    .section-1 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-3 .sentence {
        color: #cccc9f;
        line-height: 27px;
    }
    .section-1 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-3 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-1 .bullet-list li {
        color: #fff8e3;
    }
    .section-3 .bullet-list li {
        color: #cccc9f;
        font-weight: bold;
    }
    .section-1 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-3 .bullet-list li span {
        color: #fff8e3;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-1 .left-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-1 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-3 .right-side {
        padding: 36px;
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
    .section-1 .collection-image,
    .section-3 .collection-image {
        margin-left: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-left {
        margin-left: 0px !important;
        opacity: 1 !important;
    }
    /*==========================================================================*/
    .section-2 {
        background-color: #cccc9f;
    }
    .section-2::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 60px solid #CCCC9F;
        position: absolute;
        bottom: -35px;
        left: calc(70% - 60px);
        z-index: 2;
    }
    .section-2 .headline {
        color: #33332d;
    }
    .section-2 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-2 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-2 .bullet-list li {
        color: #db4105;
        font-weight: bold;
    }
    .section-2 .bullet-list li span {
        color: #33332d;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-2 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-2 .right-side {
        padding: 36px;
    }
    .section-4 {
        background-color: #FFEEBD;
    }
    .section-4 .headline {
        color: #db4105;
    }
    .section-4 .sentence {
        color: #33332d;
        line-height: 27px;
    }
    .section-4 .bullet-list {
        list-style: none;
        margin-top: 27px;
    }
    .section-4 .bullet-list li {
        color: #33332d;
        font-weight: bold;
    }
    .section-4 .bullet-list li span {
        color: #db4105;
        font-size: 36px;
        padding-right: 5px;
    }
    .section-4 .left-side {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        padding: 36px;
    }
    .section-4 .right-side {
        padding: 36px;
    }
    .section-2 .collection-image,
    .section-4 .collection-image {
        margin-right: -500px;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
    }
    .image-from-right {
        margin-right: 0px !important;
        opacity: 1 !important;
    }
    .footer {
        display: block;
        background-color: #33332d;
        color: #FFF8E3;
        padding: 30px 15px;
        font-size: 15px;
    }
    .footer h3 {
        margin-bottom: 5px;
    }
    .location {
        -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
        padding: 36px;
    }
    .contact {
        -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
        padding: 0 36px;
    }
    .about-us {
        -webkit-flex-basis: 44%;
        -ms-flex-preferred-size: 44%;
        flex-basis: 44%;
        padding: 0 36px;
    }
    .footer p {
        margin-top: 9px;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 14px;
        line-height: 26px;
    }
    .footer h3 {
        margin-bottom: 18px;
    }
    .contact a {
        color: #fff8e3;
        background-color: rgba(204, 204, 159, 0.32);
        padding: 9px;
        border-radius: 5px;
    }
    .contact a:hover {
        color: #000;
        background-color: rgba(204, 204, 159, 0.73);
    }
    .banner li div {
        font-size: 19px;
        line-height: 27px;
        text-align: left;
    }
    .page-header {
        display: none;
    }
    .banner .bullet-list {
        width: 95%;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 36px 20px;
        padding: 0 134px;
    }
    .testimonials .img-holder {
        min-width: 110px;
        height: 110px;
        background-size: 110px 110px;
    }
    .banner {
        padding-top: 135px;
        display: block;
        padding-left: 0;
    }
    .banner .pocket {
        width: 200px;
        height: 150px;
        margin: auto;
    }
    .banner .bullet-list {
        margin: 27px auto;
        padding-left: 0;
    }
    .toll-free h1 {
        float: none;
        text-align: center;
    }
    .info-form {
        width: 65%;
        margin: auto;
    }
    .signature {
        font-size: 12px;
    }
    .test {
        font-size: 17px;
    }
    .test-vert {
        margin-right: 10px;
    }
    .testimonials .img-holder {
        min-width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4 {
        padding: 45px 0;
    }
    .testimonials .inner {
        margin: 0;
        padding: 0 10px;
        display: block;
    }
    .section .product-logo {
        max-height: 110px;
        max-width: 100%;
    }
    .section .headline {
        width: 90%;
    }
    .section .headline {
        font-size: 26px;
        width: 100%;
        font-weight: normal;
    }
    .section .bullet-list li {
        line-height: 22px;
        margin-bottom: 20px;
    }
    .logo {
        left: calc(50% - 65px);
        margin: 0;
    }
    .footer h3 {
        font-size: 22px;
    }
}