/* Font Family */
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');*/

@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
    font-weight: 99 999;
}

@font-face {
    font-family: Montserrat-Italic;
    src: url(../fonts/Montserrat-Italic-VariableFont_wght.ttf);
    font-weight: 99 999;
}

/* General */

:root {
    --primary-clr: #000971;
    --secondary-clr: #034ADD;
    --light-bg: #F4F5F9;
    --gray-clr: #808080;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    cursor: pointer;
    z-index: 9999;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--light-bg);
    z-index: 9999;
    cursor: pointer;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondary-clr);
    z-index: 9999;
    cursor: pointer;
    border-radius: 20px 0 0 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-clr);
    z-index: 9999;
    cursor: pointer;
}

::selection {
    background: #000;
    color: #fff;
}

-webkit-::selection {
    background-color: #000;
    color: #fff;
}

::-moz-selection {
    background-color: #000;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

* {
    font-family: 'Montserrat', sans-serif;
    outline: none !important;
    color: #000;
    line-height: initial;
    /* font-weight: 500; */
}

b {
    font-weight: bold;
}

.back-to-top {
    position: fixed;
    bottom: 15px;
    left: 15px;
    display: none;
    background: var(--secondary-clr);
    z-index: 99999;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 20px 20px 20px 0;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-inner {
    width: 200px;
    background: linear-gradient(45deg, #41e0ef, var(--primary-clr), var(--secondary-clr), #fd5366, #fcbf03);
    background-size: 400% 400%;
    animation: gradient 10s linear infinite;
}

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

a, a:hover {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-gradient-bg {
    background: linear-gradient(90deg, var(--primary-clr) 0%, #1B30A3 100%);
}

.primary-color {
    color: var(--primary-clr);
}

.primary-background {
    background: var(--primary-clr);
}

.secondary-color {
    color: var(--secondary-clr);
}

.secondary-background {
    background: var(--secondary-clr);
}

.light-background {
    background: var(--light-bg);
}

.inner-space {
    padding: 80px 0;
}

.outer-space {
    margin: 80px 0;
}

.section-title {
    font-size: 48px;
    color: var(--primary-clr);
    font-weight: 800;
    line-height: 60px;
}

.section-subtitle {
    font-size: 24px;
    line-height: 36px;
}

.title-tag {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-tag-line {
    font-size: 20px;
}

.section-content {
    font-size: 16px;
    line-height: 24px;
}

.gradient-dot {
    background: linear-gradient(180deg, #FD4E6B 0%, #FCBF03 100%);
    height: 8px;
    width: 8px;
    position: relative;
    display: inline-flex;
    margin-left: 3px;
    border-radius: 3px 3px 0 3px;
}

/* Header */

.flag-icon img {
    height: 15px;
}

header {
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

header .navbar {
    padding: 0;
    transition: 0.3s;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 250px;
}

.navbar-toggler {
    background: var(--secondary-clr);
    font-size: 26px;
    padding: 0;
    height: 50px;
    margin: 10px 0;
    width: 60px;
    border-radius: 15px 15px 0 15px;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    padding: 30px 0;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary-clr);
}

.navbar-expand-lg .navbar-nav .primary-btn {
    padding: 15px 20px;
}

.navbar-nav li ~ li {
    margin-left: 20px;
}

.dropdown-item {
    color: var(--gray-clr);
    font-size: 14px;
    border-radius: 20px;
    font-weight: 500;
}

.dropdown-menu {
    margin: 0;
    border: none;
    border-top: 1px solid #000;
    border-bottom: 2px solid var(--secondary-clr);
    box-shadow: 0 5px 10px rgba(0, 9, 113, 0.1);
    border-radius: 0;
    overflow: hidden;
    width: 100%;
}

.dropdown-item.active, .dropdown-item:hover {
    color: var(--primary-clr);
}

.dropdown-menu img {
    border-radius: 30px 0 30px 30px;
}

.dropdown-submenu {
    position: relative;
    display: flow-root;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    opacity: 100%;
    display: block;
}

.dropdown-item:hover i,
.dropdown-item.active i {
    color: #000;
}

.mega-menu-links li ~ li {
    margin: 25px 0 0 0 !important;
}

.mega-menu-links i, .dropdown-item i {
    color: var(--primary-clr);
    width: 20px;
    text-align: center;
}

.mega-menu-links a {
    font-size: 16px;
    display: flex;
    line-height: 16px;
}

.sidenav {
    height: 100%;
    width: 80%;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: -100%;
    background: var(--light-bg);
    overflow: auto;
    padding: 50px;
    transition: 0.3s;
    bottom: 0;
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.25);
}

.sidenav.show {
    right: 0;
    transition: 0.3s;
}

.sidenav .nav-link {
    font-size: 14px;
    padding: 10px 0;
}

.sidenav .navbar-nav .nav-item {
    width: 100%;
}

.sidenav .navbar-nav {
    align-items: flex-start;
}

.sidenav .navbar-nav li ~ li {
    margin: 10px 0 0 0;
}

.sidenav .primary-btn {
    padding: 20px 30px;
}

.sidenav .dropdown-menu {
    width: 100%;
    padding: 10px;
    position: relative !important;
    transform: none !important;
    border: 1px solid var(--gray-clr);
    box-shadow: none;
    border-radius: 0 15px 15px 15px;
}

.sidenav a img {
    width: 200px;
}

.social-media {
    font-size: 18px;
}

.dropdown-menu .counter-panel img {
    height: 42px;
}

.dropdown-menu .counter-panel h3 {
    font-size: 30px;
}

/* footer */

footer {
    background: #fff;
}

.footer-panel h5 {
    font-weight: 700;
}

.footer-link, .footer-text, .contact-link {
    font-size: 14px;
    color: #000;
    transition: 0.2s;
}

.footer-link:hover {
    color: var(--primary-clr);
    transition: 0.2s;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    width: 170px;
}

.footer-bottom span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: var(--primary-clr);
}

/* button & form */

.primary-btn {
    background: #000971;
    padding: 20px 30px;
    color: #fff;
    border: 1px solid var(--secondary-clr);
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 50px 50px 0 50px;
    text-transform: uppercase;
}

.primary-btn:hover {
    background: transparent;
    color: var(--secondary-clr);
    transition: 0.3s;
}

.outline-btn {
    background: transparent;
    color: var(--secondary-clr);
    transition: 0.3s;
}

.outline-btn:hover {
    background: var(--secondary-clr);
    color: #fff;
    transition: 0.3s;
}

.upper-edge-btn {
    border-radius: 50px 0 50px 50px;
}

.small-btn {
    font-size: 12px;
    font-weight: 400;
    padding: 5px 10px;
}

.big-btn {
    font-size: 24px;
    padding: 20px 40px;
    font-weight: 700;
}

.form-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
}

.form-group {
    margin: 10px;
    position: relative;
}

.form-group .float-label {
    font-size: 14px;
    position: absolute;
    margin: auto;
    top: 20px;
    bottom: auto;
    left: 30px;
    display: table;
    transition: 0.3s;
    text-transform: capitalize;
}

.form-control:focus + .float-label,
.form-control:not(:placeholder-shown).form-control:not(:focus) + .float-label {
    font-size: 12px;
    transform: translate(0, -15px);
    transition: 0.3s;
    opacity: 60%;
}

.form-control {
    padding: 18px 30px;
    border-radius: 30px;
    font-size: 14px;
    color: #000;
    border: 1px solid #fff;
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    resize: none;
}

.form-control::-moz-placeholder {
    color: #9c9b9b;
}

.form-control:-ms-input-placeholder {
    color: #9c9b9b;
}

.form-control::-webkit-input-placeholder {
    color: #9c9b9b;
}

.form-control:hover, .form-control:focus, .form-control:active {
    border-color: var(--primary-clr);
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
}

select.form-control:not([size]):not([multiple]) {
    height: auto;
}

.custom-radio {
    padding: 15px 0;
}

.custom-control-label::before {
    background: transparent;
    border: 2px solid var(--secondary-clr);
    border-radius: 0 !important;
    height: 24px;
    width: 24px;
    top: 0;
}

.custom-control-inline {
    padding-left: 35px;
    margin: 0;
}

.custom-control-label::after {
    width: 24px;
    height: 24px;
    top: 0;
}

.custom-checkbox .custom-control-input ~ .custom-control-label::before {
    box-shadow: none;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background: var(--secondary-clr);
    box-shadow: none;
}

.custom-file * {
    cursor: pointer;
}

.custom-file {
    border: none;
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    display: flex;
    align-items: center;
    padding: 18px 20px;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}

.custom-file-input {
    height: auto;
}

.custom-file-label {
    border: none;
    height: auto;
    bottom: 0;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 30px;
    font-size: 14px;
    color: #000;
}

.custom-file-label::after {
    height: auto;
    border: none;
    background: var(--secondary-clr);
    color: #fff;
    padding: 0 30px;
    align-items: center;
    display: flex;
}

.custom-input-panel {
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 25px;
    padding: 20px 30px;
}

.custom-control-label {
    font-size: 14px;
}

/* home hero banner*/

.carousel-item {
    height: 650px;
}

.carousel-item > img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    min-width: 100%;
    width: 100%;
    height: auto;
    margin: auto;
}

.carousel-caption {
    z-index: 10;
    padding: 50px;
    position: relative;
    align-self: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 50px 50px 0 50px;
}

.carousel-caption h1, .page-title h1 {
    font-size: 54px;
    color: var(--primary-clr);
    line-height: 70px;
    font-weight: 800;
    text-transform: capitalize;
}

.carousel-caption .primary-btn {
    border-radius: 50px 0 50px 50px;
}

.carousel-indicators {
    justify-content: flex-end;
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border-radius: 5px 5px 0 5px;
}

.carousel-indicators li.active {
    background: linear-gradient(180deg, #FD4E6B 0%, #FCBF03 100%);
}

.office-info {
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 30px 30px 0 30px;
    padding: 40px 50px;
    margin: 15px 0;
}

.office-info h6 {
    color: var(--primary-clr);
    font-weight: 700;
}

.arrow-icon {
    width: 36px;
}

.subscribe-us {
    background: linear-gradient(180deg, var(--light-bg) 50%, transparent 50%);
}

.subscribe-us-inner {
    border-radius: 50px 0 50px 50px;
    padding: 20px;
}

.subscribe-us-inner form .form-control {
    box-shadow: none;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    color: #fff;
}

.subscribe-us-inner .primary-btn, .fixed-cta .primary-btn {
    background: #fff;
    box-shadow: 0 0 8px 2px rgba(0, 9, 113, 0.2);
    border-radius: 30px 0 30px 30px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-clr);
    font-weight: 600;
    transition: 0.3s;
    border-color: #fff;
}

.subscribe-us-inner .primary-btn:hover, .fixed-cta .primary-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transition: 0.3s;
    box-shadow: none;
}

.fixed-cta {
    position: sticky;
    bottom: 0;
    z-index: 9999;
}

.fixed-cta .primary-btn {
    padding: 15px 20px;
    font-size: 14px;
}

.successful-products label {
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.25);
    border-radius: 20px 20px 0 20px;
}

.successful-products-slider .slick-slide {
    padding: 0;
}

.counter-panel h3 {
    font-weight: 900;
    font-size: 40px;
}

.counter-panel p {
    font-size: 14px;
}

.left-icon-feature img {
    width: 70px;
    margin-right: 30px;
}

.service-panel {
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 30px 30px 0 30px;
    background: #fff;
    padding: 30px;
    display: flex;
    margin: 15px 0;
}

.service-panel img {
    width: 48px;
    height: 48px;
}

.service-panel h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
}

.service-panel p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.service-panel a img {
    width: 36px;
    margin: 0;
}

.why-choose-panel {
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 30px 0 30px 30px;
    padding: 30px;
    margin: 15px 0;
}

.why-choose-panel h5 {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-clr);
}

.why-choose-panel img {
    height: 48px;
}

.why-choose-panel p {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-clr);
}

.draw-process {
    background: var(--light-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 40px 40px 0 40px;
    padding: 40px;
}

.draw-process h3 {
    font-weight: 800;
    font-size: 48px;
}

.draw-process h4 {
    font-weight: 800;
    font-size: 24px;
    line-height: 29px;
}

.draw-process h5 {
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 0 30px 30px 30px;
    padding: 20px;
}

.client-img {
    background: #000;
    border-radius: 30px 30px 0 30px;
    overflow: hidden;
}

.testimonials-slider, .service-slider {
    padding: 0 70px;
}

.testimonial-feedback h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.client-name {
    font-size: 14px;
}

/* Page Title Banner */
.page-title-banner {
    height: 500px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.page-title-banner .embed-responsive {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.page-title {
    position: relative;
    display: inline-block;
    padding: 50px;
    align-self: center;
    margin: 0;
    border-radius: 50px 50px 0 50px;
}

.breadcrumb-panel {
    border-bottom: 1.5px solid rgba(128, 128, 128, 0.5);
}

.breadcrumb-item a {
    text-transform: capitalize;
    color: var(--gray-clr);
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-item.active a,
.breadcrumb-item.active span {
    color: var(--primary-clr);
}

.quote-form-number {
    margin-bottom: 30px;
}

.quote-form-number.phase-1 {
    margin-top: 50px;
}

.quote-form-number.phase-2 {
    margin-top: 120px;
}

.quote-form-number.phase-3 {
    margin-top: 120px;
}

.quote-form-number h3 {
    background: var(--secondary-clr);
    border-radius: 35px 35px 0 35px;
    font-weight: 700;
    font-size: 30px;
    height: 70px;
    width: 70px;
    line-height: 70px;
}

.quote-form-number h4 {
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.quote-form-number p {
    font-size: 14px;
    line-height: 20px;
}

.quote-form {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 50px 50px 0 50px;
    padding: 50px;
}

.form-field-set h6 {
    font-weight: 600;
    font-size: 18px;
}

.get-quote-form {
    padding: 40px;
    border-radius: 40px 0 40px 40px;
    position: relative;
}

.get-quote-form::before {
    content: '';
    width: 95px;
    height: 95px;
    background: #fff url("../../assets/images/risk-free-trial.svg") center center no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    top: -30px;
    border-radius: 60px;
    transform: rotate(10deg);
    border: 5px solid #fff;
}

.get-quote-form .form-group {
    margin: 10px 0;
}

.get-quote-form .form-control {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
}

.get-quote-form .form-group .float-label {
    color: #fff;
}

.get-quote-form .form-btn {
    background: #fff;
    color: #000;
}

.sub-service-panel {
    margin: 20px 0;
}

.sub-service-panel .icon {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 20px 20px 0 20px;
}

.sub-service-panel .icon img {
    width: 36px;
}

.sub-service-panel h6 {
    font-size: 18px;
}

.sub-service-panel p {
    font-size: 14px;
    line-height: 24px;
}

.vertical-process::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #D9D9D9;
}

.vertical-process .process-box h5 {
    font-size: 20px;
}

.vertical-process .process-box p {
    font-size: 14px;
    line-height: 24px;
    color: var(--gray-clr);
}

.vertical-process .process-number {
    background: var(--light-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 30px 0 30px 30px;
    padding: 15px 40px;
    display: inline-block;
    font-size: 24px;
}

.vertical-process .process-number::after {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    background: linear-gradient(180deg, #FD4E6B 0%, #FCBF03 100%);
    z-index: 1;
}

.vertical-process .process-right .process-number {
    float: right;
}

.vertical-process .process-right .process-number::after {
    right: -5px;
}

.vertical-process .process-left .process-number::after {
    left: -5px;
}

.vertical-process .process-number {
    border-radius: 0 30px 30px 30px;
}

.process-right, .process-left {
    margin: 40px 0;
}

.accordion-panel button.collapsed {
    border-radius: 35px 0 35px 35px;
    border: 1px solid var(--primary-clr);
    color: #000;
    background: transparent;
}

.accordion-panel button {
    background: linear-gradient(90deg, var(--primary-clr) 0%, #1B30A3 100%);
    color: #fff;
    border-radius: 35px 0 35px 35px;
    border-color: transparent;
    cursor: pointer;
}

.accordion-panel > button.collapsed::after {
    transition: 0.3s;
    transform: rotate(90deg);
    background: #000;
}

.accordion-panel > button.collapsed::before {
    content: "";
    position: absolute;
    transition: 0.3s;
    background: #000;
    width: 2px;
    height: 22px;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.accordion-panel > button::after {
    background: #fff;
    content: "";
    transition: 0.3s;
    position: absolute;
    width: 2px;
    transform: rotate(0deg);
    height: 22px;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.accordion-panel .section-content {
    font-size: 14px;
}

.blog-overview {
    margin: 20px 0;
}

.blog-overview .blog-overview-img {
    background: #000;
    border-radius: 30px 30px 30px 0;
    overflow: hidden;
    display: block;
}

.blog-overview ul, .blog-overview p {
    font-size: 14px;
    line-height: 20px;
}

.blog-overview ul li ~ li {
    margin-left: 20px;
    position: relative;
}

.blog-overview ul li ~ li::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background: var(--gray-clr);
    left: -10px;
}

.blog-overview .blog-overview-title {
    font-size: 24px;
    line-height: 30px;
}

.sub-service-panel-2-img {
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 50px 50px 0 50px;
}

ul.custom-list li {
    position: relative;
    padding-left: 20px;
}

ul.custom-list li::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background: linear-gradient(180deg, #FD4E6B 0%, #FCBF03 100%);
}

ul.custom-list li ~ li {
    margin-top: 15px;
}

ul.check-list li {
    padding-left: 40px;
    display: flex;
    align-items: center;
}

ul.check-list li::before {
    background: url("../../assets/images/icons/correct.png") no-repeat center center;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 0;
}

.service-type {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 40px 40px 0 40px;
    padding: 40px 30px;
    margin: 15px 0;
}

.service-type img {
    width: 64px;
}

.service-type h5 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    text-transform: capitalize;
}

.bottom-tab-panel .tab-content {
    border: none;
    padding: 0;
    margin: 0;
}

.bottom-tab-panel .nav-tabs .nav-link {
    text-align: left;
    border-radius: 0;
    background: transparent !important;
    border: solid #e5e5e5;
    width: 100%;
    border-width: 0 0 2px 0 !important;
    margin-bottom: -1px;
}

.bottom-tab-panel .nav-tabs .nav-item.show .nav-link,
.bottom-tab-panel .nav-tabs .nav-link.active {
    color: var(--secondary-clr);
    border-color: var(--secondary-clr);
}

.bottom-tab-panel .nav-tabs {
    border-bottom: 2px solid #e5e5e5;
}

.bottom-tab-panel ul {
    column-count: 2;
}

.process-slider .slick-slide {
    padding: 0;
}

.process-slider img {
    width: 70px;
}

.process-slider h3 {
    font-weight: 800;
    font-size: 48px;
    color: var(--gray-clr);
}

.service-slider-inner-img, .history-tab-inner-img, .why-join-img {
    border-radius: 50px 50px 50px 0;
    overflow: hidden;
}

.gradient-cta {
    background: fixed center center;
    background-size: cover;
    padding: 140px 0;
}

.gradient-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: linear-gradient(90deg, var(--primary-clr) 14.24%, rgba(0, 0, 0, 0) 100%);
}

.gradient-cta .outline-btn {
    border-color: #fff;
}

.qoute-line {
    font-size: 30px;
    font-style: italic;
    line-height: 42px;
}

.about-us-slider-inner {
    height: 500px;
    overflow: hidden;
}

.about-counter-slider::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    margin: auto;
    background: linear-gradient(90deg, var(--primary-clr) 0%, #1B30A3 100%);
}

.history-tab .tab-content {
    border: none;
}

.history-tab .nav-pills {
    border-left: 2px solid var(--gray-clr);
}

.history-tab .nav-pills .nav-link {
    padding: 20px 40px;
    font-weight: 600;
    font-size: 30px;
    color: var(--gray-clr);
    position: relative;
    transition: 0.3s;
}

.history-tab .nav-pills .nav-link.active,
.history-tab .nav-pills .show > .nav-link {
    background: transparent;
    color: var(--primary-clr);
    font-weight: 800;
    font-size: 48px;
    transition: 0.3s;
}

.history-tab .nav-pills .nav-link::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 20px;
    background: var(--gray-clr);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.team-panel {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 30px 30px 30px 0;
    padding: 10px;
    margin: 15px 0;
}

.teammate-img {
    border-radius: 20px;
    overflow: hidden;
}

.team-panel h5 {
    font-size: 18px;
}

.team-panel p {
    font-size: 14px;
    color: var(--gray-clr);
}

.tools-languages-frameworks h5, .step-number {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px 30px 30px 0;
}

.tools-languages-frameworks h6 {
    font-size: 24px;
}

.human-cta .primary-btn {
    color: var(--primary-clr);
}

.human-cta .get-quote-form::before {
    content: none;
}

.privacy-cookie-policy h4 {
    font-weight: 600;
}

.individual-news-banner {
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.blog-share a {
    font-size: 20px;
}

.in-date {
    font-size: 24px;
}

.in-category-categories h6,
.in-category-tag h6 {
    font-size: 16px;
    color: var(--primary-clr);
    font-weight: 700;
}

.in-category-tag ul li, .in-category-categories ul li {
    margin: 0 10px 10px 0;
}

.in-category-categories ul a,
.in-category-tag ul a {
    font-weight: 700;
    font-size: 14px;
}

.in-category-tag ul a {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.collapsed-individual {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px 50px 0 50px;
    margin: 30px 0;
}

.collapsed-individual .btn {
    display: block;
    padding: 30px;
    font-size: 24px;
    color: #000;
    font-weight: 700;
    text-align: left;
    box-shadow: none;
    line-height: initial;
    white-space: normal;
}

.collapsed-individual .btn i {
    color: var(--primary-clr);
    float: left;
    font-size: 36px;
    transform: rotate(90deg);
    transition: 0.3s;
}

.collapsed-individual .btn.collapsed i {
    transform: rotate(0deg);
    transition: 0.3s;
}

.job-detail {
    margin: 0 30px;
    padding-bottom: 30px;
}

.modal-content {
    border: none;
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
}

.modal-content button.close {
    opacity: 100%;
    transition: 0.3s;
}

.modal-content button.close:hover {
    transform: rotate(90deg);
    transition: 0.3s;
}

.partner-logo {
    box-shadow: 0 0 10px rgba(0, 9, 113, 0.1);
    border-radius: 30px 30px 30px;
    overflow: hidden;
}

.individual-news-content .get-quote-form, .position-sticky-top {
    top: 100px;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    list-style: none;;
    padding: 0;
    margin: 15px 0 0 0;
}

.service-tech li {
    margin: 0 10px 10px 0;
    font-family: 'Futura-PT-Book', sans-serif;
    padding: 10px 20px;
    border: 1px solid var(--primary-clr);
    transition: 0.3s;
}

.service-tech li:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
    border-color: #fff;
    transition: 0.3s;
    color: var(--primary-clr);
}

.portfolio-panel {
    padding: 40px;
    margin: 50px 0;
    border-radius: 80px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-panel {
    height: 350px;
    box-shadow: rgba(0, 0, 0, 0.06) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
    margin: 20px 0;
    border-radius: 20px;
}

.video-panel iframe {
    border-radius: 20px 20px 20px 0;
    border: none;
}

.similar-service-panel i {
    font-size: 24px;
}

.similar-service-panel {
    border: 1px solid #000;
    padding: 30px;
    margin: 15px 0;
}

.similar-service-panel:hover {
    background: var(--primary-clr);
    color: #fff;
    border-color: var(--primary-clr);
}

.similar-service-panel:hover i {
    color: #fff;
}
.grecaptcha-badge{

    right:0px !important;
}
.reg-btn{
    background-color: #000971;
    color: white;
    padding: 15px 15px !important;
    border-radius: 5px;
}
.reg-btn:hover{
    color: white;
}