/*Computer*/
@media (min-width: 1200px)
{
}

/*ipad*/
@media (min-width: 768px) and (max-width: 991px)
{
}

/*ipad landscape*/
@media (min-width: 501px) and (max-width: 800px)
{
    section.hero-image{
        height: auto;
    }
    .hero-text h2{
        font-size: 6vw;
    }

}

@media (min-width: 801px) and (max-width: 992px){
    section.hero-image{
        height: 470px;
    }
}
@media (min-width: 1024px) and (max-width: 1366px)
{
    section.hero-image{
        height: auto !important;
    }
   
    
}

/*mobile*/
@media only screen and (max-width: 500px)
{
    section.hero-image{
        height: auto;
    }
    header#headers {        
        overflow: hidden;
    }
    

}

@media (min-width: 992px) and (max-width: 1280px){
    .about-box-img{
        height: 100%;
    }
    .about-box-img img{
        width: 100%;
        height: 96%;
        object-fit: cover;
    }
    .hero-text-2 h2 {
        padding-top: 35px;
        font-size: 65px;
        width: 991px;
        max-width: 100%;
        text-align: center;
        position: relative;
        color: #4e4e4e;
        font-family: 'Gidole Regular';
        font-weight: 700;
        position: absolute;
        top: 10px;
        width: 100%;
    }
    .hero-text-2 a {
        /* display: block; */
        font-size: 1.5em;
        margin: auto;
        position: absolute;
        top: 370px;
        left: 50%;
        transform: translatex(-50%);
        z-index: 1;
    }
}