/* INDEX PAGE*/
/* 
01.Home Page 
02.AboutUS Page
03.Service Page
04.Portfolio Page
05.ContactUs Page
 */


/* ........................... */
/* Fonts */
/* ........................... */


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap');

/* dm-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/dm-sans-v14-latin-regular.woff2') format('woff2');
}

/* dm-sans-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/dm-sans-v14-latin-500.woff2') format('woff2');
}

/* dm-sans-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/dm-sans-v14-latin-700.woff2') format('woff2');
}

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,500&display=swap');


/* newsreader-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/newsreader-v20-latin-regular.woff2') format('woff2');
}

/* newsreader-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/newsreader-v20-latin-500.woff2') format('woff2');
}

/* ........................... */
/* Comman Css */
/* ........................... */

html {
    font-size: 10px;
}

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

body {
    font-family: 'DM Sans';
    font-size: 2rem;
    background-color: var(--color-White);
    overflow-x: hidden;
}


/* width */
body::-webkit-scrollbar {
    width: 6px;
    border-radius: 15px;
}

/* Track */
body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 15px;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: hsla(0, 0%, 0%, 0.30);
    border-radius: 15px;
}


.content {
    height: 100%;
    overflow-y: hidden;
    padding-right: 20px;
    box-sizing: border-box;
    scrollbar-width: none;
}

.row {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    padding: 0;
    margin: 0;
    list-style: none;
}


:root {
    --color-dark-black: #181818;
    --color-light-black: #3E3B39;
    --gradient: linear-gradient(90.31deg, #082C6F 0.13%, #1DB1BE 99.61%);
    --color-White: #fff;
    --color--bg-White: #FAFAFA;
}

h1 {
    font-size: 6.4rem;
    line-height: 7.4rem;
}

h2 {
    font-size: 6rem;
    line-height: 8rem;
}

h3 {
    font-size: 4rem;
    line-height: 5.2rem;
}

h4 {
    font-size: 3rem;
    line-height: 3.4rem;
}

h5 {
    font-size: 2.4rem;
    line-height: 3.4rem;
}

h6 {
    font-size: 2rem;
    line-height: 3.4rem;
}

a {
    text-decoration: none;
}

.containerX {
    margin: 0 24rem;
}

.mb50 {
    margin-bottom: 50rem;
}

.section_margintop {
    margin-top: 10rem;
}

.thames_btns {
    background-image: var(--gradient);
    border-radius: 4.5rem;
    margin: 0 auto;
    padding: 2px 2px 4px 2px;
    border: 0;
    background-color: transparent;
    position: relative;
}

.thames_btns:hover {
    color: var(--color-White);
}

.thames_btns p {
    align-items: center;
    background-color: var(--color-White);
    border-radius: 4.5rem;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    transition: background .5s ease;
    font-weight: 700;
}

.thames_btns:hover p {
    background: transparent;
    color: var(--color-White);
}

.thames_btns span {
    padding: 1.1rem 2.4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thames_btns span:hover {
    background: var(--color-White);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thames_btns:hover span {
    background: var(--color-White);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */

.navbar_section {
    position: fixed;
    bottom: 30px;
    width: 100%;
    transition: all 400ms linear;
    z-index: 2;
}

.top_Ziindex {
    z-index: 50 !important;
}

.navbar_section .headar_bar {
    background-color: #181818;
    box-shadow: 0px 0px 30px 0px #0000001A, 0px 0px 2px 0px #0000001A;
    margin: 0 auto;
    border-radius: 2.4rem;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
}

.navbar_contant .navbar_Ul {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.navbar_contant .navbar_link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #F0F0F0B2;
    font-weight: 500;
    font-size: 18px;
    transition: text-shadow .3s;
}

.navbar_contant .navbar_link:hover,
.navbar_contant .navbar_link.active {
    color: #FFFFFF;
    text-shadow: 0 0 .65px #FFFFFF, 0 0 .65px #FFFFFF;
}

.navbar_logo {
    position: relative;
}

.navbar_logo p {
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    text-align: center;
    font-size: 7px;
    position: absolute;
    color: white;
    top: 0;
    right: -10%;
    line-height: 8.5px;
}

.Services_menu {
    padding: 3rem;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}



.Services_items:hover .Services_menu {
    opacity: 1;
    bottom: 75px;
    visibility: visible;
}

.Services_items .Services_menu.active {
    visibility: hidden;
    opacity: 0;
}

.Services_items .navbar_link {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

.Services_items .navbar_link svg {
    transition: 0.3s;
}

.Services_items:hover .navbar_link svg {
    rotate: 180deg;
}

.Services_menu::after {
    position: absolute;
    bottom: -10px;
    right: 50%;
    content: '';
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 2;
    filter: drop-shadow(0px -3px 4px rgba(0, 0, 0, 0.07));
    rotate: 180deg;
}

.Services_menu_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
    row-gap: 3.4rem;
}

.Services_menu_items li a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.Services_menu_items li p {
    font-size: 1.8rem;
    color: var(--color-light-black);
    white-space: nowrap;
    transition: text-shadow .3s;
}

.Services_menu_items li:hover p {
    color: var(--color-dark-black);
    text-shadow: 0 0 .65px var(--color-dark-black), 0 0 .65px var(--color-dark-black);
}

.Services_menu_items li.active p {
    text-shadow: 0 0 .65px var(--color-dark-black), 0 0 .65px var(--color-dark-black);
}

.Viewall_services_btn {
    margin: 0 auto;
    margin-top: 3.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 4.3rem;
    font-size: 1.4rem;
    color: var(--color-light-black);
    background-color: #F6F6F6;
    border: 0;
    border-radius: 5px;
}

.Viewall_services_btn:hover {
    background-color: #DEDEDE;
}

.Viewall_services_btn span {
    font-weight: 600;
}

.socialmediafooter_section {
    position: inherit !important;
    gap: 2rem !important;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    transform: inherit !important;
}

.socialmedia_section {
    display: grid;
    align-content: center;
    gap: 2rem;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 5rem;
    z-index: 1;
}

.socialmedia_section li a {
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1818184D;
    border-radius: 50%;
    color: var(--color-dark-black);
    transition: .3s;
    position: relative;
    overflow: hidden;
    transition: background .5s ease;
}

.socialmedia_section li a:hover {
    color: var(--color-White);
    background-color: var(--color-dark-black);
}

.portfoliodownload_section {
    position: fixed;
    pointer-events: auto;
    bottom: 40px;
    right: 0px;
    z-index: 60;
    opacity: 1;
    transition: opacity 0.2s ease-in-out 0.2s;
}

.portfoliodownload_section::before {
    content: "";
    position: absolute;
    top: -5rem;
    right: -0.1rem;
    height: 5.1rem;
    width: 3.2rem;
    z-index: -1;
    cursor: pointer;
    background-color: transparent;
    border-bottom-right-radius: 3.2rem;
    box-shadow: var(--color-dark-black) 0px 2.5rem 0px 0px;
}

.portfoliodownload_section::after {
    content: "";
    position: absolute;
    bottom: -5rem;
    right: -0.1rem;
    height: 5.1rem;
    width: 3.2rem;
    z-index: -1;
    cursor: pointer;
    background-color: transparent;
    border-top-right-radius: 3.2rem;
    box-shadow: var(--color-dark-black) 0px -2.5rem 0px 0px;
}

.Download_shapebtn {
    transition: transform 0.5s ease-in-out 0s;
    background-color: var(--color-dark-black);
    border-top-left-radius: 3.9rem;
    border-bottom-left-radius: 3.9rem;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    padding: 1rem 1.5rem 1rem 1.5rem;
    width: auto;
    transform: translateX(10rem);
    color: var(--color-dark-black);
}

.Download_shapebtn:hover {
    transform: translateX(0rem);
}

.download_arrow {
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    color: var(--color-dark-black);
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(-90deg, #F2CAF8, #A8E6F8, #BBF5AB, #FAFFB7, #B7B2F6, #F8DBA1);
    background-size: 1000% 1000%;
    animation: gradient 7s ease infinite;
}

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

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

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

.download_arrow i {
    font-weight: 700;
}

.Download_portfolio_txt {
    padding-left: 20px;
}

.Download_portfolio_txt div {
    color: #BEBEBE;
    font-size: 1.4rem;
    font-weight: 400;
}

.Download_portfolio_txt p {
    text-transform: uppercase;
    color: var(--color-White);
    font-size: 1.4rem;
    font-weight: 700;
}

.progress-circle-container {
    position: fixed;
    bottom: 4rem;
    left: 5rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    background-color: var(--color-dark-black);
    cursor: pointer;
    border-radius: 50%;
}

.progress-circle-container.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-circle {
    width: 60px;
    height: 60px;
}

.progress-circle-bar {
    fill: none;
    stroke: #1DB5C1;
    stroke-width: 5;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transform-origin: center;
    transition: stroke-dashoffset 0.3s ease;
    border-radius: 20px;
    stroke-linecap: round;
    rotate: -90deg;
}

.progress-background {
    fill: transparent;
    stroke: #A2A2A2;
    stroke-width: 5;
    stroke-dasharray: none;
}

.pulsating-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 54px;
    height: 54px;
    z-index: -1;
}

.pulsating-circle:before {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 50%;
    background-color: #888787ad;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

.WhatWeDo_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
    background-image: url(../imges/what-wedo-bg.png);
    background-repeat: repeat;
    background-position: center;
    padding: 14rem 24rem;
    align-items: center;
    position: relative;
}

.bg_WhatWeDo {
    background-color: #FAFAFA;
}

.text-anim {
    display: flex;
    align-items: center;
}

.WhatWeDo_contant h2 {
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
}

.WhatWeDo_contant .WhatWeDo_contant_txt {
    margin-top: 3rem;
    line-height: 3.4rem;
}

.WhatWeDo_contant button,
.WhatWeDo_contant a {
    margin-top: 6rem;
}

.whatwedo_icon {
    position: absolute;
    top: 12%;
    right: 18%;
    animation: semi-rotate-anim 10s cubic-bezier(.4, 0, .2, 1) infinite;
}

.whatwedo_two_icon {
    position: absolute;
    bottom: 10%;
    right: 30%;
    animation: semi-rotate-anim 10s cubic-bezier(.4, 0, .2, 1) infinite;
}

/* Services_WeProvide_section */
.Services_WeProvide_section {
    display: grid;
    grid-template-columns: auto 70rem;
    grid-gap: 14rem;
    align-items: center;
    margin-top: 20rem;
}

.Appointment_btn {
    margin-top: 4rem !important;
}

.main_box {
    width: 60rem;
    height: 60rem;
    border: 2px solid black;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.boxitems {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--color-dark-black);
    position: absolute;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxitems::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin 15s linear infinite;
    border-radius: 50%;
}

@keyframes spin {
    100% {
        transform: rotateZ(360deg);
    }
}

.boxitems.active::after {
    border: 2px var(--color-dark-black) dashed;
}

.boxitems_1 {
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
}

.boxitems_2 {
    top: 30%;
    left: -75px;
    transform: translateY(-30%);
}

.boxitems_3 {
    top: 30%;
    right: -75px;
    transform: translateY(-30%);
}

.boxitems_4 {
    bottom: 0;
    right: 0;
}

.boxitems_5 {
    bottom: 0;
    left: 0;
}

.main_box .boxitems:nth-child(1).active {
    background-color: #A8E6F8;
    border: 0;
}

.main_box .boxitems:nth-child(2).active {
    background-color: #F8DBA1;
    border: 0;
}

.main_box .boxitems:nth-child(3).active {
    background-color: #FAFFB7;
    border: 0;
}

.main_box .boxitems:nth-child(4).active {
    background-color: #BBF5AB;
    border: 0;
}

.main_box .boxitems:nth-child(5).active {
    border: 0;
    background-color: #F2CAF8;
}

.boxitems1_content,
.boxitems2_content,
.boxitems3_content,
.boxitems4_content,
.boxitems5_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
    width: 70%;
}

.servicesitems h2 {
    color: #181818;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Newsreader';
    font-weight: 600;
    white-space: nowrap;
}

.services_one_icon {
    position: absolute;
    top: 0;
    right: 0;
    animation: semi-rotate-anim 12s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes semi-rotate-anim {
    50% {
        -webkit-animation-timing-function: cubic-bezier(.4, 0, .2, 1);
        animation-timing-function: cubic-bezier(.4, 0, .2, 1);
        -webkit-transform: translateY(25px) rotate(-53deg);
        transform: translateY(25px) rotate(-53deg);
    }
}

.services_two_icon {
    position: absolute;
    bottom: 0;
    left: 15%;
    animation: animo-x 8s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes animo-x {
    50% {
        -webkit-animation-timing-function: cubic-bezier(.4, 0, .2, 1);
        animation-timing-function: cubic-bezier(.4, 0, .2, 1);
        -webkit-transform: translateX(44px);
        transform: translateX(44px);
    }
}

/* .Our-Portfolio section  */

.main-div {
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 9999;
}

.gallery_section {
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
    background-color: #d2dadf;
}

.gallery_section .col {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    align-self: flex-start;
    justify-self: flex-start;
    gap: 30px;
}

.gallery_section .col:nth-child(2) {
    align-self: flex-end;
    justify-self: flex-end;
}

.gallery_section .col .image {
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
}

.gallery_section .border-redius-left .image {
    border-radius: 0 20px 20px 0;
}

.gallery_section .border-redius-right .image {
    border-radius: 20px 0 0 20px;
}

/* Our-Process section */

.OurProcess_contant {
    max-width: 55%;
    margin: 0 auto;
}

.OurProcess_cardssection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 8rem;
    margin-top: 15rem;
    position: relative;
    z-index: 1;
}

.OurProcess_images {
    position: relative;
}

.count_txt {
    position: absolute;
    z-index: -1;
    top: -40px;
    right: 40px;
}

.OurProcess_icon {
    width: 14.5rem;
    height: 14.5rem;
    border-radius: 50%;
    padding: 1.7rem;
    background-color: var(--color--bg-White);
    margin: 0 auto;
}

.OurProcess_icon .icon_box {
    box-shadow: 8px 8px 20px 8px #0000001A;
    width: 100%;
    height: 100%;
    background-color: var(--color--bg-White);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow_patten {
    position: absolute;
    top: -100px;
}

.OurProcess_hading {
    margin: 2rem 0;
    font-weight: 600;
    color: var(--color-dark-black);
}

.blue_boders {
    border: #A8E6F8 5px solid;
}

.yellow_boders {
    border: #F8DBA1 5px solid;
}

.green_boders {
    border: #BBF5AB 5px solid;
}

.pink_boders {
    border: #F2CAF8 5px solid;
}

.OurProcess_text {
    font-size: 1.6rem;
    line-height: 3rem;
    color: var(--color-light-black);
    text-align: center;
}

.counter_section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4.4rem;
    padding: 0 18.5rem;
    position: relative;
}

.counter_items {
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0px 5px 40px 5px #26478B14;
}

.counter_items:nth-child(1) {
    background-color: #F8DBA1;
}

.counter_items:nth-child(2) {
    background-color: #F8A1A1;
}

.counter_items:nth-child(3) {
    background-color: #B7B2F6;
}

.counter_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.counter_text h2 {
    color: #21273D;
    font-weight: 700;
}

.projects_name {
    margin-top: 3.2rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-dark-black);
}

.ourprocess_right_icon {
    position: absolute;
    top: 0;
    right: 0;
    animation: animo-x 8s cubic-bezier(.4, 0, .2, 1) infinite;
}

.features_right_icon {
    position: absolute;
    right: 0;
    top: 30px;
    animation: animo-x 8s cubic-bezier(.4, 0, .2, 1) infinite;
}

.features_left_icon {
    position: absolute;
    left: 0;
    bottom: 0;
    animation: semi-rotate-anim 10s cubic-bezier(.4, 0, .2, 1) infinite
}

.Features_section {
    padding-bottom: 10rem;
}

.main_section {
    display: flex;
    align-items: center;
    margin-top: 5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.main_section .shadow_items:nth-child(5),
.main_section .shadow_items:nth-child(6),
.main_section .shadow_items:nth-child(7) {
    margin-top: -55px;
}

.shpes_items {
    display: inline-block;
    width: 360px;
    height: 355px;
    background-color: #1818181A;
    -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shpes_items::after {
    content: '';
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: rgb(255, 255, 255);
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    -webkit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}

.shadow_items {
    filter: drop-shadow(0px 0px 14px #1818181A);
    margin-right: -10px;
}

.Features_contant {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 100%;
    text-align: center;
    padding: 3rem;
    height: calc(100% - 30px);

    -webkit-transform: translate(-50%, -50%);
    /* WebKit-specific transform */
    -webkit-text-size-adjust: 100%;
    /* Prevent text resizing on Safari */
    -webkit-overflow-scrolling: touch;
}

.hexagon_nametxt {
    color: #181818;
    font-size: 20px;
    font-weight: 700;
    line-height: 3rem;
    margin-bottom: 1rem;
    margin-top: 7rem;
}

.Features_contant p {
    font-size: 16px;
    color: #3E3B39;
}

.OurCoreValues_section .Features_contant p {
    font-size: 15px;
}

.shpes_items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(.8);
    transition: all .2s;
    opacity: 0;
    background-color: #A8E6F8;
    z-index: 1;
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);

    -webkit-clip-path: polygon(45% 1.34%, 46.58% 0.6%, 48.26% 0.15%, 50% 0%, 51.74% 0.15%, 53.42% 0.6%,
            55% 1.34%, 89.64% 21.34%, 91.07% 22.34%, 92.3% 23.57%, 93.3% 25%, 94.04% 26.58%, 94.49% 28.26%,
            94.64% 30%, 94.64% 70%, 94.49% 71.74%, 94.04% 73.42%, 93.3% 75%, 92.3% 76.43%, 91.07% 77.66%,
            89.64% 78.66%, 55% 98.66%, 53.42% 99.4%, 51.74% 99.85%, 50% 100%, 48.26% 99.85%, 46.58% 99.4%,
            45% 98.66%, 10.36% 78.66%, 8.93% 77.66%, 7.7% 76.43%, 6.7% 75%, 5.96% 73.42%, 5.51% 71.74%,
            5.36% 70%, 5.36% 30%, 5.51% 28.26%, 5.96% 26.58%, 6.7% 25%, 7.7% 23.57%, 8.93% 22.34%,
            10.36% 21.34%);
}

.shpes_items:hover::before {
    transform: scale(1);
    opacity: 1;
}

.main_section .shadow_items:nth-child(2) .shpes_items::before {
    background-color: #F2CAF8;
}

.main_section .shadow_items:nth-child(3) .shpes_items::before {
    background-color: #BBF5AB;
}

.main_section .shadow_items:nth-child(4) .shpes_items::before {
    background-color: #F8DBA1;
}

.main_section .shadow_items:nth-child(5) .shpes_items::before {
    background-color: #B7B2F6;
}

.main_section .shadow_items:nth-child(6) .shpes_items::before {
    background-color: #FAFFB7;
}


.main_section .shadow_items:nth-child(7) .shpes_items::before {
    background-color: #F8A1A1;
}

.Features_icon {
    transition: 500ms ease;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shpes_items:hover .Features_icon {
    transform: scale(1.2);
}

/* Technologies  */
.third_section {
    position: relative;
}

.third_sec_text {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid {
    display: flex;
    justify-content: center;
}

.grid_image {
    margin-top: 0%;
}

.third_container {
    overflow-x: hidden;
    position: relative;
}

#js {
    position: relative;
    top: -24.2rem;
    left: 705%;
}

.K {

    position: relative;
    top: -27.7rem;
    left: 680.5%;
}

.red {
    position: relative;
    top: -31rem;
    left: 655.5%;
}

.A {
    position: relative;
    top: -40.3rem;
    left: 545.5%;
}

.mongo {
    position: relative;
    top: -47.2rem;
    left: 517.5%;
}

._html {
    position: relative;
    top: -53.6rem;
    left: 489.5%;
}

.android {
    position: relative;
    top: -60.1rem;
    left: 452.6%;
}

.apple {
    position: relative;
    top: -32.8rem;
    left: 213%;
}

.assus {
    position: relative;
    top: -39.5rem;
    left: 184.3%;
}

.vanilla {
    position: relative;
    top: -46.3rem;
    left: 152.7%;
}

.react {
    position: relative;
    top: -39.1rem;
    left: 121.7%;
}

.obj_c {
    position: relative;
    top: -25.8rem;
    left: -222.5%;
}

.css {
    position: relative;
    top: -14rem;
    left: -172.5%;
    opacity: 0;
}

.yellow {
    position: relative;
    top: -32.3rem;
    left: -247.7%;
}

.python {
    position: relative;
    top: -45.9rem;
    left: -209.5%;
}

.aws {
    position: relative;
    top: -32.6rem;
    left: -314.5%;
}

.ui {
    position: relative;
    top: -18.9rem;
    left: -552.3%;
}

.expo {
    position: relative;
    top: -25.9rem;
    left: -583.7%;
}

.arrow {

    position: relative;
    top: -20.8rem;
    left: -571.5%;
}

.cloud {
    position: relative;
    top: -39.5rem;
    left: -545.1%;
}

.node {
    position: relative;
    top: -30.9rem;
    left: -843.5%;
}

.grid-container {
    display: flex;
    justify-content: center;
}

.newitems {
    position: absolute;
    top: 8.4rem;
    left: 52%;
}

.technologies_lefticon {
    position: absolute;
    bottom: 20%;
    left: 10%;
}

.technologies_righticon {
    position: absolute;
    right: 0;
    top: -10%;
}

/* ContactUs_ctasection */

.ContactUs_ctasection {
    padding: 5.4rem 0;
    background-image: url(../imges/what-wedo-bg.png);
    background-repeat: repeat;
    background-position: center;
    background-color: #FAFAFA;
}

.ContactUs_bgremove {
    background-image: none;
    background-color: #ffffff;
}

.ContactUscta_items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ContactUscta_contant {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.ContactUscta_contant h2 {
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
    line-height: 6rem;
}

/* Our Client */

.OurClient_section {
    padding: 0 13rem;
    margin-top: 6rem;
}

.card_client {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px #0000000D;
    background-color: white;
}

.client_name {
    height: 90px;
    background-color: #a7e6f8;
    width: 100%;
    position: relative;
}

.client_name p {
    margin: 0;
    padding: 1rem 3rem;
    font-size: 2rem;
    font-weight: 700;
}

.client_name span {
    font-size: 1.6rem;
    color: #000000;
    font-weight: 500;
}

.white_bg {
    position: absolute;
    background-color: white;
    height: 40px;
    bottom: 0;
    z-index: 1;
    left: 0;
    width: 60%;
}

.client_contant {
    width: 70%;
    font-size: 1.6rem;
    line-height: 3rem;
    overflow: auto;
    padding-right: 1rem;
}

/* width */
.client_contant::-webkit-scrollbar {
    width: 3px;
    border-radius: 20px;
}

/* Track */
.client_contant::-webkit-scrollbar-track {
    border-radius: 20px;
    /* background: #f1f1f1; */
}

/* Handle */
.client_contant::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 20px;
}


.white_bg::after {
    content: '';
    position: absolute;
    width: 0;
    right: -40px;
    height: 0;
    border-bottom: 40px solid rgb(255, 255, 255);
    border-right: 40px solid transparent;
}

.OurClient_section .owl-stage-outer {
    padding: 2rem 0;
}

.OurClient_section .OurClient_slider .item {
    margin: 0 10px;
}

.client_iamge {
    width: 13.5rem;
    height: 13.5rem;
    border: 2px solid #181818;
    border-radius: 50%;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    margin-top: -5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client_iamge img {
    border-radius: 50%;
    width: auto !important;
}

.clientbox_items {
    padding: 0 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    height: 19rem;
}

.review_items {
    margin-top: 2rem;
}

.review_items p {
    color: #6C6A72;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.4rem;
}

.review_items img {
    width: auto !important;
    margin: 0 auto;
}

.client_bgicon img {
    position: relative;
    bottom: -70px;
}

.parple_bg {
    background-color: #B7B2F6;
}

.pink_bg {
    background-color: #F2CAF8;
}

.orange_bg {
    background-color: #F8DBA1;
}

.green_bg {
    background-color: #BBF5AB;
}

.yellow_bg {
    background-color: #FAFFB7;
}

.red_bg {
    background-color: #F8A1A1;
}



.OurClient_slider.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
}

.OurClient_slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 140px;
    margin-top: 45px;
}

.OurClient_slider.owl-theme .owl-dots .owl-dot span {
    margin: 0;
    background-color: #C4C4C4;
}

.OurClient_slider.owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -25px;
}

.OurClient_slider.owl-theme .owl-dots .owl-dot.active span,
.OurClient_slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #000000;
}

.ourclienticon_left {
    position: absolute;
    top: 0;
    right: 0;
}

.ourclienticon_right {
    position: absolute;
    left: 0;
    top: 45%;
}

.ourclienticon_bottom {
    position: absolute;
    bottom: -8%;
    right: 20%;
}

/* Footer section */

.Footer_section {
    padding: 10rem 0;
    background-image: url(../imges/what-wedo-bg.png);
    background-repeat: repeat;
    background-position: center;
    /* background-color: #FAFAFA; */
}

.Footer_contant {
    padding-bottom: 3rem;
    border-bottom: 1px solid #cdcdcd;
}

.footer_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Footer_contant p {
    color: var(--color-light-black);
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
}

.socialmedia_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.socialmedia_footer li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.socialmedia_footer a {
    color: var(--color-light-black);
}

.Copyright_text {
    margin-top: 3rem;
    font-size: 1.6rem;
    color: var(--color-light-black);
    text-align: center;
    opacity: 0.8;
}

.footer_left_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20%;

}

.footer_right_icon {
    position: absolute;
    right: 7%;
}

/* menu */

/* .mobile_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

}

.menuicon {
    display: flex;    
    align-items: flex-start;    
    justify-content: center;    
    text-align: left;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: 5px;    
}

.menuicon.active .menuicon__dot {
    opacity: 0;
}

.menuicon.active .menuicon__dot:nth-child(2) {
    opacity: 1;
    height: 20px;
    transform: rotate(45deg);
}

.menuicon.active .menuicon__dot:nth-child(4) {
    opacity: 1;
    width: 20px;
    transform: rotate(45deg);
}

.menuicon__wrapper {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuicon__dot {
    width: 4px;
    height: 4px;
    background: #090C08;
    transition: all cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.menuicon__dot:nth-child(2) {
    left: 8px;
}

.menuicon__dot:nth-child(3) {
    left: 16px;
}

.menuicon__dot:nth-child(4) {
    top: 8px;
}

.menuicon__dot:nth-child(5) {
    left: 8px;
    top: 8px;
}

.menuicon__dot:nth-child(6) {
    left: 16px;
    top: 8px;
}

.menuicon__dot:nth-child(7) {
    top: 16px;
}

.menuicon__dot:nth-child(8) {
    left: 8px;
    top: 16px;
}

.menuicon__dot:nth-child(9) {
    left: 16px;
    top: 16px;
} */

.hamburger {
    cursor: pointer;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: var(--color--bg-White);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* .................... */
/* About Us */
/* .................... */

.abouthero_section {
    /* background-color: #FFFFFF; */
    padding: 7rem 24rem;
    background-image: inherit;
}

.Howthe_text {
    color: #3E3B39;
    font-weight: 500;
}

.WhatWeDo_imges {
    position: relative;
}

.significant_section {
    padding: 10rem 24rem;
    position: relative;
}

#lottie-container2 {
    width: 30rem;
    height: 30rem;
    position: absolute;
    transform: rotate(-30deg);
    left: -50px;
    top: -120px;
}

#lottie-container20 {
    width: 30rem;
    height: 30rem;
    position: absolute;
    top: 0;
}

#lottie-container3 {
    width: 20rem;
    height: 20rem;
    position: absolute;
    right: 0;
    bottom: -200px;
    transform: scaleX(-1);
    rotate: -30deg;
}

#lottie-container5 {
    width: 16rem;
    height: 12rem;
    position: absolute;
    left: 40px;
    top: 10px;
}

#lottie-services1 {
    width: 35rem;
    height: 20rem;
    position: absolute;
    left: 148px;
    top: 131px;
}

#lottie-services2 {
    width: 35rem;
    height: 17rem;
    position: absolute;
    right: -110px;
    top: 60px;
}

#lottie-services7 {
    width: 7rem;
    height: 4rem;
    position: absolute;
    right: 180px;
    top: 115px;
}

#lottie-services8 {
    width: 50rem;
    height: 32rem;
    position: absolute;
    left: -190px;
    top: 26px;
    transform: scaleX(-1);
}

#lottie-container9 {
    width: 11rem;
    height: 11rem;
    position: absolute;
    left: 233px;
    top: 200px;
}

#lottie-container10 {
    width: 14rem;
    height: 14rem;
    position: absolute;
    right: -70px;
    top: 130px;
    transform: scaleX(-1);
    rotate: 90deg;
}

#lottie-services11 {
    width: 8rem;
    height: 5rem;
    position: absolute;
    right: 238px;
    top: 225px;
}

.significant_itemssection {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
}

.significant_items {
    padding: 4.5rem 3.6rem;
    border-radius: 2rem;
    position: relative;
    z-index: 0;
}

.OurMission_icon {
    padding: 4.4rem 5.3rem;
    background-color: var(--color-White);
    border-radius: 50%;
    border: 2px solid#000000;
    width: 24rem;
    height: 24rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.significant_itemssection .significant_items:nth-child(1) {
    background-color: #A8E6F8;
}

.significant_itemssection .significant_items:nth-child(2) {
    background-color: #F2CAF8;
}

.significant_itemssection .significant_items:nth-child(3) {
    background-color: #BBF5AB;
}

.significant_contant {
    margin-top: 5.7rem;
}

.significant_contant h3 {
    font-family: 'Newsreader';
    font-weight: 600;
}

.significant_contant p {
    text-align: center;
    font-size: 2.4rem;
    margin-top: 3rem;
}

.significant_items::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #000000;
    width: 0;
    height: 0;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: -1;
}

.significant_items:hover::after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    opacity: 1;
}

.OurCoreValues_section .Features_contant {
    /* width: calc(100% - 24px); */
    padding: 2rem 3.2rem;
    height: calc(100% - 24px);
}

.developer_section {
    padding: 0 17rem;
    margin-top: 6rem;
}

.developer_items {
    /* border-radius: 20px; */
    /* overflow: hidden; */
    position: relative;
    margin: 0 2rem;
    margin-top: 4rem;
}

.developer_items .developer_img {
    border-radius: 20px 20px 30px 30px;
    overflow: hidden;

}

.developer_section .col-4 {
    padding: 0;
}

.developer_img img {
    width: 100%;
}

.developer_contant {
    padding: 1.5rem 2rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.developer_contant p {
    font-size: 3rem;
    font-weight: 500;
    font-family: 'Newsreader';
}

.developer_contant span {
    font-size: 1.6rem;
    font-weight: 500;
}

.developer_section .col-lg-4:nth-child(1) .developer_contant,
.developer_section .col-6:nth-child(1) .developer_contant {
    background-color: #F2CAF8;
}

.developer_section .col-lg-4:nth-child(2) .developer_items .developer_contant,
.developer_section .col-6:nth-child(2) .developer_items .developer_contant {
    background-color: #BBF5AB;
}

.developer_section .col-lg-4:nth-child(3) .developer_items .developer_contant,
.developer_section .col-6:nth-child(3) .developer_items .developer_contant {
    background-color: #B7B2F6;
}

.developer_section .col-lg-4:nth-child(5) .developer_items .developer_contant,
.developer_section .col-6:nth-child(5) .developer_items .developer_contant {
    background-color: #A8E6F8;
}

.developer_section .col-lg-4:nth-child(4) .developer_items .developer_contant,
.developer_section .col-6:nth-child(4) .developer_items .developer_contant {
    background-color: #FAFFB7;
}

.developer_section .col-lg-4:nth-child(6) .developer_items .developer_contant,
.developer_section .col-6:nth-child(6) .developer_items .developer_contant {
    background-color: #F8DBA1;
}

.developer_contant ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.OurClients_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8.5rem;
    align-items: center;
}

.OurClients_bg {
    background-color: #FAFAFA;
}

.marquee-wrapper .containers {
    overflow: hidden;
    margin: 0 auto !important;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
    position: relative;
}

.marquee-wrapper .marquee-block {
    width: 100%;
    height: 70rem;
    overflow: hidden;
    position: relative;
    float: left;
}

.marquee-inner {
    display: block;
    width: 100%;
    position: absolute;
}

.marquee-inner.to-left {
    animation: marqueeTop 60s linear infinite;
}

.marquee-inner.to-right {
    animation: marqueeBottom 60s linear infinite;
}

.marquee-item {
    transition: all .2s ease-out;
    border-radius: 20px;
    background: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    height: 18rem;
}

@keyframes marqueeTop {
    0% {
        top: 0;
    }

    100% {
        top: -350%;
    }
}

@keyframes marqueeBottom {
    0% {
        top: -350%;
    }

    100% {
        top: 0;
    }
}

.OurClients_contant h2 {
    font-weight: 500;
    font-family: 'Newsreader';
    margin-top: 4rem;
}

.OurClients_contant p {
    margin-top: 3rem;
    line-height: 3.4rem;
}

/* .................... */
/* Services */
/* .................... */

.allServices_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5rem;
    align-items: center;
    padding-top: 10rem;
    position: relative;
}

.allServices_contant h2 {
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
}

.allServices_contant .allServices_text {
    margin-top: 3rem;
    line-height: 3.4rem;
}

.allServices_contant button,
.allServices_contant a {
    margin-top: 4rem;
}

.IndustryWeServe_section {
    padding: 10rem 0;
}

:root {
    --color-text: navy;
    --color-bg: papayawhip;
    --color-bg-accent: #ecdcc0;
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --scroll-end: calc(-100% - var(--gap));
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 4rem;
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
    min-width: 100%;
    animation: scroll-x 60s linear infinite;
}


.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}


@keyframes scroll-x {
    from {
        transform: translateX(var(0));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(0));
    }

    to {
        transform: translateY(var(--scroll-end));
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: auto;
    max-width: 100vw;
    margin-top: 5rem;
}

.wrapper--vertical {
    flex-direction: row;
    height: 100vh;
}

.Industry_items {
    display: grid;
    place-items: center;
    background: white;
    box-shadow: 0px 0px 20px 0px #0000000D;
    border-radius: 2rem;
    padding: 3rem 0;
    width: 30rem;
    border-bottom: 6px solid;
}

.Industry_items p {
    color: black;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 4px;
}

.boderbottom_pink {
    border-color: #F8A1A1;
}

.boderbottom_green {
    border-color: #BBF5AB;
}

.boderbottom_blue {
    border-color: #A8E6F8;
}

.boderbottom_pinklight {
    border-color: #F2CAF8;
}

.boderbottom_purple {
    border-color: #B7B2F6;
}

.boderbottom_yellow {
    border-color: #F8DBA1;
}

/*................*/
/*UI/UX Design  */
/*................*/

.uiuxDesign_section {
    display: grid;
    grid-template-columns: 50rem auto;
    grid-gap: 15rem;
    position: relative;
}

.fix_contant {
    position: sticky;
    top: 20px;
}

.uiux_contant h2 {
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
}

.uiux_contant p {
    margin: 3rem 0;
}

.uiux_Service li {
    border-bottom: 1px solid #000000;
    margin-bottom: 4rem;
}

.uiux_Service li p {
    font-size: 4rem;
    font-weight: 500;
    color: #000000;
}

.uiux_Service li span {
    color: var(--color-light-black);
    display: block;
    margin: 3rem 0;
}

.UsingTechnologies_section {
    display: flex;
    align-items: center;
    /* gap: 4rem; */
    justify-content: space-between;
    padding-bottom: 8rem;
    margin-top: 3rem;
}

#lottie-container4 {
    width: 20rem;
    position: absolute;
    rotate: 90deg;
    right: 160px;
    top: 0;
}

.uiux_items {
    margin-top: 3rem;
}

.uiux_items li {
    margin-top: 1.8rem;
    padding-left: 2.5rem;
    color: var(--color-dark-black);
    font-weight: 600;
    position: relative;
}

.uiux_items li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../imges/services/uiuxdesign/start-list.png);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Us */
.ContactUs_container {
    margin-left: 24rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    position: relative;
}

.ContactUs_Form {
    margin-top: 6rem;
}

.Form_input input {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #181818;
    padding: 1.2rem 2rem;
    color: #000000;
    outline: 0;
    margin-bottom: 6rem;
    background-color: transparent;
}

.Form_input input::placeholder {
    color: #3E3B3980;
}

.multiple_inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
}

.form_img {
    position: relative;
    top: 6.5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.Sendusyour_text {
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
    font-size: 3.4rem;
    text-align: center;
}

.GetInTouch_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 11rem;
    margin-top: 6rem;
    align-items: center;
}

.map_items iframe {
    width: 100%;
    height: 40rem;
}

.GetInTouch_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
}

.GetInTouch_icon {
    width: 8.8rem;
    height: 8.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg_pink {
    background-color: #F2CAF8;
}

.bg_green {
    background-color: #BBF5AB;
}

.GetInTouch_text {
    margin: 2rem 0;
    font-family: 'Newsreader';
    font-weight: 600;
}

.companydetails_items li a {
    color: #000000;
}

.companydetails_items li {
    margin-bottom: 1.2rem;
}

/* Career */
.Career_section {
    padding: 0 10rem;
    margin-top: 3rem;
    justify-content: center;
}

.Career_items {
    margin: 0 10px;
    padding: 3rem 2rem;
    background-color: var(--color--bg-White);
    box-shadow: 0px 0px 30px 0px #0000001A;
    border-radius: 15px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.Career_section .Career_items::after {
    transition: 0.5s;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: -1;
}

.Careerone:hover::after {
    background-color: #A8E6F8;
    width: 100%;
}

.Careertwo:hover::after {
    background-color: #F2CAF8;
    width: 100%;
}

.Careerthree:hover::after {
    background-color: #BBF5AB;
    width: 100%;
}

.Career_section .Career_items:hover .Career_icon {
    background-color: var(--color--bg-White);
}

.Career_icon {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.Career_section .Careerone .Career_icon {
    background-color: #A8E6F8;
}

.Career_section .Careertwo .Career_icon {
    background-color: #F2CAF8;
}

.Career_section .Careerthree .Career_icon {
    background-color: #BBF5AB;
}

.Career_contant span {
    font-size: 1.4rem;
    padding: 0 1.2rem;
    border-radius: 50px;
    border: 1px solid #181818;
    font-weight: 500;
    margin-bottom: 1.6rem;
    display: inline-block;
    background-color: var(--color-White);
}

.Career_contant h4 {
    font-family: 'Newsreader';
    font-weight: 600;
}

.Pleasesend_section {
    padding: 6.5rem 0;
    background-image: url(../imges/what-wedo-bg.png);
    background-repeat: repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.Pleasesend_section p {
    font-family: 'Newsreader';
    font-weight: 500;
    font-size: 3rem;
    color: var(--color-dark-black);
}

.Pleasesend_section a {
    background: linear-gradient(180deg, #254A8C 0%, #1DB0BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 2.8rem;
}

.CaseStudies_section {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
}

.CaseStudiesDetail_section {
    display: inherit;
}

.CaseStudiesDetail_section .CaseStudies_items {
    padding: 3rem;
}

.CaseStudies_items {
    box-shadow: 0px 0px 24px 0px #0000001A;
    border-radius: 4rem;
    padding: 2rem 2rem 4rem;
    background-color: var(--color-White);
}

.CaseStudies_items:hover .CaseStudies_img {
    transform: rotate(1.5deg);
    position: relative;
}

.CaseStudies_items .CaseStudies_img {
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.CaseStudies_items .CaseStudies_img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

.CaseStudies_items:hover .CaseStudies_img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.CaseStudies_items p {
    font-family: 'Newsreader';
    font-weight: 600;
    font-size: 3rem;
    margin-top: 4rem;
    color: #000000;
}

.CaseStudies_items a {
    font-size: 2rem;
    color: #9F9D9C;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.Result_list {
    margin-bottom: 3rem;
}

.Result_list p::after {
    position: absolute;
    top: 0;
    left: 0;
    content: url(../imges/services/uiuxdesign/start-list.png);
}

.Result_list p {
    position: relative;
    margin-top: 1rem;
    color: var(--color-dark-black) !important;
    font-weight: 700 !important;
    padding-left: 10px;
    font-size: 2rem !important;
    padding-left: 30px;
}

.client_section {
    background-image: url(../imges/casestudies/bg-section.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10rem 24rem;
    position: relative;
}

.projeact_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
}

.projeact_items .projects_img {
    position: relative;
    overflow: hidden;
}

.projeact_items .projects_img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

.projeact_items .projects_img:hover::before {
    -webkit-animation: shine2 .75s;
    animation: shine2 .75s;
}

@keyframes shine2 {
    100% {
        left: 125%;
    }
}

.projects_text {
    max-width: 40%;
    margin: 0 auto;
    margin-top: 10rem;
    text-align: center;
}

.clients_name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients_name span {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-dark-black);
    font-size: 1.6rem;
}

.clients_name p {
    text-transform: uppercase;
    color: #3E3B3980;
    font-size: 1.6rem;
    font-weight: 600;
}

.RelatedCase_slider {
    margin-top: 6rem;
}

.country_text {
    background: linear-gradient(180deg, #254A8C 0%, #1DB0BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.arrow_items {
    width: 30px !important;
}

.RelatedCase_slider.owl-carousel .owl-stage-outer {
    padding: 2rem;
}

.RelatedCase_continer {
    margin-left: 24rem;
}

.RelatedCase_slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 90px;
}

.RelatedCase_slider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 90px;
    z-index: 1;
}

.RelatedCase_slider.owl-theme .owl-nav {
    margin-top: 0;
}

.left_arrow {
    rotate: 180deg;
}

.RelatedCase_slider.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
}

.RelatedCase_slider.owl-theme .owl-nav .disabled {
    opacity: 0;
    cursor: default;
}


.RelatedCase_slider.owl-theme .owl-nav::after,
.RelatedCase_slider.owl-theme .owl-nav::before {
    content: '';
    position: absolute;
    top: 0;
    width: 240px;
    height: 100%;
    transition: opacity 0.3s ease;
}

.RelatedCase_slider.owl-theme .owl-nav::after {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    visibility: hidden;
}

.RelatedCase_slider.owl-theme .owl-nav::before {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    visibility: hidden;
}

.RelatedCase_slider.owl-theme .owl-nav.enabled-after::after {
    opacity: 1;
    visibility: visible;
}

.RelatedCase_slider.owl-theme .owl-nav.enabled-before::before {
    opacity: 1;
    visibility: visible;
}

/* loader */
.Loader {
    width: 100%;
    height: 100vh;
    background-color: var(--color--bg-White);
    background-image: url(../imges/what-wedo-bg.png);
    background-position: center;
    position: fixed;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.Loader .loader_img {
    width: 20rem;
    position: relative;
}

.Loader .loader_img img {
    width: 100%;
}

.Loader .loader_img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    animation: shine 1s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* 
.scroll-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.content {
    height: 100%;
    overflow-y: scroll; 
    width: 100%;
    padding-right: 20px;
    box-sizing: border-box;
}

.content::-webkit-scrollbar {
    display: none;
}

.custom-scrollbar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 300px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.custom-thumb {
    width: 100%;
    background-color: #888;
    border-radius: 5px;
    position: relative;
}

.custom-thumb:active {
    background-color: #555;
} */

.banner-wrapper-text h1 {
    font-family: 'Newsreader';
    font-weight: 500;
}

.banner-padding {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    align-items: center;
}

.banner-wrapper-text span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    animation: animated-gradient 4s ease-in-out infinite;
}

/* Простенька Keyframe анімація */
@keyframes animated-gradient {

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

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

.hero_text {
    margin-top: 4rem;
    font-size: 2rem;
}

#lottie-container20 svg g g:last-child {
    display: none !important;
}

.apply_text {
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 6rem;
}

.Successfully_text {
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
    font-size: 3.7rem;
    text-align: center;
    margin: 2.4rem 0;
}

.submitted_text {
    text-align: center;
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
    font-size: 2rem;
}

.Apply_modal .modal-dialog,
.Successfully_modal .modal-dialog {
    max-width: 62rem;
    border: 0;
}

.apply_contant {
    padding: 6rem;
}

.Apply_modal .modal-content,
.Successfully_modal .modal-content {
    border: 0;
    border-radius: 2rem;
}

.attachment-group {
    border: 1px dashed #3E3B39B2;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    background-color: #F6F6F6;
}

.attachment-group .file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
}

.upload-imges-center {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.New-upload p {
    font-size: 2rem;
    background: linear-gradient(180deg, #254A8C 0%, #1DB0BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-align: center;
}

.New-upload span {
    display: block;
    font-size: 1.4rem;
    color: var(--color-light-black);
}

.showpdf {
    padding: 2.6rem 1.6rem;
    border: 1px solid #3E3B39B2;
    border-radius: 1.2rem;
    height: 10rem;
    font-size: 1.4rem;
    position: relative;
    background: linear-gradient(to right, #f9fafb 0%, #F9FAFB 0%, transparent 0%, transparent 100%);
    transition: background-size 0.1s linear;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pdf_name {
    color: var(--color-dark-black);
    font-weight: 500;
}

.processing_count,
.pdf_size {
    color: var(--color-light-black);
}

#showpdfloading {
    width: 32px;
    height: 32px;
}

#removeshowpdf {
    color: #F04438;
    font-size: 1.8rem;
    cursor: pointer;
}

.Submit_btn {
    margin-top: 6rem;
}

.close_btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
}

.close_btn svg {
    width: 2.4rem;
    height: 2.4rem;
    color: #3E3B39;
    opacity: 0.5;
}

.Applybtn {
    margin: inherit;
    margin-left: auto;
    margin-top: 0;
}

#Successfullylottie {
    width: 33rem;
    height: 33rem;
    margin: 0 auto;
}

#jobemptyloti {
    width: 50rem;
    height: 50rem;
    margin: 0 auto;
}

.noopenings_text {
    text-align: center;
    font-family: 'Newsreader';
    font-weight: 500;
    color: var(--color-dark-black);
    font-size: 3rem;
    position: absolute;
    bottom: 0;
}

#WebDevelopmentloti {
    position: absolute;
    top: 194px;
    left: 77px;
}

#upworkloti {
    width: 15rem;
    height: 9rem;
    position: absolute;
    top: 90px;
    left: 150px;
}

#upworkloti svg g:nth-child(2) g {
    display: none;
}

#handshakeloti {
    width: 20rem;
    height: 12rem;
    position: absolute;
    top: 95px;
    left: 0;
}

#Businessloti {
    width: 50rem;
    height: 37rem;
    position: absolute;
    top: -18px;
    left: -50px;
}

#Softwareloti {
    width: 35rem;
    height: 23rem;
    position: absolute;
    top: 111px;
    left: 240px;
}

/* .cursor-pointer {
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    background: linear-gradient(to right, #b3ffcb 0%, #ffeeb3 20%, #ffc7b3 40%, #ddc2ff 60%, #b3e0ff 80%, #b3ffba 100%);
    animation: wave 7s ease-in-out infinite;
    background-size: 1000% 1000%;
    transform: translate( -50%  , -50%);
} */

@keyframes wave {
    0% {
        border-radius: 42% 50% 50% 50%;
    }

    25% {
        border-radius: 50% 42% 50% 50%;
    }

    50% {
        border-radius: 50% 50% 42% 50%;
    }

    75% {
        border-radius: 50% 50% 50% 42%;
    }

    100% {
        border-radius: 42% 50% 50% 50%;
    }

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

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

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

#cursor-pointer {
    width: 40rem;
    height: 40rem;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 50%;
    position: absolute;
    background: linear-gradient(to right, #b3ffcb 0%, #ffeeb3 20%, #ffc7b3 40%, #ddc2ff 60%, #b3e0ff 80%, #b3ffba 100%);
    animation: wave 7s ease-in-out infinite;
    background-size: 1000% 1000%;
}


/*----------------------------------------*/
/*  016. Portfolio-page CSS
/*----------------------------------------*/
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.portfolio-items {
    border: 1px solid #3E3B3980;
    padding: 4.4rem;
    background-color: white;
    position: relative;
    overflow: hidden;

}


.portfolio-items:hover .portfolio-block {
    right: 0;
}

.portfolio-block {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem 2.5rem;
    background-color: var(--color-dark-black);
    position: absolute;
    top: 50%;
    right: -160%;
    transform: translateY(-50%);
    transition: .6s;
}

.portfolio-block p {
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-White);
    font-family: 'Newsreader';
}

.portfolio-block span {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-White);
}

.link_items {
    width: 5.2rem;
    height: 5.2rem;
    background-color: var(--color--bg-White);
    padding: 0.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.link_items div {
    background-color: #222222;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.link_items div::before {
    content: url(../imges/portfolio/white-arrow.png);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(0.40) translate(-55px, 58px);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.link_items:hover div::before {
    transform: scale(1) translate(-50%, -50%);
}

.link_items img {
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.link_items:hover img {
    opacity: 0;
}

#portfolio-filter {
    text-align: center;
    margin-bottom: 6rem;
}

.portfolio-wrapper {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

#portfolio-filter .portfolio-filter-menu .btn.active {
    background: #B7B2F6;
    border: 1px solid #B7B2F6;
}

.portfolio-img {
    width: 100%;
    height: auto;
    /* transition: 1s; */
    transition: transform 0.50s;
    will-change: transform;
}

.bordertop-none {
    border-top: 0;
}

.borderright-none {
    border-right: 0;
}

.borderbottom-none {
    border-bottom: 0;
}

.borderleft-none {
    border-left: 0;
}

/* .portfolio-items:hover .portfolio-img {
    scale: 1.1;
} */

.portfolio-filter-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
}

#portfolio-filter .portfolio-filter-menu .btn {
    display: inline-block;
    background: var(--color-White);
    padding: 0.8rem 2rem;
    color: #000000;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 100px;
    transition: .5s;
    border: 1px solid #181818;
}

#portfolio-filter .portfolio-filter-menu .btn:hover {
    background: #B7B2F6;
    color: var(--color-dark-black);
    border: 1px solid #B7B2F6;
}

.filter-items {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    z-index: 1;
}

.filter-btn {
    display: flex;
    background: var(--color-White);
    padding: 0.8rem 2.5rem;
    color: #000000;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 100px;
    transition: .5s;
    border: 1px solid #181818;
    width: 16rem;
    justify-content: space-between;
}

.filter-btn:hover {
    background: #B7B2F6;
    color: var(--color-dark-black);
    border: 1px solid #B7B2F6;
}

.filter-btn p {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-dark-black);
}

.Filter_list {
    background-color: var(--color-White);
    border-radius: 1.2rem;
    border: 1px solid #1818181A;
    box-shadow: 0px 0px 20px 0px #0000000D;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    width: 100%;
}

.Filter_list.active {
    opacity: 1;
    visibility: visible;
}

.Filter_list li {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
}

.Filter_list li:hover {
    background: #c9c6f793;
}

.Filter_list li.active {
    background: #B7B2F6;
}

#upworkloti {
    width: 16rem;
    height: 9rem;
}

#upworkloti img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
    background: #D1D1D1;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.slider.owl-theme .owl-dots .owl-dot.active span,
.slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #181818;
}

.slider.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

/*  */
.diyaimages2 {
    width: 30rem;
}

.diya_items {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    top: 18px;
}

.toran_items {
    position: absolute;
    top: -1.1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.toran_gif {
    width: 18rem;
}



