@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    /* --primary: #FF3B2B; */
    --primary: #ff0000;
    --secondary: #0000ff;
    --white: #ffffff;
    --black: #191919;
    --bg: #f8f9fa;
    --border-radius: 20px;
}

.bg-color {
    background-color: var(--bg) !important;
}

.bg-white-color {
    background-color: var(--white) !important;
}

body {
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

* {
    margin: 0;
    box-sizing: border-box;
}

:before,
:after {
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.v-center {
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.maibTtl-white h4 {
    color: var(--white);
}

.maibTtl-white p {
    color: #c5c5c5 !important;
}

.maibTtl-white span.bottom-line {
    width: 50px;
    display: inline-block;
    border: 1px solid var(--white);
}

.bg-light-box {
    background-color: var(--bg);
}

.text-primary {
    --tw-text-opacity: 1;
    color: var(--primary) !important;
}

.text-white {
    --tw-text-opacity: 1;
    color: var(--white) !important;
}

.text-secondary {
    --tw-text-opacity: 1;
    color: var(--secondary) !important;
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: var(--white) !important;
}

.mainTtl {
    margin: 0 0 50px;
    z-index: 1;
}

.mainTtl .title-h4 {
    font-size: 50px;
    font-weight: 700;
}

/* title============= */

.white-ttle.mainTtl .title-h4 {
    color: var(--white);
}

.white-ttle.mainTtl p.aos-init.aos-animate {
    color: #949494;
}

.white-ttle.mainTtl span.bottom-line {
    border: 1px solid var(--white);
}

/* BUTTON========== */
.a-btn {
    text-decoration: none;
    font-size: 18px;
    color: #191919;
    padding: 8px 0 9px 25px;
    position: relative;
}

.a-btn:hover {
    text-decoration: none !important;
}

.a-btn:before {
    content: '';
    position: absolute;
    border: 2px solid #191919;
    min-width: 42px;
    height: 42px;
    left: 0;
    border-radius: 100px;
    transition: ease-in-out .5s;
}

.a-btn-white {
    color: #fff;
    position: relative;
    text-decoration: none;
}

.a-btn-white:hover {
    text-decoration: none;
}

.a-btn-white:before {
    border: 2px solid #fff;
}

.a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 200px;
}

.about-offer .a-btn:hover:before {
    min-width: 240px;
}

.a-btn.waysa:hover:before {
    min-width: 330px;
}

/* BUTTON========== */
/* *****************************
==========HEADER START==========
****************************** */

.header-section {
    display: block;
    z-index: 1000;
    width: 100%;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    position: relative;
    background-color: var(--white);
    padding: 0 15px;
}

.header-section .item-left {
    flex: 0 0 17%;
}

.header-section .logo a {
    font-size: 30px;
    color: var(--black);
    font-weight: 700;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-section .item-center {
    flex: 0 0 66%;
}

.header-section .a-btn.waysa:hover:before {
    min-width: 196px;
}

.header-section .item-right {
    flex: 0 0 17%;
    display: flex;
    justify-content: flex-end;
}

.header-section .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: #555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.header-section .item-right a.iconSearch {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    transition: ease-in-out .3s;
}

.header-section .item-right a.iconSearch:hover {
    background-color: var(--secondary);
    transition: ease-in-out .3s;
}

.header-section .item-right a.iconSearch:hover i {
    color: var(--white);
    transition: ease-in-out .3s;
}

.header-section .menu>ul>li {
    padding: 18px 0px;
    display: inline-block;
    line-height: 50px;
    margin-left: 25px;
}

.header-section .menu>ul>li>a {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-section .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: var(--white);
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: 0.1s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

.header-section .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header-section .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header-section .menu>ul>li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header-section .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header-section .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #555555;
    /* transition: color 0.3s ease; */
}

.header-section .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 1100px;
    width: 100%;
    background-color: var(--white);
    display: flex;
    flex-wrap: wrap;
    padding: 20px 20px;
    z-index: -1;
    padding-top: 20px;
    border-radius: 0px 0 6px 6px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 40%;
    padding: 0 15px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 13px;
    padding-bottom: 15px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega>.list-item ul li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega>.list-item ul li a span {
    position: relative;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega>.list-item ul li a:hover span:before {
    font-family: FontAwesome;
    content: "\f061";
    display: inline-block;
    position: absolute;
    right: 0;
    /* background-image: url(../img/menu-arrow.svg); */
    width: 14px;
    height: 14px;
    background-size: contain;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega>.list-item .title {
    border-bottom: unset;
    font-size: 14px;
    line-height: normal;
    padding-top: 3px;
    margin-bottom: .25rem;
    font-weight: 300;
    color: var(--black);
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega>.list-item ul {
    column-gap: 0.7rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(1.875rem, calc(33.33333% - 0.46667rem)));
    margin-bottom: 0;
    row-gap: 0;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega::before {
    content: "";
    background: #ffffff url(../images/header-right-banner.webp) no-repeat;
    width: 30%;
    height: 100%;
    display: inline-block;
    vertical-align: baseline;
    padding-right: 110px;
    position: absolute;
    right: 0;
    top: 0;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 500px;
    object-fit: cover;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .aos-init.waysa img {
    max-width: unset;
    width: unset;
    vertical-align: unset;
    margin-top: unset;
    height: unset;
    object-fit: unset;
}



.header-section .menu>ul>li .sub-menu.mega-menu-column-4.firstMega {
    max-width: 1130px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.firstMega>.list-item {
    flex: 0 0 32%;
}

.header-section .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header-section .menu>ul>li .sub-menu>ul>li>a:hover,
.header-section .item-right a:hover,
.header-section .menu>ul>li:hover>a {
    color: var(--primary);
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega {
    max-width: 1300px;
    overflow: hidden;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega>.list-item {
    flex: 0 0 70%;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.thirdMega>.list-item:last-child {
    flex: 0 0 38%;
}

/* banner section */
.header-section .banner-section {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 100%;
    display: block;
}

.header-section .mobile-menu-head,
.header-section .mobile-menu-trigger {
    display: none;
}

.header-section .menu-main {
    display: flex;
    justify-content: center;
}

.header-section {
    position: relative;
    /* Default state */
    width: 100%;
    /* Full width */
    z-index: 999;
    /* Ensure header stays on top */
    background-color: #fff;
    /* Header background color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional: Add shadow */
    transition: all 0.9s ease-in-out;
    /* Smooth transition for all properties */
}

.header-section.sticky {
    position: fixed;
    /* Sticky header */
    top: 0;
    /* Fix to the top of the viewport */
    animation: slideDown 0.9s ease-in-out;
    /* Add smooth slide-in animation */
}

/* Optional: Slide-down effect */
@keyframes slideDown {
    from {
        top: -100px;
    }

    to {
        top: 0;
    }
}

/* =====================================
--------------SearchBar Box-------------
===================================== */
.header-section #search-box {
    visibility: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999999;
}

.header-section #search-box .container {
    display: table;
    width: 100%;
    height: 100%;
}

.header-section #search-box .container .close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
}

.header-section #search-box .container .close:hover {
    opacity: 1;
}

.header-section #search-box .container .close:before,
.header-section #search-box .container .close:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 33px;
    width: 2px;
    background-color: white;
}

.header-section #search-box .container .close:before {
    transform: rotate(45deg);
}

.header-section #search-box .container .close:after {
    transform: rotate(-45deg);
}

.header-section #search-box .container .search-main {
    display: table-cell;
    vertical-align: middle;
}

.header-section #search-box .container .search-main .search-inner {
    width: 80%;
    margin: 0 auto;
}

.header-section #search-box .container .search-main form {
    position: relative;
}

.header-section #search-box .container .search-main input {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 12px 74px 12px 0;
    font-size: 30px;
    height: 84px;
    border-bottom: 2px solid white;
    display: block;
    color: white;
    margin-bottom: 0;
    width: 100%;
    transform: scale3d(0, 1, 1);
    transform-origin: 0% 50%;
    transition: transform 3s;
}

.header-section #search-box .container .search-main input:focus {
    outline: none;
}

.header-section #search-box .container .search-main button {
    border: 0;
    left: auto;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0.3em;
    bottom: 0.3em;
    background: transparent;
    font-size: 43px;
}

.header-section #search-box .container .search-main .search-info {
    display: block;
    color: white;
    text-align: right;
    float: right;
    margin-top: 4px;
}

.header-section #search-box.-open {
    background: rgba(0, 0, 0, 0.8);
    visibility: visible;
    animation: fadein 0.8s;
}

.header-section #search-box.-open .container .search-main input {
    transform: scale3d(1, 1, 1);
    transition-duration: 1s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header-section .bg-light-orange {
    --tw-bg-opacity: 1;
    position: relative;
    background-color: var(--primary);
    height: 100%;
    border-radius: var(--border-radius);
}

.header-section .bg-light-orange span {
    font-size: max(22.4px, 1.4vw);
    line-height: 1.5;
    --tw-text-opacity: 1;
    font-weight: 700;
    color: var(--white);
}

.header-section .bg-light-orange .btn.btn-dark {
    padding: max(8px, .5vw) max(16px, 1vw);
    font-size: max(16px, 1vw);
    border-radius: var(--border-radius);
    text-transform: capitalize;
    line-height: 1.5;
    margin-top: max(14px, 1.481vw);
    background: var(--primary);
    color: var(--white)f;
    display: flex;
}

.header-section .bg-light-orange .box-title-wrap {
    display: flex;
    align-items: baseline;
    border-radius: var(--border-radius);
    flex-direction: column;
    padding: 13px 23px;
    height: 100%;
    justify-content: center;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fourMega {
    max-width: 690px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fourMega>.list-item:last-child {
    flex: 0 0 60%;
    align-content: end;
}

/* =====================================
----------------Pill Tabs--------------
===================================== */

.header-section .container .topic {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.header-section .content input {
    display: none;
}

.header-section .content {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.header-section .content .list {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 25%;
    margin-right: 25px;
    border-right: 2px solid #e0e0e0;
}

.header-section .content .list p {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

.header-section .content .list label {
    cursor: pointer;
    height: 36px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 40px;
    font-size: 14px;
    /* font-weight: 500; */
    color: var(--black);
    padding-left: 15px;
    transition: all 0.5s ease;
    z-index: 10;
    padding-right: 25px;
}

.header-section #home:checked~.list label.home,
.header-section #home2:checked~.list label.home2,
.header-section #home3:checked~.list label.home3,
.header-section #home4:checked~.list label.home4,
.header-section #home5:checked~.list label.home5,
.header-section #home6:checked~.list label.home6,
.header-section #home7:checked~.list label.home7,
.header-section #home8:checked~.list label.home8,
.header-section #home9:checked~.list label.home9,
.header-section #home10:checked~.list label.home10,
.header-section #blog:checked~.list label.blog,
.header-section #blog2:checked~.list label.blog2 {
    color: var(--white) !important;
}

.header-section .content .slider {
    position: absolute;
    left: 0;
    top: 51px;
    height: 36px;
    color: var(--white);
    width: 92%;
    border-radius: var(--border-radius);
    transition: all 0.5s ease;
    background: var(--primary);
}

/* HOME */
/* .header-section #home:checked~.list .slider {
    top: 65px;
} */
.header-section #home:checked~.list .slider {
    top: 51px;
}

.header-section #home2:checked~.list .slider {
    top: 87px;
}

.header-section #home3:checked~.list .slider {
    top: 123px;
}

.header-section #home4:checked~.list .slider {
    top: 159px;
}

.header-section #home5:checked~.list .slider {
    top: 195px;
}

.header-section #home6:checked~.list .slider {
    top: 231px;
}

.header-section #home7:checked~.list .slider {
    top: 267px;
}

.header-section #home8:checked~.list .slider {
    top: 303px;
}

.header-section #home9:checked~.list .slider {
    top: 339px;
}

.header-section #home10:checked~.list .slider {
    top: 375px;
}

.header-section #blog:checked~.list .slider {
    top: 462px;
}

.header-section #blog2:checked~.list .slider {
    top: 497px;
}

.header-item.item-left .logo img{
width: 0 !important;
}

/* #blog:checked~.list .slider {
        top: 140px;
    } */

.header-section .content .text-content {
    width: 80%;
    height: 100%;
    color: var(--primary);
}

.header-section .content .text-content p {
    color: var(--black);
}

.header-section .content .text {
    display: none;
}

/* .content .text .title{
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
  } */

.header-section .container .text p {
    text-align: justify;
}

.header-section #home:checked~.text-content .home,
.header-section #home2:checked~.text-content .home2,
.header-section #home3:checked~.text-content .home3,
.header-section #home4:checked~.text-content .home4,
.header-section #home5:checked~.text-content .home5,
.header-section #home6:checked~.text-content .home6,
.header-section #home7:checked~.text-content .home7,
.header-section #home8:checked~.text-content .home8,
.header-section #home9:checked~.text-content .home9,
.header-section #home10:checked~.text-content .home10,
.header-section #blog:checked~.text-content .blog,
.header-section #blog2:checked~.text-content .blog2 {
    display: flex !important;
}

.header-section #home:checked~.text-content .home,
.header-section #home2:checked~.text-content .home2,
.header-section #home3:checked~.text-content .home3,
.header-section #home4:checked~.text-content .home4,
.header-section #home5:checked~.text-content .home5,
.header-section #home6:checked~.text-content .home6,
.header-section #home7:checked~.text-content .home7,
.header-section #home8:checked~.text-content .home8,
.header-section #home9:checked~.text-content .home9,
.header-section #blog:checked~.text-content .blog,
.header-section #blog2:checked~.text-content .blog2 {
    display: none;
}


.header-section .mainHub.mainFirstHub .listYah label:hover {
    background: unset;
    background-position: unset;
    border: unset;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fifthMega .content h4.title {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 13px;
    padding-bottom: 15px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fifthMega .content .uiGyas h4.title {
    margin-bottom: 15px;
    border-bottom: unset;
    position: relative;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fifthMega .content .uiGyas h4.title span {
    background: #ffff;
    padding-right: 8px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fifthMega .content .uiGyas h4.title::before {
    background-color: rgba(254, 27, 27, 0.3);
    content: "";
    height: .063rem;
    left: 0;
    margin-top: -0.1rem;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fifthMega .content .text-content .list-item {
    flex: 0 0 100%;
    margin-right: 40px;
}

.mainHub {
    width: 100%;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4.fifthMega {
    max-width: 1200px;
}

.header-section .megaSearch {
    width: 100%;
    margin-bottom: 30px;
}

.header-section .megaSearch .search-input-box {
    padding: .313rem .375rem;
    align-items: center;
    border: .063rem solid #d9d9d9;
    border-radius: var(--border-radius);
    -ms-box-shadow: 0 .625rem 1.875rem rgba(0, 0, 0, .039);
    -o-box-shadow: 0 .625rem 1.875rem rgba(0, 0, 0, .039);
    box-shadow: 0 .625rem 1.875rem rgba(0, 0, 0, .039);
    display: flex;
    padding: .25rem;
    width: 100%;
}

.header-section .megaSearch .input-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.header-section .hidden-label {
    font-size: 0;
    height: 0;
    line-height: 0;
    display: none;
    opacity: 0;
    overflow: hidden;
    position: relative;
    width: 0;
}

.header-section .megaSearch .form-control {
    border: 0;
    border-radius: var(--border-radius);
    max-height: 2.75rem;
    padding: .813rem .75rem;
    width: 100%;
}

.header-section .megaSearch .btn {
    font-size: 1rem;
    line-height: 1.313rem;
    min-height: 3.375rem;
    min-width: 10.75rem;
    align-items: center;
    background: var(--white);
    border: .125rem solid var(--primary);
    border-radius: var(--border-radius);
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    font-family: Poppins, Verdana, Geneva, "sans-serif";
    font-size: .875rem;
    font-weight: 500;
    justify-content: center;
    line-height: 1;
    min-height: 3.125rem;
    min-width: 7.5rem;
    outline: none;
    padding: .75rem 1.75rem;
    position: relative;
    text-align: center;
    transition: all .1s ease;
}

.header-section .content .megaSearch input {
    display: block;
}

.header-section .content .megaSearch input:focus-visible {
    outline: unset;
}

.header-section .mainHub.mainFirstHub {
    display: block;
}

.header-section .mainHub.mainSecondHub {
    display: none;
}

.header-section .menu>ul>li .sub-menu.mega-menu .uiGyas .list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #555555;
    text-decoration: none;
}

.header-section .menu>ul>li .sub-menu.mega-menu .uiGyas .list-item>ul>li>a:hover {
    color: var(--primary);
    text-decoration: none;
}

.header-section .menu>ul>li .sub-menu.mega-menu .uiGyas .list-item>ul>li {
    line-height: 1;
    display: block;
}

.header-section .menu>ul>li .sub-menu.mega-menu .uiGyas .list-item>ul {
    column-gap: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(1.875rem, calc(33.33333% - .66667rem)));
    margin-bottom: 0;
    row-gap: 1.875rem;
}

.header-section .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #555555;
    /* transition: color 0.3s ease; */
}

.header-section .mainHub.mainFirstHub .content label,
.header-section .menu-main .menu-item-has-children>a,
.header-section .menu-main .menu-item-normal>a,
.header-section .list-item ul li a {
    position: relative;
    text-decoration: none;
    z-index: 1;
    display: inline;
    padding-bottom: 1px;
    background-image: -o-linear-gradient(transparent calc(100% - 1px), var(--primary) 1px);
    background-image: linear-gradient(transparent calc(100% - 1px), var(--primary) 1px);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    -webkit-transition: background-size 350ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9), opacity 250ms cubic-bezier(.15, .3, .2, .9);
    -o-transition: background-size 350ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9), opacity 250ms cubic-bezier(.15, .3, .2, .9);
    transition: background-size 350ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9), opacity 250ms cubic-bezier(.15, .3, .2, .9);
}

.header-section .mainHub.mainFirstHub .content label:hover,
.header-section .menu-main .menu-item-normal>a:hover,
.header-section .menu-main .menu-item-has-children>a:hover,
.header-section .list-item ul li a:hover {
    background-size: 100% 100%;
    background-position: left bottom;
}

.header-section .search-input-box .input-col .hidden-label {
    display: none !important;
}

.header-section .search-input-box .input-col .form-control:focus {
    box-shadow: unset;
}

.header-item .cust-tsa-pad {
    font-size: 12px;
    margin-bottom: 0 !important;
    font-weight: 400;
    color: #606060;
}

.compbt {
    margin-bottom: 30px;
}

.compbt span {
    font-size: 28px;
}

.header-section .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 1130px;
    margin-top: 18px !important;
    box-shadow: unset;
    border-radius: 0px 0 20px 20px;
    border: 1px solid #e9e9e9;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.form-control:focus {
    box-shadow: unset;
}

/* ****************************
==========VIDEO START==========
***************************** */

.video-section {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    border-radius: 40px;
    margin-top: 50px;
}

.video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 40px;
}

.video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 40px;
    /* Overlay for better text visibility */
    z-index: 1;
}

.video-section .textVid {
    color: white;
    text-align: center;
    z-index: 1;
    width: 600px;
    max-width: 100%;
}

.video-section .topVidText {
    font-size: 15px;
    font-weight: 300;
    position: relative;
    padding-right: 8px;
    padding-left: 8px;
    display: flex;
    white-space: nowrap;
}

.video-section .topVidText::after,
.video-section .topVidText::before {
    color: #ffffff00;
    content: '';
    flex: 1;
    border-bottom: groove 1px;
    margin: auto 0.75rem;
    box-shadow: 0 -2px;
    opacity: 0.6;
}

.video-section .divider__text {
    color: #ffffff;
    font-family: "Catamaran", Sans-serif;
    font-size: 80px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.2em;
}

span.title_main {
    background: linear-gradient(to right, #6e60ff, #ff1e24, #6e60ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ****************************
==========ABOUT START==========
***************************** */

.about-section span.bottom-line.bottom-line-big {
    width: 100px;
    display: inline-block;
    border: 1px solid #191919;
}

.title-h4 {
    font-size: 42px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--black);
}

.about-section .desc b {
    color: var(--primary);
}

.desc {
    font-size: 16px;
    line-height: 32px;
    color: #191919;
}

/* *******************************
==========SERVICES START==========
******************************** */


.all-services-tabs a.mobile-app-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a.web-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a.ecommerce-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a.blockchain-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a.game-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a.salesforce-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a.ai-ml-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a.iot-dev-tab {
    background-image: url(../images/services/game-dev-tab.webp);
    transition: ease-in-out .7s;
}

.all-services-tabs a:before {
    content: '';
    background-image: url(../images/services/active-tab-arrow.svg);
    position: absolute;
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    right: 20px;
    bottom: 20px;
    filter: invert(1);
    opacity: 0
}

.all-services-tabs a {
    color: #fff;
    background-color: #fff !important;
    border: 1px solid #ededed !important;
    border-radius: var(--border-radius) !important;
    min-height: 270px;
    overflow: hidden;
    transition: ease-in-out .7s;
    background-size: cover;
    background-position: center;
}

.services-section .tab-content .card {
    min-height: 670px;
    background: unset;
    border: unset;
}

.services-section .tab-content {
    background-image: url(../images/services/mobile-app-dev-serv-bg.webp);
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
}

.all-services-tabs a.active:before {
    filter: invert(1);
    opacity: 1;
}

.all-services-tabs a .title-h6 {
    font-size: 21px;
    color: #fff;
    font-weight: 600;
}

.all-services-tabs a .sub-txt {
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
}

.services-section a:hover,
.all-services-tabs a:hover {
    text-decoration: none;
}

span.bottom-line {
    width: 50px;
    display: inline-block;
    border: 1px solid #191919;
    margin-bottom: 20px;
}

.all-services-tabs a.mobile-app-dev-tab:hover,
.all-services-tabs a.web-dev-tab:hover,
.all-services-tabs a.ecommerce-dev-tab:hover,
.all-services-tabs a.blockchain-dev-tab:hover,
.all-services-tabs a.game-dev-tab:hover,
.all-services-tabs a.salesforce-dev-tab:hover,
.all-services-tabs a.ai-ml-dev-tab:hover,
.all-services-tabs a.iot-dev-tab:hover {
    background-size: 140%, 140%;
    background-repeat: no-repeat;
    background-position: center;
    transition: ease-in-out .7s;
}

.services-section .title-h5 {
    font-size: 32px;
    font-weight: 600;
    color: var(--black);
}

.services-section ul.list-gp-circle {
    padding-left: 2rem;
}

.services-section .tab-content .list-gp-circle li:before {
    border: 3px solid #191919;
}

.services-section .list-gp-circle li:before {
    content: '';
    position: absolute;
    border-radius: 100px;
    border: 3px solid #fff;
    opacity: .15;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
}

.services-section .list-gp-circle li {
    position: relative;
    margin: 5px 0;
}

.services-section .tab-content .list-gp-circle a:hover {
    color: var(--primary);
    font-weight: 600;
}

/* ************************************
==========WHY CHOOSE US START==========
************************************* */

.choose-us-section.section {
    overflow: unset;
}

.choose-us-section .grid {
    display: grid;
}

.choose-us-section .md\:gap-y-0 {
    row-gap: 0;
}

.choose-us-section .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choose-us-section .gap-6 {
    gap: max(24px, 1.25vw);
}

.choose-us-section .side-sticky {
    position: sticky;
}

.choose-us-section .md\:cont-padding {
    margin-bottom: max(30px, 2.604vw);
}

.choose-us-section .side-sticky h2 {
    font-size: max(22px, 2.678vw);
    line-height: max(33px, 3.542vw);
    font-weight: 600;
}

.choose-us-section .text-h5 {
    font-size: max(21px, 1.606vw);
    line-height: max(32px, 2.708vw);
}

.choose-us-section .mb-sm {
    margin-bottom: max(14px, 1.481vw);
}

.choose-us-section .svg-icon {
    display: flex;
    align-items: stretch;
}

.choose-us-section .svg-icon {
    height: max(48px, 3.125vw);
}

.choose-us-section .svg-icon img {
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
}

.choose-us-section .text-h4 {
    font-size: max(20px, 1.389vw);
    line-height: max(32px, 2.222vw);
}

.choose-us-section .resp-btn-outer a {
    color: var(--black);
}

.choose-us-section .resp-btn-outer .boxed {
    border-radius: var(--border-radius);
    background-color: var(--bg) !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: max(23px, 1.458vw);
}

.choose-us-section .gap-y-6 {
    row-gap: max(24px, 1.25vw);
}

.choose-us-section .resp-btn-outer .boxed p {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    color: #696969;
}

.about-offer .about-counter {
    background-color: var(--secondary);
    color: var(--white);
}

.about-offer .c-white {
    color: var(--white);
}

/* ****************************
==========OFFER START==========
**************************** */

.offer-section.section {
    background-color: var(--bg);
}

.offer-section.section .aos-animate.bg-light {
    border-radius: var(--border-radius);
    background-color: var(--white) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* ***************************************
==========BUSINESS SERVICE START==========
**************************************** */
.busHref:hover {
    text-decoration: none;
}

.busHref {
    color: var(--black);
    text-decoration: none;
}

.business-service-section {
    background-image: url(../images/business-service-bg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.business-service-section span.bottom-line.bottom-line-big {
    width: 100px;
}

.title-h5 {
    font-size: 32px;
    font-weight: 600;
}

.business-service-section .title-h5 {
    min-width: 205px;
}

.business-service-section hr {
    opacity: 0.06;
}

.business-service-section .a-btn:hover:before {
    min-width: 264px;
}

/* ***************************************
==========PORTFOLIO SERVICE START==========
**************************************** */
.portfolio-section {
    background-color: var(--bg);
}

.portfolio-section .project_list {
    padding: 35px 43px;
    background: #fff;
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    overflow: hidden;
}

.portfolio-section .project_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-section .project_list li {
    padding: 5px 19px;
    margin: 0 10px 10px 0;
    width: auto;
    float: left;
    background: #30303026;
    border-radius: var(--border-radius);
    line-height: 32px;
    font-weight: 500;
}

.portfolio-section .project_head,
.portfolio-section .project_list p.project_head {
    float: left;
    width: 100%;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    position: relative;
    margin: 21px 0 19px;
    padding-top: 10px;
}

.portfolio-section .project_head .casestudy_link {
    position: absolute;
    right: 0;
    top: 0;
    background: url('../images/arrow-white.svg') center / 18px no-repeat var(--secondary);
    border-radius: var(--border-radius);
    width: 65px;
    height: 40px;
    text-indent: -9999px;
}

.portfolio-section .project_list p {
    clear: both;
    margin: 0 0 22px;
    min-height: 84px;
}

.portfolio-section .pro_video {
    position: relative;
}

.portfolio-section .pro_video video {
    border-radius: 20px 20px 0px 0px;
}

.portfolio-section .pro_video .client_logo_over {
    max-width: 130px;
    margin-left: 10px;
}

.portfolio-section .client_logo_over {
    position: absolute;
    left: 10px;
    bottom: 20px;
}

.portfolio-section .client_logo_over img {
    max-height: 60px;
}

.portfolio-section .a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 225px;
}

/* **********************************
==========CALL ACTION START==========
************************************/

.CallToAction-section {
    position: relative;
    background: #000;
    color: #fff;
    padding: 2.5rem 0;
}

.CallToAction-section::before {
    content: "";
    width: calc(100% - 500px);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-270deg, hsla(0, 0%, 7%, 0), #000 50%, #000);
    filter: blur(0);
    z-index: 1;
}

.CallToAction-section .a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 182px;
}

.CallToAction-section .CallToAction_cta-cont__tQcL9 {
    position: relative;
    z-index: 1;
}

.CallToAction-section .CallToAction_cta-hd__G4NbR {
    font-size: 2.25rem;
    line-height: 2.875rem;
    color: #fff;
    font-weight: 500;
    font-family: latobold, Helvetica Neue, Helvetica;
    margin-bottom: .5rem;
}

.CallToAction-section .CallToAction_cta-hd__G4NbR p {
    margin-bottom: 0;
}

.CallToAction-section .CallToAction_cta-thumb__tF2ys {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.CallToAction-section .CallToAction_cta-desc__rICeu.CallToAction_cta-desc-lg__YAC5l p {
    font-size: 1.875rem;
    line-height: 2.75rem;
    margin: .75rem 0 0;
}

/* **********************************
==========TECHNOLOGY START==========
************************************/

.technology-section .custom-scroll {
    width: calc(100% + 64px);
    margin-left: -32px;
    display: inline-block;
    vertical-align: top;
    overflow: auto;
    padding-left: 32px;
    padding-right: 32px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}

.technology-section .nav-pills {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding-right: 40px;
    list-style: none;
    /* margin: 40px 0 0; */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.technology-section .tech-items li {
    position: relative;
    z-index: 1;
}

.technology-section .tech-items li a {
    padding: 15px 30px;
    border: 2px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--black);
    text-decoration: none;
    transition: all cubic-bezier(.15, .3, .2, .9) 250ms;
}

.technology-section .nav-pills .nav-link.active,
.technology-section .nav-pills .show>.nav-link {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-bottom-color: transparent;
    color: var(--primary);
    border-radius: 20px 20px 0px 0px;
}

.technology-section .tech-items li a img {
    margin-right: 8px;
    -webkit-filter: brightness(0.8) saturate(200%) hue-rotate(230deg);
    filter: brightness(0.8) saturate(200%) hue-rotate(230deg);
    -webkit-transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    -o-transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    transition: all 250ms cubic-bezier(.75, .1, .6, 1);
}

.technology-section .tech-items .nav-link.active img {
    -webkit-filter: none;
    filter: brightness(0.8) saturate(200%) hue-rotate(230deg);
}

.technology-section .tech-items .nav-pills::before {
    content: '';
    width: 100%;
    height: 90%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(12.5%, rgba(242, 242, 242, .30665)), color-stop(50.45%, #f3f3f3), color-stop(86.46%, rgba(242, 242, 242, .435694)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(242, 242, 242, .30665) 12.5%, #f3f3f3 50.45%, rgba(242, 242, 242, .435694) 86.46%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(242, 242, 242, .30665) 12.5%, #f3f3f3 50.45%, rgba(242, 242, 242, .435694) 86.46%, rgba(255, 255, 255, 0) 100%);
    -webkit-filter: blur(20px);
    filter: blur(20px);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.technology-section .tech-items .nav-pills::after {
    content: '';
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(19.31%, rgba(242, 242, 242, .30665)), color-stop(51.08%, #f3f3f3), color-stop(78.69%, rgba(242, 242, 242, .435694)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(242, 242, 242, .30665) 19.31%, #e7e7e7 51.08%, rgba(242, 242, 242, .435694) 78.69%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(242, 242, 242, .30665) 19.31%, #e7e7e7 51.08%, rgba(242, 242, 242, .435694) 78.69%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.technology-section a:hover {
    text-decoration: none;
}

.technology-section .tech-items li a {
    padding: 15px 30px;
    border: 2px solid transparent;
    text-decoration: none;
}

.technology-section .tab-content {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #fff;
    padding: 75px 0 0;
}

.technology-section .technology-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-gap: 30px 28px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.technology-section .technology-list .technology-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 160px;
    -webkit-transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    -o-transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    background: 0 0;
}

.technology-section .technology-list .technology-list-item span {
    display: block;
    color: var(--black);
    font-weight: 600;
}

.technology-section .technology-list figure {
    -webkit-transition: all .3s ease-in-out .1s;
    -o-transition: all .3s ease-in-out .1s;
    transition: all .3s ease-in-out .1s;
}

.technology-section .technology-list-item:hover figure {
    -webkit-transform: scale(1.2) translateY(-10%);
    -ms-transform: scale(1.2) translateY(-10%);
    transform: scale(1.2) translateY(-10%);
}

/* ***********************************
==========TESTIMONIALS START==========
**************************************/

.testimonial-section .owl-carousel .owl-nav.disabled {
    display: flex;
}

.testimonial-section .testimonial-items {
    display: flex;
    padding: 20px;
    border-radius: 10px;
}

.testimonial-section .testimonial-title {
    flex: 1;
    margin-right: 20px;
}

.subttl p,
.mainTtl p,
.testimonial-section .testimonial-title p {
    color: #6c757d;
    font-size: 16px;
    /* margin: 10px 0 20px; */
}

.testimonial-section .view-all-btn {
    background-color: #00b894;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.testimonial-section .view-all-btn:hover {
    background-color: #019877;
}

.testimonial-section .testimonial-slider {
    flex: 2;
    position: relative;
}

.testimonial-section .owl-carousel .testimonial-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-section .testimonial-text {
    font-size: 18px;
    font-weight: bold;
    color: #3f3d56;
}

.testimonial-section .testimonial-details {
    font-size: 14px;
    color: #6c757d;
    margin: 10px 0;
}

.testimonial-section .client-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.testimonial-section .client-info img {
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-section .client-info h4 {
    margin: 0;
    color: #3f3d56;
}

.testimonial-section .client-info p {
    margin: 0;
    color: #6c757d;
}

/* Navigation Arrows */
.testimonial-section .owl-nav {
    position: absolute;
    bottom: -90px;
    right: 60px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-section .owl-nav button.owl-next,
.testimonial-section .owl-nav button.owl-prev {
    border: 2px solid #191919;
    min-width: 42px;
    height: 42px;
    left: 0;
    border-radius: 100px;
    transition: ease-in-out .5s;
}

/* ------------- */

.testimonial-slide,
.testimonial-slide .testimonial-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.testimonial-slide .testimonial-info {
    background: #fff;
    -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, .06);
    box-shadow: 0 4px 22px rgba(0, 0, 0, .06);
    padding: 75px 30px 30px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: var(--border-radius);
}



.testimonial-slide .testimonial-info::before {
    content: '\f10e';
    /* Adjust Unicode value */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    /* Required for solid icons */
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 2.5em;
    color: #f2f2f5;
    line-height: 1;
}

.testimonial-slide .testimonial-info .autho-info,
.testimonial-slide .testimonial-info .autho-info .author-name p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-slide .testimonial-info h4 {
    margin-bottom: 20px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 60px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.testimonial-slide .testimonial-info p {
    margin: 0 0 20px;
    color: #12141d;
}

.testimonial-slide .testimonial-info>p{
    overflow: auto;
    height: 130px;
}
.testimonial-slide .testimonial-info .autho-info {
    margin-top: auto;
}

.testimonial-slide .testimonial-info .autho-info figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 24px;
    width: 70px;
    height: 70px;
}

.testimonial-slide .testimonial-info .autho-info figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-slide .testimonial-info .autho-info .author-name {
    width: calc(100% - 94px);
}

.rating-details {
    height: 21px;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.rating-details span {
    background: url('../images/testimonials/star-without-fill.svg') no-repeat center left;
    width: 105px;
    height: 18px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.form-group.spinner,
.rating-details span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

.rating-details span>span {
    background: url('../images/testimonials/star.svg') no-repeat center left;
    -webkit-transition: all 600ms cubic-bezier(.75, .1, .6, 1);
    -o-transition: all 600ms cubic-bezier(.75, .1, .6, 1);
    transition: all 600ms cubic-bezier(.75, .1, .6, 1);
}

.testimonial-slide .testimonial-info .autho-info .author-name p {
    font-weight: 600;
    font-size: 1.125em;
    margin-bottom: 5px;
}

.testimonial-slide .testimonial-info .autho-info .author-name>span {
    font-size: .875em;
    font-weight: 600;
    color: rgba(18, 20, 29, .7);
    display: inline-block;
    vertical-align: top;
}

.testimonial-section {
    background-color: var(--bg);
    overflow: hidden;
}

.testimonial-section .testimonial-title {
    max-width: 446px;
    width: 446px;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.testimonial-section .testimonial-slider {
    max-width: calc(100% - 446px);
    width: auto;
    overflow: hidden;
    margin: 0 -40px 0 auto;
}

.testimonial-section .testimonial-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.testimonial-section .rating-platform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 50px;
    padding: 0 20px;
    max-width: calc(100% - 446px);
    width: auto;
    overflow: hidden;
    margin: 0 -63px 0 auto;
    margin-top: -100px;
}

.testimonial-section .platform-logo {
    margin: 0 auto 0 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-gap: 70px;
    width: calc(100% - 126px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.platform-logo figure {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(33.33% - 70px);
}

.platform-logo figure img {
    max-height: 71px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.testimonial-section .slider-one.owl-carousel.owl-loaded.owl-drag {
    margin-bottom: 100px;
}

/* ***********************************
==========OUR PRODUCTS START==========
**************************************/

.our-product-section .HomeSolutions_solution-card__oSfA6 {
    width: 100%;
    height: 550px;
    position: relative;
}

.our-product-section .HomeSolutions_solution-card__oSfA6 .HomeSolutions_thumb__QQWEU {
    width: 100%;
    height: 100%;
    background-color: #212121;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.our-product-section .HomeSolutions_solution-card__oSfA6 .HomeSolutions_thumb__QQWEU img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.our-product-section .HomeSolutions_solution-card__oSfA6 .HomeSolutions_overlay__LL5uj {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem 6rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: rgba(0, 0, 0, .4);
    border-radius: var(--border-radius);
}

.our-product-section .HomeSolutions_solution-card__oSfA6 .HomeSolutions_overlay-top__0peTr {
    width: 60%;
}

.our-product-section .HomeSolutions_solution-card__oSfA6 .HomeSolutions_overlay-top__0peTr .HomeSolutions_title__khJKl {
    color: #fff;
    font-size: 2.75rem;
    line-height: 3.625rem;
}

.our-product-section .HomeSolutions_solution-card__oSfA6 .HomeSolutions_overlay-top__0peTr .HomeSolutions_desc__gY4ou {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin: 1.5rem 0 0;
}

.our-product-section .HomeSolutions_solution-card__oSfA6 .HomeSolutions_overlay-btm__864Z3 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.cmn-btn {
    min-width: 190px;
    line-height: 44px;
    border-radius: 8px;
    text-align: center;
    background: #0067ff;
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    padding: 0 10px;
    font-family: latoregular, Helvetica Neue, Helvetica;
    border: 2px solid #0067ff;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.our-product-section .owl-item {
    width: 1320px;
}

.our-product-section .owl-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.our-product-section .owl-nav {
    position: absolute;
    top: 50%;
    width: calc(100% - 0px);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 72px;
}

.our-product-section .owl-nav button {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 2px solid #191919 !important;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.our-product-section .owl-nav button.prev {
    left: calc((100% - 1520px) / 2);
}

.our-product-section .owl-carousel .owl-item .HomeSolutions_overlay-btm__864Z3 img {
    width: 40px !important;
}

.our-product-section .owl-carousel.owl-loaded {
    margin-bottom: 0;
}

/* ***********************************
==========SUB-SURVICES START==========
**************************************/

.services-section {
    background-color: var(--bg);
}

.sub-services-section {
    overflow: hidden;
}

.sub-services-section .sub-services-items {
    display: flex;
    padding: 20px;
    border-radius: 10px;
}

.sub-services-section .sub-services-title {
    flex: 1;
    margin-right: 20px;
}

.sub-services-section .sub-services-title p {
    color: #6c757d;
    font-size: 16px;
    margin: 10px 0 20px;
}

.sub-services-section .view-all-btn {
    background-color: #00b894;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.sub-services-section .view-all-btn:hover {
    background-color: #019877;
}

.sub-services-section .sub-services-slider {
    flex: 2;
    position: relative;
}

.sub-services-section .owl-carousel .sub-services-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.sub-services-section .sub-services-text {
    font-size: 18px;
    font-weight: bold;
    color: #3f3d56;
}

.sub-services-section .sub-services-details {
    font-size: 14px;
    color: #6c757d;
    margin: 10px 0;
}

.sub-services-section .client-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sub-services-section .client-info img {
    border-radius: 50%;
    margin-right: 10px;
}

.sub-services-section .client-info h4 {
    margin: 0;
    color: #3f3d56;
}

.sub-services-section .client-info p {
    margin: 0;
    color: #6c757d;
}

/* Navigation Arrows */
.sub-services-section .owl-nav {
    position: absolute;
    bottom: -90px;
    right: 60px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-services-section .owl-nav button.owl-next,
.sub-services-section .owl-nav button.owl-prev {
    border: 2px solid #191919;
    min-width: 42px;
    height: 42px;
    left: 0;
    border-radius: 100px;
    transition: ease-in-out .5s;
}

/* ------------- */

.sub-services-slide,
.sub-services-slide .sub-services-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.sub-services-slide .sub-services-info {
    background: #fff;
    -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, .06);
    box-shadow: 0 4px 22px rgba(0, 0, 0, .06);
    padding: 75px 30px 30px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sub-services-slide .sub-services-info::before {
    content: '\f10e';
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 2.5em;
    font-family: 'FontAwesome' !important;
    color: #f2f2f5;
    line-height: 1;
}

.sub-services-slide .sub-services-info .autho-info,
.sub-services-slide .sub-services-info .autho-info .author-name p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sub-services-slide .sub-services-info h4 {
    margin-bottom: 20px;
}

.sub-services-slide .sub-services-info p {
    margin: 0 0 20px;
    color: #12141d;
}

.sub-services-slide .sub-services-info .autho-info {
    margin-top: auto;
}

.sub-services-slide .sub-services-info .autho-info figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 24px;
    width: 70px;
    height: 70px;
}

.sub-services-slide .sub-services-info .autho-info figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sub-services-slide .sub-services-info .autho-info .author-name {
    width: calc(100% - 94px);
}

.rating-details {
    height: 21px;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.rating-details span {
    background: url('../images/sub-servicess/star-without-fill.svg') no-repeat center left;
    width: 105px;
    height: 18px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.form-group.spinner,
.rating-details span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

.rating-details span>span {
    /* background: url(../images/sub-servicess/star.svg) no-repeat center left; */
    -webkit-transition: all 600ms cubic-bezier(.75, .1, .6, 1);
    -o-transition: all 600ms cubic-bezier(.75, .1, .6, 1);
    transition: all 600ms cubic-bezier(.75, .1, .6, 1);
}

.sub-services-slide .sub-services-info .autho-info .author-name p {
    font-weight: 600;
    font-size: 1.125em;
    margin-bottom: 5px;
}

.sub-services-slide .sub-services-info .autho-info .author-name>span {
    font-size: .875em;
    font-weight: 600;
    color: rgba(18, 20, 29, .7);
    display: inline-block;
    vertical-align: top;
}

.sub-services-section {
    background-color: var(--bg);
    overflow: hidden;
}

.sub-services-section .sub-services-title {
    max-width: 446px;
    width: 446px;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.sub-services-section .sub-services-slider {
    max-width: calc(100% - 446px);
    width: auto;
    overflow: hidden;
    margin: 0 -40px 0 auto;
}

.sub-services-section .sub-services-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.sub-services-section .rating-platform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 50px;
    padding: 0 20px;
    max-width: calc(100% - 446px);
    width: auto;
    overflow: hidden;
    margin: 0 -63px 0 auto;
    margin-top: -100px;
}

.sub-services-section .platform-logo {
    margin: 0 auto 0 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-gap: 70px;
    width: calc(100% - 126px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.platform-logo figure {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(33.33% - 70px);
}

.platform-logo figure img {
    max-height: 71px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.sub-services-section .card {
    padding: 25px;
    border: unset;
    background-color: #fff;
    border-radius: var(--border-radius);
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.sub-services-section .img-fluid {
    max-width: 100%;
    height: auto;
}

.sub-services-section .card .content-box h3 {
    color: #191919;
    position: relative;
    font-size: 22px;
    font-weight: 400;
}

/* ***************************************************
==========CORE VALUE & WORKING PROCESS START==========
*****************************************************/

.core-value-section img {
    max-width: 100%;
    height: auto;
}


.working-process-section img {
    max-width: 100%;
    height: auto;
}

.working-process-section .a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 360px;
}

/* ****************************
==========FAQ'S START==========
******************************/

.faq-section.section {
    overflow: unset;
    background-color: var(--primary);
    background-size: auto !important;
}

.faq-section.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.8;
    z-index: 0;
}

.faq-section .grid {
    display: grid;
}

.faq-section .md\:gap-y-0 {
    row-gap: 0;
}

.faq-section .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-section .gap-6 {
    gap: max(24px, 1.25vw);
    position: relative;
    z-index: 1;

}

.faq-section .a-btn:before {
    border: 2px solid var(--bg);
}

.faq-section .aos-animate {
    color: var(--white);
}

.faq-section .side-sticky {
    position: sticky;
    color: var(--white);
}

.faq-section .md\:cont-padding {
    margin-bottom: max(30px, 2.604vw);
}

.faq-section .a-btn.waysa:hover:before {
    min-width: 354px;
}

.faq-section .side-sticky h2 {
    font-size: max(22px, 2.678vw);
    line-height: max(33px, 3.542vw);
    font-weight: 600;
}

.faq-section .text-h5 {
    font-size: max(21px, 1.606vw);
    line-height: max(32px, 2.708vw);
}

.faq-section .gap-y-6 {
    row-gap: unset;
}

.about-offer .about-counter {
    background-color: var(--secondary);
    color: var(--white);
}

.about-offer .c-white {
    color: var(--white);
}

.aos-animate {
    border-radius: var(--border-radius);
}


.faq-section .faq-item {
    border-bottom: 1px solid #ffffff7d;
}

.faq-section .faq-item:last-child {
    border-bottom: none;
}

.faq-section .faq-question {
    color: var(--bg);
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #ffffff3d;
    transition: background-color 0.3s ease;
}

.faq-section .faq-item:first-child .faq-question {
    border-radius: 20px 20px 0px 0px;
}

.faq-section .faq-item:last-child .faq-question {
    border-radius: 0px 0px 20px 20px;
}

.faq-section .faq-question:hover {
    background-color: #00000082;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #ffffff1a;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-section .faq-answer.open {
    max-height: 200px;
    /* Adjust for longer answers */
    padding: 15px 20px;
}

.faq-section .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-section .arrow.open {
    transform: rotate(90deg);
}

/* ***********************************
==========CONTACT FORM START==========
*************************************/

.contact-section .mini-container {
    max-width: 1000px !important;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.contact-section .cmr-contact {
    max-width: 750px;
    margin: 0px auto;
}

.contact-section .cmr-contact .aligncenter {
    align-items: center;
}

.contact-section .left-brush-top .left-brush {
    padding-left: 100px;
    position: relative;
}

.contact-section .left-brush::before {
    content: "";
    background-image: url(../images/pointer-re.svg);
    width: 100px;
    height: 100px;
    background-size: 100px;
    position: absolute;
    left: -25px;
    animation: mover 2s cubic-bezier(0.76, 0, 0.3, 1) alternate infinite;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10%);
    }
}

.contact-section .sec-title span {
    font-family: "GilroySemiBold", sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 17px;
    line-height: 2;
    text-align: left;
    position: relative;
    color: #000;
    padding-left: 60px;
}

.contact-section .sec-title span::before {
    content: "";
    height: 2px;
    width: 40px;
    position: absolute;
    left: 0px;
    background-color: #001033;
    top: 9px;
}

.contact-section .cmr-contact .sec-title h2,
.contact-section .cmr-contact .sec-title h3 {
    font-size: 40px;
}

.contact-section .cmr-contact .contact-form-detail {
    padding-top: 55px;
    line-height: 1.9;
}

.cmr-contact {
    max-width: 750px;
}

.cmr-contact .form-inline {
    display: block;
}

.contact-section .has-float-label {
    display: block;
    position: relative;
}

.contact-section .cmr-contact .form-inline input,
.contact-section .cmr-contact .form-inline select {
    height: 45px;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid #bcbcbc;
    font-weight: normal;
    line-height: 1;
    text-align: left;
    letter-spacing: 1.6px;
    padding: 16px 0px;
    box-shadow: none !important;
    outline: none;
    background: rgba(0, 0, 0, 0);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: #1d1e31;
    text-align: left;
    margin-bottom: 0px;
    font-family: "GilroyRegular", sans-serif;
    font-size: 16px;
}

.contact-section .has-float-label label {
    position: absolute;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    top: -0.5em;
    left: .75rem;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
}

.contact-section .has-float-label .form-control:placeholder-shown:not(:focus)+* {
    font-size: 16px;
    letter-spacing: 1.6px;
    opacity: 1;
    left: 0;
    top: .85em;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    justify-content: left;
    height: 30%;
    padding: 10px 0;
}

.contact-section .cmr-contact .row.m-0 .form-inline label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: flex-start;
    background-color: var(--white);
    font-weight: 100;
    left: 0;
}

.contact-section .mandetorysign {
    font-size: 20px;
    line-height: 10px;
    color: var(--primary);
}

.contact-section .has-float-label label::after {
    content: " ";
    display: block;
    position: absolute;
    background: #fff;
    height: 2px;
    top: 50%;
    left: -0.2em;
    right: -0.2em;
    z-index: -1;
}

.contact-section .cmr-contact .error-message {
    font-family: "GilroyRegular", sans-serif;
    font-weight: normal;
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact-section .cmr-contact .error-message {
    line-height: 1.2;
}

.contact-section .has-float-label label {
    position: absolute;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    top: -0.5em;
    left: .75rem;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
}

.contact-section .cmr-contact .form-inline input:focus,
.contact-section .cmr-contact .form-inline select:focus {
    box-shadow: none;
    border-color: #1d1e31;
}

.contact-section .formInputfield {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.contact-section .cmr-contact .form-inline {
    display: block;
}

.contact-section .cmr-contact .inqMessageField {
    margin-bottom: 20px;
}

.contact-section .cmr-contact .form-inline textarea {
    padding: 16px 0px;
    height: auto;
    background: #fff;
    border-radius: 0;
    border-bottom: 1px solid #bcbcbc;
    width: 100%;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: #1d1e31;
    text-align: left;
    margin-bottom: 0px;
    font-family: "GilroyRegular", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    text-align: left;
    min-height: 50px;
}

.contact-section .desAreaField {
    min-height: 100px !important;
}

.contact-section .cmr-contact .form-inline .cmr-label {
    font-family: "GilroyBold", sans-serif;
    font-weight: normal;
    min-width: auto;
    font-size: 16px;
    line-height: 44px;
    text-align: left;
    color: #1d1e31;
    justify-content: flex-start;
    margin-right: 15px;
}

.contact-section .servicesList {
    display: flex;
    margin-bottom: 17px;
    padding: 0;
    gap: 12px 10px;
}

.contact-section .formServiceItem>input[type=checkbox],
.contact-section .formServiceItem>input[type=radio] {
    background-color: #c00;
    height: 0em;
    width: 0em;
    background: none;
    display: none;
}

.contact-section .checkform {
    /* display: inline-block; */
    flex-wrap: wrap;
}

.contact-section .formServiceItem label,
.contact-section .formServiceItem span {
    position: relative;
    top: 0;
    left: 0;
    color: #000;
    background: #fff 0% 0% no-repeat padding-box;
    border: 1px solid #b3b3bc;
    border-radius: 21px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    padding: 6px 10px;
    line-height: 17px;
    letter-spacing: .4px;
    -webkit-transition: background-color .5s, top .1s;
    transition: background-color .5s, top .1s;
    flex-grow: 1;
    text-align: center;
}

.contact-section .fileupload-info {
    font-size: 12px;
    line-height: 1.2;
    color: #565656;
    margin-bottom: 10px;
    font-weight: 300;
}

.contact-section .inquiryBtn {
    padding-right: 158px;
    position: relative;
}

.contact-section .formServiceItem>input[type=checkbox]:checked+label,
.contact-section .formServiceItem>input[type=checkbox]:checked+span,
.contact-section .formServiceItem>input[type=radio]:checked+label,
.contact-section .formServiceItem>input[type=radio]:checked+span {
    background-color: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.contact-section .file-upload {
    width: 100%;
    position: relative;
}

.contact-section .custom-file {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: border-color 0.3s ease-in-out;
}

.contact-section .custom-file:hover {
    border-color: var(--secondary);
}

.contact-section .custom-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.contact-section .custom-file-label {
    font-size: 16px;
    color: #555;
    margin: 12px 0;
    width: 100%;
    text-align: center;
}

.contact-section .custom-file i {
    margin-right: 10px;
    color: var(--secondary);
}

.contact-section .error-message {
    color: var(--primary);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.contact-section .a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 150px;
}

/* ***********************************
==========BLOG DETAILS START==========
*************************************/
.about-project-section.blog-details{
    overflow: unset;
}
.blog-detail-left button:before {
    content: unset;
  }
  
  .blog-detail-left button.btnMain:hover {
    background-color: var(--white);
  }
  
  .blog-detail-right h1 {
    font-size: 44px;
    line-height: 62px;
    font-weight: 400;
    margin-bottom: 64px;
    color: var(--black);
  }
  
  .blog-detail-right h4 {
    font-size: 44px;
    line-height: 62px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--black);
    letter-spacing: -1.3px;
  }
  
  .blog-detail-right h4#section3,
  .blog-detail-right h4#section2 {
    margin-bottom: 24px;
    letter-spacing: -1.3px;
  }
  
  .blog-detail-right p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #666666;
    letter-spacing: -0.1px;
  }
  
  .blog-detail-right h5 {
    letter-spacing: -0.1px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #444444;
  
  }
  
  .blog-detail-right .economic-counter h5 {
    margin-bottom: 8px;
  }
  
  .blog-detail-right .blog-detail-img {
    margin-bottom: 56px;
    margin-top: 56px;
  }
  
  .blog-banner-detail {
    background: var(--primary);
    height: 364px;
    border-radius: 12px;
    padding: 50px;
    position: relative;
    overflow: hidden;
  }
  
  .blog-banner-detail .blog-bnar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  
  .blog-banner-detail .blog-bnertile h1 {
    color: var(--white);
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -2.0px;
  }
  
  .blog-banner-detail .blog-bnertile {
    width: 40%;
  }
  
  .blog-detaiSerarch input {
    background: unset;
    border: unset;
    color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #ffffff32;
    width: 64%;
    font-weight: 500;
    font-size: 18px;
    line-height: 21.6px;
  }
  
  .blog-detaiSerarch input::placeholder {
    color: #ffff;
    font-weight: 500;
    font-size: 18px;
    line-height: 21.6px;
  }
  
  .blog-banner-detail::before {
    width: 323.56px;
    content: '';
    background-image: url(../images/blog/blog-detail-bg.png);
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    right: 0;
    top: 0;
    z-index: 0;
  }
  
  .blog-detaiSerarch button {
    width: 121px;
    height: 48px;
    background-color: var(--white);
    font-weight: 600;
    font-size: 14px;
    line-height: 32px;
    border: 1px solid var(--white);
    color: var(--black);
    border-radius: var(--border-radius);
    margin-left: 20px;
  }
  
  .scrollspy-container .social-icons a {
    width: 48px;
    height: 48px;
    background-color: #0E1D350D;
    color: var(--text);
  }
  .social-icons a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 8px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: inline-flex
  ;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: ease-in-out .3s;
  }
  
  .blog-detaiSerarch input:focus,
  .blog-detaiSerarch input:focus-visible {
    outline-offset: unset;
    outline: unset;
    box-shadow: unset;
  }
  
  .breadcrumb-content img.breadsasd {
    height: 100%;
  }
  
  .blog-details.about-project-section {
    position: relative;
    scroll-behavior: smooth;
    overflow: unset;
    padding-top: 124px;
    padding-bottom: 90px;
  }
  
  .blog-details.about-project-section.projectDis {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .blog-details.about-project-section .blog-detail-right h1 {
    letter-spacing: -1.8px;
  }
  
  .blog-details.about-project-section .sticky-sidebar {
    position: sticky;
    top: 20px;
  }
  
  .blog-details.about-project-section .scrollspy-content {
    /* height: 500px; */
    overflow-y: auto;
    padding-left: 20px;
  }
  
  .blog-details.about-project-section .nav-link {
    padding: 10px 0;
    transition: ease-in-out .3s;
    color: #0E1D3570;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
  
  }
  
  .blog-details.about-project-section .nav-link:hover,
  .blog-details.about-project-section .nav-link.active {
    color: var(--black);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    transition: ease-in-out .3s;
    text-decoration: none;
  
  }
  
  .blog-details.about-project-section .progress-indicators,
  .blog-details.about-project-section .progress-indicator{
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 30px;
  }
  
  .blog-details.about-project-section .scrollspy-container::before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #99999960;
    z-index: 0;
    top: 0.4px;
  }
  
  .blog-details.about-project-section .scrollspy-container {
    position: relative;
    width: 80%;
  }
  
  #scrollspy-nav button {
    margin-bottom: 40px;
  }
  
  .scrollspy-container p {
    padding-top: 40px;
    margin: 0;
    padding-bottom: 3px;
    color: #999999;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.2px;
  
  }
  
  .scrollspy-container ul.nav {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #99999932;
  }
  
  .scrollspy-container .social-icons a {
    width: 48px;
    height: 48px;
    background-color: #0E1D350D;
    color: var(--black);
  }
  
  .blog-detail-manage .testimonial-items {
    padding-top: 90px;
    border-top: 1px solid #99999932;
  }
  
/* ***************************
==========BLOG START==========
*****************************/

.blog-section {
    background-color: var(--bg);
}

.blog-section .insights-blogs-item {
    background-color: #fff;
    border: .063rem solid #ebebeb;
    border-radius: var(--border-radius);
    position: relative;
    transition: ease-in-out .5s;
}

.blog-section .insights-blogs-details {
    padding: 1.875rem 1.875rem 1.7rem;
}

.blog-section .insights-blogs-details .insight-title.h6 {
    color: var(--secondary);
    line-height: 1.5rem;
    margin-top: 0;
    transition: all .1s ease;
}

.blog-section .insights-blogs-details>.h5 {
    color: #191d26;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.625rem;
    margin: 0 0 .7rem;
    padding: 0;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    font-size: 1.5rem;
    line-height: 2.125rem;
}

.blog-section .insights-blogs-item:hover {
    -ms-box-shadow: 0 .025rem .65rem rgba(0, 0, 0, .33);
    -o-box-shadow: 0 .025rem .65rem rgba(0, 0, 0, .33);
    box-shadow: 0 .025rem .65rem rgba(0, 0, 0, .33);
    transition: ease-in-out .5s;
}

/* *****************************
==========FOOTER START==========
*******************************/

footer {
    position: relative;
    overflow: hidden
}

footer.footer-section {
    border-top: 1px solid rgba(235, 235, 240, .7);
}

footer .footer-globe,
footer canvas#cobe {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 9;
    pointer-events: none
}

footer .last-footer {
    background: #fff;
    position: relative;
    z-index: 5;
    overflow: hidden
}

footer .ftr-top-sec {
    padding: 50px 0;
    background-color: #faf9f8;
    position: relative;
    overflow: hidden;
    z-index: 8
}

footer .ftr-top-sec .ftrani {
    display: block;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0
}

footer .ftr-top-sec .footer-ani {
    width: calc(100% + 10px)
}

footer .ftr-top-row,
footer .ftr-top-row .ftr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 60px
}

@media (max-width: 1400px) {
    footer .ftr-top-row {
        grid-gap: 40px
    }
}


@media (max-width: 575px) {
    footer .ftr-top-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

footer .ftr-top-row .ftr-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 33px;
    width: 35%
}

footer .ftr-top-row .ftr-box:first-child {
    width: 65%
}

@media (max-width: 991px) {
    footer .ftr-top-row .ftr-box:first-child {
        width: 50%
    }
}

@media (max-width: 575px) {
    footer .ftr-top-row .ftr-box:first-child {
        width: 100%;
        margin-bottom: 0
    }
}

@media (max-width: 991px) {
    footer .ftr-top-row .ftr-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 50%
    }
}

@media (max-width: 575px) {
    footer .ftr-top-row .ftr-box {
        width: 100%;
        grid-gap: 20px;
        margin-bottom: 20px
    }

    footer .ftr-top-row .ftr-box:last-child {
        margin-bottom: 0
    }
}

@media (max-width: 991px) {
    footer .ftr-top-row .ftr-box .ftr-logo {
        min-height: 100px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width: 575px) {
    footer .ftr-top-row .ftr-box .ftr-logo {
        min-height: auto
    }
}

footer .ftr-top-row .ftr-box .ftr-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 220px;
    width: 100%
}

@media (max-width: 1400px) {
    footer .ftr-top-row .ftr-box .ftr-logo a {
        min-width: 200px
    }
}

@media (max-width: 1199px) {
    footer .ftr-top-row .ftr-box .ftr-logo a {
        min-width: 160px;
        max-width: 160px
    }
}

footer .ftr-top-row .ftr-box .ftr-section-title {
    position: relative;
    padding-left: 33px
}

@media (max-width: 991px) {
    footer .ftr-top-row .ftr-box .ftr-section-title {
        padding-left: 0
    }
}

footer .ftr-top-row .ftr-box .ftr-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(160, 160, 166, .3)
}

@media (max-width: 991px) {
    footer .ftr-top-row .ftr-box .ftr-section-title::before {
        display: none
    }
}

footer .ftr-top-row .ftr-box .ftr-section-title h6 {
    font-size: 1em;
    line-height: normal;
    margin-bottom: 5px
}

footer .ftr-top-row .ftr-box .ftr-section-title p {
    font-size: .875em;
    color: #555770;
    margin-bottom: 0
}

footer .ftr-center {
    padding: 75px 0;
    position: relative;
    z-index: 1;
    background: #fff
}

@media (max-width: 1199px) {
    footer .ftr-center {
        padding-top: 0
    }
}

footer .ftr-center .ftr-center-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #ebebf0;
    padding-bottom: 77px
}

@media (max-width: 1400px) {
    footer .ftr-center .ftr-center-row {
        grid-gap: 20px
    }
}

@media (max-width: 1199px) {
    footer .ftr-center .ftr-center-row {
        grid-gap: 0;
        width: calc(100% + 64px);
        margin-left: -32px;
        padding-bottom: 0;
        border-bottom: 0
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec {
        width: 100% !important;
        background: #fff
    }
}

@media (min-width: 576px) {
    footer .ftr-center .ftr-center-row .ftr-link-sec .footer-box:not(:first-child) {
        margin-top: 20px
    }
}

footer .ftr-center .ftr-center-row .ftr-link-sec .footer-box h6 {
    margin-bottom: 15px;
    color: #555770;
    font-weight: 700
}

footer .ftr-center .ftr-center-row .ftr-link-sec h4 {
    margin: 0 0 20px;
    color: #28293d;
    text-transform: capitalize
}

@media (max-width: 1199px) {
    footer .ftr-center .ftr-center-row .ftr-link-sec h4 {
        width: 100%;
        margin: 0 0 -1px;
        border: 1px solid #dededf;
        border-left: 0;
        border-right: 0;
        font-size: 18px;
        position: relative;
        padding: 15px 60px 15px 32px;
        -webkit-transition: background 250ms cubic-bezier(.75, .1, .6, 1);
        -o-transition: background 250ms cubic-bezier(.75, .1, .6, 1);
        transition: background 250ms cubic-bezier(.75, .1, .6, 1);
        cursor: pointer
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec h4::after,
    footer .ftr-center .ftr-center-row .ftr-link-sec h4::before {
        content: " ";
        width: 15px;
        height: 2px;
        background-color: var(--primary);
        display: block;
        position: absolute;
        top: 50%;
        left: calc(100% - 40px);
        -webkit-transition: all 250ms cubic-bezier(.65, 0, .35, 1);
        -o-transition: all 250ms cubic-bezier(.65, 0, .35, 1);
        transition: all 250ms cubic-bezier(.65, 0, .35, 1);
        opacity: 1;
        border-radius: 2px
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec h4::before {
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
        -ms-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg)
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec h4::after {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec h4.open {
        background: #fbfbfb
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec h4.open::after,
    footer .ftr-center .ftr-center-row .ftr-link-sec h4.open::before {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg)
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec h4.open::after {
        opacity: 0
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec .fmenu {
        display: none;
        padding: 20px 32px
    }
}

@media (max-width: 575px) {
    footer .ftr-center .ftr-center-row .ftr-link-sec .fmenu .grid3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    footer .ftr-center .ftr-center-row .ftr-link-sec .fmenu .grid3 .col {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1/-1
    }
}

@media (min-width: 1200px) {
    footer .ftr-center .ftr-center-row .ftr-link-sec ul {
        display: grid;
    }
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul.grid3 {
    grid-template-columns: auto auto auto;
    grid-gap: 0 20px
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul li {
    margin: 0 0 7px;
    position: relative
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul li a {
    color: #555770
}

@media (max-width: 1400px) {
    footer .ftr-center .ftr-center-row .ftr-link-sec ul li a {
        font-size: 15px
    }
}

@media (max-width: 1199px) {
    footer .ftr-center .ftr-center-row .ftr-link-sec ul li a {
        font-size: 16px
    }
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul li>span:before {
    content: '';
    width: 0;
    height: 0;
    border-width: 0 0 10px 12px;
    border-color: transparent transparent var(--primary);
    border-style: solid;
    position: absolute;
    left: -12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

footer .ftr-center .ftr-center-row .ftr-link-sec {
    width: calc(20% - 25px)
}

footer .ftr-center .ftr-center-row .ftr-link-sec:first-child {
    width: calc(15% - 30px)
}


footer .ftr-center .ftr-center-row .ftr-link-sec:nth-child(3) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: calc(45% - 10px)
}

footer .award-company-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 30px;
    padding-bottom: 65px
}

@media (max-width: 991px) {
    footer .award-company-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        grid-gap: 40px;
        padding-bottom: 50px
    }
}

@media (max-width: 991px) {
    footer .award-company-box .ftr-bottom-row {
        width: 100%
    }
}

footer .award-company-box .ftr-bottom-row h2 {
    margin-bottom: 40px
}

@media (max-width: 1400px) {
    footer .award-company-box .ftr-bottom-row h2 {
        font-size: 28px
    }
}

@media (max-width: 1199px) {
    footer .award-company-box .ftr-bottom-row h2 {
        font-size: 24px
    }

    footer .award-company-box .ftr-bottom-row h2 img {
        max-width: 18px
    }
}

@media (max-width: 991px) {
    footer .award-company-box .ftr-bottom-row h2 {
        margin-bottom: 25px
    }
}


footer .award-company-box .ftr-bottom-row .ftr-bottom-logos,
footer .copyright .copyright-row .policy-link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos {
    grid-gap: 40px 30px;
    width: 100%;
    max-width: 940px
}

@media (max-width: 991px) {
    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos {
        grid-gap: 24px 15px
    }
}

@media screen and (max-width: 375px) {
    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos {
        grid-gap: 24px 15px
    }
}

@media (max-width: 991px) {
    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos .ftr-bottom-item {
        width: auto
    }
}

@media (max-width: 575px) {
    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos .ftr-bottom-item {
        width: 20%
    }
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos .ftr-bottom-item figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 130px;
    text-align: center
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos .ftr-bottom-item figure img {
    width: 100%;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width: 991px) {
    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos .ftr-bottom-item figure img {
        height: 30px
    }

    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos .ftr-bottom-item figure {
        max-width: 100%
    }
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos.rating-plateform-logo {
    grid-gap: 40px
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos.rating-plateform-logo .ftr-bottom-item {
    width: calc(33.33% - 30px)
}

@media (max-width: 991px) {
    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos.rating-plateform-logo .ftr-bottom-item {
        width: calc(25% - 30px)
    }
}


@media (max-width: 575px) {
    footer .award-company-box .ftr-bottom-row .ftr-bottom-logos.rating-plateform-logo .ftr-bottom-item {
        width: calc(50% - 14px)
    }
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos.rating-plateform-logo .ftr-bottom-item figure {
    max-width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos.rating-plateform-logo .ftr-bottom-item figure img {
    width: auto;
    max-height: 65px
}


footer .copyright {
    border-top: 1px solid rgba(235, 235, 240, .7);
    width: 100%;
    padding: 35px 0;
    background: #fff
}

footer .copyright .copyright-row {
    display: grid;
    grid-template-columns: auto auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    grid-gap: 20px
}


footer .copyright .copyright-row .policy-link ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px
}

@media screen and (max-width: 375px) {
    footer .copyright .copyright-row .policy-link ul {
        font-size: 13px
    }
}

footer .copyright .copyright-row .policy-link ul:first-child li {
    padding-left: 12px
}

@media (max-width: 575px) {
    footer .copyright .copyright-row .policy-link ul:first-child li {
        padding-left: 0
    }
}

footer .copyright .copyright-row .policy-link ul:first-child li:not(:last-child) {
    padding-right: 0
}

footer .copyright .copyright-row .policy-link ul:first-child li:first-child {
    padding: 0
}

footer .copyright .copyright-row .policy-link ul:first-child li:first-child::after {
    display: none
}

footer .copyright .copyright-row .policy-link ul:first-child li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #555770;
    border-radius: 50%
}

@media (max-width: 575px) {
    footer .copyright .copyright-row .policy-link ul:first-child li:after {
        display: none
    }
}

footer .copyright .copyright-row .policy-link ul:first-child li::before {
    display: none
}

footer .copyright .copyright-row .policy-link ul:not(:last-child) {
    margin-bottom: 8px
}

@media (max-width: 575px) {
    footer .copyright .copyright-row .policy-link ul:not(:last-child) {
        margin-bottom: 18px
    }

    footer .copyright .copyright-row .policy-link ul:not(:last-child) li::before {
        display: none
    }
}

footer .copyright .copyright-row .policy-link ul li {
    color: #555770;
    position: relative
}

@media (max-width: 575px) {
    footer .copyright .copyright-row .policy-link ul li {
        margin-bottom: 8px
    }
}

footer .copyright .copyright-row .policy-link ul li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px
}

@media (max-width: 575px) {
    footer .copyright .copyright-row .policy-link ul li:not(:last-child) {
        padding-right: 8px;
        margin-right: 8px
    }
}

footer .copyright .copyright-row .policy-link ul li:not(:last-child):before {
    content: '';
    width: 1px;
    height: 80%;
    background: #ededf0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

footer .copyright .copyright-row .policy-link ul li a {
    color: #555770
}

footer .copyright .copyright-row .policy-link ul li img {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto
}

footer .copyright .copyright-row .connect-with-us {
    margin-left: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 991px) {
    footer .copyright .copyright-row .connect-with-us {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        grid-gap: 10px;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

footer .copyright .copyright-row .connect-with-us h5 {
    margin-right: 32px;
    margin-bottom: 0
}

footer .copyright .copyright-row .connect-with-us ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 24px;
    grid-gap: 24px
}

@media (max-width: 767px) {
    footer .copyright .copyright-row .connect-with-us ul {
        font-size: 20px;
        grid-gap: 15px
    }
}

footer .copyright .copyright-row .connect-with-us ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #555770
}

footer .copyright .copyright-row .connect-with-us ul li a i {
    -webkit-transition: all cubic-bezier(.15, .3, .2, .9) 250ms;
    -o-transition: all cubic-bezier(.15, .3, .2, .9) 250ms;
    transition: all cubic-bezier(.15, .3, .2, .9) 250ms
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-linkedin {
    fill: #0077b5
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-instagram-1 {
    fill: #bc2a8d
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-x {
    fill: #000
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-youtube {
    fill: red
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-twitter {
    fill: #1da1f2
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-facebook {
    fill: #1773ea
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-dribble {
    fill: #b2215a
}

footer .copyright .copyright-row .connect-with-us ul li a:hover svg.fa-behance {
    fill: #1869ff
}

/* --------------------------------------------- */
footer .last-footer {
    background: #fff;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

footer .ftr-center {
    padding: 75px 0;
    position: relative;
    z-index: 1;
    background: #fff;
    padding-bottom: 0;
}

.wrap,
.wrap-small {
    max-width: 1644px;
    width: 100%;
    padding: 0 32px;
    margin: 0 auto;
}

footer .ftr-center .ftr-center-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: unset;
    padding-bottom: 77px;
}

footer .ftr-center .ftr-center-row .ftr-link-sec {
    width: calc(20% - 25px);
}

footer .ftr-center .ftr-center-row .ftr-link-sec:first-child {
    width: calc(15% - 30px);
}


footer .ftr-center .ftr-center-row .ftr-link-sec h4 {
    margin: 0 0 20px;
    color: var(--secondary);
    text-transform: capitalize;
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul {
    display: grid;
}

.ftr-listing,
.remove-dots {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul li {
    margin: 0 0 7px;
    position: relative;
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul li a {
    text-decoration: none;
    color: var(--black);
}

.link-hover2 {
    position: relative;
    z-index: 1;
    display: inline;
    padding-bottom: 1px;
    background-image: -o-linear-gradient(transparent calc(100% - 1px), var(--primary) 1px);
    background-image: linear-gradient(transparent calc(100% - 1px), var(--primary) 1px);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    -webkit-transition: background-size 350ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9), opacity 250ms cubic-bezier(.15, .3, .2, .9);
    -o-transition: background-size 350ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9), opacity 250ms cubic-bezier(.15, .3, .2, .9);
    transition: background-size 350ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9), opacity 250ms cubic-bezier(.15, .3, .2, .9);
}

.link-hover2:hover {
    background-size: 100% 100%;
    background-position: left bottom;
}

.link-hover.active,
footer .copyright .copyright-row .policy-link ul li a:hover,
footer .ftr-center .ftr-center-row .ftr-link-sec ul li a:hover {
    color: var(--primary);
}

footer .ftr-center .ftr-center-row .ftr-link-sec:nth-child(3) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: calc(45% - 10px);
}

footer .technology .grid {
    grid-template-columns: 130px 140px 130px 130px 130px auto;
    gap: 30px;
}

footer .grid {
    display: grid;
}

footer .ftr-center .ftr-center-row .ftr-link-sec .footer-box h6 {
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul li {
    margin: 0 0 7px;
    position: relative;
}

.hiring-tag,
footer .ftr-center .ftr-center-row .ftr-link-sec ul li>span {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    background-color: var(--secondary);
    padding: 3px 8px;
    margin-left: 13px;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    color: #fff;
}

footer .ftr-center .ftr-center-row .ftr-link-sec ul li>span:before {
    content: '';
    width: 0;
    height: 0;
    border-width: 0 0 10px 12px;
    border-color: transparent transparent var(--secondary);
    border-style: solid;
    position: absolute;
    left: -12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

footer .copyright {
    border-top: 1px solid rgba(235, 235, 240, .7);
    width: 100%;
    padding: 35px 0;
    background: #fff;
}

footer .copyright .copyright-row {
    display: grid;
    grid-template-columns: auto auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    grid-gap: 20px;
}

footer .ftr-center .ftr-center-row .ftr-link-sec h4 {
    pointer-events: none;
}

footer .copyright .copyright-row .policy-link ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

footer .copyright .copyright-row .policy-link ul:not(:last-child) {
    margin-bottom: 8px;
}

footer .award-company-box .ftr-bottom-row .ftr-bottom-logos,
footer .copyright .copyright-row .policy-link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .copyright .copyright-row .policy-link ul:first-child li {
    padding-left: 12px;
}

footer .copyright .copyright-row .policy-link ul li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
}

footer .copyright .copyright-row .policy-link ul li {
    color: var(--black);
    position: relative;
}

footer .copyright .copyright-row .policy-link ul:first-child li:not(:last-child) {
    padding-right: 0;
}

footer .copyright .copyright-row .policy-link ul:first-child li:first-child {
    padding: 0;
}

footer .copyright .copyright-row .policy-link ul:first-child li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
}

footer .copyright .copyright-row .policy-link ul.footAtth li:not(:last-child):before,
footer .copyright .copyright-row .policy-link ul.footAtth li:first-child::after {
    content: unset;
}

footer .copyright .copyright-row .policy-link ul li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
}

footer .copyright .copyright-row .policy-link ul li {
    color: var(--black);
    position: relative;
}

footer .copyright .copyright-row .policy-link ul li:not(:last-child):before {
    content: '';
    width: 1px;
    height: 80%;
    background: #ededf0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

footer .copyright .copyright-row .policy-link ul li img {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
}

footer .copyright .copyright-row .connect-with-us {
    margin-left: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .copyright .copyright-row .policy-link ul li a {
    color: var(--black);
    text-decoration: none;
}

footer .copyright .copyright-row .connect-with-us h5 {
    margin-right: 32px;
    margin-bottom: 0;
}

footer .copyright .copyright-row .connect-with-us ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 24px;
    grid-gap: 24px;
}

footer .copyright .copyright-row .connect-with-us ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--secondary);
}


/* *******************************
==========ABOUT US START==========
*********************************/

.breadSpeak.breadacheive.breakTwo .breadcrumb-container {
    padding: 0 15px;
}

/* Breadcrumb Container with Fixed Background */
.breadcrumb-container {
    position: relative;
    background: url('../images/breadcrumb.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Keep the background fixed */
    padding: 50px 20px;
    /* Add spacing around the breadcrumb content */
    width: 100%;
    color: #fff;
    /* White text for contrast */
    text-align: left;
    /* Align text to the left */
    box-shadow: inset 0 -10px 10px rgba(0, 0, 0, 0.3);
    /* Optional shadow for depth */
    height: 100vh;
    max-height: 100%;
}

.breadcrumb-container::before {
    background-color: var(--black);
    opacity: 0.7;
    position: absolute;
    content: '';
    inset: 0;
}

/* Center Align Content */

.breadcrumb-content {
    max-width: 1320px;
    margin: 0 auto;
    font-size: 16px;
    display: flex;
    align-items: start;
    position: relative;
    gap: 5px;
    flex-direction: column;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

/* Breadcrumb Links */
.breadcrumb-content a {
    color: #ffcc00;
    /* Highlighted link color */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.breadcrumb-content a:hover {
    color: #fff;
    /* Change color on hover */
}

/* Animation: Highlight Current Page */
.breadcrumb-content span {
    position: relative;
    padding: 5px 10px;
    animation: fadeIn 1s ease-in-out;
    background-color: rgba(0, 0, 0, 0.5);
    /* Highlight background */
    border-radius: 5px;
    /* Rounded corners */
}

/* Keyframes for Smooth Appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-ul-li-p {
    margin-top: 1rem;
    /* margin-left: 1rem; */
}

.breadcrumb-border-b {
    width: 100%;
    border-bottom: 1px solid #ffffff4a;
    /* background-color: #ffffff1a; */
}

.hero-banner-title h1 {
    font-style: normal;
    font-size: 4rem;
    line-height: 4rem;
    color: #fff;
    margin-top: 2pc;
    margin-bottom: 2pc;
    width: 75%;
}

.hero-banner-container .hero-banner-inner-container .hero-banner-title-div {
    color: #fff;
    padding-top: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.hero-banner-description {
    font-size: 1.5rem;
    line-height: 2.1rem;
    letter-spacing: .5px;
    color: #f4f3f9;
    margin-bottom: 1rem;
    text-transform: none;
    width: 60%;
}

.breadcrumb {
    margin-bottom: 0;
}

/* Ripple Animation */
.breadcrumb .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 1s ease-out forwards;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 10%, transparent 80%);
    pointer-events: none;
}

@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* *******************************
==========OVERVIEW START==========
*********************************/

.overview-section .right {
    flex-direction: row-reverse;
}

.overview-section .overview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-section h2 {
    margin-top: -8px;
    color: var(--secondary);
}

.overview-section p {
    font-size: 1.125rem;
    line-height: 27px;
    font-weight: 400;
}

.content-highlight {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.overview-section img {
    object-fit: cover;
    height: 300px;
    border-radius: 4px;
    width: 100%;
}

.right .field--name-field-overview-media {
    padding-right: 60px;
}

/* ********************************
==========DRIVES US START==========
**********************************/
.drives-us-section .mainTtl {
    margin: 0 0 50px;
    z-index: 1;
}

.drives-us-section .drives-right {
    margin-left: 30px;
}

.drives-us-section {
    position: relative;
}

.drives-us-section::before,
.drives-us-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    /* Each side covers half */
    z-index: 0;
    /* Place the pseudo-elements behind content */
}

.drives-us-section::before {
    left: 0;
    background-color: var(--bg);
}

.drives-us-section::after {
    right: 0;
    background-color: #f2f2f2;
}

.drives-us-section .drivTtl h4 {
    font-weight: 300;
    font-size: 23px;
    margin-bottom: 50px;
}

.drives-us-section .drivTtl {
    position: relative;
    z-index: 1;
}

.drives-us-section .drivTtl h1 {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
}

.drives-us-section .drivTtl h1 span {
    color: var(--primary);
}

.drives-us-section .drives-right .drivTtl h1 span {
    color: var(--secondary);
}

.drivContent p {
    font-size: 28px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: 1.7rem;
}

.drivContent p::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: -1;
}

.drivContent p.descc1::before {
    background: #ff746f;

}

.drivContent p.descc2::before {
    background: #ffe96f;
}

.drivContent p.descc3::before {
    background: #6f9dff;
}

.drivContent p.descc4::before {
    background: #ca6fff;
}

.drivContent2 .descc {
    font-size: 37px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 1.7rem;
}

/* ****************************************
==========CORE CAPABILITIES START==========
******************************************/

.marketing-services-card-wrapper .marketing-card {
    align-items: center;
    background-color: #fff;
    border: .063rem solid #c9ced9;
    border-radius: var(--border-radius);
    -ms-box-shadow: 0 .313rem 0 rgba(0, 0, 0, .1);
    -o-box-shadow: 0 .313rem 0 rgba(0, 0, 0, .1);
    box-shadow: 0 .313rem 0 rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    margin-bottom: 0;
    min-height: 4.125rem;
    padding: .875rem 3.125rem .875rem .938rem;
    position: relative;
    transition: all .1s ease-in-out;
    align-items: normal;
    flex-direction: column;
    min-height: 9.5rem;
    padding: 1.875rem;
}

.card-top-right-icon svg {
    transform: rotate(0);
    height: 1.25rem;
    transform: rotate(36deg);
    width: 1.25rem;
}

.marketing-services-card-wrapper {
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(1.875rem, calc(25% - 1.40625rem)));
    row-gap: 2.5rem;
}

.marketing-services-card-wrapper .marketing-card:hover {
    -ms-box-shadow: 0 .313rem 0 var(--primary);
    -o-box-shadow: 0 .313rem 0 var(--primary);
    box-shadow: 0 .313rem 0 var(--primary);
}

.marketing-card .card-top-right-icon {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: flex-end;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -o-opacity: 0;
    -ms-opacity: 0;
    opacity: 0;
    padding: .875rem;
    position: absolute;
    transition: all .1s ease-in-out;
}

.marketing-card .card-top-right-icon {
    align-items: normal;
    padding: .625rem;
}

.marketing-card:hover .card-top-right-icon {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -o-opacity: 1;
    -ms-opacity: 1;
    opacity: 1;
}

.marketing-card .card-top-right-icon svg {
    transform: rotate(0);
}

.marketing-card h3 {
    margin-bottom: 0;
}

/* ************************************
==========FACT COUNTERS START==========
**************************************/

.counters-section .card {
    padding: 40px 30px;
    background-color: #ffffff57;
    box-shadow: 1px 1px 45px 0px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
    border: 1px solid #ffffff6e;
    border-radius: var(--border-radius);
    transition: ease-in-out .3s;
    cursor: pointer;
}

.counters-section .card:hover {
    background-color: #ff010033;
    border: 1px solid #ff0100;
}

.counters-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.8;
    z-index: 0;
}

.counters-section .mainTtl {
    z-index: 1;
}

.counters-section .mainTtl p {
    color: #c5c5c5;
}

.counters-section .mainTtl .title-h4 {
    color: var(--white);
}

.counters-section span.bottom-line {
    width: 50px;
    display: inline-block;
    border: 1px solid var(--white);
}

.counters-section .card h3,
.counters-section .card p {
    color: var(--white);
}

/* ******************************
==========PURPOSE START==========
********************************/

.purpose-section .bg-pink {
    background-color: #FDD9CD !important;
    border-radius: var(--border-radius);
}

.purpose-section .bg-gray {
    background-color: #F3F1F4 !important;
    border-radius: var(--border-radius);
}

/* *************************************
==========CALL TO ACTION START==========
***************************************/

.cta-section .cta-box {
    background-image: url(../images/cta-img.webp);
    background-position: center;
    background-size: cover;
    border-radius: var(--border-radius);
}

.cta-section .cta-box .lbl-box {
    border-radius: 100px;
    background-color: var(--white);
    padding: 8px 20px;
}

.cta-section .bottom-line {
    border-color: var(--white);
}

/* ******************************************
==========BUSINESS PHILOSOPHY START==========
********************************************/

.business-phil-section .GlobalCard_card-on-hover__FNa0V {
    width: 100%;
    border-radius: var(--border-radius);
    border-color: transparent;
    padding: 1.875rem;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.business-phil-section .GlobalCard_bordered-card__lIPaz {
    box-shadow: none;
    border: 2px solid #eee;
    padding: 50px 40px 50px 50px;
    background: #fff;
}

.business-phil-section .GlobalCard_card-on-hover__FNa0V .GlobalCard_card-title__OdbO1 {
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
    line-height: 2rem;
    color: #212121;
    min-height: 60px;
    font-weight: 600;
}

.business-phil-section .CompanyOverview_philo-slider__72wym .card-on-hover .card-title {
    left: 0;
    width: 100%;
}

.business-phil-section .GlobalCard_card-on-hover__FNa0V:hover {
    box-shadow: 0 0 10px 7px rgba(0, 0, 0, .03);
}

.business-phil-section .swiper-float-nav {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    gap: 20px;
}

.business-phil-section .owl-nav {
    position: absolute;
    width: 100%;
    bottom: -30px;
    /* Adjust this to position below the carousel */
    display: flex;
    justify-content: center;
    /* Center the navigation buttons horizontally */
    gap: 10px;
    /* Space between the navigation buttons */
    pointer-events: none;
    /* Prevent interference with item interactions */
    bottom: -70px;
}

.business-phil-section {
    padding-bottom: 150px;
}

.business-phil-section .owl-nav button {
    border: 2px solid #191919 !important;
    min-width: 42px;
    height: 42px;
    left: 0;
    border-radius: 100px;
    transition: ease-in-out .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: all;
    /* Enable interaction for buttons */
    cursor: pointer;
}

.business-phil-section .owl-nav button span {
    font-size: 24px;
}

.business-modal-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 0;
    grid-gap: 40px;
}

.business-modal-box #business-modal-graphic,
.business-modal-box .business-modal-graphic {
    width: 40%;
    max-width: 636px;
    position: relative;
}

.business-modal-box .business-modal-list {
    max-width: 860px;
    width: 60%;
}

.heading-with-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.business-modal-section .subttl {
    margin-bottom: 45px;
}

.business-modal-section {
    background: var(--black);
}

.business-modal-box #business-modal-graphic>svg {
    width: 100%;
    height: auto;
}

.business-modal-box #business-modal-graphic>svg *,
.business-modal-box .business-modal-graphic>svg * {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.dedicated-img,
.business-modal-box #business-modal-graphic.one .hourly-based-img,
.business-modal-box .business-modal-graphic.one .dedicated-img,
.business-modal-box .business-modal-graphic.one .hourly-based-img {
    opacity: 0;
}

.business-modal-box #business-modal-graphic>svg .dedicated-img,
.business-modal-box #business-modal-graphic>svg .fixed-cost-img,
.business-modal-box #business-modal-graphic>svg .hourly-based-img,
.business-modal-box .business-modal-graphic>svg .dedicated-img,
.business-modal-box .business-modal-graphic>svg .fixed-cost-img,
.business-modal-box .business-modal-graphic>svg .hourly-based-img {
    width: 355px;
    height: 95px;
    -webkit-transform: translate(209px, 14px);
    -ms-transform: translate(209px, 14px);
    transform: translate(209px, 14px);
}

.business-modal-list .tab-list svg {
    position: absolute;
    left: 0;
    bottom: 0;
}


.business-modal-list .tab-list svg image {
    width: 76%;
    height: 100%;
}

.business-modal-list .tab-list.dedicated {
    padding-bottom: 60px;
}

.business-modal-box #business-modal-graphic>svg .client-img,
.business-modal-box .business-modal-graphic>svg .client-img {
    width: 158px;
    height: 222px;
}

.business-modal-box #business-modal-graphic>svg .first-arrow,
.business-modal-box .business-modal-graphic>svg .first-arrow {
    width: 133px;
    height: 117px;
    -webkit-transform: translate(140px, 189px);
    -ms-transform: translate(140px, 189px);
    transform: translate(140px, 189px);
}

.business-modal-box #business-modal-graphic>svg .project-manager-img,
.business-modal-box .business-modal-graphic>svg .project-manager-img {
    width: 178px;
    height: 263px;
    -webkit-transform: translate(296px, 106px);
    -ms-transform: translate(296px, 106px);
    transform: translate(296px, 106px);
}

.business-modal-box #business-modal-graphic>svg .second-arrow,
.business-modal-box .business-modal-graphic>svg .second-arrow {
    width: 133px;
    height: 117px;
    -webkit-transform: translate(502px, 187px);
    -ms-transform: translate(502px, 187px);
    transform: translate(502px, 187px);
}

.business-modal-box #business-modal-graphic>svg .team-svg-img,
.business-modal-box .business-modal-graphic>svg .team-svg-img {
    width: 222px;
    height: 222px;
    -webkit-transform: translate(573px, 0);
    -ms-transform: translate(573px, 0);
    transform: translate(573px, 0);
}

.business-modal-box .business-modal-list>ul {
    padding: 0 0 60px;
}

.business-modal-box .business-modal-list>ul,
.work-technology-tag ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
}

.business-modal-box .business-modal-list>ul li,
.work-process .work-process-box img {
    width: 100%;
}

.business-modal-box .business-modal-list>ul li a:hover,
.business-modal-box .business-modal-list>ul li.active a {
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
}


.business-modal-box .business-modal-list>ul li:first-child a {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.business-modal-box .business-modal-list>ul li a {
    padding: 28px;
    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;
    color: #fff;
    font-size: 1.5em;
    line-height: normal;
    border: 1px solid var(--secondary);
    position: relative;
    -webkit-transition: all 350ms cubic-bezier(.75, .1, .6, 1);
    -o-transition: all 350ms cubic-bezier(.75, .1, .6, 1);
    transition: all 350ms cubic-bezier(.75, .1, .6, 1);
}

.business-modal-box .business-modal-list>ul li a i {
    font-size: 26px;
    margin-right: 30px;
}

.business-modal-box .business-modal-list>ul li:nth-child(2) a {
    border-inline: 0;
}

.business-modal-box .business-modal-list>ul li a {
    padding: 28px;
    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;
    color: #fff;
    font-size: 1.5em;
    line-height: normal;
    border: 1px solid var(--secondary);
    position: relative;
    -webkit-transition: all 350ms cubic-bezier(.75, .1, .6, 1);
    -o-transition: all 350ms cubic-bezier(.75, .1, .6, 1);
    transition: all 350ms cubic-bezier(.75, .1, .6, 1);
}

.business-modal-box .business-modal-list>ul li:last-child a {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.business-modal-box #business-modal-graphic.one+.business-modal-list .tab-list.fixed-cost,
.business-modal-box #business-modal-graphic.three+.business-modal-list .tab-list.dedicated,
.business-modal-box #business-modal-graphic.two+.business-modal-list .tab-list.hourly-base,
.hero-row .hero-box h1 span,
.hero-row .hero-box h2 span,
.hero-row .hero-box picture {
    display: block;
}

.business-modal-box .business-modal-list .tab-list {
    display: none;
    padding-left: 20px;
}

.business-modal-box .business-modal-list .tab-list p {
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
}

.grids.grid2 {
    grid-template-columns: repeat(2, 1fr);
}

.grids {
    display: grid;
    grid-gap: 32px;
}

.business-modal-box .business-modal-list .tab-list ul:last-of-type {
    margin-bottom: 0;
}

.business-modal-box .business-modal-list .tab-list ul.grids {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.business-modal-box .business-modal-list .tab-list ul {
    color: #fff;
    margin: 40px 0 30px;
}

.business-modal-box .business-modal-list .tab-list p:last-child {
    margin-bottom: 0;
}

.business-modal-box .business-modal-list .tab-list p {
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
}

/* *****************************
==========CLIENT START==========
*******************************/

.countryName {
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    max-width: 1150px;
    font-size: 1.4em;
    line-height: 1.4;
    margin-bottom: 20px;
}

.countryName span {
    color: var(--primary);
}

/* .our-clients-row {
    max-width: 100%;
    width: 55%;
    margin: 0;
    padding-right: 40px;
} */

.our-clients-row .resp-btn {
    margin: 40px 0;
}

.our-clients-row .a-btn.waysa:hover:before {
    min-width: 352px;
}

.counter-section {
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0efec;
}

.counter-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-gap: 30px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 115px;
}

.counter-row {
    grid-gap: 32px 50px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 60px;
}

.counter-box {
    width: calc(20% - 24px);
    text-align: center;
    border: 1px solid rgba(157, 220, 255, .1);
    padding: 40px 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.counter-row .counter-box {
    padding: 0;
    border: 0;
    text-align: left;
    width: calc(25% - 37.5px);
    overflow: inherit;
}

.counter-box h2 {
    font-size: 3.125em;
    font-weight: 600;
    background-image: -o-linear-gradient(304.49deg, #fddd48 7.21%, #00b7c4 94.47%);
    background-image: linear-gradient(145.51deg, #fddd48 7.21%, #00b7c4 94.47%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    width: 100%;
    margin: 0;
}

.counter-row .counter-box h2 {
    font-size: 28px;
    color: var(--primary);
    background-image: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    padding-left: 12px;
    line-height: 28px;
    position: relative;
    margin-bottom: 5px;
    font-weight: 700;
}

.counter-row .counter-box h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--secondary);
}

.counter-box span {
    font-weight: 700;
    font-size: 1.25em;
    display: block;
}


.counter-row .counter-box span {
    padding-left: 12px;
    color: #8f90a6;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.countries-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 25px 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
}

.countries-boxes .country-box {
    width: calc(20% - 40px);
}

.our-clients .globe-wrapper,
.countries-boxes .country-box figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.countries-boxes .country-box figure {
    padding: 0;
    grid-gap: 8px;
}

.countries-boxes .country-box figure img {
    width: 32px;
    height: 24px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #f2f2f2;
}

.countries-boxes .country-box figure figcaption {
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
}

/* .globe-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45%;
} */

.globe.js-globe {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.js-globe canvas {
    width: 1140px !important;
    height: 653px !important;
    left: -190px;
    position: absolute;
    top: 100px;
}

/* ***************************
==========CLIENT END==========
*****************************/

/* *******************************
==========INSIGHTS START==========
*********************************/

.bgInsight {
    height: 300px;
}

.bg-topaz-medium {
    background-color: #ab6604 !important;
    border-radius: var(--border-radius);
}

.plus-row img {
    position: absolute;
    bottom: 0;
}

.plus-row img {
    max-width: 100%;
}

.eq-height a>.eqh-box {
    font-size: 18px;
    font-weight: 300;
}

.plus-row .eqh-box {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}


.plus-row .eqh-box .h3 {
    margin: 0;
}

.plus-row .eqh-box .h3 {
    font-size: 25px;
    line-height: 30px;
}

.plus-row h3 {
    font-weight: 600;
    padding: 0;
}

.plus-row .eqh-box .btn-bottom {
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: none;
    margin-bottom: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 15px 0;
    position: absolute;
}

.plus-row .eqh-box .btn-bottom {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 0;
    bottom: 20px;
    position: absolute;
}

.plus-row .eqh-box .btn-bottom {
    position: relative !important;
    padding: 10px 0 0;
    bottom: 0;
}

.bg-topaz-medium {
    background-color: #ab6604 !important;
    border-radius: var(--border-radius);
}

.bg-sapphire-medium {
    background-color: #0271b1 !important;
    border-radius: var(--border-radius);
}

.bg-coral-medium {
    background-color: #ca4d37 !important;
    border-radius: var(--border-radius);
}

.bg-amethyst-medium {
    background-color: #8e2d8d !important;
    border-radius: var(--border-radius);
}

/* *****************************
==========INSIGHTS END==========
*******************************/

/* *****************************
==========CAREER START==========
*******************************/


.contentCareer .bg-light-orange {
    display: inline;
    background-color: #ffe5e5;
    border-radius: 4px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 20px;
}

.contentCareer h1 span {
    color: var(--primary);

}

.contentCareer h1 {
    margin-top: max(14px, 1.481vw);
    margin-bottom: max(14px, 1.481vw);
    font-size: max(27px, 3.667vw);
    line-height: normal;
    font-weight: 600;
}

.careerPara {
    font-size: max(21px, 1.806vw);
    line-height: max(32px, 2.708vw);
    margin-bottom: max(14px, 1.481vw);
}

.career-section .a-btn.waysa:hover:before {
    min-width: 176px;
}

/* ***************************
==========CAREER END==========
*****************************/

/* *********************************
==========LEADERSHIP START==========
***********************************/

.leadership-section h1 {
    margin-top: max(14px, 1.481vw);
    margin-bottom: max(14px, 1.481vw);
    font-size: max(27px, 2.667vw);
    line-height: normal;
    font-weight: 600;
}

.leadership-section .careerPara {
    font-size: max(19px, 0.006vw);
    line-height: max(32px, 2.308vw);
    margin-bottom: max(14px, 1.181vw);
}

.leadership-section .intro-heading {
    font-size: .875rem;
    line-height: 1.5rem;
    letter-spacing: .15em;
    color: #000;
}

.leadership-section .intro-description {
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #000;
    margin-bottom: 2rem;
}

.leadership-section .intro-text {
    font-size: 1.125rem;
    line-height: 2rem;
    letter-spacing: .5px;
    color: #000;
}

.leadership-section .a-btn.waysa:hover:before {
    min-width: 200px;
}

.our-group-of-companies-section .our-group-of-companies-slider .glider-contain .glider .glider-track .glider-slide .our-group-of-companies-card,
.our-group-of-companies-section .our-group-of-companies-slider .glider-contain .glider .glider-track .glider-slide-item .our-group-of-companies-card {
    background: #fff;
    border: .063rem solid #ebebeb;
    border-radius: .625rem;
    padding: .625rem;
}

.our-group-of-companies-section .our-group-of-companies-slider .glider-contain .glider .glider-track .glider-slide .our-group-of-companies-card .our-group-of-companies-card-image,
.our-group-of-companies-section .our-group-of-companies-slider .glider-contain .glider .glider-track .glider-slide-item .our-group-of-companies-card .our-group-of-companies-card-image {
    align-items: center;
    background-color: #f6f9ff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    min-height: 12.563rem;
}

/*********************************
==========LEADERSHIP END==========
*********************************/


/******************************************
==========EXPLORE COMPANIES START==========
******************************************/

/* .expCompany-section {
    padding-bottom: 150px;
} */

.expCompany-section .owl-nav button {
    border: 2px solid #191919 !important;
    min-width: 42px;
    height: 42px;
    left: 0;
    border-radius: 100px;
    transition: ease-in-out .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: all;
    cursor: pointer;
}

.expCompany-section .owl-carousel .owl-nav {
    display: none;
}

.expCompany-section .owl-nav {
    position: absolute;
    width: 100%;
    bottom: -30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
    bottom: -70px;
}

.expCompany-section .our-group-of-companies-card {
    background: #fff;
    padding: .625rem;
}

.expCompany-section .our-group-of-companies-card-image {
    align-items: center;
    background-color: #f6f9ff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    min-height: 12.563rem;
}

.expCompany-section .our-group-of-companies-card-content {
    padding: 2rem 1.25rem 18px;
}

.expCompany-section.description-content {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #4e5158;
    display: -webkit-box;
    font-size: .875rem;
    line-height: normal;
    margin-bottom: 1rem;
    overflow: hidden;
    width: 100%;
    margin-bottom: 1.875rem;
}

.expCompany-section .owl-carousel .owl-item .resp-btn img {
    width: 35px;
}

.expCompany-section .a-btn.waysa:hover:before {
    min-width: 200px;
}

.expCompany-section .GlobalCard_bordered-card__lIPaz {
    box-shadow: none;
    border: 1px solid #eee;
    padding: 0;
    background: #fff;
}

/****************************************
==========EXPLORE COMPANIES END==========
****************************************/

/*****************************************
==========BRAND BREADCRUMB START==========
*****************************************/
.brandBread .breadcrumb-container {
    position: relative;
    background: url(../images/brand/About_sustainability.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.brandBread .breadcrumb-container::before {
    content: unset;
}

/***************************************
==========BRAND BREADCRUMB END==========
***************************************/

/***************************************
==========BRAND OVERVIEW START==========
***************************************/
.branOver-section img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: transform .5s ease-in-out;
    transform: scale(1);
}

.branOver-section:hover img {
    transform: scale(1.05);
}

.field.field--name-field-image.field--type-entity-reference {
    padding: 0 100px 0 0;
}

.align2right.aos-init.aos-animate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    padding-left: 15px;
}

p.overline-12 {
    color: var(--primary);
    margin: 20px 0 10px;
    letter-spacing: .02em;
    font-size: .75rem;
    font-weight: 600;
    line-height: 19px;
}

h3.sub-head3 {
    margin-bottom: 30px;
    font-size: 1.313rem;
    font-weight: 500;
    line-height: 28px;
    color: var(--black);
}

.clearfix p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.clearfix p em strong {
    font-weight: 600;
}

/*************************************
==========BRAND OVERVIEW END==========
*************************************/


/*********************************
==========PROMISTH START==========
*********************************/
.text-formatted {
    max-width: 92%;
}

.promish-section .clearfix p span {
    color: var(--primary);
}

.promish-section .clearfix p {
    font-size: 43px;
    font-weight: 400;
    line-height: 1.5;
}

/*******************************
==========PROMISTH END==========
*******************************/

/**************************************
==========BRAND PILLARS START==========
**************************************/
.typo-tile-right-side .h6 {
    font-size: 2.188rem;
    line-height: 2.813rem;
}

.pillar-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.8;
    z-index: 0;
}

.pillar-section .gap-6 {
    z-index: 1;
    position: relative;
}

.brand-kit-section h6 {
    margin-bottom: 32px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 26px;
}

.brand-kit-section .downLogoGroup {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.brand-kit-section .downLogoGroup .logoType {
    flex: 0 0 130px;
    font-weight: 500;
    color: var(--secondary);
    font-size: 1.125rem;
}

.brand-kit-section .downLogoGroup .btns {
    flex: 0 0 calc(100% - 130px);
}

.brand-kit-section .downLogoGroup .btns .btn {
    color: #000;
    background: #e6e6e6;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all .3s ease;
    font-weight: 600;
    min-width: 84px;
    position: relative;
    text-align: left;
    font-size: .875rem;
}

.brand-kit-section .downLogoGroup .btns .btn:hover {
    text-decoration: none;
    background: #d5d5d5;
}

.brand-kit-section .downLogoGroup .btns .btn:after {
    content: "";
    background: url(../images/download-button.svg) no-repeat;
    width: 19px;
    height: 19px;
    background-size: 18px 19px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.brand-kit-section .downBro {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.brand-kit-section .downBro ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: 16px;
}

.page-content ul {
    font-size: 1.125rem;
    line-height: 27px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.brand-kit-section .downBro li {
    list-style: none;
    margin: 0 16px 0 0;
}

.brand-kit-section .downBro li a {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    display: inline-flex;
    position: relative;
    padding: 8px 16px;
    text-decoration: none;
    background: #f8f8f8;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.brand-kit-section .downBro li a .download-btn {
    background: url(../images/download-button.svg) no-repeat;
    width: 19px;
    height: 19px;
    background-size: contain;
    margin-left: 8px;
    border: none;
}

.download-btn {
    font-size: 1rem;
    text-decoration: none;
    padding: 12px;
    background-color: transparent;
    color: #112868;
    border-radius: 4px;
    border: 2px solid #112868;
    font-weight: 500;
    transition: all .3s ease-in-out;
    display: inline-block;
}

.downloadPanel .downBro>a {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}

.top-right-arrow-btn-text {
    display: flex;
    align-items: center;
    color: var(--black);
    text-decoration: none;
    gap: 16px;
    font-size: 1.125rem;
}

.top-right-arrow-btn-text:hover {
    text-decoration: none;
}

.top-right-arrow-btn-text.small span {
    min-height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* background: #112868; */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0;
}

.top-right-arrow-btn-text span:after {
    font-family: 'FontAwesome';
    content: "\f360";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    font-size: 2rem;
    color: var(--primary);
    position: absolute;
    overflow: hidden;
    transition: .2s ease;
}

/************************************
==========BRAND PILLARS END==========
************************************/

/*************************************
==========COLLABRATION START==========
*************************************/
.collabration-section .our-client-list li img,
.collabration-section .our-client-list li>div {
    height: 2.063rem !important;
    vertical-align: middle;
    width: auto;
}

.collabration-section .our-client-list {
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(1.875rem, calc(16.66667% - 2.08333rem)));
    row-gap: 1.875rem;
}

.collabration-section .our-client-list li img {
    border-radius: var(--border-radius);
}

.collabration-section .our-client-list li img,
.collabration-section .our-client-list li>div {
    height: 3.625rem !important;
    width: 100% !important;
}

.collabration-section .our-client-list li {
    align-items: center;
    border: .063rem solid #d2d2d2;
    display: flex;
    height: 3.125rem;
    justify-content: center;
    padding: .313rem;
    width: 100%;
    border-radius: var(--border-radius);
}

.collabration-section .our-client-list li {
    height: 100%;
    min-width: 100%;

}

/***********************************
==========COLLABRATION END==========
***********************************/

/******************************************
==========SPEAKS BREADCRUMB START==========
******************************************/

.breadSpeak .breadcrumb-container {
    position: relative;
    background: unset;
    background-size: unset;
    background-attachment: unset;
    padding: 50px 20px;
    width: 100%;
    color: #000000;
    text-align: left;
    box-shadow: unset;
    height: unset;
    max-height: 100%;
}

.breadSpeak .breadcrumb-container::before {
    content: unset;
}

.breadSpeak .hero-banner-title h1 {
    color: #000;
    width: 100%;
    font-size: 5rem;
    font-weight: 600;
}

.breadSpeak .breadcrumb-ul-li-p {
    margin-top: 1rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.cusSpeak-section .client-review-list {
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(1.875rem, calc(50% - .625rem)));
    row-gap: 1.875rem;
}

.cusSpeak-section .review-testimonial .client-info {
    align-items: center;
    display: flex;
    flex: 1;
    width: 100%;
}

.cusSpeak-section .review-testimonial {
    border: .063rem solid #c9ced9;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.25rem 1.875rem;
}

.cusSpeak-section .review-testimonial .client-info-wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.625rem;
    flex-direction: column;
    align-items: flex-start;
}

.cusSpeak-section .review-testimonial .client-info-wrapper {
    margin-bottom: 1.25rem;
}

.cusSpeak-section .review-testimonial .client-info {
    align-items: center;
    display: flex;
    flex: 1;
}

.cusSpeak-section .review-testimonial .client-info .client-image {
    border-radius: 100%;
    flex-basis: 3.75rem;
    height: 3.75rem;
    margin-right: .625rem;
    overflow: hidden;
    width: 3.75rem;
}

.cusSpeak-section .client-info .client-details {
    color: #191d26;
    flex: 1;
}

.cusSpeak-section .client-info .client-details span {
    color: #4e5158;
    font-size: .875rem;
    line-height: 1.375rem;
}

.cusSpeak-section .client-info .client-company-logo {
    flex-basis: 4.75rem;
}

.client-company-logo>div {
    width: 130px;
    height: 80px;
}

/****************************************
==========SPEAKS BREADCRUMB END==========
****************************************/

/*******************************************
==========LET'S TALK SECTION START==========
*******************************************/
.lets-talk-section .our-partner-list {
    height: 10rem;
    margin-bottom: 0;
    max-width: 32rem;
    position: relative;
    width: 100%;
}

.lets-talk-section .our-partner-list .figure {
    display: block;
}

.lets-talk-section .our-partner-list .figure>div {
    vertical-align: middle;
}

.lets-talk-section .lets-talk-header-content {
    -moz-column-gap: .938rem;
    column-gap: .938rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(1.875rem, calc(50% - .469rem)));
    row-gap: 1.25rem;
    width: 100%;
}

.lets-talk-section .lets-talk-header-link:hover {
    text-decoration: none;
}

.lets-talk-section .lets-talk-header-link {
    background-color: hsla(0, 0%, 100%, .8);
    border: .063rem solid rgba(226, 236, 244, .502);
    border-radius: var(--border-radius);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 1.375rem .75rem .875rem;
    position: relative;
    transition: all .1s ease;

}

.lets-talk-section .lets-talk-header-link .lets-talk-header-icon {
    height: .875rem;
    position: absolute;
    right: .75rem;
    top: .75rem;
    vertical-align: middle;
    width: .875rem;
}

.lets-talk-section .lets-talk-header-link .lets-talk-header-icon>svg {
    display: block;
    height: 100%;
    width: 100%;
}

.lets-talk-section .lets-talk-header-link .lets-talk-header-department {
    color: #4e5158;
    display: block;
    font-size: .75rem;
    line-height: normal;
    padding-bottom: .125rem;
}

.lets-talk-section .lets-talk-header-link .lets-talk-header-contact {
    color: var(--secondary);
    display: block;
    font-size: .875rem;
    font-weight: 400;
    font-weight: 600;
    line-height: 1.313rem;
    padding-bottom: .125rem;
}


.lets-talk-section .lets-talk-header-link .lets-talk-header-country {
    color: #000;
    display: block;
    font-size: 1rem;
    font-size: .75rem;
    font-weight: 400;
    font-weight: 500;
    line-height: 1.375rem;
}

.lets-talk-section .lets-talk-item.lets-talk-our-partner {
    padding-top: 2.6rem;
}

.lets-talk-section .lets-talk-our-partner-title {
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

.lets-talk-section .lets-talk-our-partner-title:after {
    background: #d7d7d7;
    content: "";
    height: .063rem;
    left: 6.875rem;
    position: absolute;
    right: 0;
    top: 50%;
}

.lets-talk-section .lets-talk-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.lets-talk-section .lets-talk-card .lets-talk-card-header {
    background-color: #8591aa;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    color: #fff;
    padding: 1.063rem;
    text-align: center;
    text-transform: unset;
}

.lets-talk-section .lets-talk-card .lets-talk-card-body {
    padding: 1.125rem 1.25rem 2.125rem;
}

.lets-talk-section .lets-talk-card .lets-talk-card-body .form-filedset {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(1.875rem, 100%));
    row-gap: 1rem;
}

.lets-talk-section .lets-talk-card .lets-talk-card-body .form-filedset .form-row label {
    margin-bottom: .5rem;
}

.required:after {
    color: red;
    content: "*";
    display: inline-block;
    vertical-align: middle;
}

#cNum {
    display: flex;
    flex-direction: row;
    position: relative;
}

#cNum #countryList {
    align-items: center;
    background-size: .688rem auto;
    border-radius: .313rem 0 0 .313rem;
    border-right: .063rem solid #ebebeb;
    bottom: 0;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    left: 0;
    position: absolute;
    right: auto;
    top: 0;
    width: 3.75rem;
}

#cNum #countryList label {
    cursor: pointer;
    display: block !important;
    font-size: .875rem;
    margin-bottom: 0;
    padding-left: 0;
}

#cNum #countryList:after {
    border-left: .313rem solid transparent;
    border-right: .313rem solid transparent;
    border-top: .375rem solid #000;
    content: "";
    margin-left: .25rem;
}

#cNum .country-list.hide {
    display: none;
}

#cNum .country-list {
    background-color: #fff;
    border-radius: .25rem;
    box-shadow: 0 0 0 .063rem rgba(0, 0, 0, .1), 0 .25rem .688rem rgba(0, 0, 0, .1);
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 3.125rem;
    white-space: nowrap;
    width: 100%;
    z-index: 2;
}

#cNum .search-country-main {
    margin: 0;
    padding: 0;
    width: 100%;
}

#cNum .search-country-main input {
    border: none;
    border-bottom: .063rem solid #ccc;
    border-radius: 0;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

#cNum .country-list ul {
    margin: 0;
    max-height: 9.375rem;
    overflow-y: auto;
    padding: 0;
    width: 100%;
}

#cNum input:not(.search-country) {
    border: .063rem solid #ebebeb;
    border-radius: .313rem;
    float: right;
    margin: 0;
    padding-left: 4.5rem !important;
    width: 100%;
}

.lets-talk-section .lets-talk-card .lets-talk-card-body textarea {
    height: 6rem;
}

.lets-talk-card .a-btn.waysa:hover:before {
    min-width: 170px;
}

/*****************************************
==========LET'S TALK SECTION END==========
*****************************************/

/***********************************************
==========ACHIVEMENTS BREADCRUMB START==========
***********************************************/
.breadSpeak.breadacheive .breadcrumb-container {
    padding: 0;
}

.breadSpeak.breadacheive .breadcrumb-content {
    justify-content: center;
    align-items: center;
    padding: 80px 30px;
    border-radius: 20px;
    margin-top: 30px;

}

.breadSpeak.breadacheive .hero-banner-title h1 {
    color: #000;
    width: 100%;
    font-size: 3.5rem;
    line-height: 1;
}

/*********************************************
==========ACHIVEMENTS BREADCRUMB END==========
*********************************************/

/***********************************
==========AWARD LIST START==========
***********************************/
.awards-list-section .awards-card {
    background: linear-gradient(180deg, var(--secondary), #1c1c1c);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    padding: .625rem;
}

.awards-list-section .award-image-wrapper {
    align-items: center;
    background-color: #fff;
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    min-height: 17.25rem;
    padding: .625rem;
}

.awards-list-section .award-image {
    height: 13.375rem;
    width: 17.25rem;
}

.awards-list-section .awards-details {
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    padding: 1.875rem .625rem 1.25rem;
}

.awards-list-section .description-content {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
}

.awards-list-section .know-more-btn {
    margin-top: auto;
    padding-top: 1.875rem;
}

/*********************************
==========AWARD LIST END==========
*********************************/

/******************************************
==========FACTSHEET SECTION START==========
******************************************/

.factsheet-section table th {
    background-color: #575151;
    color: #ffffff;
}

.factsheet-section tr:hover {
    background-color: #ffffff;
}

.factsheet-section tr:hover th {
    background-color: unset;
}

.factsheet-section .table-responsive h4 {
    text-align: center;
    background-color: #575151;
    margin-bottom: 0;
    padding: 16px;
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.factsheet-section .table-hover>tbody>tr:hover>* {
    background-color: #575151;
    color: #fff;
}

/****************************************
==========FACTSHEET SECTION END==========
****************************************/

/**********************************************
==========KEY CORPORATE SECTION START==========
**********************************************/
.keyCorporate-section .facts {
    /* border-radius: 1.25rem; */
    overflow: hidden;
    padding: 1.5rem 1.875rem;
    position: relative;
}

.keyCorporate-section .facts .fact-bg-image {
    inset: 0;
    position: absolute;
}

.keyCorporate-section .facts .fact-bg-image>div {
    height: 100%;
    width: 100%;
}

.keyCorporate-section .facts .facts-details {
    color: #fff;
    position: relative;
    z-index: 1;
}

.keyCorporate-section .facts .facts-details .facts-title {
    margin-bottom: .875rem;
    font-size: 2.7rem;
    font-weight: 700;
}

.keyCorporate-section .facts .facts-details .facts-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5rem;
    margin-bottom: .625rem;
}

.keyCorporate-section .facts .facts-details .facts-description {
    font-size: 1rem;
    line-height: 1.375rem;
}

.keyCorporate-section .facts .facts-details .facts-description {
    display: inline-block;
    font-size: .875rem;
    line-height: 1.375rem;
}

.keyCorporate-section .fact-bg-image img {
    border-radius: var(--border-radius);
}

/********************************************
==========KEY CORPORATE SECTION END==========
********************************************/

/***************************************************
==========HAPPY CLIENT START SECTION START==========
***************************************************/

.happyClient-section .bg-img {
    background-image: url(../images/hero-sect-bottom-img.jpg);
    background-size: cover;
    height: 100%;
}

.happyClient-section .carda {
    background-color: #FBEFEC;
    padding: 40px;
    margin: 0;
    min-height: 370px;
}

.happyClient-section .title-h4 {
    font-size: 42px;
}

.happyClient-section .c-red {
    color: var(--primary);
}

.keyCorporate-section.corevle .facts .facts-details .facts-title {
    margin-bottom: 0;
    font-size: 2.7rem;
    font-weight: 700;
    height: 200px;
    text-align: -webkit-center;
    align-content: center;
}

.client-section .clients-content h5 {
    font-size: 16px;
    font-weight: 400;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 8%) 0px 1px 4px;
    border-radius: 20px;
    padding: 16px 12px;
    border: 1px solid #dadada;
}


.globe .globe-canvas {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
}

#globeCanvas {
    width: 779px !important;
    height: 779px !important;
    cursor: grabbing;
}

#globeCanvas canvas {
    width: 779px !important;
    height: 779px !important;
}

/*************************************************
==========HAPPY CLIENT SECTION END==========
*************************************************/

/***********************************************
==========PURPOSE VISION SECTION START==========
***********************************************/
.visionContent img {
    width: 100%;
    height: 100%;
    max-width: 16rem;
    margin-bottom: 30px;
}

.visionContent p {
    line-height: 2;
    color: #fff;
    margin-bottom: 1.5rem;
}

.visionTwo p {
    line-height: 1.5;
}

.visionTwo ul li {
    line-height: 1.5;
    padding-left: 2.25rem;
    margin-bottom: 1rem;
    /* color: ; */
    position: relative;

}

.visionTwo img {
    width: 100%;
    height: 100%;
    max-width: 450px;
    margin-bottom: 30px;
}

.visionTw {
    z-index: 0;
    color: var(--white);
    position: relative;
}

.visionTwo ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 6px;
    top: 6px;
    font-size: 18px;
    color: #f2f2f5;
    line-height: 1;
    opacity: 0.3;
}

.visionTwo {
    position: relative;
    z-index: 1;
}

.backVision {
    position: absolute;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 50px 0;
    display: flex;
    z-index: 0;
    justify-content: center;
}

.visionContent {
    padding-right: 150px;
    z-index: 1;
    position: relative;
}

/*********************************************
==========PURPOSE VISION SECTION END==========
*********************************************/

/********************************************************
==========DEVELOPMENT PROFICIENCY SECTION START==========
********************************************************/
.development-proficiency-tbl .table-bordered td,
.development-proficiency-tbl .table-bordered th {
    border: 1.5px dashed #d1d1d1 !important;
}

.development-proficiency-tbl th,
.development-proficiency-tbl td {
    padding: 15px 25px;
}

.development-expertise .bg-blue {
    background-color: var(--secondary) !important;
}

.development-expertise .c-white {
    color: #fff !important;
}

/******************************************************
==========DEVELOPMENT PROFICIENCY SECTION END==========
******************************************************/

/***********************************************
==========Working Method SECTION START==========
***********************************************/
.wm-section .listing.grids {
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    unicode-bidi: isolate;
    font-size: 15px;
    line-height: 0.1;
}

.wm-section .a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 220px;
}

.wm-section .our-clients-row .resp-btn {
    margin-top: 50px;
}

/*********************************************
==========Working Method SECTION END==========
*********************************************/

/******************************************************
==========Working MODAL DETAILS SECTION START==========
******************************************************/

.wrkModal .side-sticky ul {
    margin: 0;
    list-style: none;
    padding-left: 40px;
    position: relative;
}

.wrkModal .side-sticky ul li {
    margin-bottom: 27px;
}

.wrkModal .side-sticky ul li:last-child {
    margin-bottom: 0px;
}

.wrkModal .side-sticky ul li a {
    font-size: 20px;
    /* color: #25245d; */
}

.wrkModal .side-sticky ul li a:hover {
    text-decoration: none;
}


.wrkModal .faq-progress-bar {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #c7c9d9;
    top: 0;
    left: 0;
    overflow: hidden;
}

.wrkModal .faq-progress-bar .progress {
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: var(--secondary);
    height: 0;
    top: 0;
    left: 0;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .flow-step {
    position: absolute;
    top: 0;
    left: 300px;
    right: auto;
    margin: 0 auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px dashed var(--secondary);
    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: #fff;
}

.wroking-process-row {
    counter-reset: my-sec-counter;
    /* Initialize counter */
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .flow-step span {
    font-size: 65px;
    -webkit-text-stroke: 3px transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    background-color: var(--secondary);
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .flow-step::after {
    content: "";
    position: absolute;
    border: 1px dashed var(--secondary);
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 200vh;
    z-index: -1;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-box:last-child {
    padding-bottom: 60px;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-box {
    display: grid;
    grid-template-columns: 300px auto;
    grid-gap: 120px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 160px 0 40px;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-box figure img {
    height: 100%;
    width: 100%;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-info {
    max-width: 100%;
    width: calc(100% - 30px);
    margin: 0;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-info p a {
    color: var(--primary);
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-info h2 {
    color: var(--primary);
    line-height: 1.3;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-info p {
    color: rgba(18, 20, 29, .8);
    margin: 0 0 14px;
    text-align: justify;
    font-size: 18px;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-info ul {
    color: #12141d;
    padding: 0;
    font-size: 18px;
    margin: 0;
}

.wroking-process-sec .wroking-process-flow .wroking-process-row .wroking-process-info ul li {
    margin-bottom: 5px;
}

.faq-main ul.listing li {
    position: relative;
    padding-left: 15px;
}

.faq-main ul.listing li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.choose-us-section.wrkModal .gap-6 {
    gap: max(24px, 1.25vw);
    grid-template-columns: 30% 70%;
    padding: 0 60px;
}


/* Progress bar styling */

.choose-us-section.wrkModal .faq-progress-bar .progress {
    width: 100%;
    background-color: var(--secondary);
    /* Active progress color */
    position: absolute;
    bottom: 0;
    transition: height 0.3s ease;
    /* Smooth height transition */
}

/* Text default and active colors */
.choose-us-section.wrkModal a[data-scroll] {
    color: gray;
    /* Default color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.choose-us-section.wrkModal a[data-scroll]:hover {
    color: #ff0000;
    /* Highlight on hover */
}

/****************************************************
==========Working MODAL DETAILS SECTION END==========
****************************************************/

/********************************************************
==========RESOLVING UI/UX DETAILS SECTION START==========
********************************************************/
.ServiceCompanyDetails_teamwork-data__PEt5z span {
    margin-left: 1.7rem;
    font-size: 1rem;
    color: #121212;
    line-height: 1.875rem;
    min-height: 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.ServiceCompanyDetails_teamwork-data__PEt5z span:before {
    content: " ";
    position: absolute;
    left: -28px;
    top: 10px;
    display: block;
    border-radius: 30px;
    height: 13px;
    width: 13px;
    border: 3px solid #bad0fc;
    margin-right: 15px;
    background-color: var(--secondary);
}

/******************************************************
==========RESOLVING UI/UX DETAILS SECTION END==========
******************************************************/

/*****************************************
==========END TO END UI/UX START==========
*****************************************/

.uiux-icon-list-items {
    padding: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--secondary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.uiux-icon-list-items:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.uiux-icon-list-items .uiux-icon-list-item {
    display: flex;
    font-size: inherit;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
}

.uiux-icon-list-items .uiux-icon-list-item:not(:last-child) {
    padding-bottom: calc(25px / 2);
}

.uiux-icon-list-items .uiux-icon-list-item .uiux-icon-list-icon {
    padding-right: 10px;
    display: flex;
    position: relative;
}

.uiux-icon-list-text {
    color: #707070;
}

.uiux-icon-list-items .uiux-icon-list-item .uiux-icon-list-icon .fa-arrow-right {
    color: var(--secondary);
    transition: color 0.3s;
    width: 1.25em;
    font-weight: 900;
    font-size: 16px;
}

/***************************************
==========END TO END UI/UX END==========
***************************************/

/*****************************************
==========KEY TAKE SECTION START==========
*****************************************/

.key-take-section .container-fluid {
    width: 90%;
}

.pixlogix-key-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    grid-gap: 32px;
    text-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pixlogix-key-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #5e5d5d;
    border-radius: 20px;
    padding: 20px;
    transition: ease-in-out .4s;
    cursor: pointer;
}

.pixlogix-key-box:hover {
    border: 1px solid var(--primary);
}

.pixlogix-key-box:hover h5 {
    color: var(--primary);
}

.pixlogix-key-box figure {
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.pixlogix-key-box figure img {
    display: inline-block;
    vertical-align: top;
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
    background: #ffffff;
    border-radius: 20px;
    padding: 11px
}

.pixlogix-key-box h5 {
    max-width: 130px;
    text-align: center;
    transition: ease-in-out .4s;
    margin: 0 auto;
    color: #fff;
}

/***************************************
==========KEY TAKE SECTION END==========
***************************************/

/*****************************************
==========WHY-UIUX SECTION START==========
*****************************************/
.card-uiux img {
    transform: scale(1.3);
    transition: 0.3s ease-out;
}

.card-uiux:hover img {
    transform: scale(1.1) translateY(-20px);
    opacity: 0.4;
    filter: blur(6px);
}

.why-ui-ux .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    padding: 15px;
    text-align: center;
    color: #fff;
    border: 1px solid #8c8c8c;
    border-radius: 20px;
}

.why-ui-ux .text-h1 {
    transform: translateY(30px);
    opacity: 0;
    transition: all .3s ease-out;
}

.why-ui-ux .text-p {
    transform: translateY(30px);
    opacity: 0;
    transition: all .3s ease-out 0.2s;
}

.card-uiux:hover .overlay .text-h1 {
    opacity: 1;
    transform: translateY(0);
    font-size: 30px;
    margin-bottom: 20px;
}

.card-uiux:hover .overlay .text-p {
    opacity: 1;
    transform: translateY(0);
}

.card-uiux:hover .overlay .link-a {
    opacity: 1;
    transform: translateY(0);
}

.why-ui-ux .GlobalCard_bordered-card__lIPaz {
    box-shadow: none;
    border: unset;
    padding: unset;
    background: unset;
}

.why-ui-ux::before {
    background-color: var(--black);
    opacity: 0.7;
    position: absolute;
    content: '';
    inset: 0;
}

.why-ui-ux .owl-nav button {
    border: 2px solid var(--white) !important;
}

.why-ui-ux .owl-nav button span {
    color: var(--white);
}

/***************************************
==========WHY-UIUX SECTION END==========
***************************************/

/***************************************************
==========Industry Expertise SECTION START==========
***************************************************/

.domains-infocus-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}


.domains-infocus-boxes li {
    position: relative;
    text-align: center;
    border-radius: 16px;
    width: calc(16% - 9px);
    overflow: hidden;
    z-index: 2;
}

.domains-infocus-boxes li a {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: .2s all ease-in-out;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
}

.domains-infocus-boxes li a:hover {
    text-decoration: none;
}

.domains-infocus-boxes li a span {
    width: 100%;
    padding: 9px;
    border: 1px solid #0000ff5e;
    border-radius: 16px;
    text-align: center;
    background-color: #fff;
    transition: all .3s ease;
}

.domains-infocus-boxes li a span svg {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    margin: 0 auto;
    color: var(--white);
    padding: 16px;
}

.domains-infocus-boxes li a strong {
    font-weight: normal;
    transition: .2s all ease-in-out;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 16px;
}

.domains-infocus-boxes li:after {
    content: "";
    position: absolute;
    background: var(--secondary);
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    transition: all 1s ease;
}


.domains-infocus-boxes li:hover::after {
    height: 100%;
}


.domains-infocus-boxes li:hover svg {
    animation: shake 150ms 2 linear;
    -moz-animation: shake 150ms 2 linear;
    -webkit-animation: shake 150ms 2 linear;
    -o-animation: shake 150ms 2 linear;
}

@keyframes shake {
    0% {
        transform: translate(5px, 0);
    }

    50% {
        transform: translate(-5px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

/*************************************************
==========Industry Expertise SECTION END==========
*************************************************/

/*******************************************
==========MAIN FAQ'S SECTION START==========
*******************************************/
.mianFaq.faq-section .faq-sidebar {
    width: 250px;
    background: #ffffff3d;
    box-shadow: 0px 1px 20px rgba(0, 0, 0, .07058823);
    padding: 20px;
    position: sticky;
    top: 85px;
    border-radius: var(--border-radius);
}

.mianFaq.faq-section .faq-sidebar ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
}

.mianFaq.faq-section .faqBox {
    margin-bottom: 30px;
}

.mianFaq.faq-section .faqBox:last-child {
    margin-bottom: 0px;
}

.mianFaq.faq-section .faq-sidebar ul li span {
    font-size: 16px;
    line-height: 1.5;
    display: block;
    color: var(--white);
    cursor: pointer;
    transition: ease-in-out .3s;
}

.mianFaq.faq-section .faq-sidebar ul li span:hover,
.mianFaq.faq-section .faq-sidebar ul li span.active {
    color: var(--primary);
}

.mianFaq.faq-section .faq-item.FAQtitle .faq-question {
    color: var(--primary);
    background-color: #00000085;
    border: 1px solid #ffffff4a;
}

.mianFaq.faq-section.section::before {
    content: unset;
}

.mianFaq.faq-section .md\:grid-cols-2 {
    grid-template-columns: 30% 70%;
}

/*****************************************
==========MAIN FAQ'S SECTION END==========
*****************************************/

/*******************************************
==========TERMS & CO SECTION START==========
*******************************************/
.termsCondition-section h2 {
    margin-bottom: 30px;
    padding-top: 10px;
    font-size: 2.75rem;
    line-height: 3rem;
    font-weight: 700;
}

.termsCondition-section p a {
    color: var(--primary);
    text-decoration: underline;
}

.termsCondition-section ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.termsCondition-section ul li {
    list-style-type: disc;
    font-size: 1.25rem;
    line-height: 2.125rem;
}

.termsCondition-section ul li::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

.termsCondition-section p {
    margin-bottom: 20px;
    font-size: 1.25rem;
    line-height: 2.125rem;
}

/*****************************************
==========TERMS & CO SECTION END==========
*****************************************/

/****************************************
==========SITEMAP SECTION START==========
****************************************/

.sitemap-section .bg-prim {
    background-color: var(--primary) !important;
    font-size: 1.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    border-radius: 20px 0px 20px 0px;
    margin-bottom: 0;
}

.sitemap-section .style-check {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
    padding: 2rem;
}

.sitemap-section .style-check li {
    position: relative;
    padding-left: 1.875rem;
    margin-bottom: 1rem;
}

.sitemap-section .style-check li a {
    transition: ease-in-out .3s;
    color: #696969;
    font-size: 1.125rem !important;
    line-height: 1.875rem;
}

.sitemap-section .style-check li:after {
    background-image: none;
    background-color: #696969;
    border-radius: 100%;
    height: .4375rem;
    width: .4375rem;
    position: absolute;
    content: "";
    left: 0;
    top: .5625rem;
}

.sitemap-section .style-check li:hover:after {
    background-color: var(--primary);
}

.sitemap-section .style-check li a:hover {
    color: var(--primary);
    text-decoration: unset;
}

.sitemap-section .sitemap-boxed .border {
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.sitemap-section .sitemap-boxed .border:last-child {
    margin-bottom: 0px;
}

/**************************************
==========SITEMAP SECTION END==========
**************************************/

/*************************************************
==========MAKE APPOINTMENT SECTION START==========
*************************************************/


.contact-section .InquiryPage_inquiry-details__DNow3 ul li {
    list-style-type: none;
    border-bottom: 1px solid #f5bd00;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.contact-section .InquiryPage_inquiry-details__DNow3 ul li:nth-child(2) {
    border-color: #20b0fd;
}

.contact-section .InquiryPage_inquiry-details__DNow3 ul li:nth-child(3) {
    border-color: #269d38;
}

.contact-section .InquiryPage_inquiry-details__DNow3 ul li:nth-child(4) {
    border: unset;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.contact-section .InquiryPage_clients-logos__8Ln0Q {
    background: url('../images/brand/inquiry-page-brands.5005bb12.svg') no-repeat;
    display: block;
    width: 443px;
    height: 184px;
    margin-top: 40px;
}

.jsx-7bf62432686e4d10.InquiryPage_inquiry-details-ttl__ZJ7fR {
    color: var(--secondary);
}

/***********************************************
==========MAKE APPOINTMENT SECTION END==========
***********************************************/

/**********************************************
==========Quick connect SECTION START==========
**********************************************/

.Quick-connect-section .project-start-inner {
    position: relative;
    background: rgba(0, 0, 0, 0) linear-gradient(110deg, var(--primary) 0%, #f82275 100%) 0% 0% no-repeat padding-box;
    padding: 30px 50px;
    border-radius: 24px;
    display: flex;
    gap: 30px;
    min-height: 240px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}

.Quick-connect-section .project-start-inner .start-left {
    flex: 1;
    display: block;
    font-size: calc(15px + .7vw);
    width: 100%;
    color: #fff;
    margin: 0;
    font-weight: normal;
    line-height: 1.5;
}

.Quick-connect-section .project-start-inner .start-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Quick-connect-section .project-start-inner .start-left p {
    margin-bottom: 10px;
    font-weight: 100;
    font-size: calc(15.2px + .7vw);
}

.Quick-connect-section .project-start-inner .start-left p+p {
    font-size: calc(19.2px + .7vw);
    font-weight: 500;
    margin: 0;
}

.Quick-connect-section .project-start-inner.start-contact .start-right {
    text-align: left;
}

.Quick-connect-section .project-start-inner .start-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    flex: 0 0 calc(58% - 10px);
}

.Quick-connect-section .project-start-inner .start-right .start-link {
    background-color: #fff;
    padding: 12px 15px 12px 60px;
    height: auto;
    gap: 15px;
    box-shadow: 0 3px 26px rgba(0, 0, 0, .06);
    border-radius: 10px;
    width: calc(50% - 15px);
    position: relative;
}

.Quick-connect-section .project-start-inner .start-right .start-link .icon {
    background-position: left center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-image: url('../images/social-icons.svg');
    margin-right: 0px;
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.Quick-connect-section .project-start-inner .start-right .start-link .icon.gmail {
    background-position-x: -30px;
}

.Quick-connect-section .project-start-inner .start-right .start-link .icon.whatapp {
    background-position-x: -60px;
}

.Quick-connect-section .project-start-inner .start-right .start-link .icon.telephone {
    background-position-x: -90px;
}

.Quick-connect-section .project-start-inner .start-right .start-link h4 {
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.2;
    color: #1d1e31;
}

.Quick-connect-section .project-start-inner .start-right .start-link h3 a {
    color: #000000;
    font-weight: 600;
}

.Quick-connect-section .project-start-inner .start-right .start-link h3 {
    color: var(--black);
}

.Quick-connect-section .project-start-inner .start-right .start-link h3 {
    font-weight: normal;
    font-size: 1.17em;
    line-height: 1.2;
    color: #1d1e31;
    margin-bottom: 0;
}

/********************************************
==========Quick connect SECTION END==========
********************************************/

/*********************************************
==========HERE TO HELP SECTION START==========
*********************************************/
/* .heretohelp-connect-section .InquiryPage_clients-helparea__QtIhk {
    padding: 0 40px;
} */
.heretohelp-connect-section .InquiryPage_clients-helparea__QtIhk h3 {
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 20px;
    font-size: 1.375rem;
    margin-bottom: 15px;
    display: block;
}

.heretohelp-connect-section .InquiryPage_clients-helparea__QtIhk {
    border: 1px solid #dedede;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.heretohelp-connect-section .InquiryPage_clients-helparea__QtIhk p {
    color: #808080;
}

/*******************************************
==========HERE TO HELP SECTION END==========
*******************************************/

/*******************************************
==========HERE TO HELP SECTION END==========
*******************************************/
.your-benefits-setion .our-clients-content .clients-content {
    width: 50%;
}

.your-benefits-setion .our-clients-content {
    display: flex;
    gap: 20px;
}

.your-benefits-setion .our-clients-content .clients-content li svg {
    margin-right: 5px;
}

.your-benefits-setion .our-clients-content .clients-content li {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.your-benefits-setion .clients-content p {
    line-height: 1.9;
}

/*******************************************
==========HERE TO HELP SECTION END==========
*******************************************/

/***********************************************
==========BANNER CONTENT SECTION START==========
***********************************************/
.porfolio-mainContent {
    display: grid;
    gap: max(24px, 1.25vw);
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.porfolio-mainContent .side-sticky {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: top 0.3s;
    z-index: 999;
    background-color: #ffff;
}

.porfolio-mainContent .side-sticky.fixed {
    position: fixed;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
}

.porfolio-mainContent .side-sticky.stop {
    position: absolute;
    top: auto;
    bottom: 0;
    /* Stop at bottom */
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-section.caseStudyList .project_list p {
    margin: 0;
}

.portfolio-section.caseStudyList .project_list ul {
    margin-top: 30px;
}

.portfolio-section.caseStudyList .project_list li {
    background: var(--primary);
    color: var(--white);
}

.portfolio-section.caseStudyList .project_list {
    padding: 0;
    border-radius: 40px;
}

.pro-portContent {
    position: relative;
    z-index: 1;
    padding: 35px 43px;
    padding-top: 0;
}

.banner-content-section .banner-content-wrapper .banner-title-tag {
    margin-bottom: .6rem;
}

.banner-content-section .banner-content-wrapper .banner-title {
    margin-bottom: 1.06rem;
    font-size: 3.25rem;
    line-height: 4.375rem;
    font-weight: 600;
}

.banner-content-section .banner-content-wrapper .banner-info {
    margin-bottom: 3.1rem;
    -webkit-opacity: .8;
    -moz-opacity: .8;
    -o-opacity: .8;
    -ms-opacity: .8;
    opacity: .8;
}

.banner-content-section .banner-content-wrapper .portfolio-banner-image {
    border-radius: .625rem;
    display: flex;
    overflow: hidden;
    /* padding-bottom: 56.72%; */
    position: relative;
}

.banner-content-section .banner-content-wrapper .portfolio-banner-image {
    aspect-ratio: auto 16 / 9;
    border-radius: 1.25rem;
    padding-bottom: 0;
}

.portfolio-navbar-section .portfolio-detail-nav {
    border-bottom: 1px solid #d9d9d9;
    /* display: grid; */
    min-height: 4.188rem;
}

.portfolio-navbar-section .nav-pills .nav-link.active,
.portfolio-navbar-section .nav-pills .show>.nav-link {
    color: var(--black);
    background-color: unset;
}

.portfolio-navbar-section .portfolio-detail-nav {
    min-height: 4rem;
}

.portfolio-navbar-section .portfolio-detail-nav ul {
    gap: .2rem;
}

.portfolio-navbar-section .portfolio-detail-nav ul {
    min-height: 4.813rem;
}

.portfolio-navbar-section .portfolio-detail-nav ul li {
    align-items: center;
    display: flex;
    position: relative;
    transition: all .1s ease;
}

ul.list-unstyled li {
    margin: 0;
    padding: 0;
}

.portfolio-navbar-section .portfolio-detail-nav ul li.nav-item .nav-link:hover {
    text-decoration: none;
}

.portfolio-navbar-section .portfolio-detail-nav ul li.nav-item .nav-link {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-weight: 500;
    height: 100%;
    padding: 1rem 0;
    color: var(--black);
}

.portfolio-navbar-section .portfolio-detail-nav ul li.nav-item .nav-link:hover,
.portfolio-navbar-section .portfolio-detail-nav ul li.nav-item .nav-link.active {
    color: var(--primary);
    transition: all .3s ease;
}

.portfolio-navbar-section .portfolio-detail-nav ul li.nav-item .nav-link {
    padding: 1rem 1.25rem;
    transition: all .3s ease;
}

.portfolio-navbar-section .portfolio-detail-nav ul li .nav-link:after {
    background-color: var(--primary);
    bottom: 0;
    content: "";
    display: block;
    height: .188rem;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    transition: all .3s ease;
    width: 100%;
}

.portfolio-navbar-section .portfolio-detail-nav ul li .nav-link.active:after {
    opacity: 1;
    transition: all .3s ease;
}

/* =====================
===================== */

.portfolio-about-section .portfolio-about-wrapper {
    -moz-column-gap: 12.5rem;
    column-gap: 12.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(1.875rem, calc(50% - 6.25rem)));
    row-gap: 1.875rem;
}

.portfolio-about-section .portfolio-about-wrapper .a-btn.waysa:hover:before {
    min-width: 180px;
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content {
    color: var(--black);
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content .titlee {
    margin-bottom: .425rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content .titlee {
    margin-bottom: 1.1rem;
}

.titlee {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.575rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content .subtitle {
    margin-bottom: 1.575rem;
}

.description-content>:last-child,
.description-content>:last-child p:last-child {
    margin-bottom: 0;
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content .about-industry-country-box>li {
    padding-left: 1.25rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content .about-industry-country-box>li {
    border-left: .125rem solid rgba(25, 29, 38, .2);
    padding-left: .938rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content .about-industry-country-box>li .h4,
.portfolio-about-section .portfolio-about-wrapper .about-left-content .about-industry-country-box>li h4 {
    margin-bottom: .438rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-left-content .about-industry-country-box {
    -moz-column-gap: 4.313rem;
    column-gap: 4.313rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(1.875rem, calc(50% - 2.1565rem)));
    row-gap: 1.25rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .about-right-content-inner {
    border-radius: 1.25rem 1.25rem 5.85rem 1.25rem;
    margin-bottom: 3.125rem;
    margin-top: 4rem;
    padding: 3.125rem 3.125rem;
    background-color: var(--white);
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .about-right-content-inner {
    /* border-radius: 1.375rem; */
    box-shadow: 0 0 .938rem 0 rgba(0, 0, 0, .33);
    /* padding: 1.875rem; */
    position: relative;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .about-right-content-inner:before {
    background-color: #fff;
    bottom: 0;
    height: 1.875rem;
    z-index: 1;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .about-right-content-wrap {
    background-color: #fff;
    position: relative;
    width: 100%;
    z-index: 2;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .service-offered-title {
    margin-bottom: 1.3rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .service-offered-title {
    color: var(--primary);
    margin-bottom: .6rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .service-offered-list {
    color: var(--black);
    margin-bottom: 0;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .description-content>:last-child {
    margin-bottom: 0;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .service-offered-list li {
    margin-bottom: 1.463rem;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .service-offered-list li a {
    color: var(--primary);
    text-decoration: underline;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .service-offered-list li:before {
    background: var(--black);
    height: .25rem;
    top: .625rem;
    width: .25rem;
    content: "";
    left: 0;
}

/* .portfolio-about-section .portfolio-about-wrapper .about-right-content .about-right-content-inner:after {
    background-image: url(/assets/images/portfolio/shape-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -3.125rem;
    -webkit-filter: drop-shadow(0 0 .438rem rgba(0, 0, 0, .28));
    -moz-filter: drop-shadow(0 0 .438rem rgba(0, 0, 0, .28));
    -ms-filter: drop-shadow(0 0 .438rem rgba(0, 0, 0, .28));
    -o-filter: drop-shadow(0 0 .438rem rgba(0, 0, 0, .28));
    height: 3.125rem;
    width: 100%;
}

.portfolio-about-section .portfolio-about-wrapper .about-right-content .about-right-content-inner:after,
.portfolio-about-section .portfolio-about-wrapper .about-right-content .about-right-content-inner:before {
    content: "";
    left: 0;
    position: absolute;
    right: 0;
} */

/* =====================
===================== */
.portfolio-navbar-section.section {
    padding-top: 0;
    padding-bottom: 0;
}

.portfolio-image-section .portfolio-image-wrap>div {
    position: unset !important;
}

.portfolio-image-section {
    padding-top: 0;
}

.portfolio-image-section .portfolio-image-wrap>div img {
    height: 100% !important;
    min-height: 40.25rem !important;
    position: unset !important;
    width: 100% !important;
}

.sectioned {
    padding-bottom: 80px;
}

/* ===================
=================== */

.portfolio-feature-section .image-content-section .image-content-grid {
    -moz-column-gap: 9rem;
    column-gap: 9rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(1.875rem, calc(50% - 4.5rem)));
    row-gap: 1.65rem;
    align-items: center;
}

.portfolio-feature-section .image-content-section .image-content-grid .image-content-left {
    margin-left: -8.1rem;
}

.portfolio-feature-section .image-content-section .image-content-grid .image-content-left .figure>div {
    vertical-align: middle;
}

.portfolio-feature-section .image-content-section .image-content-grid .image-content-right {
    padding: 1rem 0;
}

.portfolio-feature-section .image-content-section .image-content-grid .image-content-right .content-title {
    margin-bottom: 1.3rem;
}

.portfolio-feature-section .image-content-section .image-content-grid .image-content-right .content-title {
    font-weight: 500;
    margin-bottom: .6rem;
}

.portfolio-feature-section .image-content-section .image-content-grid .image-content-right .description-content {
    color: rgba(25, 29, 38, .8);
    margin-bottom: 0;
}

.portfolio-feature-section .image-content-section.even .image-content-left {
    margin-right: -8.1rem;
}

.portfolio-feature-section .image-content-section.even .image-content-left {
    order: 1;
    text-align: right;
}

.portfolio-feature-section .image-content-section.even .image-content-left {
    margin-left: 0;
    margin-right: -1.2rem;
}

.portfolio-feature-section .image-content-section.even .image-content-right {
    order: 0;
}

/* ================
================ */

.techstack-section.techstack {
    padding-top: 6.25rem;
    margin-bottom: 2.625rem;
}

.techstack-section.techstack .subttl {
    margin-bottom: 1.5rem;
}

.techstack-section.techstack .nav-link {
    cursor: pointer;
    line-height: 1.875rem;
    margin-bottom: .313rem;
    padding: 0 0 0 .938rem;
    transition: all .1s ease;
    line-height: 2.125rem;
    margin-bottom: 0;
    padding: .3rem 0 .3rem 1.25rem;
    border-left: .125rem solid transparent;
    text-align: left;
    color: var(--black);
}

.techstack-section.techstack .nav-link.active {
    border-color: var(--secondary);
    color: var(--secondary);
    border-radius: unset;
}

.techstack-section .megnify {
    -moz-column-gap: 6.25rem;
    column-gap: 6.25rem;
    justify-content: space-between;
}

.techstack-section .nav-pills {
    max-width: 31.25rem;
}

.techstack-section .tab-content .techstack-technology-box-wrap {
    -moz-column-gap: 2.75rem;
    column-gap: 2.75rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(6.875rem, calc(33.33333% - 1.83333rem)));
    max-width: 36.063rem;
    row-gap: 2.5rem;
    width: 100%;
}


.techstack-section .tab-content .techstack-technology-box-wrap .techstack-technology-box {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.techstack-section .tab-content .techstack-technology-box-wrap .techstack-technology-box .technology-image {
    border-radius: .938rem;
    display: flex;
    margin-bottom: 1.438rem;
    overflow: hidden;
}

.techstack-section .tab-content .techstack-technology-box-wrap .techstack-technology-box .techstack-technology-box-title {
    color: var(--black);
    text-align: center;
}

.owl-carousel.techstack-slider .item img {
    width: auto;
    /* Maintain original image width */
    max-width: 100%;
    /* Ensures responsiveness */
    height: auto;
    /* Keeps aspect ratio */
    display: block;
    /* Removes extra space below images */
    border: 0 !important;
    height: 100% !important;
    position: relative !important;
    width: 100% !important;

}

.image-slider-auto-width-section {
    padding-bottom: 3.125rem;
    padding-top: 3.125rem;
}

.image-slider-auto-width-section .item {
    height: 14.375rem !important;
    width: auto !important;
}

.image-slider-auto-width-section .item {
    height: 35.75rem !important;
}

.image-slider-auto-width-section .owl-carousel.owl-drag .owl-item {
    min-width: auto !important;
    width: auto !important;
}

.image-slider-auto-width-section .owl-stage {
    width: max-content !important;
}

.image-slider-auto-width-section .owl-nav {
    display: none;
}

.product-link-store-section {
    padding-bottom: 6.25rem;
    padding-top: 3.125rem;
}

.product-link-store-section .title {
    margin-bottom: 1.7rem;
}

.product-link-store-section .title {
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
}

.product-link-store-section .static {
    align-items: center;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 3.625rem;
    row-gap: .625rem;
}

.product-link-store-section .static {
    flex-direction: row;
    min-height: 4.375rem;
    row-gap: 1.875rem;
}

.product-link-store-section .product-link-store-buttons .link-store-button {
    align-items: center;
    background-color: transparent;
    border-radius: .375rem;
    cursor: pointer;
    display: flex;
    max-width: 11.625rem;
    transition: all .1s ease;
}

.product-link-store-section .static .link-store-button {
    background-color: #272727;
    max-width: 14.375rem;
    padding: .625rem 1rem;
    width: 100%;
}

.product-link-store-section .static .link-store-button:hover {
    text-decoration: none;
    -ms-box-shadow: 0 .225rem 1.175rem rgba(0, 0, 0, .6);
    -o-box-shadow: 0 .225rem 1.175rem rgba(0, 0, 0, .6);
    box-shadow: 0 .225rem 1.175rem rgba(0, 0, 0, .6);
}

.product-link-store-section .product-link-store-buttons .link-store-button .link-icon {
    display: flex;
    margin-right: 1rem;
}

.product-link-store-section .product-link-store-buttons .link-store-button .link-icon svg {
    height: 2.5rem;
    width: 2.5rem;
    color: var(--white);
}

.product-link-store-section .product-link-store-buttons .link-store-button .link-title {
    font-size: 1.375rem;
}

.product-link-store-section .product-link-store-buttons .link-store-button .link-title {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.534rem;
}


.product-link-store-section .product-link-store-buttons .link-store-button .link-title>span {
    font-size: .625rem;
    text-transform: uppercase;
}

.product-link-store-section .product-link-store-buttons .link-store-button .link-title>span {
    font-size: .75rem;
}

/* ================
================ */
.light-background-gradient-color {
    background: linear-gradient(279.59deg, rgba(135, 198, 250, .7), rgba(195, 210, 249, .7) 62.02%, hsla(51, 41%, 97%, .7));
}

.client-review-section {
    background-color: #fff;
    overflow: hidden;
    padding-bottom: 3.125rem;
    padding-top: 3.125rem;
    position: relative;
    z-index: 1;
}

.client-review-section {
    padding-bottom: 6.25rem;
}

.client-review-section {
    padding-top: 6.25rem;
}

.client-review-section .glider-slide-item-profile {
    /* padding-top: 50.434%; */
    position: relative;
    width: 100%;
}

.client-review-section .glider-slide-item-profile {
    height: 100%;
    min-width: 12.375rem;
    padding-top: 0;
    width: auto;
}

.client-review-section .glider-slide-item-inner {
    padding: 1.75rem 1.75rem 1.875rem;
    width: 100%;
}

.client-review-section .glider-slide-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 2.125rem 1rem;
}

.client-review-section .glider-slide-header {
    align-items: flex-start;
    -moz-column-gap: .875rem;
    column-gap: .875rem;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.125rem;
}

.client-review-section .glider-slide-header {
    align-items: center;
    padding-bottom: 1.25rem;
}

.client-review-section .glider-slide-header-left .glider-slide-title {
    color: var(--black);
    font-weight: 500;
}

.client-review-section .glider-wrapper .glider-slide-header-left .glider-slide-designation {
    color: #4e5158;
    font-size: .875rem;
    line-height: normal;
    margin-bottom: 0;
}

.client-review-section .glider-wrapper .glider-slide-body {
    margin-bottom: auto;
}

.client-review-section .glider-wrapper .glider-slide-body {
    padding-bottom: 1.125rem;
}

.client-review-section .glider-wrapper .glider-slide-body .description-content {
    color: #4e5158;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    margin-bottom: 0;
}

.client-review-section .glider-wrapper .glider-slide-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.client-review-section .glider-wrapper .glider-slide-footer .glider-slide-footer-left>div img {
    -o-object-position: left;
    object-position: left;
}

.glider.draggable .glider-slide img {
    pointer-events: none;
}

.client-review-section .glider-wrapper .glider-slide-footer .glider-slide-footer-right {
    align-items: center;
    -moz-column-gap: .375rem;
    column-gap: .375rem;
    display: flex;
}

.client-review-section .glider-wrapper .glider-slide-footer .figure {
    margin-top: 0.65rem;
}

.client-review-section .glider-slide-footer .figure>div {
    vertical-align: middle;
}

.client-review-section .glider-slide-footer-right {
    font-size: .625rem;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
}

.client-review-section .glider-wrapper .glider-slide-body {
    margin-bottom: 50px;
}

.client-review-section .glider-wrapper .glider-slide-body {
    padding-bottom: 1.125rem;
}

.client-review-section .glider-wrapper .glider-slide-item {
    -ms-box-shadow: 0 .938rem 3.125rem rgba(0, 0, 0, .122);
    -o-box-shadow: 0 .938rem 3.125rem rgba(0, 0, 0, .122);
    box-shadow: 0 .938rem 3.125rem rgba(0, 0, 0, .122);
}

.client-review-section .glider-wrapper .glider-slide-item {
    align-items: center;
    background: #fff;
    border-radius: 1.25rem;
    display: flex;
    /* flex-direction: column; */
    height: 100%;
    overflow: hidden;
}

.client-review-section .glider-wrapper .glider-slide.visible.center {
    margin: -1.35rem auto 0;
    opacity: 1;
}

.client-review-section .glider-wrapper .glider-slide.visible.center {
    margin-top: -1.35rem;
    max-width: 52.875rem;
    min-width: 52.875rem;
    opacity: .2;
    padding: 1.35rem .875rem 3rem;
    transition: opacity .1s ease-in-out;
    width: 52.875rem !important;
    margin: -1.35rem auto 0;
    opacity: 1;
}

.client-review-section .glider-wrapper .glider-slide-item-profile {
    padding-top: 50.434%;
    position: relative;
    width: 100%;
}

.client-review-section .glider-wrapper .glider-slide-item-profile {
    height: 100%;
    min-width: 12.375rem;
    padding-top: 0;
    width: auto;
}

.client-review-section .glider-wrapper .owl-prev {
    left: 50%;
    margin-left: -3.75rem;
    right: auto;
}

.client-review-section .glider-wrapper .owl-next {
    left: 50%;
    margin-left: 0;
    right: auto;
}

.client-review-section .glider-wrapper .owl-nav button {
    height: 3.125rem;
    width: 3.125rem;
}

.client-review-section .glider-wrapper .owl-nav button {
    top: auto;
}

.client-review-section .glider-wrapper .owl-nav button {
    align-items: center;
    background: linear-gradient(192.56deg, #fff 9.11%, hsla(0, 0%, 100%, 0) 174.78%);
    border: 0;
    border-radius: 100%;
    -ms-box-shadow: 0 .625rem 1.25rem rgba(0, 0, 0, .08);
    -o-box-shadow: 0 .625rem 1.25rem rgba(0, 0, 0, .08);
    box-shadow: 0 .625rem 1.25rem rgba(0, 0, 0, .08);
    cursor: pointer;
    display: flex;
    height: 3.125rem;
    justify-content: center;
    position: absolute;
    /* top: 50%; */
    width: 3.125rem;
    z-index: 1;
}

.client-review-section .glider-wrapper .owl-dots.disabled {
    display: none;
}

.reason-section h2.h6 {
    max-width: 100%;
    margin-top: 0;
    padding-right: 63px;
    letter-spacing: -.02em;
    font-size: 2.813rem;
    line-height: 55px;
}

.reason-section .clearfix p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 26px;
}

/*********************************************
==========BANNER CONTENT SECTION END==========
*********************************************/

/****************************************
==========BRAINER SECTION START==========
****************************************/

.brainers-love-us-section .subttl {
    width: 60%;
    margin: 0 0 50px;
}

.brainers-love-us-section .brainers-love-us-card {
    border: .063rem solid #c9ced9;
    border-radius: .625rem;
    height: 100%;
    overflow: hidden;
}

.brainers-love-us-section .brainers-love-us-card .love-us-card-image {
    display: flex;
    padding-bottom: 61%;
    position: relative;
}

.brainers-love-us-section .brainers-love-us-card .love-us-card-image div {
    width: 100%;
}

.brainers-love-us-section .brainers-love-us-card .love-us-card-content {
    padding: 1.875rem 1.563rem 3.125rem;
}

.brainers-love-us-section .brainers-love-us-card .love-us-card-content .card-title {
    margin-bottom: 1.25rem;
}

.brainers-love-us-section .description-content .description-bigdot-list {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    margin-bottom: 0;
}

.brainers-love-us-section .description-content .description-bigdot-list li {
    font-weight: 500;
    line-height: 1.5rem;
    font-size: 1rem;
    position: relative;
    padding: 0 0 0 1.25rem;
}

.brainers-love-us-section .description-content .description-bigdot-list li {
    margin-bottom: 0;
}

.brainers-love-us-section .description-content .description-bigdot-list li:before {
    background: var(--secondary);
    height: .75rem;
    top: .3rem;
    width: .75rem;
    left: 0;
    position: absolute;
    border-radius: 100%;
    content: "";
}

.brainers-love-us-section .description-content .description-bigdot-list li:before {
    top: .34rem;
}

.brainers-love-us-section .GlobalCard_bordered-card__lIPaz {
    box-shadow: none;
    border: unset;
    padding: 0;
    background: unset;
    overflow: unset;
}

.brainers-love-us-section .brainers-love-us-section.business-phil-section {
    padding-bottom: 80px;
    background-color: var(--bg);
}

/**************************************
==========BRAINER SECTION END==========
**************************************/

/*************************************************
==========PORTFOLIO CAREER SECTION START==========
*************************************************/
.field.field--name-field-image.field--type-entity-reference {
    padding: 0 0;
}

.portfolio-career-section .overflow-img {
    display: flex;
    justify-content: end;
}

.portfolio-career-section .wrapper {
    align-content: center;
    text-align: start;
    padding: 0 5% 0 0%;
}

.brainers-love-us-section.business-phil-section {
    padding-bottom: 80px;
}

.portfolio-career-section .sub-head3 {
    margin-bottom: 60px;
    font-size: 1.313rem;
    font-weight: 400;
    line-height: 28px;
}

.portfolio-career-section .a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 299px;
}

.leadership-section.leadMore h1 {
    text-align: start;
    font-weight: 400;
    line-height: 1.3;
}

.readless-link.readmore-link:after {
    position: absolute;
    top: -5px;
    padding-left: 6px;
    content: "+";
    color: #000;
    font-size: 1.5rem;
}

.readless-link.readmore-link {
    position: relative;
    color: var(--black);
}

/***********************************************
==========PORTFOLIO CAREER SECTION END==========
***********************************************/

/***********************************************
==========PORTFOLIO CAREER SECTION END==========
***********************************************/
.culture-filter-section .under-tech-content {
    display: flex;
}

.culture-filter-section .techItmWor {
    width: 33.3333%;
    min-height: 376.188px;
    background-color: #f6f6f6;
    position: relative !important;
    width: 97% !important;
    margin: 0 10px 10px 0;
    padding: 30px;
    transition: all .3s ease-in-out;
    text-align: left;
}

.culture-filter-section .title2.field--name-field-bp-headline {
    min-height: 60px;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 25px;
}

.culture-filter-section .field--name-bp-text p {
    color: #595959;
    margin-bottom: 20px;
    padding-top: 10px;
    font-size: .875rem;
    font-weight: 400;
    line-height: 26px;
}

.culture-filter-section .nav.nav-tabs {
    margin: 0;
    padding-bottom: 30px;
    padding-left: 0;
    text-transform: capitalize;
    border-bottom: 0;
}

.nav-tabs .nav-li {
    border: unset;
    background-color: unset;
    width: auto;
    padding: 0 !important;
    text-align: center;
    z-index: 3;
    font-size: 1.125rem;
    line-height: 25px;
    position: relative;
    display: block;
    margin-right: 46px;
    letter-spacing: 0;
    border: none;
    border-radius: 0;
    font-weight: 600;
    color: gray !important;
    background-color: #fff !important;
    line-height: 25px;
}

.nav-tabs .nav-li.active {
    color: var(--black) !important;
    border-bottom: 2px solid var(--primary) !important;
    background-color: #fff !important;
}

.tect-top-para p {
    margin-bottom: 10px;
    margin: 0 0 2em;
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 28px;
    color: var(--black);
}

/***********************************************
==========PORTFOLIO CAREER SECTION END==========
***********************************************/

/***********************************************
==========CORE PURPOSE SECTION START==========
***********************************************/
.core-purpose-section .slider-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: auto;
    flex-wrap: wrap;
    position: relative;
}

.core-purpose-section .content {
    width: 100%;
    padding: 70px 0 0;
}

.core-purpose-section .content h2 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: -.03em;
    margin: 20px 0 0;
}

.core-purpose-section .text-formatted {
    display: block;
    height: auto;
    margin: 50px 0 0;
}

.core-purpose-section .content p {
    display: block;
    height: auto;
    /* margin: 50px 0 0; */
}

.core-purpose-section ul {
    list-style: square;
}

.core-purpose-section ul li {
    padding-bottom: 10px;
}

.core-purpose-section ul li::marker {
    color: #e31635;
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

.read-more-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

.core-purpose-section ul {
    margin-left: 1.3rem;
}

.core-purpose-section .image-container {
    width: 100%;

}

.core-purpose-section .image-container img {
    width: 100%;
    height: auto;
}

.core-purpose-section .owl-nav {
    position: absolute;
    top: 0px;
    z-index: 1;
}

.core-purpose-section .owl-nav button {
    left: auto;
    /* display: block !important; */
    min-width: 60px;
    height: 60px;
    transition: all .5s ease;
    opacity: 1;
    border: 0 none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 60px;
    margin-right: 20px;
    background-color: unset;
    border: 1px solid #000;
}

.core-purpose-section .owl-dots {
    display: flex;
    justify-content: flex-start;
    /* padding: 10px 0; */
    width: 100%;
}

.core-purpose-section .owl-dots .owl-dot {
    visibility: visible;
    width: 100%;
    height: 4px;
    margin: 70px 0 0 !important;
    margin-right: 0;
    margin-left: 0;
    cursor: pointer;
    transition: opacity .6s ease;
    text-indent: -999px;
    opacity: .4;
    border: 0;
    background-color: #c4c4c4;
    background-clip: padding-box;
}

.core-purpose-section .owl-dots .owl-dot.active {
    background: red;
    border: unset;
    opacity: 1;
}

.coreAllContent {
    display: flex;
    align-items: center;
}

.coreAllContent .owl-dots .owl-dot:nth-child(n+4) {
    display: none;
}

/***********************************************
==========CORE PURPOSE SECTION END==========
***********************************************/

/***************************************
==========CAREER SECTION START==========
***************************************/
.recent-career-section .input-group {
    display: inline-block;
}

.recent-career-section .input-group>div {
    display: flex;
}

.recent-career-section h2.sectionTitle {
    font-size: 17px;
}

.recent-career-section input.form-control:focus {
    outline: 0;
    border: var(--bs-border-width) solid var(--black);
}

.recent-career-section input.form-control {
    height: 42px;
    padding: 5px;
    font-size: 13px;
    border: var(--bs-border-width) solid var(--black);
    border-radius: 0;
    margin-right: 10px;
}

.recent-career-section .input-group-text {
    min-width: auto;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgb(0, 0, 0);
    background-color: transparent;
    box-shadow: none !important;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-image: initial;
    border-radius: 0;
    padding: 11px 30px;
}

.recent-career-section .paragraph.paragraph--type--card-info-stand-tiles {
    margin-right: 0;
    margin-left: 0;
    height: 270px;
    position: relative !important;
    width: 97% !important;
    min-height: 310px;
    margin: 0 10px 10px 0;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    text-align: left;
    background-color: #fff;
}

.joblisting .col-md-4 {
    padding: 0px !important;
}

.joblisting .title2 span {
    padding: 2px 15px;
    background: var(--secondary);
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.joblisting .a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 235px;
}

/*************************************
==========CAREER SECTION END==========
*************************************/

/****************************************************
==========Business Challenges SECTION START==========
****************************************************/
.csol-multi-row-rich-text {
    height: 100%;
    align-content: center;
}

.csol-multi-row-rich-text h2 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.42;
    margin: 0.5em 0;
    color: var(--black);
}

.csol-multi-row-rich-text p {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1rem;
    color: var(--black);
    font-weight: 300;
    line-height: 1.9;
}

.csol-multi-row-rich-text .hubspotstarter-reachcustomers {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.csol-multi-row-media img {
    width: 100%;
    height: 100%;
}

.content-card-text {
    background-color: var(--bg);
    border-radius: 6px;
    padding: 20px;
}

.content-card-text .wf-link-to-content-card-text-heading {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 14px;
}

.wf-link-to-content-card-text-description {
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cl-rich-text strong {
    font-weight: 600;
    line-height: 2;
}

.free-service-section .csol-multi-row-rich-text h2 {
    font-size: 1.7rem;
}

.service-video-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
}

.poster-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
}

#video-poster {
    display: block;
    width: 100%;
    height: 330px;
    /* border-radius: 12px; */
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: unset;
    color: #fff;
    font-size: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

#my-video {
    display: none;
    /* Initially hide the video player */
    width: 100%;
    height: 330px;
    /* border-radius: 12px; */
}

#my-video.show-controls {
    display: block;
    /* border-radius: 12px; */
    object-fit: cover;
}

/**************************************************
==========Business Challenges SECTION END==========
**************************************************/

/****************************************
==========PRICING SECTION START==========
*****************************************/
.pricing-sponsors {
    column-gap: 48px;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding: 40px 24px;
    align-items: center;
    display: flex;
    flex: 1 1 0;
}

.priceSpons {
    height: 100px;
    width: 100px;
}

.wf-all-hubs-pricing-cards {
    grid-template-columns: repeat(2, 298px);
}

.wf-all-hubs-pricing-cards {
    column-gap: 1rem;

    display: grid;
    justify-content: center;
    row-gap: 0;
}

.wf-all-hubs-pricing-card-title-wrapper {
    /* border: 1px solid #b6c7d6; */
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-block-start: 2rem;
    padding-inline: 1.5rem;
    position: relative;
}

.cl-badge.-ribbon-right {
    border-radius: 5px;
    border-bottom-right-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    padding-right: 6px;
    background-color: var(--primary);
    border-color: var(--primary);
    left: -8px;
    position: absolute;
    top: 8px;
    z-index: 1;
    color: #fff;
    font-size: .75rem;
    padding-left: 4px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.66666667;
}

.wf-all-hubs-pricing-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.41666667;
    margin-bottom: 0;
}

.wf-all-hubs-pricing-card-subtitle {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1.75;
    margin-bottom: 0;
}

.wf-all-hubs-pricing-card-secondary-title {
    font-size: 0.925rem;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.55555556;
}

.wf-all-hubs-pricing-card-description {
    font-weight: 500;
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: normal;
    line-height: 1.75;
}

.wf-all-hubs-pricing-card.cl-card.-featured {
    /* border:; */
    border: 3px solid var(--primary);
}

.wf-all-hubs-pricing-card.cl-card {
    border-radius: 4px;
    box-shadow: none;
    margin: 0 auto;
    max-width: 343px;
    width: 100%;
    border: 1px solid #b6c7d6;
    /* border-bottom: none; */
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.wf-all-hubs-pricing-card-features-wrapper {
    /* border: 1px solid var(--primary); */
    border-block: none;
    position: relative;
    padding-block-end: 2.5rem;
    padding-inline: 1.5rem;
}

.wf-all-hubs-pricing-card-features-title {
    font-weight: 500;
    margin: 24px 0 0;
    padding-block-end: .5rem;
    line-height: 1.75;
    font-size: .8rem;
}

.wf-all-hubs-pricing-learn-more-wrapper.-featured {
    grid-row-start: 4;
    /* margin-block-end: 1.5rem; */
    /* border: 1px solid var(--primary); */
    border-block-start: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    position: relative;
}

.wf-all-hubs-pricing-learn-more-content {
    align-items: center;
    border-block-start: 1px solid #b6c7d6;
    display: flex;
    gap: .5rem;
    height: 75px;
    justify-content: center;
    padding-block: 1rem;
    padding-inline: 1.5rem;
    width: 100%;
}

.wf-all-hubs-pricing-learn-more-content .a-btn {
    font-size: 16px;
    left: -11px;
}

.wf-all-hubs-pricing-learn-more-content .cl-button.a-btn:hover:before {
    transition: ease-in-out .5s;
    min-width: 244px;
}

.a-btn.ssxxz:hover:before {
    transition: ease-in-out .5s;
    min-width: 172px;
}


/**************************************
==========PRICING SECTION END==========
**************************************/

/********************************************
==========EASY TO USE SECTION START==========
********************************************/
.easy-to-us-section .wf-link-to-content-grid.-three-columns {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    gap: 1.5rem;
}

.easy-to-us-section .wf-link-to-content-card.-small-padding {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 10px;
}

.easy-to-us-section .wf-link-to-content-card-image-wrapper {
    align-items: center;
    justify-content: center;
    max-height: 75px;
    display: flex;
    flex-direction: column;
}

.easy-to-us-section .wf-link-to-content-card-image-wrapper img {
    margin-bottom: .5rem;
    object-fit: contain;
    max-height: 75px;
    max-width: 75px;
}

.easy-to-us-section .wf-link-to-content-card-text.-alignment-center {
    height: 100%;
    justify-content: center;
    text-align: center;
    gap: .5rem;
    display: flex;
    flex-direction: column;
}

.easy-to-us-section .wf-link-to-content-card-text-heading {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.55555556;
    margin: 0;
    color: var(--black);
}

.easy-to-us-section .wf-link-to-content-card-text a .wf-link-to-content-card-text-heading,
.easy-to-us-section .wf-link-to-content-card-text a {
    text-decoration: underline;
    color: var(--primary);
}

.easy-to-us-section .wf-link-to-content-card-text-description {
    line-height: 1.6;
}

.easy-to-us-section .csol-full-width-cta-card-container {
    flex-direction: row;
    justify-content: flex-end;
}

.csol-full-width-cta-card-container {
    flex-direction: row;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    position: relative;
    border-radius: 8px;
    color: var(--black);
    border: 1px solid #dbe4ed;
    background-color: var(--white);
}

.csol-full-width-cta-card-image {
    min-width: 339px;
    width: 339px;
    background: #192733;
    box-sizing: content-box;
    flex-grow: 0;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.csol-full-width-cta-card-graphic-container:empty {
    min-height: auto;
}

.csol-full-width-cta-card-graphic-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
    position: relative;
    width: 100%;
    z-index: 3;
}

.csol-full-width-cta-card-background {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.csol-full-width-cta-card-background-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.csol-full-width-cta-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    padding: 40px;
}

.-large.csol-full-width-cta-card-description {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.77777778;
    letter-spacing: normal;
}

/**************************************************
==========FREE CONSULTATION SECTION START==========
**************************************************/
.csol-cta-content-block-container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    display: flex;
}

.csol-cta-content-block-content {
    margin-right: 25px;
    max-width: 620px;
    position: relative;
}

.csol-cta-content-block-header {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.41666667;
    margin-top: 16px;
}

.csol-cta-content-block-buttons {
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
    align-items: center;
    flex-direction: row;
    gap: 40px;
}

.csol-cta-content-block-image img {
    display: block;
    height: auto;
    width: 100%;
}

/************************************************
==========FREE CONSULTATION SECTION END==========
************************************************/

/****************************************
==========INEGRATED SECTION END==========
****************************************/
.inegrated-section .wf-integrations-tools_container.-text-first:only-child {
    flex-direction: row-reverse;
    width: 80%;
    margin: auto;
}

.inegrated-section .wf-integrations-tools_container {
    border: 1px solid #dbe4ed;
    background-color: #fff;
    border-radius: 8px;
    color: var(--black);
    position: relative;
    justify-content: flex-end;
    padding: 40px 24px;
    /* text-align: center; */
    display: flex;
    align-items: center;
    gap: 4rem;
}

.inegrated-section .wf-integrations-tools_container:only-child .wf-integrations-tools_grid-wrapper {
    width: 100%;
}

.inegrated-section .wf-integrations-tools_container .wf-integrations-tools_grid-wrapper,
.inegrated-section .wf-integrations-tools_container:only-child .wf-integrations-tools_grid-wrapper {
    column-gap: 48px;
    display: flex;
    flex-wrap: wrap;
}

.inegrated-section .wf-integrations-tools_grid-wrapper {
    flex-grow: 1;
    gap: 32px;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.inegrated-section .wf-integrations-tools_grid-item-wrapper {
    min-width: 70px;
}

.inegrated-section .wf-integrations-tools_grid-item-img {
    display: block;
    height: 100%;
    object-fit: contain;
}

.inegrated-section .wf-integrations-tools_container:only-child .wf-integrations-tools_title-link-wrapper {
    flex-basis: 480px;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: left;
    text-align: left;
    align-items: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inegrated-section .wf-integrations-tools_title {
    color: inherit;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.41666667;
    width: 100%;
}

.inegrated-section .cl-textLink {
    align-items: center;
    background: none;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    gap: .5rem;
    padding: 0;
    color: var(--primary);
    text-decoration: underline;
}

.scrollspy-example .portfolio-image-section {
    padding: 80px 0;
}

.key-results-card {
    align-items: center;
    background: hsl(0deg 0% 100% / 20%);
    border: .125rem solid hsl(0deg 0% 100% / 51%);
    border-radius: .625rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 1.2rem;
    position: relative;
    text-align: center;
}

.key-results-card-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: normal;
}

.key-results-card-info {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    opacity: .8;
}

.offer-section.section.people-love-section .aos-animate.bg-light {
    box-shadow: unset;
}

/****************************************
==========INEGRATED SECTION END==========
****************************************/

/***********************************************
==========CONNECT SLIDER SECTION START==========
***********************************************/

.connect-section .carousel .nav {
    margin-bottom: 50px;
    cursor: pointer;
}

.connect-section {
    background-color: #1e1e1e !important;
}

.connect-section .carousel .nav div h2 {
    position: inherit;
    /* padding: 0; */
    text-align: left;
    color: gray;
    border: 0 none;
    font-size: 5rem;
    font-weight: 600;
    line-height: 80px;
    margin: 0;
    padding: 0 0 40px !important;
    white-space: nowrap;
    text-decoration: none;
}

/* .connect-section .carousel .nav div.active {
    color: grey;
    border-bottom: 4px solid grey;
} */

.connect-section .carousel .nav div h2 {
    margin-bottom: 0;
}

.connect-section .carousel .nav div.active h2 {
    color: #fff;
}

.connect-section .owl-carousel .item img {
    width: 350px;
    height: 100%;
    border-radius: 300px;
}

.connect-section .owl-carousel .item {
    width: 100%;
    height: 100%;
    display: flex;
    color: var(--white);
    align-items: center;
    gap: 80px;
    width: 830.305px;
}

.connect-section .carousel.desktop.carplay-desktop {
    display: flex;
    gap: 80px;
    overflow: hidden;
}

.connect-section .owl-carousel .owl-item {
    overflow: hidden;
}

.connect-section .owl-nav {
    position: absolute;
    top: 0px;
    z-index: 1;
    left: 427px;
}

.connect-section .carplay-desktop .owl-nav button {
    left: auto;
    /* display: block !important; */
    min-width: 60px;
    height: 60px;
    transition: all .5s ease;
    opacity: 1;
    border: 0 none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 60px;
    color: var(--white);
    margin-right: 20px;
    background-color: unset;
    border: 1px solid var(--white);
}

.connect-section .carplay-desktop .owl-nav button {
    left: auto;
    /* display: block !important; */
    min-width: 60px;
    height: 60px;
    transition: all .5s ease;
    color: var(--white);
    opacity: 1;
    border: 0 none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 60px;
    margin-right: 20px;
    background-color: unset;
    border: 1px solid var(--white);
}

/*********************************************
==========CONNECT SLIDER SECTION END==========
*********************************************/

/***********************************************
==========SMALL BUSINESS DETAILS START==========
***********************************************/

.smallBusi-banner-section.section {
    background: rgb(9, 9, 121);
    background: linear-gradient(329deg, #d8e6f8 35%, #fdfdfe 80%);
}

.smallBusi-banner-section.section #my-video,
.smallBusi-banner-section.section #video-poster {
    height: 420px;
    margin-top: 90px;
}


.smallBusi-banner-item {
    margin-top: 100px;
}

.smallsahns {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: ease-in-out .4s;
}

.wp-block-landingi-ornament.b-ornament {
    position: absolute;
    top: -148px;
    left: -130px;
    animation: horizontal-shaking 6s infinite;
}

@keyframes horizontal-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateX(30px) }
    50% { transform: translateX(-30px) }
    75% { transform: translateX(30px) }
    100% { transform: translateX(0) }
  }

.wp-block-landingi-ornament.a-ornament {
    position: absolute;
    bottom: -78px;
    right: -150px;
    animation: horizontal-shaking2 9s infinite;
}

@keyframes horizontal-shaking2 {
    0% { transform: translateY(0) }
    25% { transform: translateY(30px) }
    50% { transform: translateY(-30px) }
    75% { transform: translateY(30px) }
    100% { transform: translateY(0) }
  }
.smallBusi-banner-section.section {
    background: rgb(9, 9, 121);
    background: linear-gradient(329deg, #d8e6f8 35%, #fdfdfe 80%);
}

.smallBusi-banner-section.section #video-poster {
    height: 100%;
    margin-top: 90px;
}

.smallBusi-banner-item {
    margin-top: 100px;
}

.smallsahns {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.wp-block-landingi-ornament.b-ornament {
    position: absolute;
    top: -148px;
    left: -130px;
}

.wp-block-landingi-ornament.a-ornament {
    position: absolute;
    bottom: -78px;
    right: -150px;
}

.smallBusi-banner-item h1 {
    line-height: 0.85;
    font-size: 7vw;
    font-weight: 400;
    margin-bottom: 20px;
}

.smallBusi-banner-item p {
    margin: 0;
    font-size: 14px;
    color: #847e7e;
}

.smallBusi-banner-item h5 {
    font-size: 1.4rem;
    font-weight: 300;
    width: 47%;
}

.smallBusi-detail-section .threshold {
    position: sticky;
    width: 100%;
    height: 1px;
    background-color: red;
    z-index: 9999999999;
}

.smallBusi-detail-section .threshold--top {
    top: 50%;
}

.smallBusi-detail-section .text {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.smallBusi-detail-section .text p {
    width: 40%;
}

.smallBusi-detail-section .locker {
    outline-offset: -1px;
    position: relative;
    display: grid;
    grid-template-columns: [full-start] minmax(4.2rem, 1fr) [center-start] repeat(12, [col-start] minmax(min-content, 8rem) [col-end]) [center-end] minmax(4.2rem, 1fr) [full-end];
    min-height: 200vh;
    /* Ensures enough space for sticky to work */
}

.smallBusi-detail-section .locker__image {
    position: relative;
    grid-column: col-start 2 / col-end 6;
    background-color: var(--bg);
}

.smallBusi-detail-section .locker__image:before {
    content: '';
    position: absolute;
    background-color: var(--bg);
    width: 100%;
    height: 100%;
    left: -370px;
}

.smallBusi-detail-section .locker__image img {
    width: auto;
    height: 40vh;
    position: absolute;
    transition: all 1s ease;
}

.smallBusi-detail-section .locker__container {
    position: sticky;
    position: -webkit-sticky;
    top: 10vh;
    /* Adjusted to avoid cutting off */
    height: 80vh;
    /* Ensuring proper space */
    display: flex;
    align-items: center;
    justify-content: center;
}


.smallBusi-detail-section .image {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    /* To keep them stacked */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.smallBusi-detail-section .image.active {
    opacity: 1;
}

.smallBusi-detail-section .locker__content {
    grid-column: col-start 8/center-end;
}

.smallBusi-detail-section .locker__section {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* border-top: 1px solid #cdcdcd; */
}

.smallBusi-detail-section .locker__section {
    max-width: 489px;
    min-height: 1000px;
    min-width: 489px;
}

.smallBusi-detail-section .locker__section .section-title {
    font-size: 44px;
    line-height: 56px;
    margin-bottom: 32px;
    font-weight: 700;
    margin-top: 0;
    -webkit-font-smoothing: antialiased;
}

.smallBusi-detail-section .locker__section:first-child {
    border: none;
}

.smallBusi-detail-section .locker__section p {
    width: 100%;
}

.smallBusi-detail-section #message {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: white;
    height: auto;
    padding: 10px 20px;
    z-index: 900;
}

.smallBusi-detail-section {
    overflow: visible;
}

/*********************************************
==========SMALL BUSINESS DETAILS END==========
*********************************************/


.cta-trial-section .zcontainer {
    display: flex;
    /* justify-content: space-between; */
    align-items: end;
}

.cta-trial-section:after {
    content: '';
}

.cta-trial-section .h-content h2 {
    max-width: 782px;
    margin-bottom: 48px;
    font-size: 56px;
    letter-spacing: -1.5px;
    font-weight: 600;
}

.cta-trial-section .h-content ul {
    font-size: 14px;
    color: #858484;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    width: 100%;
    max-width: 580px;
}

.cta-trial-section .h-content ul li {
    position: relative;
    font-size: 16px;
}

.cta-trial-section ul li::before {
    filter: brightness(0);
}

.cta-trial-section .h-content ul li::before {
    content: '';
    position: relative;
    top: 4px;
    left: 0;
    display: inline-block;
    height: 16px;
    width: 16px;
    background: url(//www.zohowebstatic.com/sites/zweb/images/one/india/home-sprite.svg) no-repeat -99px -67px;
    background-size: 990px;
    margin-right: 4px;
}

.cta-trial-section a.a-btn {
    margin-bottom: 30px;
}

.cta-trial-section {
    padding: 130px 0;
}

.cta-trial-section::before {
    content: '';
    position: absolute;
    background-image: url(../images/cta.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 1rem;
    width: 600px;
    height: 580px;
    right: 0;
    top: 0;
}

.cta-trial-section .zcontainer .h-creative:last-child {
    width: 330px;
    z-index: 1;
    margin-left: 80px;
    position: relative;
}

.cta-trial-section .zcontainer .h-creative:last-child::before {
    position: absolute;
    content: '';
    background: url(../images/wadprog.png) no-repeat scroll 0px center / contain;
    width: 190%;
    height: 170%;
    z-index: 0;
    opacity: .04;
    left: -160px;
    top: 9px;
}

.cta-trial-section .zcontainer .h-creative img {
    width: 100%;
    height: 100%;
}

.cta-trial-section {
    background: url(../images/map-bg.png) no-repeat scroll 0px center / contain;
    background-blend-mode: multiply;
}

/*********************************************
==========request-quote-banner start==========
*********************************************/

.request-quote-banner {
    padding-bottom: 2.35rem;
}

.request-quote-banner .banner-inner {
    position: relative;
}
.request-quote-banner .banner-background {
    border-radius: 0;
    height: calc(100% - 320px);
    left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1394px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}   
.request-quote-banner .banner-background {
    border-bottom-left-radius: 3.125rem;
    border-bottom-right-radius: 3.125rem;
    bottom: 0;
    height: 100%;
}

.request-quote-banner .banner-background {
    border-radius: 3.125rem;
}

.request-quote-banner .banner-background .banner-background-desktop, .request-quote-banner .banner-background .banner-background-mobile {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.request-quote-banner .banner-background .banner-background-desktop {
    display: block;
}


.request-quote-banner .request-quote-main {
    -moz-column-gap: 2.25rem;
    column-gap: 2.25rem;
    display: grid
;
    grid-template-columns: repeat(1, minmax(1.875rem, 100%));
    row-gap: 3.438rem;
}
.request-quote-banner .request-quote-main {
    -moz-column-gap: 2.25rem;
    column-gap: 2.25rem;
    display: grid
;
    grid-template-columns: repeat(2, minmax(1.875rem, calc(50% - 1.125rem)));
    row-gap: 2.25rem;
}
.request-quote-banner .request-quote-main .request-quote-leftbar {
    align-items: center;
    display: flex
;
    padding: 2rem 0;
}

.request-quote-banner .request-quote-main .request-quote-leftbar {
    color: #fff;
    padding: 3.375rem 0 0;
    width: 100%;
}
.request-quote-banner .request-quote-main .request-quote-content h1 {
    font-size: 1.625rem;
    line-height: 2.5rem;
    margin-bottom: 1.06rem;
}
.request-quote-banner .request-quote-main .request-quote-content h1 {
    font-size: 2.625rem;
    line-height: 3.875rem;
}
.request-quote-banner .request-quote-main .request-quote-content h1>span {
    font-weight: 400;
}
.request-quote-banner .request-quote-main .request-quote-content h1 {
    font-size: 2.625rem;
    line-height: 3.875rem;
}
.request-quote-banner .request-quote-main .request-quote-content>p {
    line-height: 1.375rem;
    margin-bottom: 2.25rem;
    padding-right: 13%;
}
.request-quote-banner .request-quote-main .request-quote-images {
    align-items: center;
    display: none;
    margin-bottom: 0;
    padding-top: 3.625rem;
}
.request-quote-banner .request-quote-main .request-quote-images {
    display: flex
;
}
.request-quote-banner .request-quote-main .request-quote-images li {
    margin-right: 2.25rem;
}
.request-quote-banner .request-quote-main .request-quote-images li {
    margin: 0 2.25rem 0 0;
    padding: 0;
}
.request-quote-banner .request-quote-main .request-quote-images li>div {
    height: 5.5rem;
    max-width: 6.25rem;
    vertical-align: middle;
    width: 100%;
}
.request-quote-banner .request-quote-main .request-quote-rightbar {
    padding: 0;
    width: 100%;
}
.request-quote-banner .request-quote-main .request-quote-rightbar {
    padding: 5.625rem 0 2.188rem;
}

.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form {
    margin-bottom: -12.875rem;
    max-width: 36.375rem;
    ackground-color: #fff;
    border-radius: .625rem;
    -ms-box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    position: relative;
    width: 100%;
    z-index: 1;
}

.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .h5 {
    align-items: center;
    background-color: rgba(3, 167, 248, .1);
    color: #002073;
    display: flex
;
    font-weight: 700;
    justify-content: center;
    min-height: 4rem;
    padding: 1rem;
    text-align: center;
    text-transform: none;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .h5>span {
    display: inline-block;
    font-weight: 400;
    margin-right: .25rem;
}

.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section {
    padding: 1.625rem 1.875rem 2.5rem;
}

.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .h5 {
    align-items: center;
    background-color: rgba(3, 167, 248, .1);
    color: #002073;
    display: flex
;
    font-weight: 700;
    justify-content: center;
    min-height: 4rem;
    padding: 1rem;
    text-align: center;
    text-transform: none;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form {
    background-color: #fff;
    border-radius: .625rem;
    -ms-box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    position: relative;
    width: 100%;
    z-index: 1;
}

.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset {
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    display: grid
;
    grid-template-columns: repeat(2, minmax(1.875rem, calc(50% - .625rem)));
    row-gap: .65rem;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset>div:first-child, .request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset>div:nth-child(2) {
    grid-column: span 1;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset>div>label {
    background: #fff;
    color: #000;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: .925rem;
    transition: all .1s ease;
    z-index: 1;
}
.required:after {
    color: red;
    content: "*";
    display: inline-block;
    vertical-align: middle;
}
.request-quote-rightbar .form-select,
.request-quote-rightbar .form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: .063rem solid #ebebeb;
    border-radius: .313rem;
    color: #4e5158;
    font-family: Poppins, Verdana, Geneva, "sans-serif";
    font-size: .875rem;
    font-weight: 400;
    height: auto;
    line-height: 1.125rem;
    outline: none;
    padding: .75rem;
    transition: all .1s ease;
    vertical-align: middle;
    width: 100%;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset>div {
    grid-column: 1 / -1;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset>div .input-col.custom-select-dropdown>div div[class$=-control] {
    font-size: .875rem;
    font-weight: 400;
    min-height: 2.875rem;
    padding: .563rem 3.125rem .563rem .75rem;
    position: relative;
}

.css-13cymwt-control {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    min-height: 38px;
    outline: 0 !important;
    position: relative;
    -webkit-transition: all 100ms;
    transition: all 100ms;
    background-color: hsl(0, 0%, 100%);
    border-color: hsl(0, 0%, 80%);
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset>div .input-col.custom-select-dropdown>div div[class$=-control] {
    font-size: .875rem;
    font-weight: 400;
    min-height: 2.875rem;
    padding: .563rem 3.125rem .563rem .75rem;
    position: relative;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset>div .input-col textarea {
    height: 6rem;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-uploder {
    align-items: center;
    background-color: rgba(3, 167, 248, .075);
    border: .125rem dashed rgba(3, 167, 248, .075);
    border-radius: .313rem;
    display: flex
;
    justify-content: space-between;
    margin: 1.25rem auto 0 0;
    min-height: 3.125rem;
    padding: .25rem .938rem;
    position: relative;
    text-align: left;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-uploder {
    padding: .5rem .875rem;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .request-btn-row {
    padding-top: 1.875rem;
    text-align: center;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .request-btn-row {
    padding-top: 2.313rem;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-uploder label {
    align-items: center;
    color: #0087c9;
    cursor: pointer;
    display: flex
;
    font-size: .813rem;
    font-weight: 400;
    justify-content: space-between;
    line-height: 1.125rem;
    width: 100%;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-uploder label>span:first-child {
    display: inline-block;
    font-size: .813rem;
    line-height: 1.125rem;
    padding-right: .75rem;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-uploder label {
    align-items: center;
    color: #0087c9;
    cursor: pointer;
    display: flex
;
    font-size: .813rem;
    font-weight: 400;
    justify-content: space-between;
    line-height: 1.125rem;
    width: 100%;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-uploder label .file-upload-icon svg {
    height: 1.875rem;
    vertical-align: middle;
    width: 1.125rem;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-uploder input {
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 0;
}
.request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-upload-error, .request-quote-banner .request-quote-main .request-quote-rightbar .reuest-quote-form .form-section .form-filedset .file-upload-invalid {
    display: block;
    font-size: .875rem;
    margin-top: .313rem;
    text-align: left;
}
.reuest-quote-form .a-btn.waysa:hover:before {
    min-width: 167px;
}
.request-quote-banner .secure-section .secure-content p {
    margin-bottom: .35rem;
}
.request-quote-banner .secure-section .secure-content p:last-child {
    margin-bottom: 0;
}

.request-quote-banner .secure-section .secure-content .h5 {
    font-weight: 700;
}
.request-quote-banner .secure-section {
    border-bottom: 0;
    flex-direction: row;
    max-width: 50%;
    padding: 3.175rem 0;
    text-align: left;
}
.request-quote-banner .secure-section {
    align-items: center;
    border-bottom: .125rem solid hsla(0, 0%, 85%, .5);
    display: flex
;
    flex-direction: column;
    padding: 3.175rem 0 2.5rem;
    position: relative;
    text-align: center;
}
    .request-quote-banner .secure-section {
        border-bottom: 0;
        flex-direction: row;
        max-width: 50%;
        padding: 3.175rem 0;
        text-align: left;
    }
    .request-quote-banner .secure-section .secure-img {
        margin-bottom: 0;
        margin-right: 1.875rem;
    }
  .form-filedset .file-uploder label {
        align-items: center;
        color: #0087c9;
        cursor: pointer;
        display: flex
    ;
        font-size: .813rem;
        font-weight: 400;
        justify-content: space-between;
        line-height: 1.125rem;
        width: 100%;
    }
    /****************************************
==========SPONSOR SECTION START==========
****************************************/
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .slider.slide-2 .slide-track {
    animation: scroll-reverse 40s linear infinite;
  }
  
  @keyframes scroll-reverse {
      0% {
        transform: translateX(calc(-250px * 7));
      }
      100% {
        transform: translateX(0);
      }
  }
  .slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
  }
  .slider .slide {
    height: 100px;
    width: 250px;
  }

/**************************************
==========SPONSOR SECTION END==========
**************************************/