/* 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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

/* manrope-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/manrope-v15-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/manrope-v15-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/manrope-v15-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/manrope-v15-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-800 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/manrope-v15-latin-800.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ........................... */
/* Comman Css */
/* ........................... */

html {
    font-size: 10px;
    margin: 0;
    padding: 0;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope';
    font-size: 1.6rem;
    background-color: #F5F5F5;

}

/* width */
body::-webkit-scrollbar {
    width: 6px;
}

/* Track */
body::-webkit-scrollbar-track {
    background: #FDE8E7;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: var(--color-red-primary);
    border-radius: 30px;
}


::selection {
    color: #fff;
    background: var(--color-red-primary);
}



.row {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    padding: 0;
    margin: 0;
    list-style: none;
}


:root {
    --color-red-primary: #EA1B0A;
    --color-black-secondary: #100E0E;
    --color-light-grey: #DDDDDE;
    --color-dark-grey: #665858;
    --color-white: #fff;
}

h1 {
    font-size: 4.2rem;
    line-height: 6.3rem;
}

h2 {
    font-size: 3.2rem;
    line-height: 4.8rem;
}

h3 {
    font-size: 3.2rem;
    line-height: 4.2rem;
}

h4 {
    font-size: 4rem;
    line-height: 5.6rem;
}

h5 {
    font-size: 2rem;
    line-height: 3.6rem;
}

h6 {
    font-size: 2.2rem;
    line-height: 3.6rem;
}

a {
    text-decoration: none;
}

.containerX {
    margin: 0 15rem;
}

.section_margintop {
    margin-top: 10rem;
}

.mb50 {
    margin-bottom: 50rem;
}

.website_maxwidth {
    max-width: 1920px;
    margin: 0 auto;
}



.home_hero_section {
    background-color: var(--color-black-secondary);
    position: relative;
    padding-top: 8rem;
    padding-right: 3rem;
    margin-top: -84px;
}



.nav_logo a {
    display: block;
}

.navbar_fix {
    position: sticky;
    z-index: 11;
    transition: all 0.3s linear;
    top: 30px;

}

.navbar_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 0 15rem; */
    transition: all 0.3s linear;
    padding: 0 2rem;

}



.navbar_section.active {
    background-color: var(--color-white);
    border-radius: 100rem;
    box-shadow: 0px 0px 50px 0px #00120B1A;

}


.navbar_section.active .socialmedia_list li a {
    border: 1px solid #000000;
    color: var(--color-black-secondary);
}


.navbar_section.active .socialmedia_list li a:hover {
    color: var(--color-white);
    border-color: var(--color-red-primary);
}

.navbar_content {
    display: flex;
    align-items: center;
    gap: 12rem;
}

.nav_list {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.5rem;
    padding: 3rem 6rem;
    border-radius: 100rem;
}

.nav_list li a {
    color: var(--color-black-secondary);
    font-weight: 700;
    transition: 0.3s;
}


.nav_list li.active a {
    color: var(--color-red-primary);
}

.nav_list li a:hover {
    color: var(--color-red-primary);
}

.socialmedia_list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.socialmedia_list li a {
    width: 4.4rem;
    height: 4.4rem;
    border: 1px solid var(--color-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-white);
    transition: 0.5s;
}

.socialmedia_list li a:hover {
    background-color: var(--color-red-primary);
    border: 1px solid var(--color-red-primary);
}

.socialmedia_section {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.outline_button {
    padding: 1.5rem 2rem;
    border: 1px solid var(--color-red-primary);
    border-radius: 2.5rem;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-red-primary);
    transition: 0.5s;
}

.outline_button:hover {
    background-color: var(--color-red-primary);
    border: 1px solid var(--color-red-primary);
    color: var(--color-white);
}

.herosection_content {
    display: flex;
    align-items: center;
}

.home_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, #100E0E 0%, hwb(0 5% 94% / 0.801) 100%);
    width: 50%;
    height: 100%;
    z-index: 1;
}

.home_hero_section::after {
    background-color: var(--color-black-secondary);
    background-image: url('../imges/bg_hero_patten.png');
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    max-width: 50%;
}

.herosection_text {
    padding-left: 15rem;
    width: 50%;
    position: relative;
    z-index: 1;
}

.herosection_text h1 {
    color: var(--color-white);
    font-weight: 800;
    line-height: 9.3rem;
    font-size: 6.2rem;
}

.herosection_text p {
    color: var(--color-light-grey);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.thames_button {
    padding: 2rem 3rem;
    border: 1px solid var(--color-red-primary);
    border-radius: 3.3rem;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-red-primary);
    transition: 0.5s;
    display: inline-flex;
}

.thames_button:hover {
    border: 1px solid var(--color-red-primary);
    background: transparent;
    color: var(--color-red-primary);
}

.herosection_img {
    position: relative;
    z-index: 1;
}


/* about_section */
.about_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12rem;
    align-items: center;
}

.content_heading {
    color: var(--color-black-secondary);
    font-weight: 800;
}

.content_heading span {
    color: var(--color-red-primary);
}

.about_content p {
    font-size: 2.4rem;
    color: var(--color-dark-grey);
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.Request-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.play-btn a {
    box-shadow: 0px 0px 50px 0px #00000029;
    height: 6.6rem;
    width: 6.6rem;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.play-btn p {
    color: var(--color-black-secondary);
    font-size: 2rem;
    font-weight: 600;
}

.section_heading h1 {
    font-weight: 800;
    text-align: center;

}

.section_heading h1 span {
    color: var(--color-red-primary);
}

.Customers_width {
    max-width: 75%;
    margin: 0 auto;
}

.Customers_title {
    max-width: 60%;
    margin: 0 auto;
}

.customers_left_pattern {
    position: absolute;
    left: 0;
    z-index: -1;
}

.Customers_counter {
    box-shadow: 0px 0px 50px 0px #00120B1A;
    padding: 4rem 10rem;
    background-color: var(--color-white);
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    border-radius: 1.2rem;
}

.Customers_counter h4 {
    font-weight: 700;
    color: var(--color-red-primary);

}

.Customers_counter p {
    text-align: center;
    color: var(--color-dark-grey);
    font-weight: 500;
    line-height: 2.8rem;
}



.Customers_counter h2 {
    font-size: 46px;
    color: var(--red);
}


.Partnership_section {
    width: 100%;
    position: relative;
    background-color: #100E0E;
    border-radius: 4rem 4rem 0 0;
    overflow: hidden;
    padding: 10rem 0;
}

.Partnership_patten {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.Partnership_patten::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, hwb(0 5% 94% / 0.801) 0%, #100E0E 100%);

}

.Partnership_patten img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.Partnership_content {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: 6.8rem;
    position: relative;
    align-items: center;
}

.Partnership_content_text h1 {
    font-weight: 700;
    color: var(--color-white);
}

.Partnership_content_text p {
    color: #F3F3F3;
    margin-top: 3rem;
    font-size: 2rem;
}

.Partnership_content_text span {
    color: #F3F3F3;
    margin-top: 3rem;
    font-size: 2rem;
    display: block;
}

.Partnership_list {
    list-style: disc;
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.Partnership_list li {
    font-weight: 500;
    margin-top: 3rem;
    font-size: 1.8rem;
    color: #9b9b9b;
}

.partnership_img {
    position: relative;
    z-index: 1;
}

.partnership_ring {
    position: absolute;
    top: -13%;
    left: -11%;
}

.ClientSuccess_section {
    background-image: url(../imges/ClientSuccess_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    margin-top: 4rem;
    position: relative;
}


.ClientSuccess_items {
    background-color: var(--color-white);
    border-radius: 3rem;
    padding: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.ClientSuccess_items h3 {
    color: var(--color-red-primary);
    font-weight: 700;
}

.ClientSuccess_items .Service_heading {
    color: #665858;
    font-size: 2.2rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.Service_heading_txt {
    color: var(--color-black-secondary);
    font-size: 1.8rem;
    font-weight: 600;
}

.ClientSuccess_items ul {
    margin-top: 1.5rem;
    list-style: none;
}

.ClientSuccess_items ul li {
    color: #5C5C5F;
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 1.5rem;
    line-height: 2.8rem;
}

.Storys_contant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-black-secondary);
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    padding: 3rem;
}

.Storys_items p {
    color: var(--color-red-primary);
    font-weight: 600;
    font-size: 2rem;
}

.Storys_items span {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-top: 1.2rem;
}

.Storys_items {
    margin-bottom: 2rem;
}

.Storys_images {
    perspective: 1000px;
}


.Storys_contant ol {
    list-style: none;
    padding-left: 0;
}

.Storys_contant ol span {
    color: var(--color-white);
}

.Storys_contant ol p {
    color: #9b9b9b;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 1rem;
}

/*  */

.flip-box {
    width: 100%;
    height: 40rem;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.ClientSuccess_items:hover .flip-box-inner {
    transform: rotateX(180deg);

}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 3rem;
    overflow: hidden;
}

.flip-box-front img {
    /* object-fit: cover; */
    width: 100%;
    height: 100%;
}

.flip-box-back {
    transform: rotateX(180deg);
    background-color: var(--color-black-secondary);
    padding: 3rem;
}

/*  */


.Request_section {
    margin: 0 24rem;
    padding: 4rem 6rem;
    background-color: var(--color-black-secondary);
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.Ready_text {
    color: var(--color-white);
    font-weight: 700;
}

.Request_button {
    position: relative;
    z-index: 1;
}

.Request_button .thames_button {
    padding: 2.2rem 3rem;
}

.Request_button .thames_button:hover {
    background-color: var(--color-white);
    color: var(--color-red-primary);
    border: 1px solid var(--color-white);
}

.Request_bg_top {
    position: absolute;
    right: 6%;
    top: -8%;
}

.Request_bg_bottom {
    position: absolute;
    right: 1.2%;
    bottom: -4%;
}

.OurClients_list {
    display: flex;
    gap: 4rem;
}


.wrapper {
    max-width: 100vw;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}



.wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 15rem;
    height: 100%;
    background: linear-gradient(270deg, #F5F5F5 23.33%, rgba(245, 245, 245, 0) 100%);

    z-index: 1;
    transform: translateY(-50%);

}


.wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 15rem;
    height: 100%;
    background: linear-gradient(90deg, #F5F5F5 23.33%, rgba(245, 245, 245, 0) 100%);
    z-index: 1;
    transform: translateY(-50%);
}

.OurClients_item {
    padding: 2rem 4.7rem;
    background: var(--color-white);
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30rem;
}

: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__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
    min-width: 100%;
    animation: scroll-x 30s linear infinite;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(0));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

.footer_section {
    padding: 8rem 0;
    background: var(--color-black-secondary);
}

.footer_list {
    display: flex;
    align-items: center;
    gap: 10rem;
}

.footer_list li a {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 500;
    transition: 0.5s;
}

.footer_list li a:hover,
.footer_list li a.active {
    color: var(--color-red-primary);
}

.Copyright_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #FFFFFF2B;
}

.Copyright_section p {
    color: var(--color-white);
    opacity: 0.8;
    font-weight: 300;
}

.footer_socialmedia_list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer_socialmedia_list a {
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF33;
    border-radius: 50%;
    color: #CFCFCF;
    transition: 0.5s;
    font-size: 18px;
}

.footer_socialmedia_list a:hover {
    background-color: var(--color-red-primary);
    border: 1px solid var(--color-red-primary);
    color: var(--color-white);
}



.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-red-primary);
    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;
}

.Loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #fde4e2;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Loader .loader_icon {
    width: 60px;
    height: 60px;
    position: absolute;
}

.Loader .congentshift_text {
    position: absolute;
    width: 15rem;
    top: calc(50% + 90px);
    transform: translateY(-50%);
}

#loading-bar-spinner.spinner {
    animation: loading-bar-spinner 0.6s linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
    width: 120px;
    height: 120px;
    border: solid 3px transparent;
    border-top-color: var(--color-red-primary) !important;
    border-left-color: var(--color-red-primary) !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Services */
.Services_section {
    background-color: var(--color-black-secondary);
    position: relative;
    margin-top: -84px;
}

.Services_section::after {
    background-color: var(--color-black-secondary);
    background-image: url('../imges/bg_hero_patten.png');
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 50%;
    max-width: 100%;
    transform: translateX(-50%);
}

.Services_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #100E0E 0%, hwb(0deg 0% 100% / 75%) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}



.Service_text {
    padding-top: 19rem;
    padding-bottom: 7rem;
    text-align: center;
    max-width: 55%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.Service_text h1 {
    font-weight: 800;
    color: var(--color-white);
}

.Service_text p {
    font-weight: 400;
    color: var(--color-light-grey);
    margin: 0 auto;
    margin-top: 2rem;
    font-size: 2rem;
}

.Service_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10rem;
}

.Service_imges {
    position: sticky;
    top: 150px;
    z-index: 1;
}


.Service_imges img {
    box-shadow: -10px 10px 30px 0px #00000033;
    border-radius: 3rem;
    overflow: hidden;

}

.Service_imges span {
    color: var(--color-black-secondary);
}

.Service_imges p {
    color: var(--color-dark-grey);
    font-size: 2rem;
    margin-top: 5rem;
}

.Service_list li {
    display: grid;
    grid-template-columns: 3rem auto;
    grid-gap: 4rem;
    padding: 2rem 0;
    padding-left: 4rem;
    border-bottom: #66585833 1px solid;
    border-left: #66585833 1px solid;
}

.Salesforce_heading {
    max-width: 60%;
    margin: 0 auto;
}

.Service_list li:last-child {
    border-bottom: 0;
}

.Service_list li h6 {
    color: var(--color-black-secondary);
    font-weight: 700;
    transition: 0.3s;
}

.Service_title {
    position: relative;
    display: inline-block;

}

.Service_title::after {
    content: '';
    position: absolute;
    background: var(--color-red-primary);
    width: 0;
    height: 1px;
    left: 0;
    border-radius: 15px;
    transition: 0.3s;
    bottom: 0;
}


.Service_list li:hover h6 {
    color: var(--color-red-primary);
}

.Service_list li:hover .Service_title::after {
    width: 100%;
}

.Service_list li p {
    margin-top: 2rem;
    color: var(--color-dark-grey);
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 3rem;
}

.Salesforce_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    margin-top: 4rem;
}

.Salesforce_item {
    padding: 3rem;
    background-color: var(--color-white);
    box-shadow: 0px 0px 15px 0px #0000001A;
    border-radius: 3rem;
    display: grid;
    grid-template-columns: auto 10rem;
    grid-gap: 3rem;
    transition: 0.3s;
}

.Salesforce_item:hover {
    background-color: #FDE8E7;
    box-shadow: none;

}

.Salesforce_item h6 {
    color: var(--color-black-secondary);
    font-weight: 700;
}

.Salesforce_item p {
    margin-top: 2rem;
    font-size: 1.8rem;
    color: var(--color-dark-grey);
    line-height: 3rem;
}

.salesforce_left {
    position: absolute;
    top: -15%;
    left: 0;
    z-index: -1;
}

.salesforce_right {
    position: absolute;
    top: -15%;
    right: 0;
    z-index: -1;
}

/* Products */
.Products_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10rem;
    align-items: center;
}

.Products_content h3 {
    color: var(--color-black-secondary);
    font-weight: 800;
}

.Products_content h3 span {
    color: var(--color-red-primary);
}

.Dynamic_heading {
    max-width: 80%;

}

.Products_content p {
    color: var(--color-dark-grey);
    font-size: 2rem;
    line-height: 4rem;
    font-weight: 500;
    margin: 2.5rem 0;
}

.Products_content ul {
    list-style: disc;
    padding-left: 2rem;
}

.Products_content ul li {
    color: var(--color-black-secondary);
    font-size: 2rem;
    font-weight: 600;
    line-height: 4rem;
}

.Products_content ul li a {
    color: #00A1E0;
}

.dynamic_interactive_pattern {
    position: absolute;
    right: 0;
    z-index: -1;
    top: -10%;
}

.spendmore_pattern {
    position: absolute;
    left: 0;
    z-index: -1;
    top: -20%;
}


.Choose_text {
    color: #191D23;
    font-size: 2rem;
    margin-top: 1.6rem;
    text-align: center;
}

.Plan_list {
    margin: 0 30rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    margin-top: 4rem;
}

.Plan_item {
    padding: 4rem 2.4rem;
    background: var(--color-white);
    border-radius: 2rem;
}

.Plan_item h6 {
    font-weight: 700;
    color: var(--color-black-secondary);
}

.Plan_item p {
    color: var(--color-dark-grey);
    margin-top: 1rem;
}

.Month_text {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.Month_text h4 {
    color: var(--color-black-secondary);
    font-weight: 600;
}

.Month_text span {
    color: var(--color-dark-grey);
}

.GetStartedNow_btn {
    padding: 1rem;
    background-color: var(--color-red-primary);
    border: 0;
    color: var(--color-white);
    font-weight: 600;
    width: 100%;
    border-radius: 4px;
    margin-top: 2.4rem;
}

.Plan_item ul {
    margin-top: 3rem;
}

.Plan_item ul li {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    color: #100E0E;
    font-weight: 500;
    margin-top: 1.2rem;
}

.Plan_item ul li div {
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg_green_light {
    background-color: #16A34A1A;
    color: #16A34A;
}

.bg_red_light {
    background-color: #EA1B0A33;
    color: #EA1B0A;
}

.btn_outline {
    background-color: transparent;
    border: 1px solid var(--color-red-primary);
    color: var(--color-red-primary);
    transition: 0.3s;
}

.btn_outline:hover {
    background-color: var(--color-red-primary);
    color: var(--color-white);
}

.plan_laft {
    position: absolute;
    top: 15%;
    left: 0;
    z-index: -1;
}

.plan_right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/* About Us */

.AboutUs_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10rem;
    align-items: center;
}

.AboutUs_content h1 {
    color: var(--color-black-secondary);
    font-weight: 800;
}

.AboutUs_content h5 {
    color: #424242;
    font-weight: 500;
    margin-top: 1rem;

}

.AboutUs_content .AboutUs_text {
    color: var(--color-dark-grey);
    font-size: 2rem;
    line-height: 3.6rem;
    margin-top: 3.6rem;
}

.aboutus-card {
    padding: 1.2rem;
    box-shadow: 5px 10px 20px 0px #00000026;
    background-color: var(--color-white);
    border-radius: 15px;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    top: 60%;
    left: 2%;
}

.aboutus-card p {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-red-primary);
}

.aboutus-card span {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-red-primary);
}


.Phone_detalis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
}

.Phone_detalis p {
    color: var(--color-dark-grey);
    font-size: 2.2rem;
    font-weight: 500;
}

.Phone_detalis a {
    color: var(--color-black-secondary);
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 0.6rem;
}

.CogentShiftStory_section {
    padding: 7rem 0;
    background-image: url(../imges/cogentshiftStory.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 4rem 4rem 0 0;
}

.CogentShiftStory_content {
    max-width: 50%;
}

.CogentShiftStory_content h1 {
    color: var(--color-white);
    font-weight: 800;
}

.CogentShiftStory_content p {
    color: var(--color-light-grey);
    font-size: 2rem;
    margin: 3rem 0;
}

.CogentShiftStory_content span {
    color: var(--color-light-grey);
    font-size: 2rem;
}



.CogentShiftStory_list {
    padding: 0 20rem;
    padding-top: 3rem;
    padding-bottom: 8rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20rem;
    border-bottom: 1px solid var(--color-red-primary);
    overflow: hidden;
}





.CogentShiftStory_item {
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.CogentShiftStory_item p {
    padding: 1.6rem;

}

.CogentShiftStory_item p::after {
    background-color: #FFFFFF24;
    border-radius: 1rem;
    filter: blur(1px);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.CogentShiftStory_item::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
    width: 1px;
    background-color: var(--color-red-primary);
}

.CogentShiftStory_item::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: -16px;
    left: 50%;
    background-color: var(--color-red-primary);
    border-radius: 50%;
    transform: translateX(-50%);
}

.CogentShiftStory_item p {
    font-size: 1.8rem;
    line-height: 2.8rem;
}

.OurAdvisors_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 9rem;
    padding: 0 7rem;
    margin-top: 4rem;
}

.OurAdvisors_content h5 {
    color: var(--color-black-secondary);
    font-weight: 600;
}

.OurAdvisors_content p {
    color: var(--color-red-primary);
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0.6rem 0;
}

.OurAdvisors_content span {
    color: var(--color-dark-grey);
    font-weight: 500;
    line-height: 2.6rem;
}

.OurAdvisors_items {
    display: grid;
    grid-template-columns: 20rem auto;
    gap: 3rem;
    align-items: center;
}

.aboutus_bgpatten {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.customers_left_patten {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.customers_right_patten {
    position: absolute;
    right: 0;
    top: 60%;
    z-index: -1;
}

/* Contact us  */
.Contact_content h3 {
    color: var(--color-black-secondary);
    font-weight: 800;
}

.Contact_content span {
    color: var(--color-red-primary);
}

.Contact_content p {
    margin: 3rem 0;
    color: var(--color-dark-grey);
    line-height: 3.6rem;
    font-size: 2rem;
}

.Contact_content a {
    padding: 1.6rem 2rem;
    background-color: var(--color-white);
    border: 1px solid #F5F5F5;
    color: var(--color-black-secondary);
    border-radius: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1.6rem;
    font-size: 2rem;
    font-weight: 500;
}

.Contact_form {
    padding: 4rem;
    background-color: var(--color-white);
    border-radius: 3rem;
}

.form_items input,
.form_items textarea {
    padding: 2rem 3rem;
    background-color: #FDE8E7;
    border-radius: 1.5rem;
    font-size: 2rem;
    width: 100%;
    border: 0;
    outline: none;
    margin-bottom: 2.5rem;
}

.form_items input::placeholder,
.form_items textarea::placeholder {
    color: #665858;
}

.Submit_btn button {
    box-shadow: 0px 0px 50px 0px #1B171708;
    background-color: var(--color-red-primary);
    padding: 2.4rem 0;
    border: 1px solid transparent;
    width: 100%;
    border-radius: 1.5rem;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 600;
    transition: 0.3s;
}

.Submit_btn button:hover {
    border-color: var(--color-red-primary);
    color: var(--color-red-primary);
    background-color: transparent;
}

.map_section {
    position: relative;
    margin-top: 4rem;
}

.country_icon {
    box-shadow: 0px 8px 15px 0px #100E0E40;
    border-radius: 2px;
    overflow: hidden;
}

@keyframes upDownGermany {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes upDownUSA {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes upDownUK {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes upDownIndia {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

@keyframes upDownVietnam {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes upDownPakistan {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }
}

.country_card li {
    padding: 2rem;
    box-shadow: 0px 4px 20px 0px #00000026;
    background-color: var(--color-white);
    align-items: start;
    border-radius: 1.6rem;
    min-width: 38rem;
    position: absolute;
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: 4rem auto;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.country_card li span {
    margin-top: 1rem;
    display: block;
}

.Germany_country {
    top: 56%;
    left: 25%;
    animation-name: upDownGermany;
}

.usa_country {
    top: 24%;
    left: 7%;
    animation-name: upDownUSA;
}

.uk_country {
    top: 9%;
    left: 37%;
    animation-name: upDownUK;
}

.India_country {
    top: 27%;
    left: 65%;
    animation-name: upDownIndia;
}

.Vietnam_country {
    top: 71%;
    left: 69%;
    animation-name: upDownVietnam;
}

.Pakistan_country {
    top: 77%;
    left: 42%;
    animation-name: upDownPakistan;
}


.map_menu {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.red_text {
    color: var(--color-red-primary) !important;
}

.map_menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.map_menu li p {
    font-size: 2.2rem;
    font-weight: 700;
}

.contact_pattern {
    position: absolute;
    right: 0;
    top: -15%;
    z-index: -1;
}

.map_left_patten {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.map_right_patten {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.Offices_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.Offices_text p {
    font-size: 2rem;
    font-weight: 700;
}

.Offices_text img {
    width: 3.5rem;
}

.Customers_content {
    box-shadow: 0px 0px 50px 0px #00120B1A;
    background-color: var(--color-white);
    padding: 4rem 7rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
    text-align: center;
    margin-top: 3rem;
    border-radius: 1.2rem;

}

.Customers_items{
    padding: 1.6rem 0;
    border-right: 1px solid #66585833;
}

.Customers_items p {
    font-weight: 700;
    color: var(--color-red-primary);
    font-size: 3.6rem;
}