
/* Big tablet to 1200px (widths smaller than the pixel row) */
@media only screen and (max-width: 1200px) {
    .hero-text-box {
        width: 100%;
        padding: 0 2%;
    }
    
    .row { padding: 0 2%; }
        
}

/* Small tablet to big tablet: 768px to 1023px, iPad in potrait mode */
@media only screen and (max-width: 1023px) {
    body { font-size: 18px; }
    section { padding: 60px}

    .dropdown-item { font-size: 18px; }
    
    .long-copy {
        width: 80%;
        margin-left: 10%; /* centers the text */
    }
    .intro-box p {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .section-details div {
        margin-top: 10px;
    }
    
    .section-details div:first-child { 
        margin-top: 0px;
    }
    .details-contact-link {
        margin-bottom: 10px;     
    }
}

/* Small phones to small tablets: from 481px to 767px */
@media only screen and (max-width: 767px) {
    body { font-size: 16px; }
    section { padding: 20px 0; }
    .hero-text-box { padding: 0 4%; }

    .dropdown-item { font-size: 16px; }

    .intro-box p {
        padding: 5px;
        margin-bottom: 5px;
    }
    
    .logo {height: 50px;}

    .navbar-toggler,
    .collapsed {
        padding: 1.5%;
    }

    .navbar-toggler-icon,
    .close-icon {
        font-size: 70%;
    }

    h1 { font-size: 180%; }
    h2 { font-size: 150%; }
    
    .long-copy {
        width: 100%;
        margin-left: 0%; /* centers the text */
    }   

    .carousel-item {
        height: 200px !important;
    }
}


/* when width of screen is equal or less than 480px (iPhone etc) the following rules will apply*/
/* Small phones: from 0px to 480px */
@media only screen and (max-width: 480px) {
    section { padding: 25px 0; }
    
    .contact-form { width: 100%; }
    
    .carousel-item {
        height: 420px !important;
    }

    .quotes-carousel-item {
        height: 100vh !important;
    }
    
    /* .carousel-item {
        height: 20rem;
    }

    .carousel-item > img {
        height: 20rem;
    } */

}



















