@media (min-width: 1281px) {

    /* CSS */

}

@media (min-width: 1280px) and (max-width: 1380px) {
    .slider-section {
        position: relative;
        height: 500px;
        overflow: hidden;
    }

    .carousel-caption{
        position: absolute;
        left: 10%;
        top: 0;
        z-index: 500;
        padding: 100px;
        box-sizing: border-box;
        text-align: left;
    }

    .carousel-caption h1{
        font-size: 40px;
        font-family: 'Barlow', sans-serif;
        font-weight: 700;
        text-align: left;
    }

    .carousel-caption p{
        font-size: 20px;
        color: white;
        text-align: left;
    }

}
/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

    /* CSS */

}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

    /* CSS */

}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */

}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    .container {
        width: 100% !important;
        max-width: 100%;
    }

    .top-header-right{
        padding-right: 30px
    }

    .slider-section {
        height: 400px;
    }

    .slider-section img{
        height: 400px;
    }

}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

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

    .home-about-section{
        display: none;
    }

    .top-header-logo-text-sec{
        margin-left: 0px;
        width: 75%;
    }

    .top-section .title {
        font-size: 18px;
        color: #16365D;
        text-transform: uppercase;
        font-weight: 700;
        margin-top: 0px;
        text-align: left;
    }

    .header-logo{
        height: 60px;
        width: 90px;
    }

    .hide-mobile-view{
        display: none;
    }

    .show-mobile-view{
        display: block;
    }

    .contact-number{
        font-size: 13px !important;
        text-align: left;
        padding-left: 80px;
    }


    .slider-section {
        height: 300px;
    }

    .slider-section img{
        height: 300px;
    }

    .slider {
        min-height: 300px;
        max-height: 300px;
    }

    .carousel-caption{
        position: absolute;
        left: 0;
        top: 0;
        z-index: 500;
        padding: 10px;
        box-sizing: border-box;
        text-align: left;
        width: 100%;
        height: 100%;
    }

    .carousel-caption h1{
        font-size: 20px;
        font-family: 'Barlow', sans-serif;
        font-weight: 700;
        text-align: left;
    }

    .carousel-caption p{
        font-size: 20px;
        color: white;
        text-align: left;
    }

    .carousel-caption button{
        padding: 10px 30px;
        font-size: 18px;
        color: white;
        background-color: tomato;
        border:1px solid tomato;
        margin-top: 10px;
    }

    .carousel-caption button:hover{
        opacity: 0.5;
        color: white;
    }

    .d-none {
        display: block !important;
    }

}
