    /* #### Mobile Phones Portrait #### */
    
    @media screen and (max-device-width: 480px) and (orientation: portrait) {
        h1 {
            line-height: 60px;
            text-transform: uppercase;
            color: #3366cc;
            font-size: 25px;
            font-weight: 400!important;
            padding: 5px;
        }
        h2 {
            text-align: center;
        }
        h3 {
            line-height: 20px;
            padding: 5px;
            text-align: center;
            color: #3366cc;
        }
        h4 {
            line-height: 20px;
            padding-bottom: 20px;
            color: #3366cc;
        }
        p {
            line-height: 20px;
            padding: 5px;
            font-size: 1.2em;
        }
        .dropdown-menu > li > a {
            color: #fff !important;
            text-align: center;
        }
        #about li {
            font-size: 1em;
            padding: 5px;
        }
        #footer {
            text-align: center;
        }
        #contact .address i {
            font-size: 1em;
        }
        #contact .address a {
            font-size: 0.8em;
            line-height: 15px;
        }
        #aboutKomek li {
            list-style-type: disc;
            font-size: 1.2em;
            margin-left: 20px;
        }
        #aboutKomek img {
            height: 30vh !important;
        }
        header h1 {
            padding: 6em 0;
            text-align: center;
            color: #fff;
        }
    }
    /* #### Mobile Phones Landscape #### */
    
    @media screen and (max-device-width: 640px) and (orientation: landscape) {
        h1 {
            line-height: 60px;
            text-transform: uppercase;
            color: #3366cc;
            font-size: 25px;
            font-weight: 400!important;
            padding: 5px;
            margin-top: 0;
        }
        h3 {
            line-height: 20px;
            padding: 5px;
            text-align: center;
        }
        h4 {
            line-height: 20px;
            padding-bottom: 20px;
        }
        p {
            line-height: 20px;
            padding: 5px;
            font-size: 1.2em;
        }
        #myCarousel {
            height: 400px;
        }
        .carousel-inner .item h2 {
            font-size: 1.5em;
            padding: 20px;
        }
        .carousel-inner .item p {
            font-size: 1em;
            padding: 20px;
        }
        #about li {
            font-size: 1em;
            padding: 5px;
        }
        #footer {
            text-align: center;
        }
    }

/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px) {
    .vcent-child-pad {
        padding: 15% 0;
    }
    /* #### iPhone 4+ Portrait or Landscape #### */
    
    @media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
        /* some CSS here */
    }
    /* #### Tablets Portrait or Landscape #### */
    
    @media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
        .vcent-child-pad {
            padding: 20% 0;
        }
    }
    /* #### Desktops #### */
    
    @media screen and (min-width: 1024px) {
        .vcent-child-pad {
            padding: 10% 0;
        }
    }
}