/* Master Css */

@import url("/css/master.css");
/*-- Global css --*/
/*--header--*/

header {
    position: absolute;
    margin: 0;
    padding: 0px 20px;
    display: inline-block;
    width: 100%;
    z-index: 999;
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 250px;
}

header nav {
    width: calc(100% /1.5) !important;
    margin: 0;
    padding: 0;
    display: inline-block;
    position: relative;
}

header nav ul {
    padding: 0;
    margin: 0;
    text-align: right;
}

header nav li a span {
    font-size: 12px;
}

header nav li a {
    font-size: 15px;
    color: #fff;
    padding: 0px 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    font-family: var(--fontfamilyHelvetica);
    display: flex;
    gap: 8px;
}

header nav li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    line-height: 80px;
    position: relative;
}

header nav li.dropnav.megamenu {
    position: unset;
}

header nav .dropnav .megamenu,
header nav .dropnav .submenu {
    position: absolute;
    display: none;
    top: 100%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 40px 56px -16px #22066d29, 0 8px 20px #22066d0f, 1px 0 2px #22066d0a, 0 0 0 1px #22066d14;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgb(213, 215, 219);
}

header nav .dropnav:hover .megamenu,
header nav .dropnav:hover>.submenu {
    display: inline-block;
}

header.fixed-header {
    backdrop-filter: blur(10px);
    position: fixed;
    top: -70px;
    transition: transform .8s, -webkit-transform .8s;
    transform: translateY(69px);
    background: #050014c2;
}

header.fixed-header nav li {
    line-height: 35px;
}

header nav .dropnav:hover .megamenu {
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 300px;
}

.category-title {
    font-size: 14px;
    font-family: var(---fontfamilyDiavlo);
    margin: 0;
    padding: 0;
    line-height: 25px;
    letter-spacing: 0.2px;
}

header nav ul li ul li a {
    color: #000;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    font-family: var(--fontfamilyRoboto), var(--fontfamilyHelveticaNeue), var(--fontfamilyHelvetica);
}

header nav ul ul li {
    line-height: 15px;
    margin: 0;
    padding: 0;
}

header nav ul li a .role,
header nav ul li a .description {
    width: 100%;
    display: inline-block;
    position: relative;
}

header nav ul li .developer-link {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

header nav ul li a .role,
.submenu li a {
    font-size: 0.8rem;
    color: #121212;
    display: inline-block;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    line-height: 20px;
}

header nav ul li a .description {
    color: #555;
    font-size: 11px;
    line-height: 20px;
    font-weight: 400;
}

.nav-category ul {
    padding: 0;
    margin: 25px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

header nav .dropnav:hover>.submenu {
    width: 200px;
    text-align: left;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    border-radius: 6px;
}

.submenu li {
    display: inline-block;
    width: 100%;
    line-height: 35px;
}

header nav .dropnav:hover .megamenu.fullwidth {
    width: 100% !important;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
}

.supnabar {
    display: none;
}

/*-- Toggle --*/

.nav-toggle {
    position: relative;
    margin: 0px;
    width: 35px;
    height: 35px;
    padding: 0px 7px;
    float: right;
    border-radius: 4px;
    top: 4px;
    display: none;
}

.nav-toggle div {
    width: 100%;
    height: 2px;
    background: rgb(255 255 255);
    margin: 8px auto;
    transition: all 0.3s ease 0s;
    text-align: right;
    border-radius: 10px;
    font-size: large;
}

.nav-toggle .two {
    width: 80%;
    margin-right: 0px;
}

.nav-toggle .three {
    width: 60%;
    margin-right: 0px;
}

.submenu li a {
    font-size: 13px;
    line-height: 15px;
}

/*-- Schedule  -- */

.mobsec {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    width: auto;
    gap: 10px;
}

header .scheacal {
    width: auto;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    position: relative;
    animation: glowing 6s infinite;
    font-size: 13px;
    color: #ffffff;
    padding: 10px 25px;
    font-weight: 800;
    font-family: var(--fontfamilyInter);
    border: 0 solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin: 0;
    line-height: unset;
    border-radius: 50px !important;
    overflow: hidden;
}

header .scheacal span {
    display: none;
}

header .scheacal:hover {
    transform: scale(1.1);
}

@keyframes glowing {
    0% {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
    }

    25% {
        background: linear-gradient(135deg, #ff7e5f, #feb47b);
    }

    50% {
        background: linear-gradient(135deg, #43cea2, #185a9d);
    }

    75% {
        background: linear-gradient(135deg, #ff4b1f, #1fddff);
    }

    100% {
        background: linear-gradient(135deg, #6a11cb, #2575fc);
    }
}

/*-- Scroll Top --*/

.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 93, 224, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(130%);
    z-index: 99;
    transition: all 200ms linear;
}

.progress-wrap::after {
    position: absolute;
    content: "\f108";
    font-family: flaticon !important;
    text-align: center;
    line-height: 45px;
    font-size: 16px;
    color: #714592;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    transform: rotate(90deg);
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #714592;
    stroke-width: 4;
    box-sizing: border-box;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 5px;
    height: 100px;
}

::-webkit-scrollbar-track {
    background-color: #ddd;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: linear-gradient(45deg, #ffeb3b, #194099e0);
}

/*-- Slider --*/

.slider {
    width: 100%;
    padding: 80px 0px 20px;
    position: relative;
    display: inline-block;
}

.slider:before {
    content: '';
    background: url('/images/backround.svg') no-repeat center center;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    z-index: -1;
}

.slider .container-fluid {
    display: grid;
    height: 100%;
    align-content: space-between;
}

/*-- Slider Social Media --*/

.slider .socilMedia {
    position: relative;
    width: 100%;
    display: inline-block;
    border-top: 1px dotted #ffffff14;
    border-bottom: 1px dotted #ffffff14;
}

.slider .socilMedia ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    /* Adds space between columns */
    padding: 0px 20px;
    z-index: 2;
    position: relative;
}

.slider .socilMedia li {
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
    border-right: 1px solid #ffff;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.slider .socilMedia li:last-child {
    border-right: unset;
}

.slider .socilMedia li a {
    color: #fff;
    font-size: 14px;
    font-family: var(--fontfamilyHelveticaNeue);
    font-weight: 400;
    letter-spacing: 1.5px;
    width: 100%;
    line-height: 45px;
    display: inline-block;
    cursor: pointer;
}

.slider .slitex {
    position: relative;
    margin: 0;
    padding: 0px 0px;
    overflow: hidden;
    margin-bottom: 30px;
    padding-left: 50px;
}

.slider .slitex h3,
.top-banner .textbanesec h4 {
    color: transparent;
    background-clip: text;
    background-image: radial-gradient(89.47% 51.04% at 44.27% 50%, #e2e3e9 0, #d4d6de 52.73%, #3d3f4c 100%);
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 1.0px;
    font-family: var(--fontfamilyInter);
    font-weight: 900;
    margin-bottom: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    mix-blend-mode: screen;
    pointer-events: none;
}

.slitexpad {
    position: relative;
    padding: 50px 0px 50px;
}

.lefcontdsecarezon.stickysecpos {
    position: sticky;
}

.slider .slitex p {
    color: rgb(171 174 187 / 1);
    font-size: 16px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.slider .slitex .bokconsbtn,
.top-banner .textbanesec a {
    background: unset;
    border: 2px solid #fff;
    padding: 15px 20px;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
}

.slick-dots {
    position: absolute;
    top: 30%;
    left: 0px;
    padding: 0;
    margin: 0;
}

.slick-dots button {
    border-radius: 50px;
    margin: 0;
    font-size: 10px;
    font-weight: 800;
    font-family: 'Helvetica Neue';
    background: #04040400;
    border: 2px dotted #726767;
    color: #fff;
}

.slick-dots li {
    margin-bottom: 5px;
}

.slitex .item {
    text-align: left;
    padding: 30px 20px;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}

.slick-dots .slick-active button {
    background: #ffffff40;
}

/*-- Slider Services --*/

.services li {
    gap: 20px;
    margin: 0;
    padding: 15px;
    list-style: none;
    border: 1px solid #fefefe1f;
    border-radius: 4px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: #ffffff0a;
    cursor: pointer;
    position: relative;
    transition: 0.5s all linear;
    overflow: hidden;
}

.services ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: space-between;
    align-content: center;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.services li p {
    color: rgb(171 174 187 / 1);
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    padding: 5px 0px 0px;
}

.services li h6 {
    color: transparent;
    background-clip: text;
    background-image: radial-gradient(89.47% 51.04% at 44.27% 50%, #e2e3e9 0, #d4d6de 52.73%, #3d3f4c 100%);
    line-height: 1.0;
    letter-spacing: 1.0px;
    font-family: var(--fontfamilyInter);
    font-weight: 900;
    margin-bottom: 0;
    font-size: 40px !important;
}

.services li span {
    width: 40px;
    margin: 0;
    display: inline-block;
    filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(277deg) brightness(116%) contrast(100%);
}

.services li h6 sup {
    color: transparent;
    background-clip: text;
    background-image: radial-gradient(89.47% 51.04% at 44.27% 50%, #e2e3e9 0, #d4d6de 52.73%, #3d3f4c 100%);
    margin-left: 5px;
}

.services li:hover,
.slider .socilMedia li:hover {
    transition: 0.5s all linear;
}

.services li:before,
.slider .socilMedia li:before {
    position: absolute;
    background: #c0c0c014;
    content: '';
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 1s all linear;
    -webkit-transition: 1s all linear;
    -moz-transition: 1s all linear;
    -ms-transition: 1s all linear;
    -o-transition: 1s all linear;
}

.services li:hover:before,
.slider .socilMedia li:hover:before {
    right: 0;
    transition: 1s all linear;
}

.slider .socilMedia li:hover {
    transform: scale(1.1);
}

/*-- Footer --*/

footer {
    background: url('/images/world.png') no-repeat center center;
    background-color: #000;
    display: block;
    padding: 50px 0 0px;
    color: #8a8a8a;
}

footer .foterlogo {
    width: 100%;
    display: inline-block;
    padding-right: 20px;
}

footer .foterlogo img {
    width: 200px;
    margin: 0px 0px 10px;
    padding: 0;
}

.foterlogo p {
    color: rgb(171 174 187 / 1);
    font-size: 13px;
    line-height: 24px;
    display: inline-block;
    width: 100%;
}

footer .trasprantclas {
    background: #ffffff14;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: calc(100% - 50px);
    margin: 30px auto 30px;
    padding: 30px;
    border: 2px solid #ffffff1a;
}

footer h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: var(--fontfamilyRoboto), var(--fontfamilyHelveticaNeue), var(--fontfamilyHelvetica);
    margin-bottom: 20px;
    border-bottom: 2px solid #0a58ca;
    width: max-content;
    padding-bottom: 5px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    margin: 0;
    padding: 0;
    line-height: 30px;
}

footer ul li a {
    color: #c0c0c0;
    font-size: 13px;
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

footer .copyright {
    text-align: center;
    margin: 0 auto;
    padding: 5px 0px;
    background: #ffffff1f;
    backdrop-filter: blur(10px);
    border-top: 2px solid #ffffff1a;
    border-bottom: 2px solid #ffffff1a;
}

footer .copyright p {
    margin: 0;
    padding: 0;
    display: inline-block;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
}

footer .row:first-child {
    width: calc(100% - 50px);
    margin: 0 auto;
}

.footer-contact li a {
    display: flex;
    gap: 14px;
    line-height: 30px;
}

p.needhelp {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: #c0c0c0;
    font-size: 13px;
    line-height: 25px;
    width: 100%;
}

.footer-social li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer-social li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    margin-right: 5px;
}

.footer-social li:last-child a {
    margin-right: 0;
}

/*-- Services --*/

.services .textaresec {
    position: sticky;
    top: 100px;
    padding-top: 30px;
}

.prodsersec {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* gap: 15px; */
}

.boxsecarea {
    padding: 20px;
    background-color: #ffffff;
    /* border-radius: 12px; */
    /* box-shadow: rgba(24, 24, 27, 0.06) 0px 8px 15px 0px, rgba(24, 24, 27, 0.04) 0px 0px 1px 0px; */
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 20px;
    grid-template-columns: 0fr 1fr;
    border: 1px solid #f1f1f1;
    cursor: pointer;
}

.boxsecarea span {
    width: 55px;
    height: 55px;
    display: inline-block;
}

.boxsecarea h4 {
    font-size: 18px;
    margin: 0px 0px 5px;
    color: rgb(0, 0, 0);
    font-weight: 700;
    line-height: unset;
}

.boxsecarea p {
    font-size: 12px;
    line-height: 22px;
    margin: 0;
    padding: 0;
}

.boxsecarea ul {
    position: relative;
    display: inline-block;
    padding: 0;
    grid-column: 1 / -1;
}

a .services .textaresec {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.boxsecarea ul li {
    margin: 0;
    padding: 5px 10px;
    display: inline-block;
    width: max-content;
    line-height: 18px;
    font-size: 11px;
    border: unset;
    border-radius: unset;
    /* border-right: 3px solid #e3dcdc; */
    background: #f1f1f1;
    border-radius: 4px;
}

.services .textaresec h4,
.textareseczon h5,
.subtilesec {
    font-family: var(--fontfamilyDiavlo);
    margin: 0;
    padding: 0;
    line-height: 25px;
}

.services .textaresec h5 {
    font-family: var(--fontfamilyCoolvetica);
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 1.2px;
    text-transform: capitalize;
    margin: 10px 0px 10px;
    background: url('/images/animated_text_fcill1.png') repeat-y;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation: aitf 80s linear infinite;
}

@keyframes aitf {
    100% {
        background-position: 0% 50%;
    }

    0% {
        background-position: 100% 50%;
    }
}

.services p,
.weworkwithus .tithead p,
.textareseczon p,
.clintsecser p,
.paragraphtext p,
.whychoose-list li p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: #555;
}

.services .boxsecarea .contox p {
    font-size: 13px;
    line-height: 22px;
}

.boxsecarea ul li:last-child {
    border: unset;
    margin-right: unset;
    padding-right: unset;
}

/*-- Cookie Consent --*/

.CookieConsent {
    align-items: baseline;
    background: rgb(255, 255, 255);
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    right: 20px;
    position: fixed;
    width: 250px;
    z-index: 999;
    padding: 36px 24px 24px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;
    border-radius: 8px;
    bottom: 20px;
    display: none;
}

.CookieConsent img {
    position: absolute;
    top: 0px;
    width: 64px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.CookieConsent p {
    width: 100%;
    color: #63727e;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 150%;
}

.CookieConsent .polandbutn {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 15px;
}

.CookieConsent .polandbutn a {
    color: rgb(128, 142, 154);
    font-size: 12px;
    font-style: normal;
}

.CookieConsent .polandbutn button.btn.acebtn {
    background: rgb(0, 193, 162);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 5px 15px;
    margin: 0px;
    font-size: 12px;
    position: relative;
}

/*-- all Tech languages--*/

.weworkwithus {
    background: #e9ecea;
}

.tithead {
    width: calc(100% - 150px);
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.weworkwithus .tithead h5 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 35px;
    letter-spacing: 0.5px;
}

.weworkwithus .tithead p {
    line-height: 25px;
}

.tachtabsec {
    position: relative;
    margin: 0;
    padding: 0;
}

.tachtabsec .teclang,
.tachtabsec .teclangcont {
    padding: 0;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: rgb(233, 233, 233) 2px 5px 20px;
    overflow: hidden;
    border: 1px solid rgb(9 33 19 / 40%);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tachtabsec .teclang li {
    display: inline-block;
    font-family: var(--fontfamilyOutfit);
    margin: 0;
    padding: 15px 20px;
    line-height: 25px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: 0.5s all linear;
}

.tachtabsec .teclangcont {
    display: none;
    padding: 20px;
}

.tachtabsec .teclangcont.active {
    display: block;
}

.tachtabsec .teclangtab.active {
    color: #ff0818;
    cursor: pointer;
    border-bottom: 2px solid #fc3441;
    border-top: 2px solid #fc3441;
    background: #fc34410a;
    transition: 0.5s alllinear;
}

.teclangcont ul {
    margin: 0;
    display: grid;
    padding: 0;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 10px;
}

.teclangcont ul li {
    display: flex;
    border-radius: 8px;
    transition: all .5s ease-in-out;
    align-items: center;
    width: 130px;
    height: 130px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: 1px solid #9da6a126;
}

.teclangcont ul li:hover {
    background: #e9ecea;
}

.teclangcont ul li span {
    height: 55px;
    width: auto;
    max-width: 100px;
    display: inline-block;
}

.teclangcont ul li span img {
    width: 100%;
    height: 100%;
}

.teclangcont ul li b {
    font-size: 14px;
    margin-top: 10px;
}

/*-- We work with all secter in INDUSTRY  --*/

.imboxsection h4 {
    writing-mode: sideways-rl;
    margin: 0;
    padding: 0;
    font-family: var(--fontfamilyMultipleSans);
    font-style: normal !important;
    font-size: 90px;
    color: #d9dde3;
    font-weight: 500;
}

.imboxsection {
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    top: 100px;
}

.industries_content {
    position: absolute;
    bottom: -10px;
    right: 0px;
    transform: translate(100px, -60px);
    max-width: 70%;
    background: white;
    padding: 20px 15px;
    border-radius: 4px;
}

.img_industries {
    max-width: 100%;
    position: relative;
}

.ind_img {
    width: 75px;
    position: relative;
    left: 0px;
}

.textareseczon h6 {
    font-size: 45px;
    margin-top: 10px;
    line-height: 55px;
    margin-bottom: 20px;
    letter-spacing: 2.3px;
}

.worksecoffilt .col-md-7 {
    padding-right: 50px;
}

.serfoalsol {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.serfoalsol ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.remobta {
    position: relative;
    font-weight: 600;
    animation: hi .5s infinite;
    color: #1899d2;
    display: flex;
    align-items: center;
}

@keyframes hi {
    0% {
        border-color: lime;
        color: lime;
    }

    25% {
        border-color: green;
        color: green;
    }

    50% {
        border-color: blue;
        color: blue;
    }

    75% {
        border-color: orangered;
        color: orangered;
    }
}

a.remobta span {
    width: 50px;
    animation: hi .5s infinite;
    position: absolute;
    transform: unset;
    border-bottom: 2px solid #1899d2;
    left: 80px;
    border-radius: 4px;
}

a.remobta span:before {
    width: 40px;
    right: -25px;
    height: 40px;
    top: -20px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #1899d2;
}

a.remobta span:after {
    right: -9px;
    top: -4.2px;
    border-radius: 2px;
    width: 5px;
    height: 5px;
    border-left: solid 5px #1899d2;
    border-bottom: solid 5px #ffffff !important;
    border-top: solid 5px #ffffff !important;
}

.industries_content h3 {
    font-family: var(--fontfamilyMultipleSans);
    font-weight: 800;
    color: #898989;
}

.industries_content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: #898989;
    font-style: italic;
    margin-bottom: 30px;
}

a.remobta.risbta {
    position: relative;
    font-weight: 600;
    animation: hi .5s infinite;
    color: #1899d2;
}

.serfoalsol li,
.boxsecbor {
    gap: 15px;
    display: flex;
    align-items: stretch;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgb(223 226 231 / 61%);
    flex-direction: column;
    padding: 15px;
    cursor: pointer;
}

.serfoalsol li .icon {
    width: 100%;
    height: 130px;
    background: #dde0e636;
    display: flex;
    border-radius: 8px;
    color: #fff;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.serfoalsol li .icon img {
    width: 80px;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.serfoalsol li .contebose {
    margin: 0 auto;
    display: inline-block;
    flex: 1;
    margin-bottom: 10px;
}

.serfoalsol li .remobta {
    position: relative;
    margin-bottom: 20px;
    margin-top: 10px;
}

.serfoalsol li .contebose h4 {
    font-family: var(--fontfamilyRoboto);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 27px;
}

.serfoalsol li .contebose p {
    font-size: 13px;
    line-height: 25px;
    font-weight: 400;
    color: #555;
    margin: 0;
}

.serfoalsol li .icon h3 {
    padding: 0;
    position: absolute;
    display: block;
    text-align: center;
    vertical-align: middle;
    margin: initial;
    left: 0;
    right: 0;
    font-family: var(--fontfamilyDiavlo);
    font-size: 28px;
    line-height: 35px;
    color: rgb(255 255 255);
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(217 221 227);
    letter-spacing: 1px;
}

.serfoalsol li .contebose h3 {
    font-family: var(--fontfamilyDiavlo);
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #ff0818;
    line-height: 15px;
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}

.textareseczon h3 {
    margin-top: 10px;
    font-size: 25px;
    font-weight: revert;
    font-family: var(--fontfamilyDiavlo);
    margin-bottom: 15px;
}

.textareseczon p {
    margin-bottom: 20px;
}

.serfoalsol.rigsidsec ul {
    display: inline-block;
    margin-top: 10px;
}

.serfoalsol.rigsidsec li {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 15px;
    gap: 10px;
    counter-increment: auto-increment-numbers;
    position: relative;
    padding: 0;
}

.serfoalsol.rigsidsec li span {
    width: 100px;
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serfoalsol.rigsidsec .contebose h4 {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 5px;
    font-family: var(--fontfamilyRoboto);
}

.serfoalsol.rigsidsec li .contebose {
    margin-bottom: 0;
    padding: 10px 0px 16px;
}

.serfoalsol.rigsidsec .contebose h3 {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.serfoalsol.rigsidsec li span:before {
    content: counter(auto-increment-numbers);
    color: rgba(255, 255, 255, .05);
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ff0818;
    font-size: 55px;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: var(--fontfamilyDiavlo);
    opacity: 0.2;
}

.serfoalsol.rigsidsec li span img {
    width: 60px;
}

/*-- Video Section --*/

.stepwok video {
    min-width: 100%;
    z-index: 1;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.bg-video-wrap .text-section {
    position: absolute;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: block;
    left: 0;
    z-index: 1;
    top: 30px;
    letter-spacing: 1px;
}

.bg-video-wrap {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.bg-video-wrap .text-section h4 {
    font-size: 46px;
    color: #ffffff;
    line-height: 60px;
    font-family: var(--fontfamilyDiavlo);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    margin-bottom: 0px;
    display: inline-block;
}

/*-- Client Section --*/

.clintsecser h3,
.serprohelp h3 {
    font-size: 18px;
    margin: 0 auto;
    padding: 0;
    line-height: 18px;
    width: max-content;
    margin-bottom: 5px;
    font-family: var(---fontfamilyDiavlo);
}

.clintsecser h4 {
    font-size: 35px;
}

.clients-slider {
    border: 1px solid rgb(9 33 19 / 40%);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}

.clients-slider .item {
    height: 100%;
    aspect-ratio: 16 / 9;
    padding: 20px;
    transition: 0.5s all linear;
    width: 100% !important;
    border-right: 1px solid rgb(9 33 19 / 40%);
    transition: 0.5s all linear;
    cursor: pointer;
}

.clients-slider .item img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    width: 100% !important;
    transition: 0.5s all linear;
}

.owl-carousel .owl-item.active.center {
    margin: 0 auto;
    display: block;
    cursor: pointer;
    transition: 0.5s all linear;
}

.owl-carousel .owl-item.active.center img {
    padding: 0;
    background-color: unset;
    transition: 0.5s all linear;
}

.owl-carousel .owl-item.active.center .item {
    padding: 15px;
    transition: 0.5s all linear;
    border-color: #ff0818;
    background-color: #dde0e636;
}

/*-- Recent Project --*/

.recprosecare .tithead,
.flesdivse {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.recprosecare .tithead a.remobta {
    text-align: right;
}

.recprosecare .tithead h3 {
    text-align: left;
    margin: 0 0 10px;
}

.recprosecare .tithead .divseczon,
.flesdivse .textsecare {
    width: calc(100% - 150px);
}

.recprosecare .tithead h4 {
    margin-bottom: 15px;
}

.recent-projects-slider .item {
    overflow: hidden;
    width: 100%;
    border-style: solid;
    border-width: 10px;
    border-color: #033537;
    border-radius: 5px 5px 5px 5px;
    margin: 0 auto;
    aspect-ratio: 20/30;
}

.recprosecare .grils-backside {
    width: 20%;
    margin: 0 auto;
    display: block;
    margin-top: -50%;
    z-index: 2;
    background: unset;
}

.recprosecare {
    background: #efefefab url(/images/floor-tiles.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    transition: 0.5s all linear;
    padding-bottom: 0;
    background-blend-mode: lighten;
}

.recent-projects-slider .owl-item .item {
    border: unset;
    border-radius: unset;
    background: url(/images/mobile-frame.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    display: block;
    position: relative;
    background-position: top, center;
    background-color: unset;
    padding: 0;
    transition: 0.5s all linear;
    height: 100vh;
}

.border-div {
    width: calc(100% - 30px);
    z-index: -1;
    position: relative;
    border-radius: 19px;
    overflow: hidden;
    margin: 0 auto;
    display: block;
    transition: 0.5s all linear;
    top: 20px;
    height: 67vh;
    background: #fff;
}

.recent-projects-slider .owl-item.active.center .item {
    background-color: unset;
    border-radius: unset;
    display: inline-block;
    padding: 0;
    transition: 0.5s all linear;
}

.owl-carousel .owl-item.active.center {
    transform: scale(1.1);
    transition: 0.5s all linear;
}

.recent-projects-slider .owl-stage {
    padding: 50px 0px 0;
    display: inline-flex;
    transition: 0.5s all linear;
}

.recprosecare .grils-backside img {
    filter: drop-shadow(1px 2px 4px black);
    transition: 0.5s all linear;
}

/*--- Get A Query --*/

.get-a-query {
    background: linear-gradient(to right, #11013b61 0, #0b01264f 100%), url(/images/backgound-img.jpg);
    margin: 0;
    background-attachment: fixed;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.get-a-query .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-a-query .textarezonsec {
    width: max-content;
    display: inline-block;
    text-align: left;
}

.get-a-query .get_a_quote {
    padding: 15px 30px;
    margin: 0px 0 0 0px;
    font-size: 17px;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: all ease 0.5s;
    overflow: hidden;
    display: inline-block;
    width: max-content;
}

.get-a-query .textarezonsec h4 {
    font-size: 50px;
    font-weight: 600;
    margin: 0 auto;
    line-height: 60px;
    color: #fff;
    text-align: right;
}

.get-a-query .textarezonsec p {
    display: block;
    color: #fff;
    font-size: 20px;
    margin: 10px 0 0px;
    padding-right: 50px;
}

/*--- Blogs --*/

.blog-images-blog-pages {
    margin: 0 auto;
    width: 100%;
    display: block;
    /* box-shadow: 2px 2px 10px #00000029; */
    border-radius: 8px;
    overflow: hidden;
    /* border: 1px solid rgb(9 33 19 / 40%); */
}

.latest_blog {
    width: calc(95% - 0px);
    margin: -45px auto 0;
    box-shadow: 0 15px 15px #e4e4e4;
    padding: 20px 20px;
    position: relative;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 50px;
    border: 1px solid rgb(9 33 19 / 40%);
}

.latest_blog h5 {
    color: #005dbd;
    margin-bottom: 15px;
}

.latest_blog p {
    padding: 0px 0 0;
    color: #6f6f6f;
    font-family: 'Roboto';
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-align: justify;
}

.latest_blog span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #005dbd;
}

.Blogslidprosec .owl-item.active.center .item {
    padding: 15px;
    transition: 0.5s alllinear;
    border-color: #ff0818;
    background-color: #fff;
}

.Blogslidprosec .owl-stage-outer {
    margin: 0px 0px 0px;
    padding-top: 40px;
}

.blog-images-blog-pages .tithead {
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    padding: 0;
}

.blog-images-blog-pages .tithead h3 {
    text-align: left;
    margin: 0px 0px 15px;
}

.blog-images-blog-pages .tithead h4 {
    margin-bottom: 20px;
}

.blog-images-blog-pages .divseczon {
    width: calc(100% - 200px);
}

.Blogslidprosec .owl-dots {
    display: none;
}

/*-- Form Section --*/

.fromsecaresec {
    background: url(/images/inq-bg.webp);
    margin: 100px 0px 0px;
    width: 100%;
    position: relative;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    padding-bottom: 30px;
}

.fromsecaresec:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    opacity: 0.5;
}

.fromsecaresec .followus h4 {
    font-size: 40px;
    color: #ffffff;
    margin: 0px 0 20px;
}

.fromsecaresec .followus p {
    color: #ffffff;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.followus ul li a {
    width: 100%;
    padding: 10px 15px;
    background: rgb(0 11 23 / 49%);
    margin: 0 0 10px;
    border-radius: 7px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.followus ul li {
    list-style: none;
}

.followus ul {
    display: inline-block;
    list-style: none;
    width: 100%;
}

.followus ul li a span {
    border-right: 1px solid #9bb6bf;
    font-size: 30px;
    color: #fff;
    padding: 5px 0;
    width: 80px;
    text-align: center;
}

.followus ul li a .texarelim {
    width: calc(100% - 60px);
    padding: 10px 20px 10px;
}

.followus .texarelim h4 {
    margin: 0 0 10px;
    color: #fff;
    line-height: 18px;
    font-size: 18px;
}

.followus .texarelim p {
    margin: 10px 0 0;
    color: #e2e2e2;
    line-height: 15px;
}

.followus {
    position: relative;
    margin: 0;
    padding: 0;
    padding-right: 100px;
}

.fromsecaresec form {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 100%;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 10px 7px rgb(0 0 0 / 6%);
    padding: 50px 40px;
    right: 0;
    margin-top: -170px;
    z-index: 9;
    border: 1px solid rgb(9 33 19 / 40%);
}

.fromsecaresec form h4 {
    display: block;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 40px;
}

.forsecare {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
}

.forsecare .form-group:last-child {
    grid-column: span 2 / span 2;
}

.forsecare .form-group label {
    width: 100%;
    margin: 0px 0px 0;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.forsecare .form-group .form-control {
    height: 40px;
    border: 1px solid #e8e8e8;
    font-size: 12px;
    color: #222;
    width: 100%;
    border-radius: 4px;
    margin: 0;
    padding: 5px 10px;
}

.forsecare .form-group {
    margin-bottom: 0;
}

.forsecare .form-group:last-child textarea.form-control {
    height: 100px;
}

.fromsecaresec form .BtnSubmit {
    background: linear-gradient(45deg, #0158b1, #0159b2);
    border: 0;
    color: #fff;
    display: block;
    padding: 12px 50px;
    margin: 30px 0 0;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
}

/*-- Why Choocies Us --*/

.serboxproare ul li {
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: rgba(24, 24, 27, 0.06) 0px 10px 15px 0px, rgba(24, 24, 27, 0.04) 0px 0px 1px 0px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(223 226 231 / 61%);
    cursor: pointer;
}

.serboxproare ul li span {
    width: 100%;
    display: inline-block;
    margin: 0 auto 10px;
    height: 120px;
    background: #dde0e636;
    border-radius: 10px;
}

.serboxproare ul li span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    display: block;
    padding: 10px;
}

.serboxproare ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    align-items: stretch;
    justify-content: center;
}

.serprohelp h4 {
    margin: 0;
    padding: 0;
    font-size: 35px;
    margin-bottom: 5px;
}

.serboxproare li h4 {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 15px;
}

.serboxproare li p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 30px;
}

.serprohelp p {
    padding: 0;
    margin: 0;
}

.serboxproare {
    margin-top: 30px;
}

/*-- Coming soon --*/

section {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #0b2345, #000307);
    z-index: 1;
}

#beerCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.svgicons {
    position: relative;
    margin: 0 auto;
    padding: 0px 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svgicons svg {
    width: 200px;
    margin: 0 auto 20px;
    display: block;
}

.coming_content {
    margin: 10px auto;
    display: block;
    text-align: center;
    background: #ffffff17;
    border-radius: 7px;
    width: max-content;
    height: 100%;
    padding: 70px;
    box-shadow: 2px 4px 20px #03132a;
    position: relative;
    z-index: 1;
    width: 50%;
}

.coming_content h1 {
    color: #ffff;
    font-weight: 700;
    font-size: 70px;
    transition: 0.5s all linear;
}

.coming_content h3 {
    color: #fff;
    font-size: 15px;
    margin-top: 25px;
    transition: 0.5s all linear;
    margin-bottom: 30px;
    line-height: 30px;
    font-weight: 400;
}

.coming_content a {
    color: #000000;
    padding: 0;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 18px;
    transition: 0.5s all linear;
}

.coming_content:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    opacity: 0.1;
    transition: 0.5s all linear;
}

.coming_content h6 {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 4px;
    width: max-content;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f2bd01;
    transition: 0.5s all linear;
    cursor: pointer;
}

.coming_content h6:after,
.coming_content h6:before {
    content: '';
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    background: #9b7a0a;
    z-index: -1;
    border-radius: 50px;
    opacity: 0.2;
    transition: 0.5s all linear;
}

.coming_content h6:before {
    left: -50px;
}

.coming_content h6:after {
    right: -50px;
}

.coming_content h6:hover,
.coming_content h6:hover a {
    background: unset;
    transition: 0.5s all linear;
    color: #fff;
}

.coming_content h6:hover::before,
.coming_content h6:hover::after {
    background: #ffff;
    width: 100%;
    border-radius: unset;
    left: 0;
    right: 0;
    transition: 0.5s all linear;
}

.forsecare #otpMessages:last-child {
    grid-column: span 2 / span 2;
}

#otpMessages h6 {
    width: 100%;
    display: inline-block;
    font-size: 12px;
}

.forsecare .optfild:nth-last-child(2) {
    grid-column: span 2 / span 2;
}

.forsecare .form-group.onseare .form-control {
    pointer-events: none;
    background-color: #e9ecef;
    cursor: not-allowed;
}

/*-- topm banner --*/

.top-section-graphic-desing {
    padding: 130px 0px 100px;
    background-size: cover;
    background: url(/images/graphic-banner.jpg);
    background-repeat: no-repeat;
}

.top-section-graphic-desing h2 {
    font-weight: 900;
    font-size: 50px;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 10px;
}

.top-section-graphic-desing p {
    line-height: 30px;
    color: #fff;
    font-size: 14px;
}

.top-section-graphic-desing a {
    color: #fffefe;
    border-width: 1px;
    background: #030d44;
    display: inline-block;
    padding: 15px 40px;
    text-transform: capitalize;
    margin-top: 10px;
    font-size: 15px;
    border-radius: 4px;
    border: unset;
    letter-spacing: 0.8px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-box-section .top-box-section {
    background: #fff;
    margin: 0;
    padding: 20px 50px;
    margin-top: -130px;
    border-radius: 4px;
}

.content-box-section .top-box-section h4 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-size: 30px;
    line-height: 60px;
    letter-spacing: 0.02em;
    color: #3f51b5;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.content-box-section .top-box-section p:hover {
    color: #000000;
}

.content-box-section .top-box-section p {
    margin: 10px 0;
    padding: 5px 0 15px;
    color: #494949;
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
    border-left: 3px groove #2196f3;
    padding-left: 15px;
    position: relative;
}

.content-box-section .top-box-section p:after {
    position: absolute;
    left: -2px;
    top: 0;
    width: 1px;
    height: 30%;
    content: '';
    background: #000000;
}

.content-box-section .top-box-section p:hover:after {
    height: 100%;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}

.content-box-section .top-box-section ul {
    margin: 10px 0;
    padding: 5px 0 15px;
    color: #494949;
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    border-left: 3px groove #2196f3;
    padding-left: 35px;
    position: relative;
}

/*-- Top Banner --*/
.top-banner {
    background: #010118;
    width: 100%;
    padding: 100px 0px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.top-banner .textbanesec {
    padding: 20px 50px 30px;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.top-banner .imgbanesec {
    width: 100%;
    height: 100%;
}

.top-banner .imgbanesec img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.top-banner .textbanesec h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.top-banner .textbanesec p {
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 10px;
}

.top-banner .textbanesec h4 {
    font-size: 35px;
    line-height: 45px;
    margin: 0px 0px 15px;
    font-weight: 500;
    background: radial-gradient(169.47% 75.04% at 54.27% 60%, #e2e3e9 0, #d4d6de 52.73%, #3d3f4c 100%);
    background-clip: text;
}

.top-banner .textbanesec a {
    padding: 10px 40px;
    margin-top: 30px;
}

.top-banner .textbanesec h4 b {
    font-weight: 800;
}

/*-- liew --*/

.lines {
    position: absolute;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.top-banner .line {
    height: 100%;
    width: 6px;
    background: transparent;
    position: relative;
    top: 0;
    overflow: hidden;
    z-index: 1;
}

.top-banner span {
    display: inline-block;
}


.top-banner .line:before,
.top-banner .line:after {
    content: "";
    position: absolute;

}

.top-banner .line:before {
    height: 30px;
    width: 4px;
    background: #ffffff;
    left: 2px;
    animation: run 6s ease-in-out infinite;
    z-index: 1;
    border-radius: 4px;
    opacity: 0.2;
}

.top-banner .line:after {
    height: 100%;
    width: 1px;
    background: hsl(244.5deg 43.48% 21.84%);
    top: 0;
    left: 3px;
    z-index: 1;
    opacity: 0.6;
}

@keyframes run {
    from {
        top: -20px;
    }

    to {
        top: 100%;
    }
}

.top-banner .line:nth-child(1)::before {
    animation: run 4s ease-in-out infinite;
    animation-delay: 0s;
    -webkit-animation: run 4s ease-in-out infinite;
}

.top-banner .line:nth-child(2)::before {
    animation: run 4.2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.top-banner .line:nth-child(3)::before {
    animation: run 4.4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.top-banner .line:nth-child(4)::before {
    animation: run 4.6s ease-in-out infinite;
    animation-delay: 0.9s;
}

.top-banner .line:nth-child(5)::before {
    animation: run 4.8s ease-in-out infinite;
    animation-delay: 1.2s;
}

.top-banner .line:nth-child(6)::before {
    animation: run 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.top-banner .line:nth-child(7)::before {
    animation: run 5.2s ease-in-out infinite;
    animation-delay: 1.8s;
}

.top-banner .line:nth-child(8)::before {
    animation: run 5.4s ease-in-out infinite;
    animation-delay: 2.1s;
}

.top-banner .line:nth-child(9)::before {
    animation: run 5.6s ease-in-out infinite;
    animation-delay: 2.4s;
}

.top-banner .line:nth-child(10)::before {
    animation: run 5.8s ease-in-out infinite;
    animation-delay: 2.7s;
}

.top-banner .line:nth-child(11)::before {
    animation: run 6s ease-in-out infinite;
    animation-delay: 3s;
}

/*--- breadcrumb -----*/
.breadcrumb {
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.breadcrumb li {
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    width: auto;
    color: #fff;
    font-size: 13px;
}

#breadcrumb li a {
    background: unset;
    padding: 0;
    border: unset;
}

#breadcrumb li a span {
    font-size: 13px;
    color: #fff;
    margin: 0px 10px;
    margin-right: 0;
}

#breadcrumb li a span i {
    font-size: 12px;
    margin: 0px 5px;
}

/*-- Remot Pages Css --*/
.texhiresection .textanition {
    line-height: 45px;
    font-size: 35px;
    margin-bottom: 30px;
}

.hirebashiretech {
    background: #F8F8F8;
}

.hirebashiretech .subtilesec {
    margin-bottom: 5px;
    font-size: 18px;
}

.hirebashiretech .textanition {
    font-size: 35px;
    margin-bottom: 15px;
}

.hirebashiretech .color {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.hirebashiretech .botparg {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
    font-weight: 600;
    line-height: 30px;
}

.hirehiretechsecre h4 {
    font-size: 28px;
    margin: 0;
    margin-bottom: 10px;
}

.fireboxsaec ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.fireboxsaec ul li {
    background: #fff;
    box-shadow: 0px 3px 30px 0px rgba(51, 65, 85, 0.05), 0px 4px 12px 0px rgba(51, 65, 85, 0.05);
    border-radius: 0.5rem;
    padding: 20px 20px;
    border: 1px solid rgb(213, 215, 219);
    cursor: pointer;
}

.fireboxsaec ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    font-family: 'Poppins';
    text-align: center;
    margin: 0 auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.fireboxsaec {
    margin: 20px 0px 0px;
    display: inline-block;
    width: 100%;
    position: sticky;
    top: 100px;
}

.hirehiretechsecre p {
    font-size: 14px;
    line-height: 30px;
    margin: 0px 0px 10px;
    text-align: justify;
}

.fireboxsaec ul li:hover {
    text-decoration: none;
    color: var(--grey-900);
    border-radius: 8px;
    background: var(--grey-50, #F8FAFC);
    box-shadow: 0px 3px 30px 0px rgba(51, 65, 85, 0.07), 0px 4px 12px 0px rgba(51, 65, 85, 0.10);
    height: 4rem;
}

.texhiresection .color {
    font-size: 16px;
}

.texhiresection .textanition {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 30px;
}

.hirehiretechsecre .color {
    margin: 30px 0px 10px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--fontfamilyDiavlo);
    color: #000;
}

.hirehiretechsecre .textareson {
    padding-right: 50px;
}

.fireboxsaec ul li a span {
    font-size: 10px;
}

.ouprocesept .imgsbox {
    position: sticky;
    top: 100px;
    display: inline-block;
    margin: 0;
    width: 100%;
    padding: 0;
}

.ouprocesept h3 {
    font-size: 18px;
    margin: 0 0px 5px;
}

.ouprocesept .textanition {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
}

.ouprocesept p {
    margin-bottom: 20px;
}

.ouprocesept .step {
    padding: 20px 0px 0;
}

#processImage {
    transition: opacity 1s ease-in-out;
    opacity: 1;

}

.why-codexces {
    background: linear-gradient(268deg, rgba(255, 97, 97, 0.1) 1.86%, rgba(124, 60, 255, 0.1) 96.92%);
}

.lefcontdsecarezon {
    position: relative;
    margin: 0 0 0px;
    padding: 0px 0px;
    padding-right: 50px;
    text-align: justify;
}

.lefcontdsecarezon h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

.lefcontdsecarezon .textanition {
    font-size: 35px;
    margin: 5px 0 10px;
    padding: 0;
}

.lefcontdsecarezon h6 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
    margin-top: 20px;
}

.lefcontdsecarezon p {
    font-size: 14px;
    line-height: 28px;
}

.seboxsecare {
    margin: 0;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: rgba(24, 24, 27, 0.06) 0px 10px 15px 0px, rgba(24, 24, 27, 0.04) 0px 0px 1px 0px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(160 160 160 / 61%);
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.5s all linear;
}

.seboxsecare h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.seboxsecare p {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 25px;
    text-align: left;
    color: #6e6e6e;
}

.seboxsecare a {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.seboxsecare a span,
.whychoose-list li span {
    width: 100%;
    background: #ffeff0;
    border-radius: 4px;
    padding: 20px 20px 0px;
    height: 130px;
    border: 1px solid #d4d4d4;
}

.seboxsecare a .texarsn {
    width: 100%;
    display: inline-block;
    padding: 10px 10px;
}

.seboxsecare:last-child {
    margin-bottom: 0;
}

.seboxsecare a span img {
    width: 100%;
    height: 100%;
    object-position: bottom;
    object-fit: contain;
}

.seboxsecare a h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    margin: 10px 0px 15px;
    font-family: var(--fontfamilyPoppins);
}

.seboxsecare:hover {
    transform: scale(1.05);
    transition: 0.5s all linear;
}

.seboxsecare:hover h6 {
    color: #053b88;
}

.secpraec .flex-left h6.color {
    margin-top: 0;
}

.seboxsecare a .texarsn span {
    background: #0a58ca;
    height: unset;
    display: flex;
    width: max-content;
    line-height: unset;
    padding: 10px 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    border: unset;
    border-radius: 4px;
    transition: 0.5s all linear;
}

.seboxsecare a .texarsn span:hover,
.seboxsecare:hover a .texarsn span {
    background: #d26519;
    transition: 0.5s all linear;
}

.seboxsecare a .texarsn span i {
    font-size: 12px;
}

.flex-left .textsec p span {
    width: 20px;
    height: 20px;
    font-size: 9px;
    margin-left: 10px;
    color: #fafafa;
    background: #094eb2;
    border-radius: 50px;
    display: inline-block;
    line-height: 10px;
    text-align: center;
}

.lefcontdsecarezon .secpraec {
    margin-top: 20px;
    border-bottom: 1px solid #e0dede;
}

.lefcontdsecarezon .secpraec:hover {
    border-bottom: 2px solid #094eb21f;
}

.lefcontdsecarezon .secpraec.top-pad {
    margin-top: 40px;
}

/*-- Faq --*/
.faqs .color {
    font-size: 19px;
    margin: 0px 0px 5px;
    padding: 0;
}

.faqs .textanition {
    font-size: 32px;
    margin-bottom: 10px;
}

.faqs .tithead p {
    font-size: 14px;
    line-height: 30px;
}

.faqs .tithead {
    width: calc(100% /1.4);
}

.accordion.accordion-flush {
    position: relative;
    margin: 20px 0px 0px;
    padding: 0;
    display: inline-block;
    width: 100%;
}

.accordion {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: var(--fontfamilyRoboto);
}

.accordion .accordion-item {
    position: relative;
    margin: 0;
    padding: 0;
    border: 1px solid #d4d1d1;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 3px 10px 0px rgba(51, 65, 85, 0.05), 0px 4px 5px 0px rgba(51, 65, 85, 0.05);
}

.accordion-item .accordion-button {
    margin: 0;
    padding: 15px 20px;
    height: unset;
    line-height: unset;
    font-size: 15px;
    font-family: var(--fontfamilyRoboto);
    letter-spacing: 0.5px;
    cursor: pointer;
}

.accordion-button:not(.collapsed) {
    background: #062a5e;
    color: rgb(255, 255, 255);
}

.accordion-collapse.collapse.show {
    padding: 0;
    position: relative;
}


.accordion-collapse.collapse.show p {
    color: #000;
    font-size: 13px;
}

.accordion-item .accordion-button:hover {
    background: var(--grey-50, #F8FAFC);
    box-shadow: 0px 3px 30px 0px rgba(51, 65, 85, 0.07), 0px 4px 12px 0px rgba(51, 65, 85, 0.10);
    border: 1px solid #f1f1f1;
}

.accordion-button:hover:not(.collapsed) {
    background: #042656;
}

.faqs {
    padding: 50px 0px 80px;
    display: inline-block;
    width: 100%;
}

.faqs .imgsbox {
    background: #fff;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.restimselv {
    height: 100%;
    box-shadow: 0 2px 10px #dfdfdf1f;
    background: #fff;
}

.restimselv h4 {
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.restimselv h5,
.leftflexsec h6 {
    font-family: var(--fontfamilyRoboto);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 25px;
}

.restimselv p,
.leftflexsec p {
    font-size: 13px;
    line-height: 25px;
    text-align: justify;
}

.resremodevchal .col-md-3 {
    margin-bottom: 30px;
}

.restimselv span,
.leftflexsec span {
    width: 100%;
    height: 100px;
    background: #dde0e636;
    display: flex;
    border-radius: 8px;
    color: #fff;
    position: relative;
    align-items: center;
    overflow: hidden;
    padding: 5px;
}

.flesdivse .textsecare .color {
    text-align: left;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 18px;
}

.flesdivse .textsecare h4 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
}

.flesdivse .textsecare p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #555;
}

.resremodevchal .flesdivse {
    margin-bottom: 30px;
}

.restimselv span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.restimselv:hover {
    border: 1px solid #d7d7d7;
    transform: scale(1.05);
    transition: 0.5s all linear;
    box-shadow: 0 5px 10px #dfdfdf;
}

.restimselv:hover h5 {
    color: #062e6a;
}

.flexremostauc {
    background: #010f23 url(/images/bg-pattern-1-dark.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: color-dodge;
}

.leftflexsec {
    border: 1px solid #ffffff7a;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 20px;
    background: #ffffff1a;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s all linear;
    cursor: pointer;
}

.flexremostauc .tithead .color,
.flexremostauc .texleftzon h4 {
    background: linear-gradient(to right, #ffffff 0%, #e7e7e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flexremostauc .tithead h4 {
    filter: invert(1);
    font-size: 45px;
    line-height: 50px;
}

.flexremostauc .tithead p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 50px;
}

.flexremostauc .texleftzon {
    margin-top: 15px;
}

.flexremostauc .texleftzon h4 {
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.flexremostauc .texleftzon h6 {
    font-size: 20px;
    color: #fff;
    line-height: 25px;
    margin: 10px 0px 15px;
}

.flexremostauc .texleftzon p {
    color: #e4e1e1;
    line-height: 25px;
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
}

.flexremostauc .texleftzon ul {
    color: #fff;
    padding-left: 20px;
}

.flexremostauc .texleftzon ul li {
    font-size: 14px;
    line-height: 30px;
}

.leftflexsec:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff0a;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: -1;
}

.leftflexsec span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0px 0px 1px white);
}

.leftflexsec span {
    background: #010f2387;
}

.leftflexsec:hover {
    border-color: #fff;
    transition: 0.5s all linear;
    transform: scale(1.05);
    background: #02102530;
}

.resremodevchal .col-md-6.col-lg-3 {
    margin-bottom: 25px;
}

.titlsemesec {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.whycoisec .titlsemesec .textanition {
    font-size: 40px;
    line-height: 50px;
    flex: 1.5;
    font-weight: bolder;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-family: var(--fontfamilyRusso);
    padding-right: 20px;
}

.whycoisec .titlsemesec p {
    font-size: 17px;
    flex: 2;
}

.whycoisec .textareson ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}

.whycoisec .textareson ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 25px 20px;
    border-bottom: 1px solid #ebebeb;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.5s all linear;
}

.whycoisec .textareson ul li b {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--fontfamilyRusso);
    flex: 0.8;
    padding-right: 20px;
    letter-spacing: 0.5px;
}

.whycoisec .textareson ul li .paragraph {
    flex: 2;
    font-size: 17px;
    padding-right: 20px;
}

.whycoisec .textareson ul li .iconsec {
    /* flex: 0.2; */
    background: #06295b;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: flex;
    margin: 0 auto;
    color: #fff;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.whycoisec .textareson ul li:hover {
    transition: 0.5s all linear;
    transform: scale(1.02);
}

/*--- Porcess to leyout ---*/

.layersproces {
    position: relative;
    margin: 0 auto;
    display: block;
    width: 100%;
    z-index: 1;
    padding: 70px 0px 50px;
}

.layersproces li {
    display: flex;
    margin: 0px 0 5px;
    text-align: center;
    align-items: center;
    position: relative;
    z-index: auto;
    cursor: pointer;
    transition: 0.5s all linear;
    counter-increment: auto-increment-numbers;
}

.layersproces li .textypelig,
.layersproces li .empty {
    display: block;
    flex: 0 0 calc(50% - 10rem);
    position: relative;
}

.layersproces li .svg {
    flex: 0 0 20rem;
}

.layersproces li .textypelig p {
    color: #000;
    background-color: #f1f1f1;
    border-radius: 80px;
    transition: color .8s ease, background-color .8s ease;
    margin: 0;
    line-height: 15px;
    font-size: 12px;
    padding: 15px 25px;
    letter-spacing: 0.5px;
    padding-right: 25px;
    font-family: var(--fontfamilyPoppins);
}

.servleystep {
    background: #fff;
    position: relative;
    margin: 50px auto 0;
    padding: 0px 0px;
    width: 100%;
}

.layersproces li .textypelig {
    text-align: left;
}

.layersproces li .textypelig:after {
    content: '';
    position: absolute;
    left: 40px;
    top: 14px;
    width: 100%;
    border-bottom: 2px dashed #e3e3e3;
    z-index: -1;
}

.layersproces li:nth-child(even) .textypelig:after {
    left: -40px;
}

.layersproces li:nth-child(even) .textypelig {
    text-align: right;
}

.layersproces li .svg svg {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -35px;
}

.layersproces li.active .textypelig p,
.layersproces li:hover .textypelig p {
    background: #3370de;
    color: #fff;
    transition: 0.5s all linear;
}

.layersproces li.active svg path,
.layersproces li:hover svg path {
    fill: #3370de;
    transition: 0.5s all linear;
}

.layersproces li.active .textypelig::after,
.layersproces li:hover .textypelig::after {
    border-color: #3370de;
    transition: 0.5s all linear;
}

.slider {
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-right: 1px solid #e7e7e7;
}

.servleystep .slidersection {
    margin: 0;
    padding: 50px;
    height: calc(100% - 0px);
}

.slidersection .textslid {
    position: relative;
    margin: 0;
    padding: 0px 0px 0px;
    display: inline-block;
    width: 100%;
}

.slidersection .textslid h5 {
    font-size: 33px;
    margin: 0;
    padding: 0;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 50px;
    font-family: var(--fontfamilyRusso);
    letter-spacing: 0.8px;
}

.slidersection .textslid p {
    line-height: 35px;
    font-size: 18px;
    font-family: var(--fontfamilyHelvetica);
}

.owl-stage {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.servleystep .owl-nav {
    width: max-content;
    margin: 0;
    padding: 0;
    display: inline-block;
    position: absolute;
    bottom: 20px;
}

.servleystep .owl-nav button {
    width: 35px;
    height: 35px;
    background: #f1f1f1 !important;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #d7d4d4 !important;
    cursor: pointer;
}

.servleystep .owl-nav button span {
    font-size: 25px;
    line-height: 30px;
    height: unset;
    display: inline-block;
    color: #5f5f5f;
}

.servleystep .owl-dots {
    position: absolute;
    width: max-content;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2px;
    bottom: 30px;
    right: 20px;
}

.servleystep .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #bfbfbf;
    transition: 0.5s all linear;
    border-radius: 50px;
    cursor: pointer;
}

.servleystep .owl-dots .owl-dot.active {
    width: 50px;
    background: #3370de;
    transition: 0.5s all linear;
}

.servleystep .owl-nav button:hover {
    background: #3370de !important;
}

.servleystep .owl-nav button:hover span {
    color: #fff;
}

.layersproces li:before {
    content: counter(auto-increment-numbers);
    position: absolute;
    left: 8px;
    z-index: 1;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    background: #bbcdec4f;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all linear;
}

.layersproces li:nth-child(even):before {
    left: unset;
    right: 5px;
}

.layersproces li:nth-child(even) p {
    padding-right: 50px;
    text-align: left;
}

.layersproces li:nth-child(odd) p {
    padding-left: 50px;
}

.layersproces li.active::before {
    background: #ffffff;
    color: #3370de;
    transition: 0.5s all linear;
}

.servleystep .slidersection .owl-item {
    position: relative;
    margin: 0;
    padding: 0;
}

.slidersection .textslid span {
    font-weight: 700;
    font-size: 5rem;
    color: #f1f1f1;
    width: 100%;
    display: inline-block;
    text-align: right;
    line-height: 75px;
    margin-bottom: 20px;
    font-family: var(--fontfamilyRusso);
}

.layersproces li:hover::before {
    background: #fff;
    transition: 0.5s all linear;
}

.layersproces li .textypelig p b {
    width: 100%;
    display: inline-block;
}

.bordersecare {
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.leftsitexare {
    position: relative;
    margin: 0 auto;
    padding: 0px 50px;
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.leftsitexare .titesecare {
    position: relative;
    margin: 0;
    padding: 0;
    width: calc(100% - 15rem);
}

.leftsitexare .titesecare h4 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
}

.leftsitexare .titesecare p {
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    color: #555;
}

.leftsitexare a {
    background: #007aff;
    padding: 15px 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
}

.leftsitexare a i {
    font-size: 11px;
}

.whychoicsecaer .textanition {
    font-size: 36px;
    width: 100%;
}

.whychoose-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whychoose-list li {
    padding: 20px;
    height: 100%;
    border: 1px solid rgb(223 226 231 / 61%);
}

.whychoose-list li span {
    width: 100%;
    display: inline-block;
    height: 100px;
    margin-bottom: 14px;
    background: #fafafa;
    border: unset;
}

.whychoose-list li h6 {
    font-size: 19px;
    font-weight: 700;
}

/*---Key Advantages --*/
.frondevprosec .textanition {
    font-size: 35px;
    width: 100%;
    line-height: 45px;
}

.vartab-points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vartab-points li {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 10px;
}

.vartab-points li.active {
    background: linear-gradient(89.95deg, #1c63ff 35%, #fff0 99.95%);
}

.vartab-points li h5 {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.vartab-points li span {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgb(223 226 231 / 61%);
    background: #f7f7f7;
}

.vartab-points li.active h5 {
    color: #fff;
}

.vartab-points li.active span {
    background: #fff;
}

.frondevprosec .vartab-points {
    position: sticky;
    top: 100px;
}

.vartabsecbox {
    padding: 30px;
    background: #1c63FF0D;
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dfe7f6;
}

.vartabsecbox.active {
    display: inline-block;
}

.vartabsecbox h5 {
    font-size: 25px;
}

.vartabsecbox .imgbox {
    width: 100%;
    display: inline-block;
    height: 200px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.vartabsecbox p {
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    color: #555;
}

.frondevprosec {
    background: #f9f9f947;
}

.advancfornsol .step ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.advancfornsol .step ul li {
    font-size: 13px;
    line-height: 30px;
    font-weight: 700;
    background: #f3f7ff;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 5px;
}

.advancfornsol .step {
    padding: 30px 0px;
}

/*---- Think uniqe --*/
.ourunidethiap {
    background: url(/images/backround.svg) no-repeat center center;
    background-size: cover;
    background-position: top, center;
}

.leftsidetile h4 {
    font-size: 60px;
    margin-top: 20px;
    line-height: 70px;
    margin-bottom: 30px;
    letter-spacing: 1.3px;
    color: #fff;
    font-family: var(--fontfamilyDiavlo);
}

.leftsidetile p {
    color: #fff;
}

.infosecaretop {
    display: flex;
    background: #fbfbfb0f;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    gap: 10px;
    border: 1px solid #ffffff69;
    flex-direction: column;
}

.infosecaretop h3 span {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #F44336;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infosecaretop h3 b {
    font-size: 16px;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.infosecaretop h3 {
    width: 100%;
    display: flex;
    gap: 10px;
    margin: 0;
}

.infosecaretop p {
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 25px;
}

.accordion-item.procstepsecaree {
    background: #fbfbfb0f;
    border: 1px solid #ffffff69 !important;
    overflow: hidden;
    margin-bottom: 30px;
}

.procstepsecaree .accordion-button {
    background: unset;
    color: #fff;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    box-shadow: unset;
}

.procstepsecaree .accordion-button:not(.collapsed) {
    border: unset !important;
    box-shadow: unset;
}

.procstepsecaree .accordion-button .imgbox {
    background: #3f51b545;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}

.procstepsecaree .accordion-button h4 {
    color: #fff;
    font-size: 13px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 300;
    letter-spacing: 0.5px;
    gap: 10px;
}

.procstepsecaree .accordion-button h4 b {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.procstepsecaree .collapse .accordion-body p {
    color: #fff !important;
    font-size: 14px;
    line-height: 25px;
}

.leftsidetile {
    position: sticky;
    top: 70px;
    margin: 0;
}

.accordion.paragraphtext .accordion-button:hover {
    background: #3f51b51a;
    border: 1px solid #018eff61 !important;
    box-shadow: unset;
}

.paragraphtext .accordion-button::after {
    background: var(--minbnt), #fff;
}

.paragraphtext .accordion-button:not(.collapsed)::after {
    background: var(--minbnt) #fff;
}

.paragraphtext .accordion-button::after,
.paragraphtext .accordion-button:not(.collapsed)::after {
    width: 35px;
    border-radius: 50px;
    height: 35px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 22px;
}