/* Normal desktop :. */
@media (min-width: 1200px) {
    
}

/* Mini desktop :1200px. */
@media (max-width: 1440px) {
    #fixSiteName{
        left: 5vw;
    }
}
 
/* Tablet :991px. */
@media (max-width: 1199px) {
    /* header */
    header .nav-link {
        color: #0D263B;
    }
    header.scrolled .nav-link{
        color: #0D263B !important;
    }
    #fixSiteName {
        display: none !important;
    }
    .hero-section {
        height: 680px;
    }
}
 @media (max-width: 991px) {
.hero-section {
        height: 520px;
    }
 }
/* Large mobile :767px. */
@media (max-width: 767px) {
    /* default style */
    h1 {
        font-size: 40px;
        line-height: 44px;
    }
    h2 {
        font-size: 36px;
        line-height: 44px;
    }
    h3 {
        font-size: 30px;
        line-height: 40px;
    }
    section,
    .home-services .overlay {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    /* others start */
    .hero-section {
        height: 410px;
    }
    .sister-concern .logo-box {
        width: 165px;
        height: 165px;
    }
    .home-about .img-lg img {
        height: 220px;
    }
    
    .footer-top-area {
        padding: 40px 0;
    }
    .footer-middle-area {
        padding: 30px 15px;
    }
}
 
/* small mobile :576px. */
@media (max-width: 576px) {
    .hero-section iframe{
        transform: scale(1.8)
    }

}