@font-face {
    src: url('../fonts/Outfit-Bold.ttf');
    font-family: 'Outfit-bold';
}

@font-face {
    src: url('../fonts/Outfit-ExtraBold.ttf');
    font-family: 'Outfit-extrabold';
}

@font-face {
    src: url('../fonts/Outfit-Regular.ttf');
    font-family: 'Outfit-regular';
}

@font-face {
    src: url('../fonts/Outfit-Light.ttf');
    font-family: 'Outfit-light';
}

@font-face {
    src: url('../fonts/Outfit-Medium.ttf');
    font-family: 'Outfit-medium';
}

@font-face {
    src: url('../fonts/Outfit-ExtraLight.ttf');
    font-family: 'Outfit-extralight';
}

@font-face {
    src: url('../fonts/Outfit-SemiBold.ttf');
    font-family: 'Outfit-semibold';
}

@font-face {
    src: url('../fonts/PlusJakartaSans-ExtraBold.ttf');
    font-family: 'PlusJakart-extrabold';
}

@font-face {
    src: url('../fonts/Inter-Bold.ttf');
    font-family: 'Inter-bold';
}

@font-face {
    src: url('../fonts/Roboto-Bold.ttf');
    font-family: 'Roboto-bold';
}

@font-face {
    src: url('../fonts/Roboto-Regular.ttf');
    font-family: 'Roboto-regular';
}

@font-face {
    src: url('../fonts/Roboto-Medium.ttf');
    font-family: 'Roboto-medium';
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

@keyframes gelatine {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

@keyframes pulse-rotate {
    from {
        transform: scale(0.9) rotate(45deg) translate(-3px, 22%);
    }

    to {
        transform: scale(1.1) rotate(45deg) translate(-3px, 22%);
    }
}

@keyframes pulse {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes hithere {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cursor {
    --size: 50px;
    position: fixed;
    top: calc(var(--size) / -2);
    left: calc(var(--size) / -2);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #43B317;
    pointer-events: none;
    transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
        height 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 999;
}

#cursor-border {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: #43B317;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;

}

.aos-init{
    transition: 0.3s;
}

.wow,
.animated {
    animation-duration: 3s !important;
}

html {
    width: 100%;
}

body {
    color: #000;
    margin: 0;
    padding: 0;
    font-family: 'Outfit-regular';
    background: #fff;
}

h1 {
    font-size: 70px;
    color: #fff;
}

h2 {
    font-size: 40px;
    font-family: 'Outfit-semibold';
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

p,
li {
    font-size: 18px;
    font-family: 'Outfit-light';
    line-height: 35px;
}

a,
a:hover {
    font-size: 18px;
    text-decoration: none;
    color: unset;
}

h1 span {
    color: #47B208;
    font-family: 'PlusJakart-extrabold';
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    line-height: normal;
}

.row {
    align-items: center;
}

section {
    width: 100%;
    float: left;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.row>div {
    position: relative;
}

/* button */
.custom-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    background: #47B208;
    color: #fff;
    border: none;
    z-index: 1;
    padding: 10px 35px;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
}

.custom-btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.custom-btn:hover {
    color: #47B208;

}

.custom-btn:hover:after {
    left: 0;
    width: 100%;
}

.custom-btn:active {
    top: 2px;
}

.enquiry-brn .custom-btn:hover:after {
    box-shadow: 0px 0px 64px 0px #0000001A;
}

/* unlock growth */
.growth-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    background: #fff;
    color: #000;
    border: none;
    z-index: 1;
    padding: 10px 35px;
    border-radius: 8px;
    font-size: 18px;
    border: 2px solid #fff;
}

.growth-btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #183A03;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.growth-btn:hover {
    color: #fff;
}

.growth-btn:hover:after {
    left: 0;
    width: 100%;

}

.growth-btn:active {
    top: 2px;
}

/* Navigation */
.rey-header nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    background-color: #000000;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: auto;
}

.rey-header nav .logo {
    width: 150px;
    height: auto;
}

.rey-header .logo img {
    width: 100%;
}

.rey-header nav .links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0;
    gap: 20px
}

.rey-header nav .links li {
    list-style: none;
}

/* Underline Effect Only for Text Links */
.rey-header nav .links a:not(:has(img)) {
    display: block;
    padding: 10px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

/* Hover Effect for Text Links */
.rey-header nav .links a:not(:has(img))::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #43B317;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

/* nav .links a:not(:has(img)):hover::before {
    visibility: visible;
    transform: scaleX(1);
} */
.rey-header .dropdown-parent a span {
    position: relative;
}

.rey-header .dropdown-parent a span::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 60%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.rey-header .dropdown-parent a:hover span::after {
    transform: rotate(180deg);
    top: -10%;
}

.rey-header .dropdown-parent .dropdown a::after {
    display: none;
}

.rey-header nav .links a img {
    width: 40px;
    height: 40px;
}

.rey-header .links li {
    position: relative;
    margin: 0 10px;
}

.rey-header .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    color: #fff;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.rey-header .dropdown-parent:hover .dropdown {
    display: block;
}

/* Mobile specific styles */
.rey-header #nav-toggle {
    display: none;
}

.rey-header nav .icon-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.rey-header nav .icon-burger .line {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 3px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

.rey-header nav .links li.header-btn a {
    background: #43B317;
    border-radius: 3px;
    padding: 2px 18px;
    font-size: 18px;
}

.rey-header nav .links li.header-btn a:hover {
    background: #fff;
    color: #43B317;
    font-family: 'Outfit-medium';
}

/* footer */
footer.rey-footer {
    float: left;
    width: 100%;
}

button#back-to-up:hover {
    background: #FFFFFF !important;
}

.copy-ryt p {
    text-align: center;
    padding: 15px;
    background: #43B317;
    color: #fff;
}

.copy-ryt p span {
    font-family: 'Outfit-bold'
}

.news-letter p {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-mainsec {
    background: #307504;
    padding: 10px 0 30px;
    color: #fff;
    width: 90%;
    margin: auto;
}

footer.rey-footer {
    background: #307504;
}

.footer-inrmain {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.footer-inrdiv p {
    padding: 10px 0;
    font-size: 18px;
}

.footer-inrdiv h4 {
    margin-bottom: 20px;
    font-family: 'Outfit-regular';
    color: #fff;
}

.social-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 45%;
}

.social-icon i {
    font-size: 25px;
}

button#back-to-up {
    background: #FFFFFF;
    border-radius: 100px;
    transform: translate(0, -50%);
    font-size: 25px;
    padding: 7px 15px;
    border: 6px solid #303030;
    color: #47B208;
}

/* form */

.form-subscribe {
    margin: 0 auto
}

.form-subscribe .form-control {
    background-color: transparent;
    padding-left: 24px;
    padding-right: 24px;
    letter-spacing: 1px;
    border: none;
    border-radius: 36px;
    border: 1px solid #fff;
}

.form-subscribe .form-control.focus,
.form-subscribe .form-control:focus {
    z-index: 2;
    background-color: transparent;
    color: #fff;
}

.form-subscribe .btn {
    border-radius: 8px;
    background: #F0FBFF;
    color: #307504;
    transform: translate(-8%, 0px);
    font-size: 16px;
}

/*input::placeholder {*/
/*    color: #fff !important;*/
/*}*/

.footer-inrdiv .news-letter {
    background: #5D933B;
    padding: 20px;
    border-radius: 8px;
    margin-left: 30px;
}

.form-subscribe input::placeholder {
    color: #FFF;
    opacity: 1;
}

.getin-touch input::placeholder {
    color: #FFF;
}

.getin-touch textarea::placeholder {
    color: #FFF;
    opacity: 1;
}

.getin-about input::placeholder {
    color: #000;
}

.getin-about textarea::placeholder {
    color: #000;
    opacity: 1;
}

/* Home page Start */
section.reymart-banner {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-bg1.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #fff;
    padding-top: 5rem;
    background-color: #000;
    padding-bottom: 0;
}

.industry-expert {
    border-radius: 10px;
}

.reymart-banner .banner-main {
    display: flex;
    width: 100%;
    align-items: center;
}

.banner-image img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.banner-content,
.banner-image {
    position: relative;
}

.banner-content:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 10%;
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    bottom: 0;
    right: 0;
}

.reymart-banner .banner-content:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 10%;
    height: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    top: -4%;
    left: -4%;
    z-index: 1;
}

.banner-image:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 42%;
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%;
    position: absolute;
    -webkit-animation: bounce 5s ease infinite alternate;
    left: 0;
    z-index: 9;
}

.banner-image:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 46%;
    height: 22%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 43%;
    position: absolute;
    animation: pulse-rotate 1s infinite ease-in-out alternate;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.clients-carousel {
    background: #222222;
    padding: 20px 10px;
    padding-left: 0;
    border-radius: 20px;
}

.client-patner .box {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 80%;
    height: auto;
    transition: transform 0.5s ease-in;
    margin: 8px auto;
    filter: grayscale();
}

.client-patner .box img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

.client-patner .box:hover {
    transform: scale(1.1);
    filter: unset;
}

.clients-carousel .owl-nav,
.clients-carousel .owl-dots {
    display: none;
}

.banner-content h1 {
    text-transform: capitalize;
    font-family: 'Outfit-bold';
    width: 85%;
    position: relative;
    color: #fff;
    z-index: 2;
}

.banner-image {
    width: 40%;
}

.banner-content {
    width: 60%;
}

.banner-content p {
    padding: 30px 0;
    width: 100%;
    font-family: 'Outfit-extralight';
    font-size: 18px;
}

.banner-content .banner-call {
    display: flex;
    align-items: center;
    gap: 30px;
}

.paly-btn img {
    width: 25%;
    margin-right: 15px;
    animation: pulse 1s infinite ease-in-out alternate;
}

/* counter */
.counter-number .counter-item {
    display: flex;
    gap: 10px;
    text-align: center;
}


section.counter-main {
    margin: 1rem 0px;
}

.conter-cont h2 {
    font-family: 'Outfit-semibold';
    margin-bottom: 10px;
}

.counter-row.row {
    align-items: center;
}

.element-number span {
    font-size: 80px;
    color: #43B317;
    font-family: 'Outfit-semibold';
    text-transform: uppercase;
}

.counter-row .counter-innr {
    position: relative;
}

.counter-row .counter-innr:before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 1px solid;
    width: 3px;
    height: 85px;
    text-align: center;
    top: 30%;
}

.counter-innr:last-child::before {
    border-right: 0;
}

/* Integring section */
.integring-img img,
.career-img img {
    width: 90%;
}

.integrity-main.row {
    align-items: center;
}

section.we-integrity {
    background: #F0F5EE;
}

.integring-content p {
    padding: 10px 0 0;
    font-family: 'Outfit-light';
    line-height: 32px;
}

.integring-content h2 span {
    color: #43B317;
}

.enquiry-brn {
    margin-top: 20px;
}

.integring-img:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star3.webp);
    width: 18%;
    height: 20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35%;
    position: absolute;
    animation: hithere 1s ease infinite;
    top: 0;
    right: 0;
}


.integring-img:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 48%;
    height: 18%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30%;
    position: absolute;
    animation: gelatine 0.7s infinite;
    left: 0;
    z-index: 9;
    bottom: 0;
}

.integring-content:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star3.webp);
    width: 22%;
    height: 22%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20%;
    position: absolute;
    animation: hithere 1s ease infinite;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin-right: 0;
}

.enquiry-brn .custom-btn {
    padding: 10px 45px;
    font-family: 'Outfit-medium'
}


/* we worked */
.worked-company img {
    width: 100%;
    filter: grayscale();
    height: 100px;
}

.worked-company img:hover {
    width: 100%;
    filter: none;
}

.worked-company.row .col-lg-2 {
    width: 19%;
    padding: 0px;
    margin: 5px;
    border-radius: 10px;
}

.worked-company.row {
    justify-content: center;
}

section.we-worked {
    text-align: center;
}

section.we-worked p {
    padding: 20px 0;
    width: 90%;
    margin: auto;
    font-family: 'Outfit-light';
}

/* What We Do */
section.what-wedo {
    background-image: url('https://reymartech.com/wp-content/uploads/2024/11/wedo-banner.webp');
    position: relative;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

section.what-wedo h2 {
    color: #fff;
}

section.what-wedo .d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

section.what-wedo .wedo-title {
    width: 80%;
}

.wedo-title p {
    padding-top: 10px;
    font-family: 'Outfit-light';
    color: #C1CECF;
}

.wedo-view a {
    padding: 10px 45px;
}

.wedo-inrmain .col-lg-4 {
    background-color: #fff;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/wedo-logo.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    color: #000;
    padding: 30px 20px;
    background-size: 40%;
    border-radius: 10px;
    margin: 10px;
    width: 31%;
    height: 350px;
}

.wedo-inrmain .col-lg-4 p {
    line-height: 25px;

}

.wedo-inrmain .col-lg-4:hover {
    background-color: #47B208;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/do-hoverlogo.webp);
    color: #fff;
}

.generation h3 {
    font-size: 30px;
    font-family: 'Outfit-semibold';
    padding: 10px 0;
    color: unset;
}

.generation img {
    background: #D4F8D6;
    padding: 10px;
    border-radius: 10px;
	width: 70px;
    height: 70px;
}

.wedo-inrmain.row {
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center;
    margin: auto;
}

section.what-wedo:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 5%;
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    position: absolute;
    animation: hithere 1s ease infinite;
    right: 2%;
    top: -24%;
    z-index: 999;
    margin-right: 0;

}


section.what-wedo:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 6%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse-rotate 1s infinite ease-in-out alternate;
    left: -2%;
    z-index: 3;
    top: 0;
}

.wedo-inrmain:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 10%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    position: absolute;
    animation: hithere 1s ease infinite;
    left: -6%;
    top: -2%;
}

.wedo-inrmain:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star4.webp);
    width: 10%;
    height: 30%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
    position: absolute;
    animation: gelatine 0.7s infinite;
    bottom: -6%;
    left: -8%;
}

/* industries we serve */
.indust-img img {
    width: 100%;
    margin-left: -30px;
}

.row.serve-indust {
    align-items: center;
}

.col-lg-5.indust-img {
    position: relative;
}

.col-lg-5.indust-img:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 10%;
    height: 13%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse-rotate 1s infinite ease-in-out alternate;
    right: 2%;
    top: -6%;
}

.col-lg-5.indust-img:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 18%;
    height: 24%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 65%;
    position: absolute;
    animation: gelatine 0.7s infinite;
    bottom: -11%;
    left: 5.5%;
}

.indust-cont p {
    padding-top: 10px;
    font-family: 'Outfit-light';
    width: 100%;
    margin-bottom: 10px;
    font-size: 18px;
}

.indust-cont h2 {
    text-transform: capitalize;
}

.industry-expert .slide-item h3 {
    font-size: 25px;
    font-family: 'Outfit-semibold';
    padding: 25px 0 10px;
    color: unset;
}

p.indust-number span {
    background: #D4F8D6;
    padding: 10px 20px;
    border-radius: 10px;
    color: #47B208;
    font-size: 22px;
    font-family: 'Outfit-bold';
}

.industry-expert .slide-item p {
    font-size: 18px;
    font-family: 'Outfit-light';
}

.industry-expert .slide-item {
    box-shadow: 0px 0px 5px 3px #0000001A;
    padding: 25px 15px;
    margin: 5px;
    border-radius: 10px;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/wedo-logo.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 40%;
    height: 250px
}

.industry-expert .slide-item:hover {
    background-color: #47B208;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/do-hoverlogo.webp);
    color: #fff;
}

.industry-expert .slick-slide {
    margin: 0 9px;
}

.industry-expert .slick-arrow {
    position: absolute;
    top: -4rem;
    right: 0;
}

.industry-expert .fa-angle-left {
    right: 5rem;
    background: #47B208;
    padding: 12px 16px;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
}

.industry-expert .fa-angle-right {
    right: 0rem;
    background: #000;
    padding: 12px 16px;
    border-radius: 100px;
    color: #47B208;
    font-size: 20px;
}

.industry-expert .slick-dots li button:before {
    font-size: 60px;
}

.industry-expert .slick-dots .slick-active button:before {
    color: #47B208 !important;
}

.industry-expert .slick-dots li button:hover:before {
    color: #D9D9D9;
}

.industry-expert .slick-dots {
    text-align: right;
}

.indust-cont {
    position: relative;
}

.indust-cont:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 15%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    position: absolute;
    animation: gelatine 0.7s infinite;
    top: 0;
    right: -15%
}

.industry-expert:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 18%;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 49%;
    position: absolute;
    animation: pulse-rotate 1s infinite ease-in-out alternate;
    bottom: 2%;
    right: -16%;
}

section.we-serve {
    overflow: hidden;
}

/* transform-grow */
.transform-img img {
    width: 100%;
}

section.transform-grow {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/transform-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 0;
    color: #fff;
    background-color: #307504;
    overflow: hidden;
}

section.transform-grow h2 {
    color: #fff;
}

.row.transform-main {
    align-items: center;
}

.transform-cont p {
    font-size: 18px;
    padding: 20px 0;
    line-height: 32px;
    font-family: 'Outfit-regular';
}

.transform-img {
    position: relative;
}

section.transform-grow:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star6.webp);
    width: 8%;
    height: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    bottom: 10%;
    left: 0%;
}

.transform-img:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star6.webp);
    width: 18%;
    height: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    position: absolute;
    animation: bounce 2s ease infinite;
    top: 10%;
    right: -10%;
}

.transform-img:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 20%;
    height: 30%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 30%;
    left: -3%;
}

/* Client Testimonials */
.client-testimg img {
    width: 100%;
}

section.testimonials {
    background: linear-gradient(103.71deg, rgba(48, 117, 4, 0.07) 30.36%, rgba(159, 234, 114, 0.07) 100%);
}

.testimon-cont p {
    padding: 10px 0;
}

.testimonials-slider .item {
    padding: 40px 35px;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/wedo-logo.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 25%;
}

.testimonials-slider .item p {
    font-family: 'Outfit-regular';
    padding-bottom: 20px;
}

.testimon-cont {
    position: relative;
    padding: 30px 0;
}

.testimon-cont::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/comma-bg.webp);
    width: 20%;
    height: 30%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}

.testimonials-slider .item::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/comma.webp);
    width: 5%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    position: absolute;
    top: 1%;
    left: 0%;
}

.testimonials-slider .client-profile img {
    width: 12%;
}

.testimonials-slider .client-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 70%;
}

.testimonials-slider .client-profile p {
    padding: 0 !important;
}

.testimonials-slider .client-profile h5 {
    font-family: 'Outfit-semibold';
}

.testimonials-slider .owl-dots {
    display: none;
}

.owl-nav button:hover {
    background: unset !important;
}

.testimonials-slider .owl-prev i {
    background: #43B317;
    padding: 10px 15px;
    border-radius: 100px;
    color: #fff;
    font-size: 25px;
}


.testimonials-slider .owl-next i {
    background: #000;
    padding: 10px 15px;
    border-radius: 100px;
    color: #43B317;
    font-size: 25px;
}

.testimonials-slider .owl-nav {
    position: absolute;
    right: 2%;
    bottom: 10%;
}

.row.testimonial-main {
    width: 95%;
    margin: auto;
    position: relative;
}

.testimonial-main:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 5%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    position: absolute;
    animation: bounce 2s ease infinite;
    bottom: 0%;
    left: 0%;
}

.testimonial-main:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 10%;
    height: 22%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    position: absolute;
    animation: shake 2s ease infinite;
    top: 0%;
    right: 0%;
}

.client-testimg.col-lg-5 {
    position: relative;
}

.client-testimg:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 18%;
    height: 20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    position: absolute;
    animation: pulse 0.8s infinite ease-in-out alternate;
    bottom: -2%;
    right: 7%;
}

.client-testimg:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/testmonial-imgstar.webp);
    width: 10%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    position: absolute;
    animation: hithere 1s ease infinite;
    top: 15%;
    left: 12%;
}

/* blog */
.blogs .blog-title {
    width: 80%;
}

.blogs .d-flex {
    align-items: center;
    justify-content: space-between;
}

section.getin-touch h2 {
    color: #fff;
}

section.blogs .enquiry-brn {
    width: 20%;
    text-align: right;
}

section.blogs .custom-btn {
    padding: 10px 25px;
}

.blog-row .blog-inner img {
    width: 100%;
    transition: transform 0.3s ease, width 0.3s ease;
    height: 250px;
}

.blog-row .blog-inner {
    padding: 10px;
    margin: 5px;
    width: 32%;
    height: 550px;
}

.blog-row .blog-inner:hover img {
    transform: scale(1.02);
}

.blog-row .blog-inner:hover {
    box-shadow: 0px 0px 64px 0px #0000001A;
}

.blog-row .blog-inner:hover .blog-view {
    background: #43B317;
}

.blog-inner h3 {
    font-size: 24px;
    font-family: 'Outfit-semibold';
}

.blog-inner .blog-maincont p {
    font-size: 18px;
    font-family: 'Outfit-light';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin: 10px 0;
}

.blog-inner .blog-maincont {
    position: relative;
    padding-top: 25px;
}

p.blog-date {
    text-align: right;
    color: #307504;
    font-size: 20px;
    margin-top: 20px !important;
}

.blog-maincont .blog-view {
    position: absolute;
    top: -20%;
    right: 5%;
    background: #000;
}

.blog-maincont .blog-view i {
    color: #fff;
    padding: 15px 20px;
    transform: rotate(45deg);
    font-size: 25px;
}

/* Get In Touch */
section.getin-touch {
    background-image: url('https://reymartech.com/wp-content/uploads/2024/11/getin-touch.webp');
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.heading-form p {
    font-family: 'Outfit-light';
    margin-bottom: 25px;
}

section .touch-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.touch-form .form-social {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.touch-form .form-social i {
    border: 1px solid;
    padding: 10px;
    border-radius: 100px;
    font-size: 15px;
}

.touch-form .form-social i.fa-facebook-f {
    padding: 10px 13px;
}

.assist-Form form .form-control {
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 10px 5px;
    background: transparent;
}


.assist-Form form textarea.form-control {
    height: 100px;
}

.assist-Form {
    margin: 30px 0;
}

.assist-inrform {
    margin-bottom: 30px;
}

.assist-Form form .enquiry-brn.formbtn-right {
    margin-top: 1rem;
    text-align: right;
    float: right;
}

section.getin-touch::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star6.webp);
    width: 10%;
    height: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 52%;
    position: absolute;
    animation: hithere 1s ease infinite;
    bottom: 25%;
    left: -2%;
}

section.getin-touch::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 10%;
    height: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 52%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 0%;
    right: -2%;
}

/* About Us */
.about-banner .about-image {
    width: 40%;
    position: relative;
    margin-top: 3rem;
}

.contact-banner .about-image {
    margin-top: 3rem;
}

.about-banner .about-image p {
    font-family: 'Outfit-regular';
    font-size: 18px;
}

.about-banner .about-content {
    width: 60%;
    position: relative;
}

.about-banner .about-content h1 {
    width: 100%;
    font-family: 'Outfit-bold';
    font-size: 60px;
    color: #fff;
}

.about-banner .banner-main,
.contact-banner .banner-main {
    padding: 5rem 0;
    align-items: start;
}

.about-banner .about-content p {
    font-size: 28px;
}

.about-banner:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star1.webp);
    width: 10%;
    height: 35%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 47%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 15%;
    right: 0;
}

.about-banner::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star2.webp);
    width: 10%;
    height: 35%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 47%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 15%;
    left: 0;
}

.about-banner .about-content::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 10%;
    height: 35%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 47%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    top: -10%;
    right: 10%;
}

.about-banner .about-image::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 10%;
    height: 35%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 47%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    top: -15%;
    right: -2%;
}

.moretext {
    display: none;
}

.read-more i {
    font-size: 10px;
}

/* sec 2 */
.story-img {
    text-align: center;
    position: relative;
}

.story-img img {
    width: 100%;
}

.story-content p {
    font-family: 'Outfit-light';
    padding-bottom: 10px;
}

.story-mission {
    width: 50%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/wedo-logo.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    color: #000;
    background-size: 40%;
}

.story-mission:hover {
    background-color: #47B208;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/do-hoverlogo.webp);
    color: #fff;
}

.mision-vision {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.story-mission img {
    background: #47B208;
    border-radius: 10px;
    padding: 6px;
    width: 15%;
}

.story-mission h4 {
    font-family: 'Outfit-semibold';
    margin: 10px 0;
    color: unset;
}

.counter-row .counter-innr p {
    font-family: 'Outfit-medium';
    width: 90%;
    margin: auto;
}

.story-mission p {
    font-family: 'Outfit-regular';
}

.story-img:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star3.webp);
    width: 14%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 12%;
    right: 23%;
}

.story-img::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 15%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 76%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    bottom: -4.5%;
    left: 5%;
}

.story-content:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 6%;
    height: 12%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: -6%;
    left: -3%;
}

.story-content::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 7%;
    height: 20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    bottom: 3.5%;
    left: 0;
}

.mision-vision::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 7%;
    height: 20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    top: -22.5%;
    right: 0;
}

section.getin-about {
    background: #E5F2DD;
}

.enquiry-brn button.custom-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.getin-about .form-subscribe .form-control {
    border-color: #000;
}

.experience-content p {
    padding-bottom: 5px;
}

.experiec-img img {
    width: 100%;
}

.experiec-img:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 10%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    position: absolute;
    animation: pulse-rotate 1s infinite ease-in-out alternate;
    top: 1%;
    right: 11%;
}

.experiec-img::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 20%;
    height: 20%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 82%;
    position: absolute;
    animation: pulse-rotate 1s infinite ease-in-out alternate;
    bottom: -1.5%;
    left: 5%;
}

section.experience::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star2.webp);
    width: 6%;
    height: 17%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    top: 0%;
    right: 2%;
}

/* contact page */
.contact-mainform .form-control {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    padding: 10px 0;
    margin-bottom: 14px;
}

.contact-form {
    margin-bottom: 3rem;
    background: #828680;
    border-radius: 10px;
}

.contact-infoform {
    padding: 40px;
}

.contact-infodetail {
    padding: 40px;
    background-color: #D2CAC1;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/contac-global.webp);
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
    border-radius: 0 10px 10px 0;
    height: 550px;
}

.contact-mainform input::placeholder {
    opacity: 1;
    color: #fff;
}

.contact-mainform textarea::placeholder {
    opacity: 1;
    color: #fff;
}

.contact-infodetail p {
    padding: 10px 0;
    font-family: 'Outfit-regular';
    font-size: 22px;
    line-height: 35px;
}

.contact-infodetail .address-locat {
    display: flex;
    gap: 20px;
}

.address-locat .detial-logo img {
    width: 80%;
}

.address-locat .detial-logo {
    text-align: center;
    width: 10%;
}

.address-detial {
    width: 90%;
}

.address-detial h3 {
    font-size: 25px;
    font-family: 'Outfit-medium';
}

.address-locat {
    padding: 10px 0;
}

.address-detial p {
    padding: 5px 0;
    font-family: 'Outfit-regular';
}

.locatar-main {
    width: 100%;
}

.locatar-main iframe {
    width: 100%;
    height: 600px;
    margin-bottom: -10px;
}

.info-contact {
    background: #828680;
    border-radius: 10px;
}

.contact-banner h1 {
    width: 100%;
    font-family: 'Outfit-bold';
    font-size: 60px;
}

.contact-banner:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star1.webp);
    width: 10%;
    height: 35%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 47%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: -4%;
    right: 0;
}

.contact-banner::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star2.webp);
    width: 10%;
    height: 35%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 47%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: -4%;
    left: 0;
}

/* service page */
.choose-img img {
    width: 100%;
}


.choose-img:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 18%;
    height: 18%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
    position: absolute;
    animation: gelatine 0.7s infinite;
    left: 0;
    z-index: 9;
    top: 0;
}

.choose-img::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 10%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
    position: absolute;
    animation: hithere 1s ease infinite;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.whychoose-main:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 7%;
    height: 23%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
    position: absolute;
    animation: hithere 1s ease infinite;
    left: 0;
    bottom: 2%;
    z-index: 1;
}

.whychoose-main::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star2.webp);
    width: 7%;
    height: 23%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 65%;
    position: absolute;
    animation: hithere 1s ease infinite;
    right: 0;
    top: 2%;
    z-index: 1;
}

.generat-lead .col-lg-4 {
    background-color: #43B317;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/do-hoverlogo.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    color: #000;
    padding: 30px 20px;
    background-size: 40%;
    border-radius: 10px;
    margin: 10px;
    width: 31%;
    color: #fff;
    box-shadow: 0px 0px 5px 3px #0000001A;
}

.generat-lead.other-serv .generat-service {
    height: 350px;
}

.other-serv .generat-service:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 71% 100%;
}

.generat-lead .col-lg-4:hover {
    background-color: #fff;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/wedo-logo.webp);
    color: #000;
}

.whychoose-main,
.other-service {
    background: #F2F7F0;
    padding: 5rem 0;
}

.generat-service img {
    background: #E2EDC7;
    border-radius: 10px;
    padding: 10px;
    width: 18%;
    overflow: visible;
}

.generat-service h3 {
    font-size: 30px;
    font-family: 'Outfit-semibold';
    padding: 10px 0;
    color: unset;
}

.generat-service p {
    line-height: 30px;
    font-family: 'Outfit-extralight';
}

p.sub-text {
    padding: 10px 0 20px;
    width: 70%;
}

/* service new process flow */
/* water fall */
section.water-fall {
    height: auto !important;
}

.waterfall-main .flow-number {
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.waterprocess .flow-number::before {
    position: absolute;
    content: '';
    width: 9%;
    height: 33%;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/water-flowstart.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    top: -1px;
    left: -4%;
}


.waterprocess .flow-number::after {
    position: absolute;
    content: '';
    width: 4%;
    height: 33%;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/water-flowend.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    bottom: -1px;
    left: -2%;
    transform: rotate(180deg);
}

.waterfall-main .waterprocess:last-child::before {
    position: absolute;
    content: '';
    width: 4%;
    height: 33%;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/water-flowend.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    top: -1px;
    right: -2%;
}


.waterfall-main .waterprocess:last-child::after {
    position: absolute;
    content: '';
    width: 4%;
    height: 33%;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/water-flowend.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    bottom: -1px;
    right: -2%;
    transform: rotate(180deg);
}

.waterfall-main .waterprocess {
    padding: 0;
}

.waterfall-main .process-no {
    transform: translate(-1rem, -0%) !important;
    margin-right: 10px;
}

.row.waterfall-main {
    width: 100%;
    border-top: 2px solid;
    border-bottom: 2px solid;
    margin: 30px 0;
}

/* content model */
.process-count p span {
    background: #51A808;
    color: #fff;
    padding: 8px 18px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px 0 10px 0;
    font-size: 23px;
    font-family: 'Outfit-bold';
}

.cont-process .flow-contnt {
    background: #fff;
    color: black;
    padding: 50px 20px 20px;
    border-radius: 10px;
    position: relative;
    height: 270px;
}

.cont-process .flow-contnt:hover {
    background: #43B317;
    color: #fff;
}

.cont-process .flow-contnt:hover .process-count p span {
    background: #fff;
    color: #000;
}

.cont-process .flow-contnt h5 {
    font-size: 20px;
}

/* email agency */

.email-innerflow .flow-contnt p {
    width: 100%;
}

.email-innerflow .process-count p {
    font-family: 'Outfit-semibold';
    font-size: 35px;
    color: #43B317;
}

.emailflow-main .flow-contnt {
    text-align: center;
    background: #fff;
    color: #000;
    padding: 30px 20px 20px;
    border-radius: 120px 120px 0 0;
    position: relative;
    height: 300px;
}

.emailflow-main .flow-contnt::before {
    position: absolute;
    content: '';
    width: 9%;
    height: 28%;
    background-image: url(../image/water-flowstart.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    top: -79px;
    left: 45.8%;
}

.email-process {
    padding-top: 80px;
    margin-top: 40px;
    position: relative;
}

.email-process::before {
    position: absolute;
    content: '';
    border-top: 3px solid;
    width: 76.5%;
    text-align: center;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

/* display agency */

.program-flow .col-lg-3 {
    padding: 30px;
    height: 250px;
}

.program-flow .program-process1 {
    border-bottom: 3px solid;
    border-right: 3px solid;
}

.program-flow .program-process2 {
    border-top: 3px solid;
    border-right: 3px solid;
}

.program-flow .program-process3 {
    border-bottom: 3px solid;
    border-right: 3px solid;
}

.program-flow .program-process4 {
    border-top: 3px solid;
    position: relative;
}

.program-flow .program-process1::after {
    position: absolute;
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/process-btn.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 9%;
    height: 12%;
    bottom: -7%;
    left: 40%;
}

.program-flow .program-process2::after {
    position: absolute;
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/process-btn.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 9%;
    height: 12%;
    top: -7%;
    left: 45%;
}

.program-flow .program-process3::after {
    position: absolute;
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/process-btn.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 9%;
    height: 12%;
    bottom: -7%;
    left: 50%;
}

.program-flow .program-process4::after {
    position: absolute;
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/process-btn.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 9%;
    height: 12%;
    top: -7%;
    left: 50%;
}

.program-flow .program-process1::before {
    position: absolute;
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/water-flowend.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 4%;
    height: 80%;
    bottom: -1px;
    left: -2%;
    transform: rotate(180deg);
}

.program-flow .program-process4::before {
    position: absolute;
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/water-flowend.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 4%;
    height: 80%;
    top: 0;
    right: -2%;
}

.program-flow p {
    width: 100%;
}

.programtic-main {
    margin-top: 50px;
}

/* agency process */
.agency-flow {
    height: 800px;
}

.agency-service.row {
    align-items: start;
}

.agency-service .flow-number {
    position: relative;
}

.agency-service .flow-number::before {
    position: absolute;
    content: '';
    width: 9%;
    height: 44%;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/water-flowstart-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    top: 0;
    transform: rotate(180deg) translate(55%, 12%);
    left: 0;
}

.agency-service .col-lg-3 {
    padding: 0;
}

.agency-service .service-flow1 {
    transform: translatey(18rem);
}

.agency-service .service-flow2 {
    transform: translatey(12rem);
}

.agency-service .service-flow3 {
    transform: translatey(6rem);
}

.agency-service .flow-number {
    position: relative;
    border-top: 2px solid;
    padding-top: 20px;
    padding-left: 20px;
    height: 250px;
}

/* service new process flow */
/* faq start */
.faq-section .faqs-container {
    background: #FFFFFF;
    border-radius: 5px;
}


.faq-section .faq-singular:first-child {
    border-top: 1px solid #9D9DA1;
}

.faq-section .faq-singular {
    position: relative;
    border-bottom: 1px solid #9D9DA1;
    padding: 20px 30px 20px 0;
    width: 100%;
}

.faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 10px;
    font-weight: 500;
    font-size: 30px;
    display: flex;
    align-items: center;
    font-family: 'Outfit-bold';
    padding-right: 50px;
}

.faq-singular .faq-question:before {
    position: absolute;
    content: "+";
    color: #fff;
    right: -0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 400;
    transition: all .5s;
    background: #000;
    border-radius: 50px;
    padding: 3px 13px 6px;
    font-family: 'Outfit-regular';
}

.faq-singular.active .faq-question:before {
    transform: translateY(-50%) rotate(45deg) scale(1.3);
    padding: 0px 10px 2px;
    background: #43B317;
}

.faq-singular.active .faq-question span {
    color: #43B317;
}

.faqs-container .faq-answer {
    display: none;
    padding: 20px 0px 20px 30px;
    width: 92%;
    margin: auto;
}

.faq-singular .faq-question span {
    font-family: 'Inter-bold';
    color: #9D96A8;
    font-size: 40px;
    margin-right: 20px;
}

.faqs-container .faq-answer div {
    font-size: 18px;
    font-family: 'Outfit-regular';
}

#pagination-container ul {
    display: flex;
    gap: 20px;
    justify-content: end;
    margin-top: 20px;
    align-items: center;
}

#pagination-container ul li {
    list-style: none;
}

#pagination-container li.active .current {
    font-family: 'Outfit-regular';
    color: #43B317;
    font-size: 20px;
}

#pagination-container li a {
    font-family: 'Outfit-regular';
    color: #A0A0A0;
    font-size: 20px;
}

#pagination-container li span.current i {
    background: #43B317;
    color: #fff;
}

#pagination-container li i {
    background: #000;
    color: #43B317;
    padding: 14px 18px;
    border-radius: 100px;
}

.faq-section h2 {
    font-family: 'Roboto-bold';
}

/* sec-6 */
.subtitle-flex {
    display: flex;
}

.subtitle-flex h2 {
    width: 45%;
    font-family: 'Outfit-bold';
}

.subtitle-flex p {
    width: 55%;
    font-family: 'Outfit-light';
    color: #2D2D2D;
    font-size: 20px;
}

section.sec-6 {
    background: #F1F5EE;
}

.sec6-marketimg img {
    width: 100%;
    height: 100%;
}

section.sec-6 .sec6-marketimg {
    padding: 0;
    width: 50%;
}

.sec6-marketcont {
    padding: 30px;
    width: 50%;
}

section.sec-6 .col-lg-6 {
    padding: 0;
}

.sec6-marketcont h5 {
    font-family: 'Outfit-semibold';
    margin-bottom: 10px;
    font-size: 22px;
}

.sec6-marketcont p {
    font-family: 'Outfit-light';
    line-height: 27px;
    font-size: 17px;
}

.sec6-marketcont li {
    font-family: 'Outfit-light';
    line-height: 23px;
    font-size: 17px;
    margin-top: 10px;
}

section.sec-6 .row {
    background: #E1FCD3;
    padding: 0;
    width: 100%;
    margin: auto;
}

.sec6-inner {
    display: flex;
}

.marketloop3 .sec6-inner,
.marketloop4 .sec6-inner {
    flex-direction: row-reverse;
}

.service-process .sub-text {
    width: 50%;
    font-family: 'Outfit-extralight';
    position: relative;
}

.service-process h2 {
    color: #fff;
}

.service-process .sub-text::after {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    top: -0rem;
    left: -5rem;
    background-size: 60%;
    width: 13%;
    height: 83%;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    animation: hithere 1s ease infinite;
}

section.service-process:after {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/do-hoverlogo.webp);
    animation: unset;
    bottom: -2%;
    top: auto;
    left: auto;
    right: 0;
    background-size: 100%;
    width: 12%;
    height: 30%;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

section.lead-agency {
    height: 700px;
}

section.service-process {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/getin-touch.webp);
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    padding: 70px 0;
}

.process-flow .service-flow1 {
    transform: translateY(17rem);
}

.process-flow .col-lg-3 {
    height: 250px;
}

.process-flow .service-flow2 {
    transform: translateY(14.5rem);
}

.process-flow .service-flow3 {
    transform: translateY(8rem);
}

.process-flow .service-flow4 {
    transform: translateY(-4rem);
}

.flow-number {
    display: flex;
}

.flow-number .process-no {
    color: #51A808;
    font-size: 80px;
    font-family: 'Outfit-semibold';
    transform: translate(-1rem, -15%);
}

.flow-contnt p {
    font-size: 16px;
    width: 90%;
    font-family: 'Outfit-extralight';
    margin-top: 10px;
}

.flow-contnt h5 {
    font-size: 18px;
    font-family: 'Outfit-semibold';
    color: unset;
}

.flow-contnt li {
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
}

.process-flow.row {
    margin-top: 0rem;
    position: relative;
}

.service-process::before {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    top: -0rem;
    right: 0rem;
    background-size: 60%;
    width: 8%;
    height: 20%;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    -webkit-animation: bounce 5s ease infinite alternate;
}

.process-flow.row::after {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    top: 15rem;
    right: 14rem;
    background-size: 70%;
    width: 8%;
    height: 100%;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    -webkit-animation: bounce 5s ease infinite alternate;
}

.process-flow.row::before {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/service-process.webp);
    animation: unset;
    top: -9rem;
    left: -2rem;
    right: 0;
    background-size: 99%;
    width: 100%;
    height: 350px;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transform: rotate(-6deg);
}

.process-flow .col-lg-3::before {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/process-btn.webp);
    animation: unset;
    top: -6rem;
    left: -2rem;
    right: 0;
    background-size: 70%;
    width: 20%;
    height: 46%;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
}

.other-service p.sub-text {
    font-family: 'Outfit-regular';
    margin-bottom: 1rem;
    line-height: 32px;
}

.brdcrmb ul {
    list-style: none;
    padding: 20px 0 40px;
    padding-left: 0;
    margin: 0;
}

.brdcrmb li {
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    font-size: 1rem;
    font-family: "DMSans-Medium";
}

.brdcrmb li a {
    color: #fff;
    font-family: 'Outfit-light';
    font-size: 24px;
}

.brdcrmb .brdcrm_blistin:after {
    position: absolute;
    content: '>';
    right: -8px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    font-family: 'Outfit-light';

}

.brdcrmb .brdcrm_blistin:last-child {
    position: unset;
}

.brdcrmb li:last-child a,
.brdcrmb .brdcrm_blistin_2 a {
    pointer-events: none;
    color: #47B208;
    font-family: 'Outfit-light';
    font-size: 22px;
}

.brdcrmb .brdcrm_blistin:last-child:after {
    display: none;
}

/* banner */
.service-banner .banner-main {
    gap: 20px;
    display: flex;
    width: 100%;
}

.service-subimg {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.service-subimg img {
    height: 300px;
}

section.service-banner {
    padding: 6rem 0;
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-bg1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #fff;
    margin-top: 2rem;
    background-color: #000;
}

.service-call p {
    font-family: 'Outfit-regular';
    padding: 0;
    line-height: 25px;
}

.service-call p span {
    color: #47B208;
}

.service-banner .banner-image:before {
    width: 15%;
    height: 15%;
    background-size: 100%;
    left: -7%;
    bottom: -7%;
}

.service-banner .banner-image:after {
    z-index: 1;
    top: -4rem;
    right: -4rem;
    height: 18%;
    background-size: 66%;
    width: 18%;
}

.brdcrmb {
    padding-left: 20px;
}

.service-banner .banner-content h1 {
    padding-left: 20px;
    width: 100%;
    font-size: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    line-height: 70px;
}

.service-banner h1 span {
    width: 100%;
}

.service-banner .banner-content:before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 10%;
    height: 20%;
    background-size: 100%;
    bottom: 0;
    right: 0;
}

section.service-banner:after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star2.webp);
    width: 6%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    -webkit-animation: bounce 5s ease infinite alternate;
    left: 0;
    z-index: 9;
    top: 2rem;
}

section.service-banner::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star1.webp);
    width: 6%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    -webkit-animation: bounce 5s ease infinite alternate;
    right: 1rem;
    z-index: 9;
    top: 2rem;
}

.banner-content .service-call p {
    margin-bottom: 20px;
}

/* blog listing */
.blog-list {
    background: #F1F5ED;
}

.feature-innr img {
    width: 100%;
}

.feature-row {
    margin-top: 30px;
}

.feature-blog h2 {
    color: #3D3D3D;
    font-family: 'Outfit-bold';
}

.feature-innr h3 {
    font-family: 'Outfit-semibold';
    line-height: 40px;
    margin-bottom: 20px;
    font-size: 30px;
}

.feature-innr .feature-descr {
    color: #2D2D2D;
    font-family: 'Outfit-regular';
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}

.feature-innr .blog-date {
    text-align: left;
}

.feature-blog::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star1.webp);
    width: 10%;
    height: 12%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 0%;
    left: -1%;
}

.feature-blog::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star2.webp);
    width: 10%;
    height: 12%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 0%;
    right: -1%;
}

.blog-list::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 8%;
    height: 8%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 45%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 7%;
    left: 2%;
}

.blog-list .blog-title {
    position: relative;
}

.blog-list .blog-title::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 5%;
    height: 35%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: -1rem;
    left: -3rem;
}

.blog-list div#pagination-container ul {
    justify-content: center;
    padding: 0;
}

/* blog-detial */
.blog-banner img {
    width: 100%;
}

.blogs-mian img {
    width: 100%;
    border-radius: 10px;
}

.blogs-mian .blog-detailmain {
    background: #F1F5ED;
    padding: 50px;
    border-radius: 10px;
    width: 97%;
    margin: auto;
    transform: translateY(-6%);
    position: relative;
}

.bloginner-cont p {
    font-size: 18px;
    margin-top: 10px;
    font-family: 'Outfit-regular';
    line-height: 28px;
}

.detail-blogpage {
    margin-top: -16rem;
}

.blog-detailmain h1 {
    font-size: 38px;
    margin-bottom: 10px;
    font-family: 'Outfit-bold';
    color: #fff;
}

.bloginner-cont h2 {
    font-family: 'Outfit-semibold';
    font-size: 32px;
    margin: 15px 0;
}

.bloginner-cont h3 {
    font-family: 'Outfit-semibold';
    font-size: 27px;
    margin: 15px 0;
}

.bloginner-cont h4 {
    font-family: 'Outfit-semibold';
    font-size: 24px;
    margin: 15px 0;
}

.blog-banner::before {
    height: 8%;
    top: 3%;
    background-size: 80%;
    width: 8%;
}

.blog-banner::after {
    height: 8%;
    top: 3%;
    background-size: 80%;
    width: 8%;
}

.blog-banner img.blog-bg {
    height: 400px;
}

.blogs-mian {
    transform: translateY(-10rem);
}

.blogs-mian .blog-detailmain::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 10%;
    height: 10%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 65%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    top: 1%;
    left: 0%;
}

.blogs-mian .blog-detailmain::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 10%;
    height: 12%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    bottom: 5%;
    left: 1%;
}

.social-blogshare img {
    width: 20% !important;
}

.detial-social {
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 40px 0 10px;
    position: relative;
}

.social-blogshare {
    height: 10px;
    margin-left: 10px;
}

.detial-social::before {
    position: absolute;
    content: '';
    width: 70%;
    border-bottom: 1px solid #000;
    height: 3px;
    left: 0;
}

.detial-social::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star2.webp);
    width: 6%;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    bottom: 2rem;
    left: 50%;
}

.bloginner-cont {
    position: relative;
}

.bloginner-cont::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star3.webp);
    width: 3%;
    height: 5%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    bottom: 8%;
    left: -4%;
}

/* career page */
.career-img::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 15%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    bottom: 5%;
    left: 16%;
    z-index: 1;
}

.career-img::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 17%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 43%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    right: 8%;
    top: 20%;
    z-index: 1;
}

.career-integrity::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/about-star1.webp);
    width: 7%;
    height: 22%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    top: 0%;
    left: 0%;
    z-index: 1;
}

.career-integrity::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 4%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    right: 0%;
    top: 0%;
    z-index: 1;
}

section.join-path {
    background: #F1F5ED;
    text-align: center;
    padding: 80px 0;
}

.join-path h2 {
    font-family: 'Roboto-bold';
    padding: 20px 0;
    position: relative;
    color: #001833;
    font-size: 45px;
}

.join-path h3 {
    font-family: 'Roboto-bold';
    padding: 40px 0 10px;
    color: #001833;
    font-size: 40px;
}

.join-path h2 span {
    color: #43B317;
}

.join-path p a {
    color: #43B317;
}

.join-path p {
    font-family: 'Outfit-regular';
    color: #2D2D2D;
    font-size: 20px;
    line-height: 30px;
}

.join-path p.come-text {
    font-family: 'Roboto-regular';
    font-size: 20px;
    color: #001833;
    text-transform: uppercase;
}


section.join-path::after {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star2.webp);
    width: 2%;
    height: 11%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: gelatine 0.9s infinite;
    top: 10%;
    left: 10%;
    z-index: 1;
}

section.join-path::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star1.webp);
    width: 4%;
    height: 15%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    left: 6%;
    top: 20%;
    z-index: 1;
}

.join-path h2::before {
    content: '';
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-star5.webp);
    width: 4%;
    height: 75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: pulse 1s infinite ease-in-out alternate;
    right: 6%;
    top: 20%;
    z-index: 1;
}

section.career-open h2 {
    text-align: center;
    font-family: 'Roboto-bold';
    color: #001833;
}

section.career-open .subtext {
    margin: 20px auto;
    text-align: center;
    width: 70%;
    font-family: 'Outfit-regular';
    color: #333333;
    line-height: 32px;
}

.openeing-field .open-jobsmain {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    box-shadow: 0px 1px 4px 0px #0000001f;
    margin-top: 20px;
    border-radius: 7px;
    align-items: center;
}

.experence-year,
.experence-date {
    text-align: center;
}

.opporty {
    display: flex;
    gap: 30px;
    width: 50%;
    justify-content: space-between;
}

.open-jobsmain .job-subtitle {
    color: #47B208;
    margin-bottom: 10px;
    font-size: 16px;
}

.open-jobsmain p {
    font-family: 'Roboto-medium';
    font-weight: 500;
    font-size: 20px;
}

.open-jobsmain h4 {
    font-family: 'Roboto-medium';
    color: #001833;
    font-size: 24px;
}

.enquiry-brn .custom-btn:hover {
    color: #47B208;
    background: #fff;
    border: 1px solid;
}

.home-contact form .form-control {
    border-bottom: 1px solid #fff;
}

.form-group textarea {
    height: 100px;
}

/* popup */
.book-constmain h3.text-center {
    width: 100%;
}

.book-constmain .modal-header {
    border-bottom: 0;
}

form .form-group .form-control {
    font-family: 'Outfit-regular';
}

.home-contact .form-group .form-control {
    color: #fff !important;
}

.assist-Form .form-group .form-control {
    color: #000;
}


form .form-group textarea {
    height: 80px;
}

form .form-group .form-submit {
    width: 100%;
    border: 0;
    padding: 10px;
    background: #183A04;
    color: #fff;
    font-family: 'Outfit-regular';
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

form .form-group .wpcf7-tel {
    font-family: 'Outfit-regular';
}

.popup-select .form-group {
    margin-bottom: 15px;
}

.modal-header button:hover {
    color: #000;
}

/* career detail */
.jobopen-banner .job-banner {
    background-image: url(https://reymartech.com/wp-content/uploads/2024/11/banner-bg1.webp);
    width: 100%;
    color: #fff;
    height: 400px;
    text-align: center;
}

.jobopen-banner .job-banner h1 {
    font-size: 40px;
    padding-top: 9rem;
    font-family: 'Outfit-bold';
}

.jobopen-mian {
    background: #F1F5ED;
    padding: 40px 30px;
    border-radius: 10px;
    margin-top: -5rem;
    align-items: start;
}

.jobopen-mian .summary-innr {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 2rem;
}

.jobopen-mian .summary-innr.apply-btn {
    gap: 35px;
}

.jobopen-mian .summary-innr img {
    width: 25px;
}

.jobopen-mian .job-det a {
    text-decoration: underline;
}

.opening-detail {
    background: #fff;
    padding: 0;
}

.jobopen-mian .job-det p {
    color: #43B317;
    font-size: 20px;
    font-family: 'Outfit-regular';
}

.jobopen-mian .job-det h6 {
    font-size: 20px;
    font-family: 'Outfit-regular';
    margin-top: 2px;
}

.opening-detail h3 {
    color: #fff;
    background: #43B317;
    padding: 10px;
    text-align: center;
    font-size: 30px;
    font-family: 'Outfit-semibold';
}

.opening-detail .summary-main {
    padding: 20px;
}

.summary-main .custom-btn {
    padding: 5px 15px;
}

.blog-detailmain .apply {
    margin-bottom: 2rem;
}
.math-captcha input {
    width: 100% !important;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #FFf;
    padding: 10px;
    margin-top: 10px;
}
.getin-about .math-captcha input {
    border-bottom: 1px solid #000;
}

.bloginner-cont a {
    color: #0D6EFD;
}

.popup-select .math-captcha {
    border-bottom: 1px solid;
}

.footer-inrdiv p.location {
    display: flex;
    gap: 1px;
}

.footer-inrdiv p.location i {
    margin-top: 4px;
    padding-right: 4px;
}

/* cookies */
.cookie-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  max-width: 70%;
  margin: auto;
}
.cookie-container p {
  margin: 0;
  flex: 1;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-container button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 5px 20px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
}

#rejectCookies {
  background: #f44336;
}

/* cookies */

/* responsive */
@media screen and (max-width: 2500px) {}

@media screen and (max-width: 1700px) {}


@media screen and (max-width: 1400px) {

    .sec6-marketcont {
        padding: 30px 10px;
        width: 50%;
        height: 350px;
    }

    .process-flow.row::before {
        transform: rotate(-9deg);
    }

    .process-flow .service-flow3 {
        transform: translateY(7.5rem);
    }

    .process-flow .service-flow4::before {
        top: -5rem;
    }

    .process-flow .service-flow4 {
        transform: translateY(-5rem);
    }
	.rey-header nav .links a:not(:has(img)) {
		font-size: 16px;
	}
	
	.rey-header nav .links {
		gap: 15px;
	}
}


@media screen and (max-width: 1300px) {

    .locatar-main iframe {
        height: 400px;
    }

    .generat-lead.other-serv .generat-service {
        height: 400px;
    }

    .service-flow4 .col-lg-3::before {
        top: -5.5rem;
    }

    /* About Us */
}

@media screen and (max-width: 1200px) {
    .wedo-inrmain .col-lg-4 {
        width: 47%;
    }

    section.transform-grow {
        padding: 20px;
    }

    .rey-header nav .links a:not(:has(img)) {
        font-size: 15px;
    }

    .rey-header .links li {
        margin: 0;
    }

    .banner-content h1 {
        width: 100%;
    }

    .service-banner .banner-content h1 {
        font-size: 38px;
        line-height: 40px;
    }

    .footer-inrdiv {
        width: 33%;
        margin-bottom: 30px;
    }

    .footer-mainsec {
        width: 90%;
    }

    .footer-inrdiv.col-lg-4 {
        width: 60%;
        ;
    }

    .footer-inrdiv .news-letter {
        margin-left: 0px;
    }

    /* About Us */
    .about-banner .about-content h1 {
        width: 100%;
        font-size: 50px;
    }

    /* service page */

    .process-flow.row::before {
        transform: rotate(-12deg);
        left: -3rem;
        top: -6.5rem;
    }

    .process-flow .service-flow4 {
        transform: translateY(-2.1rem);
    }

    section.lead-agency {
        height: 800px;
    }

    .faq-singular .faq-question {
        padding-right: 10px;
    }

    .flow-number .process-no {
        transform: translate(-1rem, -5%);
    }

    .process-flow.service-flow4::before {
        top: -6rem;
    }

    .process-flow .col-lg-3::before {
        top: -4.8rem;
    }

    .waterprocess .flow-contnt p {
        height: 125px;
    }

    .content-flowmain .cont-process {
        width: 50%;
        margin-bottom: 20px;
    }

    .cont-process .flow-contnt {
        height: auto;
    }

    .emailflow-main .flow-contnt {
        height: 350px;
    }

    .program-flow .col-lg-3 {
        padding: 30px;
        height: 320px;
    }

    .program-flow .program-process2::after,
    .program-flow .program-process4::after {
        top: -4%;
    }

    .program-flow .program-process1::after,
    .program-flow .program-process3::after {
        bottom: -9%;
    }

    .agency-flow {
        height: 900px;
    }

    /* blog detail */
    .detial-social::before {
        width: 60%;
    }

}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 992px) {

    #cursor,
    #cursor-border {
        display: none;
    }

    .rey-header nav .links {
        position: fixed;
        z-index: 9;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 100%;
        flex-direction: column;
        background-color: #fff;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.5s ease-in-out;
        overflow: hidden;
        height: 0;
    }

    .rey-header nav .links a:not(:has(img)) {
        font-size: 18px;
        color: #000000;
        font-family: 'PlusJakart-bold';
    }

    .rey-header nav .links {
        gap: 0px;
        padding-left: 0;
    }

    li.header-btn {
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 0%;
    }

    .rey-header nav .icon-burger {
        display: flex;
    }

    nav .icon-burger .line {
        width: 30px;
    }

    .rey-header #nav-toggle:checked~.links {
        height: 92%;
        top: 4.6rem;
        padding: 30px 0;
    }

    .rey-header nav .logo {
        padding: 10px 0;
    }


    .rey-header .links li .dropdown li {
        padding: 0;
    }

    .rey-header .dropdown-parent a span::after {
        right: -18px;
        top: 55%;
        color: #000;
        transition: all 0.3s;
    }

    .rey-header .dropdown-parent a:hover span::after {
        transform: rotate(180deg);
        top: -30%;
    }

    /* Animate burger icon */
    .rey-header #nav-toggle:checked~.icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }

    .rey-header #nav-toggle:checked~.icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }

    .rey-header #nav-toggle:checked~.icon-burger .line:nth-child(2) {
        opacity: 0;
    }

    .element-number span {
        font-size: 65px;
    }

    section.counter-main {
        margin: 0px;
    }
	
	.footer-mainsec{
		width: 100%;
	}

    .rey-header #nav-toggle:checked~.links {
        display: flex;
        overflow: scroll;
    }

    .rey-header .dropdown {
        display: none;
        position: relative;
        top: 0%;
        width: 100%;
        left: -2%;
        background: #fff;
        color: #000;
        list-style: none;
        padding: 10px 0;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }

    .rey-header .links li {
        width: 100%;
        padding-left: 10px;
    }


    /* .footer-inrdiv {
        width: 48%;
        margin-bottom: 30px;
    } */
.footer-inrdiv.col-lg-4 {
        width: 50%;
    }

    .footer-inrmain {
        justify-content: center;
		width: 100%;
        padding: 0;
        margin: 0;
    }

    .social-icon {
        width: 45%;
    }

    /* home Page */
    .reymart-banner .banner-main {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }

    .marketloop3 .sec6-inner,
    .marketloop4 .sec6-inner {
        flex-direction: unset;
    }

    .banner-main>div {
        width: 100%;
    }

    .banner-content h1,
    .banner-content p,
    .banner-content .banner-call {
        width: 100%;
        justify-content: center;
    }

    .wedo-view a {
        padding: 10px 15px;
    }

    .worked-company.row .col-lg-2 {
        background: #F6F6F6;
        width: 23%;
    }

    .worked-company.row {
        justify-content: center;
    }

    section.transform-grow {
        padding: 50px 0 0px;
    }

    .row.transform-main {
        align-items: center;
        gap: 30px;
    }

    .wedo-title p {
        font-size: 18px;
    }

    .serve-indust {
        align-items: center;
        gap: 60px;
    }

    .blog-row .blog-inner {
        width: 48%;
    }

    .blogs .blog-row {
        justify-content: center;
    }

    .assist-Form .form-group.col-lg-4 {
        width: 33%;
    }


    /* About Us */
    .about-banner .about-content,
    .about-banner .about-image {
        width: 100%;
    }

    .experience-main.row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .contact-infodetail {
        border-radius: 10px 10px 0 0;
        height: auto;
    }

    .info-contact {
        flex-direction: column-reverse;
    }

    .contact-form {
        background: #828680;
        border-radius: 10px;
        width: 95%;
        margin: 0 auto 3rem;
    }

    .about-banner .about-image {
        margin-top: 0;
    }

    /* service page */

    .service-banner .banner-content h1 {
        font-size: 60px;
        line-height: normal;
    }

    section.service-banner {
        padding: 4rem 0;
    }

    .service-banner .banner-main {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .service-banner .banner-image:after {
        z-index: 1;
        top: -5rem;
        right: -5rem;
        height: 18%;
        background-size: 66%;
        width: 18%;
    }

    .choose-img {
        margin-bottom: 40px;
    }

    .generat-lead .generat-service {
        width: 45%;
    }

    .row.generat-lead,
    .subtitle-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .subtitle-flex h2 {
        width: 100%;
    }

    .subtitle-flex p {
        width: 100%;
        margin-top: 20px;
    }

    /* service process */
    .process-flow.row::before {
        transform: rotate(103deg);
        left: 0.5rem;
        top: 15rem;
        width: 100%;
        height: 200px;
        margin: auto;
    }

    .process-flow.row {
        margin-top: 0rem;
        position: relative;
        flex-direction: row-reverse;
    }

    section.lead-agency {
        height: 1000px;
    }

    section.service-process:after {
        width: 18%;
        height: 18%;
    }

    .process-flow::before {
        background-size: 70%;
        width: 10%;
        height: 57%;
        top: -1rem;
        left: -2.5rem;
    }

    .process-flow .col-lg-3 {
        width: 50%;
        height: 115px;
    }

    .flow-contnt p {
        padding-left: 15px;
    }

    .process-flow .service-flow1 {
        transform: translateY(5rem);
    }

    .process-flow .service-flow2 {
        transform: translateY(12rem);
    }

    .process-flow .service-flow3 {
        transform: translateY(13rem);
    }

    .process-flow .service-flow4 {
        transform: translateY(20rem);
    }

    .flow-number .process-no {
        transform: translate(-0.5rem, -13%);
        font-size: 50px;
    }

    .process-flow .service-flow2::before {
        top: 1rem;
        left: auto;
        right: -2rem;
    }

    .process-flow .service-flow4::before {
        top: 1rem;
        left: auto;
        right: -4rem;
    }

    .process-flow .service-flow1::before,
    .process-flow .service-flow3::before {
        top: 0rem;
        left: -4rem;
    }

    .process-flow .service-process .sub-text {
        width: 100%;
    }

    .service-process .sub-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .process-flow .col-lg-3::before {
        width: 18%;
    }

    .faq-singular .faq-question:before {
        right: -50px;
    }

    .whychoose-main,
    .other-service {
        background: #F2F7F0;
        padding: 50px 0;
    }

    .sec6-inner2 {
        flex-direction: row-reverse;
    }

    .feature-row {
        gap: 30px;
    }

    /* service flow */
    /* water flow */
    .row.waterfall-main {
        border-top: 0;
        border-bottom: 0;
        border-right: 2px solid;
        border-left: 2px solid;
        margin: 30px 0;
    }

    .waterfall-main .flow-contnt p {
        width: 100%;
    }

    .waterfall-main .flow-contnt h5 {
        width: 100%;
        height: auto;
    }

    .waterfall-main .flow-number {
        padding: 25px 0 40px;
        display: block;
        text-align: center;
    }

    .waterprocess .flow-number::before {
        width: 5%;
        height: 81%;
        top: -5.2rem;
        left: 9.3%;
        transform: rotate(-90deg);
    }

    .waterprocess .flow-number::after {
        width: 2%;
        height: 81%;
        top: -5.2rem;
        right: 4.6rem;
        transform: rotate(90deg);
        left: unset;
    }

    .waterfall-main .waterprocess:last-child::before {
        width: 2%;
        height: 81%;
        bottom: -5.2rem;
        left: 10.8%;
        transform: rotate(-90deg);
        top: unset;
    }

    .waterfall-main .waterprocess:last-child::after {
        width: 2%;
        height: 81%;
        bottom: -5.2rem;
        right: 4.6rem;
        transform: rotate(90deg);
        left: unset;
    }

    .waterfall-main .process-no {
        transform: unset !important;
        margin-right: 0px;
    }

    .waterprocess .flow-contnt p {
        height: auto;
    }

    .emailflow-main .flow-contnt {
        padding: 40px 20px;
        border-radius: 120px 0 0 120px;
        margin-bottom: 20px;
    }

    .email-process {
        padding-top: 0;
        padding-left: 70px;
    }

    .email-process::before {
        border-top: 0;
        width: 3%;
        left: 0;
        right: auto;
        top: 10%;
        border-left: 3px solid;
        height: 75.3%;
    }

    .emailflow-main .flow-contnt::before {
        width: 6%;
        height: 35%;
        top: 26%;
        left: -7.5%;
        transform: rotate(-90deg);
    }

    .emailflow-main .flow-contnt {
        height: auto;
    }

    .program-flow .col-lg-3 {
        height: auto;
    }

    .program-flow .program-process1::before {
        left: -1%;
        width: 2%;
    }

    .program-flow .program-process1 {
        border-right: 0;
    }

    .program-flow .program-process2 {
        border-top: 0;
        border-bottom: 3px solid;
    }

    .program-flow .program-process3 {
        border-left: 3px solid;
        border-right: 0;
        border-bottom: 0;
    }

    .program-flow .program-process4::before {
        width: 2%;
        right: -1%;
    }

    .program-flow {
        width: 100%;
        margin: auto;
    }

    .program-flow .program-process1::after {
        top: 45%;
        width: 5%;
        height: 25%;
        left: -2.5%;
    }

    .program-flow .program-process2::after {
        top: 35%;
        width: 5%;
        height: 25%;
        left: auto;
        right: -2.5%;
    }

    .program-flow .program-process3::after {
        top: 35%;
        width: 5%;
        height: 25%;
        left: -2.5%;
    }

    .program-flow .program-process4::after {
        top: 25%;
        width: 5%;
        height: 25%;
        left: auto;
        right: -2.5%;
    }

    /* blog-detail */
    .blog-banner .container {
        max-width: 90%;
    }

    .detial-social::before {
        display: none;
    }

    .blogs-mian .blog-detailmain {
        transform: translateY(-3%);
    }

    .agency-flow {
        height: auto;
    }

    .agency-service .service-flow1,
    .agency-service .service-flow2,
    .agency-service .service-flow3 {
        transform: unset;
    }

    .agency-service .flow-number {
        height: auto;
        margin: 3rem 0 0;
    }

    .agency-service .flow-number::before {
        position: absolute;
        content: '';
        width: 4%;
        height: 95%;
    }

    .agency-service.row {
        align-items: start;
        width: 100%;
        margin: auto;
    }

    /* career */
    .career-img {
        text-align: center;
        margin-bottom: 40px;
    }

    .career-img img {
        width: 100%;
    }

    .jobopen-mian.row {
        flex-direction: column-reverse;
        gap: 40px;
    }


}

@media screen and (max-width: 767px) {
    .wedo-inrmain .col-lg-4 {
        width: 100%;
        height: auto;
    }

    .footer-inrdiv {
        width: 48%;
        margin-bottom: 30px;
    }

    .blog-row .blog-inner {
        width: 100%;
        height: auto;
    }

    /* About Us */
    .sec6-inner {
        display: flex;
        flex-wrap: wrap;
    }

    section.sec-6 .sec6-marketimg {
        padding: 0;
        width: 100%;
    }

    .sec6-marketcont {
        width: 100%;
    }

    /* service page */
    .faq-singular .faq-question {
        width: 95%;
    }

    section.sec-6 .row {
        width: auto;
    }

    p.sub-text {
        width: 100%;
    }

    .emailflow-main .flow-contnt::before {
        left: -8.5%;
    }

    /* process service */

    section.lead-agency {
        height: 1150px;
    }

    .process-flow.row::before {
        left: 0;
        top: 3rem;
        height: 700px;
        width: 5%;
        background-image: url();
        border-left: 3px solid #fff;
        transform: rotate(0deg);
    }

    .flow-number .process-no {
        color: #51A808;
        font-size: 45px;
        transform: translate(-0.5rem, -4%);
    }

    .process-flow::before {
        width: 15%;
    }

    .process-flow .service-flow4::before,
    .process-flow .service-flow2::before {
        right: -2rem;
    }

    .process-flow .service-flow3::before,
    .process-flow .service-flow1::before {
        left: -3.5rem;
        top: 1rem;
    }

    .process-flow .service-flow2 {
        transform: translateY(15rem);
    }

    .process-flow .service-flow3 {
        transform: translateY(18rem);
    }

    .process-flow .service-flow4 {
        transform: translateY(28rem);
    }

    .process-flow .col-lg-3::before {
        width: 22%;
    }

    .process-flow .col-lg-3 {
        width: 44%;
        margin: auto;
    }

    .flow-contnt p {
        padding-left: 0px;
    }

    .service-process .sub-text {
        margin-bottom: 0px;
    }

    section.service-process:after {
        display: none;
    }

    .service-subimg img {
        display: none;
    }

    /* service process */
    /* water flow */

    .row.waterfall-main {
        border: 0;
        position: relative;
    }

    .waterfall-main .flow-number {
        padding: 20px 10px;
    }

    .waterprocess .flow-number::after,
    .waterprocess .flow-number::before,
    .waterfall-main .waterprocess:last-child::after,
    .waterfall-main .waterprocess:last-child::before {
        display: none;
    }

    .row.waterfall-main::after {
        background-image: url(https://reymartech.com/wp-content/uploads/2024/11/Websit-Development1.webp);
        content: '';
        position: absolute;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 22%;
        height: 100%;
        top: 5%;
    }

    .row.waterfall-main::before {
        background-image: url(https://reymartech.com/wp-content/uploads/2024/11/Website-Development.webp);
        content: '';
        position: absolute;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 22%;
        height: 100%;
        right: 0;
        top: 5%;
    }

    /* blog detail */

    .blog-banner img.blog-bg {
        height: auto;
    }

    .blog-detailmain h1 {
        font-size: 26px;
    }

    .bloginner-cont h2 {
        font-size: 25px;
    }

    .bloginner-cont h4 {
        font-size: 22px;
    }

    .blog-banner::after,
    .blog-banner::before {
        height: 3%;
        top: 4%;
    }

    /* career page */
    .openeing-field .open-jobsmain {
        flex-wrap: wrap;
        justify-content: center;
    }

    .openeing-field .open-jobsmain {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .open-jobsmain .apply-job {
        width: 100%;
    }

    .apply-job .custom-btn {
        width: 100%;
    }

    section.career-open .subtext {
        width: 100%;
    }
    
    .opporty {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .opporty>div {
        width: 40%;
    }
    
    .open-jobsmain p {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {

    /* footer */
    .footer-inrdiv {
        width: 100%;
        margin-bottom: 30px;
    }

    .form-subscribe .form-control {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 0;
    }
    
    .form-subscribe .input-group {
        justify-content: center;
    }
    
    .form-subscribe .btn {
        transform: unset;
        border-radius: 0;
         width: 100%;
    }
    
    span.input-group-btn {
        width: 100%;
    }

    /* footer */
    h2 {
        font-size: 30px;
    }


    .banner-content h1 {
        font-size: 40px;
    }

    .counter-row .counter-innr:before {
        border-right: 0px solid;
        border-bottom: 1px solid;
        width: 70%;
        bottom: -12%;
        top: auto;
        margin: auto;
        text-align: center;
        left: 0;
        right: 0;
    }

    .counter-number .counter-item {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

	.footer-inrdiv.col-lg-4 {
        width: 100%;
    }
	
    .indust-cont p {
        width: 100%;
    }

    .industry-expert .fa-angle-left {
        top: auto;
        left: 0;
        right: auto;
        bottom: -4rem;
    }

    .industry-expert .fa-angle-right {
        top: auto;
        left: 5rem;
        right: auto;
        bottom: -4rem;
    }

    .industry-expert .slick-dots {
        bottom: -4rem;
    }

    .worked-company.row .col-lg-2 {
        background: #F6F6F6;
        width: 30%;
    }

    .assist-Form .form-group.col-lg-4 {
        width: 100%;
        margin-bottom: 30px;
    }

    .testimonials-slider .client-profile {
        flex-wrap: wrap;
        width: 100%;
        gap: 5px;
    }

    .testimonials-slider .owl-nav {
        position: absolute;
        right: 2%;
        bottom: -15%;
    }

    .testimonials-slider .item {
        padding: 40px 18px;
    }

    .client-desig,
    section.what-wedo .wedo-title {
        width: 100%;
    }

    .testimonials-slider .item::before {
        top: -1%;
        left: 2%;
        background-size: 80%;
    }

    section.what-wedo .d-flex {
        flex-wrap: wrap;
        gap: 20px;
    }

    section.what-wedo:before {
        width: 14%;
        height: 5%;
        right: 4%;
        top: 0;
        background-size: 100%;
    }

    .testimonial-main:before {
        width: 23%;
        height: 17%;
        top: 0%;
        right: -8%;
        background-size: 100%;
    }

    section.getin-touch::after {
        width: 23%;
        height: 22%;
        background-size: 80%;
        bottom: 0;
        left: 0%;
    }

    .blogs .d-flex {
        flex-wrap: wrap;
        gap: 20px;
    }

    .blogs .blog-title,
    section.blogs .enquiry-brn {
        width: 100%;
        text-align: left;
    }

    /* About Us */
    .counter-innr {
        width: 100%;
    }

    .counter-row .counter-innr p {
        width: 100%;
    }

    .counter-innr:last-child::before {
        border-bottom: 0;
    }

    .story-mission {
        width: 100%;
    }

    .mision-vision {
        flex-wrap: wrap;
    }

    .about-banner .about-content h1 {
        width: 100%;
        font-size: 40px;
    }

    .about-banner .banner-main {
        padding: 2rem 0 3rem;
    }

    .about-banner .about-content p {
        margin-bottom: 10px;
    }

    .story-content:after {
        width: 25%;
        height: 12%;
        top: -66px;
        left: auto;
        right: 0;
    }

    .about-banner .about-content::before {
        width: 26%;
        height: 35%;
        background-size: 47%;
        top: -15%;
        right: 0%;
    }

    .contact-infodetail {
        padding: 25px;
    }

    .contact-infodetail .address-locat {
        display: flex;
        gap: 5px;
    }

    .enquiry-brn .custom-btn {
        padding: 8px 20px;
        font-size: 15px;
        border-radius: 3px;
    }

    .contact-infoform {
        padding: 20px;
    }

    .address-locat .detial-logo {
        text-align: center;
        width: 20%;
    }

    .agency-service .flow-number::before {
        position: absolute;
        content: '';
        width: 6%;
        height: 67%;
    }
    
    .contact-banner h1 {
        font-size: 40px;
    }
    
    .contact-banner .about-image {
        margin-top: 0rem;
    }

    /* service page */
    .generat-lead .generat-service {
        width: 95%;
        margin: auto 0 20px;
    }

    .generat-lead.other-serv .generat-service {
        height: auto;
    }

    .service-subimg {
        flex-wrap: wrap;
    }

    .other-serv .generat-service:last-child {
        height: 300px !important;
    }

    .service-banner .banner-content h1 {
        padding: 0;
        font-size: 40px;
    }

    .brdcrmb {
        padding-left: 0px;
    }

    .sec6-marketcont {
        padding: 15px 10px 40px;
        height: auto;
    }
    
    .flow-contnt li {
        font-size: 17px;
        line-height: 20px;
        margin-top: 10px;
    }

    .service-banner .banner-main {
        width: 95%;
        margin: auto;
    }

    .service-banner .banner-image:after {
        top: -2rem;
        right: -2rem;
        height: 18%;
    }

    section.service-banner::before {
        width: 15%;
        height: 6%;
    }

    section.service-banner:after {
        width: 15%;
        height: 6%;
    }

    .brdcrmb li a,
    .brdcrmb li:last-child a,
    .brdcrmb .brdcrm_blistin_2 a {
        font-size: 18px;
    }

    .faq-singular .faq-question {
        width: 95%;
        font-size: 20px;
        align-items: start;
    }

    .faq-singular .faq-question span {
        font-size: 25px;
        margin-right: 10px;
    }

    .process-flow::before {
        width: 18%;
    }

    .content-flowmain .cont-process {
        width: 100%;
    }

    /* blog detail */
    .blogs-mian .blog-detailmain {
        transform: translateY(0%);
        width: 100%;
        border-radius: 0;
        padding: 20px;
    }

    .blog-banner .container {
        max-width: 100%;
    }

    .blogs-mian img {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .blog-banner img.blog-bg {
        height: 300px;
    }

    .detail-blogpage {
        margin-top: -13rem;
    }
    
    .subtitle-flex p {
        font-size: 18px;
    }
    
    .faqs-container .faq-answer div {
        font-size: 15px;
        font-family: 'Outfit-regular';
        line-height: 20px;
    }
    
    .generat-service p {
        line-height: 25px;
    }

    /**/
    .jobopen-banner .job-banner h1 {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    .jobopen-banner .job-banner {
        height: auto;
    }
    .jobopen-mian.row {
        padding: 40px 10px;
        margin-top: 0;
    }
    
    .jobopen-banner .job-banner h1 {
        font-size: 30px;
    }
	
/* 	cookies */
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
	width: 100%;
  }
  
  .cookie-container button {
    padding: 5px 18px;
  }
}

@media screen and (max-width: 500px) {
    .worked-company.row .col-lg-2 {
        background: #F6F6F6;
        width: 45%;
    }

    /* About Us */
    .flow-contnt h5 {
        font-size: 16px;
    }

    .flow-contnt p {
        width: 86%;
        margin: 10px auto;
        font-size: 12px;
        margin-left: 0;
    }

    .process-flow .col-lg-3 {
        padding: 0;
    }

    .process-flow .service-flow4::before,
    .process-flow .service-flow2::before {
        right: -1.5rem;
    }

    .process-flow .service-flow3::before,
    .process-flow .service-flow1::before {
        left: -3rem;
        top: 1rem;
    }

    .email-process {
        padding-top: 0;
        padding-left: 62px;
    }

    .email-innerflow .flow-contnt p {
        width: 95%;
    }

    .emailflow-main .flow-contnt::before {
        left: -11.5%;
        width: 12%;
        height: 35%;
    }

    .program-flow .program-process1::after,
    .program-flow .program-process3::after {
        width: 7%;
        left: -3.5%;
    }

    .program-flow .program-process2::after,
    .program-flow .program-process4::after {
        width: 7%;
        right: -3.5%;
    }

    /* career */

    .open-jobsmain h4 {
        width: 100%;
        text-align: center;
        font-size: 20px;
    }

    .openeing-field .open-jobsmain {
        gap: 20px;
    }

    .join-path h2 {
        font-size: 38px;
    }

    section.join-path {
        padding: 50px 0;
    }
}

@media screen and (max-width: 450px) {
    .blog-inner h3 {
        font-size: 20px;
        font-family: 'Outfit-semibold';
    }

    .conter-cont h2,
    .subtitle-flex h2 {
        font-family: 'Outfit-bold';
        margin-bottom: 10px;
        font-size: 25px;
    }

    .sec6-marketcont h5 {
        font-size: 20px;
    }

    .process-flow .service-flow3::before,
    .process-flow .service-flow1::before {
        left: -2.5rem;
    }

    /* About Us */

    .blog-banner img.blog-bg {
        height: 250px;
    }

    .blog-banner::after,
    .blog-banner::before {
        height: 3%;
        top: 1.5%;
        background-size: 100%;
        width: 10%;
    }

    .emailflow-main .flow-contnt::before {
        left: -14.5%;
        width: 12%;
        height: 28%;
        top: 29%;
    }


}

@media screen and (max-width: 375px) {

    .contact-infodetail h2 {
        font-size: 25px;
    }

    .about-banner .about-content h1 {
        width: 100%;
        font-size: 32px;
    }

    .service-banner .banner-content h1 {
        padding: 0;
        font-size: 32px;
    }

    .process-flow::before {
        width: 25%;
    }

    .service-flow4::before,
    .service-flow2::before {
        right: -1.2rem;
    }

    .service-flow3::before,
    .service-flow1::before {
        left: -2.2rem;
    }

    .process-flow .col-lg-3::before {
        width: 28%;
    }

    .process-flow .service-flow3::before,
    .process-flow .service-flow1::before {
        left: -2.3rem;
    }

    .blog-detailmain h1 {
        font-size: 25px;
    }

    .bloginner-cont h2 {
        font-size: 22px;
    }

    .bloginner-cont h3 {
        font-size: 20px;
    }

    .bloginner-cont p {
        font-size: 16px;
    }

}