.services{
    padding: 90px 0 180px 0;
}
.services .container{
    position: relative;
}
.serviceList{
    padding-top: 105px;
}
.serviceList .text span{
    font-family: norm!important;
}
.horizontalHeader{
    position: absolute;
    left: 15px;
    transform: rotate(-90deg) translate(-190px , -227px)!important;
}
.horizontalHeader span{
    font-size: 110px;
    font-family: caps;
    color: #f5f5f5;
    text-shadow: -1px -1px 0 #cccccc, 
                1px -1px 0 #cccccc, 
                -1px 1px 0 #cccccc, 
                1px 1px 0 #cccccc;
}
.services .active-service .header{
    font-size: 70px;
    font-family: caps;
    color: #4D4D4D;
    font-weight: bold;
    padding-left: 14px;
}
.services .active-service .header span{
    color: #FCB64E;
    font-size: 70px;
    font-family: caps;
}
.services .active-service .text{
    padding-left: 14px;
}
.services .active-service .link{
    padding-right: 40px;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}
.services .active-service .img{
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    min-height: 400px;
    position: relative;
    margin-top: 60px;
}
.services .active-service .img img{
    top: 0;
    left: 50%;
    max-width: 100%;
    transform: scale(0) translateX(-50%);
    opacity: 0;
    transition: 0.4s;
    position: absolute;
    object-fit: contain;
    max-height: 100%;
}
.services .active-service .img img.active{
    opacity: 1;
    transform: scale(1) translateX(-50%);
}

/* @media (max-width: 1366px) {
    .services .active-service .header{
        line-height: 60px;
        margin-bottom: 10px;
    }
    .services .horizontalHeader{
        top: -15px;
        left: 35px;
    }
    .services .horizontalHeader span{
        font-size: 110px;
    }
} */
@media (max-width: 1199px) {
    .services{
        padding: 60px 0 50px 0;
    }
}
@media (max-width: 991px) {
    .serviceList{
        padding-top: 0px;
    }
}
@media (max-width: 767px) {
    .services .active-service .img{
        padding-bottom: 40px;
    }
}
@media (max-width: 575px) {
    .services .active-service .header,
    .services .active-service .header span{
        font-size: 50px;
    }
    .services .active-service .img{
        min-height: 200px;
    }
    .horizontalHeader{
        display: none;
    }
}

.service-box{
    display: flex;
    margin-bottom: 30px;
}
.service-box .left{
    height: 70px;
    width: 90px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    font-size: 56px;
    font-weight: bold;
    font-family: caps;
    color: #4D4D4D;
    transition: 0.2s;
}
.service-box .right h3{
    font-size: 16px;
    font-family: regular;
    margin-bottom: 10px;
    transition: 0.2s;
}
.service-box .right .text{
    max-height: 40px;
    overflow: hidden;
}
.service-box .right .text p{
    font-size: 12px;
}
.service-box:hover .left{
    color: #f5f5f5;
    text-shadow: -1px -1px 0 #FCB64E, 1px -1px 0 #FCB64E, -1px 1px 0 #FCB64E, 1px 1px 0 #FCB64E;
}
.service-box:hover h3{
    color: #FCB64E;
}
.service-box.collapsable .text{
    position: relative;
    padding-right: 35px;
    transition: 0.2s;
    z-index: -1;
}
.service-box{
    position: relative;
    z-index: 4;
}
.service-box.collapsable .text ul{
    margin-left: 15px;
}
.collapseButton{
    position: absolute;
    display: inline-block;
    top: 25px;
    right: 0;
    width: 15px;
    height: 15px;
    background-image: url(../img/plus.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.4s;
}
.service-box.collapsable.active .collapseButton{
    background-image: url(../img/minus.svg);
}
.service-box.collapsable.active .text{
    max-height: 400px;
}
@media (max-width: 1400px){
    .services{
        padding: 90px 0 50px 0;
    }
}
@media (max-width: 575px){
    .service-box .left{
        width: 50px;
    }
    .service-box.collapsable.active .text{
        max-height: 700px;
    }
    .service-box.collapsable .text{
        transition: 0.3s;
    }
}