/* Custom Styles here */
header {
    width: 100%;
    padding: 20px 0px;
}

header.head-fixed {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 900;
}

header.head-sticky {
    position: sticky;
    top: 0px;
    z-index: 900;
    background-color: #fff;
}

header > div {
    display: flex;
    align-items: center;
    margin: 0px auto;
    justify-content: space-between;
    width: 100%;
    overflow: visible !important;
    transition: all 0.4s ease-in-out;
}

header > div > button.btn {
    display: none;
}

.logo-container {
    height: 40px;
    width: auto;
}

a.logo-container:after {
    content: none;
}

a.logo-container:hover {
    opacity: 1;
    margin-left: 0px;
}

ul {
    list-style: none;
}

.main-menu {
    display: flex;
}

.main-menu-list {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    color: #fff;
    position: relative;
}

.main-menu-list>li {
    position: relative;
    margin-left: 25px;
    cursor: pointer;
}

.main-menu-list>li p:after {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    visibility: hidden;
    background-color: var(--secondary-color);
    bottom: -1px;
    left: 0px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.main-menu-list>li:not(.open):hover p:after {
    width: calc(100%);
    height: 1px;
    visibility: visible;
    background-color: #fff;
}

.main-menu-list p > a {
    color: #fff;
    margin-left: 0px !important;
    opacity: 1;
}

.main-menu-list .btn {
    padding: 12px 20px;
}
.dropdown {
    position: relative;
    padding-right: 30px;
}
.main-menu-list li.dropdown:after {
    content: '';
    position: absolute;
    height: 20px;
    aspect-ratio: 1;
    right: 0px;
    top: 3px;
    background-image: url('/assets/images/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: right;
    transition: all 0.4s ease-in-out;
}

.main-menu-list li.dropdown.open:after {
    transform: rotate(180deg);
}

.main-menu-list p > a:after {
    content: none;
}

ul.main-menu-list>li>ul {
    position: absolute;
    top: calc(100% + 28px);
    left: 0px;
    height: 0px;
    overflow: hidden;
    background-color: #fff;
    color: var(--secondary-color);
    white-space: nowrap;
    z-index: 999;
    transition: all 0.4s ease-in-out;
}

ul.main-menu-list>li>ul li {
    padding: 5px 0px;
}

ul.main-menu-list>li>ul li  a {
    color: #000;
}

.main-menu-list>li.dropdown.open>ul {
    height: 100%;
    box-shadow: 0px 2px 7px 3px #0003;
}

.hamburger {
    z-index: 1000;
    display: none;
}

.hamburger .line {
    width: 40px;
    height: 3px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-6.is-active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-6.is-active .line:nth-child(2) {
    width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    -o-transform: translateY(9px);
    transform: translateY(9px);
}

#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-13px) rotate(90deg);
}

header.head-sticky:not(.header-dark-bg) .hamburger .line{
    background-color: #000;
}

header.head-sticky:not(.header-dark-bg) * {
    color: #000;
}

header.head-sticky:not(.header-dark-bg) .main-menu:not(.open) .main-menu-list li.dropdown:after {
    background-image: url('/assets/images/chevron-down-black.svg');
}

header.head-sticky:not(.header-dark-bg) .main-menu:not(.open)  .main-menu-list>li:not(.open):hover p:after {
    background-color: #000;
}

.main-menu.open .main-menu-list * :not(.btn) {
    color: #fff;
}

.main-menu.open ~ * > *{
    background-color: #fff !important;
}

@media only screen and (max-width: 1024px) {
    header > div > button.btn {
        display: flex;
        margin-left: auto;
        margin-right: 20px;
    }

    .hamburger {
        display: block;
    }

    .main-menu {
        position: fixed;
        top: 0px;
        right: -40px;
        background-color: var(--dark-color);
        height: 100vh;
        max-height: 100vh;
        min-width: 0px;
        width: 0px;
        max-width: 100%;
        overflow: hidden;
        padding: 20px;
        padding-top: 80px;
        z-index: 999;
        transition: all 0.6s ease-in-out;
        white-space: no-wrap;
    }

    .main-menu-list li.dropdown:after {
        top: 14px;
    }

    .main-menu.open {
        width: 300px;
        right: 0px;
    }

    .main-menu.open:after {
        content: '';
        position: fixed;
        left: 0px;
        top: 0px;
        background-color: #000;
        width: 100%;
        height: 100%;
        opacity: .5;
        z-index: 0;
    }

    .main-menu-list {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        overflow: auto;
        height: 100%;
        z-index: 1;
    }

    .main-menu-list>li {
        margin: 0px;
        width: 100%;
        padding: 15px 5px;
        padding-left: 20px;
    }

    .main-menu-list>li.dropdown {
        background-position: 100% 7px;
    }

    ul.main-menu-list>li>ul {
        position: relative;
        background-color: transparent;
        top: unset;
        color: #fff;
        padding-left: 10px;
    }

    .dropdown.open>ul {
        height: 100% !important;
    }

    ul.main-menu-list>li button {
        display: none;
    }

    ul.main-menu-list>li>ul li  a {
        color: #fff;
    }
}

@media only screen and (max-width: 468px) {
    header > div > button.btn {
        display: none;
    }

    ul.main-menu-list>li button {
        display: flex;
    }
}

@media (min-width: 1025px) and (max-width: 1165px) {
    .main-menu-list>li:last-child {
        margin-top: auto;
    }
}

/* Home Page Banner */
.home-banner {
    position: relative;
    max-height: 100vh;
    min-height: 550px;
    height: 790px;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
}

.home-banner div.bg-img  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.home-banner div.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner .container-medium {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    height: 100%;
    z-index: 2;
}

.home-banner .container-medium .text-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-top: auto;
    margin-bottom: auto;
}

.home-banner:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background: radial-gradient(50% 162% at 50% 50%, rgba(7, 7, 7, 0.4) 0%, rgba(0, 0, 0, 0.4) 0.01%, rgba(0, 0, 0, 0.709551) 22%, rgba(0, 0, 0, 0.8) 56.53%);
    z-index: 1;
}

.home-banner h1 {
    width: 580px;
    max-width: calc(100%);
    
}

.home-banner h1 span {
    color: rgba(236, 21, 123, 1);
    margin-left: 3px;
}

.home-banner .btn {
    border-color: #fff;
}

.home-banner .brand-icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    opacity: 0.75;
    border-top: 1px solid #fff;
    padding: 30px 0px;
}

.home-banner .brand-icons img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.carousel {
    position: relative;
    overflow: hidden;
    animation: gradient 15s ease infinite;
    height: 100%;
    width: 100%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.carousel__slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #333;
    height: 26px;
    border: none;
    overflow: hidden;
}

.carousel__list {
    position: absolute;
    min-width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.carousel__item {
    width: auto;
    height: 26px;
    width: calc(100% / 7);
    box-sizing: border-box;
    padding: 0px 5px;
    place-items: center;
}


@media only screen and (max-width: 991px) {
    .carousel__list {
        width: calc((100% / 5) * 7);
    }
    .carousel__item {
        width: calc(100% / 5);
    }
}

@media only screen and (max-width: 768px) {
    .home-banner {
        max-height: unset;
    }
}

@media only screen and (max-width: 468px) {
    .carousel__list {
        width: calc(100% * 2);
    }
    .carousel__item {
        width: calc(100% / 4);
    }
}

/* counter style */
.count-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 40px;
}

.count-list-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    width: calc(100% / 3);
    font-family: 'sofia-pro';
    font-weight: 300;
}

.count-list-item:not(:last-child):after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    right: 30px;
    top: 0px;
    background-color: #BEBEBE;
}

.count-list-item > div {
    font-size: 60px;
}

.count-list-item p {
    font-size: 20px;
    font-weight: 400;
    margin-top: auto;
}

.count-container + div {
    margin-top: 60px;
}

@media only screen and (max-width: 768px) {
    .count-container {
        justify-content: flex-start;
    }

    .count-list-item {
        width: calc(100% / 2);
    }

    .count-list-item:nth-child(2):after {
        content: none;
    }

    .count-list-item:last-child {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 546px) {
    .count-list-item {
        width: calc(100%);
        align-items: center;
        gap: 5px;
    }

    .count-list-item:after {
        content: none !important;
    }

    .count-list-item:not(:first-child) {
        margin-top: 20px;
    }
}

/* service section */
.services-column {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-list-item {
    width: calc((100% / 3) - 1px);
    margin: 0.5px;
    min-height: var(--content-height);
    position: relative;
    background-color: #fff;
    --padding-value : 1.875rem;
}

.service-list-item::after {
    content: '';
    position: absolute;
    height: calc(100% - 34px);
    top: 50%;
    transform: translateY(-50%);
    left: 1px;
    width: calc(100% + 1px);
    background-color: var(--secondary-color);
    z-index: -1;
}

.service-list-item::before {
    content: '';
    position: absolute;
    height: calc(100% + 1px);
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 34px);
    background-color: var(--secondary-color);
    z-index: -1;
}

@media only screen and (min-width:992px) {
    .service-list-item:nth-child(3n):after {
        width: calc(100% - 2px);
    }

    .service-list-item:nth-child(n + 3):not(:nth-child(3)):before {
        height: calc(100% - 2px);
    }
}

@media (min-width: 569px) and (max-width:991px) {
    .service-list-item {
        width: calc((100% / 2) - 1px);
    }

    .service-list-item:nth-child(2n):after {
        width: calc(100% - 2px);
    }

    .service-list-item:nth-child(n + 4):not(:nth-child(4)):before {
        height: calc(100% - 2px);
    }
}

@media only screen and (max-width:568px) {
    .service-list-item {
        width: calc((100%) - 1px);
    }

    .service-list-item:after {
        width: calc(100% - 2px);
    }
}

.service-list-item .service-hover-anim {
    display: flex;
    padding: var(--padding-value);
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-list-item .service-hover-anim:hover {
    opacity: 1;
    margin-left: 0px;
}

.service-list-item .text-container {
    height: calc(100% + (var(--padding-value) * 2));
    width: calc(100% + (var(--padding-value) * 2));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--padding-value);
    margin: calc(var(--padding-value) * -1);
    transform: translateY(100%);
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 2;
}

.service-list-item .service-item-title {
    width: 100%;
    position: relative;
}

.service-list-item .text-container h3,
.service-list-item .service-hover-anim > h3 {
    width: 250px;
    max-width: 100%;
    padding: 0px;
    margin-bottom: 20px;
    transition: all 0.6s ease-in-out;
}

.service-list-item .text-container h3 {
    padding-right: 30px;
    width: 280px;
    white-space: nowrap;
}

.service-list-item .service-item-title {
    padding-left: 0px;
    width: 0px;
    overflow: hidden;
}

.service-list-item .service-hover-anim > h3 { 
    position: absolute;
    bottom: 0px;
    z-index: 0;
}

.service-list-item .text-container h3:after {
    content: '';
    position: absolute;
    height: 0px;
    width: 4px;
    top: 0px;
    left: 0px;
    background-color: #EC157B;
    transition: all 1s ease-in-out;
}

.service-list-item .text-container h3:before {
    content: '';
    position: absolute;
    height: 28px;
    width: 28px;
    top: calc(50% - 10px);
    right: 30px;
    transform: translateY(-50%);
    background-image: url('/assets/images/arrow-circle-filled.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 1s ease-in-out;
}

.service-list-item .text-container p {
    margin-top: 25px;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

@media only screen and (min-width: 992px) {
    .service-list-item:hover .text-container {
        transform: translateY(0%);
        background-color: var(--secondary-color);
        color: #fff;
    }

    .service-list-item:hover .text-container .service-item-title {    
        padding-left: 12px;
        width: 100%;
    }

    .service-list-item:hover .text-container h3:after {
        height: calc(100% - 20px);
    }

    .service-list-item:hover .text-container h3:before { 
        right: 0px;
    }

    .service-list-item:hover .text-container p {
        opacity: 1;
    }
}

@media only screen and (max-width: 991px) {
    .services-column {
        --content-height: unset !important;
    }
    
    .service-list-item .text-container {
        background-color: var(--secondary-color);
        color: #fff;
        transform: translateY(0%);
    }

    .service-list-item .text-container .service-item-title {  
        padding-left: 12px;  
        width: 100%;
    }

    .service-list-item .text-container h3:after {
        height: calc(100% - 20px);
    }

    .service-list-item .text-container h3:before { 
        right: 0px;
    }

    .service-list-item .text-container h3 {
        white-space: wrap;
    }

    .service-list-item .text-container p {
        opacity: 1;
    }
}

/* media accordian */
.media-accordian > div {
    width: calc(50% - 40px);
}

.media-accordian > div:first-child {
    margin-right: 40px;
}

.media-accordian > div:last-child {
    margin-left: 40px;
}

.media-accordian .img-container {
    height: 100%;
}

.media-accordian .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .media-accordian {
        flex-direction: column;
    }

    .media-accordian > div {
        width: 100%;
        margin: 0px !important;
    }
}

.accordian-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 30px 0px;
    border-top: 4px solid #602A7D;
}

.accordian-item {
    width: 100%;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    flex-direction: column;
}

.accordian-container .accordian-item:first-child {
    border-top-width: 0px;
}

.accordian-head {
    display: flex ;
    position: relative;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    padding: 20px 0px;
    padding-right: 30px;
    cursor: pointer;
}

.accordian-head:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    background-image: url('/assets/images/chevron-down-dark.svg');
    transition: all 0.4s ease-in-out;
}

.accordian-item.open .accordian-head:after {
    transform: translateY(-50%) rotate(0deg);
}

.accordian-head > img {
    width: 26px;
    height: 26px;
}

.accordian-head  h4 {
    font-size: 20px;
    font-weight: 700;
    padding: 0px;
    margin-left: 12px;
}

.accordian-body {
    width: 100%;
    height: 0px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.accordian-item:not(.open) .accordian-body  {
    height: 0 !important;
    transition: all 0.4s ease-in-out;
}

.accordian-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    margin-left: 8px;
    height: auto;
}

.accordian-content a {
    margin-top: 30px;
    margin-left: auto;
    font-size: 20px;
}

/* Mobile BillBoadrd section */
.mobile-bb-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mobile-bb-section .text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-bb-section .text-container > *{
    text-align: center;
}

.mobile-bb-section .text-container p {
    max-width: 100%;
    width: 600px;
}

.mobile-bb-section .action-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.mobile-bb-section .action-group .btn-outline {
    color: var(--secondary-color);
}

.mobile-bb-section .action-group .btn-outline:hover {
    color: var(--light-color);
}

.bb-container {
    margin-top: 30px;
    width: 100%;
    aspect-ratio: 1280 / 680;
    border-radius: 75px 75px 0px 0px;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.bb-container video {
    width: 100%;
}

/* case study section */
.case-study-section > div:not(.blog-section) {
    width: 100% ;
}

.case-study-section h2 {
    width: 30%;
}

.case-study-section > div:not(.blog-section) > div {
    width: 70%;
    padding-bottom: 50px
}

.case-study-section > div:not(.blog-section) > div p{
    padding-right: 30px;
}

.case-study-section > div:not(.blog-section) > div a {
   white-space: nowrap;
}

@media only screen and (max-width: 867px) {
    .case-study-section > div:not(.blog-section) {
        flex-direction: column !important;
    }

    .case-study-section h2 {
        width: 100%;
    }

    .case-study-section > div:not(.blog-section) > div {
        width: 100%;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 678px) {
    .case-study-section > div:not(.blog-section) > div {
        width: 100%;
        flex-direction: column !important;
        gap: 30px;
    }

    .case-study-section > div:not(.blog-section) > div p{
        padding-right: 0px;
    }
}

.blog-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.blog {
    flex: 1;
}

.blog .img-container {
    margin-bottom: 18px;
    width: 100%;
    height: auto;
}

.blog .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.blog .text-container .badge {
    background-color: #602A7D;
    margin-bottom: 10px;
    color: #fff;
}

.blog .text-container h5 {
    padding: 0px;
}

@media only screen and (max-width:468px) {
    .blog {
        flex-basis: 100%;
    }
}

/* customoer review section */
.customer-review-section {
    display: flex;
    position: relative;
    flex-direction: column;
    padding-left: 20%;
    color: #fff;
}

.customer-review-section:after,
.customer-review-section:before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0px;
    z-index: -1;
}

.customer-review-section:after {
    height: 70%;
    background-color: #000000;
    top: 0px;
}

.customer-review-section:before {
    height: 30%;
    background-color: #602A7D1A;
    bottom: 0px;
}

.customer-review-section .text-container p {
    width: 50%;
}

.customer-review-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 40px;
    margin-top: 60px;
}

.customer-review-container .customer-review-item {
    background-color: #fff;
    padding: 40px;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.customer-review-item .customer-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.customer-review-item .customer-profile img {
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #ccc;
}

.customer-review-item .customer-profile h4 {
    padding: 0px;
    font-weight: 500;
}

.customer-review-item .customer-profile > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.customer-review-container .slick-track {
    display: flex;
}

.customer-review-container .slick-track .customer-review-item {
    margin-right: 40px;
}

@media only screen and (max-width: 991px) {
    .customer-review-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .customer-review-container .slick-track .customer-review-item {
        margin-right: 0px;
        margin: 0px 10px;
    }

    .customer-review-section .text-container p {
        width: 100%;
    }
}

/* contact section */
.contact-section {
    background-color: #F8F8F8;
}

.contact-section > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 40px;
}

.contact-section > div > div {
    width: 50%;
}

.contact-section.no-media > div > div {
    width: 550px;
    max-width: 100%;
    margin-left: auto;
}

.contact-section.no-media {
    background-image: url('/assets/images/contact-bg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.media-container {
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.media-container p {
    font-size: 24px;
    font-weight: 400;
    line-height: 31.25px;
    text-align: left;
}

.form-container {
    background-color: #fff;
    padding: 50px;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 54px;
    text-align: left;
}

.form-container input:first-child {
    border-top: 1px solid var(--grey-color);
}

.form-container p {
    color: #7A7A7A;
    margin-bottom: 30px;
}

.form-content {
    margin-bottom: 20px;
}


.tel-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

.tel-form input:first-child {
    border-top: 0px;
    width: 20%;
}

@media only screen and (max-width: 840px) {
    .contact-section > div {
        flex-wrap: wrap;
    }

    .contact-section > div > div {
        width: 100%;
    }
}

@media only screen and (max-width: 568px) {
    .form-container {
        padding: 20px;
    }
}

/* footer section */
footer {
    background-color: #000;
    width: 100%;
    overflow: hidden;
}

footer a {
    color: inherit;
}

.footer-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 0px;
}

.footer-about {
    width: 300px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 18px;
}

.footer-about p {
    color: #969696;
    margin-bottom: 30px;
}

.social-media-icons {
    display: flex;
    flex-direction: row;
    gap: 22px;
}

.social-media-icons a {
    width: 22px;
    height: 22px;
}

.footer-menu {
    display: flex;
    padding-left: 10%;
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-menu-item h6 {
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    color: #fff;
    padding-bottom: 0px;
}

.menu-links li {
    color: #BEBEC2;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.5px;
    text-align: left;
    padding: 9px 0px;
}

.menu-links li a:after {
    background-color: #BEBEC2;
}

.footer-contact-info {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.footer-contact-item p {
    color: #808080;
}

.footer-contact-item a {
    color: #fff;
}

.footer-contact-item a:after {
    background-color: #BEBEC2;
}

.footer-contact-item:first-child:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0px;
    right: -12px;
    background-color: #FFFFFF33;
}

.footer-copyright {
    display: flex;
    align-items: flex-start;
    padding: 15px 0px;
    background-color: #171717;
    color: #818181;
}

.footer-copyright > div {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
    .footer-menu {
        padding-left: 2%;
    }
}

@media only screen and (max-width: 991px) {
    .footer-section {
        flex-wrap: wrap;
    }

    .footer-menu {
        padding-left: 0px;
        width: 100%;
        flex-wrap: wrap;
        gap: 30px;
        flex-basis: 100%;
        margin-top: 30px;
    }
}

/* about-us page */
.about-page h1 {
    width: 60%;
    font-weight: 600;
} 

.about-banner h2 {
    width: 20%;
}

.banner-qa {
    width: 600px;
    max-width: 100%;
}

@media only screen and (max-width: 991px) {
    .about-page h1 {
        width: 80%;
        font-weight: 600;
    } 
    .about-banner h2 {
        width: auto;
        flex-basis: 0%;
        min-width: 25%;
        margin-right: 10px;
    }
    .banner-qa {
        flex: 1;
    }
}

@media only screen and (max-width: 678px) {
    .about-page h1 {
        width: 100%;
        font-weight: 600;
    } 

    .about-banner h2 {
        width: auto;
        margin-right: 10px;
        flex-basis: 100%;
    }

    .banner-qa {
        width: 100%;
    }
}

/* stat section */
.stat-section {
    background-color: #171A21;
}

.stat-section > div > div {
    width: 50%;
}

.stat-container {
    color: #fff;
    padding: 50px;
    padding-right: 0px;
}

.stat-container h2 {
    font-weight: 400;
    letter-spacing: -0.02em;
}

.stat-section .img-container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-width: unset;
}

.stat-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    flex-basis: 40%;
    width: 50%;
}


.stat-item > div {
    font-size: 60px;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -0.02em;
    text-align: left;
    display: flex;
    flex-direction: row;
    color: #EC157B;
}

.stat-item > p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    color: #fff;        
}

@media only screen and (max-width: 991px) {
    .stat-section > div > div {
        width: 100%;
        flex-basis: 100%;
    }

    .stat-container {
        padding-left: 0px;
    }
}

@media only screen and (max-width: 456px) {
    .stat-item {
        width: 100%;
        flex-basis: 100%;
        align-items: center;
    }
}

/* Text and Media Section */
.text-media-section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.text-media-section.section-reverse {
    flex-direction: row-reverse;
}

.text-media-section .text-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.text-media-section .text-container p {
    padding-bottom: 40px;
}

.text-media-section > div {
    width: 50%;
    padding-left: 50px;
}

.text-media-section.no-padding {
    gap: 40px;
}

.text-media-section.no-padding  > div {
    width: calc(50% - 20px);
    padding-left: 0px;
}

.text-media-section .badge {
    background-color: #EFEFEF;
    padding: 5px 0px;
}

.text-media-section .img-container {
    max-width: 700px;
    overflow: hidden;
}

.text-media-section .img-container img {
    width: 100%;
    object-fit: cover;
}

.text-media-section .img-container:not(.og-size) {
    aspect-ratio: .8;
}

@media only screen and (max-width:900px) {
    .text-media-section {
        flex-direction: column;
        gap: 40px;
    }

    .text-media-section.section-reverse {
        flex-direction: column-reverse;
    }

    .text-media-section > div {
        width: 100%;
        padding-left: 0px;
    }

    .text-media-section.no-padding > div {
        width: 100%;
        padding-left: 0px;
    }

    .text-media-section .img-container {
        max-width: 100%;
    }

    .text-media-section .img-container:not(.og-size) {
        aspect-ratio: 1;
    }
}

/* client list section */
.client-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-list h2 {
    width: 40%;
    text-align: center;
}

.client-list .carousel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.client-list .carousel__slider {
    height: 100px;
    gap: 30px;
}

.client-list .carousel__list{
    height: 100px;
    gap: 30px;
}

.client-list .carousel__item {
    height: 100%;
    width: calc(100% / 6);
}

.client-list .carousel__item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media only screen and (max-width: 991px) {
    .client-list h2 {
        width: 60%;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .client-list h2 {
        width: 100%;
        text-align: center;
    }

    .client-list .carousel__list{
        width: calc((100% / 3) * 6);
    }

    .client-list .carousel__item {
        height: 100%;
        width: calc(100% / 3);
    }
}

/* ui design page */
.ui-design-banner * {
    text-align: center;
}
.ui-design-banner > div:last-child p {
    padding-left: clamp(20px, 15%, 15%);
    padding-right: clamp(20px, 15%, 15%);
    padding-bottom: 60px;
    padding-top: 10px;
}

@media only screen and (max-width: 991px) {
    .ui-design-banner > div:last-child p {
        padding-left: clamp(20px, 15%, 5%);
        padding-right: clamp(20px, 15%, 5%);
    }
}

@media only screen and (max-width: 768px) {
    .ui-design-banner > div:last-child p {
        padding-left: 0;
        padding-right: 0;
    }
}

.text-media-section .ux-anim-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-media-section .ux-anim-content > div {
    width: 100%;
    position: relative;
    width: 75%;
}

.text-media-section .ux-anim-content > div p {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20.25px;
    font-weight: 700;
    line-height: 23.29px;
    text-align: center;
    width: 100%;
}

.text-media-section .ux-anim-content svg {
    width: 100%;
}

.text-media-section .ux-anim-content > div:nth-child(2) {
    margin-left: auto;
    color: #fff;
}

.text-media-section .ux-anim-content > div:last-child {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 768px) {
    .text-media-section .ux-anim-content > div {
        width: 90%;
    }
}

.uxd-anim-content {
    background-color: #5976FA;
    position: relative;
    padding-top: 50%;
    overflow: hidden;
}

.uxd-anim-content img {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: calc(100% - 20px);
    transition: all 0.6s ease-in-out;
}

.uxd-anim-content.anim-show img {
    bottom: 0%;
}

.technology-section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.technology-section h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    width: 20%;
}

.technology-section > div {
    flex: 1;
    padding-left: 10%;
}

.technology-section > div img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 991px) {
    .technology-section {
        flex-direction: column;
    }

    .technology-section h2 {
        text-align: center;
        width: 100%;
    }

    .technology-section > div {
        flex: 1;
        padding-left: 0%;
    }
}

/* success stories page */
.tab-section {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    padding-bottom: 40px;
}
.tab-section > div {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.tab-section > div:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    top: 100%;
    left: 0px;
    background-color: #4BB982;
    transition: all 0.4s ease-in-out;
}

.tab-section > div.active:after {
    width: 100%;
}

/* contact us page */
.contact-form {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 10px;
}

.contact-form > div {
    width: 50%;
}

.contact-form .text-container {
    padding-right: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
    gap: 20px;
}

.contact-detail .contact-item {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: row;
}

.address-section {
    padding-bottom: 60px;
}

.address-section h2 {
    margin-bottom: 30px;
}

.address-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.address-item {
    width: 30%;
}

.address-item {
    margin-right: auto;
}

.address-item > div {
    position: relative;
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 20px;
} 

.address-item > div img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.address-item > div:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000;
    transition: all 0.6s ease-in-out;
}

.address-item > div.anim-show:after {
    width: calc(100% - 34px);
}

@media only screen and (max-width: 991px) {
    .contact-form .text-container {
        padding-right: 0px;
    }

    .contact-form > div:first-child {
        width: 40%;
    }
}

@media only screen and (max-width: 768px) {
    .contact-form {
        flex-wrap: wrap;
    }
    .contact-form > div:first-child {
        width: 100%;
    }

    .contact-form > div {
        width: 100%;
    }

    .contact-form .form-container {
        padding: 0px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .address-item {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 568px) {
    .address-container {
        flex-wrap: wrap;
        gap: 50px;
    }

    .address-item {
        width: 100%;
    }
}

/* billboard page */
.billboard-page .billboard-banner {
    position: relative;
    max-height: 100vh;
    min-height: 550px;
    height: 790px;
    color: #fff;
}

.billboard-page .billboard-banner video {
    min-width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    pointer-events: none;
}

.billboard-banner .btn.btn-outline {
    border-color: #fff;
}

.billboard-banner .container-small {
    height:80%;
    justify-content: center;
}

.billboard-banner h1 {
    font-family: "Mulish", sans-serif;;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: 0.02em;
    text-align: center;    
}

.anim-element-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    pointer-events: none;
}

.moon-rock {
    bottom: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 470px;
    max-width: 100%;
    aspect-ratio: 1;
}

.moon-rock .rocket-gif {
    position: absolute;
    width: 50%;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.moon-rock .half-moon {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.moon-gif {
    position: absolute;
    width: 62px;
    height: 62px;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.astroman-gif {
    position: absolute;
    width: auto;
    height: 167px;
    top: 70%;
    transform: translateY(-50%);
    left: 0px;
}

@media only screen and (max-width:768px) {
    .billboard-banner h1 {
        font-size: 48px;
    }

    .astroman-gif {
        left: -170px;
        top: 75%;
    }
}

.img-section {
    width: 100%;
    display: flex;
}

.img-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-main-content .text-media-section {
    padding: 40px;
    color: #fff;
}

.section-main-content .text-media-section .btn {
    border-color: #fff;
}

.case-studies-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
    color: #fff;
}

.case-studies-section > .btn {
    margin: auto;
    margin-bottom: 40px;
    border-color: #fff;
}

.case-studies-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 65px;
}

.case-studies-item {
    width: calc(100% / 3 - 20px);
    margin-top: -40px;
    padding-bottom: 30px;
}

.case-studies-item img {
    width: 100%;
}

.case-studies-item h4 {
    padding: 0;
    margin-top: 20px;
    color: #fff;
}

.case-studies-item:nth-child(2),
.case-studies-item:nth-child(5) {
    margin-bottom: -40px;
    margin-top: 0px;
}

@media only screen and (max-width: 991px) {
    .case-studies-item {
        width: calc(100% / 2 - 20px);
        margin-top: 0px;
        padding-bottom: 0px;
    }

    .case-studies-item:nth-child(2),
    .case-studies-item:nth-child(5) {
        margin-bottom: 0px;
    }
}

.billboard-service-section {
    background-color: #fff;
}

.bb--service-list-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
}

.bb--service-list {
    width: 28%;
    margin: auto;
    margin-top: 0px;
    margin-left: 0;
}

.bb--service-list h3 {
    font-size: 42px;
    font-weight: 500;
    line-height: 64px;
    text-align: left;
    padding-bottom: 40px;
}

.bb-service-item {
    margin: 0 auto;
    text-transform: uppercase;
}

.bb--service-list p {
    border-bottom: 1px solid #B4C2D0;
    padding: 20px 0px;
}

@media only screen and (max-width: 991px) {
    .bb--service-list {
        min-width: 200px;
    }
}

@media only screen and (max-width: 456px) {
    .bb--service-list {
        width: 100%;
    }

    .bb-service-item  {
       width: 100%;
       max-width: 100%;
    }
}