/* Webfont include */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
}

/* Color */

:root {
    --secondary-light: #2d9ef5;
    --secondary-dark: #222629;
    --secondary-dark-600: #525252;
    --border-light: #D7D7D7;
    --button-border: #2d9ef5;
    --blue-dark-bg: #1c2b33;
    --error: #ff0000;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1 {
    font-size: 85px;
}

h1,
h2,
h3 {
    font-style: normal;
    font-weight: 400;
}

h4,
h5,
h6 {
    margin: 0;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}

.form-control {
    border-radius: 40px;
    min-height: 60px;
    padding: 18px 30px;
}

textarea.form-control {
    min-height: 143px;
    border-radius: 25px;
}

ul,
li {
    margin: 0px;
    font-weight: 500;
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

a {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--text-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--button-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--button-border);
    border-radius: 10px;
}


input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--Primary-dark-800);
}

/* buttons add */
.globalBtnDark {
    padding: 10px 20px 10px 31px;
    color: var(--black);
    background-color: var(--secondary-light);
    border-radius: 40px;
    display: inline-flex;
    text-transform: uppercase;
    font-size: 16px;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease-in-out;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.globalBtnDark i {
    margin-left: 10px;
}

.globalBtnDark:hover:before {
    transform: translateX(0);
}

.globalBtnDark:hover,
.globalBtnDark:hover span,
.globalBtnDark:hover i {
    color: var(--white);
}

.globalBtnDark:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnDark span,
.globalBtnDark i {
    position: relative;
    z-index: 9;
    color: var(--white);
    top: 0px !important;
    bottom: 0px !important;
    right: 0px !important;
    left: 0px !important;
    height: auto !important;
    width: auto !important;
}



.globalBtnOutline {
    padding: 10px 35px;
    color: var(--white);
    background-color: transparent;
    border-radius: 40px;
    border: 1px solid var(--button-border);
    display: inline-flex;
    text-transform: uppercase;
    font-size: 16px;
    align-items: center;
    transition: all 0.4s ease-in-out;
    font-size: 14px;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.bmp-video-class {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.globalBtnOutline:hover:before {
    transform: translateX(0);
}

.globalBtnOutline:hover,
.globalBtnOutline:hover span {
    color: var(--white);
}

.globalBtnOutline:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--button-border);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnOutline span {
    position: relative;
    z-index: 9;
}

/* Slider navbar */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link {
    background-color: transparent;
    color: var(--text-secondary);
}

.owl-nav {
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
}

.owl-nav button.owl-prev span {
    left: -40px;
}

.owl-nav button.owl-next span {
    right: -40px;
}

.owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    color: var(--white);
    border-radius: 50%;
    position: relative;
}

.owl-dots button.owl-dot span {
    background: var(--white);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots button.owl-dot.active span {
    background: var(--white);
    display: inline-block;
    width: 15px;
    height: 6px;
    border-radius: 5px;
    margin: 5px;
}

.owl-dots {
    margin-top: 50px;
    text-align: center;
}

/* global header start */
.global-header {
    margin-bottom: 40px;
}

.global-header p {
    width: 55%;
    text-align: center;
}

.global-header h2 {
    font-size: 45px;
    font-weight: 200;
}

.global-header h2 span {
    font-weight: 700;
    text-transform: capitalize;
}

/* global header end */

/* top navbar start */

.top-navbar a.nav-link {
    font-size: 16px;
    font-weight: 300;
    line-height: 17.58px;
    color: var(--dark-green-800);
    padding-top: 0px;
    padding-bottom: 0px;
    transform: all 0.4s ease-in-out;
}
.top-navbar li.nav-item.current_page_item.active a, .top-navbar ul.dropdown-menu li.menu-item.current-menu-item.active a, li.menu-item.menu-item-has-children.dropdown.active a.dropdown-toggle.nav-link {
    color: #2d9ef5;
    font-weight: 500;
}

.top-navbar a.nav-link:hover,
header.sticky a.nav-link:hover {
    color: var(--secondary-light);
    transform: all 0.4s ease-in-out;
}
.top-navbar li.nav-item.dropdown .dropdown-menu li {
    padding: 0px !important;
}
.top-logo-part {
    font-size: 28px;
}
.ftr-logo img,
.top-logo-part img {
    max-width: 170px;
    height:auto;
}
header.sticky .top-logo-part {
    color: var(--white);
}

header .loginBtn-cntn .globalBtnOutline {
    color: var(--blue-dark-bg);
}

header.sticky .loginBtn-cntn .globalBtnOutline {
    color: var(--white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile_logo a {
    font-size: 25px;
}

.dropdown-menu {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
    padding: 0px;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item {
    padding: 10px 19px;
}

li.nav-item.dropdown .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
}

li.nav-item.dropdown:hover .dropdown-menu:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 14px solid #ffffff;
    top: -12px;
    left: 24px;
}

li.nav-item.dropdown:hover .dropdown-menu:before {
    content: '';
    position: absolute;
    width: calc(100% - 50px);
    height: 14px;
    top: -14px;
    left: 0px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--blue-dark-bg);
    text-decoration: none;
    background-color: var(--border-light);
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item:hover {
    background-color: transparent;
    color: var(--secondary-light);
}

.navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    right: 0px;
}

.only_mobile_view {
    display: none;
}

.navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 2px;
    position: absolute;
    background: #333;
    border-radius: 1px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    right: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}

.top-navbar {
    background-color: var(--light-grey);
}

.top-navbar li.nav-item {
    padding: 0px 16px;
}

.top-navbar {
    padding: 15px 0px;
    position: fixed;
    top: 0;
    z-index: 9;
    background-color: transparent;
    width: 100%;
    transition: 0.6s;
    z-index: 99999;
}

.top-navbar.sticky {
    padding: 8px 0px;
    background: linear-gradient(268deg, #f4faff, #f4faff);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.top-navbar ul.navbar-nav {
    margin: 0 auto;
}

.dropdown-toggle::after {
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    border-top: .0em solid !important;
    vertical-align: 0em;
    transition: all 0.4s ease-in-out;
}

.dropdown-toggle.show::after,
li.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: all 0.4s ease-in-out;
}

li.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 30px;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
    box-shadow: 1px -4px 20px 0px #4a4a4a6e !important;
    transition: all 0.4s ease-in-out;
}

.dropdown-menu {
    border: none;
}

.navbar .custom-container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

/* top navbar end */

/* hero banner start */
.hero-banner {
    background-image: linear-gradient(268deg, #dceff8, #f4faff);
    color: var(--black);
}

.hero-banner .owl-dots button.owl-dot span {
    background: #222629;
}

.hero-banner-main {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 100vh;
    padding-top: 96px;
}

.hero-banner-cntn {
    align-self: center;
    padding: 80px 0px;
    flex: 1;
}

.hero-banner-thumb {
    width: 45%;
}
.hero-banner-thumb video {
    border-radius: 10px;
    box-shadow: 1px 3px 8px 3px #2a2a2a;
}
.hero-banner-thumb img {
    width: 100% !important;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 1px 1px 16px 0px #a7a7a7;
}

.hero-banner-cntn h1 {
    font-size: 60px;
    font-weight: 100;
}

.hero-banner-cntn h2 {
    font-size: 50px;
    font-weight: 400;
    margin-top: 0px;
}

.hero-banner-cntn h2 span {
    font-weight: 700;
    position: relative;
}

.hero-banner-cntn h2 span::after {
    position: absolute;
    content: '';
    bottom: 6px;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 3px solid var(--secondary-light);
    z-index: -1;
}

.hero-banner-cntn p {
    font-size: 24px;
    font-weight: 200;
    line-height: 36px;
    margin: 25px 0px;
}

/* hero banner end */

/* customer review start */
.customer-review-main {
    padding: 30px 0px;
}

.custom-review-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-item-cntn h5 {
    font-size: 24px;
    margin-bottom: 4px;
}

.review-item-cntn p {
    color: #494949;
}


/* customer review end */

/* our services start */
.our-services {
    padding: 100px 0px;
    position: relative;
}

.our-services .global-header {
    text-align: center;
}

.srvc-green-shape {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translate(0%, 40%);
    z-index: -1;
    max-width: 150px;
}

.busines-partner-items .col-xl-4.col-md-6.col-sm-12 {
    padding: 0px 10px;
    margin: 10px 0;
}

.partner-item {
    background: var(--white);
    padding: 35px 35px 25px;
    margin: 8px 0px;
    height: 100%;
    text-align: left;
    border-radius: 40px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.our-services .partner-item h4 span {
    display: block;
}

.our-services .partner-item:hover {
    background-color:var(--secondary-dark-600);
    color: var(--white);
}

.our-services .partner-item:hover p,
.our-services .partner-item:hover a {
    color: var(--white);
    border-color: var(--white);
}

.partner-item p {
    color: #474A4F;
}

.partner-item h4 {
    font-size: 24px;
    margin: 30px 0px 15px;
    font-weight: 600;
}

.partner-item .globalBtnOutline {
    margin-top: auto;
    color: #222629;
    font-size: 16px;
}
.partner-item:hover .partner-thumb-item img {
    filter: invert(1) brightness(50);
}
.partner-thumb-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

/* our services end */


/* about us start */
.about-us {
    padding: 100px 0px;
    color: var(--secondary-dark);
    background-image: linear-gradient(268deg, #dceff8, #f4faff);
}

.about-thumb img {
    max-width: 100%;
}

.about-cntn p {
    margin: 13px 0px;
    font-size: 18px;
    line-height: 30px;
}

.about-cntn {
    position: relative;
}

.about-cntn p.space-decraese {
    width: 75%;
}

.about-cntn h6 {
    font-size: 24px;
    font-style: italic;
    line-height: 34px;
}

.about-cntn a {
    margin-top: 15px;
}

.about-cntn {
    width: 95%;
    margin-left: auto;
}

.about-us .row {
    align-items: center;
}

.about-cntn .global-header h2::after {
    position: absolute;
    right: 0;
    bottom: -18px;
    left: 0;
    height: 10px;
    width: 85px;
    background: #6a6e71;
    content: '';
}

.about-cntn .global-header h2 {
    position: relative;
}

/* about us end */
/* why choose us start */
.why-choose-us {
    padding: 100px 0px;
}
.why-choose-us .global-header {
    text-align: center;
    margin-bottom: 20px;
}
.why-choose-us .partner-thumb-item {
    position: absolute;
    right: 12px;
}

.why-choose-us .partner-thumb-item {
    position: absolute;
    right: 7px;
    height: 78%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    top: 30px;
    align-items: center;
}

.why-choose-us .partner-item {
    position: relative;
    height: 100%;
    padding: 30px 60px 30px 30px;
    border: none;
    box-shadow: 1px 2px 11px 0px #e9e9e9;
}

.why-choose-us .partner-item:hover {
    background-color: var(--secondary-dark-600);
    color: var(--white);
}

.why-choose-us .partner-item:hover:hover p {
    color: var(--white);
}

.why-choose-us .partner-thumb-item img.tp-icon {
    max-width: 43px;
}

.why-choose-us .col-xl-4.col-md-6.col-sm-12:first-child {
    align-items: center;
    display: flex;
}

.why-choose-us .col-xl-8.col-md-6.col-sm-12 .partner-item {
    width: 90%;
}

.why-choose-us .col-md-6.col-sm-12 {
    margin: 12px 0px;
}

.why-choose-us .partner-item h4 {
    font-weight: 500;
}


/* why choose us end */

/* case study main start */
.case-study-main {
    background-image: linear-gradient(90deg, #dceff8, #f4faff);
    padding: 100px 0px;
    color: var(--secondary-dark);
    text-align: center;
}

.case-study-thumb img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.case-study-thumb::after {
    background-color: rgba(0, 0, 0, 0.137);
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.case-study-item:hover .case-study-thumb img {
    transform: scale(1.3);
}

.case-study-item:hover .case-study-thumb::after {
    opacity: 1;
    visibility: visible;
}


.case-study-thumb {
    overflow: hidden;
    border-radius: 28px;
    position: relative;
    display: inline-block;
}

.case-study-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0px 15px;
}

.case-study-btm h5 {
    font-size: 30px;
    font-weight: 500;
}

.case-study-item {
    margin: 15px 0px;
    transition: all 0.3s ease-in-out;
    padding: 20px;
    background: #2d9ef524;
    border-radius: 25px;
}

.case-study-btm span img {
    height: 50px;
}

.case-study-main .global-header p {
    margin: 0 auto;
}

.view-more-case-study {
    margin-top: 30px;
}

/* case study main end */

/* client testimonial start */
.client-testimonial .global-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.client-testimonial .global-header p {
    text-align: left;
    position: relative;
    padding-top: 16px;
}

.client-testimonial .global-header p::after {
    position: absolute;
    background-color: var(--secondary-light);
    height: 4px;
    width: 60px;
    content: '';
    top: 0;
    left: 0;
}

.client-testimonial {
    padding: 100px 0px;
    position: relative;
}

.client-testimonial::after {
    background: url('../images/green-round-blur-min-down.png')no-repeat;
    background-position: center;
    background-size: contain;
    height: 150px;
    width: 200px;
    position: absolute;
    content: '';
    left: 3%;
    bottom: 20px;
    z-index: -1;
}

.client-testimonial::before {
    background: url('../images/green-line-blur-min.png')no-repeat;
    background-position: center;
    background-size: contain;
    height: 80%;
    width: 200px;
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    z-index: -1;
}

.client-Item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.client-info .info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-info .info-head ul {
    display: flex;
    align-items: center;
    gap: 3px;
}

.client-info p {
    margin: 20px 0px;
    color: #222629;
}

.info-head h5 {
    color: var(--secondary-light);
    font-size: 28px;
}

.client-info h6 {
    font-size: 20px;
    font-weight: 500;
}

.client-info h6 span {
    font-size: 16px;
    font-weight: 400;
}

.client-info .info-head ul i {
    color: #ffc107;
}

.client-testimonial .owl-dots button.owl-dot span {
    background-color: #D9D9D9;
}

.client-testimonial .owl-dots button.owl-dot.active span {
    background-color: #474A4F;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
}

.blog-Item h4 {
    font-size: 24px;
    font-weight: 500;
    color: #222629;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-Item p {
    color: #474A4F;
    font-weight: 300;
    margin: 10px 0px 20px;
}

.user-info p {
    font-weight: 300;
    color: #000;
    font-size: 16px;
    margin: 10px 0px;
}

.blog-Item a.globalBtnOutline {
    color: #000;
}

.user-info p.user-lft-pera {
    color: #474A4F;
}

.our-blog {
    padding: 80px 0px;
}

.our-blog .global-header h2 {
    text-align: center;
}

.our-blog .owl-nav button span {
    display: none;
}

.our-blog .owl-carousel .owl-nav button {
    height: 35px;
    width: 35px;
    position: relative;
}

.case-study-main .owl-carousel .owl-nav button.owl-prev,
.our-blog .owl-carousel .owl-nav button.owl-prev {
    left: -60px;
    background: url('../images/left-arrow.png')no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
}
.case-study-main .owl-carousel .owl-nav button.owl-next,
.our-blog .owl-carousel .owl-nav button.owl-next {
    right: -60px;
    background: url('../images/right-arrow.png')no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
}

/* client testimonial end */

/* partner logo scroll start */
.part-logo-scroll {
    padding: 100px 0px;
    color: var(--secondary-dark);
    background-image: linear-gradient(268deg, #dceff8, #f4faff);
}

.part-logo-scroll .global-header {
    margin-bottom: 20px;
}

.scroller-partner-logo .scroller {
    overflow: hidden;
    width: 100%;
    margin-bottom: 0px;
    position: relative;
}

.scroller-partner-logo .scroller-row {
    display: flex;
    width: max-content;
    will-change: transform;
}

.scroller-partner-logo .item {
    background: #2d9ef524;
    padding: 10px 15px 10px 10px;
    margin: 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: all 0s.3s ease-in-out;
}

.scroller-partner-logo .item:hover {
    background: #2d9ef541;
}

.scroller-partner-logo .scroller-row .item span {
    height: 35px;
    width: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 20px;
}

.scroller-partner-logo .scroller-row .item:nth-child(1) span {
    background-color: #ffeb85;
}

/* yellow */
.scroller-partner-logo .scroller-row .item:nth-child(2) span {
    background-color: #85ffbd;
}

/* green */
.scroller-partner-logo .scroller-row .item:nth-child(3) span {
    background-color: #85d7ff;
}

/* blue */
.scroller-partner-logo .scroller-row .item:nth-child(4) span {
    background-color: #ff85c1;
}

/* pink */
.scroller-partner-logo .scroller-row .item:nth-child(5) span {
    background-color: #ffa085;
}

/* orange */

/* repeat pattern every 5 items */
.scroller-partner-logo .scroller-row .item:nth-child(5n+1) span {
    background-color: #ffeb85;
}

.scroller-partner-logo .scroller-row .item:nth-child(5n+2) span {
    background-color: #85ffbd;
}

.scroller-partner-logo .scroller-row .item:nth-child(5n+3) span {
    background-color: #85d7ff;
}

.scroller-partner-logo .scroller-row .item:nth-child(5n+4) span {
    background-color: #ff85c1;
}

.scroller-partner-logo .scroller-row .item:nth-child(5n+5) span {
    background-color: #ffa085;
}

.scroller-partner-logo {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.part-logo-scroll .cntn-box {
    padding-right: 50px;
}

/* partner logo scroll start */

/* contact us start */
.contact-us .row {
    align-items: start;
}

.contact-us {
    padding: 80px 0px;
    position: relative;
    overflow: hidden;
}

.contact-us img.cntc-left-line-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact-us img.cntc-left-line-bar {
    position: absolute;
    left: 0;
    top: 24%;
    transform: translate(0%, -46%);
    bottom: 0;
    z-index: -1;
}

.contact-us img.cntc-left-round-bar {
    position: absolute;
    right: -50px;
    top: 25%;
    transform: translate(0%, -46%);
    bottom: 0;
    z-index: -1;
}

.contact-cntn {
    padding: 63px 46px;
    background-image: linear-gradient(268deg, #dceff8, #f4faff);
    color: var(--black);
    border-radius: 35px;
    margin-right: 15px;
    position: relative;
}

.contact-cntn.global-header {
    margin-bottom: 25px;
}

.contact-cntn::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: url('../images/cntc-arrow-shape.png')no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 9;
}

.contact-form {
    margin-left: 15px;
}

.contact-form h2 {
    font-size: 36px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-cntn ul {
    margin-top: 30px;
}

.contact-cntn ul li,
.contact-cntn ul li a {
    padding: 10px 0px;
    font-size: 24px;
    font-weight: 500;
}

.contact-cntn ul li span {
    background: var(--button-border);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    height: 40px;
    width: 40px;
    font-size: 17px;
    border-radius: 50%;
    margin-right: 11px;
}

/* contact us end */

/* footer start */
footer.footer {
    background: var(--blue-dark-bg);
    padding: 80px 0px 50px;
    color: var(--white);
    /* border-bottom: 10px solid var(--secondary-light); */
}

.ftr-logo-cntn {
    margin-top: 20px;
}

.footer-left {
    border-right: 1px solid #d9d9d947;
    padding-right: 25px;
}

.footer-right {
    display: flex;
    gap: 30px;
    margin-top: 0px;
    margin-left: 20px;
}

.footer-right h4 {
    margin-bottom: 30PX;
    font-size: 24px;
    color: var(--secondary-light);
}

.ftr-right-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
}

.ftr-right-nav .footer-nav {
    width: 46%;
}

.ftr-right-nav .footer-nav .ftr-social {
    background: var(--white);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

.footer-right li,
.footer-right li a {
    font-size: 16px;
    font-weight: 200;
    line-height: 28px;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}

.footer-right .footer-nav li a:hover {
    color: var(--secondary-light) !important;
}
.footer-right li a:hover, .footer-right .footer-nav .blog-social-list li a:hover {
    color: #fff !important;
}
p.copyright-text {
    font-size: 18px;
    line-height: 48px;
    font-weight: 200;
}

.ftr-logo-cntn p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    position: relative;
    padding-top: 25px;
}

.ftr-logo-cntn p::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    height: 4px;
    width: 60px;
    background-color: #D9D9D9;
}

.copy-right {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-right-btns a.globalBtnOutline {
    border-color: #fff;
}

.copy-right-btns a.globalBtnOutline i {
    margin-left: 15px;
}

.copy-right-btns a.review-cluth-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    color: #000;
    border-radius: 30px;
    gap: 20px;
}

.copy-right-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* footer end */

/* top sticky button start */
.fixedButon {
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.fixedButon:active {
    background-color: #555;
}

.fixedButon.StickyButton {
    opacity: 1;
    visibility: visible;
}

.fixedButon img {
    width: 100%;
}

.fixedButon:hover {
    cursor: pointer;
}

/* top sticky button end */


/* About us page start  */
.about-us-main-rgt {
    padding: 60px;
    position: relative;
}
.about-us-main-rgt img {
    width: 100%;
    position: relative;
    z-index: 1;
}
.about-us-main-rgt::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 240px;
    width: 240px;
    background: #2d9ef5;
    z-index: 0;
}
.about-us-main-rgt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 240px;
    width: 240px;
    background: #2d9ef5;
    z-index: 0;
}
.about-us-main .about-us-main-left {
    padding-left: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-us-main {
    padding: 80px 0px;
}

.about-us-main .about-us-main-left .global-header {
    margin-bottom: 15px;
}

.about-us-main-left h5 {
    margin-bottom: 18px;
    line-height: 26px;
}

.about-work-experience {
    margin-top: 30px;
}

.about-work-experience {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.about-work-experience h2::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border: 10px solid var(--secondary-light);
}

.about-work-experience h4 {
    margin-left: 40px;
    font-weight: 600;
    line-height: 32px;
}

.about-work-experience h4 span {
    display: block;
}

.about-work-experience h2 span {
    position: relative;
    z-index: 3;
    background: #fff;
    right: -12px;
}
.about-work-experience h2 {
    position: relative;
    font-size: 103px;
    color: #454545;
    font-weight: 700;
    height: 163px;
    width: 160px;
    display: inline-flex
;
    align-items: center;
    justify-content: end;
}


/* Focus on target start */
.focus_main_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.focus_inner_left {
    margin-right: 50px;
    width: 51%;
}

.focus_inner_left .main_heder h2 span {
    display: block;
}

.counter_inner_focus {
    display: flex;
    align-items: start;
    background: #fff;
    box-shadow: 1px 1px 9px 1px #00000026;
    margin: 10px 0px;
    padding: 14px;
    gap: 12px;
    border-radius: 20px;
    justify-content: start;
    transition: all 0.3s ease-in;
}

.counter_inner_focus:hover {
    background: #f0fbf0;
}

.counter_inner_focus:hover img {
    background: #ffffff;
}

.focus-on-quality {
    background-image: linear-gradient(268deg, #dceff8, #f4faff);
    padding: 80px 0px;
}

.counter_inner_focus img {
    background: #F0FBF0;
    padding: 10px;
    border-radius: 50%;
    width: 46px;
}

.focus-on-quality .row {
    width: 90%;
}

.focus_inner_left .global-header p {
    max-width: 100%;
    margin-right: auto;
    width: 100%;
    text-align: left;
    margin-top: 25px;
}

.focus_inner_left .global-header {
    margin-bottom: 25px;
}

/* Focus on target start */

/* Team leader start */
.team_leader {
    padding: 80px 0px;
    text-align: center;
}

.team_lead_inner p {
    color: #949494;
    font-size: 15px;
    margin-top: 5px;
}

.team_lead_inner img {
    width: 95%;
}

.team_lead_cntn {
    padding: 21px;
}

.team_lead_inner {
    background: #fff;
    box-shadow: 4px 5px 9px 1px #ededed;
    border-radius: 20px;
    padding-top: 12px;
    transition: all 0.3s ease-in;
}

.team_leader .global-header p {
    margin: auto;
}

.team_leader .global-header {
    text-align: center;
}

.team_lead_inner:hover {
    background: #edffef;
    box-shadow: 0px 1px 9px 5px #ededed;
}

/* Team leader end */



/* top inner banner start */
.inner-top-banner {
    background-image: linear-gradient(268deg, #dceff8, #f4faff);
    padding: 109px 0px 50px;
}
.inner-top-banner .inner-banner-cntn p {
    font-size: 15px;
    line-height: 25px;
    color: #000;
}
.inner-top-banner.portfolio {
    padding-bottom: 0;
}

.inner-top-banner-iner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 50px 0px;
    max-height: 400px;
}

.portfolio .inner-top-banner-iner {
    margin-bottom: 0px;
}

.inner-banner-cntn {
    color: var(--blue-dark-bg);
    width: 60%;
}

.case-studies-top .inner-banner-thumb img {
    width: auto;
    margin-left: auto;
    float: right;
}

.inner-banner-thumb img {
    max-width: max-content;
    max-height: 85%;
}

.inner-banner-cntn p {
    font-size: 24px;
    line-height: 36px;
    font-weight: 200;
}

.portfolio .inner-top-banner-iner {
    align-items: flex-start;
}

.inner-banner-cntn {
    color: var(--white);
}

.inner-top-banner h5 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 200;
    display: inline-block;
    position: relative;
    padding-right: 50px;
    color: var(--black);
}

.inner-top-banner h5::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: var(--secondary-light);
}

.inner-top-banner h1 {
    font-size: 50px;
    line-height: 64px;
    font-weight: 700;
    margin-top: 15px;
    color: var(--black);
    text-transform: capitalize;
}

.inner-top-banner h1 span {
    font-weight: 400;
}

.case-studies-top .inner-banner-cntn {
    width: 50%;
}

.inner-banner-thumb {
    width: 50%;
    align-self: end;
    text-align: right;
}

.inner-banner-thumb img {
    max-height: 350px;
    max-width: 600px;
    object-fit: cover;
    border-radius: 20px;
    border: 10px solid #f4faff;
    box-shadow: 1px 1px 8px 0px #a7bbc5;
}

.inner-top-banner.portfolio h1 {
    font-size: 80px;
    line-height: 85px;
}

/* top inner banner end */


/* Contact us page start */
.connect_part {
    padding: 40px 0px 80px;
}

.cnnect_inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.cnne_iner_item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cnne_iner_item p {
    color: #3A3A3A;
    font-size: 16px;
}

.cnne_iner_item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 30%;
}

section.contact_us_form {
    padding-bottom: 80px;
}

.cntc_form_inner {
    padding: 70px 150px;
    background-image: linear-gradient(268deg, #dceff8, #f4faff);
    text-align: center;
    border-radius: 40px;
    border-top: 4px solid var(--secondary-light);
    position: relative;
}

.contact_us_form .main_heder {
    margin-bottom: 30px;
}

.cntc_form_inner .global-header p {
    margin: auto;
}

.cntc_form_inner .form-control {
    border-radius: 11px;
    margin: 10px 0px;
    border: none;
    resize: none;
}

.cntc_form_inner input.form-control {
    height: 60px;
}

.contact_us_form .btn {
    background: var(--button-border);
    border: none;
    color: #fff;
    padding: 9px 50px;
    transition: all 0.3s ease-in;
}

.contact_us_form .btn:hover {
    background-color: var(--secondary-light);
}

.map {
    margin-bottom: -8px;
}

/* Contact us page end */


/* Blog details page start */
.blog-details-page {
    padding: 80px 0px;
}

.blog-details-banner img {
    width: 100%;
    border-radius: 8px;
}

h2.blog-details-heading {
    margin: 20px 0px 25px 0px;
}

ul.list-inline.blog-date-list {
    margin: 2px 0 14px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.list-inline.blog-date-list li i {
    color: var(--secondary-light);
    margin-right: 6px;
}

.blog-details-page-left p {
    margin: 15px 0px;
}

.blog-details-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0px;
}

.blog-details-thumbs img {
    width: 32%;
}
.blog-page-search.blog-box-wrap form {
    width: 100%;
}
.blog-page-search {
    position: relative;
    display: flex;
    align-items: center;
}
.blog-page-search.blog-box-wrap form button {
    border: none;
    background: transparent;
    height: 39px;
}
.blog-page-search input {
    width: 100%;
    height: 40px;
    padding: 10px 40px 10px 10px;
    border-radius: 10px;
    border: 1px solid #cdcdcd;
}

.blog-page-search span {
    position: absolute;
    right: 28px;
    font-size: 21px;
    color: var(--secondary-light);
}

span.heading-after {
    position: relative;
    width: 100%;
    display: inline-block;
    padding-bottom: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.recent-post-item {
    display: flex;
    align-items: center;
    margin: 10px 0px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.recent-post-item .post-thumb {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.recent-post-item h5 {
    flex: 1;
    line-height: 24px;
    color: var(--secondary-light);
}

.recent-post-item .post-thumb img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 6px;
}

.blog-categori-list h5 {
    padding: 10px 0px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--secondary-light);
}

.blog-social-list li {
    margin: 0px 7px;
    background: var(--secondary-light);
    color: #fff;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border-radius: 6px;
}

span.heading-after::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 66px;
    background: var(--secondary-light);
    bottom: -5px;
    left: 0;
}

.blog-details-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0px;
}

/* Blog details page end */

/* blog page start */
.blog-inner-page {
    padding: 80px 0px;
}

.stories_update_inner {
    background: #fff;
    box-shadow: 0px 2px 9px #0000002e;
    border-radius: 10px;
    margin: 15px 9px;
    overflow: hidden;
}

.stories_update_inner .globalBtnOutline {
    color: var(--black);
}

.stories-update-thumb {
    position: relative;
}
.stories-update-thumb img{
    width: 100%;
    object-fit: cover;
}

.stories-update-thumb ul {
    background: var(--secondary-light);
    position: absolute;
    bottom: 10px;
    list-style-type: none;
    display: inline-flex;
    left: 0;
    padding: 2px 14px;
    border-radius: 0px 5px 5px 0px;
    color: #fff;
    gap: 15px;
}

.stories_down {
    padding: 30px;
}

.stories_down h4 {
    font-size: 18px;
}

.stories_down p {
    font-size: 16px;
    margin: 12px 0px;
    color: #000;
}

.blog-box-wrap {
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 1px 1px 6px 0px #c7c7c7;
    margin: 15px 0;
}

.recent-post-blog-list .recent-post-item:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.blog-categori-list {
    display: flex;
    flex-direction: column;
}

.blog-categori-list h5:last-child {
    border-bottom: 0px;
}

/* blog page end */

/* gallery box start */

.project-shocase-box .gallery {
    display: grid;
    grid-template-columns: 1fr -1fr;
    gap: 12px;
}

.project-shocase-box .gallery-left {
    grid-row: span 1;
}

.project-shocase-box .tile {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--card);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    outline: 1px solid rgba(255, 255, 255, .06);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: zoom-in;
}

.project-shocase-box .tile:hover {
    transform: translateY(-2px)
}

.project-shocase-box .tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.project-shocase-box .tile:focus-visible {
    outline: 3px solid var(--ring)
}

/* project showcase start */
.project-shocase-box .lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: #000000cf;
    z-index: 9999;
    padding: 24px;
    animation: fadeIn .2s ease;
}

.project-shocase-box .lightbox[aria-hidden="false"] {
    display: grid
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.project-shocase-box .dialog {
    width:500px;
    /* width: min(100%, 980px); */
    max-height: 500px;
    background: transparent;
    position: relative;
    display: grid;
    overflow: hidden
}

.project-shocase-box .stage {
    position: relative;
    display: grid;
    place-items: center
}

.project-shocase-box .stage img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px
}

.project-shocase-box .nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none
}

.project-shocase-box .nav button {
    pointer-events: auto;
    align-self: center;
    width: clamp(44px, 6vw, 45px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff
}

.project-shocase-box .nav button:hover {
    background: rgba(0, 0, 0, .7)
}

.project-shocase-box .close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10002;
    pointer-events: auto;
    border: none;
    display: grid;
    place-items: center
}

.project-shocase-box .close:hover {
    background: rgba(0, 0, 0, .8)
}

.project-shocase-outer {
    padding: 80px 0px;
}
.project-shocase-outer .global-header {
    text-align: left;
    margin-bottom: 10px;
}
.project-shocase-outer .global-header p{
    text-align: left;
    width: 100%;
}
.project-shocase-outer ul li {
    list-style-type: disclosure-closed;
    margin: 14px 0px;
}
.project-shocase-outer ul {
    margin-left: 18px;
}
.global-header h2{
    font-weight: 500;
    text-transform: capitalize;
}

.project-shocase-outer .cntn-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* project showcase end */

/* project need brief start */
.need-brief-outer {
    background: url('../images/services/web-application-leftdwnbg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0px;
}
.need-brief-outer .thumb-box {
    text-align: left;
}
.need-brief-outer .thumb-box img {
    max-height: 350px;
    max-width: 100%;
}

.need-brief-outer .cntn-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.need-brief-outer .cntn-box .global-header {
    margin-bottom: 10px;
}
.need-brief-outer ul li {
    list-style-type: disclosure-closed;
    margin: 10px 0px;
}
.need-brief-outer ul{
    margin-left: 18px;
}
/* project need brief end */
/* we can help start */
.we-can-help-outer {
    background: #f8f8f8;
    padding:80px 0;
}
.we-can-help-item {
    padding: 40px 25px;
    height: calc(100% - 23px);
    color: var(--black);
    margin: 15px 0;
    border-radius: 10px;
    background-image: radial-gradient(#ffffff, #dceff8);
}
.we-can-help-item h6 {
    font-size: 17px;
    font-weight: 600;
}
.we-can-help-item p {
    color:var(--black);
    font-size: 13px;
    line-height: 19px;
    margin: 21px 0;
    min-height: 57px;
}
.we-can-help-item .fa,
.we-can-help-item .fa-classic,
.we-can-help-item .fa-solid
{
    display: block;
    margin-top: 40px;
    text-align: right;
    color: var(--button-border);
    font-size: 19px;
}
.we-can-help-outer .global-header {
    text-align: left;
}
.we-can-help-outer .global-header p{
    text-align: left;
}
.srvc-details-iner-zigzag .about-us-main-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
}
.srvc-details-iner-zigzag .about-us-main-left h3{
    margin-top: 20px;
}
/* we can help end */

/* faq page start */
.faq-outer{
    padding: 80px 0px;
}
.faq-outer .global-header h2{
    text-align: center;
}
.faq-outer ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
}
.faq-outer ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-image: linear-gradient(94deg, #dceff8, #f4faff);
    padding: 20px;
    margin: 0 auto 15px auto;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
}
.faq-outer ul.accordion-list li h3 {
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
}
.faq-outer ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.faq-outer ul.accordion-list li div.answer p {
    position: relative;
    display: block;
    padding: 10px 0 0 0;
    cursor: pointer;
    line-height: 150%;
    margin: 0 0 15px 0;
}
.faq-outer ul.accordion-list li h3::after {
    position: absolute;
    content: "\f067";
    font: normal normal normal 14px / 1 FontAwesome;
    right: 0px;
    color: #148529;
}
.faq-outer ul.accordion-list li.active h3:after {
    content: "\f068";
}
/* faq page end */
/* result page start */
.result-wrapper{
    padding: 80px 0px;
}

.result-item .table-bloc {
    flex: 1;
}
.result-item .image-box {
    width: 30%;
}
.result-item {
    display: flex;
    gap: 25px;
    background: #fff;
    box-shadow: 1px 1px 8px 0px #cdcdcd;
    max-width: 95%;
    margin: 16px auto;
    border-radius: 5px;
    padding: 10px;
}
.result-item .table-bloc table tr td, .result-item .table-bloc table tr th {
    padding: 9px;
    border: 1px solid var(--border-light);
    text-align: center;
}
.result-item .table-bloc table tr th {
    background:var(--button-border);
    color: #fff;
}
.result-item .table-bloc table{
    width: 100%;
}
.result-item .table-bloc table tr:nth-child(odd) td {
    background:#e4f1f8;
}
.result-wrapper .global-header p {
    margin: auto;
    min-width: 85%;
}
.result-wrapper .global-header {
    text-align: center;
}
/* result page end */

.pagination-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}
.pagination-wrap .current {
    font-weight: 700;
    color: #2d9ef5;
}

/* price table start */
.price-table-main{
    padding: 80px 0px;
    background-color:#f8f8f8;
}

.pricing-tab .nav-tabs {
    justify-content: center;
    border: 0px;
    gap: 10px;
    flex-wrap: nowrap;
}
.pricing-tab .nav-tabs li {
    width: 22%;
}
.pricing-tab .nav-tabs .nav-link:hover, .pricing-tab .nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--secondary-light);
}

.pricing-tab .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-1px);
    bottom: -22px;
    width: 30px;
    height: 25px;
    z-index: 1;
    background-color: var(--secondary-light);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.pricing-tab .nav-tabs .nav-link span {
    display: block;
    font-size: var(--fs-small);
    margin-top: 5px;
    font-weight: 300;
}

.pricing-tab .nav-tabs .nav-link {
    position: relative;
    border: 0px;
    border-radius: 10px;
    color:var(--secondary-dark);
    background-color: var(--white);
    line-height: 22px;
    padding: 20px;
    box-shadow: 0 0 60px 0 #e5e5e5;
    width: 100%;
    font-weight: 700;
    transition: all 0.4s;
}

.pricing-tab .tab-content {
    padding-top: 60px;
}

.pricing-card {
    padding-top: 70px;
    padding-bottom: 10px;
    text-align: center;
    border: 0px;
    height: 100%;
    border-radius: 4px;
    transition: all 0.5s;
    background: radial-gradient(#ffffff, #dceff8);
    box-shadow:0 0 60px 0 #e5e5e5;
}
.pricing-card .package {
    background-color:var(--button-border);
    color: var(--white);
    padding: 12px 35px;
    display: flex;
    top: 23px;
    text-transform: uppercase;
    position: absolute;
    border-radius: 0px 50px 50px;
    width: 95%;
    left: 10px;
    justify-content: center;
}

.pricing-card .price h3 {
    color: #2f9ff5;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}
.pricing-card .price h3 span {
    color: var(--black-color);
    font-size: 14px;
}
.pricing-card.active .price h3{
    color: var(--white);
}
.pricing-card.active hr{
    border-bottom: 2px dashed var(--white);
}

.pricing-card hr {
    opacity: 1;
    border: 0;
    border-bottom: 2px dashed var(--secondary-dark);
    margin: 25px 0px 20px;
}
.btn-main, .btn-main:focus {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 7px 20px;
    border-radius: 5px;
    font-family: var(--primary-semibold-font);
    color: var(--white-color);
    background-color: var(--primary-color);
    transition: all 0.5s;
}
.pricing-card h4 {
    font-size: var(--fs-regular);
    font-family: var(--primary-bold-font);
    margin-bottom: 15px;
}
.pricing-card ul li {
    font-size: var(--fs-small);
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    position: relative;
}
.common-list li::before {
    content:"\f0a9" !important;
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    color:var(--blue-dark-bg);
    border-radius: 100%;
    line-height: 22px;
    text-align: center;
    font-size: 18px;
}
.pricing-card.active li::before{
    color: var(--white);
}
.pricing-card.active .form-btn{
    background-color: var(--secondary-dark);
}

.form-btn, .form-btn:focus {
    padding: 10px 20px;
    color: var(--white);
    background-color: #2d9ef5;
    transition: all 0.5s;
    border-radius: 40px;
}
.form-btn:hover{
    background-color: var(--secondary-dark);
    color: var(--white);
}
.pricing-card .popular {
    position: absolute;
    background-color: var(--secondary-dark);
    padding: 0px 10px;
    color: var(--white);
    top: -20px;
    right: 10%;
    font-size: 14px;
    border-radius: 4px;
}
.pricing-card.active {
    background:var(--secondary-light);
    color: var(--white);
}
.pricing-card.active .package {
    background-color: var(--secondary-dark);
    color: var(--white);
}

.common-list li, .common-list-two li, .common-list-three li, .common-list-four li, .common-list-five li, .common-list-six li, .common-list-eight li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    text-align: left;
}
