/* header */

.header-box {
    text-align: center;
    background-attachment: fixed;
}

.header-box div h1 {
    position: relative;
    color: white;
    opacity: 0;
    animation: fade-in .75s forwards ease-in;
    animation-delay: .25s;
}

.header-box div button {
    position: relative;
    opacity: 0;
    animation: fade-in .75s forwards ease-in;
    animation-delay: .5s;
}

.header-box div button:hover {
    color: #2F4858;
}

/*services*/

.our-services-title {
    color: #2F4858;
}

.section-our-services {
    opacity: 0;
}

.section-our-services.on-view {
    animation: fade-in .5s forwards ease-in;
    animation-delay: .25s;
}

.section-our-services ul {
    padding: 0;
    font-size: 14px;
    color: #2F4858;
    margin: 0;
}

/* section promo */

#section-promo {
    opacity: 0;
}

#section-promo.on-view {
    animation: fade-in .75s forwards ease-in;
}

#promo-box {
    height: 100%;
}

#promo-title span {
    font-size: 32px;
    font-weight: bold;
}

#promo-title span:first-of-type {
    color: #2F4858;
}

#promo-title span:last-of-type {
    color: #2F4858;
}

.promo-text {
    font-size: 18px;
    color: #2F4858;
}

.promo-img {
    background-position: top;
    background-size: 600px;
    background-repeat: no-repeat;
    height: 500px;
}

#promo-contact-us {
    line-height: 32px;
}

/*content*/

.content-text {
    height: 100%;
}

.content-img {
    height: 100%;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 400px; 
}

.content-text ul li {
    list-style-type: disc !important;
}

.fadein-item {
    opacity: 0;
}

.fadein-item.on-view {
    animation: fade-in .75s forwards ease-in;
    animation-delay: .25s;
}

/*ask-a-quote*/

#section-ask-a-quote {
    opacity: 0;
}

#section-ask-a-quote.on-view {
    animation: fade-in .75s forwards;
    animation-delay: .5s;
}

#section-ask-a-quote-tit h2 {
    color: #2F4858;
}

.section-our-services div div {
    width: 25%;
}

.fixed-bg {
    background-position: bottom;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

/*responsive*/


/*md*/

@media (max-width: 991.98px) {
    .content-img {
        height: 300px;
    }
    
    .section-our-services div div {
        width: 50%;
    }
}

/*sm*/

@media (max-width: 575.98px) {
    .content-img {
        height: 150px;
    }
    
    .section-our-services div div {
        width: 100%;
    }
}