/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
    --font: "Bio Sans", sans-serif;
    --body-color: #637381;
    --font-weight: 500;
    --heading-color: #212b36;
    --primary-color: #0011ff;
    --white: #ffffff;

    /* Scrollable Tags */
    --dark: #252A2E;
    --light: #F5F5F5;
    --background: var(--light);
    --text: var(--dark);
    --border: var(--dark);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: var(--dark);
        --text: var(--light);
        --border: var(--light);
    }
}

body {
    font-family: var(--font);
    font-weight: var(--font-weight);
    font-style: normal;
    color: var(--body-color);
    overflow-x: hidden;
}

/* Custom Fonts */
@font-face {
    font-family: 'Bio Sans';
    src: url('../fonts/BioSans-SemiBold.eot');
    src: url('../fonts/BioSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BioSans-SemiBold.woff2') format('woff2'),
        url('../fonts/BioSans-SemiBold.woff') format('woff'),
        url('../fonts/BioSans-SemiBold.ttf') format('truetype'),
        url('../fonts/BioSans-SemiBold.svg#BioSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Bio Sans';
    src: url('../fonts/BioSans-Regular.eot');
    src: url('../fonts/BioSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BioSans-Regular.woff2') format('woff2'),
        url('../fonts/BioSans-Regular.woff') format('woff'),
        url('../fonts/BioSans-Regular.ttf') format('truetype'),
        url('../fonts/BioSans-Regular.svg#BioSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bio Sans';
    src: url('../fonts/BioSans-Bold.eot');
    src: url('../fonts/BioSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BioSans-Bold.woff2') format('woff2'),
        url('../fonts/BioSans-Bold.woff') format('woff'),
        url('../fonts/BioSans-Bold.ttf') format('truetype'),
        url('../fonts/BioSans-Bold.svg#BioSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Bio Sans';
    src: url('../fonts/BioSans-Light.eot');
    src: url('../fonts/BioSans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BioSans-Light.woff2') format('woff2'),
        url('../fonts/BioSans-Light.woff') format('woff'),
        url('../fonts/BioSans-Light.ttf') format('truetype'),
        url('../fonts/BioSans-Light.svg#BioSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a,
button,
input,
textarea {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--heading-color);
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--body-color);
    margin: 0px;
}

.widget-visible {
    display: none;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.scroll-margin-top {
    scroll-margin-top: 100px;
}


/* --- Back to top button --- */
.progress-wrap {
    position: fixed;
    right: 2%;
    bottom: 3%;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #afafaf;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.lightScrollIcon::after {
    color: #ecedf3 !important;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    opacity: 0;
    background-image: linear-gradient(298deg, #afafaf, #00d1e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #ff4c4c;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

body.dark-mode .progress-wrap svg.progress-circle path {
    stroke: #ff4c4c;
}

body.dark-mode .progress-wrap.active-progress {
    background-color: #000;
}

body.dark-mode .progress-wrap::after {
    color: #fff;
}

/* Bottom Circular Button */
.link {
    filter: hue-rotate(200deg) brightness(2);
    width: 9.5rem;
    height: 9.5rem;
    display: inline-block;
    font: 300 2.5rem/1.4 "Bio Sans", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 100;
    position: fixed;
    right: 2%;
    bottom: 10%;
}

.link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: #0044ff;
    stroke: #0044ff;
    stroke-width: 0.05em;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.link__cloud {
    transform-origin: 50% 50%;
    -webkit-animation: rotate normal infinite 60s linear;
    animation: rotate normal infinite 60s linear;
    fill: rgba(255, 255, 255, 0);
}

.link__face,
.link__arrow {
    transform-origin: 50% 50%;
    transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}

.link:hover .link__face,
.link:hover .link__arrow {
    transform: scale(1.1);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.link__arrow {
    stroke-width: 0.075em;
}

.link__text {
    -webkit-animation: rotateReverse normal infinite 20s linear;
    animation: rotateReverse normal infinite 20s linear;
    transform-origin: 50% 50%;
}

.link:hover .link__text {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.link--alt {
    font-size: 1.15rem;
    letter-spacing: 0;
    word-spacing: 0;
}

@-webkit-keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes rotateReverse {
    to {
        transform: rotate(-360deg);
    }
}


/*===== All Button Style =====*/
.ud-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    padding: 12px 24px;
    border: 1px solid transparent;
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: var(--primary-color);
    width: fit-content;
}

.ud-pricing-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    padding: 15px 25px;
    border: 1px solid transparent;
    color: var(--heading-color);
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: var(--white);
}

.ud-main-btn:hover {
    color: var(--white);
    background: var(--heading-color);
}

@media (max-width: 767px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary-color);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    color: var(--white);
}

.back-to-top:hover {
    color: var(--white);
    background: var(--heading-color);
}


/* Tag Scrollers */
.scroller {
    position: relative;
    overflow: hidden;
    top: 2.5rem;
}

.scroller__track {
    display: flex;
    width: max-content;
    gap: var(--gap);
    padding: 0 26px;
    animation: scroll linear infinite;
    animation-duration: 60s;
    will-change: transform;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 100px;
    font-weight: 600;
    gap: 1rem;
    padding: 0 2rem;
    transition: all .3s ease-in-out;
    white-space: nowrap;
    color: #303030;
}

.item i {
    transform: rotate(-35deg);
    color: #ff6600;
}

.item:nth-of-type(even) {
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px #0011ff;
}

.item:hover {
    color: #ff6600;
}

.item:nth-of-type(even):hover,
.item:nth-of-type(even) i {
    -webkit-text-stroke: 2px #ff6600;
}

/* ===== Header CSS ===== */
.ud-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s !important;
    transition: all 0.3s ease-out 0s !important;
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
    padding: 0;
}

.navbar {
    padding: 0px 0;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-brand {
    padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-brand {
        padding: 20px 0px;
    }
}

.navbar-brand img {
    max-width: 140px;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        max-width: 300px;
        width: 100%;
        background-color: var(--white);
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 0px;
        display: none;
        border-radius: 5px;
    }

    .navbar-collapse.show {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav {
        padding: 20px 30px;
    }
}

.navbar-nav .nav-item {
    position: relative;
    padding: 0px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
        padding: 0px 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item {
        padding: 0px;
    }
}

.navbar-nav .nav-item>a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 25px 8px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item>a {
        display: block;
        padding: 8px 0;
        color: var(--heading-color);
    }
}

.navbar-nav .nav-item>a:hover,
.navbar-nav .nav-item>a.active {
    color: var(--white);
    opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {

    .navbar-nav .nav-item>a:hover,
    .navbar-nav .nav-item>a.active {
        color: var(--primary-color);
        opacity: 1;
    }
}

.navbar-nav .nav-item .ud-submenu {
    position: absolute;
    width: 250px;
    background: var(--white);
    top: 110%;
    padding: 20px 30px;
    -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
    box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item .ud-submenu {
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
        width: 100%;
        padding: 0px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
}

.navbar-nav .nav-item .ud-submenu.show {
    display: block;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
    padding: 7px 0;
    color: var(--heading-color);
    font-size: 14px;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-item:hover>a {
    color: var(--white);
    opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item:hover>a {
        color: var(--primary-color);
        opacity: 1;
    }
}

.navbar-nav .nav-item:hover>.ud-submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children>a {
    position: relative;
}

.navbar-nav .nav-item.nav-item-has-children>a::after {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    right: -15px;
    top: 50%;
    margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item.nav-item-has-children>a::after {
        right: 5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-btn {
        position: absolute;
        top: 50%;
        right: 50px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.navbar-btn {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: .25rem;
}

.navbar-btn .ud-main-btn {
    padding: 8px 16px;
    background: transparent;
}

.navbar-btn .ud-login-btn:hover {
    opacity: 0.5;
}

.navbar-btn .ud-white-btn {
    background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
    background: white;
    color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
    background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover>a {
    color: var(--primary-color);
    opacity: 1;
}

.sticky .navbar-nav .nav-item a {
    color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
    color: var(--heading-color);
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
    color: var(--primary-color);
    opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
    background: var(--primary-color);
    color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
    background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.ud-hero {
    min-height: 100vh;
    /* Ensure the hero section covers the full viewport height */
    display: flex;
    align-items: center;
    background: url(../images/pricing_bg.jpg) no-repeat center top;
    background-size: cover;
    padding-top: 30px;
    position: relative;
}

.ud-hero .speare {
    z-index: 0;
    max-width: 10%;
    position: absolute;
    opacity: .7;
    right: 7.5%;
    top: 15%;
    -webkit-animation: rotated_circle_reverse 20s infinite;
    animation: rotated_circle_reverse 20s infinite;
}

/* Rotated Circle reverse */
@-webkit-keyframes rotated_circle_reverse {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotated_circle_reverse {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.ud-hero .counter {
    position: absolute;
    left: -2%;
    bottom: 5%;
    width: 200px;
    height: 200px;
    transform: rotate(-180deg);
    opacity: .7;
}

.ud-hero .counter img {
    max-width: 100%;
}

/* d-flex justify-content-center align-items-center mt-0 text-align-center */
.ud-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    text-align: center;
}

.ud-hero-content {
    /* padding-top: 100px; */
    position: relative;
    bottom: 10%;
    /* left: 5%; */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ud-hero {
        padding-top: 160px;
    }
}

@media (max-width: 991px) {
    .ud-main {
        flex-direction: column;
        /* Align content horizontally on larger screens */
        margin-top: 20px;
    }

    .ud-hero-image {

        order: 2;
        /* Ensure the image comes after the content */
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 0px;
        bottom: 50px;
    }

    .ud-hero-image .shape-2 {
        display: none;
    }

    .ud-hero-content {
        order: 1;
        /* Ensure the content comes first */
        margin-bottom: 0px;
        justify-content: left;
        align-items: flex-start;

    }
}

@media (max-width: 767px) {
    .ud-hero {
        padding-top: 130px;
    }

    .ud-hero-content {
        padding-top: 50px;
        position: relative;
        bottom: 10%;
    }
}

.ud-hero-content {
    max-width: 780px;
    margin: auto;
}

.ud-hero-content .ud-hero-title {
    color: var(--white);
    font-weight: 700;
    font-size: 45px;
    line-height: 60px;
    text-align: left;
    white-space: nowrap;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ud-hero-content .ud-hero-title {
        font-size: 38px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .ud-hero-content .ud-hero-title {
        font-size: 26px;
        line-height: 38px;
    }
}

.ud-hero-content .ud-hero-desc {
    font-weight: normal;
    font-size: 20px;
    line-height: 35px;
    text-align: left;
    color: var(--white);
    opacity: 0.8;
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .ud-hero-content .ud-hero-desc {
        font-size: 16px;
        line-height: 30px;
    }
}

.ud-hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    /* justify-content: center; */
}

.ud-hero-buttons .ud-main-btn.ud-link-btn {
    background-color: transparent;
}

@media (max-width: 767px) {
    .ud-hero-buttons .ud-main-btn {
        margin: 5px;
    }
}

@media (max-width: 767px) {
    .ud-hero-buttons .ud-main-btn {
        padding: 12px 16px;
    }
}

.ud-hero-buttons .ud-white-btn {
    background: var(--white);
    color: var(--heading-color);
}

.ud-hero-buttons .ud-white-btn:hover {
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
    background: #fefefe;
    color: var(--primary-color);
}

.ud-hero-buttons .ud-link-btn:hover {
    color: var(--white);
    background: transparent;
    opacity: 0.5;
}

.ud-hero-brands-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.ud-hero-brands-wrapper img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.5;
    max-width: 250px;
}

.ud-hero-brands-wrapper img:hover {
    opacity: 1;
}

.ud-hero-image {
    min-height: 300px;
    /* Adjust this value as needed to maintain a consistent space */
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 845px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ud-hero-image img {
    max-width: 100%;
    text-align: center;
    height: auto;
}

.ud-hero-image .shape {
    position: absolute;
    z-index: -1;
}

.ud-hero-image .shape.shape-1 {
    bottom: 0;
    left: -30px;
}

.ud-hero-image .shape.shape-2 {
    top: 120px;
    right: -40px;
}

/* ===== Features CSS ===== */
.ud-features {
    padding-top: 30px;
    padding-bottom: 90px;
}

@media (max-width: 767px) {
    .ud-features {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

.ud-section-title {
    /* max-width: 620px; */
    margin-bottom: 70px;
}

.ud-section-title span {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ud-section-title h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 55px;
    text-transform: capitalize;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.ud-section-title p {
    font-size: 20px;
    line-height: 30px;
}

@media (max-width: 767px) {
    .ud-section-title p {
        font-size: 16px;
        line-height: 26px;
    }
}

.ud-single-feature {
    margin-bottom: 40px;
}

.ud-single-feature:hover .ud-feature-icon::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ud-single-feature .ud-feature-icon {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--primary-color);
    font-size: 32px;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.ud-single-feature .ud-feature-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 14px;
    background: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
    -webkit-transform: rotate(23deg);
    transform: rotate(23deg);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.ud-single-feature .ud-feature-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ud-single-feature .ud-feature-title {
        font-size: 18px;
        line-height: 26px;
    }
}

.ud-single-feature .ud-feature-desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
}

.ud-single-feature .ud-feature-link {
    font-weight: 500;
    color: var(--body-color);
}

.ud-single-feature .ud-feature-link:hover {
    color: var(--primary-color);
}

/* ===== About CSS ===== */

/* .ad-image{
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
} */

.ud-about {
    background: #f3f4fe;
    padding: 120px 0;
    margin: 0;
}

@media (min-width: 992px) {

    /* .nav-link {
        display: inline-block;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        font-weight: 700;
        font-size: 16px;
        border-radius: 5px;
        padding: 15px 25px;
        border: 1px solid transparent;
        color: var(--white);
        cursor: pointer;
        z-index: 5;
        -webkit-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s;
        background-color: var(--white);
        color: black !important;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: left;
    } */
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        white-space: wrap;
        font-weight: 700;
        font-size: 18px;
        border-radius: 5px;
        padding: 15px 25px;
        /* border: 1px solid #e0e0e0; */
        border: 1px solid transparent;
        color: black !important;
        cursor: pointer;
        z-index: 5;
        transition: all 0.4s ease-out 0s;
        background-color: var(--white);
        margin-top: 12px;
        margin-bottom: 12px;
    }

    #nativeAdsNav-first {
        margin-top: 0px;
    }

    #nativeAdsNav-last {
        margin-bottom: 0px;
    }

    /* .arrow-icon {
        text-align: center;
        font-size: 30px;
        line-height: 1;
        font-weight: 1200;
    } */

    .nav-link:hover,
    .nav-link.active {
        background: #0011ff;
        color: white !important;
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .arrow-icon.white {
        display: none !important;
    }

    .nav-link:hover .arrow-icon.black,
    .nav-link.active .arrow-icon.black {
        display: none !important;
    }

    .nav-link:hover .arrow-icon.white,
    .nav-link.active .arrow-icon.white {
        display: inline-block !important;
    }

    /* .icon-span{
    
    } */

    .carousel-indicators {
        bottom: -20px;
    }

    .carousel-indicators button {
        background: #637381;
    }

    .carousel-indicators button.active {
        background-color: #007bff;
    }

    /* .carousel-indicators {
        bottom: -30px; 
    }
    
    .carousel-indicators [data-bs-target] {
        box-sizing: border-box !important;
        width: 15px !important;
        height: 15px !important;
        margin: 0 5px !important;
        background-color: transparent !important;
        border: 2px solid #637381 !important;
        border-radius: 50% !important;
        opacity: 1 !important;
    }
    
    .carousel-indicators .active {
        background-color: #007bff !important;
        border-color: #007bff !important;
    } */
    /* 
    .carousel-indicators {
        bottom: -30px;
    }
    
    .carousel-indicators [data-bs-target] {
        box-sizing: border-box !important;
        width: 15px !important;
        height: 15px !important;
        margin: 0 5px !important;
        background-color: transparent !important;
        border: 2px solid #637381 !important;
        border-radius: 50% !important;
        opacity: 1 !important;
        position: relative; 
    }
    
    .carousel-indicators .active {
        background-color: #007bff !important;
        border-color: #007bff !important;
        position: relative;
    }
    
    .carousel-indicators .active::before,
    .carousel-indicators .active::after {
        content: "";
        position: absolute;
        top: -4px;
        left: -4px;
        width: 23px;
        height: 23px;
        border-radius: 50%;
        border: 2px solid transparent;
    }
    
    .carousel-indicators .active::before {
        border-color: white;
    }
    
    .carousel-indicators .active::after {
        top: -4px;
        left: -4px;
        width: 20px;
        height: 20px;
        border-color: #007bff;
    }
     */


    /* .top-right-indicators {
        position: absolute;
        top: 10px; 
        right: 10px; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .top-right-indicators button {
        margin-left: 5px; 
    } */

    .carousel-indicators-top-right {
        position: absolute;
        top: 30px;
        right: 10px;
        z-index: 15;
        display: flex;
        gap: 10px;
        align-items: center;
        /* Align items to the center vertically */
        height: 10px;
        /* Set a fixed height for the container */
    }

    .indicator-square {
        width: 33px;
        height: 4px;
        border-radius: 5px;
        background-color: #eff1f5;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .indicator-square.active {
        width: 33px;
        height: 13px;
        border-radius: 3px;
        background-color: #4169e1;
        margin-left: 15px;
    }

    .slider-learn-more-btn {
        background: var(--white);
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 10px 50px;
        border-radius: 5px;
        font-weight: 500;
        font-size: 16px;
        margin-top: 20px;
    }

    /* .slider-content-part{
        position: relative;
        bottom: 50px;
    } */
    /* .slider-buttons{
    background-color: var(--white);
    color: black;
  } */
}

/* @media (max-width: 991px) {
    #nativeAdsSlider {
        display: none;
    }
} */

@media (max-width: 991px) {
    #nativeAdsSlider {
        display: none;
    }

    #nativeAdsNav {
        display: none;
    }

    .phone-view {
        /* height: 100dvh; */
        /* display: block; */
        display: block !important;
        align-items: center;
        justify-content: center;
        padding: 0px;
    }
}

/* //for mobile  */

/* @media (max-width: 991px) {
  .accordion-button {
    background-color: #343a40;
    color: white;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #007bff;
    color: white;
  }

  .accordion-button:focus {
    box-shadow: none;
  }

  .accordion-body {
    background-color: #212529;
    color: #f8f9fa;
  }
} */
/* max-width: 991px */
/* max-width: 1400px */

@media (max-width: 991px) {


    .accordion {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* max-width: 500px; */
    }

    .accordion .accordion-item {
        background-color: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        margin-top: 3px;
        margin-bottom: 3px;
    }

    .accordion .accordion-item .accordion-item-description-wrapper hr {
        border: none;
        border-top: 1px solid var(--border-color);
        visibility: visible;
    }

    .accordion .accordion-item.open .accordion-item-description-wrapper hr {
        visibility: visible;
    }

    .accordion .accordion-item .accordion-item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        cursor: pointer;
    }

    .accordion-learn-more-btn {
        background: var(--white);
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 500;
        font-size: 16px;
        /* margin-top: 20px; */
        margin: 10px;
        margin-bottom: 10px;
    }

    .accordion .accordion-item .accordion-item-header .accordion-item-header-title {
        font-weight: 600;
    }

    .accordion .accordion-item .accordion-item-header .accordion-item-header-icon {
        transition: all 0.2s ease;
    }

    .accordion .accordion-item.open .accordion-item-header .accordion-item-header-icon {
        transform: rotate(-180deg);
    }

    .accordion .accordion-item .accordion-item-description-wrapper {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: all 0.2s ease;
    }

    .accordion .accordion-item.open .accordion-item-description-wrapper {
        grid-template-rows: 1fr;
    }

    .accordion .accordion-item .accordion-item-description-wrapper .accordion-item-description {
        min-height: 0;
    }

    .accordion .accordion-item .accordion-item-description-wrapper .accordion-item-description p {
        /* padding: 10px;
  line-height: 1.5; */
    }

    .ads-section {
        /* position: relative;
  bottom: 30px; */
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .ads-para {
        /* position: relative;
  bottom: 30px;  */
        /* padding-bottom: 10px !important;
 padding-top: 10px !important; */
        padding: 10px !important;
    }

    .first-content {
        /* box-sizing: border-box; */
        display: flex;
        /* justify-content: center; */
        flex-direction: column;
        padding: 10px;
        margin: 10px;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .ud-about {
        padding: 80px 0;
    }
}

.ud-about-wrapper {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .ud-about-wrapper {
        display: block;
    }
}

.ud-about-content-wrapper {
    padding: 70px;
}

@media (max-width: 767px) {
    .ud-about-content-wrapper {
        padding: 50px 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .ud-about-content-wrapper {
        padding: 50px;
    }
}

.ud-about-content {
    max-width: 500px;
}

/* .ud-about-content .tag {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    background: var(--primary-color);
    padding: 5px 20px;
    display: inline-block;
    margin-bottom: 20px;
} */

.tag {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    background: var(--primary-color);
    padding: 5px 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.ud-about-content h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .ud-about-content h2 {
        font-size: 26px;
        line-height: 38px;
    }
}

.ud-about-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 40px;
}

.ud-about-content .ud-main-btn:hover {
    background: #2748b4;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .ud-about-image {
        text-align: center;
    }
}

/* ===== Pricing CSS ===== */
.ud-pricing {
    padding-bottom: 90px;
}

@media (max-width: 767px) {
    .ud-pricing {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .ud-pricing-body p {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .ud-pricing-body p {
        margin-top: 15px !important;
        margin-bottom: 10px;
    }
}

.ud-single-pricing {
    margin-bottom: 40px;
    background: var(--white);
    border: 2px solid #d4deff;
    border-radius: 8px;
    text-align: center;
    padding: 45px 30px;
    position: relative;
}

.ud-single-pricing.active {
    background: url(../images/back-bg-3.jpg) no-repeat center center;
    background-size: cover;
    border: none;
    padding: 55px 30px;
}

.ud-single-pricing.active .ud-pricing-header h3,
.ud-pricing-header h1,
.ud-single-pricing.active .ud-pricing-header h4 {
    color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li {
    color: var(--white);
}

.ud-single-pricing.first-item::after,
.ud-single-pricing.last-item::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    z-index: 1;
}

.ud-single-pricing.first-item::after {
    background: var(--primary-color);
    left: -2px;
    bottom: -2px;
    border-radius: 0px 55px 0px 8px;
}

.ud-single-pricing.last-item::after {
    background: #13c296;
    top: -2px;
    right: -2px;
    border-radius: 0px 8px 0px 55px;
}

.ud-single-pricing .ud-popular-tag {
    display: inline-block;
    padding: 10px 25px;
    background: var(--white);
    border-radius: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.ud-single-pricing .ud-pricing-header h3 {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
}

.ud-single-pricing .ud-pricing-header h4 {
    font-weight: 600;
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body {
    margin-bottom: 40px;
}

.pricing-shape {
    display: block;
    position: relative;
    z-index: 1;
    left: 20px;
    bottom: 0;
    top: 125px;
}

@media (max-width: 991px) {
    .pricing-shape {
        display: none !important;
    }
}

.ud-single-pricing .ud-pricing-body p {
    color: var(--white);
    text-wrap: wrap;
    text-align: center;
    margin-top: 5px;
}

.ud-single-pricing .ud-pricing-body li {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 18px;
}

.ud-single-pricing .ud-main-btn {
    /* border-radius: 30px; */
    padding: 15px 40px;
}

.ud-single-pricing .ud-main-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.ud-single-pricing .ud-border-btn {
    border: 1px solid #d4deff;
    color: var(--primary-color);
    background: var(--white);
}

.ud-single-pricing .ud-border-btn:hover {
    color: var(--white);
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.ud-single-pricing .ud-white-btn {
    background: var(--white);
    color: var(--heading-color);
}

.ud-single-pricing .ud-white-btn:hover {
    color: var(--white);
    background: var(--heading-color);
}

/* ===== FAQ CSS ===== */
.ud-faq {
    padding-top: 120px;
    padding-bottom: 90px;
    background: #f3f4fe url(../images/register-back-gradient-bg.png) no-repeat right top;
    background-size: contain;
    position: relative;
    z-index: 1;
}

.ud-faq::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: left bottom;
    bottom: 0;
    left: 0;
    background: url(../images/rounded-lines.png) no-repeat left bottom;
    background-size: 25% auto;
    opacity: .25;
    animation: grow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes grow {
    0% {
        background-size: 20% auto;
    }

    50% {
        background-size: 24% auto;
    }

    100% {
        background-size: 20% auto;
    }
}

@media (max-width: 767px) {
    .ud-faq {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

.ud-faq .shape {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.ud-single-faq {
    background: var(--white);
    border: 1px solid #f3f4fe;
    -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
    box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
    border-radius: 10px;
    margin-bottom: 30px;
}

.ud-single-faq .ud-faq-btn {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 18px;
    color: var(--heading-color);
    opacity: 0.88;
    padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
    .ud-single-faq .ud-faq-btn {
        padding: 15px;
    }
}

.ud-single-faq .ud-faq-btn.collapsed span.icon i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.ud-single-faq .ud-faq-btn span.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(48, 86, 211, 0.06);
    border-radius: 10px;
    color: var(--primary-color);
    margin-right: 24px;
}

.ud-single-faq .ud-faq-btn span.icon i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 700;
}

.ud-single-faq .ud-faq-body {
    padding: 0px 30px 40px 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
    .ud-single-faq .ud-faq-body {
        padding: 0px 16px 20px 16px;
    }
}

/* ===== Testimonials CSS ===== */
.ud-testimonials {
    padding-top: 120px;
    position: relative;
}

.ud-testimonials::after {
    content: "";
    position: absolute;
    width: 124px;
    height: 124px;
    top: 40%;
    left: 5%;
    background: url(../images/dawn.png) no-repeat center center;
    background-size: contain;
    animation: swing 12s ease-in-out infinite;
    transform-origin: center center;
    z-index: -1;
    opacity: .3;
}

@keyframes swing {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(-10deg) translateY(-90%);
    }

    100% {
        transform: rotate(0deg) translateY(0);
    }
}

.ud-testimonials::before {
    content: "";
    position: absolute;
    width: 149px;
    height: 140px;
    top: 12.5%;
    left: 52%;
    background: url(../images/star.png) no-repeat center center;
    background-size: contain;
    animation: grow 8s ease-in-out infinite;
    transform-origin: center center;
    z-index: -1;
    opacity: .1;
}

@keyframes grow {
    0% {
        transform: scale(.75);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.75);
    }
}

@media (max-width: 767px) {
    .ud-testimonials {
        padding-top: 80px;
    }
}

.ud-single-testimonial {
    padding: 30px;
    -webkit-box-shadow: 0px 60px 120px -20px #ebeffd;
    box-shadow: 0px 60px 120px -20px #ebeffd;
    background: var(--white);
    margin-bottom: 50px;
}

.ud-single-testimonial .ud-testimonial-ratings {
    margin-bottom: 10px;
}

.ud-single-testimonial .ud-testimonial-ratings i {
    color: #fbb040;
}

.ud-single-testimonial .ud-testimonial-content {
    margin-bottom: 25px;
}

.ud-single-testimonial .ud-testimonial-content p {
    font-size: 16px;
    line-height: 30px;
    color: #637381;
}

.ud-single-testimonial .ud-testimonial-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
    font-weight: 600;
    font-size: 14px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
    font-size: 12px;
    color: #969696;
}

.ud-brands .ud-title {
    margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
    font-weight: normal;
    font-size: 12px;
    color: var(--body-color);
    display: inline-block;
    position: relative;
}

.ud-brands .ud-title h6::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: #afb2b5;
    right: -40px;
    top: 50%;
}

.ud-brands .ud-brands-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -40px;
}

.ud-brands .ud-brands-logo .ud-single-logo {
    margin-right: 40px;
    margin-bottom: 20px;
    max-width: 140px;
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
    -webkit-filter: none;
    filter: none;
}

.ud-brands .ud-brands-logo .ud-single-logo img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.ud-team {
    padding-top: 120px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .ud-team {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

.ud-single-team {
    margin-bottom: 40px;
}

.ud-single-team .ud-team-image-wrapper {
    width: 170px;
    height: 170px;
    position: relative;
    margin: 0px auto 25px;
}

.ud-single-team .ud-team-image {
    border-radius: 50%;
}

.ud-single-team .ud-team-image img {
    width: 100%;
    border-radius: 50%;
}

.ud-single-team .shape {
    position: absolute;
    z-index: -1;
}

.ud-single-team .shape.shape-1 {
    top: 0;
    left: 0;
}

.ud-single-team .shape.shape-2 {
    bottom: 0;
    right: 0;
}

.ud-single-team .ud-team-info {
    text-align: center;
    margin-bottom: 20px;
}

.ud-single-team .ud-team-info h5 {
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.ud-single-team .ud-team-info h6 {
    font-weight: 500;
    font-size: 12px;
    color: var(--body-color);
}

.ud-single-team .ud-team-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ud-single-team .ud-team-socials a {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0px 10px;
    color: #cdced6;
}

.ud-single-team .ud-team-socials a:hover {
    color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.ud-contact {
    padding: 120px 0px;
    position: relative;
}

@media (max-width: 767px) {
    .ud-contact {
        padding: 80px 0;
    }
}

.ud-contact::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: url(../images/contact-bg.png) no-repeat center center;
    background-size: cover;
    filter: hue-rotate(300deg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ud-contact::after {
        height: 45%;
    }
}

.ud-contact-title {
    margin-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .ud-contact-title {
        margin-bottom: 50px;
    }
}

.ud-contact-title span {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
}

.ud-contact-title h2 {
    font-weight: 600;
    font-size: 35px;
    line-height: 41px;
}

.ud-contact-info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .ud-contact-info-wrapper {
        margin-bottom: 50px;
    }
}

.ud-contact-info-wrapper .ud-single-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    width: 330px;
    margin-bottom: 30px;
}

.ud-contact-info-wrapper .ud-info-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 24px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.ud-contact-info-wrapper .ud-info-meta p {
    font-size: 15px;
    line-height: 24px;
}

.ud-contact-form-wrapper {
    -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background: var(--white);
    padding: 60px;
}

@media (max-width: 767px) {
    .ud-contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .ud-contact-form-wrapper {
        padding: 50px 40px;
    }
}

.ud-contact-form-wrapper .ud-contact-form-title {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .ud-contact-form-wrapper .ud-contact-form-title {
        font-size: 24px;
    }
}

.ud-contact-form-wrapper .ud-form-group {
    margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
    display: block;
    font-weight: normal;
    font-size: 12px;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
    display: block;
    width: 100%;
    padding: 15px 0;
    border: none;
    outline: none;
    border-bottom: 1px solid #f1f1f1;
    resize: none;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
    border-color: var(--primary-color);
}

/* ===== Footer CSS ===== */
.ud-footer {
    background: #000 url(../images/footer-bg.png) no-repeat center center;
    background-size: cover;
    padding-top: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ud-footer .shape {
    position: absolute;
    z-index: -1;
}

.ud-footer .shape.shape-1 {
    top: 0;
    left: 0;
}

.ud-footer .shape.shape-2 {
    top: 0;
    right: 0;
}

.ud-footer .shape.shape-3 {
    bottom: 0;
    right: 0;
}

.ud-widget {
    margin-bottom: 50px;
}

.ud-widget .ud-footer-logo {
    max-width: 160px;
    display: block;
    margin-bottom: 10px;
}

.ud-widget .ud-footer-logo img {
    width: 100%;
}

.ud-widget .ud-widget-desc {
    font-size: 15px;
    line-height: 24px;
    color: #f3f4fe;
    margin-bottom: 30px;
    max-width: 260px;
}

.ud-widget .ud-widget-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ud-widget .ud-widget-socials a {
    font-size: 16px;
    color: #dddddd;
    margin-right: 20px;
}

.ud-widget .ud-widget-socials a:hover {
    color: var(--primary-color);
}

.ud-widget .ud-widget-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--white);
}

.ud-widget .ud-widget-links a {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 30px;
    color: #f3f4fe;
}

.ud-widget .ud-widget-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.ud-widget .ud-widget-brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ud-widget .ud-widget-brands a {
    display: block;
    max-width: 120px;
    margin-bottom: 20px;
    margin-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ud-widget .ud-widget-brands a {
        max-width: 100px;
    }
}

.ud-footer-bottom {
    padding: 35px 0;
    border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .ud-footer-bottom .ud-footer-bottom-left {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.ud-footer-bottom .ud-footer-bottom-left a {
    font-weight: normal;
    font-size: 15px;
    color: #f3f4fe;
    margin-right: 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .ud-footer-bottom .ud-footer-bottom-left a {
        margin: 0px 8px 8px;
    }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
    color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right {
    text-align: right;
    font-weight: normal;
    font-size: 15px;
    color: #f3f4fe;
}

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

.ud-footer-bottom .ud-footer-bottom-right a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .ud-footer-bottom .ud-footer-bottom-right {
        text-align: center;
        margin-top: 10px;
    }
}

/* ====== Banner CSS ======= */
.ud-page-banner {
    padding-top: 130px;
    padding-bottom: 80px;
    background: var(--primary-color);
    background-image: url(../images/pricing_bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.ud-banner-content {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.ud-banner-content h1 {
    color: var(--white);
    font-size: 38px;
    font-weight: 600;
}

/* ====== Login CSS ====== */
.ud-login {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ud-login-wrapper {
    max-width: 500px;
    margin: auto;
    background: var(--white);
    text-align: center;
    padding: 60px;
    -webkit-box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}

.ud-login-wrapper .ud-login-logo {
    margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
    margin-bottom: 25px;
}

.ud-login-form .ud-form-group input {
    width: 100%;
    border: 2px solid #dddddd;
    border-radius: 4px;
    padding: 12px 24px;
    background: #fcfdfe;
    color: var(--body-color);
}

.ud-login-form .ud-form-group input:focus {
    border-color: var(--primary-color);
}

.ud-socials-connect {
    padding-top: 10px;
    padding-bottom: 30px;
}

.ud-socials-connect p {
    font-size: 16px;
    color: var(--body-color);
    margin-bottom: 10px;
}

.ud-socials-connect ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
}

.ud-socials-connect ul li {
    width: 100%;
}

.ud-socials-connect ul li a {
    height: 45px;
    background: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px;
    border-radius: 6px;
    color: var(--white);
    font-size: 20px;
}

.ud-socials-connect ul li a.facebook {
    background: #4064ac;
}

.ud-socials-connect ul li a.facebook:hover {
    background: #315294;
}

.ud-socials-connect ul li a.twitter {
    background: #1c9cea;
}

.ud-socials-connect ul li a.twitter:hover {
    background: #0f8bd8;
}

.ud-socials-connect ul li a.google {
    background: #d64937;
}

.ud-socials-connect ul li a.google:hover {
    background: #c53b29;
}

.forget-pass {
    font-size: 16px;
    color: var(--body-color);
    margin-bottom: 8px;
}

.signup-option {
    color: var(--body-color);
    font-size: 16px;
}

.signup-option a {
    color: var(--primary-color);
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
    padding-top: 120px;
    padding-bottom: 80px;
}

.ud-blog-grids.ud-related-articles {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .ud-blog-grids {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

.ud-single-blog {
    margin-bottom: 40px;
}

.ud-single-blog:hover .ud-blog-image img {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
}

.ud-single-blog .ud-blog-image {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.ud-single-blog .ud-blog-image a {
    display: block;
}

.ud-single-blog .ud-blog-image img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.ud-single-blog .ud-blog-date {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    margin-bottom: 20px;
}

.ud-single-blog .ud-blog-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ud-single-blog .ud-blog-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.ud-single-blog .ud-blog-title a {
    color: inherit;
}

.ud-single-blog .ud-blog-title a:hover {
    color: var(--primary-color);
}

.ud-single-blog .ud-blog-desc {
    font-size: 16px;
    line-height: 28px;
}

.ud-related-articles-title {
    font-weight: 800;
    font-size: 28px;
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 50px;
}

.ud-related-articles-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
}

/* ====== Blog Details CSS ====== */
.ud-blog-details {
    padding-top: 120px;
}

@media (max-width: 767px) {
    .ud-blog-details {
        padding-top: 80px;
    }
}

.ud-blog-details-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 500px;
}

@media (max-width: 767px) {
    .ud-blog-details-image {
        height: 300px;
    }
}

.ud-blog-details-image>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.ud-blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(46.88%, rgba(48, 86, 211, 0)),
            color-stop(93.23%, rgba(13, 21, 49, 0.72)));
    background: linear-gradient(180deg,
            rgba(48, 86, 211, 0) 46.88%,
            rgba(13, 21, 49, 0.72) 93.23%);
    border-radius: 5px;
    padding: 30px;
}

.ud-blog-overlay-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .ud-blog-overlay-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.ud-blog-overlay-content .ud-blog-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 40px;
}

@media (max-width: 767px) {
    .ud-blog-overlay-content .ud-blog-author {
        margin-right: 0px;
        margin-bottom: 20px;
    }
}

.ud-blog-overlay-content .ud-blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.ud-blog-overlay-content .ud-blog-author span {
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #ffffff;
}

.ud-blog-overlay-content .ud-blog-author a {
    color: inherit;
}

.ud-blog-overlay-content .ud-blog-author a:hover {
    color: var(--primary-color);
}

.ud-blog-overlay-content .ud-blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ud-blog-overlay-content .ud-blog-meta p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #ffffff;
    margin-right: 30px;
}

.ud-blog-overlay-content .ud-blog-meta p:last-child {
    margin-right: 0px;
}

.ud-blog-overlay-content .ud-blog-meta p i {
    font-size: 16px;
    margin-right: 10px;
}

.ud-blog-details-content {
    padding-top: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1920px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ud-blog-details-content {
        padding-right: 50px;
    }
}

.ud-blog-details-title {
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .ud-blog-details-title {
        font-size: 26px;
        line-height: 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .ud-blog-details-title {
        font-size: 30px;
        line-height: 40px;
    }
}

.ud-blog-details-para {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}

.ud-blog-details-subtitle {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .ud-blog-details-subtitle {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

.ud-blog-quote {
    background-image: url("../images/blog/quote-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .ud-blog-quote {
        padding: 30px;
    }
}

.ud-blog-quote i {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .ud-blog-quote i {
        margin-bottom: 15px;
    }
}

.ud-blog-quote p {
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .ud-blog-quote p {
        font-size: 14px;
        line-height: 24px;
    }
}

.ud-blog-quote h6 {
    color: var(--body-color);
    font-style: italic;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.ud-blog-details-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .ud-blog-details-action {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.ud-blog-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .ud-blog-tags {
        margin-bottom: 20px;
    }
}

.ud-blog-tags li {
    margin-right: 14px;
}

.ud-blog-tags li:last-child {
    margin-right: 0px;
}

.ud-blog-tags a {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(48, 86, 211, 0.06);
    border-radius: 3px;
}

.ud-blog-tags a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.ud-blog-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ud-blog-share h6 {
    font-weight: 500;
    font-size: 12px;
    color: var(--body-color);
    margin-right: 20px;
}

.ud-blog-share-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ud-blog-share-links li {
    margin-right: 14px;
}

.ud-blog-share-links li:last-child {
    margin-right: 0px;
}

.ud-blog-share-links a {
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.ud-blog-share-links a.facebook {
    background: #4064ac;
}

.ud-blog-share-links a.facebook:hover {
    background: #315294;
}

.ud-blog-share-links a.twitter {
    background: #1c9cea;
}

.ud-blog-share-links a.twitter:hover {
    background: #0f8bd8;
}

.ud-blog-share-links a.linkedin {
    background: #007ab9;
}

.ud-blog-share-links a.linkedin:hover {
    background: #03689b;
}

.ud-blog-sidebar {
    padding-top: 60px;
}

.ud-newsletter-box {
    background: var(--primary-color);
    padding: 60px 45px;
    position: relative;
    z-index: 1;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
    .ud-newsletter-box {
        padding: 50px 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .ud-newsletter-box {
        padding: 60px 45px;
    }
}

.ud-newsletter-box .shape {
    position: absolute;
    z-index: -1;
}

.ud-newsletter-box .shape.shape-1 {
    top: 0;
    right: 0;
}

.ud-newsletter-box .shape.shape-2 {
    left: 0;
    bottom: 0;
}

.ud-newsletter-box .ud-newsletter-title {
    font-weight: 600;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ud-newsletter-box .ud-newsletter-title {
        font-size: 23px;
    }
}

.ud-newsletter-box p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form {
    margin-top: 30px;
}

.ud-newsletter-box .ud-newsletter-form input {
    width: 100%;
    -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
    box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid transparent;
    padding: 12px 20px;
}

.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {
    color: var(--white);
    opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {
    color: var(--white);
    opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::-ms-input-placeholder {
    color: var(--white);
    opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
    color: var(--white);
    opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:focus {
    border-color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
    background: #13c296;
    -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
    box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
    border-radius: 5px;
    width: 100%;
    margin-bottom: 24px;
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
    background: var(--heading-color);
}

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

.ud-articles-box {
    margin-bottom: 50px;
}

.ud-articles-box .ud-articles-box-title {
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 20px;
}

.ud-articles-box .ud-articles-box-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
}

.ud-articles-box .ud-articles-list li {
    padding: 20px 0;
    border-bottom: 1px solid #f2f3f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ud-articles-box .ud-articles-list li:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    width: 100%;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
    .ud-articles-box .ud-articles-list .ud-article-image {
        max-width: 65px;
        height: 65px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .ud-articles-box .ud-articles-list .ud-article-image {
        max-width: 80px;
        height: 80px;
    }
}

.ud-articles-box .ud-articles-list .ud-article-image img {
    width: 100%;
}

.ud-articles-box .ud-articles-list .ud-article-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ud-articles-box .ud-articles-list .ud-article-title {
        font-size: 16px;
    }
}

.ud-articles-box .ud-articles-list .ud-article-title a {
    color: inherit;
}

.ud-articles-box .ud-articles-list .ud-article-title a:hover {
    color: var(--primary-color);
}

.ud-articles-box .ud-articles-list .ud-article-author {
    font-size: 14px;
}

.ud-banner-ad {
    border-radius: 5px;
    overflow: hidden;
}

.ud-banner-ad a {
    display: block;
}

.ud-banner-ad img {
    width: 100%;
}

/* ====== Error 404 CSS ======= */
.ud-404 {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .ud-404 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.ud-404-wrapper {
    text-align: center;
    max-width: 850px;
    margin: 0px auto;
    background: var(--white);
    padding: 100px 60px;
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 767px) {
    .ud-404-wrapper {
        padding: 50px 30px;
    }
}

.ud-404-wrapper .shape {
    position: absolute;
    z-index: -1;
}

.ud-404-wrapper .shape.shape-1 {
    top: 0;
    left: 0;
}

.ud-404-wrapper .shape.shape-2 {
    right: 0;
    bottom: 0;
}

.ud-404-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ud-404-title {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .ud-404-title {
        font-size: 30px;
    }
}

.ud-404-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ud-404-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .ud-404-subtitle {
        font-size: 18px;
    }
}

.ud-404-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ud-404-links a {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    color: var(--heading-color);
    background: rgba(48, 86, 211, 0.06);
    border-radius: 5px;
    margin: 5px 10px;
}

.ud-404-links a:hover {
    background: var(--heading-color);
    color: var(--white);
}

@media (max-width: 767px) {
    .ud-404-links a {
        margin: 5px 10px;
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* -------------------------------- 

sign in/sign up popup

-------------------------------- */

.navbar-nav.is-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.cd-user-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 54, 66, 0.9);
    z-index: 99;
    overflow-y: auto;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
    -moz-transition: opacity 0.3s 0, visibility 0 0.3s;
    transition: opacity 0.3s 0, visibility 0 0.3s;
}

.cd-user-modal.is-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s 0, visibility 0 0;
    -moz-transition: opacity 0.3s 0, visibility 0 0;
    transition: opacity 0.3s 0, visibility 0 0;
}

.cd-user-modal.is-visible .cd-user-modal-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.cd-user-modal-container {
    position: relative;
    width: 90%;
    max-width: 520px;
    background: #FFF;
    margin: 6em auto 4em;
    cursor: auto;
    border-radius: .5em;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cd-user-modal-container .cd-switcher::after {
    clear: both;
    content: "";
    display: table;
}

.cd-user-modal-container .cd-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cd-user-modal-container .cd-switcher li {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-align: center;
}

.cd-user-modal-container .cd-switcher li:first-child a {
    border-radius: 0.25em 0 0 0;
}

.cd-user-modal-container .cd-switcher li:last-child a {
    border-radius: 0 0.25em 0 0;
}

.cd-user-modal-container .cd-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #f0f0f0;
    color: #809191;
}

.cd-user-modal-container .cd-switcher a.selected {
    background: #FFF;
    color: #505260;
}

@media only screen and (min-width: 600px) {
    .cd-user-modal-container {
        margin: 6em auto;
    }

    .cd-user-modal-container .cd-switcher a {
        height: 70px;
        line-height: 70px;
    }
}

.cd-form {
    padding: 1.4em;
}

.cd-form .fieldset {
    position: relative;
    margin: 1.4em 0;
    width: 100%;
    display: flex;
}

.cd-form .fieldset a.forgot {
    margin-left: auto;
    text-align: right;
}

.cd-form .fieldset:first-child {
    margin-top: 0;
}

.cd-form .fieldset:last-child {
    margin-bottom: 0;
}

.cd-form label {
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: .35rem;
}

.cd-form label.image-replace {
    /* replace text with an icon */
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
    text-shadow: none;
    background-repeat: no-repeat;
    background-position: 50% 0;
}

.cd-form label.cd-username {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-username.svg");
}

.cd-form label.cd-email {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-email.svg");
}

.cd-form label.cd-password {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-password.svg");
}

.cd-form input {
    margin: 0;
    padding: 0;
    border-radius: 0.25em;
}

.cd-form input.full-width {
    width: 100%;
}

.cd-form input.has-padding {
    padding: 12px 20px 12px 50px;
}

.cd-form input.has-border {
    border: 1px solid #d2d8d8;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.cd-form input.has-border:focus {
    border-color: #343642;
    box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
    outline: none;
}

.cd-form input.has-error {
    border: 1px solid #d76666;
}

.cd-form input[type=password] {
    /* space left for the HIDE button */
    padding-right: 65px;
}

.cd-form input[type=submit] {
    padding: 16px 0;
    cursor: pointer;
    background: #0011ff;
    color: #FFF;
    font-weight: bold;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.no-touch .cd-form input[type=submit]:hover,
.no-touch .cd-form input[type=submit]:focus {
    background: #0011ff;
    outline: none;
}

.cd-form .hide-password {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 15px;
    border-left: 1px solid #d2d8d8;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    font-size: 0.875rem;
    color: #343642;
}

.cd-form .cd-error-message {
    display: inline-block;
    position: absolute;
    left: -5px;
    bottom: -35px;
    background: rgba(215, 102, 102, 0.9);
    padding: 0.8em;
    z-index: 2;
    color: #FFF;
    font-size: 13px;
    font-size: 0.8125rem;
    border-radius: 0.25em;
    /* prevent click and touch events */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
    -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
    transition: opacity 0.2s 0, visibility 0 0.2s;
}

.cd-form .cd-error-message::after {
    /* triangle */
    content: "";
    position: absolute;
    left: 22px;
    bottom: 100%;
    height: 0;
    width: 0;
    border-bottom: 8px solid rgba(215, 102, 102, 0.9);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.cd-form .cd-error-message.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.2s 0, visibility 0 0;
    -moz-transition: opacity 0.2s 0, visibility 0 0;
    transition: opacity 0.2s 0, visibility 0 0;
}

@media only screen and (min-width: 600px) {
    .cd-form {
        padding: 2em;
    }

    .cd-form .fieldset {
        margin: 2em 0;
    }

    .cd-form .fieldset:first-child {
        margin-top: 0;
    }

    .cd-form .fieldset:last-child {
        margin-bottom: 0;
    }

    .cd-form input.has-padding {
        padding: 16px 20px 16px 50px;
    }

    .cd-form input[type=submit] {
        padding: 16px 0;
    }
}

.cd-form-message {
    padding: 1.4em 1.4em 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .cd-form-message {
        padding: 2em 2em 0;
    }
}

.cd-form-bottom-message {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30px;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
}

.cd-form-bottom-message a {
    color: #FFF;
    text-decoration: underline;
}

.cd-close-form {
    /* form X button on top right */
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: -40px;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-close.svg") no-repeat center center;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

#cd-login,
#cd-signup,
#cd-reset-password {
    display: none;
}

#cd-login.is-selected,
#cd-signup.is-selected,
#cd-reset-password.is-selected {
    display: block;
}

.contactRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contactRow>* {
    width: fit-content !important;
    margin: 0 !important;
}

.contactRow .emailGrp {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
}

/*# sourceMappingURL=ud-styles.css.map */