:root {
    --theme-color: #ff8921;
    --theme-font: 'Montserrat';
    --sub-font: 'Roboto';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--sub-font);
}

.font-montserrat {
    font-family: var(--theme-font);
}

/* BANNER-START */
.banner {
    padding: 120px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 54, 83, 0.6);
    z-index: -1;
}

.banner h4::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--theme-color);
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: 5px auto;
    bottom: -15px;
}

.banner h1 {
    font-family: var(--theme-font);
    font-weight: 600;
    color: #fff;
    font-size: 34px;
    line-height: 48px;
    margin: 15px 0 15px 0;

}

.banner h1 span {
    font-family: var(--theme-font);
    font-weight: 600;
    color: var(--theme-color);
}

.banner .button {
    color: white;
    background-color: var(--theme-color);
    padding: 10px 34px;
    animation: btn 5s linear infinite;
}

@keyframes btn {
    25% {
        transform: translateY(7px);

    }

    75% {
        transform: translateY(-7px);
    }
}

/* BANNER-END */

/* SERVICE-INFO-START */
.service-info{
    padding: 50px 0;
}
.service-info .service-content h2{
    line-height: 40px;
}
.service-info .service-content h3 span{
    color: var(--theme-color);
}
.service-info .service-content h6{
    color: #6f6f6f;
    line-height: 25px;
}
.service-info .service-content p{
    text-align: justify;
    line-height: 25px;
    color: #6f6f6f;
}
/* SERVICE-INFO-END */

/* SERVICE-BENEFIT-START */
.service-benefit{
    padding: 50px 0;
    background-color: #f6f7fb;
}
.service-benefit-title h3 span{
    color: var(--theme-color);
}
.service-benefit-item{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 50px;
}
.service-benefit-item i{
    font-size: 40px;
    color: var(--theme-color);
} 
/* SERVICE-BENEFIT-END */


/* SERVICES-PROFIT-START */
.service-process{
    padding-top: 50px 0 50px 0;
}
.service-process .process-content h3 span{
    color: var(--theme-color);
}
.service-process .process-content p{
    text-align: justify;
    line-height: 25px;
    color: #6f6f6f;
}
/* SERVICES-PROFIT-END */


/* SERVICE-INQUIRY-START */
.service-inquiry{
    padding: 50px 0;
    background-color: #e9ebf1;
}
.service-inquiry h3 span{
    color: var(--theme-color);
}
.service-inquiry .button{
    color: white;
    background-color: var(--theme-color);
    padding: 10px 34px;
    animation: btn 5s linear infinite;
}
/* SERVICE-INQUIRY-END */