.com-top {
    position: relative;
    display: block;
    width: 100%;
    /* height: 100vh; */
    background: url('../../img/front/about/transcon-indonesia-corporate-value-background.jpg') no-repeat;
    background-position: 50% !important;
    background-size: cover !important;
    color: #fff;
}

.com-top:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: url('../../img/front/transcon-indonesia-looping-background.png') repeat;
}

.com-top:after {
    content: '';
    position: absolute;
    display: block;
    width: 9px;
    height: 112px;
    bottom: 40px;
    left: calc((100% - 9px) / 2);
    background: url('../../img/front/about/bottom-arrow-icon.png') no-repeat;
    background-size: cover !important;
    background-position: left bottom;

    -webkit-animation: downArrow 2s linear infinite;
    -moz-animation: downArrow 2s linear infinite;
    -ms-animation: downArrow 2s linear infinite;
    animation: downArrow 2s linear infinite;
}

@keyframes downArrow {
    0% {
        background-position: bottom -100% left 0px;
    }
    50% {
        background-position: bottom 0% left 0px;
    }
	100% {
        background-position: bottom 200% left 0px;
    }
}

.com-top-content {
    position: relative;
    display: block;
    margin: 0px auto;
    text-align: center;
    font-size: 19px;
    /* z-index: 1; */
    font-weight: normal;
}

.com-top-content span {
    position: relative;
    display: block;
}

.com-top-title {
    font-size: 64px;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.com-top-desc {
    margin-bottom: 25px;
}

.com-top-content-line {
    position: relative;
    display: block;
    width: 220px;
    height: 5px;
    background: #3d4094;
    margin: 0px auto;
}

.com-top-content-line:after {
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    top: 0px;
    right: 0px;
    background: #ec3137;
}

.cor-content {
    position: relative;
    display: block;
    padding: 110px 0px;
}

.cor-group {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1264px;
    margin: 0px auto 110px;
}

.cor-group-item {
    position: relative;
    height: 424px;
}

.cor-group-item.mob {
    display: none;
}

.cor-group-item.teamwork.image {
    background: url('../../img/front/about/teamwork-image.jpg') no-repeat;
    background-position: 50% !important;
    background-size: cover !important;
}

.cor-group-item.continuous-improvement.image {
    background: url('../../img/front/about/continuous-improvements-image2.jpg') no-repeat;
    background-position: 50% !important;
    background-size: cover !important;
}

.cor-group-item.innovation.image {
    background: url('../../img/front/about/innovation-image.jpg') no-repeat;
    background-position: 50% !important;
    background-size: cover !important;
}

.cor-group-item.desc {
    padding: 0px 145px;
    background: #e8e8e8;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
}

.cor-group-item.desc:before {
    content: '';
    position: absolute;
    display: block;
    width: 482px;
    height: 267px;
    right: -87px;
    top: -22px;
    background: url('../../img/front/home/transcon-indonesia-digital-map-background-2x.png') no-repeat;
    background-position: top right !important;
    background-size: contain !important;
}

.cor-group-item-title {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 10px;
}

.cor-group-item-title:before {
    content: '';
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.cor-group-item.teamwork.desc .cor-group-item-title:before {
    width: 54px;
    height: 48px;
    background: url('../../img/front/about/teamwork-icon.png') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.cor-group-item.continuous-improvement.desc .cor-group-item-title:before {
    width: 54px;
    height: 54px;
    background: url('../../img/front/about/transcon-indonesia-continuous-improvement-icon-2x.png') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.cor-group-item.innovation.desc .cor-group-item-title:before {
    width: 54px;
    height: 54px;
    background: url('../../img/front/about/transcon-indonesia-innovation-icon-2x.png') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
}

.wa-icon.active {
    bottom: 60px !important;
}

/* Desktops and laptops */
@media screen and (max-width : 1366px) {
    .com-top-title {
        font-size: 55px;
        line-height: 50px;
    }

    .cor-group {
        max-width: 1024px;
    }

    .cor-group-item.desc {
        padding: 0px 90px;
    }

    .cor-group-item {
        height: 345px;
    }

    .cor-group-item-title {
        font-size: 40px;
        line-height: 40px;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {

}

/* Mobile */
@media screen and (max-width: 768px) {
    .cor-content {
        padding: 80px 0px;
    }

    .cor-group {
        margin-bottom: 80px;
    }

	.cor-group-item {
        position: relative;
        display: block;
        width: 100%;
        max-width: 100%;
        flex: 100%;
        height: auto;
        padding: 30px 40px !important;
    }

    .cor-group-item.mob {
        display: block;
    }

    .cor-group-item.desk {
        display: none;
    }

    .cor-group-item.image {
        height: 400px;
    }
}

@media screen and (max-width : 500px) {
    .com-top:after {
        width: 9px;
        height: 80px;
        bottom: 30px;

        -webkit-animation: downArrow 2.5s linear infinite;
        -moz-animation: downArrow 2.5s linear infinite;
        -ms-animation: downArrow 2.5s linear infinite;
        animation: downArrow 2.5s linear infinite;
    }

	.com-top-content span {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 25px;
    }

	.com-top-content span.com-top-title {
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 15px;
    }

    .com-top-content-line {
        width: 140px;
    }

    .cor-content {
        padding: 50px 0px;
    }

    .cor-group {
        width: calc(100% - 40px);
        margin: 0px auto 50px;
    }

    .cor-group:last-child {
        margin-bottom: 30px;
    }

    .cor-group-item.image {
        height: 215px;
    }

    .cor-group-item {
        padding: 30px 20px !important;
    }

    .cor-group-item-title:before {
        margin-bottom: 15px;
    }

    .cor-group-item.teamwork.desc .cor-group-item-title:before {
        width: 40px;
        height: 35px;
    }

    .cor-group-item.continuous-improvement.desc .cor-group-item-title:before {
        width: 35px;
        height: 35px;
    }

    .cor-group-item.innovation.desc .cor-group-item-title:before {
        width: 35px;
        height: 35px;
    }

    .cor-group-item-title {
        font-size: 30px;
        line-height: 32px;
    }

    .cor-group-item.desc {
        font-size: 14px;
        line-height: 24px;
    }

    .wa-icon.active {
        bottom: 20px !important;
    }

    .cor-group-item.desc:before {
        width: 300px;
        height: 165px;
    }
}
