/*-- Como-Regular --*/
@font-face {
    font-family: 'Como-Regular';
    src: url('../fonts/Como-Regular.eot');
    src: url('../fonts/Como-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-Regular.woff2') format('woff2'),
         url('../fonts/Como-Regular.woff') format('woff'),
         url('../fonts/Como-Regular.otf') format('opentype')
         url('../fonts/Como-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*-- Como-Bold --*/
@font-face {
    font-family: 'Como-Bold';
    src: url('../fonts/Como-Bold.eot');
    src: url('../fonts/Como-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-Bold.woff2') format('woff2'),
         url('../fonts/Como-Bold.woff') format('woff'),
         url('../fonts/Como-Bold.otf') format('opentype')
         url('../fonts/Como-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*-- Como-ExtraBold --*/
@font-face {
    font-family: 'Como-ExtraBold';
    src: url('../fonts/Como-ExtraBold.eot');
    src: url('../fonts/Como-ExtraBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-ExtraBold.woff2') format('woff2'),
         url('../fonts/Como-ExtraBold.woff') format('woff'),
         url('../fonts/Como-ExtraBold.otf') format('opentype')
         url('../fonts/Como-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*-- Como-ExtraLight --*/
@font-face {
    font-family: 'Como-ExtraLight';
    src: url('../fonts/Como-ExtraLight.eot');
    src: url('../fonts/Como-ExtraLight.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-ExtraLight.woff2') format('woff2'),
         url('../fonts/Como-ExtraLight.woff') format('woff'),
         url('../fonts/Como-ExtraLight.otf') format('opentype')
         url('../fonts/Como-ExtraLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*-- Como-Heavy --*/
@font-face {
    font-family: 'Como-Heavy';
    src: url('../fonts/Como-Heavy.eot');
    src: url('../fonts/Como-Heavy.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-Heavy.woff2') format('woff2'),
         url('../fonts/Como-Heavy.woff') format('woff'),
         url('../fonts/Como-Heavy.otf') format('opentype')
         url('../fonts/Como-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*-- Como-Light --*/
@font-face {
    font-family: 'Como-Light';
    src: url('../fonts/Como-Light.eot');
    src: url('../fonts/Como-Light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-Light.woff2') format('woff2'),
         url('../fonts/Como-Light.woff') format('woff'),
         url('../fonts/Como-Light.otf') format('opentype')
         url('../fonts/Como-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*-- Como-Medium --*/
@font-face {
    font-family: 'Como-Medium';
    src: url('../fonts/Como-Medium.eot');
    src: url('../fonts/Como-Medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-Medium.woff2') format('woff2'),
         url('../fonts/Como-Medium.woff') format('woff'),
         url('../fonts/Como-Medium.otf') format('opentype')
         url('../fonts/Como-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*-- Como-SemiBold --*/
@font-face {
    font-family: 'Como-SemiBold';
    src: url('../fonts/Como-SemiBold.eot');
    src: url('../fonts/Como-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Como-SemiBold.woff2') format('woff2'),
         url('../fonts/Como-SemiBold.woff') format('woff'),
         url('../fonts/Como-SemiBold.otf') format('opentype')
         url('../fonts/Como-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/*----- Color :roots --------*/

:root {
    --dark-blue:#0d1333;
    --sky-blue:#798fc8;
    --yellow:#efc12f;
    --orange:#f38620;
    --black:black;
    --white:white;
    --transparent:transparent;
    --gray:gray;
    --lightgray:lightgray;
}


/*-------- Defult css ------------*/

body {
    margin: 0px;
    padding: 0px;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0px;
}
h1{
    font-size: 46px;
}
h2{
    font-size: 40px;
}
section {
    width: 100%;
    float: left;
    padding: 100px 0px;
}
p {
    font-size:20px;
    margin: 0;
}

a:hover, a:focus, a {
    text-decoration: none;
}

hr {
    opacity: 1;
} 
.cursor-dot {
    width: 15px;
    height: 15px;
    background-color: var(--orange);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    position: fixed;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--orange);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    position: fixed;
}
.cursor-visible {
    opacity: 1;
}
.cursor-dot, .cursor-outline {
    mix-blend-mode: difference; 
}
.cursor-grow {
    transform: translate(-50%, -50%) scale(7);
    background-color: var(--dark-blue)!important;
}
.vyril-logo-carousel, 
.testimonial-slider, 
.horizontal-content {
    touch-action: pan-y; 
}


/*----------------------------------------------------------------------------------------------------- Index.html css ------------------------*/

/*-----------------------------------header css ----------*/

.header_wrapper {
    transition: all 0.4s ease-in-out;
    background-color:var(--transparent);
}
.header_wrapper.header-scrolled {
    background-color:var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.header_wrapper .navbar .navbar-brand {
    max-width: 200px;
}
.header_wrapper .navbar .navbar-brand img {
    width: 100%;
}
.header_wrapper .navbar-nav .nav-item {
    padding: 10px 13px;
}
.header_wrapper .navbar-nav .nav-item .nav-link {
    padding: 0;
    color: var(--black);
    font-size: 18px;
    position: relative;
    font-family: Como-Bold;
}
.header_wrapper .navbar-nav .nav-item .nav-link::before {
    content: "";
    background-color: var(--dark-blue);
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: scale(0);
    transition: transform 0.4s;
    width: calc(100%);
    height: 2px;
    right: 0;
    margin: 0 auto;
}
.header_wrapper .navbar-nav .nav-item .nav-link:hover {
    color: var(--dark-blue);
}
.header_wrapper .navbar-nav .nav-item .nav-link:hover::before {
    transform: scale(1);
}
.header_wrapper .navbar-nav .nav-item .nav-link.active {
    border-bottom: 2px solid var(--dark-blue);
    font-weight: bold;
    color: var(--dark-blue);
}
.custom-dropdown {
    position: relative;
}
.custom-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 10px; 
    padding: 0px;
}
.dropdown-arrow {
    transition: transform 0.3s ease;
    width: 12px;
    margin-left: 5px;
    filter: brightness(0);
}
.custom-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(9%) sepia(23%) saturate(2230%) hue-rotate(225deg) brightness(86%) contrast(96%); 
}
.header_wrapper .header-right a:first-child {
    font-family: Como-Bold;
    color: var(--black);
    font-size: 18px;
}
.header_wrapper .header-right a:first-child img {
    width: 18px;
}
.header_wrapper .header-right a:first-child:hover {
    color: var(--dark-blue);
}
.header_wrapper .header-right a:first-child:hover img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(23%) saturate(2230%) hue-rotate(225deg) brightness(86%) contrast(96%);
}
.header_wrapper .header-right a:last-child {
    background-color: var(--white);
    color: var(--dark-blue);
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 29px;
    font-family: 'Como-Bold';
    transition: all 0.5s;
}
.header_wrapper .header-right a:last-child:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}
.header_wrapper.header-scrolled .header-right a:last-child {
    background-color: var(--orange);
    color: var(--white);
    transition: all 0.5s;
}
.header_wrapper.header-scrolled .header-right a:last-child:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}
.header_wrapper .navbar-toggler{
    border: 1px solid var(--dark-blue);
    box-shadow: none !important;
    padding: 18px 10px;
    background: var(--transparent);
}
.header_wrapper .navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-blue);
    position: relative;
    transition: all 0.3s ease-in-out;
    background-image: none !important;
}
.header_wrapper .navbar-toggler-icon::before,
.header_wrapper .navbar-toggler-icon::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: var(--dark-blue);
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.header_wrapper .navbar-toggler-icon::before {
    top: -8px; 
}
.header_wrapper .navbar-toggler-icon::after {
    bottom: -8px;
}
.header_wrapper .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent !important;
}
.header_wrapper .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.header_wrapper .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}
.header_wrapper .navbar-expand-lg .navbar-nav .dropdown-menu li a:hover{
    background-color: var(--orange);
}
@media (max-width: 991px) {
    .header_wrapper .custom-dropdown .dropdown-menu {
        display: none !important; 
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .header_wrapper .custom-dropdown.active .dropdown-menu {
        display: block !important;
        visibility: visible;
        opacity: 1;
        position: static;
        width: 100%;
        margin-top: 5px;
    }
    .custom-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    .header_wrapper .navbar-collapse {
        background-color: var(--white);
    }
    .header_wrapper .header-right a:first-child {
        margin-left: 15px;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 991px) {
    .header_wrapper .header-right {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .header_wrapper .header-right a:last-child {
        margin-bottom: 10px;
        background-color: var(--orange);
        color: var(--white);
    }
}

/*--------------------------------------------------------------banner css --------*/

.banner_wrapper {
    height:100vh;
    max-height: 950px;
    width: 100%;
    background: linear-gradient(300deg, #ffffff, #ffcc00, #ff8800, #ffcc00, #ff5500);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
    position: relative;
    display: grid;
    align-items: end;
    justify-content: center;
    padding: 100px 0 0 0 ;
    flex-wrap: wrap;
}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.social-sidebar {
    display: inline-flex;
    gap: 10px;
    transform: rotate(270deg);
    left: -50px;
    position: absolute;
    top: 45%;
}
.social-sidebar img {
    filter: invert(1);
    width: 30px;
}
.social-sidebar img:hover {
    filter: brightness(0) saturate(100%) invert(9%) sepia(23%) saturate(2230%) hue-rotate(225deg) brightness(86%) contrast(96%);
}
.scrool-down {
    position: absolute;
    transform: rotate(270deg);
    display: inline-block;
    bottom: 75px;
    left: -5px;
}
.scrool-down:before {
    content: '';
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 100%;
    height: 1px;
    width: 30px;
    background:var(--white);
    margin-right: 10px;
}
.scrool-down a {
    font-family: Como-Bold;
    font-size: 18px;
    color: var(--white);
    animation: vertical-move .5s infinite alternate;
    display: block;
}
@keyframes vertical-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(10px);
    }
}
.scrool-down a:hover {
    color: var(--dark-blue);
}
.banner_wrapper h1 {
    font-family: Como-Medium;
    font-size: 33px;
    color: var(--black);
    margin-bottom: 10px;
}
.banner_wrapper h2 {
    font-family: Como-Bold;
    font-size: 55px;
    color: var(--white);
    margin-bottom: 50px;
}
.banner-links a {
    color: var(--dark-blue);
    font-size: 18px;
    font-family: 'Como-Bold';
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 25px;
    margin: 0 15px;
    transition: all 0.5s;
}
.banner-links a:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}
.custom-border-top {
    border-top: 2px solid var(--white); 
}
.trusted-text {
    font-family: 'Como-Bold';
    font-size: 20px;
    color:var(--white);
}
.vyril-logo-carousel .slide-item {
    outline: none;
    padding: 0 15px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.vyril-logo-carousel .slide-item img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}
.vyril-logo-carousel .slick-track {
    display: flex;
    align-items: center;
}
.about_wrapper {
    background-color: var(--white);
    padding-top: 150px;
}
.about_wrapper_content h2 {
    color: var(--dark-blue);
    font-family: Como-Bold;
    font-size: 33px;
    position: relative;
    margin-bottom: 10px;
}
.about_wrapper_content h2::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.about_wrapper_content h3 {
    font-size: 50px;
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    line-height: 1.3;
    margin-bottom: 25px;
}
.typed-box {
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 4px 12px;
    display: inline; 
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    white-space: normal;
    word-wrap: break-word;
}
.about_wrapper_content p {
    font-size: 20px;
    line-height: 1.5;
    font-family: Como-Medium;
    color:var(--black);
}
#typedd {
    background-color:var(--yellow);
    padding: 2px 0px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: all 0.1s ease; 
}
.about_wrapper_content .styled-button {
    justify-content: left;
}
.styled-button {
    display: flex;
    font-family: Como-Bold;
    justify-content: center;
    margin-top: 60px;
}
.styled-button a {
    background-color:var(--yellow);
    padding: 15px 25px;
    color:var(--dark-blue);
    border-radius: 50px;
    font-size: 18px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.styled-button a span:nth-of-type(1){
    z-index: 1;
    transition: color 1s;
}
.styled-button a span:nth-of-type(2){
    width: 30px;
    height: 30px;
    background-color:var(--dark-blue);
    border-radius: 50%;
    color:var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    transition: scale 1s;
}
.styled-button a span:nth-of-type(3){
    position: absolute;
    right: 32px;
    color:var(--white);
}
.styled-button a:hover span:nth-of-type(1){
    color:var(--white);
}
.styled-button a:hover span:nth-of-type(2){
    scale: 25;
}
.why-vyril {
    background-color: var(--white);
    padding: 0px 0px 50px 0px;
}
.main-titel div:first-child h2 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    position: relative;
    font-size: 40px;
    margin-bottom: 20px;
}
.main-titel div:first-child h2::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.main-titel div:nth-child(2) p {
    font-size: 20px;
    line-height: 1.5;
    font-family: Como-Medium;
    color:var(--black);
}
.main-titel div:nth-child(3) h3 {
    color: var(--dark-blue);
    font-family: Como-Bold;
    font-size: 33px;
    margin-bottom: 10px;
}
.main-titel div:nth-child(3) span {
    width: auto;
    display: inline-flex;
    padding: 0px 0px 0px 15px;
    height: 50px;
    align-items: center;
}
.main-titel div:nth-child(3) span img {
    border: 2px solid var(--orange);
    border-radius: 50%;
    object-fit: cover;
    margin-left: -10px;
    height: 50px;
}
.main-titel div:nth-child(3) span b {
    font-size: 22px;
    font-family: Como-Bold;
    color:var(--dark-blue);
    margin-left: 20px;
}
.stack-card {
    position: sticky;
    top: 130px;
    height: 520px;
    display: flex;
    background: var(--dark-blue);
    border-radius: 45px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
}
.card-img-side {
    width: 42%;
    position: relative;
    padding: 30px 0 30px 30px;
}
.card-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.card-img-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: var(--yellow);
    border-bottom-right-radius: 35px;
    z-index: -1;
}
.card-text-side {
    width: 58%;
    padding: 60px 80px 60px 50px;
    color:var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-text-side h2 {
    color: var(--yellow);
    font-size: 40px;
    font-family: Como-Bold;
    line-height: 1.1;
    margin-bottom: 30px;
}
.card-text-side p {
    font-size: 18px;
    line-height: 1.5;
    color:var(--white);
    font-family: Como-Medium;
    margin-bottom: 25px;
}
.dots-decoration {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    gap: 10px;
}
.dot { 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    transition: background-color 0.8s ease;
}
.dot-1.active-color { 
    background: var(--yellow); 
} 
.dot-1.inactive-color { 
    background: var(--white); 
}   
.dot-2.active-color { 
    background: var(--white); 
} 
.dot-2.inactive-color { 
    background:var(--yellow); 
}
.is-stacked {
    filter: blur(8px);
    transform: scale(0.92);
    opacity: 0.5;
}
.about_wrapper_mockup {
    position: relative;
}
.about_wrapper_mockup img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 630px;
    object-fit: contain;
}
.about_wrapper_mockup span:nth-child(2) {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 10px;
    left: 155px;
    background-color: var(--dark-blue);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    animation: moveShape 6s ease-in-out infinite alternate;
}
.about_wrapper_mockup span:nth-child(3) {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 70px;
    left: 50px;
    background-color: var(--yellow);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    animation: moveShape 3s ease-in-out infinite alternate;
}
@keyframes moveShape {
    0% { 
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; 
        transform: rotate(0deg); 
    }
    100% { 
        border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%; 
        transform: rotate(5deg); 
    }
}
.testimonial-section {
    background-color: var(--dark-blue);
    padding-bottom: 120px;
}
.testimonial-section h2 {
    font-family: Como-ExtraBold;
    color: var(--yellow);
    position: relative;
    font-size: 40px;
    margin-bottom: 20px;
}
.testimonial-section h2::after {
    content: " ";
    position: absolute;
    bottom: -5px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--white);
}
.testimonial-section .slider-item {
    padding: 40px 20px;
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.9);
}
.slick-center.slider-item {
    opacity: 1;
    transform: scale(1) translateY(-20px); 
}
.card-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    margin-top: 80px;
}
.yellow-bg-shape {
    position: absolute;
    top: 10px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: var(--yellow);
    border-radius: 25px;
    transform: rotate(-6deg);
    z-index: 1;
}
.main-card {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    z-index: 2;
}
.profile-box {
    position: absolute;
    top: -55px;
    right: 40px;
}
.profile-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.content h3 { 
    font-family: Como-Bold;
    font-size: 33px;
    color: var(--dark-blue);
}
.content small { 
    color:var(--black); 
    font-size: 22px;
    font-family: Como-SemiBold; 
}
.content p { 
    line-height: 1.5;
    margin-top: 20px;
    font-family: Como-Medium; 
    color: var(--black);
    font-size:20px; 
}
.rating-stars { 
    text-align: right; 
    margin-top: 10px; 
}
.rating-stars img { 
    width: 140px; 
    display: inline-block; 
}
.quote-img {
    position: absolute;
    width: 60px;
    z-index: 3;
    filter: invert(61%) sepia(86%) saturate(393%) hue-rotate(6deg) brightness(110%) contrast(87%);
}
.top-left { 
    top: -60px; 
    left: -50px;
    transform: rotateY(170deg); 
}
.bottom-right { 
    bottom: -60px; 
    right: -20px; 
}
.testimonial-slider .slick-dots { 
    bottom: -60px; 
}
.testimonial-slider .slick-dots li button::before { 
    color:var(--white); 
    opacity: 1;
    font-size: 20px; 
}
.testimonial-slider .slick-dots li.slick-active button::before { 
    color:var(--yellow); 
}
.contact_wrapper {
    background-color: var(--white);
    padding-top: 130px;
    position: relative;
}
.contact_wrapper_content {
    padding-right: 45px;
}
.contact_wrapper_content h2 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    position: relative;
    font-size: 40px;
    margin-bottom: 30px;
}
.contact_wrapper_content h2::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.contact_wrapper_content p {
    font-size: 20px;
    line-height: 1.5;
    font-family: Como-Medium;
    color: var(--black);
}
.contact_wrapper_content div {
    width: 100%;
    float: left;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
}
.contact_wrapper_content div img {
    width: 30px;
    margin-right: 15px;
}
.contact_wrapper_content div strong, .contact_wrapper_content div b {
    color: var(--black);
    font-size: 20px;
    font-family: Como-SemiBold;
    line-height: 1.5;
}
.contact_wrapper_content div a:hover b {
    color: var(--orange);
}
.contact_wrapper_content div a:hover img {
    filter: invert(40%) sepia(82%) saturate(2240%) hue-rotate(4deg) brightness(102%) contrast(104%);
}
.contact_wrapper_form {
    display: flex;
    justify-content: center;
}
.contact_wrapper_form form {
    width: 450px;
    margin-top: 20px;
    position: relative;
} 
.contact_wrapper_form form::before {
    position: absolute;
    content: " ";
    height: 480px;
    width: 360px;
    background-color: var(--yellow);
    border-radius: 15px;
    border: 1px solid var(--yellow);
    transform: rotate(170deg);
    margin-top: -50px;
}
.contact_wrapper_form form div {
    width: 80%;
    background: var(--dark-blue);
    padding: 45px 30px;
    position: relative;
    margin: auto;
    height: 100%;
    border-radius: 15px;
}
.contact_wrapper_form form div span {
    width: 100%;
    margin-bottom: 15px;
    display: block;
    font-family: Como-SemiBold;
}
.contact_wrapper_form form div span input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    color: var(--dark-blue);
    border: 2px solid var(--white);
}
.contact_wrapper_form form div span input:hover, .contact_wrapper_form form div span input:focus,
.contact_wrapper_form form div span textarea:hover, .contact_wrapper_form form div span textarea:focus {
    border: 2px solid var(--yellow);
}
.contact_wrapper_form form div span textarea {
    width: 100%;
    height: 120px;
    resize: none;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    color: var(--dark-blue);
    border: 2px solid var(--white);
}
.contact_wrapper_form form div button {
    color: var(--dark-blue);
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    padding: 5px 15px;
    font-family: Como-SemiBold;
    font-size: 20px;
    border-radius: 10px;
    transition: all 0.5s;
}
.contact_wrapper_form form div button:hover {
    background-color: var(--orange);
    color: var(--dark-blue);
    border: 1px solid var(--orange);
}
.contact_wrapper .moon-animtion .astronautimg {
    width: 270px;
    height: 270px;
    position: fixed;
    top: 180px;
    right: -400px;
    opacity: 0;
    z-index: 999;
    transition: right 1s ease-in-out;
}
.contact_wrapper .moon-animtion .astronautimg div:last-child img {
    width: 250px;
    position: absolute;
    top: 36px;
    right: -45px;
}
.contact_wrapper .astronautimg div:first-child img {
    width: 100%;
}
.contact_wrapper .mon-gif {
    width: 270px;
    height: 270px;
    position: absolute;
    top: 180px;
    right: 0px;
    z-index: 999;
}
.contact_wrapper .mon-gif img {
    width: 100%;
    height: 100%;
}
.footer_wrapper {
    background-color: var(--dark-blue);
    padding: 70px 0px 30px 0px;
    width: 100%;
    float: left;
}
.footer_wrapper .row:first-child .col-xl-4:first-child {
    display: flex;
    align-items: center;
} 
.footer_wrapper .row:first-child .col-xl-4:first-child div {
    width: 100%;
    height: 150px;
}
.footer_wrapper .row:first-child .col-xl-4:first-child div img {
    width: 100%;
    filter: brightness(0) invert(1);
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(2), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(2) {
    padding: 0px 15px 0px 80px;
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(2) h2 {
    color: var(--orange);
    font-family: Como-Bold;
    font-size: 25px;
    margin-bottom: 30px;
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(2) span {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(2) a {
    color: var(--white);
    font-size: 20px;
    font-family: Como-Medium;
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(2) a:hover {
    color: var(--orange);
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(3), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(3) {
    padding: 0px 15px 0px 80px;
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul {
    list-style: none;
    padding: 0;
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul li {
    border-bottom: 1.5px solid var(--orange); 
    padding: 10px 0;
    transition: all 0.3s ease;  
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul li:last-child {
    border-bottom: none;
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul li a {
    color:var(--white);
    font-size: 20px;
    font-family: Como-Medium;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-10px); 
    transition: all 0.3s ease;
    filter: invert(40%) sepia(82%) saturate(2240%) hue-rotate(4deg) brightness(102%) contrast(104%);
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul li:hover a {
    color:var(--orange);
}
.footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul li:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.footer_wrapper .row:nth-child(2) {
    margin-top: 50px;
}
.footer_wrapper .row:nth-child(2) .col-xl-4 div {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}
.footer_wrapper .row:nth-child(2) .col-xl-4 div img {
    width: 30px;
    margin-right: 15px;
    filter: invert(1);
}
.footer_wrapper .row:nth-child(2) .col-xl-4 div strong, .footer_wrapper .row:nth-child(2) .col-xl-4 div b {
    color: var(--white);
    font-size: 20px;
    font-family: Como-SemiBold;
    line-height: 1.5;
}
.footer_wrapper .row:nth-child(2) .col-xl-4 div a:hover b {
    color: var(--orange);
}
.footer_wrapper .row:nth-child(2) .col-xl-4 div a:hover img {
    filter: invert(40%) sepia(82%) saturate(2240%) hue-rotate(4deg) brightness(102%) contrast(104%);
}
.footer_wrapper hr {
    height: 2px;
    border: none;
    width: 100%;
    background-color: var(--white);
}
.footer_wrapper .row:last-child {
    margin-top: 40px;
    margin-bottom: 15px;
}
.footer_wrapper .row:last-child .col-xl-6:first-child div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_wrapper .row:last-child .col-xl-6:first-child div img {
    filter: invert(1);
    width: 22px;
}
.footer_wrapper .row:last-child .col-xl-6:first-child div span {
    font-size: 20px;
    font-family: Como-Medium;
    color: var(--white);
}
.footer_wrapper .row:last-child .col-xl-6:last-child div {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: right;
}
.footer_wrapper .row:last-child .col-xl-6:last-child div a {
    color: var(--white);
    font-size: 20px;
    font-family: Como-Medium;
}
.footer_wrapper .row:last-child .col-xl-6:last-child div a:hover {
    color: var(--orange);
}
.footer_wrapper .row:last-child .col-xl-6:last-child div span {
    color: var(--white);
    font-size: 20px;
    font-family: Como-Medium;
}


/*-------------------index.html media query and responsiv ---------------------*/

@media only screen and (max-width: 575px) {
    .banner_wrapper {
        height: auto;
        max-height: unset;
        width: 100%;
        display: block;
        padding: 150px 0px 0px 0px;
    }
    .social-sidebar {
        display: none;
    }
    .scrool-down {
        display: none;
    }
    .trusted-partners-container {
        margin-top: 60px;
    }
    .trusted-text {
        text-align: center;
    }
    .custom-border-top {
        gap: 20px;
    }
    .banner-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .vyril-logo-carousel .slide-item img {
        max-height: 90px;
    }
    .about_wrapper {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .about_wrapper_mockup span:nth-child(2) {
        top: -17px;
        left: 75px;
    } 
    .about_wrapper_mockup span:nth-child(3) {
        top: 45px;
        left: 50px;
    }
    .about_wrapper_mockup img {
        height: auto;
    }
    .about_wrapper .row {
        gap: 30px;
    }
    .about_wrapper_content h2, .main-titel div:first-child h2, .services_wrapper .row:first-child .col-md-6 h2, 
    .process .row:first-child h2, .founder .text h2, .contact_wrapper_content h2, .testimonial-section h2 {
        font-size: 33px;
    }
    .about_wrapper_content h3 {
        font-size: 35px;
    }
    .about_wrapper_content p, .main-titel div:nth-child(2) p, .services_wrapper .row:first-child .col-md-6 p, .contact_wrapper_content p {
        font-size: 18px;
    }
    .main-titel {
        gap: 15px;
    }
    .stack-card {
        position: relative;
        height: auto;
        display: grid;
        border-radius: 33px;
        top: 20px;
    }
    .card-img-side {
        width: 100%;
        padding: 30px 0 30px 30px;
    }
    .card-img-side img {
        padding: 0px;
        margin: -15px -20px 0px -15px;
    }
    .card-img-side::before {
        height: 70%;
    }
    .card-text-side {
        padding: 15px 15px 35px 15px;
        width: 100%;
    }
    .dots-decoration {
        display: none;
    } 
    .card-text-side h2 {
        font-size: 30px;
    }
    .services_wrapper {
        padding: 0px 0px 100px 0px;
    } 
    .process .info  {
        margin-bottom: 15px;
    }
    .info p {
        margin-top: 0;
    }
    .contact_wrapper {
        padding-top: 70px;
    }
    .contact_wrapper_content {
        padding-right: 15px;
    }
    .contact_wrapper .mon-gif{
        display: none;
    }
    .moon-animtion {
        display: none;
    }
    .contact_wrapper .row {
        gap: 45px;
    }
    .contact_wrapper_form form {
        width: 100%;
    }
    .contact_wrapper_form form::before {
        width: 75%;
        transform: rotate(176deg);
        margin-top: -39px;
        margin-left: 19px;
    }
    .quote-img {
        display: none !important;
    }
    .yellow-bg-shape {
        display: none;
    }
    .main-card {
        padding: 50px 20px;
    }
    .content h3 {
        font-size: 30px;
        margin-bottom: 5px;
    }
    .content p {
        font-size: 18px;
    }
    .rating-stars {
        margin-top: 15px;
    }
    .footer_wrapper .row:first-child .col-xl-4:first-child div {
        width: 250px;
        height: auto;
    }
    .footer_wrapper .row:first-child {
        gap:20px;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(2), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(2) {
        padding: 0px 12px 0px 12px;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(3), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(3) {
        padding: 0px 12px 0px 12px;
    }
    .footer_wrapper .row:last-child {
        gap: 15px;
    }
    .footer_wrapper .row:last-child .col-xl-6 {
        display: flex;
        justify-content: center;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(2) {
        margin-top: 30px;
    }
}


@media only screen and (min-width: 576px) and (max-width: 767px) {
    .social-sidebar {
        left: -60px;
    }
    .social-sidebar img {
        width: 22px;
    }
    .scrool-down {
        display: none;
    }
    .trusted-text {
        text-align: center;
    }
    .scrool-down a {
        font-size: 15px;
    }
    .custom-border-top {
        gap: 20px;
    }
    .banner_wrapper {
        max-height: 100%;
        gap: 30px;
        height: auto;
    }
    .about_wrapper {
        padding-top: 110px;
    }
    .about_wrapper .row {
        gap: 30px;
    }
    .main-titel {
        gap: 15px;
    }
    .stack-card {
        position: relative;
        height: auto;
        display: grid;
        border-radius: 33px;
        top: 20px;
    }
    .card-img-side {
        width: 100%;
        padding: 30px 0 30px 30px;
    }
    .card-img-side img {
        padding: 0px;
        margin: -15px -20px 0px -15px;
    }
    .card-img-side::before {
        height: 70%;
    }
    .card-text-side {
        padding: 15px 15px 35px 15px;
        width: 100%;
    }
    .dots-decoration {
        top: -20px;
    }
    .services_wrapper {
        padding: 0px 0px 100px 0px;
    }
    .process {
        padding: 0px 0px 100px 0px;
    }
    .yellow-bg-shape {
        top: 0;
        left: -17px;
    }
    .quote-img {
        width: 50px;
    }
    .top-left {
        left: -40px;
    }
    .contact_wrapper .moon-animtion .astronautimg div:last-child img {
        width: 150px;
        top: 28px;
        right: -40px;
    }
    .contact_wrapper .mon-gif {
        width: 150px;
        height: 150px;
        top: 333px;
    }
    .contact_wrapper .moon-animtion .astronautimg {
        width: 150px;
        height: 150px;
    }
    .contact_wrapper {
        padding-top: 80px;
    }
    .contact_wrapper .row {
        gap: 45px;
    }
    .contact_wrapper_form form {
        width: 100%;
    }
    .contact_wrapper_form form::before {
        width: 75%;
        transform: rotate(176deg);
        margin-top: -39px;
        margin-left: 19px;
    }
    .footer_wrapper .row:first-child .col-xl-4:first-child div {
        width: 250px;
        height: auto;
    }
    .footer_wrapper .row:first-child .col-xl-4:first-child {
        margin-bottom: 30px;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(2), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(2) {
        padding: 0px 15px 0px 15px;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(3), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(3) {
        padding: 0px 15px 0px 15px;
    }
    .footer_wrapper .row:last-child {
        gap: 15px;
    }
    .footer_wrapper .row:last-child .col-xl-6 {
        display: flex;
        justify-content: center;
    }
}
 
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .social-sidebar {
        left: -55px;
    }
    .social-sidebar img {
        width: 22px;
    }
    .scrool-down {
        display: none;
    }
    .about_wrapper {
        padding-top: 110px;
    }
    .about_wrapper_mockup span:nth-child(2) {
        width: 150px;
        height: 150px;
        top: 60px;
        left: 100px;
    }
    .about_wrapper_mockup span:nth-child(3) {
        width: 150px;
        height: 150px;
        top: 130px;
        left: 50px;
    }
    .about_wrapper_content h3 {
        font-size: 35px;
    }
    .main-titel div:first-child h2, .services_wrapper .row:first-child .col-md-6 h2, .process .row:first-child h2, .contact_wrapper_content h2 {
        font-size: 35px;
    }
    .main-titel div:nth-child(3) h3 {
        font-size: 30px;
    }
    .stack-card {
        position: relative;
        height: auto;
        display: grid;
        border-radius: 33px;
        top: 20px;
    }
    .card-img-side {
        width: 100%;
        padding: 30px 0 30px 30px;
        height: 400px;
    }
    .card-img-side img {
        padding: 0px;
        margin: -15px -20px 0px -15px;
    }
    .card-img-side::before {
        height: 70%;
    }
    .card-text-side {
        padding: 15px 15px 35px 15px;
        width: 100%;
    }
    .dots-decoration {
        top: -20px;
    }
    .service-card {
        padding: 50px 20px;
    }
    .service-card h3 {
        align-items: flex-start;
        font-size: 30px;
            margin: 30px 0px 15px 0px;
    }
    .service-card p {
        font-size: 18px;
        height: 135px;
    }
    .info h3 {
        font-size: 30px;
    }
    .contact_wrapper_content h2::after {
        bottom: -3px;
    }
    .contact_wrapper_content p {
        font-size: 18px;
    }
    .contact_wrapper_form form div {
        width: 100%;
        padding: 45px 20px;
    }
    .contact_wrapper_form form::before {
        width: 100%;
        height: 100%;
        transform: rotate(175deg);
        left: -20px;
    }
    .contact_wrapper_form form {
        width: 100%;
    }
    .contact_wrapper .moon-animtion .astronautimg {
        width: 160px;
        height: 160px;
    }
    .contact_wrapper .mon-gif {
        width: 160px;
        height: 160px;
    }
    .contact_wrapper .moon-animtion .astronautimg div:last-child img {
        width: 160px;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(2), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(2) {
        padding: 0px 15px 0px 15px;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(2) a, .footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul li a {
        font-size: 18px;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(3) ul li {
        padding: 7px 0;
    }
    .footer_wrapper .row:first-child .col-xl-4:nth-child(3), .footer_wrapper .row:nth-child(2) .col-xl-4:nth-child(3) {
        padding: 0px 15px 0px 20px;
    }
    .footer_wrapper .row:last-child .col-xl-6:last-child div a {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1350px) {
    .header_wrapper .header-right {
        display: none!important;
    }  
    .scrool-down {
        display: none;
    }
    .contact_wrapper_form form {
        width: 100%;
    }
    .contact_wrapper_form form::before {
        height: 100%;
        width: 90%;
    }
    .contact_wrapper_form form div {
        width: 90%;
    }
    .contact_wrapper .moon-animtion .astronautimg {
        width: 210px;
        height: 210px;
    }
    .contact_wrapper .mon-gif {
        width: 210px;
        height: 210px;
    }
    .contact_wrapper .moon-animtion .astronautimg div:last-child img {
        width: 210px;
    }
    @media only screen and (min-width:1200px) and (max-width: 1350px) {
        .header_wrapper .header-right {
            display:flex!important;
        } 
    }
}























/*--------------------------------------------------------------------------------------Samir work and this css -------------------------------*/

.services_wrapper {
    padding: 40px 0px 100px 0px;
}
.services_wrapper .row:first-child .col-md-6 h2 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    position: relative;
    font-size: 40px;
    margin-bottom: 20px;
}
.services_wrapper .row:first-child .col-md-6 h2::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.services_wrapper .row:first-child .col-md-6 p {
    font-size: 20px;
    line-height: 1.5;
    font-family: Como-Medium;
    color: var(--black);
}
.service-card {
    background-color:var(--yellow);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--white);
    z-index: 1;
    margin-top: 60px;
    border-radius: 25px;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 30px;    
    right: 30px; 
    width: 40px;
    height: 40px;
    background-color:var(--dark-blue); 
    border-radius: 50%;
    z-index: -1;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.service-card:hover::before {
    transform: scale(30);
}
.arrow-circle {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color:var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease;
}
.arrow-circle span {
    font-size: 20px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    color:var(--white);
}
.card-icon {
    width: 50px;
    margin-bottom: 30px;
}
.service-card h3 {
    margin: 30px 0;
    color: var(--dark-blue);
    font-size: 33px;
    height: 79px;
    overflow: hidden;
    font-family: Como-Bold;
    display: flex;
    align-items: center;
}
.service-card p {
    color: var(--black);
    height: 120px;
    font-size: 20px;
    overflow: hidden;
    font-family: Como-Medium;
}
.service-card img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(9%) sepia(23%) saturate(2230%) hue-rotate(225deg) brightness(86%) contrast(96%);
}
.service-card:hover h3, .service-card:hover p {
    color:var(--white);
    transition: color 0.6s;
}
.service-card:hover img{
    filter: invert(1);
    transition: filter 0.6s;
}
.process {
    padding: 20px 0px 100px 0px;
    position: relative;
    overflow: hidden;
}
.process .row:first-child h2 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    position: relative;
    font-size: 40px;
    margin-bottom: 20px;
}
.process .row:first-child h2::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.process .row:nth-of-type(2){
    margin-top: 60px;
}
.process .absolute .bg-yellow {
    background-color:var(--yellow);
    width: 200px;
    height: fit-content;
    padding: 20px;
    position: fixed; 
    right: -300px;  
    top: 180px;   
    transition: right 1s ease-in-out; 
    opacity: 0;
    border-radius: 10px 0px 0px 10px;
    z-index: 999;
}
.process .absolute .bg-yellow.active {
    right: 0px;    
    opacity: 1;
}
.process .absolute .bg-yellow .img img {
    position: absolute;
    width: 150px;
    right: 0;
    top: -75px;
}
.process .absolute .bg-yellow a {
    text-decoration: none;
    font-size: 18px;
    font-family: Como-Bold;
    color:var(--dark-blue);
}
.process .absolute .bg-yellow a p {
    margin-bottom: 0;
}
.process .absolute .bg-yellow a p img {
    width: 30px;
    margin-bottom: 10px;
}
.process .absolute .bg-yellow .img img {
    position: absolute;
    width: 150px;
    right: 0;
    top: -75px;
    z-index: -1;
}
.info h3 {
    font-family: Como-ExtraBold;
    font-size: 33px;
}
.info p {
    font-size: 20px;
    line-height: 1.5;
    font-family: Como-Medium;
    color: var(--black);
    margin-top: 15px;
}
/*----------responsive----------*/
@media only screen and (max-width: 767px){
    .process .info{
        padding-right: 150px;
    }
    .process .absolute .bg-yellow {
        width: 150px;
    }
    .process .absolute .bg-yellow .img img {
        width: 100px;
        top: -50px;
    }
}
.founder{
    background-color:var(--dark-blue);
}
.founder .img {
    padding-right: 100px;
    position: relative;
}
.founder .img img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 25px;
}
.founder .img span {
    width: 40px;
    height: 7px;
    background-color:var(--yellow);
    display: inline-block;
    position: absolute;
    border-radius: 50px 0px 0px 50px;
}
.founder .img span:nth-of-type(1){
    top: 50px;
    right: 100px;
    width: 50px;
}
.founder .img span:nth-of-type(2){
    top: 60px;
    right: 100px;
}
.founder .img span:nth-of-type(3){
    top: 110px;
    left: 0px;
    width: 50px;
    border-radius: 0px 50px 50px 0px;
}
.founder .img span:nth-of-type(4){
    top: 120px;
    left: 0px;
    border-radius: 0px 50px 50px 0px;
}
.founder .text h2 {
    font-family: Como-ExtraBold;
    color: var(--yellow);
    position: relative;
    font-size: 40px;
    margin-bottom: 30px;
}
.founder .text h2::after {
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--white);
}
.founder .text p {
    color: var(--white);
    font-size: 20px;
    font-family: Como-Medium;
}
.founder .text .signature {
    display: flex;
    margin-top: 60px;
}
.founder .text .signature .left {
    position: relative;
    margin-right: 45px;
}
.founder .text .signature .left::after{
    content: "|";
    position: absolute;
    top: -25px;
    right: -30px;
    color:var(--yellow);
    font-size: 65px;
    height: 100%;
}
.founder .text .signature .left img {
    width: 200px;
    height: auto;
}
.founder .text .signature .right {
    display: flex;
}
.founder .text .signature .right p {
    color: var(--yellow);
    font-size: 20px;
    font-family: Como-SemiBold;
}
.founder .text .signature .right span{
    color: var(--white);
    font-size: 18px;
    font-family: Como-SemiBold;
}
.founder .text .signature .right .icon {
    margin-left: 20px;
    padding-top: 20px;
}
.founder .text .signature .right a img {
    width: auto;
    height: auto;
    margin-right: 5px;
}
.founder .text .signature .right a:hover img{
    filter: invert(79%) sepia(58%) saturate(1450%) hue-rotate(10deg) brightness(350%) contrast(92%);
}
/*---------- responsive ----------*/
@media only screen and (max-width: 767px){
    .founder .img {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .founder .img span:nth-of-type(1){
        top: 50px;
        right: 0px;
        width: 40px;
    }
    .founder .img span:nth-of-type(2){
        top: 60px;
        right: 0px;
    }
    .founder .text .signature {
        flex-wrap: wrap;
    }
    .founder .text .signature .left{
        width: 100%;
    }
    .founder .text .signature .right{
        margin-top: 30px;
    }
    .founder .text .signature .left::after{
        display: none;
    }
}
/*---------- tab screen ----------*/
@media only screen and (min-width: 768px) and (max-width: 991px){
    .founder .img{
        padding-right: 20px;
    }
    .founder .img img{
        height: 500px;
    }
    .founder .img span:nth-of-type(1){
        top: 50px;
        right: 20px;
        width: 40px;
    }
    .founder .img span:nth-of-type(2){
        top: 60px;
        right: 20px;
    }
    .founder .text .signature{
        flex-wrap: wrap;
    }
    .founder .text .signature .left{
        width: 100%;
    }
    .founder .text .signature .right{
        margin-top: 30px;
    }
    .founder .text .signature .left::after{
        display: none;
    }
    .service-card h3{
        font-size: 26px;
    }
}
/*---------- small screen ----------*/
@media only screen and (min-width: 992px) and (max-width: 1199px){
    .founder .img{
        padding-right: 20px;
    }
    .founder .img img{
        height: 460px;
    }
    .founder .img span:nth-of-type(1){
        top: 50px;
        right: 20px;
        width: 40px;
    }
    .founder .img span:nth-of-type(2){
        top: 60px;
        right: 20px;
    }
    .founder .text .signature{
        flex-wrap: wrap;
    }
    .founder .text .signature .left{
        width: 100%;
    }
    .founder .text .signature .right{
        margin-top: 30px;
    }
    .founder .text .signature .left::after{
        display: none;
    }
}

.work-perfoms h2{
    margin-bottom: 0;
    font-size: 40px;
    font-family: Como-ExtraBold;
    position: relative;
}
.work-perfoms h2::after{
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.work-perfoms .right-div p{
    font-family: Como-Medium;
}
.work-perfoms .main-div{
    position: relative;
    margin-top: 120px;
}
.work-perfoms .main-div .bg-blue{
    background-color:var(--dark-blue);
    height: 100%;
    width: 65%;
    position: fixed;
    top: 0px;
    left: 0;
    border-radius: 0 25px 25px 0;
    z-index: -1;
}
.work-perfoms .main-div .bg-blue .span-div{
    padding: 80px 30px 0 0;
    width: 100%;
    display: flex;
    justify-content: end;
}
.work-perfoms .main-div .bg-blue span{
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: var(--yellow);
    display: inline-block;
    margin: 0 5px;  
}
.work-perfoms .main-div .bg-blue h3{
    position: absolute;
    bottom: 20px;
    right: 80px;
    color: var(--white);
    font-family: Como-Bold;
}
.work-perfoms .main-div .content-div{
    padding-top: 170px;
    padding-bottom: 100px;
    width: 100%;
    display: flex !important;
}
.work-perfoms .main-div .content-div .img{
    width: 50%;
    z-index: 1;
    display: flex;
    justify-content: end;
    align-items: center;
}
.work-perfoms .main-div .content-div .img img{
    height: 400px;
    object-fit: contain;
}
.work-perfoms .main-div .content-div .text{
    width: 50%;
}
.work-perfoms .main-div .content-div .bg-yellow{
    background-color: var(--yellow);
    width: 100%;
    padding: 30px 40px 30px 20%;
    margin-left: -100px;
    border-radius: 25px;
}
.work-perfoms .main-div .content-div .bg-yellow h2{
    margin-bottom: 40px;
    font-family: Como-Bold;
}
.work-perfoms .main-div .content-div .bg-yellow p{
    font-size: 18px;
    font-family: Como-SemiBold;
}
.work-perfoms .main-div .content-div .bg-yellow .deliver-div{
    margin-top: 40px;
}
.work-perfoms .main-div .content-div .bg-yellow .deliver-div h3{
    margin-bottom: 20px;
    font-family: Como-Bold;
}
.work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div {
    display: flex;
    flex-wrap: wrap;
}
.work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div p{
    font-size: 18px;
    margin-right: 15px;
    margin-bottom: 15px;
    font-family: Como-SemiBold;
}
.work-perfoms .main-div .content-div .bg-yellow .deliver-div img{
    margin-right: 10px;
    display: inline-block;
    width: 18px;
}
.work-perfoms .main-div .content-div .bg-yellow .btn{
    display: flex;
    justify-content: end;
    border: none;
    cursor: default;
}
.work-perfoms .main-div .content-div .bg-yellow .btn a{
    color: var(--dark-blue);
    font-size: 18px;
    text-decoration: none;
    font-family: Como-Bold;
}
.horizontal-wrap {
    overflow: hidden;  /* ज़रूरी है */
}
.horizontal-content {
    display: flex;
    width: max-content;/* कंटेंट के हिसाब से चौड़ाई */
    height: auto;
    align-items: center;
}
.blog-card {
    width: 100vw;
    flex-shrink: 0; /* कार्ड को छोटा होने से रोकता है */
    display: flex;
    align-items: center; /* Content ko vertical center karne ke liye */
    justify-content: center;                        
}
/*----------responsive----------*/
@media only screen and (max-width: 767px) {
    .work-perfoms h2{
        font-size: 30px;
    }
    .work-perfoms .right-div{
        margin-top: 30px;
    }
    .work-perfoms .right-div p br{
        display: none;
    }
    .work-perfoms .main-div .bg-blue{
        height: 100%;
        width: 100%;
    }
    .work-perfoms .main-div .bg-blue h3{
        right: 10px;
    }
    .work-perfoms .main-div .content-div{
        flex-wrap: wrap;
    }    
    .work-perfoms .main-div .content-div .img{
        width: 100%;
        justify-content: center;
    }
    .work-perfoms .main-div .content-div .img img{
        height: 280px;
    }
    .work-perfoms .main-div .content-div .text{
        width: 100%;
        padding: 20px;
    }
    .work-perfoms .main-div .content-div .bg-yellow{
        margin-left: 0;
        padding: 20px;
    }
    .work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div{
        flex-wrap: wrap;
    }
    .work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div p{
        margin-bottom: 10px;
    }
}
/*----------tab screen----------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work-perfoms h2{
        font-size: 33px;
    }
    .work-perfoms .right-div p br{
        display: none;
    }
    .work-perfoms .main-div .bg-blue{
        height: 100%;
    }
    .work-perfoms .main-div .content-div .img img {
        height: 320px;
    }
    .work-perfoms .main-div .content-div .bg-yellow{
        margin-left: -65px;
    }
    .work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div{
        flex-wrap: wrap;
    }
    .work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div p{
        margin-bottom: 10px;
    }
}
/*----------tab screen----------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .work-perfoms .main-div .bg-blue{
        height: 100%;
    }
    .work-perfoms .main-div .content-div .img img{
        height: 450px;
    }
    .work-perfoms .main-div .content-div .bg-yellow{
        margin-left: -75px;
    }
    .work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div{
        flex-wrap: wrap;
    }
    .work-perfoms .main-div .content-div .bg-yellow .deliver-div .flex-div p{
        margin-bottom: 10px;
    }
}
/*----------medium screen----------*/
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .work-perfoms .main-div .content-div .bg-yellow h2{
        margin-bottom: 25px;
    }
    .work-perfoms .main-div .content-div .bg-yellow .deliver-div{
        margin-top: 20px;
    }
    .work-perfoms .main-div .content-div .bg-yellow{
        padding: 25px 10px 25px 20%;
    }
}
@media only screen and (max-width: 1199px) {
    .horizontal-content {
        flex-direction: column;
        width: 100%;
    }
    .blog-card {
        width: 100%;
    }
}               
@media only screen and (min-width: 1700px) {
    .work-perfoms .main-div .content-div .bg-yellow{
        padding: 30px 225px 30px 20%;
    }
}


/*-------------------branding & creative page---------------*/

.banner_wrapper_v2 {
    background-image: url("../images/banner/banner-img-3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
}
.banner_wrapper_v3 {
    background-image: url("../images/banner/banner-img-4.png");
}
.banner_wrapper_v2::before {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--black);
    opacity: 0.45;
    width: 100%;
    height: 100%;
}

.banner_wrapper_v2 .heading {
    margin-top: 150px;
    position: relative;
    z-index: 1;
}
.banner_wrapper_v2 .heading h1 {
    color: var(--white);
    font-family: como-bold;
}
.banner_wrapper_v2 .heading h1 span {
    color: var(--yellow);
    font-family: como-extrabold;
}
.banner_wrapper_v2 .heading .bradcrum {
    margin-top: 60px;
    color: var(--white);
    font-family: como-semibold;
    display: flex;
    gap: 10px;
}
.banner_wrapper_v2 .heading .bradcrum a {
    color: var(--yellow);
    font-family: como-bold;
}
.banner_wrapper_v2 .heading .bradcrum a:hover {
    color: var(--orange);
}
.header_wrapper_v2 .dropdown-menu li .active{
    background-color: var(--orange);
}

/*----------consept section style----------*/
.concept {
    padding: 120px 0px 60px;
}
.concept .left-div h2 {
    color: var(--dark-blue);
    font-family: como-light;
    position: relative;
}
.concept .left-div h2 span {
    font-family: como-extrabold;
}
.concept .left-div h2::after {
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0px;
    background-color: var(--yellow);
}
.concept .left-div p {
    color: var(--dark-blue);
    font-family: como-semibold;
    font-size: 18px;
    margin: 30px 0px;
}
.concept .left-div a {
    background-color: var(--yellow);
    display: inline-block;
    color: var(--dark-blue);
    font-family: como-semibold;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 50px;
}
.concept .left-div a:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}
.concept .right-div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.concept .right-div .circle {
    background-color: var(--yellow);
    height: 250px;
    width: 250px;
    position: relative;
    border-radius: 50%;
}
.concept .right-div .circle span {
    background-color: var(--yellow);
    position: absolute;
}
.concept .right-div .circle span:nth-of-type(1) {
    width: 10px;
    height: 110px;
    rotate: 55deg;
    top: 130px;
    left: -30px;
    border-radius: 50px;
}
.concept .right-div .circle span:nth-of-type(2) {
    width: 15px;
    height: 15px;
    top: 220px;
    left: -95px;
    border-radius: 50%;
}
.concept .right-div .circle span:nth-of-type(3) {
    width: 10px;
    height: 90px;
    rotate: 55deg;
    top: 175px;
    left: 5px;
    border-radius: 50px;
}
.concept .right-div .circle span:nth-of-type(4) {
    width: 15px;
    height: 15px;
    top: 250px;
    left: -50px;
    border-radius: 50%;
}
.concept .right-div .circle .img {
    width: 230px;
    height: 230px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 50%;
}
.concept .right-div .circle .img img {
    width: 100%;
    border-radius: 50%;
    transition: 1s;
}
.concept .right-div .circle .img img:hover {
    scale: 1.2;
}

/*----------our-process section style----------*/
.our-process {
    padding: 60px 0px;
}
.our-process h2 {
    font-family: como-light;
    color: var(--dark-blue);
    position: relative;
}
.our-process h2 span {
    font-family: como-extrabold;
}
.our-process h2::after {
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0px;
    background-color: var(--yellow);
}
.our-process p {
    font-family: como-semibold;
}
.our-process .process-box {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 545px;
    padding: 50px 15px;
}
.our-process .process-box:hover {
    box-shadow: 5px 5px 5px 3px;
}
.our-process .process-box .bg-orange {
    width: 150px;
    height: 150px;
    background-color: var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.our-process .process-box .bg-orange .bg-white {
    width: 120px;
    height: 120px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 2px 1px;
    border-radius: 50%;
}
.our-process .process-box .bg-orange .bg-white img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.our-process .process-box .text {
    text-align: center;
    margin-top: 20px;
}
.our-process .process-box .text h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-family: como-bold;
}
.our-process .process-box .text p {
    font-family: como-semibold;
}

/*----------beyond section style----------*/
.beyond {
    padding: 60px 0px;
}
.beyond .container-fluid {
    padding: 0px;
}
.beyond .container-fluid .row {
    margin: 0px;
}
.beyond .container-fluid .row .left-div {
    padding: 0px;
}
.beyond .left-div video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.beyond .right-div {
    background-color: var(--dark-blue);
    position: relative;
    display: grid;
    align-items: center;
    padding: 50px 200px 50px 100px;
}
.beyond .right-div h2 {
    color: var(--yellow);
    font-family: como-light;
    position: relative;
    margin-bottom: 30px;
}
.beyond .right-div h2 span {
    font-family: como-ExtraBold;
}
.beyond .right-div h2::after {
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0px;
    background-color: var(--yellow);
}
.beyond .right-div p {
    color: var(--white);
    font-family: como-SemiBold;
    max-width: 450px;
}
.beyond .right-div .book-div {
    position: absolute;
    right: -68px;
    top: 50%;
    rotate: 270deg;
}
.beyond .right-div .book-div a {
    font-family: como-bold;
    color: var(--dark-blue);
    background-color: var(--yellow);
    padding: 10px 20px;
    border-radius: 10px 10px 0px 0px;
}
.beyond .right-div .book-div a:hover {
    background-color: var(--orange);
}
/*----------news-latter section style----------*/
.news-latter{
    padding: 60px 0;
}
.news-latter .left-div {
    position: relative;
    display: flex;
}
.news-latter .left-div .orange-div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
}
.news-latter .left-div .orange-div img {
    width: 180px;
    height: 180px;
}
.news-latter .left-div .orange-div span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 300px;
    height: 300px;
    border: 5px dashed var(--orange);
    border-radius: 50%;
    animation: rotate 60s linear 0s infinite;
}

@keyframes rotate{
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: 360deg;
    }
}

.news-latter .yellow-div .star-div img:nth-of-type(1) {
    width: 70px;
    animation: star 1s linear 0s infinite alternate ;
}

@keyframes star{
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

.news-latter .yellow-div .star-div img:nth-of-type(2) {
    width: 50px;
    animation: star-second 1s linear 0s infinite alternate ;
}
@keyframes star-second{
    0% {
        opacity: 1;
    }
    100% {
        opacity:  0.1;
    }
}
.news-latter .yellow-div .line-div img {
    width: 100px;
}
.news-latter .yellow-div .message-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    position: relative;
    margin-top: -18px;
    margin-left: -8px;
}
.news-latter .yellow-div .message-div img {
    width: 60px;
}
.news-latter .yellow-div .message-div span {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0px;
    left: 0px;
    border: 2px dashed var(--orange);
    border-radius: 50%;
    animation: rotate-second 60s linear 0s infinite ;
}
@keyframes rotate-second{
    0% {
        rotate: 360deg;
    }
    100% {
        rotate: 0deg;
    }
}
.news-latter .right-div {
    padding-right: 220px;
}
.news-latter .right-div h2 {
    font-family: como-medium;
    color: var(--dark-blue);
    font-size: 40px;
    position: relative;
    margin-bottom: 30px;
}
.news-latter .right-div h2 span {
    font-family: como-bold;
    font-size: 40px;
}
.news-latter .right-div h2::after {
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0px;
    background-color: var(--yellow);
}
.news-latter .right-div p {
    font-family: como-semibold;
    margin-bottom: 30px;
}
.news-latter .right-div input {
    width: 100%;
    font-family: como-semibold;
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid var(--dark-blue);
}
.news-latter .right-div input:focus{
    border: 2px solid var(--dark-blue);
    outline: none;
}
.news-latter .right-div button {
    background-color: var(--yellow);
    font-family: como-bold;
    border-style: none;
    padding: 10px 25px;
    border-radius: 5px;
}
.news-latter .right-div button:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/*----------partner section style----------*/
.partner{
    background-color: var(--orange);
    padding: 60px 0;
}
.partner .partner-slider{
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner .partner-slider .item{
    margin: 20px;  
     display: flex;
    align-items: center;
    justify-content: center;
}
.partner .partner-slider img{
    width: 150px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/*----------responsive----------*/
@media only screen and (max-width: 767px){

    .concept .right-div{
        margin-top: 30px;
    }
    .concept .right-div .circle{
        width: 200px;
        height: 200px;
    }
    .concept .right-div .circle .img{
        width: 180px;
        height: 180px;
    }
    .concept .right-div .circle span:nth-of-type(1){
        top: 110px;
        left: 3px;
    }
    .concept .right-div .circle span:nth-of-type(2){
        top: 197px;
        left: -56px;
    }
    .concept .right-div .circle span:nth-of-type(3){
        top: 140px;
        left: 32px;
    }
    .concept .right-div .circle span:nth-of-type(4){
        top: 212px;
        left: -18px;
    }
    .our-process p{
        margin-top: 30px;
    }
    .our-process p br{
        display: none;
    }
    .our-process .process-box{
        margin-top: 50px;
        height: fit-content;
    }
    .beyond .right-div{
        padding: 20px 45px 20px 20px;
    }
    .news-latter .left-div{
        justify-content: center;
    }
    .news-latter .left-div .orange-div{
        width: 220px;
        height: 220px;
    }
    .news-latter .left-div .orange-div img {
        width: 130px;
        height: 130px;
    }
    .news-latter .left-div .orange-div span{
        width: 220px;
        height: 220px;
    }
    .news-latter .left-div .yellow-div{
        display: none;
    }
    .news-latter .right-div {
        padding-right: 12px;
        margin-top: 50px;
    }
}

/*---------- tab screen ----------*/
@media only screen and (min-width: 768px) and (max-width: 991px){

    .concept .right-div .circle span:nth-of-type(1){
        height: 80px;
        top: 160px;
        left: -18px;
    }
    .concept .right-div .circle span:nth-of-type(2){
        top: 225px;
        left: -66px;
    }
    .concept .right-div .circle span:nth-of-type(3) {
        left: 15px;
    }
    .concept .right-div .circle span:nth-of-type(4) {
        top: 249px;
        left: -38px
    }
    .our-process p br{
        display: none;
    }
    .beyond .right-div{
        padding: 20px 45px 20px 20px;
    }
    .news-latter .left-div .orange-div{
        width: 215px;
        height: 215px;
    }
    .news-latter .left-div .orange-div img {
        width: 130px;
        height: 130px;
    }
    .news-latter .left-div .orange-div span{
        width: 215px;
        height: 215px;
    }
    .news-latter .left-div .yellow-div .star-div{
        display: flex;
        align-items: center;
    }
    .news-latter .left-div .yellow-div .star-div img:nth-of-type(2){
        height: 50px;
    }
    .news-latter .right-div{
        padding-right: 12px;
    }
}

/*---------- small screen ----------*/
@media only screen and (min-width: 992px) and (max-width: 1199px){
    .beyond .right-div{
        padding: 30px 50px 30px 50px;
    }
    .news-latter .right-div{
        padding-right: 12px;
    }
}












/*---------------------------------------------------------------------------------------------------------------Our Philosophy------------*/

.header_wrapper_v2 {
    background-color: var(--white);
}
.header_wrapper_v2 .navbar-nav .nav-item .nav-link::before {
    width: 0;
}
.header_wrapper_v2 .navbar-nav .nav-item .nav-link:hover {
    color: var(--orange);
}
.header_wrapper_v2 .navbar-nav .nav-item .nav-link.active {
    border-bottom: 2px solid var(--orange);
    font-weight: bold;
    color: var(--orange);
}
.header_wrapper_v2 .navbar-nav .nav-item .nav-link:hover .dropdown-arrow {
    filter: invert(53%) sepia(90%) saturate(1085%) hue-rotate(349deg) brightness(101%) contrast(91%);;
}
.header_wrapper_v2 .header-right a:last-child {
    background-color: var(--dark-blue);
    color: var(--white);
}
.header_wrapper_v2 .header-right a:last-child:hover {
    background-color: var(--orange);
}
.header_wrapper_v2 .dropdown-menu {
    padding: 0;
}
.header_wrapper_v2 .dropdown-menu li a {
    font-family: como-bold;
}
.header_wrapper_v2 .dropdown-menu li:hover a {
    background-color: var(--orange);
    color: var(--white);
}





.about_wrapper_content_v2 {
    background-color: var(--white);
}
.about_wrapper_content_v2 h2 {
    font-family: Como-Light;
    font-size: 33px;
    color: var(--dark-blue);
}
.about_wrapper_content_v2 h3 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
}
.about_wrapper_content_v2 h3::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.about_wrapper_content_v2 p {
    font-family: Como-SemiBold;
    font-size: 20px;
    color: var(--black);
}
.about_wrapper_content_v2 .styled-button {
    justify-content: left;
}
.about_wrapper_mockup_v2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_wrapper_mockup_v2 .outer-ring {
    position: relative;
    width: 300px;
    height: 300px;
    border: 2px solid var(--dark-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_wrapper_mockup_v2 .outer-ring .orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate-orbit 9s linear infinite;
}
.inner-image {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--dark-blue);
}
.inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s;
} 
.about_wrapper_mockup_v2:hover .inner-image img {
    transform: scale(1.2);
}
.yellow-dot {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color:var(--yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px;
}
.yellow-dot span img {
    width: 100%;
    object-fit: cover;
}
@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.yellow-dot span {
    animation: counter-rotate 9s linear infinite;
}
@keyframes counter-rotate {
    from { 
        transform: rotate(0deg); 
    }
    to { 
        transform: rotate(-360deg); 
    }
}
.our_philosophy_wrapper {
    padding-top: 10px;
    padding-bottom: 60px;
}
.stack-card_v2 {
    position: sticky;
    top: 130px;
    height: 520px;
    padding: 40px;
    align-items: center;
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 60px;
    background: var(--dark-blue);
    border-radius: 45px;
    overflow: hidden;
    transition: transform 0.6s, filter 0.6s, opacity 0.6s;
}
.stack-card_v2 .col-xl-4 {
    position: relative;
    display: flex;
    justify-content: center;
}
.stack-card_v2 .col-xl-4::before {
    content: " ";
    position: absolute;
    bottom: -15px;
    width: 90%;
    height: 35px;
    border-radius: 50%;
    background-color: var(--yellow);
}
.stack-card_v2 .col-xl-4 img {
    filter: brightness(0) invert(1);
    width: 60%;
}
.stack-card_v2 .col-xl-8 {
    padding-right: 40px;
    height: 340px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.stack-card_v2 .col-xl-8 h2 {
    color: var(--yellow);
    font-size: 40px;
    font-family: 'Como-Regular';
    margin-bottom: 30px;
}
.stack-card_v2 .col-xl-8 h2 span {
    font-family: Como-ExtraBold;
}
.stack-card_v2 .col-xl-8 p {
    font-family: Como-Medium;
    font-size: 20px;
    color: var(--white);
}
.stack-card_v2 .dots-decoration {
    position: absolute;
    top: 35px;
    right: 50px;
    display: flex;
    gap: 10px;
}
.stack-card_v2 .col-xl-8::-webkit-scrollbar, .flip-card-back p::-webkit-scrollbar {
    width: 6px;
}
.stack-card_v2 .col-xl-8::-webkit-scrollbar-track, .flip-card-back p::-webkit-scrollbar-track {
    background: var(--white); 
    border-radius: 10px;
}
.stack-card_v2 .col-xl-8::-webkit-scrollbar-thumb, .flip-card-back p::-webkit-scrollbar-thumb {
    background:var(--yellow); 
    border-radius: 10px;
}
.stack-card_v2 .col-xl-8::-webkit-scrollbar-thumb:hover, .flip-card-back p::-webkit-scrollbar-thumb:hover {
    background:var(--white); 
}
.stack-card_v2 .col-xl-8 .row {
    margin-top: 20px;
    align-items: center;
}
.stack-card_v2 .col-xl-8 .row .col-xl-7 {
    border-right: 5px solid var(--orange);
}
.stack-card_v2 .col-xl-8 .row .col-xl-7 p {
    font-size: 17px;
}
.stack-card_v2 .col-xl-8 .row .col-xl-5 {
    display: flex;
    justify-content: center;
}
.stack-card_v2 .col-xl-8 .row .col-xl-5 a {
    background-color: var(--white);
    padding: 10px 25px;
    color: var(--dark-blue);
    font-family: 'Como-Bold';
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.5s;
}
.stack-card_v2 .col-xl-8 .row .col-xl-5 a:hover {
    background-color: var(--yellow);
}
.tems_wrapper {
    padding-top: 10px;
    background-color: var(--white);
}
.tems_wrapper h2 {
    font-family: Como-Medium;
    font-size: 40px;
    color: var(--dark-blue);
}
.tems_wrapper h3 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
}
.tems_wrapper h3::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.tems_wrapper .row {
    margin-top: 60px;
}
.flip-card {
    background-color: transparent;
    height: 450px;
    perspective: 1000px;
    margin: 15px 0px;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 10px;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}
.flip-card-back {
    background-color:var(--dark-blue);
    color:var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 20px;
}
.flip-card-front {
    background-color: var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
.flip-card-front div {
    display: flex;
    justify-content: center;
}
.flip-card-front div img {
    width: 250px;
}
.flip-card-front h4 {
    color: var(--dark-blue);
    font-family: Como-Bold;
    font-size: 30px;
}
.flip-card-front h5 {
    color: var(--black);
    font-family: Como-SemiBold;
    font-size: 20px;
    margin-bottom: 17px;
}
.flip-card-front span img  {
    width: 30px;
}
.flip-card-back h4 {
    color: var(--yellow);
    font-family: Como-Bold;
    font-size: 30px;
}
.flip-card-back h5 {
    color: var(--white);
    font-family: Como-SemiBold;
    font-size: 20px;
    margin-bottom: 15px;
}
.flip-card-back p {
    font-size: 18px;
    color: var(--white);
    font-family: Como-SemiBold;
    height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}
.flip-card-back span img {
    width: 30px;
    filter: invert(1);
}
.flip-card-back span img:hover {
    filter: invert(71%) sepia(43%) saturate(752%) hue-rotate(1deg) brightness(106%) contrast(87%);
}

@media only screen and (max-width: 575px) {
    .about_wrapper_content_v2 h2, .tems_wrapper h2 {
        font-size: 25px;
    }
    .about_wrapper_content_v2 h3, .tems_wrapper h3 {
        font-size: 28px;
    }
    .about_wrapper_content_v2 p {
        font-size: 18px;
    }
    .about_wrapper_v2 .row {
        gap: 50px;
    }
    .yellow-dot {
        width: 30px;
        height: 30px;
        top: -15px;
    }
    .about_wrapper_mockup_v2 .outer-ring {
        width: 230px;
        height: 230px;
    }
    .inner-image {
        width: 180px;
        height: 180px;
    }
    .stack-card_v2 {
        position: relative;
        top: 30px;
        height: auto;
        padding: 50px 20px;
        display: grid;
        gap: 50px;
    }
    .stack-card_v2 .col-xl-8 {
        height: auto;
        padding-right: 0px;
        overflow-y: unset;
    }
    .stack-card_v2 .col-xl-8 .row {
        gap: 30px;
    }
    .stack-card_v2 .col-xl-8 .row .col-xl-7 {
        border-right: unset;
    }
    .stack-card_v2 .col-xl-8 p {
        font-size: 18px;
    }
    .stack-card_v2 .col-xl-8 h2 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about_wrapper_v2 .row {
        gap: 40px;
    }
    .stack-card_v2 {
        position: relative;
        top: 30px;
        height: auto;
        padding: 50px 20px;
        display: grid;
        gap: 50px;
    }
    .stack-card_v2 .col-xl-8 {
        height: auto;
        padding-right: 0px;
        overflow-y: unset;
    }
    .stack-card_v2 .col-xl-8 .row {
        gap: 30px;
    }
    .stack-card_v2 .col-xl-8 .row .col-xl-7 {
        border-right: unset;
    }
    .stack-card_v2 .col-xl-8 p {
        font-size: 18px;
    }
    .stack-card_v2 .col-xl-8 h2 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .inner-image {
        width: 170px;
        height: 170px;
    }
    .about_wrapper_mockup_v2 .outer-ring {
        width: 250px;
        height: 250px;
    }
    .about_wrapper_content_v2 h2 {
        font-size: 30px;
    }
    .about_wrapper_content_v2 h3 {
        font-size: 33px;
    }
    .about_wrapper_content_v2 p {
        font-size: 18px;
    }
    .stack-card_v2 {
        position: relative;
        top: 30px;
        height: auto;
        padding: 50px 20px;
        display: grid;
        gap: 50px;
    }
    .stack-card_v2 .col-xl-8 {
        height: auto;
        padding-right: 0px;
        overflow-y: unset;
    }
    .stack-card_v2 .col-xl-8 .row {
        gap: 30px;
    }
    .stack-card_v2 .col-xl-8 .row .col-xl-7 {
        border-right: unset;
    }
    .stack-card_v2 .col-xl-8 p {
        font-size: 18px;
    }
    .stack-card_v2 .col-xl-8 h2 {
        font-size: 30px;
    }
}


/*----------service page style----------*/
.service-v2{
    padding: 120px 0;
}

/*----------seo & sem page style----------*/
.seo .text h2{
    color: var(--dark-blue);
    font-family: como-light;
    position: relative;
    margin-bottom: 30px;
}
.seo .text h2 span{
    font-family: como-extrabold;
}
.seo .text h2:after{
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.seo .text p{
    font-family: como-SemiBold;
}
.seo .text .styled-button{
   justify-content: flex-start;
   margin-top: 30px;
}
.seo .img{
    display: flex;
    align-items: center;
    justify-content: end;
}
.seo .bg-yellow{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    position: relative;
}
.seo .scale{
    overflow: hidden;
    border-radius: 50%;
}
.seo .bg-yellow img{
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    transition: 1s;
}
.seo .bg-yellow img:hover{
    scale: 1.2;
}
.seo .seo-div .bg-yellow span:nth-of-type(1){
    width: 300px;
    height: 300px;
    background-color: var(--dark-blue);
    position: absolute;
    z-index: -1;
    left: -10px;
    top: -10px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    animation: moveShape 6s ease-in-out infinite alternate;
}
.seo .seo-div .bg-yellow span:nth-of-type(2){
    width: 300px;
    height: 300px;
    background-color: var(--orange);
    position: absolute;
    z-index: -1;
    right: -10px;
    bottom: -18px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    animation: moveShape 3s ease-in-out infinite alternate;
}

.seo .sem-div{
    margin-top: 100px;
}
.seo .sem-div .img{
    justify-content: flex-start;
}
.seo .sem-div .bg-yellow span:nth-of-type(1){
    width: 300px;
    height: 300px;
    background-color: var(--dark-blue);
    position: absolute;
    z-index: -1;
    right: -10px;
    top: -10px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    animation: moveShape 6s ease-in-out infinite alternate;
 
}
.seo .sem-div .bg-yellow span:nth-of-type(2){
    width: 300px;
    height: 300px;
    background-color: var(--orange);
    position: absolute;
    z-index: -1;
    left: -10px;
    bottom: -18px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    animation: moveShape 4s ease-in-out infinite alternate;
    
}
.seo .advantage-div{
    margin-top: 100px;
}
.seo .advantage-div .bg-yellow{
    position: relative;
    box-shadow: 0px -3px 10px;
}
.seo .advantage-div .img span{
    position: absolute;
    bottom: 0;
    background-color: var(--yellow);
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    font-family: como-Bold;
    box-shadow: 0px -5px 10px;
}

/*----------responsive----------*/
@media only screen and (max-width: 767px){
    h1{
        font-size: 34px;
    }
    h2{
        font-size: 26px !important;
    }
    .seo .img{
        justify-content: center;
    }
    .seo .seo-div .img{
        margin-top: 50px;
    }
    .seo .sem-div .text{
        margin-top: 50px;
    }
    .seo .advantage-div .bg-yellow{
        margin-top: 50px;
    }
    .seo .bg-yellow{
        width: 250px;
        height: 250px;
    }
    .seo .bg-yellow img{
        width: 230px;
        height: 230px;
    }
    .seo .seo-div .bg-yellow span:nth-of-type(1){
        width: 250px;
        height: 250px;
    }
    .seo .seo-div .bg-yellow span:nth-of-type(2){
        width: 250px;
        height: 250px;
    }
    .seo .sem-div .img {
        justify-content: center;
    }
    .seo .sem-div .bg-yellow span:nth-of-type(1){
        width: 250px;
        height: 250px;
    }
    .seo .sem-div .bg-yellow span:nth-of-type(2){
        width: 250px;
        height: 250px;
    }
}


/*----------network page style----------*/
.across{
    padding: 120px 0;
}
.across h2{
    font-family: como-light;
    color: var(--dark-blue);
    position: relative;
    margin-bottom: 30px;
}
.across h2 span{
    font-family: como-ExtraBold;
}

.across h2:after {
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.across p{
    font-family: como-SemiBold;
}
.across .right-div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.across .right-div .arms-img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.across .right-div .arms-img .arms-image{
    width: 350px;
     animation: arms-rotate 20s linear infinite ;
}
@keyframes arms-rotate{
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: 360deg;
    } 
}

.across .right-div .arms-img .flag-div{
    position: absolute;
}
.across .right-div .arms-img .flag-div img{
    width: 200px;
}

/*-----ecosystem section style -----*/
.ecosystem{
    background-color: var(--dark-blue);
    padding: 60px 0;
}
.ecosystem .left-div{
    padding-right: 100px;
}
.ecosystem .left-div h2{
    color: var(--yellow);
    font-family: como-light;
    position: relative;
    margin-bottom: 60px;
}
.ecosystem .left-div h2 span{
    font-family: como-ExtraBold;
}
.ecosystem .left-div h2:after {
    content: " ";
    position: absolute;
    bottom: -5px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.ecosystem .left-div p{
    color: var(--white);
    font-family: como-medium;
}
.ecosystem .left-div .styled-button{
    justify-content: flex-start;
}
.ecosystem .left-div .styled-button a{
    background-color: var(--white);
}
.ecosystem .left-div .styled-button a span:nth-of-type(2){
    background-color: var(--yellow)
}
.ecosystem .right-div{
    position: relative;
}
.ecosystem .right-div hr{
    position: absolute;
    width: 10px;
    height: 80%;
    background-color: var(--orange);
    left: 47px;
    opacity: 1;
    border: none;
}
.ecosystem .right-div .main-div{
    display: flex;
    margin-bottom: 30px;
}
.ecosystem .right-div .orange-div{
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.ecosystem .right-div .orange-div .white-div{
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.ecosystem .right-div .orange-div .white-div p{
    color: var(--orange);
    font-family: como-ExtraBold;
    font-size: 24px;
}
.ecosystem .right-div .text{
    margin-left: 10px;
}
.ecosystem .right-div h3{
    color: var(--orange);
    font-family: como-bold;
    margin-bottom: 10px;
}
.ecosystem .right-div .text p{
    color: var(--white);
    font-family: como-Medium;
}

/*-----growth section style -----*/
.growth .left-div{
    display: flex;
    align-items: center;
}
.growth .left-div .flex-div{
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.growth .left-div .border-div{
    width: 280px;
    height: 280px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px dashed var(--dark-blue);
    animation: border-rotate 60s linear infinite ;
}
@keyframes border-rotate{
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: 360deg;
    } 
}
.growth .left-div img{
    width: 140px;
}
.growth .left-div .flex-div .like-div{
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: white;
    padding: 10px;
    top: 31px;
    left: -13px;
    border-radius: 50%;
}
.growth .left-div .flex-div .like-div img{
   width: 100%;
    height: 100%;
    object-fit: contain;
}
.growth .left-div .flex-div .msg-div{
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: white;
    padding: 10px;
    top: 5px;
    left: 180px;
}
.growth .left-div .flex-div .msg-div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.growth .left-div .flex-div .email-div{
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: white;
    padding: 10px;
    bottom: -28px;
    left: 65px;
}
.growth .left-div .flex-div .email-div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.growth .right-div h2{
    color: var(--dark-blue);
    font-family: como-Light;
    position: relative;
    margin-bottom: 30px;
}
.growth .right-div h2 span{
    font-family: como-ExtraBold;
}
.growth .right-div h2:after {
    content: " ";
    position: absolute;
    bottom: -5px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.growth .right-div p{
    font-family: como-SemiBold;
}

/*----------responsive----------*/
@media only screen and (max-width: 767px){
    .across .right-div{
        margin-top: 100px;
    }
    .across .right-div .arms-img .arms-image{
        width: 260px;
    }
    .across .right-div .arms-img .flag-div img{
        width: 148px;
    }
    .ecosystem .left-div{
        padding-right: 12px;
    }
    .ecosystem .right-div{
        margin-top: 60px;
    }
    .ecosystem .right-div hr {
        height: 75%;
    }
    .growth .left-div{
        justify-content: center;
        margin-bottom: 60px;
    }
    .growth .left-div .border-div{
        width: 220px;
        height: 220px;
    }
    .growth .left-div img {
        width: 100px;
    }
    .growth .left-div .flex-div .like-div {
        width: 60px;
        height: 60px;
        top: 45px;
        left: 25px;
    }
    .growth .left-div .flex-div .msg-div{
        width: 60px;
        height: 60px;
        top: 25px;
        left: 175px;
    }
    .growth .left-div .flex-div .email-div {
        width: 60px;
        height: 60px;
        bottom: 20px;
    }
}

/*----------tab screen----------*/
@media only screen and (min-width: 768px) and (max-width: 991px){
    h2{
        font-size: 28px;
    }
    .across .right-div .arms-img .arms-image{
        width: 330px;
    }
    .across .right-div .arms-img .flag-div img{
        width: 180px;
    }
}

/*----------contact page style----------*/
.strategy{
    padding: 120px 0;
}
.strategy .left-div h2{
    font-family: como-Light;
    color: var(--dark-blue);
    position: relative;
}
.strategy .left-div h2 span{
    font-family: como-ExtraBold;
}
.strategy .left-div h2::after {
    content: " ";
    position: absolute;
    bottom: -3px;
    width: 30px;
    height: 3px;
    left: 0px;
    background-color: var(--yellow);
}
.strategy .left-div p {
    font-family: como-SemiBold;
    margin-top: 30px;
    max-width: 100%;
    font-size: 20px;
}
.strategy .right-div .main-div{
    display: flex;
    justify-content: end;
}
.strategy .right-div img{
    width: 250px;
    margin-right: -48px;
}
.strategy .right-div form{
    background-color: var(--dark-blue);
    padding: 20px 25px;
    border-radius: 20px;
    width: 60%;
}
.strategy .right-div form input{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-family: como-SemiBold;
    border: 2px solid var(--white);
    color: var(--dark-blue);
}
.strategy .right-div form input:hover{
    outline: 2px solid var(--yellow);
}
.strategy .right-div form input:focus{
    outline: 2px solid var(--yellow);
}
.strategy .right-div form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-family: como-SemiBold;
    border: 2px solid var(--white);
    color: var(--dark-blue);
}
.strategy .right-div form textarea:hover{
    outline: 2px solid var(--yellow);
}
.strategy .right-div form textarea:focus{
    outline: 2px solid var(--yellow);
}
.strategy .right-div form button{
    font-family: como-Bold;
    background-color: var(--yellow);
    color: var(--dark-blue);
    border-radius: 10px;
    padding: 7px 15px;
    border: none;
}
.strategy .right-div form button:hover{
    background-color: var(--orange);
}

/*-----map section style -----*/
.map{
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.map iframe{
    width: 100%;
    height: 700px;
}
.map .location{
    position: absolute;
    left: 10%;
    background-color: var(--dark-blue);
    padding: 20px 30px;
    border-radius: 10px;
}
.map .location h2{
    font-size: 24px;
    color: var(--orange);
    font-family: como-bold;
}
.map .location div{
    display: flex;
    margin-top: 25px;
    gap: 10px;
    align-items: center;
    font-family: 'Como-Medium';
    font-size: 20px;
}
.map .location div img{
    filter: invert(52%) sepia(81%) saturate(1135%) hue-rotate(349deg) brightness(102%) contrast(91%);
    width: 35px;
}
.map .location div p{
    color: var(--white);
    font-size: 16px;
}
.map .location div a{
    color: var(--white);
}
.map .location div a:hover{
    color: var(--orange);
}
.map .location hr{
    background-color: var(--orange);
    margin: 30px 0;
    height: 1px;
    width: 100%;
    opacity: 1;
    border: none;
}
.map .location .follow{
    flex-direction: column;
    align-items: flex-start;
}
.map .location .follow .link{
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}
.map .location .follow .link img{
    filter: none;
    width: 30px;
}
.map .location .follow .link img:hover{
    filter: invert(52%) sepia(81%) saturate(1135%) hue-rotate(349deg) brightness(102%) contrast(91%);
}

/*----------responsive----------*/
@media only screen and (max-width: 767px){
    .strategy .left-div p{
        max-width: 100%;
    }
    .strategy .right-div .main-div{
        justify-content: center;
    }
    .strategy .right-div img{
        display: none;
    }
    .strategy .right-div form{
        width: 80%;
        margin-top: 30px;
    }
    .map{
        display: block;
    }
    .map .location{
        position: unset;
        max-width: 330px;
        margin: 30px auto;
    }
    .map iframe {
        height: 500px;
    }
}

/*----------tab screen----------*/
@media only screen and (min-width: 768px) and (max-width: 991px){
    .strategy .left-div p{
        max-width: 100%;
    }
    .strategy .right-div .main-div{
        justify-content: center;
        margin-top: 50px;
    }
}

/*-----privacy page style-----*/
.privacy h1,
.privacy h2,
.privacy h3,
.privacy h4,
.privacy h5,
.privacy h6{
    margin-bottom: 15px;
    font-family: Como-ExtraBold;
}
.privacy a {
    color:  var(--orange);
    text-decoration: none;
    font-family: Como-Medium;
}
.privacy a:hover{
    color:  var(--yellow);
}
.privacy li, .privacy i, .privacy p {
    font-size: 18px;
    font-family: Como-Medium;
}
.privacy i{
    margin-bottom: 15px;
    float: left;
    width: 100%;
}

/*-----------------------------------------------------------------------------------------------------------------ULUX page css ---*/

.action_wrapper {
    background-color: var(--white);
}
.action_wrapper .row:first-child h2 {
    font-family: Como-Light;
    font-size: 33px;
    color: var(--dark-blue);
}
.action_wrapper .row:first-child h3 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
}
.action_wrapper .row:first-child h3::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.action-slider {
    margin: 40px -15px;
}
.action_wrapper .slider-item {
    padding: 30px 0px 0px 0px;
}
.card-box {
    background-color: var(--yellow);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    margin: 15px;
}
.card-box:hover {
    box-shadow: 0px 0px 15px 3px var(--dark-blue);
    transform: translateY(-10px);
}
.card-box:hover .img-container img {
    transform: translateY(calc(-100% + 400px));
}
.content-box {
    padding: 25px 20px;
    min-height: 165px;
}
.content-box h4 {
    font-family: Como-ExtraBold;
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.content-box p {
    font-family: Como-SemiBold;
    font-size: 18px;
    color: var(--dark-blue);
    line-height: 1.4;
}
.img-container {
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 0px;
    margin: 0px;
    background:var(--white);
}
.img-container img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    transition: transform 4s ease-in-out;
}
.browser-dots {
    padding: 10px 15px;
    display: flex;
    gap: 5px;
}
.browser-dots span {
    width: 10px;
    height: 10px;
    background-color:var(--dark-blue);
    border-radius: 50%;
    display: inline-block;
}
.browser-dots span:last-child {
    background-color: var(--orange);
}
.action-slider .slick-dots {
    text-align: right;
    bottom: -40px;
    padding-right: 15px;
}
.action-slider .slick-dots li.slick-active button:before {
    color: var(--yellow);
}

.action_wrapper .slick-dots li button:before {
    color: #fff !important;
    font-size: 12px;
}
.action_wrapper .slick-dots li.slick-active button:before {
    color: var(--yellow) !important;
}
.action_wrapper .slick-dots li {
    display: none !important;
}
.action_wrapper .slick-dots li:nth-child(1),
.action_wrapper .slick-dots li:nth-child(2),
.action_wrapper .slick-dots li:nth-child(3) {
    display: inline-block !important;
}
.action_wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    background:var(--lightgray);
    border-radius: 50%;
    border: none;
    font-size: 0;
    padding: 0;
    transition: all 0.3s ease;
}
.action_wrapper .slick-dots li.slick-active button {
    background: var(--yellow);
    width: 14px;
    height: 14px;
}
.action_wrapper .slick-dots li button:before {
    display: none !important;
}
.banner_wrapper_v3 {
    position: relative;
    overflow: hidden;
}
.banner_wrapper_v3 .side_gallery_wrapper {
    position: absolute;
    top: -10%;
    right: 0%;
    width: 50%;
    height: 120%;
    z-index: 0;
    padding-right: 15%;
}
.banner_wrapper_v3 .gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(255, 193, 7, 0.4) 7%, rgba(255, 193, 7, 0.8) 100%);
    z-index: 0;
    pointer-events: none;
}
.banner_wrapper_v3 .gallery_track {
    display: flex;
    gap: 25px;
    transform: rotate(0deg) skewX(-15deg);
    height: 100%;
}
.banner_wrapper_v3 .col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.banner_wrapper_v3 .col img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}
.banner_wrapper_v3 .col_up {
    animation: scrollUp 25s linear infinite;
}
.banner_wrapper_v3 .col_down {
    animation: scrollDown 25s linear infinite;
}
@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}
@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}
.banner_wrapper_v3 .container {
    position: relative;
    z-index: 10;
}
.commercial-goals_wrapper {
    background-color: var(--white);
}
.commercial-goals_wrapper .row {
    margin: 0;
    align-items: center;
}
.commercial-goals_wrapper .row .col-xl-6 div img {
    width: 100%;
    height: 100%;
}
.commercial-goals_wrapper .row .col-xl-6:first-child {
    padding-left: 5%;
}
.commercial-goals_wrapper .row .col-xl-6:last-child {
    padding-right: 10%;
    padding-left: 2%;
}
.commercial-goals_wrapper .row .col-xl-6:last-child h2 {
    font-family: Como-Light;
    font-size: 33px;
    color: var(--dark-blue);
}
.commercial-goals_wrapper .row .col-xl-6:last-child h3 {
    font-family: Como-ExtraBold;
    color: var(--dark-blue);
    font-size: 40px;
    position: relative;
    margin-bottom: 20px;
}
.commercial-goals_wrapper .row .col-xl-6:last-child h3::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.commercial-goals_wrapper .row .col-xl-6:last-child p {
    font-family: Como-SemiBold;
    font-size: 20px;
    color: var(--black);
}
.commercial-goals_wrapper .row .col-xl-6:last-child .styled-button {
    justify-content: left;
}
.solutions_wrapper {
    background-image: url(../images/banner/banner-img-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height:100%;
}
.solutions_wrapper::before {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--black);
    opacity: 0.45;
    width: 100%;
    height: 100%;
}
.solutions_wrapper .row:first-child .col-xl-12 h2 {
    color: var(--yellow);
    font-size: 40px;
    font-family: Como-Regular;
    margin-bottom: 30px;
    position: relative;
}
.solutions_wrapper .row:first-child .col-xl-12 h2 span {
    font-family: Como-ExtraBold;
}
.solutions_wrapper .row:first-child .col-xl-12 h2::after {
    content: " ";
    position: absolute;
    bottom: -10px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.solutions_wrapper .row:last-child {
    margin-top: 20px;
}
.solutions_slider {
    margin: 0 -15px;
}
.solution_item {
    padding: 0 15px;
    outline: none;
}
.solution_card {
    position: relative;
    padding: 80px 20px 40px;
    border-radius: 25px;
    min-height: 100%;
    background-color: var(--yellow);
    color: var(--dark-blue);
    transition: all 0.4s ease;
    cursor: pointer;
    margin-top: 70px;
}
.solution_card:hover {
    background-color: var(--white);
    transform: translateY(-10px);
}
.solution_card:hover .icon_box {
    background-color: var(--white);
}
.icon_box {
    box-shadow: 0px 3px 6px 7px var(--black);
    position: absolute;
    top: -45px;
    left: 33%;
    width: 33%;
    height: 90px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.icon_box img {
    width: 40px;
    filter: brightness(0) saturate(100%) invert(9%) sepia(23%) saturate(2230%) hue-rotate(225deg) brightness(86%) contrast(96%);
}
.solution_card h3 {
    font-size: 25px;
    font-family: Como-ExtraBold;
    margin-bottom: 15px;
    line-height: 1.2;
    height: 90px;
    overflow: hidden;
}
.solution_card p {
    font-size: 18px;
    font-family: Como-SemiBold;
    height: 108px;
    overflow: hidden;
}
.solutions_wrapper .slick-dots li button:before {
    color: #fff !important;
    font-size: 12px;
}
.solutions_wrapper .slick-dots li.slick-active button:before {
    color: var(--yellow) !important;
}
.solutions_wrapper .slick-dots li {
    display: none !important;
}
.solutions_wrapper .slick-dots li:nth-child(1),
.solutions_wrapper .slick-dots li:nth-child(2),
.solutions_wrapper .slick-dots li:nth-child(3) {
    display: inline-block !important;
}
.solutions_wrapper .slick-dots {
    bottom: -50px;
    text-align: center;
    padding: 0;
}
.solutions_wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    background:var(--dark-blue);
    border-radius: 50%;
    border: none;
    font-size: 0;
    padding: 0;
    transition: all 0.3s ease;
}
.solutions_wrapper .slick-dots li.slick-active button {
    background: var(--yellow);
    width: 14px;
    height: 14px;
}
.solutions_wrapper .slick-dots li button:before {
    display: none !important;
}


@media only screen and (max-width: 575px) {
    .banner_wrapper_v3 .side_gallery_wrapper {
        display: none;
        right: 0px;
    }
    .solutions_slider {
        margin: 0;
    }
    .action-slider {
        margin: 0;
    }
    .commercial-goals_wrapper .row {
        gap: 30px;
    }
    .commercial-goals_wrapper .row .col-xl-6:last-child h2, .action_wrapper .row:first-child h2 {
                font-size: 25px;
    }
    .commercial-goals_wrapper .row .col-xl-6:last-child h3, .action_wrapper .row:first-child h3 {
        font-size: 28px;
    }
    .commercial-goals_wrapper .row .col-xl-6:last-child p {
        font-size: 18px;
    }
    .solutions_wrapper .row:first-child .col-xl-12 h2 {
        font-size: 33px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner_wrapper_v3 .side_gallery_wrapper {
        display: none;
        right: 0px;
    }
    .commercial-goals_wrapper .row {
        gap: 30px;
    }
    .commercial-goals_wrapper .row .col-xl-6:first-child {
        padding-left: 15px;
    }
    .commercial-goals_wrapper .row .col-xl-6:last-child {
        padding-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner_wrapper_v3 .side_gallery_wrapper {
        padding-right: 3%;
        padding-left: 3%;
    }
    .banner_wrapper_v3 .gallery_track {
            transform: rotate(0deg) skewX(0deg);
    }
    .commercial-goals_wrapper .row .col-xl-6:last-child h2 {
                font-size: 25px;
    }
    .commercial-goals_wrapper .row .col-xl-6:last-child h3 {
        font-size: 28px;
    }
    .commercial-goals_wrapper .row .col-xl-6:last-child p {
        font-size: 18px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1350px) {
    .banner_wrapper_v3 .gallery_track {
        transform: rotate(0deg) skewX(-10deg);
    }
    .banner_wrapper_v3 .side_gallery_wrapper {
        padding-right: 4%;    
    }
}


/*--------------------------------------------------------------------------------404 page & terms-conditions css --------*/

.error_section {
    background-color: var(--white);
    padding: 20px 0px;
}
.error_section .container div {
    width: 100%;
    height: 100%;
}
.error_section .container div img {
    width: 100%;
    height: 100%;
}


.terms-conditions_section {
    background-color: var(--white);
    padding: 50px 0px;
}
.terms-conditions_section .row .col-xl-12 h2 {
    font-size: 40px;
    color: var(--dark-blue);
    font-family: 'Como-ExtraBold';
    position: relative;
    margin-bottom: 60px;
}
.terms-conditions_section .row .col-xl-12 h2::after {
    content: " ";
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 3px;
    left: 0;
    background-color: var(--yellow);
}
.terms-conditions_section .row .col-xl-12 div {
    margin: 30px 0px;
}
.terms-conditions_section .row .col-xl-12 div h3 {
    font-size: 33px;
    color: var(--dark-blue);
    font-family: 'Como-ExtraBold';
    margin-bottom: 10px;
}
.terms-conditions_section .row .col-xl-12 div p {
    font-size: 20px;
    color: var(--black);
    font-family: Como-SemiBold;
}
@media only screen and (max-width: 767px) {
    .terms-conditions_section .row .col-xl-12 h2 {
        font-size: 33px;
    }
    .terms-conditions_section .row .col-xl-12 div h3 {
        font-size: 27px;
    }
    .terms-conditions_section .row .col-xl-12 div p {
        font-size: 18px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .terms-conditions_section .row .col-xl-12 h2 {
        font-size: 37px;
    }
    .terms-conditions_section .row .col-xl-12 div h3 {
        font-size: 30px;
    }
    .terms-conditions_section .row .col-xl-12 div p {
        font-size: 20px;
    }
}