.careers-menu {
    /* display: none !important; */
}

/********** Variables ***********************/
:root {
    /* Font */
    --font-family-body: source-sans-pro;
    --font-family-header: lato;

    --font-size-body: 1rem;

    /* Colors */
    --color-gray: #8e8e8e;
    --color-light-gray: #afafaf;

    --color-body-text: #202B41;
    --color-footer-text: #cccccc;

    --color-dark-blue: #2b3241;
    --color-light-blue: #00bef3;

    --gradient-green: #00827d;
    --gradient-purple: #5500cc;

    --header-height: 60px;

    /* Shadows */
    --sticky-header-shadow: rgb(115 113 111 / 15%) 0px 10px 10px -10px;
}

/* Default style overrides */

input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
    width: 100%;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.5rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

/********** Important: Fix Elementor's Hello Theme adding borders *********/
.elementor-column-wrap {
    border: 0;
}

.approach-box {
    background: var(--color-light-blue);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    font-weight: 600;
    max-width: 30rem;

    clip-path: polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
}

.clip-path-less {
    clip-path: polygon(0 0, 100% 0%, 95.5% 100%, 0% 100%);
}

/********** Important: Fix Elementor's uneven top/bottom padding on buttons *********/
.elementor-button-content-wrapper {
    display: unset;
}

/* Back to top */
.back-to-top::after {
    content: " ";
    width: 80px;
    height: 80px;
    background: url(img/AXS023_ui_btn_backtotop.svg);

    transition: 0.1s ease-in-out;
    position: fixed;
    bottom: calc(5vh + 2rem);
    right: 3vh;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
}

.elementor-sticky--effects .back-to-top::after {
    opacity: 1;
}


/*---- Elementor Sticky Header ---------*/
.sticky-header {
    background: transparent !important;
    z-index: 100 !important;
}

.elementor-sticky--effects.sticky-header {
    background: #ffffff !important;
    box-shadow: var(--sticky-header-shadow);
}

/* ----- Elementor Sticky Header Logo */

.static-logo,
.sticky-logo {
    transition: opacity 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.static-logo {
    opacity: 1;
}

.elementor-sticky--effects .static-logo {
    opacity: 0;
}

.sticky-logo {
    opacity: 0;
}

.elementor-sticky--effects .sticky-logo {
    opacity: 1;
}

.blue-header .sticky-logo {
    opacity: 1;
}

/*-------- Elementor Sticky Header Links */
.sticky-header a {
    color: #ffffff;
    font-size: 1.125rem !important;
    font-family: var(--font-family-header) !important;
}

.sticky-header ul:not(.sub-menu)>li>a {
    text-decoration: none !important;
}

.sticky-header .sub-menu a {
    color: var(--color-body-text) !important;
}

.blue-header .sticky-header a {
    color: var(--color-light-blue);
}

.elementor-sticky--effects.sticky-header a {
    color: #000;
}

/*------ Elementor Sub menu */

.sticky-header .sub-menu {
    padding: 15px 30px 15px 10px !important;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
}

/***** Footer ********************/
.footer {
    color: var(--color-footer-text);
}

.footer a {
    color: white;
}

.footer a.footer-link {
    color: var(--color-light-blue);
}

.footer ul li {
    padding-bottom: 0.75rem;
}

.footer h5,
.footer-question {
    font-family: var(--font-family-header);
    color: var(--color-light-blue);
    font-weight: 600;
    font-size: var(--font-size-body);

    margin-top: 0;
}

/* New About page */
.about-tag {
    background: var(--color-light-blue);
    color: var(--color-dark-blue);
    padding: .3rem 1.125rem;
    font-weight: 600;
    margin-right: .3rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: background .2s;
}

.about-tag:hover {
    /* background: white; */
}

/*------------------------------------------ Copyright ------------------------------------------*/
.copyright {
    color: white;
}

/*------------------------------ Elementor List styles (Bullet points in work category) ------------------------------*/
.elementor ul {
    list-style: none !important;
}

.elementor ul li::before {
    content: "";
    background: var(--color-light-blue);
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    border-radius: 100px;
    display: inline-block;
    margin-left: -1.5rem;
    margin-top: 0.5rem;
}

.elementor-location-header ul li::before,
.footer ul li::before {
    display: none;
}

.elementor-location-header ul,
.footer ul {
    padding-inline-start: 0;
}

/* Search widget in footer */
.elementor-search-form__input {
    padding: 5px 0 !important;
}

.elementor-search-form__input::placeholder {
    font-family: var(--font-family-body), sans-serif;
    color: white;
}

/*************** Blue links default *******************************/
a {
    color: var(--color-light-blue);
    font-weight: 600;
}

h1 a,
h2 a,
h3 a,
.elementor-widget-nav-menu a,
.footer a {
    font-weight: unset;
}

a:hover {
    text-decoration: underline;
}

.app-link a {
    color: black;
    text-decoration: underline;
}

/*--------------------------------- Pagination portfolio (work items) ------------------------------*/
.page-str {
    margin-left: 15px;
    margin-top: 30px;
    text-align: center;
}

.single-work_item .page-str {
    margin-left: 0;
}

.page-str a {
    color: var(--color-light-blue);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    padding: 0;
    border-radius: 100px;
    margin-right: 15px;
    display: inline-block;
}

.page-str a.page-active {
    background: var(--color-light-blue);
    color: white;
}

/******** Disable clicking image in search results ***************/
.search-results .elementor-post__thumbnail__link {
    pointer-events: none;
}

/*--------------------------------- Elementor Essential Addon - Awards (Recognition page) ------------------------------*/
.eael-gallery-load-more:hover .eael-filterable-gallery-load-more-text {
    color: var(--color-light-blue);
}

/*----------------- Social share icon colors -----------------*/
html,
body {
    scroll-padding-top: 70px;
}

#contact-us .elementor-social-icon i {
    color: var(--color-light-blue);
}

/**** Interested in working with us **/
.interested-working {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.5;
}

.drop-line {
    color: var(--color-light-blue);
    font-size: 2.25rem;
    font-weight: 600;
    margin-top: 20px;
    line-height: 1.5;
}

.or-call-us {
    margin-top: 2rem;
}

/*------------------------------ Call us on Contact PAGE ------------------------------*/
#call-us {
    margin: 1.5em 0;
}

.call-us-span {
    margin-left: 20px;
    white-space: nowrap;
}

/*-------------------------------- Forms (popup) --------------------------------*/
.form-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.form-container form {
    background: white;
    display: flex;
}

.form-left {
    font-family: var(--font-family-header);
    color: white;
    background: var(--color-dark-blue);
    padding: 60px;
    width: 350px;
}

.form-right {
    flex: 1;
    padding: 40px;
}

/****** Style Blog's comment field: textarea ***************/
.comment-respond textarea {
    border: 1px solid #d6dadc !important;
}

.comment-body,
.comment-metadata time {
    border-bottom: 0 !important;
    font-size: var(--font-size-body);
}

#respond {
    margin-top: 40px;
}


/************************ General ***************************************/

body,
.conversation-field::placeholder,
/* start a project popup fields */
.conversation-textarea::placeholder,
.comment-respond input::placeholder,
/* blog post comment fields */
.comment-respond textarea::placeholder {
    font-family: var(--font-family-body), sans-serif;
    color: var(--color-body-text);
}

.heading,
/* Giant headings */
.fg-item-title,
/* Recognition item titles (Essential Elementor addon) */
.page-str a,
/* Page numbers */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-family-header);
    font-weight: 700;
}

.heading-work .elementor-text-editor {
    max-width: 66rem;
}

/* Important for defining CSS variables on elementor objects */
.blue-text {
    color: var(--color-light-blue);
}

.navy-text {
    color: var(--color-dark-blue);
}

.gray-text {
    color: var(--color-gray);
}

.light-gray-text {
    color: #c0c0c0;
}

/********* Image lightbox: hide title (Blog post image lightbox) *********/
.elementor-slideshow__title {
    display: none;
}

/********** Contact Us Form's Required asterisk *********/
abbr.required {
    color: var(--color-light-blue);
    text-decoration: none;
}

/******** FAQ (In work categories) ***********/
.question-new {
    max-width: 10rem;
    margin-bottom: 20px;
}

/****** Cursor selection *******/
*::selection {
    background-color: rgba(0, 0, 0, 0.99) !important;
    color: white !important;
}

:focus {
    outline: 0;

    /* Default values: */
    /* outline: -webkit-focus-ring-color auto 1px;
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
    outline-width: 1px; */
}

/**** Ensure you can't select homepage title, buttons, images, header *******/
.site-title *::selection,
.elementor-button .elementor-button-text::selection,
img::selection,
.sticky-header *::selection {
    background-color: unset !important;
    color: unset !important;
}


/*------------------------------- Blog -------------------------------------------------------------------*/

/******* First paragraph of blog *********/
.custom-blog-first {
    font-size: 1.25rem;
    font-weight: 600;
    border-left: 9px solid var(--color-light-blue) !important;
    padding-left: 40px;
    margin: 40px 0 40px 0;
}

/****** Hide comment field labels in Blog ***************/
.comment-respond label {
    display: none;
}

/****** Hide email and URL fields in Comment blog ******************************/
.comment-form-email,
.comment-form-url {
    display: none;
}

/****** Style Blog's comment fields ***************/
.comment-respond input[type="text"] {
    border: 1px solid #d6dadc !important;
}

/* Push down submit button */
.form-submit {
    margin-top: 30px;
}

/******** New testimonial classes in the testimonials PAGE (not carousel) *******/
.custom-testimonial-name {
    margin-top: 30px;
    font-weight: 400;
    color: var(--color-light-gray);
    max-width: 400px;
}

.custom-testimonial-title {
    font-weight: 600;
    color: black;
    max-width: 400px;
}

.testimonials-full .custom-testimonial-title {
    max-width: unset;
}

.testimonials-full-image .elementor-image {
    max-width: 200px;
    display: inline-block;
}

/*--------------------------- Testimonial carousel (flickity) ---------------------------*/
.carousel-testimonials .carousel-cell {
    width: 100%;
}

.testimonial__container {
    text-align: center;
    padding: 0 40px;
}

.quotation {
    margin-bottom: 2rem;
    width: 3rem;
}

.testimonial__text {
    font-size: 1.75rem !important;

    font-family: lora;
    font-weight: 600;
    font-style: italic;
    max-width: 40rem;

    margin: auto;
}

.testimonial__name {
    margin-top: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

.testimonial__title {
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 20px;
}

.testimonial__text,
.testimonial__name,
.testimonial__title {
    color: white !important;
}

/*** Recaptcha ***/
.g-recaptcha {
    display: none;
}

.g-recaptcha.fadeIn {
    display: block;
    animation: fade-in-captcha 1s both;
}

@keyframes fade-in-captcha {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*------------------------------ MFP Stuff (Popup view showreel) ------------------------------*/

/* overlay at start */
.mfp-transition.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

/* overlay animate in */
.mfp-transition.mfp-bg.mfp-ready {
    opacity: 0.9;
}

/* overlay animate out */
.mfp-transition.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-transition.mfp-wrap .mfp-content {
    opacity: 0;
    transform: scale3d(0.9, 0.9, 0.9);

    transition: all 0.3s 0.3s ease-out;
}

/* content animate in */
.mfp-transition.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale3d(1, 1, 1);

}

/* content animate out */
.mfp-transition.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale3d(0.9, 0.9, 0.9);

    transition: all 0.3s 0s ease-out;
}

.mfp-transition .mfp-close {
    opacity: 1;
    font-family: var(--font-family-body);
    font-size: 44px;

    width: unset;

    background: transparent !important;

    transition: opacity 0.15s;
}

.mfp-close:hover {
    opacity: 0.5;
}

.mfp-form .mfp-close {
    color: var(--color-dark-blue);
    right: 0.75rem;
    top: 0.25rem;
}

.mfp-video .mfp-close {
    color: white;
    right: 0;
    top: 0;
    transform: translateY(-100%);
}

.get-in-touch-section {
    margin-top: 170px;
    margin-bottom: 170px;
}

.get-in-touch-section .elementor-button {
    margin-top: 20px;
}

h3.elementor-post__title::before,
span.elementor-divider-separator {
    border-top: 9px solid var(--color-light-blue) !important;
    width: 60px !important;
    margin-bottom: 10px !important;
    display: block;
}

h3.elementor-post__title::before {
    content: ' ';
    margin-top: 0px !important;
    margin-bottom: 30px !important;
}

/*----------------------------------- Work Portfolio Grid ----------------------------------------*/

/**** Excerpt hover over work item ********/
.excerpt {
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    margin-top: 8px;
    color: white;
}

/**** Portfolio grid *******/
.elementor-widget-portfolio .elementor-posts-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.elementor-widget-portfolio .elementor-posts-container .elementor-post__thumbnail__link img {
    transition: transform 0.2s linear;
}

.elementor-widget-portfolio .elementor-posts-container .elementor-post__thumbnail__link:hover img {
    transform: scale(1.1);
}

a .elementor-portfolio-item__overlay {
    background-color: rgba(0, 0, 0, 0.55);
}

.elementor-portfolio-item__title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
}

.elementor-portfolio-item {
    animation: fadeIn 1s both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*------------------------------ Custom Twitter Feed ------------------------------*/
.ctf-new {
    padding: 0 !important;
}

.ctf-author-name {
    color: white !important;
}

/*------------------------------ Salesform formatting ------------------------------*/
.salesform input[type="text"],
.salesform input[type="email"],
.salesform textarea {
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #d6dadc !important;
    transition: 0.1s linear;
}

.salesform input[type="text"]:focus,
.salesform input[type="email"]:focus,
.salesform textarea:focus,
.comment-respond input[type="text"]:focus,
.comment-respond input[type="email"]:focus,
.comment-respond textarea:focus {
    border: 1px solid var(--color-light-blue) !important;
}

.label-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.label-group.flexcol {
    flex-direction: column;
}

.salesform-input {
    width: calc(50% - 20px);
}

.salesform-input.fullwidth {
    width: 100%;
}

.salesform #btnSubmit {
    width: 120px;
    align-self: flex-end;
    margin-top: 10px;
}

/*------------------------------ Carousel Work Item (Preview Images / Videos) ------------------------------*/

/**** Responsive Youtube for videos in Work Carousel ***********/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/***** Work Carousel ***************/
.flickity-button:disabled {
    opacity: 0.2;
}

.carousel-main .flickity-page-dots {
    bottom: -45px !important;
}

.carousel.is-fullscreen {
    z-index: 10000;
}

.carousel-main .carousel-cell {
    width: 100%;
    height: auto;
    /* background: #f9f9f9; */
    /* background: var(--color-dark-blue); */
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;

    max-height: 90vh;

    overflow: hidden;
}

.carousel-main .carousel-cell img {
    display: block;
    max-height: 90vh;
}

.carousel-main .carousel-cell-video {
    display: block;
    max-height: 90vh;
    width: 100%;
    height: 100%;
}

.carousel-caption {
    background: #000000bf;
    color: #ffffff;
    padding: 50px 50px;
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
    opacity: 0;
}

/*------------------------------ Carousel Blog ------------------------------*/

.carousel-blog {
    background: black;
    height: 100vh;
}

.carousel-blog-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.carousel-blog-container::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-green) 0%, var(--gradient-purple) 100%);
    opacity: 0.55;
}

.carousel-blog .carousel-cell {
    width: 100%;
    height: 100%;
}

.carousel-blog .carousel-cell-img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    object-fit: cover;
}

.flickity-prev-next-button {
    width: 90px;
    height: 90px;
}

.flickity-button {
    background: transparent !important;
    color: transparent !important;
    padding: 0;
}

.flickity-button-icon {
    display: none;
}

.previous {
    background: url(img/AXS023_ui_btn_left.svg) !important;
    background-size: 100% 100% !important;
}

.next {
    background: url(img/AXS023_ui_btn_right.svg) !important;
    background-size: 100% 100% !important;
}

.meet-team-name {
    margin-top: 10px;
}

.meet-team-column {
    padding-bottom: 50px;
}

.meet-team-column img {
    border-radius: 100%;
}

.meet-team-column .elementor-text-editor {
    text-align: center;
}

.carousel-blog .flickity-button,
.carousel-blog .flickity-page-dots {
    z-index: 10;
}

.carousel-blog .flickity-page-dots {
    bottom: 50px;
}

.carousel-blog .flickity-page-dots .dot {
    background: #dedede;
    opacity: 0.3;
}

.carousel-blog .flickity-page-dots .dot.is-selected {
    background: var(--color-light-blue);
    opacity: 1 !important;
}

.carousel-blog-metadata {
    width: 100%;
    max-width: 1220px;
    padding: 0 100px;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.carousel-blog-blog {
    margin-bottom: 20px;
    opacity: 0;
}

.carousel-blog-title {
    /* h1 Global font in Elementor */
    font-size: 3rem;
    line-height: 1.25em;

    max-width: 50rem;
    opacity: 0;
}

.carousel-blog-date {
    margin: 25px 0 15px 0;
    opacity: 0;

    font-size: 1.25rem;
}

/* ------------- Blog Grid and Blog post image hover ------------------------------------- */
.elementor-post.elementor-grid-item img {
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 0 0;
    transition: 0.4s transform;
}

.elementor-post.elementor-grid-item img:hover {
    transform: scale(1.1) translate(-50%, -50%);
}

.overflowhidden .elementor-image,
.blog-left .elementor-image {
    overflow: hidden;
}

.blog-left .elementor-image img {
    transform: scale(1);
    transition: 0.4s transform;
}

.blog-left .elementor-image img:hover {
    transform: scale(1.1);
}

/* ------------ Blog post content --------------------------------- */

.blog-left .elementor-widget-theme-post-content {
    /* max-width: 600px; */
}

.blog-label-left,
.blog-label {
    color: var(--color-light-gray);
    text-align: center;
    margin-bottom: 30px;
}

.blog-label-left {
    text-align: left;
}

/* ------------ Related or Recent Posts --------------------------------- */

/*** Related posts : Meta data ***/
.recent .elementor-post__meta-data {
    padding-top: 20px !important;
}

.elementor-post__excerpt p::after {
    content: "…";
}

/* ------------ Single share icons (new share icons) --------------------------------- */
.single-work_item .single-share {
    float: right;
}

.single-share .elementor-social-icon {
    font-size: 22.5px;
}

.single-share input[type="text"] {
    box-shadow: unset !important;
    height: 0;
    opacity: 0;
    padding: 0 !important;
}

.single-share-icon {
    color: #aaa !important;
}

.link-copied {
    display: inline-block;
    opacity: 0;
    margin-bottom: 20px;
    background: #ffffff;
    color: var(--color-body-text);
    padding: 0;
    border-radius: 50px;
    position: absolute;
    transform: translateY(-140%);
    left: 148px;
}


/*--------------------------------- Accordion ------------------------------*/
.elementor-accordion-item .elementor-tab-content {
    padding: 0;
}

.questions .elementor-tab-title {
    max-width: 1250px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 30px;
    margin-bottom: 30px;
}

.elementor-accordion-item .elementor-tab-title a {
    color: white;
}

.accordion-section {
    background-position: calc(50% + 350px) 50%;
}

.accordion-section2 {
    background-position: calc(50% + 400px) 50%;
}

.accordion-section3 {
    background-position: calc(50vw - 0px) 50%;
}

.accordion1,
.accordion2,
.accordion3 {
    display: inline-block;
    font-size: 1.5rem;
}

.accordion2:hover,
.accordion1:hover,
.accordion3:hover {
    color: var(--color-light-blue);
    transition: 0.1s linear;
}

.elementor-accordion-icon i:before {
    color: #ffffff !important;
    background: transparent;
    padding: 0;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    border: 2px solid white;
    display: inline-block;
    text-align: center;
    vertical-align: text-bottom;
    padding-top: 7px;
    padding-left: 1px;
}

.nomargin p:first-child {
    margin-top: 0;
}

.nomargin p:last-child {
    margin-bottom: 0;
}

/*--------------------------------- First-section (down arrow chevron) ------------------------------*/
.first-section .elementor-container {
    min-height: 100vh !important;
}

.first-section:after {
    content: "";
    position: absolute;
    width: 2rem;
    height: 2rem;
    bottom: 5%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    background: url(img/AXS023_ui_btn_scrolldown.svg) no-repeat;
    z-index: 1;
    pointer-events: none;

    animation: fadeInArrow 1s 1.5s both;
}

.first-section-blog:after {
    bottom: 10%;
}

@keyframes fadeInArrow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*--------------------------------- Why invest in (Before FAQ) ------------------------------*/
.invest li {
    margin-bottom: 16px;
}

/*--------------------------------- Filter : Active Work Item category ------------------------------*/
.filter a {
    color: inherit;
}

.filter a.active {
    text-decoration: underline;
}

/*--------------------------------- Rotating logos on front page ------------------------------*/
img.swiper-slide-image {
    filter: brightness(0.7) hue-rotate(20deg);
}

/********************************** Buttons *********************************************************/
.elementor-button .elementor-button-text,
#btnSubmit,
/* Popup contact submit */
#submit,
/* Post comment submit */
input[type="submit"] {

    font-family: var(--font-family-header) !important;
    font-weight: 600;
    font-size: var(--font-size-body) !important;
    line-height: 1;

    text-decoration: none;
}

/* Actual button */
.elementor-button,
#btnSubmit,
#submit,
input[type="submit"] {
    border: 2px solid var(--color-light-blue);
    background: var(--color-light-blue) !important;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;

    border-radius: 50px !important;
    transition: 0.2s linear;
}

.elementor-button {
    margin-bottom: 20px;
}

/* ------------ Elementor button link --------------------------------- */

.elementor-button:hover,
#btnSubmit:hover,
#submit:hover,
input[type="submit"]:hover {
    background: transparent !important;
    color: var(--color-light-blue);
    border: 2px solid var(--color-light-blue);
}

.custom-outline-black .elementor-button-link {
    background: transparent !important;
    color: black;
    border: 2px solid black;
}

.custom-outline-black .elementor-button-link:hover {
    background: black !important;
    color: white;
    border: 2px solid black;
}

.custom-outline-white .elementor-button-link {
    background: transparent !important;
    color: white;
    border: 2px solid white;
}

.first-section .elementor-button-link:hover,
.custom-outline-white .elementor-button-link:hover {
    background: white !important;
    color: black;
    border: 2px solid white;
}

.custom-outline-grey .elementor-button-link {
    background: transparent !important;
    color: black;
    border: 2px solid #eaeaea;
}

.custom-outline-grey .elementor-button-link:hover {
    background: black !important;
    color: white;
    border: 2px solid black;
}

.custom-outline-navy .elementor-button-link {
    background: transparent !important;
    color: var(--color-dark-blue);
    border: 2px solid var(--color-dark-blue);
}

.custom-outline-navy .elementor-button-link:hover {
    background: var(--color-dark-blue) !important;
    color: white;
    border: 2px solid var(--color-dark-blue);
}

.elementor-background-overlay {
    transition: none !important;
}




#btnSubmit:disabled {
    background: #cccccc !important;
    border: 2px solid #cccccc !important;
    color: white !important;
    cursor: default !important;
}

.filter-work {
    margin-bottom: 10px !important;
}

.filter-work .elementor-button {
    background: transparent !important;
    border: 2px solid var(--color-body-text);
    color: var(--color-body-text);
    border-radius: 4px !important;

    padding: 10px 15px;
    margin-bottom: 0 !important;

    margin-right: 10px;
}

.filter-work .elementor-button:hover,
.filter-work.active .elementor-button {
    background: var(--color-body-text) !important;
    color: white;
}

/* Approach images */

.approach {
    overflow: hidden;
}

.approach-image img {
    transform: scale(1);
}

.approach-text {
    z-index: 1;
}

/*----------------------------------------- Mobile styles ----------------------------------------*/
@media only screen and (max-width: 767px) {

    :root {}

    .carousel-blog {
        height: 90vh;
    }

    .first-section:after {
        width: 1.75rem;
        height: 1.75rem;
    }

    .first-section-blog:after {
        bottom: 14%;
    }

    .first-section .elementor-container {
        min-height: calc(93vh - var(--header-height)) !important;
    }

    .elementor-portfolio .elementor-portfolio-item__overlay {
        opacity: 1;
        height: 35%;
        bottom: 0;
        top: unset;

        background: linear-gradient(180deg, transparent, black);
    }

    .elementor-portfolio .elementor-portfolio-item__title {
        font-size: 1rem;
    }

    .elementor-portfolio .excerpt {
        display: none;
    }

    .back-to-top::after {
        bottom: calc(5vh + 3rem);
    }

    .flickity-prev-next-button {
        width: 70px;
        height: 70px;
    }

    .br-desktop {
        display: none;
    }

    .br-mobile {
        display: block;
    }

    /* Sticky header */
    .sticky-header {
        background: white !important;
        box-shadow: var(--sticky-header-shadow);
        margin-bottom: 0 !important;
    }

    .sticky-header a {
        color: var(--color-body-text) !important;
        background: transparent !important;
    }

    .sticky-logo {
        opacity: 1;
    }

    .interested-working {
        font-size: 1.5rem;
    }

    .drop-line {
        font-size: 1.5rem;
    }

    /* Contact page call us */
    .call-us-span {
        float: right;
        margin-left: 0;
        display: block;
    }

    /****** Hamburger menu: Currently selected menu item bolded ******/
    li.current_page_item {
        font-weight: 600;
    }

    .sticky-header .sub-menu {
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .accordion-section,
    .accordion-section2,
    .accordion-section3 {
        background-size: 0 !important;
    }

    .single-work_item .single-share {
        float: left;
    }

    .accordion1,
    .accordion2,
    .accordion3 {
        max-width: 17rem;
    }

    .carousel-blog-metadata {
        width: 70%;
        padding: 0 20px;
    }

    .carousel-blog-title {
        font-size: 2rem;
        line-height: 1.5;
    }

    .mfp-form .mfp-close {
        color: white;
    }

    .form-container form {
        flex-flow: column;
    }

    .form-left {
        width: unset;
    }

    /* Sales form 100% width fields */
    .label-group {
        flex-direction: column;
    }

    .salesform-input {
        width: 100%;
    }

    .testimonial__text {
        font-size: 1rem !important;
    }

    .carousel-blog .flickity-prev-next-button,
    .carousel-testimonials .flickity-prev-next-button {
        display: none;
    }
}

/*--------------------------------------------- Desktop styles ---------------------------------------------*/

@media only screen and (min-width: 768px) {

    .br-desktop {
        display: block;
    }

    .br-mobile {
        display: none;
    }

    .sticky-header ul:not(.sub-menu)>li>a {
        padding: 0 !important;
        margin: 0 20px;
    }

    /* Underline menu item */
    .sticky-header .menu-item a::before {
        content: " ";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -10px;
        left: 0;
        display: inline-block;
        transition: all 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);

        transform: scale(0);
        transform-origin: center left;
    }

    .sticky-header .sub-menu .menu-item a::before {
        display: none;
    }

    /****** Underline menu item on hover *********************/
    .sticky-header .menu-item:hover a::before {
        transform: scaleX(1);
        background: white;
    }

    .blue-header .sticky-header .menu-item:hover a::before {
        background: var(--color-light-blue);
    }

    .elementor-sticky--effects.sticky-header .menu-item:hover a::before {
        background: black;
    }

    /***** Underline currently selected item ****************/
    .current_page_item a::before {
        transform: scaleX(1) !important;
        background: white;

        opacity: 1 !important;
    }

    .blue-header .current_page_item a::before {
        background: var(--color-light-blue);
    }

    .elementor-sticky--effects.sticky-header .current_page_item a::before {
        background: black;
    }

    /***** No underline for contact menu (it's a button) *********/
    .contact-menu a::before {
        display: none !important;
    }

    /* Vertically Center align top level menu items */
    .elementor-nav-menu {
        align-items: center;
    }

    /******* Contact menu item ************/
    body .sticky-header li.contact-menu>a {
        font-weight: 600 !important;
        border: 2px solid white;
        padding: 12px 24px 14px 24px !important;
        border-radius: 50px;
        transition: all 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);
        display: inline-block;
    }

    .blue-header li.contact-menu>a {
        background: transparent;
        border-color: var(--color-light-blue) !important;
        color: var(--color-light-blue);
    }

    .elementor-sticky--effects.sticky-header li.contact-menu>a {
        border-color: var(--color-light-blue) !important;
        background: var(--color-light-blue);
        color: white;
    }

    /****** Contact menu item hover (and for different templates) */
    li.contact-menu>a:hover {
        /* border-color: var(--color-light-blue) !important; */
        background: white;
        color: #25282a;
    }

    .blue-header li.contact-menu>a:hover {
        background: var(--color-light-blue);
        color: white;
    }

    .elementor-sticky--effects.sticky-header li.contact-menu>a:hover {
        background: transparent;
        color: var(--color-light-blue);
    }
}