/*
    Theme Name: Gravitas Integrated
    Author: Gravitas Digital Sdn. Bhd.
    Version: 1.0
*/

/* @font-face {
    font-family: "Helvetica Neue";
    src: url("/font/HelveticaNeue_v1_0.ttf");
} */

/* @font-face {
    font-family: 'Bebas Neue', cursive;
    src: url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
} */

/* @font-face {
    font-family: 'Work Sans', sans-serif;
   src: url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300&display=swap"); 
}
*/


html {
    scroll-behavior: smooth;
}

body {
    background-color: #000 !important;
    color: #fff !important;
    overflow-x: hidden;
    position: relative;
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: #FABDB9;
}

::selection {
    color: #fff;
    background: #70707063;
}

*::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}


*::-webkit-scrollbar-track {
    background: #353535;
}

*::-webkit-scrollbar-thumb {
    background-color: #707070;
    border-radius: 20px;
}

.full-h {
    /* height: 100vh; */
    padding: 5rem;
}

h1 {
    /* font-weight: 800 !important; */
    font-size: 3.5rem !important;
    font-family: Bebas Neue, Helvetica, sans-serif !important;
}

h2, h4, h5 {
    /* font-weight: 800 !important; */
    font-family: Bebas Neue, Helvetica, sans-serif !important;
}

p {
    font-family: 'Work Sans', Helvetica, sans-serif !important;
    font-size: 1.1rem;
    font-weight: 300 !important;
}

strong {
    font-weight: 600 !important;
}

address {
    font-size: 1rem;
    font-family: Work Sans, Helvetica, sans-serif !important;
    font-weight: 300 !important;
}

section {
    min-height: 100vh;
}

a {
    text-decoration: none !important;
}

a:hover {
    color: #fff !important;
}

.toast {
    background-color: #3535356b !important;
}

.nav-toast {
    top: 2.5%;
}

.menu-icon {
    height: 30px;
    width: 30px;
    position: fixed;
    z-index: 1001;
    right: 50px;
    top: 50px;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

.menu-icon:hover .menu-icon__line-left-1,
.menu-icon:hover .menu-icon__line-left-2,
.menu-icon:hover .menu-icon__line-left-3,
.menu-icon:hover .menu-icon__line-right-1,
.menu-icon:hover .menu-icon__line-right-2,
.menu-icon:hover .menu-icon__line-right-3 {
    width: 30px;
}

.nav-active .menu-icon:hover .menu-icon__line-left-1,
.nav-active .menu-icon:hover .menu-icon__line-right-3 {
    width: 8px;
}

.nav-active .menu-icon:hover .menu-icon__line-left-2,
.nav-active .menu-icon:hover .menu-icon__line-right-2 {
    width: 12px;
}

.nav-active .menu-icon:hover .menu-icon__line-left-3,
.nav-active .menu-icon:hover .menu-icon__line-right-1 {
    width: 16px;
}

.menu-icon__line {
    height: 1px;
    width: 30px;
    display: block;
    background-color: #ffffff;
    margin-bottom: 4px;
    transition: transform 0.2s ease, background-color 0.5s ease, width 0.5s ease;
}

.menu-icon__line-left-1 {
    transition: width 0.5s ease;
    width: 8px;
}

.menu-icon__line-left-2 {
    transition: width 0.5s ease;
    width: 12px;
}

.menu-icon__line-left-3 {
    transition: width 0.5s ease;
    width: 16px;
}

.menu-icon__line-right-1 {
    float: right;
    width: 16px;
    transition: width 0.5s ease;
}

.menu-icon__line-right-2 {
    float: right;
    width: 12px;
    transition: width 0.5s ease;
}

.menu-icon__line-right-3 {
    float: right;
    width: 8px;
    transition: width 0.5s ease;
}

.nav__ {
    position: fixed;
    z-index: 1000;
    visibility: hidden;
}

.nav__:before,
.nav__:after {
    content: "";
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: -1;
    transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
    transform: translateX(0%) translateY(-100%);
}

.nav__:after {
    transition-delay: 0s;
}

.nav__:before {
    transition-delay: 0.1s;
}

.nav__content {
    position: fixed;
    top: 50%;
    transform: translate(0%, -50%);
    width: 100%;
    text-align: center;
    font-size: calc(2vw + 10px);
    font-weight: 200;
    cursor: pointer;
}

.nav__list, .nav__list-2 {
    padding: 0 5rem;
}

.nav__list-item {
    position: relative;
    display: inline-block;
    transition-delay: 0.8s;
    opacity: 0;
    transform: translate(0%, 100%);
    transition: opacity 0.2s ease, transform 0.3s ease;
    /* margin-right: 25px; */
    font-family: Bebas Neue, Helvetica, sans-serif !important;
    padding: .5rem 0;
}

.nav__list-item a {
    color: #707070;
    font-size: 1.6rem;
    transition: all 0.25s ease;
}

.nav__list-item:hover a {
    color: #fff;
    font-size: 2rem;
}

.nav__list-item:before {
    content: "";
    position: absolute;
    background: #000000;
    width: 20px;
    height: 1px;
    top: 100%;
    transform: translate(0%, 0%);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav__list-item:hover:before {
    width: 100%;
}

body.nav-active .menu-icon {
    overflow: initial;
}

body.nav-active .menu-icon__line {
    background-color: #fff;
    transform: translateX(0px) rotate(-45deg);
}

body.nav-active .menu-icon__line-left-1 {
    transform: translateX(14px) translateY(-3px) rotate(45deg);
}

body.nav-active .menu-icon__line-left-2 {
    transform: translateX(14px) translateY(-9px) rotate(45deg);
}

body.nav-active .menu-icon__line-left-3 {
    transform: translateX(1px) translateY(-25px) rotate(45deg);
}

body.nav-active .menu-icon__line-right-1 {
    transform: translateX(-2px) rotate(135deg);
}

body.nav-active .menu-icon__line-right-2 {
    transform: translateX(-15px) translateY(6px) rotate(135deg);
}

body.nav-active .menu-icon__line-right-3 {
    transform: translateX(-15px) translateY(2px) rotate(135deg);
}

body.nav-active .nav__ {
    visibility: visible;
}

body.nav-active .nav__:before,
body.nav-active .nav__:after {
    transform: translateX(0%) translateY(0%);
}

body.nav-active .nav__:after {
    transition-delay: 0.1s;
}

body.nav-active .nav__:before {
    transition-delay: 0s;
}

body.nav-active .nav__list-item {
    opacity: 1;
    transform: translateX(0%);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

body.nav-active .nav__list .nav__list-item:nth-child(0), body.nav-active .nav__list-2 .nav__list-item:nth-child(0) {
    transition-delay: 0.5s;
}

body.nav-active .nav__list .nav__list-item:nth-child(1), body.nav-active .nav__list-2 .nav__list-item:nth-child(1) {
    transition-delay: 0.6s;
}

body.nav-active .nav__list .nav__list-item:nth-child(2), body.nav-active .nav__list-2 .nav__list-item:nth-child(2) {
    transition-delay: 0.7s;
}

body.nav-active .nav__list .nav__list-item:nth-child(3), body.nav-active .nav__list-2 .nav__list-item:nth-child(3) {
    transition-delay: 0.8s;
}

body.nav-active .nav__list .nav__list-item:nth-child(4), body.nav-active .nav__list-2 .nav__list-item:nth-child(4) {
    transition-delay: 0.9s;
}

body.nav-active .nav__list .nav__list-item:nth-child(5), body.nav-active .nav__list-2 .nav__list-item:nth-child(5) {
    transition-delay: 1s;
}

body.nav-active .nav__list .nav__list-item:nth-child(6), body.nav-active .nav__list-2 .nav__list-item:nth-child(6) {
    transition-delay: 1.1s;
}

body.nav-active .nav__list .nav__list-item:nth-child(7), body.nav-active .nav__list-2 .nav__list-item:nth-child(7) {
    transition-delay: 1.2s;
}

body.nav-active .nav__list .nav__list-item:nth-child(8), body.nav-active .nav__list-2 .nav__list-item:nth-child(8) {
    transition-delay: 1.3s;
}

body.nav-active .nav__list .nav__list-item:nth-child(9), body.nav-active .nav__list-2 .nav__list-item:nth-child(9) {
    transition-delay: 1.4s;
}

.text-gradient {
    background: linear-gradient(to right,
            #fff 50%,
            #FABDB9 50%,
            #fff,
            #FABDB9);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 1s ease-in-out;
    display: inline !important;
}

.text-gradient:hover {
    background-position: -100%;
}

.small-header {
    line-height: 0.4 !important;
}

.logo {
    width: 15rem;
    max-width: 100%;
}

.case-study-img {
    width:100%;
}

.pink-line {
    border: 3px solid #FABDB9;
    opacity: 1;
    width: 4rem;
    height: 1px;
    background-color: #FABDB9;
}

.hashtag {
    font-family: Bebas Neue, Helvetica, sans-serif !important;
    color: #707070;
    font-size: 1.1rem;
    transition: font-size .5s ease;
}

.connect a.hashtag {
    margin-bottom: .8rem;
    padding: 0 1rem;
}

.menu-wrapper .hashtag {
    font-family: Bebas Neue, Helvetica, sans-serif !important;
    color: #707070;
    font-size: 1.2rem;
}

.menu-wrapper {
    border-top: 1px solid #707070;
    padding-top: .2rem;
    padding-bottom: .1rem;
}


.btn-new {
    border: 1px solid #fff;
    border-radius: 3rem;
    background-color: transparent;
    color: #707070;
    font-family: Bebas Neue, Helvetica, sans-serif !important;
    padding: 0.35rem 2.5rem 0.35rem 3rem;
    font-size: 1.1rem;
    transition: all .5s;
    position: relative;
}

.btn-new::before {
    width: .8rem;
    height: .8rem;
    background-color: transparent;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #FABDB9;
    top: 11px;
    left: 14px;
    content: '';
}

.btn-new::after {
    width: 0;
    height: 1px;
    background-color: #707070;
    content: '';
    position: absolute;
    top: 17px;
    left: 27px;
    transition: all .8s;
}

.btn-new:hover, .btn-new-2:hover {
    color: #fff;
}

.btn-new:hover::after {
    width: 70%;
}

.btn-new-2 {
    border: 0;
    background-color: transparent;
    color: #707070;
    font-family: Bebas Neue, Helvetica, sans-serif !important;
    padding: 0 2.5rem 0 1.8rem;
    font-size: 1.1rem;
    transition: all .5s;
    position: relative;
}

.btn-new-2::before {
    width: .8rem;
    height: .8rem;
    background-color: transparent;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #FABDB9;
    top: 6px;
    left: 3px;
    content: '';
}

.btn-new-2::after {
    width: 0;
    height: 1px;
    background-color: #707070;
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    transition: all .8s;
}

.btn-new-2:hover::after {
    width: 65%;
}


.item-selector, .service-type h4 {
    font-family: Bebas Neue, Helvetica, sans-serif !important;
    display: flex;
    align-items: center;
    color: #707070;
    transition: all .5s ease;
    cursor: pointer;
}

.item-selector span, .service-type span {
    padding-left: 1.25rem;
    transition: font-size .5s ease;
}

.item-selector.active, .service-type.active span {
    color: #fff;
}

.item-selector.active span {
    font-size: 3.5rem;
    transition: all .5s ease;
}

.item-selector:hover, .service-type:hover span {
    transition: all .5s ease;
    color: #fff;
}

.service-type .pink-line {
    opacity: 0;
    transition: opacity .25s ease;
}

.service-type.active .pink-line {
    opacity: 1;
}

.nav-item .pink-line {
    opacity: 0;
    transition: opacity .25s ease;
}

.nav-item .active .pink-line {
    opacity: 1;
}

.item-desc {
    transform: translateX(100%);
    transition: all .5s ease-in-out;
    grid-row-start: 1;
    grid-column-start: 1;
    opacity: 0;
    /* display: none; */
    visibility: hidden;
}

.item-desc.active {
    transform: translateX(0);
    opacity: 1;
    /* display: block; */
    visibility: visible;
    transition: all 1s ease-in-out;
}

.box {
    border: 1px solid #70707040;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

.contact-box {
    padding: 4rem 0;
}

.box img {
    width: 8rem;
    padding: 2rem;
}

.team-title {
    font-size: 1rem;
    margin-top: 0.25rem;
}

.items {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    user-select: none;
    /* cursor: grab; */
}

.items.active {
    /* cursor: grabbing;
    cursor: -webkit-grabbing; */
    transform: scale(1);
}

.overlay {
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 10;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    transition: all .25s ease-in-out;
    visibility: hidden;
    opacity: 0;

}

.team-img {
    overflow-y: hidden;
    /* cursor: auto; */
}

.team-img:hover .overlay {
    transform: translateX(0%);
    transition: all .25s ease-in-out;
    visibility: visible;
    opacity: 1;
}

.info-overlay {
    bottom: 0;
    left: 5%;
}

.info-overlay h2 {
    margin: 0;
}

.info-overlay span {
    color: #fff;
}

.info-overlay h1 {
    line-height: 0.8;
}


.footer {
    padding: 2rem 0;
    /* border-top: 1px solid #707070; */
}

.footer p {
    margin: 0;
}

.list-group-item {
    padding: 0 !important;
    background-color: unset !important;
    border: none !important;
    transition: all .5s ease;
}

.list-group-item-action {
    color: #707070 !important;
}

.list-group-item.active {
    color: #fff !important;
    font-size: 1.2rem;
}

.expertise-desc p {
    margin: 0;
}

.tags {
    border: 1px solid #707070;
    border-radius: 3rem;
    background-color: transparent;
    color: #707070;
    padding: 0.35rem 1rem;
    margin: 0.25rem 0;
    cursor: auto !important;
}

.client-items-second {
    padding-top: 5rem;
}

.client-item:hover {
    transform: scale(1.05);

}

.client-item {
    transform: scale(1);
    transition: all .25s;
    position: relative;
}

.client-item img {
    width: 100%;
}

.client-info span {
    font-family: Bebas Neue, Helvetica, sans-serif !important;
    color: #fff;
    font-size: 1.1rem;
}

.client-tasks hr {
    width: 200%;
    margin: .5rem 0 !important;
}

.client-task-item {
    padding: .5rem 0;
}

.client-stats h1 {
    font-size: 3.25rem !important;
}

.client-stat-first {
    padding-top: 3rem;
}

.client-stat-item {
    border: 1px solid #707070;
    padding: 2rem;
}

.client-left {
    border-right: 1px solid #707070;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.client-right {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.client-right .apostrophes {
    font-size: 10rem;
    font-family: Bebas Neue, Helvetica, sans-serif !important;
}

.client-hero-img {
    width: 100%;
}

.owl-carousel button.owl-dot {
    background-color: #707070 !important;
    margin: 0 2px !important;
    height: 10px !important;
    width: 2px;
}

.owl-carousel button.owl-dot.active {
    background-color: #fff !important;
}

.form-label {
    color: #707070 !important;
}

.form-control {
    background-color: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #707070 !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-family: Work Sans, Helvetica, sans-serif !important;
}

.form-control:focus {
    color: #fff !important;
    border-color: #707070 !important;
    box-shadow: 0 0 0 0.25rem #7070703d !important;
}

.service-type {
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    transform: scale(1);
}

.service-type:hover {
    transform: scale(1.1);
}

.service-client {
    height: 95px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    transform: scale(1);
}

.service-client img {
    height: 100%;
}

.service-client:hover {
    transform: scale(1.05);
}

.service-info {
    /* display: none; */
    margin-bottom: 1rem;
}

.service-info.active {
    display: block;
}

.blog-img img {
    width: 100%;
    height: auto;
}

.blog-desc {
    position: relative;
    padding-left: 1.5rem;
}

.blog-desc::before {
    width: 0.4rem;
    height: 100%;
    background-color: #FABDB9;
    position: absolute;
    top: 3px;
    left: 0;
    content: '';
}

.blog-item {
    transition: all .5s ease;
    transform: scale(1);
    cursor: pointer;
}

.blog-item:hover {
    transform: scale(1.05);
}

.brand-logo {
    transition: all .5s;
    transform: scale(1);
}

.brand-logo:hover {
    transform: scale(1.1);
}

.nav-tabs {
    border-bottom: 0 !important;
}

.main-stats {
    padding-left: 10rem;
}

.connect {
    padding: 10rem 5rem 0;
}

.section {
    padding: 5rem;
}

.main-content {
    margin-left: 250px;
}

.card {
    background-color: #101518 !important;
    border: 1px solid #70707040 !important;
}

.swiper-pagination-mobile {
    margin-top: 1rem;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}


.swiper-pagination-bullet {
    background-color: #fff !important;
    height: 10px !important;
    width: 3px !important;
    border-radius: 0 !important;
}

.swiper-pagination-bullet-active {
    height: 12px !important;
    background-color: #FABDB9 !important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px) !important;
}

.scroll {
    animation: bounce 4s infinite;
    width: 50px;
    transition: opacity 1s ease;
    opacity: 1;
    top: 32.5%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.accordion-button {
    background-color: #101518 !important;
    border: 1px solid #70707040 !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23707070'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23707070'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.accordion-item img {
    height: 95px;
}

.box:hover img {
    transform: scale(1.1);
}

#partner .brand-logo {
    padding: 1.5rem;
}

#partner .brand-logo img {
    width: 100%;
}

.logo-partner {
    width: 60%;
}

.other-page {
    padding-top: 8rem;
}

.linkedin {
    cursor: pointer !important;
}

#whatwedo .swiper-slide.swiper-slide-active span{
    font-size: 3.5rem;
    transition: all .5s ease;
    color: #fff;
}

@media (max-width: 992px) {
    .main-content {
        margin: 0 !important;
    }

    .full-h {
        padding: 4rem 0;
    }

    .main-stats {
        padding-left: 0;
    }

    .connect {
        padding: 5rem 0 0 0;
    }

    .connect .hashtag {
        padding: 0 1rem 0 0 !important;
    }

    .section {
        padding: 4rem 0;
    }

    .menu-icon {
        right: 15px;
        top: 15px;
        position: absolute;
    }

    .client-items-second {
        padding-top: 0;
    }

    .box img {
        padding: 1.5rem;
    }

    .contact-box {
        padding: 0;
    }

    .btn-new {
        padding: 0.35rem 2rem 0.35rem 2.5rem;
    }

    .expertise-text {
        font-size: 2.75rem !important;
    }

    #partner .brand-logo {
        padding: 1rem;
    }

    .accordion-item .accordion-body img {
        width: 100%;
        height: auto !important;
    }

    .logo-partner {
        width: 100%;
    }

    .other-page {
        padding-top: 4rem;
    }
}

/* .swiper {
    width: 600px;
    height: 600px; 
}*/

/* .owl-item>div {
    cursor: pointer;
    margin: 9px 12px;
    transition: margin 0.4s ease;
} */

/* .owl-item.center>div {
    font-size: 2rem;
} */

/*.owl-carousel {
 transform: rotate(90deg);
    margin-top: 100px;
     width: 50% !important; 
}*/

/* .item {
    transform: rotate(-90deg) !important;
    width: 100px;
} */

/* .gradient {
    background: radial-gradient(#fcbcbc, #404040, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-position: 0;
} */
/* 
.gradient {
    position: relative;
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    border: none;
    color: white;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient span {
    position: relative;
}

.gradient:before {
    --size: 0;
    content: '';
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, pink, transparent);
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease;
}

.gradient:hover:before {
    --size: 200px;
} */