@charset "UTF-8";
.overlay-gradient:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background: -webkit-gradient(linear, left top, right bottom, from(#252232), to(#000));
    background: linear-gradient(to bottom right, #252232, #000);
}

.overlay-gradient:hover {
    background-position: 10%;
    -webkit-transition: background-position 0.5s;
    transition: background-position 0.5s;
}

.overlay-gradient:hover:before {
    opacity: 0.8;
    background: -webkit-gradient(linear, left top, right bottom, from(#CE3853), to(#252232));
    background: linear-gradient(to bottom right, #CE3853, #252232);
}

.overlay-dark {
    position: relative;
}

.overlay-dark:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    background: #252232;
}

.icontext {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
}

.icontext p {
    margin-bottom: 0;
}

.icontext .text {
    width: 100%;
    line-height: 1.25;
}

.icontext .icon {
    position: relative;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.icontext .title {
    display: block;
    margin-bottom: 0;
}


/* =================  DEFINED VARIABLES =================== */

.icon-xs,
.icon-sm,
.icon-md,
.icon-lg {
    display: inline-block;
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.icon-xs {
    width: 32px;
    height: 32px;
    line-height: 32px !important;
    font-size: 16px;
}

.icon-sm {
    width: 48px;
    height: 48px;
    line-height: 48px !important;
    font-size: 20px;
}

.icon-md {
    width: 72px;
    height: 72px;
    line-height: 72px !important;
    font-size: 28px;
}

.icon-lg {
    width: 96px;
    height: 96px;
    line-height: 96px !important;
    font-size: 38px;
}

.img-xs,
.img-sm,
.img-md,
.img-lg {
    -o-object-fit: cover;
    object-fit: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.img-xs {
    width: 48px;
    height: 48px;
}

.img-sm {
    width: 80px;
    height: 80px;
}

.img-md {
    width: 140px;
    height: 140px;
}

.img-lg {
    width: 250px;
    height: 250px;
}

.center-xy {
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-y {
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center-x {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.vh-100 {
    height: 100vh;
}

.overflow-h {
    overflow: hidden;
}

.flip-h {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.opacity {
    opacity: 0.5;
}

[class*=hover-] {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hover-bg:hover {
    background: #CE3853;
    /* For browsers that do not support gradients */
    background: -webkit-gradient(linear, left top, right bottom, from(#CE3853), to(#CE3853));
    background: linear-gradient(to bottom right, #CE3853, #CE3853);
    /* Standard syntax */
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hover-zoom:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


/* ============== spacing ============== */

.padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding-top {
    padding-top: 80px;
}

.padding-bottom {
    padding-bottom: 80px;
}

.padding-y-lg {
    padding-top: 150px;
    padding-bottom: 150px;
}

.padding-top-lg {
    padding-top: 150px;
}

.padding-bottom-lg {
    padding-bottom: 150px;
}

.padding-y-sm {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-top-sm {
    padding-top: 30px;
}

.padding-bottom-sm {
    padding-bottom: 30px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

var {
    font-style: normal;
}

figure {
    margin-bottom: 0;
}

.list-icon {
    list-style: none;
    padding-left: 0;
}

.list-icon li {
    margin-bottom: 7px;
    position: relative;
    padding-left: 30px;
}

.list-icon .icon {
    width: 22px;
    margin-right: 15px;
    vertical-align: middle;
    text-align: center;
    color: #6c757d;
    position: absolute;
    top: 3px;
    left: 0;
}

.list-icon span {
    vertical-align: middle;
}

.list-bullet {
    list-style: none;
    padding-left: 0;
}

.list-bullet li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.list-bullet li::before {
    content: " ";
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    border-radius: 100%;
    height: 10px;
    background: #CE3853;
}

.list-normal {
    list-style: none;
    padding-left: 0;
}

.list-normal li {
    padding-left: 1em;
    margin-bottom: 7px;
}

.list-normal li:before {
    content: "•";
    color: #CE3853;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.section-header .logo {
    height: 40px;
}

.section-header .navbar {
    background-color: rgba(37, 34, 50, 0.1);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 10;
}

.section-header .navbar .nav-link {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.section-header .navbar .nav-link:hover {
    color: #CE3853;
}

[class*=title] {
    font-family: "Rubik", sans-serif;
    font-weight: 500;
}

.section-heading {
    margin-bottom: 50px;
    margin-top: 0;
}

.title-section {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    position: relative;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.title-section:after {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 100px;
    top: 26px;
    left: 0;
    background-color: #CE3853;
}

.section-header-itformula .logo {
    height: 40px;
}

.section-header-itformula .navbar {
    background-color: rgba(37, 34, 50, 0.1);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 10;
}

.section-header-itformula .navbar .nav-link {
    color: #fff;
}

.section-header-itformula .navbar .form-select {
    width: 90px!important;
    background-color: transparent;
    color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E")!important;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.section-header-itformula .navbar .form-select option {
    color: black;
}

.section-intro-itformula {
    background-color: #722331;
    min-height: 95vh;
    position: relative;
    overflow: hidden;
}

.section-intro-itformula .title-intro {
    font-size: 60px;
    font-weight: 500;
}

.section-intro-itformula .intro-text {
    margin-top: 180px;
    z-index: 10;
    position: relative;
}

.section-intro-itformula .godown {
    position: absolute;
    left: 50%;
    bottom: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.section-intro-itformula .godown img {
    -webkit-animation: bounce_down 2s ease-in-out infinite;
    animation: bounce_down 2s ease-in-out infinite;
}

.bg-video {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    position: absolute;
    mix-blend-mode: multiply;
    opacity: 0.6;
}

.img-about-wrap {
    position: relative;
    width: 500px;
    height: 480px;
    background-color: #CE3853;
}

.img-about-wrap .img-placeholder {
    position: absolute;
    display: block;
    z-index: 1;
    background-color: #252232;
    width: 500px;
    height: 480px;
    top: 30px;
    left: 30px;
    overflow: hidden;
}

.img-about-wrap .img-placeholder img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.item-service {
    background: #252232;
    height: 480px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.item-service .info-service {
    padding: 30px;
    color: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
}

.item-service .subtitle {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: normal;
    position: relative;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.item-service .subtitle:after {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 100px;
    top: 26px;
    left: 0;
    background-color: #CE3853;
}

.serv-vertical-tab a {
    display: block;
    background-color: #3D3950;
    padding: 50px 20px;
    margin: 2px;
    color: #fff;
    font-family: "Rubik";
}

.serv-vertical-tab a:hover,
.serv-vertical-tab a.active {
    background-color: #CE3853;
}

.serv-tab-info {
    padding: 3rem;
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.tab-serv-content {
    position: relative;
    z-index: 10;
}

.contact-item {
    margin-bottom: 1rem;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-item dt {
    width: 180px;
    color: #000;
}

.contact-map-btn {
    background-position: center;
    width: 480px;
    height: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.col-contact-right {
    background-color: #f6e2e5;
    position: relative;
}

.col-contact-right:after {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 500px;
    top: 0;
    right: -90%;
    background-color: #f6e2e5;
}

@-webkit-keyframes bounce_down {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    60% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@keyframes bounce_down {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    60% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

.section-header-callcenter .logo {
    height: 40px;
}

.section-header-callcenter .navbar {
    background-color: rgba(37, 34, 50, 0.1);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 10;
}

.section-header-callcenter .navbar .form-select {
    width: 90px!important;
    background-color: transparent;
    color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E")!important;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.section-header-callcenter .navbar .form-select option {
    color: black;
}

.section-header-callcenter .navbar .nav-link {
    color: #fff;
}

.section-intro-callcenter {
    background-color: #252232;
    min-height: 95vh;
    position: relative;
    background-position: center center;
}

.section-intro-callcenter .audio-wrap {
    bottom: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.section-intro-callcenter .title-intro {
    font-size: 60px;
    font-weight: 500;
    color: #fff;
}

.section-intro-callcenter .subtitle {
    color: #fff;
}

.section-intro-callcenter .intro-text {
    margin-top: 180px;
    z-index: 10;
    position: relative;
}

.section-intro-callcenter .btn-listen {
    bottom: -18px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
}

.item-avoid .img-wrap {
    position: relative;
}

.item-avoid .img-x {
    position: absolute;
    bottom: -22px;
    left: 10px;
}

.item-avoid .info-wrap {
    max-width: 80%;
    margin-top: 30px;
    font-family: Rubik, Helvetica, "Segoe UI";
    font-weight: 500;
    color: #252232;
}

.item-feature {
    margin-bottom: 2rem;
}

.item-feature .icon-feature {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #F6D0D5;
}

.item-feature .title {
    font-size: 18px;
    color: #252232;
}

.box-step {
    min-height: 136px;
}

.box-industry {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.box-industry .icon {
    margin-right: 1rem;
}

.box-industry .icon img {
    height: 40px;
}

.box-industry .title {
    margin-bottom: 0;
}

.box-about-callcenter {
    height: 300px;
}

.audio-wrap {
    text-align: center;
    height: 40px;
}

.audio {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.audio span {
    width: 16px;
    height: 40px;
    background: #CE3853;
    display: inline-block;
}

.audio span:nth-child(1) {
    -webkit-animation: animationTest 1.2s infinite ease-in-out;
    animation: animationTest 1.2s infinite ease-in-out;
}

.audio span:nth-child(2) {
    -webkit-animation: animationTest 1.25s infinite ease-in-out;
    animation: animationTest 1.25s infinite ease-in-out;
}

.audio span:nth-child(3) {
    -webkit-animation: animationTest 1.3s infinite ease-in-out;
    animation: animationTest 1.3s infinite ease-in-out;
}

.audio span:nth-child(4) {
    -webkit-animation: animationTest 1s infinite ease-in-out;
    animation: animationTest 1s infinite ease-in-out;
}

.audio span:nth-child(5) {
    -webkit-animation: animationTest 1.2s infinite ease-in-out;
    animation: animationTest 1.2s infinite ease-in-out;
}

.audio span:nth-child(6) {
    -webkit-animation: animationTest 1.6s infinite ease-in-out;
    animation: animationTest 1.6s infinite ease-in-out;
}

.audio span:nth-child(7) {
    -webkit-animation: animationTest 0.8s infinite ease-in-out;
    animation: animationTest 0.8s infinite ease-in-out;
}

.audio span:nth-child(8) {
    -webkit-animation: animationTest 0.9s infinite ease-in-out;
    animation: animationTest 0.9s infinite ease-in-out;
}

.audio span:nth-child(9) {
    -webkit-animation: animationTest 1s infinite ease-in-out;
    animation: animationTest 1s infinite ease-in-out;
}

.audio span:nth-child(9) {
    -webkit-animation: animationTest 1.1s infinite ease-in-out;
    animation: animationTest 1.1s infinite ease-in-out;
}

.audio span:nth-child(10) {
    -webkit-animation: animationTest 0.8s infinite ease-in-out;
    animation: animationTest 0.8s infinite ease-in-out;
}

.audio span:nth-child(11) {
    -webkit-animation: animationTest 0.9s infinite ease-in-out;
    animation: animationTest 0.9s infinite ease-in-out;
}

.audio span:nth-child(12) {
    -webkit-animation: animationTest 1s infinite ease-in-out;
    animation: animationTest 1s infinite ease-in-out;
}

.audio span:nth-child(13) {
    -webkit-animation: animationTest 1.1s infinite ease-in-out;
    animation: animationTest 1.1s infinite ease-in-out;
}

@-webkit-keyframes animationTest {
    0% {
        height: 2px;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 2px;
    }
}

@keyframes animationTest {
    0% {
        height: 2px;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 2px;
    }
}

.video-callcenter {
    border-radius: 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.video-callcenter video {
    position: relative;
    z-index: 1;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0px;
    width: 96%;
    overflow: hidden;
}