/*  ==========================================================================
    Enova Toolkit
    ========================================================================== */

/* === Section Heading === */
.section-heading h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 44px;
    color: #222;
}

.section-heading p {
    margin-bottom: 0;
}
/* SVG Icon */
.elementor svg{
    width: auto;
    height: 20px;
    fill: currentColor;
}

/* Global Transition */
a,
a:hover {
    transition: all 0.2s ease-in-out;
}

.elementor-text-editor p {
    margin: 0;
}

/* This class can be replaced using options */
.hover-in {
    transition: .3s ease-out;
}

.hover-out {
    transition: .3s ease-in;
}

/* Button Style */
.wt-btn {
    font-family: "Work Sans", sans-serif;
    letter-spacing: 1px;
    background-color: #5e2ced;
    color: #fff;
    line-height: 60px;
    display: inline-block;
    padding: 0 50px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wt-align-justify .wt-btn {
    display: block;
}

.wt-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

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

.wt-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* === Columns === */
.wt-row {
    display: block;
    margin: 0 -10px;
}

.wt-row .wt-col {
    float: left;
    display: block;
    padding: 0 10px;
}

.wt-row.wt-column-desktop-1 .wt-col {
    width: 100%;
}

.wt-row.wt-column-desktop-2 .wt-col {
    width: 50%;
}

.wt-row.wt-column-desktop-3 .wt-col {
    width: 33.33%;
}

.wt-row.wt-column-desktop-4 .wt-col {
    width: 25%;
}

.wt-row.wt-column-desktop-5 .wt-col {
    width: 20%;
}

.wt-row.wt-column-desktop-6 .wt-col {
    width: 16.66%;
}

@media (max-width: 992px) {
    .wt-row.wt-column-tablet-1 .wt-col {
        width: 100%;
    }

    .wt-row.wt-column-tablet-2 .wt-col {
        width: 50%;
    }

    .wt-row.wt-column-tablet-3 .wt-col {
        width: 33.33%;
    }

    .wt-row.wt-column-tablet-4 .wt-col {
        width: 25%;
    }

    .wt-row.wt-column-tablet-5 .wt-col {
        width: 20%;
    }

    .wt-row.wt-column-tablet-6 .wt-col {
        width: 16.66%;
    }

    .dl-project-items {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .wt-row.wt-column-mobile-1 .wt-col {
        width: 100%;
    }

    .wt-row.wt-column-mobile-2 .wt-col {
        width: 50%;
    }

    .wt-row.wt-column-mobile-3 .wt-col {
        width: 33.33%;
    }

    .wt-row.wt-column-mobile-4 .wt-col {
        width: 25%;
    }

    .wt-row.wt-column-mobile-5 .wt-col {
        width: 20%;
    }

    .wt-row.wt-column-mobile-6 .wt-col {
        width: 16.66%;
    }
}

/* === Counter === */
.counter-box h3 {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 5px;
}

.counter-box h4 {
    font-size: 16px;
    text-transform: uppercase;
}

.counter-box i {
    color: #fff;
    font-size: 35px;
    margin-bottom: 10px;
}


/* === Spacing === */
.enova-spacing {
    display: block;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
}

/* === Notice Box === */
.enova-notice {
    padding: 15px;
    background-color: #fafafa;
    border-left: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
}

.enova-notice.notice-sm {
    padding: 10px;
    font-size: 80%;
}

.enova-notice.notice-lg {
    padding: 35px;
    font-size: large;
}

.enova-notice.notice-success {
    border-color: #80D651;
}

.enova-notice.notice-success>strong {
    color: #80D651;
}

.enova-notice.notice-info {
    border-color: #45ABCD;
}

.enova-notice.notice-info>strong {
    color: #45ABCD;
}

.enova-notice.notice-warning {
    border-color: #FEAF20;
}

.enova-notice.notice-warning>strong {
    color: #FEAF20;
}

.enova-notice.notice-danger {
    border-color: #d73814;
}

.enova-notice.notice-danger>strong {
    color: #d73814;
}

/* === Accordion === */
.accordion {
    width: 100%;
    max-width: 1080px;
    height: 250px;
    overflow: hidden;
}

.accordion ul {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
    padding: 0;
}

.accordion ul li {
    display: table-cell;
    vertical-align: bottom;
    position: relative;
    width: 16.666%;
    height: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 500ms ease;
}

.accordion ul li div {
    display: block;
    overflow: hidden;
    width: 100%;
}

.accordion ul li div a {
    display: block;
    height: 250px;
    width: 100%;
    position: relative;
    z-index: 3;
    padding: 15px 20px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    transition: all 200ms ease;
}

.accordion ul li div a * {
    opacity: 0;
    margin: 0;
    width: 100%;
    text-overflow: ellipsis;
    position: relative;
    z-index: 5;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.accordion ul li div a h2 {
    font-family: Work Sans, sans-serif;
    text-overflow: clip;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2px;
    top: 160px;
}

.accordion ul li div a p {
    top: 160px;
    font-size: 13.5px;
}

.accordion ul:hover li {
    width: 8%;
}

.accordion ul:hover li:hover {
    width: 60%;
}

.accordion ul:hover li:hover a {
    background: rgba(0, 0, 0, 0.4);
}

.accordion ul:hover li:hover a * {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 600px) {
    body {
        margin: 0;
    }

    .accordion {
        height: auto;
    }

    .accordion ul li, .accordion ul li:hover, .accordion ul:hover li, .accordion ul:hover li:hover {
        position: relative;
        display: table;
        table-layout: fixed;
        width: 100%;
        -webkit-transition: none;
        transition: none;
    }
}

/* Half Background Color */
.elementor-section.half-bg {
    position: relative;
    z-index: 1;
}

.elementor-section.half-bg:before {
    width: 50%;
    height: 100%;
    background-color: #fff;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.elementor-section.half-bg.bg-right:before {
    left: auto;
    right: 0;
}

.elementor-section.half-bg.dark:before {
    background-color: #111;
}

.elementor-section.half-bg.grey:before {
    background-color: #ddd;
}

@media (max-width: 992px) {
    .elementor-section.half-bg:before {
        display: none;
    }

    .wt-list .list-item p br {
        display: none;
    }
}

@media (max-width: 591px) {
    .sponsor-list .col-sm-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* === ocial Share === */
.social-share {
    display: flex;
    margin: 0;
    column-gap: 5px;
}

.social-share button {
    background-color: #5e2ced;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    border-radius: 0;
}

.social-share button svg {
    width: 15px;
}

.social-share button:hover,
.social-share button:focus {
    opacity: 0.8;
    outline: none;
}

/* Social Icons */
.wt-social-icons {
    display: block;
    margin: 0 !important;
}

.wt-social-icons.left {
    text-align: left;
}

.wt-social-icons.left li:not(:last-of-type) {
    margin-right: 20px;
}

.wt-social-icons.center {
    text-align: center;
}

.wt-social-icons.center li {
    margin: 0 10px;
}

.wt-social-icons.right {
    text-align: right;
}

.wt-social-icons.right li:not(:first-of-type) {
    margin-left: 20px;
}

.wt-social-icons li {
    display: inline-block;
}

.wt-social-icons li a {
    color: #ddd;
    font-size: 12px;
}

.wt-social-icons li a:hover {
    color: #fff;
    opacity: 0.7;
}

.widget ul.wt-social-icons li a {
    color: #999;
}

.widget ul.wt-social-icons li a:hover {
    color: #313335;
    opacity: 1;
}

/* === Subscribe Form === */
.mc4wp-form-widget {
    overflow: hidden;
}

.mc4wp-form-widget label {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
}

.mc4wp-form-widget input[type="email"] {
    width: 100%;
    border-radius: 0;
    border: 1px solid #eee;
    background-color: #fff;
    color: #6c7a87;
    padding: 11px 10px;
    margin-bottom: 10px;
}

.dark-widget .mc4wp-form-widget input[type="email"] {
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
}

.mc4wp-form-widget input::-webkit-input-placeholder {
    color: #999 !important;
}

.mc4wp-form-widget input:-moz-placeholder {
    /* Firefox 18- */
    color: #999 !important;
}

.mc4wp-form-widget input::-moz-placeholder {
    /* Firefox 19+ */
    color: #999 !important;
}

.mc4wp-form-widget input:-ms-input-placeholder {
    color: #999 !important;
}

.mc4wp-form-widget input[type="submit"] {
    width: 100%;
    line-height: 45px;
    padding: 0;
    transition: opacity 0.35s ease;
}

.mc4wp-form-widget input[type="submit"]:hover {
    opacity: 0.9;
    transition: opacity 0.35s ease;
}

/* Style 2 */
.mc4wp-form-widget.style-2 .mc4wp-form-fields {
    position: relative;
}

.mc4wp-form-widget.style-2 input[type="email"] {
    padding: 0 60px 0 10px;
    margin-bottom: 0;
    line-height: 50px;
}

.mc4wp-form-widget.style-2 input[type="submit"] {
    background-image: url(../img/paper-plane.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 4px;
    top: 50%;
    text-indent: 9999px;
    transform: translateY(-50%);
}

.mc4wp-form-submitted p {
    margin: 0;
}

.mc4wp-form-submitted .mc4wp-error,
.mc4wp-form-submitted .mc4wp-success {
    margin-top: 20px;
    padding: 10px;
    line-height: 26px;
}

.mc4wp-form-submitted .mc4wp-success {
    border: 1px solid green;
    color: green;
}

.mc4wp-form-submitted .mc4wp-error {
    border: 1px solid red;
    color: red;
}

.dark-widget .mc4wp-form-submitted .mc4wp-success p {
    color: green;
}

.dark-widget .mc4wp-form-submitted .mc4wp-error p a,
.dark-widget .mc4wp-form-submitted .mc4wp-error p {
    color: red;
}

.mc4wp-form-widget .desc {
    margin-bottom: 0;
    margin-top: 15px;
}

.dark-widget .mc4wp-form-widget .mc-social-icons,
.mc4wp-form-widget .mc-social-icons {
    display: block;
    margin-top: 20px;
}

.mc4wp-form-widget .mc-social-icons li {
    display: inline-block;
    margin-bottom: 10px;
}

.mc4wp-form-widget .mc-social-icons li:not(:last-of-type) {
    margin-right: 10px;
}

.mc4wp-form-widget .mc-social-icons li a {
    background-color: #eee;
    color: #555;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.dark-widget .mc4wp-form-widget .mc-social-icons li a {
    background-color: #333;
    color: #fff;
}

.dark-widget .mc4wp-form-widget .mc-social-icons li a:hover,
.mc4wp-form-widget .mc-social-icons li a:hover {
    background-color: #4154f1;
    color: #fff;
    text-decoration: none;
}

.mc4wp-form-widget .mc-social-icons li a svg {
    width: 15px;
}

.dark-widget .mc4wp-error a {
    color: #ddd;
}

/* Widget About */

.widget-about .widget-brand {
    display: block;
    margin-bottom: 20px;
}

.widget-about-info {
    display: block;
    color: #999;
    font-size: 15px;
    font-family: "Work Sans", serif;
    line-height: 1.73;
    letter-spacing: .2px;
}

.widget-about-info span {
    font-family: 'Work Sans', serif;
    font-size: 13px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.widget .widget-about-info span {
    color: #313335;
}

.widget-about .wt-social-icons {
    margin-top: 20px !important;
}

.widget-about .wt-social-icons li {
    padding: 0;
}

.widget-about .wt-social-icons li:before {
    display: none;
}

@media (max-width: 520px) {
    .widget-about .widget-brand img {
        max-width: 150px;
    }
}

/* === Widgets === */
/* 23.1 About */

.widget-about .wt-social-icons li {
    display: inline-block;
}

.widget-about .wt-social-icons li:not(:last-of-type) {
    margin-right: 5px;
}

.widget-about .wt-social-icons li>a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    background-color: #34383c;
    width: 40px;
    display: inline-block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
}

.widget-about .wt-social-icons li>a:hover {
    color: #fff !important;
    opacity: 0.9 !important;
}

.social-share button.facebook,
.widget-about .wt-social-icons li.facebook a {
    background-color: #3b5998;
    color: #fff;
}

.social-share button.twitter,
.widget-about .wt-social-icons li.twitter a {
    background-color: #1da1f2;
    color: #fff;
}

.widget-about .wt-social-icons li.instagram a {
    background-color: #e1306c;
    color: #fff;
}

.social-share button.linkedin,
.widget-about .wt-social-icons li.linkedin a {
    background-color: #0e76a8;
    color: #fff;
}

.widget-about .wt-social-icons li.gplus a {
    background-color: #ea4335;
    color: #fff;
}

.social-share button.pinterest,
.widget-about .wt-social-icons li.pinterest a {
    background-color: #bd081c;
    color: #fff;
}

/* About Widget New */
.about-widget {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    background-color: #fff;
}

.about-widget .widget-brand {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.about-widget .widget-brand img {
    max-width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    left: 0;
    top: 0;
}

.about-widget p {
    font-size: 16px;
    line-height: 26px;
}

.about-widget .wt-social-icons {
    margin-top: 20px !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
}

.about-widget .wt-social-icons.style-2 {
    grid-gap: 2px;
}

.about-widget .wt-social-icons.column-1 {
    grid-template-columns: repeat(1, 1fr);
}

.about-widget .wt-social-icons.column-2 {
    grid-template-columns: repeat(2, 1fr);
}

.about-widget .wt-social-icons.column-3 {
    grid-template-columns: repeat(3, 1fr);
}

.about-widget .wt-social-icons.column-5 {
    grid-template-columns: repeat(5, 1fr);
}

.about-widget .wt-social-icons.column-6 {
    grid-template-columns: repeat(6, 1fr);
}

.about-widget .wt-social-icons.style-3 {
    grid-template-columns: repeat(4, 40px);
    grid-gap: 10px;
}

.about-widget .wt-social-icons.style-3.column-1 {
    grid-template-columns: repeat(1, 40px);
}

.about-widget .wt-social-icons.style-3.column-2 {
    grid-template-columns: repeat(2, 40px);
}

.about-widget .wt-social-icons.style-3.column-3 {
    grid-template-columns: repeat(3, 40px);
}

.about-widget .wt-social-icons.style-3.column-5 {
    grid-template-columns: repeat(5, 40px);
}

.about-widget .wt-social-icons.style-3.column-6 {
    grid-template-columns: repeat(6, 40px);
}

.about-widget ul li+li,
.about-widget .wt-social-icons li:not(:last-of-type) {
    margin: 0 !important;
}

.about-widget .wt-social-icons li svg {
    width: 15px;
}

.about-widget ul.wt-social-icons li a {
    background-color: #232427;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    line-height: 40px;
}

.about-widget ul.wt-social-icons li a:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.about-widget .wt-social-icons li.facebook-f a {
    background-color: #1877f2;
}

.about-widget .wt-social-icons li.twitter a {
    background-color: #1da1f2;
}

.about-widget .wt-social-icons li.instagram a {
    background-color: #e1306c;
}

.about-widget .wt-social-icons li.email a {
    background-color: #ea4335;
}

.about-widget .wt-social-icons li.whatsapp a {
    background-color: #25d366;
}

.about-widget .wt-social-icons li.pinterest a {
    background-color: #e60023;
}

.about-widget .wt-social-icons li.linkedin-in a {
    background-color: #0077b5;
}

.about-widget .wt-social-icons li.behance a {
    background-color: #1769ff;
}

.about-widget .wt-social-icons li.youtube a {
    background-color: #ff0000;
}

.about-widget .wt-social-icons li.dribbble a {
    background-color: #ea4c89;
}

.about-widget .wt-social-icons li.flickr a {
    background-color: #ff0084;
}

.about-widget .wt-social-icons.style-3 li a {
    background-color: #eee;
    color: #555;
}

.about-widget .wt-social-icons.style-3 li a:hover {
    background-color: #4154f1;
}

/* Footer Widget Scheme */
.footer-widgets .about-widget {
    background-color: transparent;
    border: none;
    text-align: left;
    padding: 0;
}

.footer-widgets .about-widget .widget-brand {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0 0 20px;
}

.footer-widgets .about-widget .widget-brand img {
    position: inherit;
    width: 40%;
}

.footer-widgets .about-widget ul.wt-social-icons.style-3 {
    justify-content: flex-start;
}

.footer-widgets .about-widget ul.wt-social-icons.style-3 li a {
    background-color: #333;
    color: #fff;
}

.footer-widgets .about-widget ul.wt-social-icons.style-3 li a:hover {
    background-color: #4154f1;
    opacity: 1;
}

@media (max-width: 520px) {
    .about-widget .widget-brand img {
        max-width: 150px;
    }
}

/* 23.2 List info */
.widget .list-widget {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.widget .list-widget li {
    width: 100%;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-column-gap: 10px;
}

.widget .list-widget li i {
    color: #4154f1;
    font-size: 24px;
    margin-top: 3px;
}

.widget .list-widget li,
.widget .list-widget li a {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    line-height: 26px;
    color: #0b2238;
}

/* Recent Posts Widget */

.widget-posts-list li {
    width: 100%;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.widget-posts-list li .widget-post-thumb {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.widget-posts-list li .widget-post-thumb .thumb {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 80px;
    height: 70px;
    margin: 0;
}

.widget-posts-list.circle li .widget-post-thumb .thumb {
    width: 70px;
    border-radius: 50%;
}

.widget-posts-list li .widget-post-thumb img {
    width: 100%;
}

.widget-posts-list li .widget-post-content {
    padding-left: 1.2rem !important;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.widget-posts-list li .widget-post-content a {
    font-size: 16px;
    color: #0b2238;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    line-height: 20px;
    letter-spacing: -0.2px;
    display: block;
    text-transform: capitalize;
}

.widget-posts-list li .widget-post-content .post-date {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 600;
    color: #6c7a87;
    display: block;
    margin-top: 10px;
}

.widget-posts-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

/* === Working Process === */
.working-process-box {
    padding: 0 30px;
}

.working-process-box .icon-box {
    background-color: #fff;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    position: relative;
    border: 5px solid rgba(0, 0, 0, 0.2);
    display: block;
    font-size: 24px;
    color: #222;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.working-process-box .icon-box svg{
    height: 24px;
}

.dl-align-left .working-process-box .icon-box {
    margin-right: auto;
}

.dl-align-center .working-process-box .icon-box {
    margin: 0 auto;
}

.dl-align-right .working-process-box .icon-box {
    margin-left: auto;
}

.working-process-box .icon-box img {
    width: 50%;
    margin: 0 auto;
}

.working-process-box .icon-box span {
    background-color: #FE5A0E;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border: 5px solid rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    position: absolute;
    top: 0;
    right: -15px;
}

.working-process-box .content-box h3 {
    color: #222;
    font-size: 22px;
    margin-top: 20px;
}

.working-process-box .content-box p {
    color: #ddd;
}

.working-process-box {
    position: relative;
}

.working-process-box .arrow {
    background-image: url(../img/arrow.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    position: absolute;
    width: 236px;
    height: 40px;
    left: 245px;
    top: 40px;
}

@media (max-width: 992px) {
    .working-process-box .arrow {
        display: none;
    }
}

/* Lightbox */

.enova #spotlight .dl-header {
    background-color: rgba(0, 0, 0, .5);
}

.enova #spotlight .icon {
    background-size: 18px 18px;
}

.enova #spotlight .dl-header div {
    opacity: 0.8;
    padding-right: 10px;
}

.enova #spotlight .dl-header .icon.player, .enova #spotlight .dl-header .icon.theme, .enova #spotlight .dl-header .icon.autofit {
    display: none;
}

.enova #spotlight .arrow {
    background-color: transparent;
    -webkit-background-size: 25px 25px;
    background-size: 25px 25px;
}

.enova #spotlight .footer {
    text-align: center;
    background-color: transparent;
}

.enova #spotlight .footer .title {
    margin-bottom: 0;
}

/* ===== Dots Animation ===== */
.anim-elements {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.anim-elements .anim-element {
    position: absolute;
}

.anim-elements .anim-element:nth-child(1) {
    background: rgba(0, 201, 157, 0.6);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 12%;
    left: 15%;
    animation: animTwo 13s infinite linear;
}

.anim-elements .anim-element:nth-child(2) {
    border: 5px solid rgba(0, 153, 229, 0.30);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 15%;
    left: 45%;
    -webkit-animation: animOne 15s infinite linear;
    animation: animOne 15s infinite linear;
}

.anim-elements .anim-element:nth-child(3) {
    border: 5px solid rgba(244, 34, 104, 0.3);
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 30%;
    -webkit-animation: animFour 15s infinite linear alternate;
    animation: animFour 15s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(4) {
    background: rgba(252, 162, 73, 0.80);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: 15%;
    right: 25%;
    -webkit-animation: animFive 15s infinite linear alternate;
    animation: animFive 15s infinite linear alternate;

}

.anim-elements .anim-element:nth-child(5) {
    background: rgba(100, 45, 250, .4);
    width: 3px;
    height: 20px;
    top: 18%;
    right: 25%;
    -webkit-animation: animFour 15s infinite linear alternate;
    animation: animFour 15s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(5):after,
.anim-elements .anim-element:nth-child(5):before {
    content: "";
    display: block;
    width: 100%;
    height: calc(50% - 2px);
    top: 6px;
    background: inherit;
    position: absolute;
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.anim-elements .anim-element:nth-child(5):before {
    right: -6px;
}

.anim-elements .anim-element:nth-child(5):after {
    left: -6px;
}

@keyframes animOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg)
    }

    20% {
        transform: translate(73px, -1px) rotate(35deg)
    }

    40% {
        transform: translate(141px, 72px) rotate(75deg)
    }

    60% {
        transform: translate(83px, 122px) rotate(110deg)
    }

    80% {
        transform: translate(-40px, 72px) rotate(145deg)
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg)
    }
}

@-webkit-keyframes animOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg)
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(35deg)
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(75deg)
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(110deg)
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(145deg)
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg)
    }
}

@keyframes animTwo {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1)
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg) scale(.9)
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg) scale(1)
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg) scale(1.2)
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg) scale(1.1)
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1)
    }
}

@-webkit-keyframes animTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1)
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(.9)
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1)
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2)
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1)
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1)
    }
}

@keyframes animThree {
    0% {
        transform: translate(165px, -179px)
    }

    100% {
        transform: translate(-346px, 617px)
    }
}

@-webkit-keyframes animThree {
    0% {
        -webkit-transform: translate(165px, -179px)
    }

    100% {
        -webkit-transform: translate(-346px, 617px)
    }
}

@keyframes animFour {
    0% {
        transform: translate(-300px, 151px) rotate(0deg)
    }

    100% {
        transform: translate(251px, -200px) rotate(180deg)
    }
}

@-webkit-keyframes animFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg)
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg)
    }
}

@keyframes animFive {
    0% {
        transform: translate(61px, -99px) rotate(0deg)
    }

    21% {
        transform: translate(4px, -190px) rotate(38deg)
    }

    41% {
        transform: translate(-139px, -200px) rotate(74deg)
    }

    60% {
        transform: translate(-263px, -164px) rotate(108deg)
    }

    80% {
        transform: translate(-195px, -49px) rotate(144deg)
    }

    100% {
        transform: translate(-1px, 0px) rotate(180deg)
    }
}

@-webkit-keyframes animFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg)
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg)
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg)
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg)
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg)
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg)
    }
}

@media (max-width: 767px) {
    .nav-outside {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .nav-outside .swiper-container {
        width: 100% !important;
    }

    .testimonial-carousel .owl-nav div.owl-prev,
    .dl-slider-controls.style-2 .dl-slider-button-prev {
        left: 0 !important;
    }

    .testimonial-carousel .owl-nav div.owl-next,
    .dl-slider-controls.style-2 .dl-slider-button-next {
        left: auto !important;
        right: 0px !important;
    }
}

@media (max-width: 520px) {
    .section-heading br {
        display: none;
    }
}


/* ===== Advanced Background ===== */
.adv-bg {
    background-color: #f5f5f5;
    width: 50%;
    height: 100%;
    position: absolute;
}

.adv-overlay-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.nb-custom-shape {
    background-color: #ff6a32;
    width: 100%;
    height: 100%;
    position: absolute;
    clip-path: polygon(var(--enova-top-left-to-right, 0%) var(--enova-top-to-bottom-left, 15%),
            var(--enova-top-right-to-left, 100%) var(--enova-top-to-bottom-right, 0%),
            var(--enova-bottom-right-to-left, 100%) var(--enova-bottom-to-top-right, 100%),
            var(--enova-bottom-left-to-right, 0%) var(--enova-bottom-to-top-left, 100%));
}

/* ===== Carousel Controls ===== */
.dl-carousel-wrap{
    --enova-slick-dots-spacing: 30px;
    --enova-slick-dots-height: 25px;
    --enova-dots-v-length: calc(var(--enova-slick-dots-spacing) + var(--enova-slick-dots-height));
}
.slick-next.nav-hidden,
.slick-prev.nav-hidden {
    display: none;
}
.slick-dots {
    
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0;
    list-style: none;
    margin-top: var(--enova-slick-dots-spacing);
}
.slick-dots li{
    cursor: pointer;
}
.slick-dots li span{
    
    width: var(--enova-slick-dots-height);
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: inherit;
    border-radius: inherit;
    background: transparent;
    opacity: 1;
}
.slick-dots li span svg{
    width: 100%;
    height: 100%;
}

.slick-dots li .path {
    stroke: #eee;
    stroke-width: 1px;
    display: none;
}
.slick-dots li .solid-fill{
    fill: #eee;
}
.slick-dots li.slick-active .path {
    stroke: #4154f1;
    display: inline-block !important;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    animation: dash ease-in 3s;
    animation-iteration-count: unset;
}
.slick-dots li.slick-active .solid-fill{
    fill: #4154f1;
}

@-webkit-keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Navigation */
.dl-carousel-nav{
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-both .dl-carousel-nav{
    top: calc(50% - (var(--enova-dots-v-length)/2));
}

.dl-carousel-nav > button{
    background-color: #fff;
    font-size: 22px;
    color: #0b2238;
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    z-index: 1;
    transform: translateX(-25px);
}
.dl-carousel-nav > button:focus{
    outline: none;
}
.dl-carousel-nav > button.slick-next{
    transform: translateX(25px);
}