:root {
    --font-default: 'Roboto', sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --fontawesome: "Font Awesome 5 Pro";

    /* 深色调 */
    --black: #1a1a1a; /* 深黑色 */
    --dark: #121212; /* 深灰黑色 */
    --dark-secondary: #1f1f1f; /* 深灰 */
    --white: #ffffff; /* 纯白 */
    --bg-main: #121212; /* 背景使用深黑色 */

    --dark-light: #232323; /* 浅灰 */

    /* 金色调 */
    --color-primary: #d4af37; /* 金色 */
    --color-secondary: #b88a3e; /* 暗金色 */
    --color-heading: #f1c40f; /* 明亮的金色 */
    --color-paragraph: #b0b0b0; /* 浅灰色，适合段落 */

    /* 阴影 */
    --box-shadow-primary: 1px 4px 20px -2px rgba(0, 0, 0, 0.3); /* 深色阴影 */
    --box-shadow-secondary: 0 20px 50px rgba(0, 0, 0, 0.4); /* 更强的阴影 */
    --box-shadow-regular: 0px 2px 12px 0px rgba(0, 0, 0, 0.2); /* 轻微阴影 */
    --box-shadow-extra: 0 5px 50px 0 rgba(0, 0, 0, 0.3); /* 强阴影 */

    /* 背景渐变 */
    --bg-gradient: linear-gradient(45deg, #b88a3e 0%, #d4af37 50%); /* 金色渐变 */

    /* 按钮颜色 */
    --btn-color: #121212; /* 按钮背景采用黑色 */
}


* {
    padding: 0;
    margin: 0
}

html {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible
}

body {
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
    background-color: var(--bg-main);
    color: var(--color-paragraph)
}

html, body, .wrapper {
    height: 100%
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    margin: 0
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 27px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 16px
}

h6 {
    font-size: 14px
}

img {
    border: none;
    outline: none;
    max-width: 100%
}

label {
    display: inline-block;
    font-weight: 400;
    margin-bottom: 5px;
    max-width: 100%
}

a, .btn, button {
    transition: all .35s ease-in-out;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    outline: medium
}

a img, iframe {
    border: none
}

p {
    color: var(--color-paragraph);
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-default)
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eee
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: inherit
}

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

a, a:active, a:focus, a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-heading)
}

a:hover {
    color: var(--color-heading)
}

a {
    transition: all .35s ease-in-out;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    text-decoration: none;
    font-weight: 900
}

b, strong {
    font-weight: 900
}

.btn.active, .btn:active {
    background-image: inherit !important
}

.btn.focus, .btn:active:focus, .btn:active:hover, .btn:focus, .btn:hover {
    outline: 0
}

.btn.circle {
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px
}

.btn.active, .btn:active {
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    box-shadow: inherit;
    min-height: 50px
}

@media only screen and (min-width: 768px) {
    .row {
        --bs-gutter-x: 30px
    }
}

.container-medium {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px
}

.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px
}

.container-fill {
    padding: 0 15px;
    margin: auto;
    max-width: 100%
}

@media (min-width: 576px) {
    .container-medium {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container-medium {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container-medium {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container-medium {
        max-width: 100%;
        width: 100%
    }
}

@media (min-width: 576px) {
    .container-full {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container-full {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container-full {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container-full {
        max-width: 1400px;
        width: 90%
    }
}

@media (min-width: 576px) {
    .container-fill {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container-fill {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container-fill {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container-fill {
        width: 90%;
        max-width: 1400px
    }

    .container-fill a.navbar-brand {
        padding-left: 15px
    }
}

@media (max-width: 1199px) {
    .container-fill {
        padding: 0 15px
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px
    }
}

.fixed-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1
}

.bg-cover {
    background-position: center center;
    background-size: cover
}

.bg-fixed {
    background-attachment: fixed;
    background-position: center top;
    background-size: cover
}

.bg-gray {
    background-color: #232323
}

.bg-light {
    background-color: var(--white)
}

.bg-dark {
    background-color: var(--dark) !important
}

.bg-theme {
    background-color: var(--color-primary)
}

.bg-gradient {
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%) !important
}

.gradient-bg {
    background-image: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    background-color: var(--color-primary)
}

.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6, .text-light p, .text-light a {
    color: var(--white)
}

.shadow {
    position: relative;
    z-index: 1;
    box-shadow: inherit !important
}

.shadow.dark::after {
    background: var(--black) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: .5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.shadow.dark-hard::after {
    background: var(--black) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: .75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.shadow.theme::after {
    background: var(--color-primary) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: .5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.shadow.theme-hard::after {
    background: var(--color-primary) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: .7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.default-padding, .default-padding-top, .default-padding-bottom, .default-padding-mx {
    position: relative
}

.default-padding {
    padding-top: 120px;
    padding-bottom: 120px
}

.default-padding-top {
    padding-top: 120px
}

.default-padding-bottom {
    padding-bottom: 120px
}

.default-padding.bottom-less {
    padding-top: 120px;
    padding-bottom: 90px
}

.default-padding-bottom.bottom-less {
    margin-bottom: -30px
}

.default-padding-top.bottom-less {
    margin-bottom: -30px
}

.top-border {
    border-top: 1px solid #e7e7e7
}

.align-center {
    align-items: center
}

.btn {
    display: inline-block;
    font-weight: 700;
    line-height: 25px;
    text-transform: capitalize;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    overflow: hidden;
    border-radius: 5px;
    font-size: 14px;
    text-transform: capitalize
}

.btn-md {
    padding: 15px 45px
}

.btn-sm {
    padding: 13px 40px
}

a:hover, a:active {
    opacity: 1;
    text-decoration: none
}

.btn.btn-gradient {
    position: relative;
    z-index: 1;
    color: var(--white) !important
}

.btn.btn-gradient::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #118bba, var(--color-primary), #118bba);
    background-size: 300% 100%;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white) !important;
    background-color: #118bba;
    z-index: -1;
    transition: all .35s ease-in-out
}

.btn.btn-gradient:hover::after, .btn.btn-gradient:active {
    background-position: -50% 0;
    color: var(--white)
}

.btn-md i {
    font-size: 16px;
    position: relative;
    top: 1px;
    margin-left: 3px
}

.video-btn {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 10px
}

.text-center .video-btn {
    margin-left: 0
}

.video-btn i {
    display: inline-block;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    margin-right: 20px;
    color: var(--white)
}

.text-light .video-btn i {
    background: var(--white);
    color: var(--color-primary)
}

.video-btn i::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--color-primary) repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1
}

.text-light .video-btn i::after {
    background: var(--white) repeat scroll 0 0
}

.btn.btn-light.effect {
    color: var(--color-heading);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative
}

.btn.btn-light.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--white);
    z-index: -1;
    transition: all .35s ease-in-out
}

.btn.btn-light.effect:hover {
    border: 2px solid var(--white);
    color: var(--white);
    background: 0 0
}

.btn.btn-light.effect:hover::after {
    width: 0
}

.btn.btn-dark.effect {
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px 0 rgb(44 130 237/40%);
    overflow: hidden;
    z-index: 1;
    position: relative
}

.btn.btn-dark.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    z-index: -1;
    transition: all .35s ease-in-out
}

.btn.btn-dark.effect:hover {
    border: 2px solid var(--dark);
    color: var(--dark);
    background: 0 0
}

.btn.btn-dark.effect:hover::after {
    width: 0
}

.btn-light.border {
    background: var(--white);
    border: 2px solid #e7e7e7 !important
}

.btn-theme-border {
    border: 2px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 1
}

.btn-theme-border::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all .35s ease-in-out
}

.btn-theme-border.circle::after {
    border-radius: 30px
}

.btn-theme-border:hover::after {
    width: 100%
}

.btn-theme-border:hover {
    color: var(--white)
}

.btn-light-border {
    border: 2px solid var(--white);
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: var(--white)
}

.btn-light-border::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--white);
    z-index: -1;
    transition: all .35s ease-in-out
}

.btn-light-border.circle::after {
    border-radius: 30px
}

.btn-light-border:hover::after {
    width: 100%
}

.btn-light-border:hover {
    color: var(--color-heading)
}

.btn-theme-effect {
    border: 2px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: var(--white)
}

.btn-theme-effect::after {
    position: absolute;
    left: -10px;
    top: -10px;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    z-index: -1;
    transition: all .35s ease-in-out
}

.btn-theme-effect.circle::after {
    border-radius: 30px
}

.btn-theme-effect:hover::after {
    width: 0
}

.btn-theme-effect:hover {
    color: var(--color-heading)
}

.relative {
    position: relative;
    z-index: 1
}

.bg-fixed {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important
}

.bg-cover {
    background-position: center center !important;
    background-size: cover !important
}

.overflow-hidden {
    overflow: hidden
}

button, button:focus {
    border: none !important;
    box-shadow: inherit !important;
    outline: inherit !important
}

.site-heading h5 {
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-primary);
    font-size: 18px;
    position: relative;
    z-index: 1;
    display: inline-block
}

.bg-dark .site-heading h5, .bg-theme .site-heading h5, .shadow .site-heading h5 {
    color: var(--white);
    opacity: .8
}

.site-heading p {
    margin: 0;
    margin-top: 10px
}

@media (min-width: 1200px) {
    .site-heading p {
        padding: 0 10%
    }
}

.bg-dark .site-heading p, .bg-theme .site-heading p, .shadow .site-heading p {
    color: var(--white)
}

.site-heading h2 {
    display: block;
    font-weight: 900;
    position: relative;
    margin-bottom: 0;
    line-height: 1.4
}

.bg-dark .site-heading h2, .bg-theme .site-heading h2, .shadow .site-heading h2 {
    color: var(--white)
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    left: 10px
}

.site-heading.light .devider, .bg-theme .site-heading .devider, .shadow .site-heading .devider, .bg-dark .site-heading .devider {
    background: var(--white)
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: var(--color-primary)
}

.site-heading.light .devider:before, .bg-theme .site-heading .devider:before, .shadow .site-heading .devider:before, .bg-dark .site-heading .devider:before {
    background: var(--white)
}

.area-title {
    font-size: 40px;
    line-height: 1.2
}

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px
}

.carousel-shadow .owl-stage-outer {
    margin: -15px;
    padding: 15px
}

.site-heading.pricing-more {
    margin-bottom: 0
}

.site-heading.pricing-more a {
    color: #fff;
    padding: 10px 20px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    display: block
}

.site-heading.pricing-more a:hover {
    color: #333;
    background: #fff;
    border: 1px solid var(--color-primary)
}

.right_nav {
    right: 0;
    bottom: 40%;
    position: fixed;
    text-align: left;
    overflow: hidden;
    z-index: 999
}

.right_nav li {
    background: var(--color-primary);
    margin: 4px 0;
    padding: 10px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    cursor: pointer;
    position: relative;
    right: -70px
}

.right_nav li .iconBox {
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.right_nav li img {
    width: 30px;
    height: 30px
}

.right_nav li h4 {
    color: #fff;
    font-size: 14px;
    margin: 2px 0;
    margin-left: 15px
}

.right_nav li:hover {
    background: #cf1322
}

.right_nav li .hideBox {
    display: none;
    position: absolute;
    right: 120px;
    padding: 10px;
    padding-right: 15px;
    top: -10px;
    z-index: 999
}

.right_nav li .hideBox .hb {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 10px 20px;
    border-top: 2px solid var(--color-primary);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.right_nav li .hideBox .hb h5 {
    padding: 5px 0;
    border-bottom: 2px solid #ccc;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    display: block;
    white-space: nowrap;
    text-align: center
}

.right_nav li .hideBox .hb p {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 700
}

.right_nav li .hideBox .hb .qqtalk {
    margin-top: 10px
}

.right_nav li .hideBox .hb .qqtalk a {
    display: flex;
    align-items: center
}

.right_nav li .hideBox .hb .qqtalk img {
    width: 25px;
    height: 25px
}

.right_nav li .hideBox .hb .qqtalk p {
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    margin-top: -5px;
    margin-left: 5px
}

.right_nav li:nth-child(1) .hideBox img {
    width: 140px;
    height: 140px;
    margin-top: 10px;
    max-width: initial
}

.fun-factor-area .fun-fact .icon {
    display: inline-block;
    margin: 30px 0;
    position: relative;
    z-index: 1
}

.fun-factor-area .fun-fact .icon img {
    height: 55px
}

@media only screen and (min-width: 1100px) {
    .left-border::before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 70px;
        background: #edf5ff
    }

    .bg-gray.left-border::before {
        background: var(--white)
    }
}

.fixed-shape-bottom {
    position: absolute;
    left: 0;
    bottom: -1px
}

.fixed-shape-bottom img {
    width: 100%
}

.breadcrumb-area {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.breadcrumb-area .row {
    position: relative;
    z-index: 1
}

.breadcrumb-area .breadcrumb {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1
}

.breadcrumb-area h1 {
    display: block;
    font-weight: 900;
    text-transform: capitalize;
    font-size: 40px;
    margin-top: -10px;
    margin-bottom: 20px
}

.breadcrumb > li + li::before {
    content: "\f105";
    font-family: "font awesome 5 pro";
    font-weight: 900;
    padding: 0 5px;
    color: var(--white);
    display: none
}

.breadcrumb-area .breadcrumb li i {
    margin-right: 5px
}

.breadcrumb-area .breadcrumb li {
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: inline-block
}

.breadcrumb-area .breadcrumb li::after {
    content: "";
    height: 2px;
    left: -10px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    background: var(--white);
    width: 15px
}

.breadcrumb-area .breadcrumb li:first-child::after {
    display: none
}

.breadcrumb-area .breadcrumb a, .breadcrumb-area .breadcrumb li {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    font-size: 14px
}

body, .banner-area, .banner-area div {
    height: 100%
}

.banner-area.auto-height, .banner-area.auto-height div {
    height: auto
}

.banner-area.auto-height .content {
    padding: 150px 0
}

.banner-area .box-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%
}

.banner-area .box-table {
    display: table;
    width: 100%
}

.banner-area .box-cell, .banner-area .box-cell div {
    height: auto
}

.banner-area {
    position: relative;
    overflow: hidden;
    z-index: 1
}

.banner-area .content {
    position: relative;
    z-index: 9
}

.banner-area.content-double .double-items {
    align-items: center;
    align-self: center;
    display: flex;
    justify-content: center;
    vertical-align: middle
}

.banner-area .banner-carousel .owl-item.center img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1)
}

.banner-area .banner-carousel .owl-item img {
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9)
}

.banner-area .carousel-item h1:first-child, .banner-area .carousel-item h2:first-child, .banner-area .carousel-item h3:first-child, .banner-area .carousel-item h4:first-child, .banner-area .carousel-item h5:first-child, .banner-area .carousel-item h6:first-child {
    animation-delay: .5s
}

.banner-area .carousel-item h1:nth-child(2), .banner-area .carousel-item h2:nth-child(2), .banner-area .carousel-item h3:nth-child(2), .banner-area .carousel-item h4:nth-child(2), .banner-area .carousel-item h5:nth-child(2), .banner-area .carousel-item h6:nth-child(2) {
    animation-delay: .7s
}

.banner-area .carousel-item p {
    animation-delay: .5s
}

.banner-area .carousel-item ul {
    animation-delay: .6s
}

.banner-area .carousel-item a, .banner-area .carousel-item button {
    animation-delay: .7s
}

.carousel-fade .carousel-inner .carousel-item {
    -webkit-transition-property: opacity;
    transition-property: opacity
}

.carousel-fade .carousel-inner .carousel-item, .carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
    opacity: 0
}

.carousel-fade .carousel-inner .active, .carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
    opacity: 1
}

.carousel-fade .carousel-inner .next, .carousel-fade .carousel-inner .prev, .carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0)
}

.carousel-fade .carousel-control {
    z-index: 2
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1)
    }
    to {
        -webkit-transform: scale(1.2, 1.2)
    }
}

@-moz-keyframes zoom {
    from {
        -moz-transform: scale(1, 1)
    }
    to {
        -moz-transform: scale(1.2, 1.2)
    }
}

@-o-keyframes zoom {
    from {
        -o-transform: scale(1, 1)
    }
    to {
        -o-transform: scale(1.2, 1.2)
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1)
    }
    to {
        transform: scale(1.2, 1.2)
    }
}

.carousel-inner .carousel-item > .slider-thumb {
    -webkit-animation: zoom 20s;
    animation: zoom 20s
}

.banner-area .carousel-zoom .slider-thumb {
    height: 100%;
    position: absolute;
    width: 100%
}

#particles-js, #ripple {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.banner-area .carousel-control {
    background: transparent none repeat scroll 0 0;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 70px;
    z-index: 1;
    text-transform: uppercase
}

.banner-area .carousel-control.shadow {
    background: transparent none repeat scroll 0 0;
    color: var(--white);
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    opacity: 1;
    padding: 0;
    position: absolute;
    text-shadow: inherit;
    top: 50%;
    width: 50px;
    z-index: 1
}

.banner-area .carousel-control.shadow::after {
    background: #1e2726 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    opacity: .5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1
}

.banner-area .carousel-control.left {
    left: -80px
}

.banner-area:hover .carousel-control.left {
    left: 10px
}

.banner-area:hover .carousel-control.shadow.left {
    left: 20px
}

.banner-area .carousel-control.right {
    right: -80px
}

.banner-area:hover .carousel-control.right {
    right: 10px
}

.banner-area:hover .carousel-control.shadow.right {
    right: 20px
}

.banner-area .carousel-indicator {
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 100%
}

.banner-area .carousel-indicators {
    position: absolute;
    right: auto;
    left: 0;
    width: auto;
    height: auto;
    top: auto;
    bottom: 0;
    margin: 0;
    padding: 30px 0
}

.banner-area .carousel-indicators li {
    display: block;
    height: 20px;
    width: 20px;
    margin: 10px 5px;
    border: 2px solid rgba(255, 255, 255, .7);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: 0 0;
    position: relative;
    z-index: 1
}

.banner-area .carousel-indicators li.active {
    border: 2px solid var(--white)
}

.banner-area .carousel-indicators li::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: var(--white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.banner-area.video-bg-live .mbYTP_wrapper {
    z-index: 1 !important
}

.double-items > .row div {
    height: auto
}

.banner-area.bg-top {
    background-size: cover;
    background-position: bottom center
}

.banner-area.top-pad-80 {
    padding-top: 80px
}

.banner-area.top-pad-80-desktop {
    padding-top: 80px
}

.banner-area.auto-height .content-box {
    padding-top: 110px
}

.banner-area p {
    font-size: 16px;
    line-height: 32px;
    margin: 0
}

.banner-area.text-center p, .banner-area .text-center p {
    padding-left: 10%;
    padding-right: 10%
}

.banner-area.auto-height .content-box .thumb-inner {
    margin-bottom: -50px;
    padding-bottom: 50px;
    margin-top: 100px;
    position: relative;
    padding-right: 100px
}

.banner-area.bg-top {
    padding-bottom: 50px;
    margin-bottom: -50px
}

.banner-area.auto-height .content-box .thumb-inner img:nth-child(2) {
    position: absolute;
    right: 0;
    top: 260px;
    max-width: 350px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px;
    border: none !important
}

.banner-area h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.4
}

.banner-area h2 strong {
    font-weight: 100;
    display: block
}

.banner-area a {
    margin-right: 25px;
    margin-top: 40px
}

.banner-area .buttons {
    margin-top: 30px
}

.banner-area .buttons a {
    margin-top: 10px
}

.banner-area a.video-btn {
    margin-top: 30px
}

.banner-area a:last-child {
    margin-right: 0
}

.banner-area.text-center a, .banner-area .text-center a {
    margin-left: 7px;
    margin-right: 7px
}

.text-capitalized h2 {
    text-transform: capitalize
}

.banner-area .button {
    display: flex;
    align-items: center;
    margin-top: 10px
}

.banner-area.text-center .button, .banner-area .text-center .button {
    justify-content: center
}

.banner-area .fixed-shape {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 50%
}

.banner-area.bg-gradient {
    background: linear-gradient(to bottom, var(--white), #AFE6FB)
}

@media only screen and (min-width: 1200px) {
    .banner-area.inc-shape::before {
        content: "";
        position: absolute;
        bottom: 28rem;
        left: 54rem;
        width: 90rem;
        height: 35rem;
        border-radius: 17rem;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background: var(--color-primary);
        z-index: -1
    }
}

.banner-area .thumb.width-160 img {
    max-width: 160%
}

.banner-area .thumb.width-120 img {
    max-width: 120%
}

.banner-area.content-less h2 {
    margin-bottom: 10px
}

.banner-area h4 {
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 900
}

.banner-area .info.shape {
    position: relative;
    z-index: 1
}

.banner-area .info.shape::after {
    position: absolute;
    left: -80px;
    top: -80px;
    content: "";
    height: 200px;
    width: 200px;
    background: url(../img/shape/12.png);
    z-index: -1;
    background-size: contain;
    background-position: left top
}

.banner-area .top-shape {
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 40%;
    width: 90%;
    z-index: -1;
    opacity: .07
}

.banner-area .bottom-shape {
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 40%;
    width: 90%;
    z-index: -1
}

.banner-area.bg-bottom {
    background-size: cover;
    background-position: bottom center
}

.banner-area.bg-bottom::after {
    position: absolute;
    left: -150px;
    top: -150px;
    content: "";
    height: 500px;
    width: 500px;
    background: var(--white);
    z-index: -1;
    border-radius: 50%;
    opacity: .1
}

.banner-area.bg-bottom::before {
    position: absolute;
    left: -150px;
    top: -150px;
    content: "";
    height: 600px;
    width: 600px;
    background: var(--white);
    z-index: -1;
    border-radius: 50%;
    opacity: .07
}

.banner-area.angle-shape:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 0;
    border-right: 100vw solid var(--white);
    border-top: 300px solid transparent;
    width: 0;
    z-index: -1
}

.banner-area .big-thumb img {
    max-width: 200%;
    margin-top: 80px
}

.banner-area .shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1
}

.banner-area .shape img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%
}

.banner-area form {
    position: relative;
    max-width: 90%;
    background: var(--white);
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    border-radius: 30px;
    margin-top: 35px
}

.banner-area form input {
    background: 0 0;
    box-shadow: inherit;
    border: none;
    border-radius: 30px;
    min-height: 60px;
    padding-left: 25px
}

.banner-area form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    padding: 0 25px;
    border-radius: 30px;
    background: var(--color-primary);
    color: var(--white);
    font-weight: 900
}

.banner-area.bg-half-dark {
    position: relative;
    z-index: 1
}

.banner-area.bg-half-dark::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 30%;
    width: 100%;
    background: var(--dark);
    z-index: -1
}

.banner-area.bg-half-dark.auto-height .content-box .thumb-inner {
    margin-bottom: 0
}

.banner-area.bg-half-dark.auto-height .content-box .thumb-inner img {
    border: 2px solid #e7e7e7;
    border-radius: 16px;
    border-top: 1px solid #e7e7e7
}

.banner-area .left-shape {
    position: absolute;
    left: -230px;
    top: -200px;
    height: 800px !important;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: -1
}

.banner-area .banner-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 75% !important;
    width: 100%;
    background-size: cover;
    background-position: bottom left;
    z-index: -1
}

.banner-area .thumb-inner .shape-circle {
    position: absolute;
    right: -120px;
    top: -120px;
    content: "";
    height: 500px;
    width: 500px;
    border: 80px solid var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    opacity: 1
}

.item-animated {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.54, .085, .5, .92);
    animation-timing-function: cubic-bezier(.54, .085, .5, .92);
    -webkit-animation-name: infiUpDown;
    animation-name: infiUpDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@keyframes infiUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    50% {
        -webkit-transform: translateY(-35px);
        transform: translateY(-35px)
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@-webkit-keyframes infiUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    50% {
        -webkit-transform: translateY(-35px);
        transform: translateY(-35px)
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@-webkit-keyframes infinite-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px)
    }
}

@-webkit-keyframes infinite-move {
    from {
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -ms-transform: translateX(88px);
        transform: translateX(88px)
    }
}

@keyframes infinite-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px)
    }
}

.video-play-button {
    color: var(--color-primary);
    font-size: 30px;
    left: 50%;
    padding-left: 7px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    z-index: 1
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--white) repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite
}

.video-play-button.theme:before, .video-play-button.theme:after {
    background: var(--color-primary) repeat scroll 0 0
}

.orange .video-play-button.theme:before, .orange .video-play-button.theme:after {
    background: #ff5621 repeat scroll 0 0
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--white) repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

.video-play-button i {
    display: block;
    position: relative;
    z-index: 3;
    color: var(--color-primary)
}

.video-play-button.theme i {
    color: var(--white)
}

.video-play-button.relative {
    position: relative;
    display: inline-block;
    left: 30px;
    height: 68px;
    width: 68px;
    line-height: 68px;
    text-align: center;
    margin-top: 0 !important;
    top: 55px;
    margin-left: 10px
}

.video-play-button.relative::before, .video-play-button.relative::after {
    height: 68px;
    width: 68px;
    line-height: 68px
}

.video-play-button.relative i {
    line-height: 70px;
    font-size: 25px
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 15px;
    z-index: 1
}

.nice-select:hover {
    border-color: #dbdbdb
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    width: 5px
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    overflow-y: auto !important;
    height: 200px
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none
}

.nice-select.disabled:after {
    border-color: #96aac1
}

.nice-select.wide {
    width: 100%
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .list {
    left: auto;
    right: 0
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px
}

.nice-select.small:after {
    height: 4px;
    width: 4px
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px
}

.nice-select .list {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    -o-box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translateY(-21px);
    -ms-transform: scale(.75) translateY(-21px);
    transform: scale(.75) translateY(-21px);
    -webkit-transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 9;
    width: 100%
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all .2s;
    transition: all .2s
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f6f6
}

.nice-select .option.selected {
    font-weight: 700
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default
}

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .nice-select.open .list {
    display: block
}

.about-area .fixed-shape-left {
    position: absolute;
    left: 0;
    top: 250px;
    max-width: 700px;
    opacity: .1
}

.about-area .thumb {
    position: relative;
    z-index: 1;
    padding-right: 80px;
    margin-bottom: 80px;
    margin-left: -20%
}

.about-area .thumb img {
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    border-radius: 10px;
    padding: 10px;
    background: var(--white)
}

.about-area .thumb img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: -80px
}

.about-area .about-items .info {
    padding-left: 35px
}

.about-area .info h4 {
    font-weight: 900;
    color: var(--color-primary)
}

.about-area .info h2 {
    font-weight: 900;
    margin-bottom: 40px
}

.about-area .about-items ul {
    margin-top: 25px
}

.about-area .about-items ul li {
    position: relative;
    padding-left: 45px;
    margin-top: 30px
}

.about-area .about-items ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "N";
    font-family: ElegantIcons;
    color: var(--white);
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    background: var(--color-primary);
    border-radius: 50%
}

.about-area .about-items ul h5 {
    font-weight: 900
}

.about-area .about-items ul p {
    margin: 0
}

.about-area .about-items .info .button {
    margin-top: 35px
}

.about-area .about-items .info .button a {
    margin-right: 15px
}

.about-area .about-items .info .button a:nth-child(2) {
    border-bottom: 1px solid
}

.about-area .about-content .info {
    padding-left: 35px
}

.about-area .info h4 {
    font-weight: 900;
    color: var(--color-primary)
}

.about-area .info h2 {
    font-weight: 900;
    margin-bottom: 40px
}

.about-area .about-content ul h5 {
    font-weight: 900
}

.about-area .about-content ul li {
    display: flex;
    align-items: center;
    border-right: 1px solid #e7e7e7;
    margin-right: 30px;
    padding-right: 30px;
    text-align: left
}

.about-area .about-content ul {
    display: flex;
    margin-top: 35px;
    position: relative;
    z-index: 1;
    padding-top: 40px
}

.about-area .about-content ul::after {
    position: absolute;
    left: -300%;
    top: 0;
    content: "";
    height: 500px;
    width: 600%;
    background: #edf5ff;
    z-index: -1
}

.about-area .thumbs {
    z-index: 9;
    position: relative
}

.about-area .about-content ul li:last-child {
    border: none;
    padding: 0;
    margin: 0
}

.about-area .about-content ul li i {
    display: inline-block;
    font-size: 40px;
    color: var(--color-primary);
    margin-right: 20px
}

.about-area .about-content ul li span {
    display: block;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--color-heading)
}

@media only screen and (min-width: 1100px) {
    .about-area.inc-left-border::before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 70px;
        background: var(--white);
        z-index: 9
    }
}

.about-area .about-items .info.right-info {
    padding-left: 15px;
    padding-right: 35px;
    border-right: 1px solid #e7e7e7
}

.about-area .about-items .features-content {
    padding-left: 50px
}

.about-area .about-items .features-content i {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 25px;
    color: var(--color-primary);
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.about-area .about-items .features-content h4 {
    font-weight: 900
}

.about-area .about-items .features-content p {
    margin: 0
}

.about-area .about-items .features-content .item {
    margin-top: 30px
}

.about-area .about-items .features-content {
    margin-top: -50px
}

.about-style-three .thumb {
    position: relative;
    z-index: 1;
    padding-right: 35px
}

.about-style-three .thumb img:first-child {
    float: right;
    max-width: 55%;
    margin-top: 80px
}

.about-style-three .thumb img:nth-child(2) {
    max-width: 53%;
    margin-left: -13%
}

.about-style-three .thumb img {
    border-radius: 8px
}

.get-app {
    background: var(--white);
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    display: inline-block;
    max-width: 50%;
    margin-left: -12%;
    margin-top: 30px;
    padding: 37px;
    border-radius: 8px
}

.app-user .content {
    display: flex;
    align-items: center;
    margin-top: 20px
}

.app-user .content img {
    max-width: 100%;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    padding: 2px;
    background: var(--white);
    position: relative;
    left: -20px
}

.app-user .content img:first-child {
    left: 0
}

.app-user .content img:nth-child(3) {
    left: -40px
}

.app-user .content img:nth-child(4) {
    left: -60px
}

.app-user .content img:nth-child(5) {
    left: -80px
}

.app-user .content img:nth-child(6) {
    left: -100px
}

.app-user .content img:nth-child(7) {
    left: -120px
}

.app-user .content img:nth-child(8) {
    left: -140px
}

.app-user .content img:nth-child(9) {
    left: -160px
}

.app-user .content img:nth-child(10) {
    left: -180px
}

.app-user .content img:nth-child(11) {
    left: -200px
}

.app-user .content a {
    display: inline-block;
    height: 45px;
    width: 45px;
    min-width: 45px;
    line-height: 42px;
    text-align: center;
    background: #eee7e7;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    border-radius: 50%;
    font-size: 14px;
    border: 2px solid var(--white);
    color: var(--color-primary);
    position: relative;
    left: -80px
}

.get-app .btn {
    margin-top: 25px;
    display: block
}

.get-app h5 {
    text-transform: uppercase;
    font-weight: 900;
    color: var(--color-primary);
    font-size: 14px
}

.get-app h4 {
    font-weight: 900 !important;
    font-size: 18px;
    color: var(--color-heading) !important
}

.about-style-three {
    position: relative;
    z-index: 1
}

.about-style-three .shape {
    position: absolute;
    right: 0;
    top: -10px;
    height: 200px;
    width: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top
}

.about-style-three h4 {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color-primary)
}

.about-style-three h2 {
    font-weight: 900;
    margin-bottom: 25px
}

.about-style-three li {
    margin-top: 30px;
    padding-left: 45px;
    position: relative;
    z-index: 1
}

.about-style-three li h5 {
    font-weight: 900
}

.about-style-three li p {
    margin: 0
}

.about-style-three li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f00c";
    font-family: "font awesome 5 pro";
    font-size: 11px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border: 1px solid var(--color-paragraph);
    text-align: center;
    border-radius: 5px;
    color: var(--color-primary);
    font-weight: 900
}

.about-style-three .info {
    margin-top: 80px
}

.mt-less-50p {
    margin-top: -50px
}

.features-area .features-box .item {
    background: var(--white);
    padding: 60px 37px;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    border-radius: 7px;
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.features-area .features-box .item::before {
    position: absolute;
    left: -55px;
    top: -35px;
    content: "";
    height: 200px;
    width: 152px;
    background: url(../img/shape/19.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    transform: rotate(95deg);
    z-index: -1;
    opacity: .6
}

.features-area .features-box .item-inner {
    margin-bottom: 30px
}

.features-area .features-box .item-inner:last-child {
    margin-bottom: 0
}

.features-area .features-box .item::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 0;
    width: 100%;
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    z-index: -1;
    transition: all .35s ease-in-out
}

.features-area .features-box .item:hover::after {
    height: 100%
}

.features-area .features-box .single-item .item p, .features-area .features-box .single-item .item h4 {
    transition: all .35s ease-in-out
}

.features-area .features-box .single-item .item:hover p, .features-area .features-box .single-item .item:hover h4 {
    color: var(--white)
}

.features-area .features-box .item .icon {
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: var(--white);
    box-shadow: 0 10px 30px 0 rgb(44 130 237/40%);
    border-radius: 8px;
    text-align: center;
    margin-right: 30px;
    min-width: 80px
}

.features-area .features-box .item i {
    display: inline-block;
    font-size: 45px;
    color: var(--color-primary);
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.features-area .features-box .item h4 {
    font-weight: 900
}

.features-area .features-box .item p {
    margin: 0
}

.features-area .features-box .item ul {
    margin-top: 20px;
    border-top: 1px solid #e7e7e7;
    padding-top: 20px
}

.features-area .features-box .item ul li {
    display: inline-block;
    margin: 0 10px;
    font-weight: 900;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 13px
}

.features-area .features-box .item ul li a:hover {
    color: var(--color-primary)
}

.features-area .features-box .left-content {
    padding-right: 35px
}

.features-area .features-box .left-content h4 {
    color: var(--color-primary);
    font-weight: 900
}

.features-area .features-box .left-content h2 {
    font-weight: 900;
    margin-bottom: 25px
}

.features-area .features-box .left-content a {
    margin-top: 20px
}

.features-area .features-box .features-carousel .owl-dots {
    margin-top: 40px;
    margin-bottom: -8px
}

.features-area .features-box .features-carousel .owl-dots .owl-dot span {
    display: block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--white);
    position: relative;
    z-index: 1;
    border: 2px solid #e7e7e7
}

.features-area .features-box .features-carousel .owl-dots .owl-dot.active span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: var(--color-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.advanced-features-area .right-shape {
    position: absolute;
    right: 0;
    top: 120px;
    z-index: -1
}

.advanced-features-area .af-items .single-item {
    margin-bottom: 30px
}

.advanced-features-area .af-items .item h4 {
    font-weight: 900
}

.advanced-features-area .af-items .item p {
    margin: 0
}

.advanced-features-area .af-items .item i {
    display: inline-block;
    font-size: 60px;
    color: var(--color-primary);
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.advanced-features-area .af-items .item .icon {
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1
}

.advanced-features-area .af-items .item .icon::after {
    position: absolute;
    left: 0;
    top: -20px;
    content: "";
    height: 70px;
    width: 70px;
    background: linear-gradient(62.5deg, transparent, rgba(237, 245, 255, 0.9));
    z-index: -1;
    border-radius: 50%;
    transform: rotate(-45deg);
    transition: all .35s ease-in-out
}

.advanced-features-area .af-items .item {
    padding: 50px 30px;
    padding-top: 75px;
    background: var(--white);
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    border-radius: 8px;
    transition: all .35s ease-in-out;
    border-bottom: 3px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.advanced-features-area .af-items .item::after {
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    height: 80px;
    width: 200px;
    background: url(../img/shape/19.png);
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat
}

.advanced-features-area .af-items .item:hover {
    margin-top: -15px
}

.our-features-area .fixed-bg {
    opacity: .4
}

.our-features-area .feature-items .single-item {
    margin-bottom: 30px
}

.our-features-area .feature-items .single-item .item {
    border-radius: 8px;
    padding: 60px 37px;
    padding-top: 90px;
    box-shadow: 0 20px 50px rgb(0 0 0/10%);
    background: var(--white)
}

.our-features-area .feature-items .item .icon {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 25px
}

.our-features-area .feature-items .item .icon::after {
    position: absolute;
    right: -70px;
    bottom: 0;
    content: "";
    height: 80px;
    width: 80px;
    background: #f3fbfe;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-clip-path: polygon(40% 7.67949%, 43.1596% 6.20615%, 46.52704% 5.30384%, 50% 5%, 53.47296% 5.30384%, 56.8404% 6.20615%, 60% 7.67949%, 81.65064% 20.17949%, 84.50639% 22.17911%, 86.97152% 24.64425%, 88.97114% 27.5%, 90.44449% 30.6596%, 91.34679% 34.02704%, 91.65064% 37.5%, 91.65064% 62.5%, 91.34679% 65.97296%, 90.44449% 69.3404%, 88.97114% 72.5%, 86.97152% 75.35575%, 84.50639% 77.82089%, 81.65064% 79.82051%, 60% 92.32051%, 56.8404% 93.79385%, 53.47296% 94.69616%, 50% 95%, 46.52704% 94.69616%, 43.1596% 93.79385%, 40% 92.32051%, 18.34936% 79.82051%, 15.49361% 77.82089%, 13.02848% 75.35575%, 11.02886% 72.5%, 9.55551% 69.3404%, 8.65321% 65.97296%, 8.34936% 62.5%, 8.34936% 37.5%, 8.65321% 34.02704%, 9.55551% 30.6596%, 11.02886% 27.5%, 13.02848% 24.64425%, 15.49361% 22.17911%, 18.34936% 20.17949%);
    clip-path: polygon(40% 7.67949%, 43.1596% 6.20615%, 46.52704% 5.30384%, 50% 5%, 53.47296% 5.30384%, 56.8404% 6.20615%, 60% 7.67949%, 81.65064% 20.17949%, 84.50639% 22.17911%, 86.97152% 24.64425%, 88.97114% 27.5%, 90.44449% 30.6596%, 91.34679% 34.02704%, 91.65064% 37.5%, 91.65064% 62.5%, 91.34679% 65.97296%, 90.44449% 69.3404%, 88.97114% 72.5%, 86.97152% 75.35575%, 84.50639% 77.82089%, 81.65064% 79.82051%, 60% 92.32051%, 56.8404% 93.79385%, 53.47296% 94.69616%, 50% 95%, 46.52704% 94.69616%, 43.1596% 93.79385%, 40% 92.32051%, 18.34936% 79.82051%, 15.49361% 77.82089%, 13.02848% 75.35575%, 11.02886% 72.5%, 9.55551% 69.3404%, 8.65321% 65.97296%, 8.34936% 62.5%, 8.34936% 37.5%, 8.65321% 34.02704%, 9.55551% 30.6596%, 11.02886% 27.5%, 13.02848% 24.64425%, 15.49361% 22.17911%, 18.34936% 20.17949%)
}

.our-features-area .feature-items .item .icon > i {
    display: inline-block;
    font-size: 55px;
    color: var(--color-primary);
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1
}

.our-features-area .feature-items .item h4 {
    font-weight: 900
}

.our-features-area .feature-items .item p {
    margin-bottom: 0
}

.our-features-area .feature-items .single-item .item.service-banner {
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 1;
    padding: 47px 37px;
    border-radius: 8px;
    overflow: hidden
}

.our-features-area .feature-items .single-item .item.service-banner::before {
    position: absolute;
    right: -100px;
    bottom: -100px;
    content: "";
    height: 300px;
    width: 300px;
    background: url(../img/shape/14.png);
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat
}

.our-features-area .feature-items .single-item .item.service-banner::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--black);
    z-index: -1;
    opacity: .6;
    border-radius: 8px
}

.our-features-area .feature-items .single-item .item.service-banner h4 {
    font-weight: 600;
    color: #007cff
}

.our-features-area .feature-items .single-item .item.service-banner h2 {
    color: var(--white);
    font-weight: 900
}

.our-features-area .feature-items .single-item .item.service-banner .btn {
    margin-top: 15px
}

.our-features-area .feature-items .single-item .item.service-banner .btn:hover {
    color: var(--white);
    border-color: var(--white)
}

.features-area .feature-box {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 90px
}

.features-area .feature-box .single-item {
    margin-bottom: 30px
}

.features-area .feature-box .single-item .item {
    padding: 50px 30px;
    transition: all .35s ease-in-out;
    border-radius: 8px
}

.features-area .feature-box .single-item .item i {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 30px;
    color: var(--color-heading);
    position: relative;
    z-index: 1
}

.features-area .feature-box .single-item .item i::after {
    position: absolute;
    left: -30px;
    top: -15px;
    content: "";
    height: 80px;
    width: 80px;
    background: var(--color-primary);
    z-index: -1;
    -webkit-clip-path: polygon(92.32051% 40%, 93.79385% 43.1596%, 94.69616% 46.52704%, 95% 50%, 94.69616% 53.47296%, 93.79385% 56.8404%, 92.32051% 60%, 79.82051% 81.65064%, 77.82089% 84.50639%, 75.35575% 86.97152%, 72.5% 88.97114%, 69.3404% 90.44449%, 65.97296% 91.34679%, 62.5% 91.65064%, 37.5% 91.65064%, 34.02704% 91.34679%, 30.6596% 90.44449%, 27.5% 88.97114%, 24.64425% 86.97152%, 22.17911% 84.50639%, 20.17949% 81.65064%, 7.67949% 60%, 6.20615% 56.8404%, 5.30384% 53.47296%, 5% 50%, 5.30384% 46.52704%, 6.20615% 43.1596%, 7.67949% 40%, 20.17949% 18.34936%, 22.17911% 15.49361%, 24.64425% 13.02848%, 27.5% 11.02886%, 30.6596% 9.55551%, 34.02704% 8.65321%, 37.5% 8.34936%, 62.5% 8.34936%, 65.97296% 8.65321%, 69.3404% 9.55551%, 72.5% 11.02886%, 75.35575% 13.02848%, 77.82089% 15.49361%, 79.82051% 18.34936%);
    clip-path: polygon(92.32051% 40%, 93.79385% 43.1596%, 94.69616% 46.52704%, 95% 50%, 94.69616% 53.47296%, 93.79385% 56.8404%, 92.32051% 60%, 79.82051% 81.65064%, 77.82089% 84.50639%, 75.35575% 86.97152%, 72.5% 88.97114%, 69.3404% 90.44449%, 65.97296% 91.34679%, 62.5% 91.65064%, 37.5% 91.65064%, 34.02704% 91.34679%, 30.6596% 90.44449%, 27.5% 88.97114%, 24.64425% 86.97152%, 22.17911% 84.50639%, 20.17949% 81.65064%, 7.67949% 60%, 6.20615% 56.8404%, 5.30384% 53.47296%, 5% 50%, 5.30384% 46.52704%, 6.20615% 43.1596%, 7.67949% 40%, 20.17949% 18.34936%, 22.17911% 15.49361%, 24.64425% 13.02848%, 27.5% 11.02886%, 30.6596% 9.55551%, 34.02704% 8.65321%, 37.5% 8.34936%, 62.5% 8.34936%, 65.97296% 8.65321%, 69.3404% 9.55551%, 72.5% 11.02886%, 75.35575% 13.02848%, 77.82089% 15.49361%, 79.82051% 18.34936%);
    opacity: .07
}

.features-area .feature-box .single-item h4 {
    font-weight: 900
}

.features-area .feature-box .single-item p {
    margin: 0
}

.features-area .feature-box .single-item:nth-child(2n) .item {
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%)
}

.features-area .feature-box .single-item .item:hover {
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%)
}

.softar-features-area .features-box {
    margin: 0 -15px
}

.softar-features-area .single-item .item {
    padding: 30px;
    padding-top: 0;
    padding-bottom: 0
}

.softar-features-area .single-item .item i {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: var(--color-primary);
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.softar-features-area .single-item .item h4 {
    font-weight: 900
}

.softar-features-area .single-item .item p {
    margin: 0;
    color: #ccc
}

.software-feature-area .item {
    display: flex;
    background: var(--white);
    padding: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid #f7f1f1;
    border-radius: 10px
}

.software-feature-area .item .icon img {
    min-width: 50px;
    max-width: 50px;
    margin-right: 20px
}

.software-feature-area .item h4 {
    font-weight: 900
}

.software-feature-area .item:first-child {
    margin-top: 0;
    border: 1px solid transparent
}

.software-feature-area .item::after {
    position: absolute;
    left: 0;
    top: 50px;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--white);
    z-index: -1;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    transition: all .35s ease-in-out;
    opacity: 0;
    border-radius: 10px
}

.software-feature-area .item:first-child::after, .software-feature-area .item:hover::after {
    top: 0;
    opacity: 1
}

.software-feature-area .item p {
    margin-bottom: -5px
}

.software-feature-area .features-list {
    padding-left: 80px;
    border-left: 1px solid #e7e7e7
}

.software-feature-area .left-info {
    padding-right: 80px
}

.software-feature-area .left-info h2 {
    font-weight: 900;
    margin-bottom: 30px
}

.software-feature-area .left-info p:last-child {
    margin-bottom: 0
}

.software-feature-area .left-info a {
    margin-top: 20px
}

.software-feature-area .item i {
    position: absolute;
    left: -98px;
    top: 40%;
    height: 35px;
    width: 35px;
    line-height: 35px;
    background: var(--color-primary);
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    margin-top: -18px;
    transition: all .35s ease-in-out;
    opacity: 0
}

.software-feature-area .item:hover i, .software-feature-area .item:first-child i {
    top: 50%;
    opacity: 1
}

.software-feature-area .item:hover {
    border: 1px solid transparent
}

.process-area .info {
    padding-left: 35px
}

.process-area .info h2 {
    font-weight: 900;
    margin-bottom: 50px
}

.process-area .info li {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    display: flex
}

.process-area .info li:last-child {
    margin-bottom: 0
}

.process-area .info li h4 {
    font-weight: 900
}

.process-area .info li h4 span {
    font-size: 12px;
    background: #e9e9e9;
    display: inline-block;
    padding: 5px 10px;
    margin-left: 15px;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
    min-width: 72px;
    font-weight: 900
}

.process-area.bg-gray .info li h4 span {
    background: var(--white)
}

.process-area .info li h4 span::after {
    position: absolute;
    left: -8px;
    top: 0;
    content: "";
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #e9e9e9
}

.process-area.bg-gray .info li h4 span::after {
    border-right: 12px solid var(--white)
}

.process-area .info li p {
    margin: 0
}

.process-area .info ul {
    position: relative;
    z-index: 1
}

.process-area .info ul::after {
    position: absolute;
    left: 20px;
    top: 0;
    content: "";
    height: 100%;
    width: 1px
}

.process-area .info li i {
    display: inline-block;
    font-size: 45px;
    margin-right: 25px;
    padding-bottom: 20px;
    font-weight: 100;
    color: var(--color-primary)
}

.process-area .info li i.fa-cloud-download {
    font-size: 40px;
    margin-left: -5px
}

.process-area .thumb img {
    margin-left: -25%;
    max-width: 125%
}

.process-area.bg-gray .info li i {
    /*background: #edf5ff*/
}

.process-area .info li::after {
    position: absolute;
    left: 18px;
    top: 0;
    content: "";
    height: 135%;
    width: 1px;
    background: #ddd;
    z-index: -1
}

.process-area.bg-gray .info li::after {
    background: #ccc
}

.process-area .info li:last-child::after {
    display: none
}

.choose-us-area.padding-bottom-extra {
    padding-bottom: 200px
}

.choose-us-area .thumb {
    position: relative;
    z-index: 1
}

.choose-us-area .thumb img {
    max-width: 120%;
    margin-left: -20%
}

.choose-us-area .info {
    padding-left: 35px
}

.choose-us-area .fun-fact {
    position: relative;
    min-width: 120px
}

.choose-us-area .counter {
    position: relative
}

.choose-us-area .counter {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: 900;
    color: var(--color-heading);
    line-height: 1;
    margin-bottom: 5px
}

.choose-us-area .counter .operator {
    font-size: 40px;
    margin-left: 2px
}

.choose-us-area .medium {
    font-weight: 900;
    color: var(--color-heading);
    text-align: right;
    float: right
}

.choose-us-area .item {
    display: flex;
    margin-bottom: 30px
}

.choose-us-area .item:last-child {
    margin-bottom: 0
}

.choose-us-area .item .fun-fact {
    margin-right: 30px
}

.choose-us-area .item .content {
    border-left: 1px solid #ccc;
    padding-left: 30px
}

.choose-us-area .item .content p {
    margin: 0
}

.choose-us-area .info h4 {
    font-weight: 900;
    color: var(--color-primary)
}

.choose-us-area .info h2 {
    font-weight: 900;
    margin-bottom: 30px
}

.choose-us-area .info ul {
    margin-top: 15px;
    overflow: hidden
}

.choose-us-area .info ul li {
    display: flex;
    align-items: center;
    margin-top: 20px
}

.choose-us-area .progress-box {
    margin-top: 40px;
    position: relative
}

.choose-us-area .progress-box h5 {
    font-weight: 900
}

.choose-us-area .progress-box .progress {
    height: 8px;
    background: var(--white);
    overflow: inherit;
    box-shadow: 0 0 10px #ccc
}

.choose-us-area .progress-box .progress .progress-bar {
    background: var(--color-primary);
    position: relative;
    overflow: inherit;
    border-radius: 30px
}

.choose-us-area .progress-box .progress .progress-bar span {
    position: absolute;
    right: 0;
    top: -33px;
    color: var(--color-heading);
    z-index: 9;
    opacity: 1;
    font-size: 16px;
    font-weight: 900
}

.choose-us-area .info ul li h5 {
    margin: 0;
    font-weight: 900
}

.choose-us-area .info ul li i {
    display: inline-block;
    font-size: 30px;
    color: var(--color-primary);
    text-align: center;
    border-radius: 50%;
    margin-right: 14px
}

.buy-links .btn {
    color: #8b95a5;
    padding: 8px 12px;
    letter-spacing: 1px;
    border-radius: 2px;
    background-color: #fff;
    outline: none !important;
    -webkit-transition: .15s linear;
    transition: .15s linear
}

.buy-links .btn-lg {
    font-size: 16px;
    padding: 7px 20px;
    line-height: 32px
}

.buy-links .btn-round {
    border-radius: 10rem;
    -webkit-border-radius: 10rem
}

.buy-links .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff !important
}

.buy-links .btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.buy-links .btn-label {
    position: relative;
    padding-left: 52px;
    overflow: hidden
}

.buy-links label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

.buy-links .btn-label label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 36px;
    line-height: 1.5;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgba(0, 0, 0, .1);
    cursor: pointer;
    margin-bottom: 0
}

.buy-links .btn-label label i {
    font-size: 20px
}

.buy-links .btn-success {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff !important
}

.buy-links .btn-success:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.fun-factor-area .fun-fact-items {
    padding-bottom: 30px;
    background: linear-gradient(45deg, var(--color-secondary) 0%, var(--color-primary) 50%);
    position: relative
}

.fun-factor-area .fun-fact-items .item {
    border-right: 1px solid rgba(255, 255, 255, .3)
}

.fun-factor-area .fun-fact-items .item:last-child {
    border-right: none
}

.fun-factor-area .fun-fact .timer {
    font-size: 36px;
    font-weight: 800;
    color: var(--white)
}

.fun-factor-area .fun-fact .medium {
    display: block;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px
}

.fun-factor-area .fun-fact {
    position: relative
}

.fun-factor-area .fun-fact i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    font-size: 80px;
    opacity: .2;
    color: var(--white)
}

.fun-facts-area .shape {
    position: absolute;
    right: 0;
    top: 0;
    height: 70%;
    width: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    text-align: right
}

.fun-facts-area {
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media (min-width: 1024px) {
    .fun-facts-area {
        width: 90%;
        margin: auto;
        border-radius: 30px;
        max-width: 1500px
    }
}

.fun-facts-area .fun-fact {
    text-align: center
}

.fun-facts-area .fun-fact .counter {
    position: relative
}

.fun-facts-area .fun-fact .counter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-weight: 900;
    color: var(--color-heading);
    line-height: 1;
    margin-bottom: 5px;
    font-family: var(--font-heading)
}

.fun-facts-area .fun-fact .medium {
    font-weight: 600
}

.fun-facts-area .fun-fact .icon {
    display: block;
    margin: 30px 0 0;
    position: relative;
    z-index: 1
}

.fun-facts-area .fun-fact .icon img {
    height: 55px
}

.default-padding.default-padding2 {
    padding-top: 60px;
    padding-bottom: 60px
}

@media only screen and (min-width: 1200px) {
    .overview-area .container-full {
        margin-left: calc((100% - 1200px) / 2);
        width: auto;
        min-width: auto;
        max-width: inherit
    }
}

@media only screen and (min-width: 1200px) {
    .overview-area .overview-carousel.owl-carousel .owl-stage {
        left: -300px
    }
}

@media only screen and (max-width: 1200px) {
    .overview-area .item .content h4 {
        justify-content: center
    }
}

.overview-area.carousel-shadow .owl-stage-outer {
    margin: -15px;
    padding: 15px
}

.overview-area .item {
    position: relative
}

.overview-area .item .content {
    margin-top: 15px;
    margin-left: 30px
}

.overview-area .item img {
    box-shadow: 0 0 10px #e7e7e7;
    border-radius: 10px;
    border: 3px solid var(--white)
}

.overview-area .item .content h4 {
    margin: 0;
    font-weight: 900;
    text-transform: capitalize;
    display: flex;
    align-items: center
}

.overview-area .item .content h4 span {
    display: inline-block;
    margin-right: 60px;
    position: relative;
    font-size: 36px;
    font-weight: 900
}

.overview-area .item .content h4 span::after {
    position: absolute;
    right: -42px;
    top: 50%;
    content: "";
    height: 2px;
    width: 30px;
    background: var(--color-primary);
    margin-top: -1px
}

.overview-area .overview-carousel.owl-carousel .owl-dots {
    margin-top: 40px;
    margin-bottom: -8px
}

.overview-area .overview-carousel.owl-carousel .owl-dots .owl-dot span {
    display: block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--white);
    position: relative;
    z-index: 1;
    border: 2px solid #e7e7e7
}

.overview-area .overview-carousel.owl-carousel .owl-dots .owl-dot.active span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background: var(--color-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.center-tabs .nav-tabs {
    margin-bottom: 60px !important;
    text-align: center;
    border-bottom: 2px solid #e7e7e7
}

.center-tabs .nav-tabs li {
    float: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none
}

.center-tabs .nav-tabs li a {
    display: block;
    border: none;
    border-radius: 5px;
    padding: 10px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 900
}

.center-tabs .nav-tabs li a:hover, .center-tabs .nav-tabs li a:focus {
    background: 0 0
}

.center-tabs .nav-tabs li a.active {
    color: var(--color-primary)
}

.center-tabs .nav-tabs li a.active::after {
    position: absolute;
    left: 50%;
    bottom: -15px;
    content: "";
    height: 15px;
    width: 1px;
    background: var(--color-primary)
}

.center-tabs .nav-tabs li a.active::before {
    position: absolute;
    left: 50%;
    bottom: -24px;
    content: "";
    height: 10px;
    width: 10px;
    border: 2px solid var(--color-primary);
    margin-left: -5px;
    border-radius: 50%
}

.about-area .center-tabs {
    margin-top: 50px
}

.center-tabs .tab-content .info {
    padding-left: 35px
}

.tab-overview-area .center-tabs img {
    background: var(--white);
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px
}

.center-tabs .info h3 {
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
    padding-right: 40px
}

.center-tabs .info h3 strong {
    position: absolute;
    right: 0;
    opacity: .1;
    font-size: 40px;
    top: -10px
}

.center-tabs .info a i {
    font-size: 14px;
    margin-right: 2px
}

.center-tabs .info a {
    margin-top: 20px
}

.overview-grid-area .single-item {
    margin-bottom: 80px
}

.overview-grid-area .single-item:last-child {
    margin-bottom: 0
}

.overview-grid-area .single-item .info {
    padding-left: 35px
}

.overview-grid-area .single-item .info.order-lg-first {
    padding-right: 35px;
    padding-left: 15px
}

.overview-grid-area .single-item h4 {
    font-weight: 900;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.overview-grid-area .single-item h4 span {
    display: inline-block;
    margin-right: 60px;
    position: relative;
    font-size: 36px;
    font-weight: 900
}

.overview-grid-area .single-item h4 span::after {
    position: absolute;
    right: -42px;
    top: 50%;
    content: "";
    height: 2px;
    width: 30px;
    background: var(--color-primary);
    margin-top: -1px
}

.overview-grid-area .single-item ul {
    margin-top: 20px
}

.overview-grid-area .single-item ul li {
    padding: 0 15px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 900
}

.overview-grid-area .single-item ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "N";
    font-family: ElegantIcons;
    color: #4ac4f3
}

.clients-area .client-items {
    padding: 120px 50px;
    background: linear-gradient(97deg, rgba(74, 196, 243, 1) 45%, rgba(0, 184, 255, 1) 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgb(44 130 237/40%);
    position: relative;
    overflow: hidden
}

.clients-area .client-items .fixed-shape-bottom {
    width: 100%;
    background-size: cover;
    background-position: top left;
    bottom: auto;
    top: 200px;
    opacity: .4
}

.clients-area h2 {
    font-weight: 900;
    margin: 0
}

.clients-area .partner-carousel, .clients-area .clients-carousel {
    margin-top: 50px;
    position: relative
}

.clients-area .partner-carousel img, .clients-area .clients-carousel img {
    width: auto;
    margin: auto
}

.clients-area .partner-carousel::after {
    position: absolute;
    right: -50px;
    top: -165px;
    content: "";
    height: 300px;
    width: 250px;
    background: url(../img/shape/dotted-bg.png);
    z-index: -1
}

.clients-area.shape-less .partner-carousel::after {
    display: none
}

.clients-area.text-light .partner-carousel::after {
    display: none
}

ul.achivement li {
    display: inline-block;
    margin-right: 40px;
    border-right: 1px solid #ccc;
    padding-right: 40px;
    float: left
}

.text-light ul.achivement li {
    border-right: 1px solid rgba(255, 255, 255, .6)
}

ul.achivement li:last-child {
    padding: 0;
    margin: 0;
    border: none
}

ul.achivement li .counter {
    position: relative
}

ul.achivement li .counter {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: 900;
    color: var(--color-heading);
    line-height: 1;
    margin-bottom: 5px
}

.text-light ul.achivement li .counter {
    color: var(--white)
}

ul.achivement li .counter .operator {
    font-size: 40px;
    margin-left: 2px
}

ul.achivement li .medium {
    font-weight: 900;
    color: var(--color-heading);
    text-align: right;
    float: right
}

.text-light ul.achivement li .medium {
    color: var(--white)
}

.subscribe-area .subscribe-items {
    padding: 80px 50px;
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgb(44 130 237/40%);
    position: relative;
    overflow: hidden
}

.subscribe-area .subscribe-items .fixed-shape-bottom {
    width: 100%;
    background-size: cover;
    background-position: top left;
    bottom: auto;
    top: 200px;
    opacity: .4
}

.subscribe-area form {
    max-width: 80%;
    margin: 30px auto auto;
    position: relative
}

.subscribe-area form input {
    background: var(--white);
    border: none;
    min-height: 65px;
    border-radius: 50px;
    padding-left: 30px
}

.subscribe-area form input::-webkit-input-placeholder {
    color: var(--color-heading)
}

.subscribe-area form input::-moz-placeholder {
    color: var(--color-heading)
}

.subscribe-area form input:-ms-input-placeholder {
    color: var(--color-heading)
}

.subscribe-area form input:-moz-placeholder {
    color: var(--color-heading)
}

.subscribe-area form button {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 30px;
    min-height: 55px;
    min-width: 150px;
    font-weight: 600;
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    color: var(--white)
}

.subscribe-area form button i {
    font-size: 20px;
    margin-left: 2px;
    position: relative;
    top: 5px
}

.subscribe-area .subscribe-items h2 {
    font-weight: 900
}

.subscribe-area .col-lg-8.offset-lg-2 {
    position: relative;
    z-index: 1
}

.subscribe-area .col-lg-8.offset-lg-2 > i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: -39px;
    transform: translateX(-50%);
    font-size: 100px;
    z-index: -1;
    opacity: .2
}

.subscribe-area .subscribe-items > i:first-child {
    display: inline-block;
    position: absolute;
    left: 50px;
    top: 50px;
    font-size: 100px;
    opacity: .3
}

.software-single-details-area .single-item {
    margin-bottom: 120px
}

.software-single-details-area .single-item:last-child {
    margin-bottom: 0
}

.software-single-details-area .thumb {
    position: relative;
    border-radius: 10px;
    padding: 30px;
    background: #edf5ff;
    margin-top: 50px;
    margin-right: 80px
}

.software-single-details-area .thumb::after {
    position: absolute;
    right: -50px;
    bottom: -50px;
    content: "";
    height: 150px;
    width: 150px;
    background: url(../img/shape/dotted-bg.png);
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.54, .085, .5, .92);
    animation-timing-function: cubic-bezier(.54, .085, .5, .92);
    -webkit-animation-name: infiUpDown;
    animation-name: infiUpDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.software-single-details-area .single-item:nth-child(2n) .thumb::after {
    left: -50px;
    top: -50px;
    right: auto;
    bottom: auto
}

.software-single-details-area .order-lg-last .thumb {
    margin-right: 80px;
    margin-left: 0
}

.software-single-details-area .thumb img:first-child {
    border-radius: 10px
}

.software-single-details-area .thumb img:nth-child(2) {
    position: absolute;
    right: -80px;
    top: -50px;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    height: 180px;
    border-radius: 20px;
    background: var(--white);
    padding: 5px
}

.software-single-details-area .order-lg-last .thumb img:nth-child(2) {
    right: -80px;
    top: -50px
}

.software-single-details-area .info ul li {
    float: left;
    width: 50%;
    padding: 0 15px
}

.software-single-details-area .info ul {
    margin: 0 -15px;
    margin-top: 30px
}

.software-single-details-area .info ul li i {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--color-primary);
    color: var(--white);
    font-size: 30px;
    border-radius: 5px;
    font-weight: 500;
    margin-bottom: 25px
}

.software-single-details-area .info ul li:last-child i {
    background: var(--dark)
}

.software-single-details-area .info ul li h5 {
    font-weight: 900
}

.software-single-details-area .info ul li p {
    margin: 0
}

.software-single-details-area .info h2 {
    font-weight: 900;
    margin-bottom: 25px
}

.software-single-details-area .info {
    padding-right: 35px;
    overflow: hidden
}

.software-single-details-area .single-item:nth-child(2n) .info {
    padding-left: 35px;
    padding-right: 0
}

.fixed-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat
}

.team-area .fixed-shape {
    top: -120px
}

.team-area .team-items .single-item {
    margin-bottom: 30px
}

.team-area .team-items .thumb {
    position: relative;
    padding: 5px;
    background: var(--white);
    border-radius: 8px
}

.team-area .team-items .thumb img {
    border-radius: 8px
}

.team-area .team-items .info {
    padding: 30px;
    padding-bottom: 0;
    margin-bottom: -5px
}

.team-area .team-items .info h4 {
    font-weight: 900;
    margin-bottom: 5px
}

.team-area .team-items .info span {
    color: #959595;
    font-weight: 500;
    text-transform: capitalize
}

.team-area .team-items .social {
    position: absolute;
    right: 40px;
    bottom: 0;
    transition: all .35s ease-in-out;
    opacity: 0;
    visibility: hidden
}

.team-area .team-items .item:hover .social {
    visibility: visible;
    opacity: 1;
    bottom: -25px
}

.team-area .team-items .social label i {
    transform: rotate(45deg)
}

.share-button i {
    transition: .3s ease;
    font-weight: 500
}

.share-toggle:checked ~ .share-button i {
    transform: rotate(-180deg) !important
}

.share-toggle:checked ~ .share-icon:nth-child(3) {
    transform: translateY(-70px) rotate(0)
}

.share-toggle:checked ~ .share-icon:nth-child(4) {
    transform: translateY(-125px) rotate(0)
}

.share-toggle:checked ~ .share-icon:nth-child(5) {
    transform: translateY(-180px) rotate(0)
}

.share-toggle:checked ~ .share-icon:nth-child(6) {
    transform: translateY(-235px) rotate(0)
}

.share-button {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: var(--white);
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    border-radius: 10px;
    box-shadow: 0 0 0 5px var(--white);
    cursor: pointer;
    transition: .3s ease;
    transform: rotate(45deg)
}

.share-icon {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 45px;
    transform: translateX(0) rotate(180deg);
    cursor: pointer;
    transition: .3s ease-in-out
}

.team-area .team-items .thumb .social a {
    color: var(--white);
    font-weight: 300
}

.team-area .team-items .thumb .social a.facebook {
    background: #3b5998 none repeat scroll 0 0
}

.team-area .team-items .thumb .social a.twitter {
    background: #1da1f2 none repeat scroll 0 0
}

.team-area .team-items .thumb .social a.pinterest {
    background: #bd081c none repeat scroll 0 0
}

.team-area .team-items .thumb .social a.g-plus {
    background: #db4437 none repeat scroll 0 0
}

.team-area .team-items .thumb .social a.linkedin {
    background: #0077b5 none repeat scroll 0 0
}

.team-area .team-items .thumb .social a.instagram {
    background: #3f729b none repeat scroll 0 0
}

.team-single-area .team-content-top {
    bottom: -50px;
    margin-top: -50px;
    position: relative;
    z-index: 1
}

.team-single-area .team-content-top .right-info {
    padding-left: 35px;
    padding-right: 50px;
    margin-bottom: 50px
}

.team-single-area .team-content-top .right-info h2 {
    font-weight: 900
}

.team-single-area .team-content-top .right-info span {
    display: block;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 25px
}

.team-single-area .right-info ul {
    margin-top: 25px;
    border-top: 1px solid #e7e7e7;
    padding-top: 17px
}

.team-single-area .right-info ul li {
    margin-top: 10px;
    color: var(--color-heading)
}

.team-single-area .right-info ul li strong {
    font-weight: 900
}

.team-single-area .right-info ul li a {
    font-weight: 600
}

.team-single-area .right-info ul li a:hover {
    color: var(--color-primary)
}

.team-single-area .right-info .social {
    display: flex;
    margin-top: 25px;
    font-weight: 900;
    align-items: center
}

.team-single-area .right-info .social h4 {
    font-weight: 900;
    margin-bottom: 0;
    margin-right: 25px
}

.team-single-area .right-info .social ul {
    margin: 0;
    padding: 0;
    border: none
}

.team-single-area .right-info .social .share-link {
    position: relative;
    z-index: 1;
    margin-left: 15px;
    padding-right: 20px
}

.team-single-area .right-info .social .share-link > i {
    display: inline-block;
    height: 45px;
    background: var(--white);
    box-shadow: 0 0 10px #ccc;
    line-height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-primary)
}

.team-single-area .right-info .social ul {
    display: flex;
    list-style-type: none;
    grid-gap: 10px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out 0s
}

.team-single-area .right-info .social .share-link:hover ul {
    left: 58px;
    opacity: 1;
    pointer-events: auto
}

.team-single-area .right-info .social ul li {
    display: inline-block;
    margin: 0
}

.team-single-area .right-info .social ul li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 47px;
    background: #f1f1f1;
    text-align: center;
    border-radius: 50%
}

.team-single-area .bottom-info h2 {
    font-weight: 900;
    margin-bottom: 25px
}

.team-single-area .bottom-info p:last-child {
    margin-bottom: 0
}

.team-single-area .bottom-info .skill-items {
    padding-left: 35px
}

.skill-items .progress-box {
    margin-bottom: 40px
}

.team-single-area .team-content-top img {
    border-radius: 30px
}

.skill-items .progress-box:last-child {
    margin-bottom: 0
}

.skill-items .progress-box h5 {
    text-transform: capitalize;
    font-weight: 900;
    margin-bottom: 5px;
    text-align: left;
    position: relative;
    z-index: 1;
    font-size: 16px
}

.skill-items .progress-box h5 span {
    position: absolute;
    font-size: 50px;
    line-height: 1;
    top: -21px;
    left: 0;
    z-index: -1;
    opacity: .05;
    font-weight: 900
}

.skill-items .skill-items {
    margin-top: 40px
}

.skill-items .progress-box .progress {
    background: 0 0;
    border-bottom: none;
    box-shadow: inherit;
    border-radius: inherit;
    overflow: inherit
}

.skill-items .progress-box .progress .progress-bar {
    height: 6px;
    border-radius: 30px;
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 15%);
    top: 12px;
    position: relative;
    overflow: inherit;
    background-size: 289% auto
}

.skill-items .progress-box .progress .progress-bar span {
    position: absolute;
    right: 0;
    top: -40px;
    display: block;
    font-size: 17px;
    color: var(--color-heading);
    font-weight: 700
}

.testimonials-area {
    overflow: hidden
}

.testimonials-area .item .provider {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.testimonials-area .item .provider img {
    height: 70px;
    width: 70px;
    min-width: 70px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid rgba(255, 255, 255, .4)
}

.testimonials-area .item .provider h4 {
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--white)
}

.testimonials-area .item .provider span {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px
}

.testimonials-area .item .reason {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding-top: 20px
}

.testimonials-area .item .reason h5 {
    margin: 0;
    font-weight: 900;
    color: var(--white)
}

.testimonials-area .item {
    padding: 50px 37px;
    background: linear-gradient(45deg, var(--white) 0%, var(--color-secondary) 35%);
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.testimonials-area .item::after {
    position: absolute;
    right: 50px;
    top: 20px;
    content: "\f10d";
    font-family: "font awesome 5 pro";
    color: var(--white);
    font-size: 150px;
    z-index: -1;
    opacity: .1;
    font-weight: 100;
    transform: rotate(180deg)
}

.testimonials-area .item .reason i {
    font-size: 12px;
    color: #ffca40
}

.testimonials-area .item p {
    color: var(--white);
    opacity: .9
}

.pricing-area {
    position: relative;
    z-index: 1
}

.pricing-area .shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1
}

.pricing-area .single-item {
    margin-bottom: 30px
}

.pricing-area .pricing-item {
    padding: 50px 40px;
    background: var(--dark-secondary);
    border-radius: 5px;
    position: relative
}

.pricing-area .pricing-item > i {
    display: inline-block;
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 60px;
    color: var(--color-primary);
    font-weight: 100;
    opacity: .2
}

.pricing-item .pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    font-weight: 700;
    position: relative;
    /*z-index: 1*/
}

.pricing-item .pricing-header h4 {
    margin: 0;
    font-weight: 900;
    /*background: var(--white);*/
    padding-right: 20px
}

.pricing-item .price h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px
}

.pricing-item .price h2 sub {
    font-size: 15px;
    font-weight: 500;
    margin-left: -10px
}

.pricing-item .price h2 sup {
    font-weight: 700;
    font-size: 36px;
    top: -20px
}

.pricing-item .btn {
    margin-bottom: 30px
}

.pricing-item li {
    line-height: 35px;
    color: var(--color-heading);
    font-size: 16px;
    font-weight: 400
}

.pricing-item li i {
    font-weight: 400;
    margin-right: 5px;
    color: #36cc72;
    font-size: 15px
}

.pricing-item li i.fa-times {
    color: red
}

.pricing-item .pricing-header::after {
    position: absolute;
    left: 50%;
    top: 13px;
    content: "";
    height: 1px;
    width: 200px;
    background: #ccc;
    transform: translateX(-50%);
    z-index: -1
}

.pricing-item .pricing-header span {
    /*background: var(--white);*/
    padding-left: 20px
}

.pricing-item .pricing-header span.price-recom {
    background: var(--color-primary);
    padding: 0 20px;
    color: #fff;
    border-radius: 30px
}

.blog-area .single-item {
    margin-bottom: 30px
}

.blog-area .blog-grid {
    margin-bottom: 30px
}

.blog-area .item {
    background: var(--white);
    margin-bottom: 30px;
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    border-radius: 8px
}

.blog-area .item:last-child {
    margin-bottom: 0
}

.blog-area .item .info {
    padding: 30px
}

.blog-area .item .info h1, .blog-area .item .info h2, .blog-area .item .info h3, .blog-area .item .info h4, .blog-area .item .info h5, .blog-area .item .info h6 {
    font-weight: 900;
    line-height: 1.4
}

.blog-area .item .info h1 a, .blog-area .item .info h2 a, .blog-area .item .info h3 a, .blog-area .item .info h4 a, .blog-area .item .info h5 a, .blog-area .item .info h6 a {
    font-weight: 900
}

.blog-area .item .info a.btn {
    margin-top: 8px
}

.blog-area .item .date {
    display: inline-block;
    background: var(--white);
    padding: 5px 25px;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 0 0 10px #ccc
}

.blog-area .item .date i {
    margin-right: 3px
}

.blog-area .item .date span {
    display: block;
    font-size: 14px;
    background: var(--color-primary);
    color: var(--white);
    padding: 0 19px;
    border-radius: 0 0 8px 8px;
    min-width: 70px
}

.blog-area .thumb .date strong {
    padding: 10px 5px;
    display: inline-block
}

.blog-area .thumb {
    position: relative;
    padding-bottom: 0
}

.blog-area .thumb img {
    border-radius: 8px 8px 0 0
}

.blog-area .thumb .date {
    position: absolute;
    right: 45px;
    bottom: -25px;
    margin: 0;
    border-radius: 8px;
    padding: 0;
    font-weight: 900;
    font-family: var(--font-heading)
}

.blog-area .item .info .meta ul li {
    font-size: 14px;
    display: inline-block;
    margin-right: 20px;
    text-transform: capitalize;
    font-weight: 500
}

.blog-area .item .info .meta ul li a {
    color: var(--color-paragraph);
    font-weight: 500
}

.blog-area .item .info .meta ul li a:hover {
    color: var(--color-primary)
}

.blog-area .item .info .meta {
    margin-bottom: 15px
}

.blog-area .item .info .meta ul li i {
    margin-right: 5px;
    color: var(--color-primary);
    font-weight: 3;
    font-size: 17px;
    position: relative;
    top: 1px
}

.blog-area .item .info h4 a {
    line-height: 1.4;
    font-weight: 900
}

.blog-area .item .info h4 a:hover {
    color: var(--color-primary)
}

.blog-area .item .info p:last-child {
    margin-bottom: 0
}

.pagi-area .pagination {
    text-align: center;
    display: block;
    margin-top: 30px
}

.pagi-area .pagination li.page-item {
    float: none;
    display: inline-block
}

.pagi-area .pagination li a {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    margin: 0 3px;
    margin-top: 5px;
    color: var(--color-heading);
    font-weight: 800
}

.pagi-area .pagination li.active a {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.blog-area.left-sidebar .blog-content {
    float: right
}

.blog-area.left-sidebar .sidebar {
    padding-right: 35px
}

.blog-area.right-sidebar .sidebar {
    padding-left: 35px
}

.blog-area .sidebar .title {
    display: block
}

.blog-area .sidebar .title h4 {
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 20px;
    display: inline-block;
    padding-bottom: 15px
}

.blog-area .sidebar .title h4::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--color-primary)
}

.blog-area .sidebar input[type=text] {
    border: 1px solid #e7e7e7;
    border-radius: 30px;
    box-shadow: inherit;
    min-height: 60px
}

.blog-area .sidebar form {
    position: relative
}

.blog-area .sidebar button[type=submit] {
    background: var(--color-primary);
    border: medium;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    min-height: 50px;
    width: 50px;
    position: absolute;
    right: 5px;
    text-transform: uppercase;
    top: 5px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    border-radius: 50%
}

.blog-area .sidebar input[type=submit]:hover {
    background: var(--color-primary) none repeat scroll 0 0
}

.blog-area .sidebar .sidebar-item {
    float: left;
    margin-bottom: 50px;
    width: 100%
}

.blog-area .sidebar .sidebar-item:last-child {
    margin-bottom: 0
}

.blog-area .sidebar .sidebar-item.category .sidebar-info, .blog-area .sidebar .sidebar-item.archives .sidebar-info {
    margin-top: -5px
}

.blog-area .sidebar .sidebar-item.category li {
    display: block;
    position: relative;
    margin-top: 13px
}

.blog-area .sidebar .sidebar-item.category li a {
    display: flex;
    text-transform: capitalize;
    font-weight: 900;
    color: var(--color-paragraph);
    align-items: center;
    justify-content: space-between
}

.blog-area .sidebar .sidebar-item li a:hover {
    color: var(--color-primary)
}

.blog-area .sidebar .sidebar-item.category li a span {
    font-size: 12px;
    margin-left: 5px;
    background: #f1f1f1;
    min-width: 40px;
    padding: 3px;
    text-align: center;
    color: var(--color-heading);
    border-radius: 30px
}

.blog-area .sidebar .sidebar-item.category li:first-child a span {
    top: 0
}

.blog-area .sidebar .sidebar-item.category li:first-child {
    margin-top: 0;
    padding-top: 0
}

.blog-area .sidebar .sidebar-item.category li:first-child a::after {
    top: 0
}

.blog-area .sidebar .sidebar-item.category li:last-child {
    border: medium;
    margin-bottom: 0;
    padding-bottom: 0
}

.sidebar-item.recent-post li a {
    color: var(--color-heading);
    display: block;
    font-weight: 900
}

.sidebar-item.recent-post li a:last-child {
    display: inline-block
}

.sidebar-item.recent-post .meta-title {
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: capitalize;
    font-size: 13px
}

.sidebar-item.recent-post .meta-title i {
    margin-right: 3px;
    font-weight: 500
}

.sidebar-item.recent-post li a:hover {
    color: var(--color-primary)
}

.sidebar-item.recent-post li a span {
    display: inline-block;
    color: #002359
}

.sidebar-item.recent-post li span {
    display: inline-block;
    font-size: 13px;
    color: #999;
    font-weight: 500
}

.sidebar-item.recent-post .meta-title a {
    color: #999
}

.sidebar-item.recent-post li {
    color: #cdd0d3
}

.sidebar-item.recent-post li {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
    padding-bottom: 15px
}

.sidebar-item.recent-post li:last-child {
    border: medium;
    margin: 0;
    padding: 0
}

.sidebar-item.recent-post li:last-child {
    margin: 0
}

.sidebar-item.recent-post li .thumb {
    display: table-cell;
    padding: 0;
    padding-top: 5px;
    vertical-align: top;
    width: 80px
}

.sidebar-item.recent-post .thumb img {
    width: 100%;
    border-radius: inherit
}

.sidebar-item.recent-post li .info {
    box-shadow: inherit;
    color: #837f7e;
    display: table-cell;
    line-height: 26px;
    padding: 0;
    padding-left: 25px;
    vertical-align: top
}

.sidebar-item.recent-post li .info a {
    text-decoration: inherit;
    font-weight: 900;
    font-size: 18px
}

.blog-area .sidebar-item.gallery ul {
    margin: -7px;
    overflow: hidden
}

.sidebar-item.gallery ul li {
    box-sizing: border-box;
    float: left;
    padding: 7px;
    width: 33.333%
}

.sidebar-item.gallery ul li img {
    min-height: 70px;
    width: 100%
}

.sidebar-item.archives ul li {
    display: block;
    margin-bottom: 20px;
    position: relative
}

.sidebar-item.archives ul li:last-child {
    margin-bottom: 0
}

.sidebar-item.archives ul li a {
    display: inline-block;
    font-weight: 800;
    text-transform: capitalize;
    z-index: 1;
    padding-left: 25px;
    font-size: 14px;
    color: var(--color-paragraph)
}

.sidebar-item.archives ul li a::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f07b";
    font-family: "font awesome 5 pro";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
    font-weight: 500
}

.sidebar-item.social-sidebar ul {
    margin-bottom: -10px;
    overflow: hidden
}

.sidebar-item.social-sidebar li {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.sidebar-item.social-sidebar li a {
    background: #002359 none repeat scroll 0 0;
    border: medium;
    color: var(--white);
    display: inline-block;
    height: 50px;
    line-height: 54px;
    margin-bottom: 5px;
    text-align: center;
    width: 50px;
    font-size: 14px
}

.sidebar-item.social-sidebar li a:hover {
    color: var(--white) !important
}

.sidebar-item.social-sidebar li.facebook a {
    background: #3b5998 none repeat scroll 0 0
}

.sidebar-item.social-sidebar li.twitter a {
    background: #1da1f2 none repeat scroll 0 0
}

.sidebar-item.social-sidebar li.pinterest a {
    background: #bd081c none repeat scroll 0 0
}

.sidebar-item.social-sidebar li.g-plus a {
    background: #db4437 none repeat scroll 0 0
}

.sidebar-item.social-sidebar li.linkedin a {
    background: #0077b5 none repeat scroll 0 0
}

.sidebar-item.tags ul {
    margin-top: -8px
}

.sidebar-item.tags ul li {
    display: inline-block
}

.sidebar-item.tags ul li a {
    border: 1px solid #e7e7e7;
    display: inline-block;
    font-weight: 800;
    margin-top: 8px;
    margin-right: 5px;
    padding: 5px 25px;
    text-transform: capitalize;
    font-size: 13px;
    border-radius: 30px;
    color: var(--color-paragraph);
    background: #fafafa
}

.sidebar-item.tags ul li a:hover {
    color: var(--color-primary)
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 50px;
    text-align: center;
    position: relative;
    z-index: 1
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    opacity: .7
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info h4 {
    color: var(--white);
    font-weight: 900
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info p {
    color: var(--white)
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info a {
    display: inline-block;
    color: var(--white);
    border: 1px dashed rgba(255, 255, 255, .7);
    padding: 10px 25px;
    margin-top: 9px
}

.blog-area .blog-items.content-less .item .info > a {
    margin-top: 10px
}

.blog-area.single .item .content-box span {
    background: var(--color-primary) none repeat scroll 0 0;
    color: var(--white);
    display: inline-block;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 3px 20px;
    text-transform: uppercase
}

.blog-area.single .item .content-box h2, .blog-area.single .item .content-box h3, .blog-area.single .item .content-box h4 {
    font-weight: 500
}

.blog-area.single .content-box .cats {
    float: left;
    margin-right: 5px
}

.blog-area.single .content-box .meta .date {
    float: right;
    letter-spacing: 1px;
    text-transform: uppercase
}

.blog-area.single .content-box .meta {
    overflow: hidden;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0
}

.blog-area .blog-items .info > ul li {
    margin-bottom: 5px;
    color: var(--color-heading);
    position: relative;
    z-index: 1;
    padding-left: 15px;
    display: block
}

.blog-area .blog-items .info > ul {
    margin-bottom: 25px;
    margin-top: 25px
}

.blog-area .blog-items .info > ul li::after {
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    height: 5px;
    width: 5px;
    background: #333;
    border-radius: 50%
}

.blog-area.single .item {
    margin-bottom: 0
}

.blog-area .item blockquote {
    position: relative;
    z-index: 1;
    border: none;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #c3d2ff;
    font-weight: 400;
    line-height: 1.6;
    background: var(--dark) !important;
    padding: 80px 50px;
    font-style: italic
}

.blog-area .item blockquote cite {
    display: block;
    margin-top: 15px;
    color: #999;
    font-weight: 500
}

.blog-area .item blockquote::before {
    position: absolute;
    left: 0;
    top: 5%;
    content: "";
    height: 90%;
    width: 3px;
    background: var(--color-primary)
}

.blog-area blockquote::after {
    position: absolute;
    right: 50px;
    content: "\f10d";
    font-family: "font awesome 5 pro";
    color: var(--white);
    bottom: -25px;
    font-weight: 100;
    opacity: .1;
    font-size: 120px;
    font-style: normal;
    line-height: 1
}

.blog-area .item blockquote p {
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 34px;
    font-size: 16px;
    font-style: italic;
    font-weight: 500
}

.blog-area .blog-content .post-tags, .blog-area .blog-content .share {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
    padding-bottom: 6px
}

.blog-area .blog-content .share li {
    display: inline-block;
    margin-left: 15px
}

.blog-area .blog-content .share li a {
    display: inline-block;
    color: var(--color-primary)
}

.blog-area .blog-content .share li.facebook a {
    color: #3b5998
}

.blog-area .blog-content .share li.twitter a {
    color: #1da1f2
}

.blog-area .blog-content .share li.pinterest a {
    color: #bd081c
}

.blog-area .blog-content .share li.g-plus a {
    color: #db4437
}

.blog-area .blog-content .share li.linkedin a {
    color: #0077b5
}

.blog-area .blog-content .post-tags .tags a {
    background: #f7f7f7;
    padding: 10px 15px;
    font-size: 14px;
    margin-right: 3px;
    margin-bottom: 5px;
    display: inline-block
}

.blog-area.single .post-pagi-area {
    margin-top: 50px;
    overflow: hidden
}

.blog-area.single .post-pagi-area a {
    display: inline-block;
    font-weight: 900;
    text-transform: capitalize;
    color: #999;
    border-radius: 30px
}

.blog-area.single .post-pagi-area h5 {
    margin: 0;
    margin-top: 5px;
    font-weight: 900;
    transition: all .35s ease-in-out;
    font-size: 18px
}

.blog-area.single .post-pagi-area h5:hover {
    color: var(--color-primary)
}

.blog-area.single.color-yellow .post-pagi-area a:hover {
    color: #ff9800
}

.blog-area.single .post-pagi-area a:last-child {
    float: right
}

.blog-area.single .post-pagi-area a:first-child i {
    margin-right: 3px
}

.blog-area.single .post-pagi-area a:last-child i {
    margin-left: 3px
}

.comments-area .commen-item .comments-info p {
    display: block;
    margin: 0
}

.blog-area .contact-comments .submit {
    margin-bottom: 0
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.blog-area .comments-form {
    margin-top: 50px
}

.blog-area .blog-comments .comments-list {
    margin-bottom: 50px
}

.blog-area .blog-comments .comments-list:last-child {
    margin-bottom: 0
}

.comments-list .commen-item .avatar {
    float: left;
    height: 105px;
    width: 105px;
    min-width: 105px
}

.comments-list .commen-item .content {
    padding: 30px;
    background: #edf5ff;
    position: relative
}

.comments-list .commen-item .content::after {
    position: absolute;
    left: -14px;
    top: 30px;
    content: "";
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #edf5ff
}

.comments-list .commen-item .avatar img {
    height: 80px;
    width: 80px;
    border-radius: 50%
}

.comments-list .commen-item {
    margin-bottom: 50px;
    display: flex
}

.comments-list .commen-item:last-child {
    margin-bottom: 0
}

.comments-list .commen-item.reply {
    margin-left: 80px
}

.comments-area {
    margin-top: 40px
}

.comments-area .comments-title h2, .comments-area .comments-title h3, .comments-area .comments-title h4 {
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: capitalize
}

.comments-list .commen-item .content h3, .comments-list .commen-item .content h4, .comments-list .commen-item .content h5 {
    font-size: 16px;
    font-weight: 900;
    text-transform: capitalize;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.comments-list .commen-item .content .reply a {
    font-size: 14px;
    background: #0a1015;
    color: var(--white);
    display: inline-block;
    padding: 8px
}

.comments-list .commen-item .content .reply a:hover {
    background: var(--color-primary)
}

.comments-list .commen-item .content .reply i {
    font-size: 12px
}

.comments-list .commen-item .content p:last-child {
    margin-bottom: 0
}

.comments-list .commen-item .content .title {
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500
}

.comments-list .commen-item .content .title span {
    font-weight: 400;
    color: var(--color-primary);
    display: block;
    margin-top: 10px;
    font-size: 14px
}

.comments-list .commen-item .content .title span i {
    font-weight: 500;
    margin-right: 5px
}

.comments-list .commen-item .content .title span i.fa-reply {
    font-weight: 900;
    margin-right: 3px
}

.comments-list .commen-item .content .title span a {
    margin-left: 10px
}

.comments-info a {
    border: 1px solid #e7e7e7;
    color: #002359;
    display: inline-block;
    font-size: 12px;
    margin-top: 5px;
    padding: 1px 15px;
    background: var(--white);
    text-transform: capitalize;
    font-weight: 900;
    border-radius: 5px;
    position: absolute;
    right: 30px;
    top: 25px
}

.comments-list .commen-item .content p {
    margin: 0
}

.comments-info a:hover {
    color: var(--color-primary)
}

.comments-info a i {
    margin-right: 5px
}

.comments-form input, .comments-form textarea {
    border: none;
    box-shadow: inherit;
    padding: 15px;
    background: #f7f7f7
}

.comments-form textarea {
    min-height: 180px;
    padding: 15px
}

.blog-area.full-blog.single-blog .form-group.submit {
    margin-bottom: 0
}

.comments-form button {
    background: 0 0;
    margin-top: 15px;
    padding: 13px 40px;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 700;
    transition: all .35s ease-in-out;
    border: 2px solid var(--color-primary) !important;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden
}

.comments-form button::after {
    position: absolute;
    left: -10px;
    top: -10px;
    content: "";
    height: 120%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all .35s ease-in-out;
    border-radius: 30px
}

.comments-form button:hover::after {
    width: 120%
}

.comments-form button:hover {
    color: var(--white)
}

.comments-form .title h2, .comments-form .title h3, .comments-form .title h4 {
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: capitalize
}

.blog-area .contact-comments .comments {
    margin-top: 20px
}

.blog-area.single .blog-items .item .contact-comments .col-md-6 {
    float: left;
    padding: 0 15px
}

.pagination li {
    display: inline-block;
    margin-top: 7px
}

ul.pagination {
    display: block;
    margin-top: 30px
}

.pagination li a {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 0 2px;
    color: var(--color-primary);
    font-weight: 800
}

.pagination li.page-item.active a {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.error-page-area .error-box img {
    max-width: 60%;
    margin-bottom: 30px
}

.error-page-area .error-box h1 {
    font-size: 200px;
    font-weight: 900;
    line-height: 140px;
    margin-bottom: 30px;
    letter-spacing: -13px
}

.error-page-area .error-box h2 {
    font-weight: 900
}

.error-page-area .error-box p {
    padding: 0 15%
}

.error-page-area .error-box a.btn {
    margin-top: 10px
}

.svg-shape svg {
    margin-bottom: -10px
}

.svg-shape svg.gray {
    fill: #edf5ff
}

.svg-shape svg.light {
    fill: var(--white)
}

.svg-shape svg.theme {
    fill: #ff4450
}

.svg-shape svg.dark {
    fill: #111d30
}

.svg-shape svg.absolute {
    position: absolute
}

.svg-shape svg.absolute.top {
    top: 0;
    left: 0
}

.svg-shape svg.absolute.bottom {
    bottom: 0;
    left: 0
}

footer .f-items .f-item.contact-widget {
    position: relative;
    z-index: 1
}

footer .f-items .f-item.contact-widget::after {
    position: absolute;
    left: -50px;
    top: -200px;
    height: 300%;
    width: 500%;
    background: var(--dark-secondary);
    content: "";
    z-index: -1
}

footer {
    overflow: hidden
}

footer img, footer .widget-title {
    margin-bottom: 30px;
    font-weight: 900
}

footer.bg-dark .f-items .f-item p, footer.bg-dark .f-items .f-item a, footer.bg-dark .f-items .f-item {
    color: #adb5bd
}

footer .f-items .f-item form {
    position: relative;
    margin-top: 30px
}

footer .f-items .f-item form input {
    background: #283353;
    color: var(--white);
    border: 1px dashed rgba(255, 255, 255, .1);
    font-size: 14px;
    padding-left: 20px
}

footer .f-items .f-item form input::-webkit-input-placeholder {
    color: #adb5bd
}

footer .f-items .f-item form input::-moz-placeholder {
    color: #adb5bd
}

footer .f-items .f-item form input:-ms-input-placeholder {
    color: #adb5bd
}

footer .f-items .f-item form input:-moz-placeholder {
    color: #adb5bd
}

footer .f-items .f-item form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: var(--color-primary);
    color: var(--white);
    font-size: 25px;
    line-height: 55px;
    border-radius: 0 5px 5px 0
}

footer .f-items .f-item form button::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 30px;
    width: 1px;
    margin-top: -15px;
    opacity: .1;
    border-left: 1px solid var(--white)
}

footer .f-items .f-item.about {
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding-right: 40px;
    margin-right: 10px
}

footer .f-items .f-item.about img {
    height: 60px
}

footer .f-items .f-item.link li {
    margin-bottom: 12px
}

footer .f-items .f-item.link li:last-child {
    margin-bottom: 0
}

footer .f-items .f-item.link li a:hover {
    color: var(--white);
    margin-left: 10px
}

footer .f-items .f-item.link li a {
    font-weight: 500
}

footer .f-items .f-item.link li a i {
    font-size: 12px;
    margin-right: 3px
}

footer .f-items .f-item .address {
    margin-top: 30px
}

footer .f-items .f-item .address li {
    display: flex;
    margin-bottom: 25px
}

footer .f-items .f-item .address li i {
    display: inline-block;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 20px;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border: 1px dashed rgba(255, 255, 255, .3);
    font-weight: 300;
    font-size: 18px
}

footer .f-items .f-item .address li:last-child {
    margin-bottom: 0
}

footer .f-items .f-item .address li strong {
    display: block;
    text-transform: uppercase;
    color: var(--white);
    font-size: 15px
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 30px 0;
    z-index: 1;
    position: relative;
    background: var(--dark)
}

footer .footer-bottom ul li {
    display: inline-block;
    margin-left: 15px
}

footer .footer-bottom p {
    margin: 0
}

footer.bg-dark .footer-bottom p, footer.bg-dark .footer-bottom a {
    color: #adb5bd
}

footer.bg-dark .footer-bottom a {
    font-size: 14px
}

footer.bg-dark .footer-bottom a:hover {
    color: var(--white)
}

.no-js #loader {
    display: none
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0
}

.se-pre-con {
    display: none !important;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(../img/preloader.gif) center no-repeat #fff;
    text-align: center
}

.banner-area.auto-height .content-box .thumb-inner img {
    border: 5px solid var(--white);
    box-shadow: 0 6px 12px 0 #00497628;
    border-radius: 10px
}

.heading-left {
    margin-bottom: 60px
}

.heading-left h5 {
    text-transform: uppercase;
    font-weight: 900;
    color: var(--color-primary)
}

.heading-left h2 {
    font-weight: 900;
    margin: 0
}

.heading-left p {
    margin: 0
}

.video-btn i::before {
    left: 2px;
    position: relative
}

.feature-style-one {
    margin-bottom: 30px
}

.feature-style-one .item {
    padding: 67px 30px;
    background: var(--white);
    box-shadow: 1px 4px 20px -2px rgb(0 0 0/10%);
    border-radius: 8px
}

.feature-style-one i {
    display: inline-block;
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--white);
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    border-radius: 8px;
    position: relative;
    z-index: 1
}

.feature-style-one i::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../img/shape/23.png)
}

.feature-style-one h4 {
    font-weight: 900
}

.feature-style-one p {
    margin-bottom: -5px
}

.overview-area .item .thumb {
    position: relative
}

.overview-area .item .thumb .video-play-button {
    font-size: 14px;
    height: 40px;
    left: auto;
    line-height: 40px;
    padding-left: 0;
    right: 50px;
    top: 50px;
    transform: inherit;
    width: 40px;
    position: absolute;
    text-align: center
}

.video-play-button.theme:before, .video-play-button.theme:after {
    background: var(--color-primary) repeat scroll 0 0;
    height: 60px;
    width: 60px
}

.overview-area .item .thumb .video-play-button i {
    line-height: 40px
}

.advanced-features-area {
    position: relative;
    z-index: 1
}

.advanced-features-area .bottom-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-repeat: no-repeat
}

.free-trial-area {
    position: relative;
    z-index: 1
}

.free-trial-area .shape-right {
    position: absolute;
    right: 0;
    top: -100px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: right top
}

.trial-box {
    margin-top: 50px;
    padding: 120px 50px;
    background: var(--color-primary);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top
}

.trial-box .illustration {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: -1;
    opacity: .7
}

.trial-box h5 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 20px
}

.trial-box h2 {
    font-weight: 900
}

.trial-box form {
    position: relative;
    margin-top: 30px
}

.trial-box input {
    background: var(--white);
    border: none;
    min-height: 65px;
    border-radius: 50px;
    padding-left: 30px
}

.trial-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 30px;
    min-height: 55px;
    min-width: 150px;
    font-weight: 600;
    background: linear-gradient(45deg, #02ebad 0%, var(--color-primary) 50%);
    color: var(--white)
}

.banner-area.banner-style-three.auto-height {
    padding-top: 200px
}

.banner-style-three {
    background-size: cover;
    background-position: bottom right
}

.banner-style-three img {
    max-width: 150%;
    margin-top: 50px
}

.banner-style-three.auto-height .info {
    margin-top: -180px
}

.banner-area .shape-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 500px;
    width: 100%;
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat
}

.banner-area.banner-style-three h2 {
    line-height: 1.2
}

.partner-carousel.owl-carousel .owl-item img {
    margin: auto;
    width: auto
}

.clients-style-one-box h3 {
    font-weight: 600;
    margin-bottom: 40px
}

.clients-style-one-box h3 strong {
    font-size: 38px;
    border-bottom: 2px solid;
    line-height: 1;
    color: var(--color-primary)
}

.half-bg-top-gray {
    height: 120px;
    width: 100%;
    background: #232323;
    position: absolute;
    left: 0;
    top: 0
}

.gallery-area .magnific-mix-gallery {
    margin: -15px
}

.gallery-items.colums-3 .pf-item {
    float: left;
    padding: 15px;
    width: 33.3333%
}

.gallery-items.colums-2 .pf-item {
    float: left;
    padding: 15px;
    width: 50%
}

.gallery-items.colums-4 .pf-item {
    float: left;
    padding: 15px;
    width: 25%
}

.gallery-items .pf-item .overlay {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px
}

.gallery-items .pf-item .overlay:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 170%;
    top: 0;
    transform: skewX(45deg);
    transition: all .55s ease-in-out;
    background-color: var(--color-primary);
    opacity: .6
}

.gallery-items .pf-item .overlay:hover:after {
    left: -170%;
    top: 0
}

.gallery-items .pf-item .overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: all .5s ease 0s
}

.gallery-items .pf-item .overlay:hover:before {
    opacity: 1
}

.gallery-items .pf-item .overlay .content {
    position: absolute;
    left: 40px;
    bottom: 30px;
    z-index: 1
}

.gallery-items .pf-item .overlay .content .title {
    transition: all .35s ease-in-out;
    transform: translateX(50px);
    opacity: 0
}

.gallery-items .pf-item .overlay:hover .content .title {
    transform: translateX(0);
    opacity: 1
}

.gallery-items .pf-item .overlay .content .title span {
    color: #ccc;
    display: block;
    margin-bottom: 3px
}

.gallery-items .pf-item .overlay .content .title a {
    color: var(--white)
}

.gallery-items .pf-item .overlay .content > a {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--color-primary);
    color: var(--white);
    border-radius: 50%;
    transform: translateY(30px);
    opacity: 0
}

.gallery-items .pf-item .overlay .content > a i {
    font-weight: 500
}

.gallery-items .pf-item .overlay:hover .content > a {
    transform: translateY(0);
    opacity: 1
}

.gallery-items .pf-item .overlay .content .title h5 {
    font-size: 20px
}

.project-details-area .top-info {
    position: relative;
    margin-top: 50px
}

.project-details-area .top-info .left-info {
    padding-right: 35px
}

.project-details-area .top-info p:last-child {
    margin-bottom: 0
}

.project-details-area .main-content {
    margin-top: 30px
}

.project-details-area .main-content h2, .project-details-area .main-content h3, .project-details-area .main-content h4, .project-details-area .main-content h5 {
    font-weight: 600;
    margin-bottom: 25px
}

.project-details-area .main-content .row img {
    margin-top: 30px
}

.project-details-area .top-info h2 {
    font-weight: 900;
    margin-bottom: 20px
}

.project-info {
    background: #f1f4f8;
    padding: 50px;
    margin-bottom: 20px
}

.project-info .title {
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    padding-bottom: 15px;
    margin-top: -5px
}

.project-info .title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid #104cba
}

.project-info ul {
    padding-left: 0;
    list-style: none;
    margin: 0
}

.project-info ul li {
    font-weight: 900;
    font-size: 16px;
    color: var(--color-heading);
    margin-top: 15px
}

.project-info ul li:first-child {
    border: none;
    margin-top: 0;
    padding-top: 0
}

.project-info ul li span {
    font-weight: 400;
    position: relative;
    display: block;
    font-size: 15px;
    font-family: var(--font-default)
}

.project-info ul.social {
    margin-top: 25px
}

.project-info ul.social li {
    display: inline-block;
    margin: 0;
    margin-right: 15px;
    margin-top: 5px
}

.project-info ul.social li a {
    display: inline-block;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 100;
    color: var(--white);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 43px;
    background: var(--color-primary)
}

.project-info ul.social li:last-child {
    margin-right: 0
}

.services-details-items h2, .services-details-items h3, .services-details-items h4, .services-details-items h5, .services-details-items h6 {
    font-weight: 900
}

.services-details-items .services-sidebar .single-widget {
    margin-top: 50px
}

.services-details-items .services-sidebar .single-widget:first-child {
    margin-top: 0
}

.services-details-items .services-sidebar .widget-title {
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 22px;
    display: inline-block;
    padding-bottom: 15px
}

.services-details-items .services-sidebar .widget-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--color-primary)
}

.services-details-items .services-sidebar .services-list a {
    display: block;
    padding: 18px 25px;
    background: #edf5ff;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    overflow: hidden;
    border-radius: 5px
}

.services-details-items .services-sidebar .services-list a::after {
    position: absolute;
    right: 50px;
    top: 50%;
    content: "\f105";
    transform: translateY(-50%);
    transition: all .25s ease-in-out;
    font-family: "font awesome 5 pro";
    height: 30px;
    width: 50px;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    font-size: 26px;
    margin-top: 1px;
    font-weight: 100
}

.services-details-items .services-sidebar .services-list .current-item a::after, .services-details-items .services-sidebar .services-list a:hover::after {
    right: 20px;
    opacity: 1;
    visibility: visible;
    color: var(--white)
}

.services-details-items .services-sidebar .services-list a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 60%;
    background: var(--color-primary);
    z-index: -1;
    transition: all .35s ease-in-out;
    opacity: 0;
    visibility: hidden
}

.services-details-items .services-sidebar .services-list li.current-item a::before {
    width: 100%
}

.services-details-items .services-sidebar .services-list li.current-item a, .services-details-items .services-sidebar .services-list li a:hover {
    color: var(--white)
}

.services-details-items .services-sidebar .services-list a:hover::before, .services-details-items .services-sidebar .services-list li.current-item a::before {
    width: 100%;
    opacity: 1;
    visibility: visible
}

.services-details-items .services-sidebar {
    padding-left: 35px
}

.services-details-items .services-sidebar .single-widget.quick-contact {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center
}

.services-details-items .services-sidebar .single-widget.quick-contact::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #1d2746;
    opacity: .7
}

.services-details-items .services-sidebar .single-widget.quick-contact .content {
    padding: 50px 30px;
    position: relative;
    z-index: 1
}

.services-details-items .services-sidebar .single-widget.quick-contact .content i {
    display: inline-block;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 35px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 100
}

.services-details-items .services-sidebar .single-widget.quick-contact .content i.fas.fa-phone {
    transform: rotate(90deg)
}

.services-details-items .services-sidebar .single-widget.quick-contact .content i::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    opacity: .3
}

.services-details-items .services-sidebar .single-widget.quick-contact .content p {
    color: var(--white)
}

.services-details-items .services-sidebar .single-widget.quick-contact .content h2 {
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
    margin: 0;
    margin-top: 25px
}

.services-details-items .services-sidebar .single-widget.brochure ul {
    margin-top: 15px
}

.services-details-items .services-sidebar .single-widget.brochure a {
    display: flex;
    align-items: center;
    margin-top: 15px;
    background: var(--white);
    padding: 18px 25px;
    border-radius: 5px;
    border: 2px solid rgb(205 223 247)
}

.services-details-items .services-sidebar .single-widget.brochure a i {
    font-size: 30px;
    font-weight: 100;
    margin-right: 16px
}

.services-details-items .services-sidebar .single-widget.brochure li:first-child a {
    margin-top: 0
}

.services-details-items .services-sidebar .single-widget.brochure a:hover {
    color: var(--color-primary)
}

.services-details-items .services-single-content h2 {
    font-weight: 900;
    margin-bottom: 20px
}

.services-details-items .services-single-content > .row {
    margin-top: 35px;
    margin-bottom: 35px
}

.services-details-area .features .col-lg-6 {
    display: flex
}

.services-details-area .thumb {
    margin-bottom: 30px
}

.services-details-area .features i {
    display: inline-block;
    font-size: 50px;
    color: var(--color-primary);
    margin-right: 25px
}

.services-details-area .features p {
    margin: 0
}

.services-details-area .features {
    margin: 25px 0
}

.services-details-area .services-single-content ul {
    list-style: disc;
    margin-left: 20px
}

.services-details-area .services-single-content ul li {
    line-height: 32px
}

.services-details-items .services-single-content .list-item h2 {
    margin-bottom: 20px
}

.services-details-items .services-single-content .list-item {
    margin-top: 20px
}

.services-more .item {
    padding: 30px;
    box-shadow: 0 0 25px rgb(0 0 0/8%);
    background: var(--white);
    margin-top: 30px
}

.services-more .item i {
    display: inline-block;
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 30px
}

.services-more .item p {
    margin: 0
}

.services-more .item h4 {
    font-size: 20px
}

.services-more .item a {
    font-weight: 900
}

.services-more h2 {
    margin: 0 !important;
    margin-top: 25px !important
}

.contact-area {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.contact-area::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 600px;
    width: 600px;
    content: "";
    background: url(../img/shape/27.png);
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .1
}

.contact-area .shape {
    position: absolute;
    right: 5%;
    top: 50px;
    z-index: -1
}

.contact-area .shape img {
    height: 150px
}

.contact-content .form-box {
    margin-left: 50px
}

.contact-content form input, .contact-content form textarea {
    border: none;
    min-height: 55px;
    padding: 20px;
    background: #eef3fa;
    color: var(--color-heading)
}

.contact-content form textarea {
    min-height: 223px
}

.contact-content form button {
    padding: 13px 40px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--color-primary) !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: var(--white);
    display: inline-block;
    text-transform: capitalize;
    background: 0 0;
    border-radius: 30px
}

.contact-content form button::after {
    position: absolute;
    left: -10px;
    top: -10px;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-primary);
    z-index: -1;
    transition: all .35s ease-in-out;
    border-radius: 30px
}

.contact-content form button:hover::after {
    width: 0
}

.contact-content form button:hover {
    color: var(--color-heading)
}

.contact-content form button:focus {
    color: var(--color-heading)
}

.contact-content form img.loader {
    margin-left: 15px
}

.contact-area .content li {
    padding: 30px;
    border: 1px solid #e7e7e7;
    margin-top: 30px;
    display: flex;
    background: var(--white);
    border-radius: 10px
}

.contact-area .content li:first-child {
    margin-top: 0
}

.contact-area .content li i {
    display: inline-block;
    font-size: 45px;
    min-width: 70px;
    color: var(--color-primary)
}

.contact-area .content li p {
    margin: 0
}

.contact-area .content li a {
    font-weight: 400
}

.contact-area .content li a:hover {
    color: var(--color-primary)
}

.contact-area .content li h5 {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px
}

.contact-form-box .form-group {
    margin-bottom: 15px
}

.contact-form-box h2 {
    font-weight: 900;
    margin-top: -8px
}

.contact-form-box p {
    margin-bottom: 35px
}

.form-control {
    font-size: 15px
}

@media (min-width: 1200px) {
    .container-medium a.navbar-brand {
        padding-left: 15px
    }
}

.shape-right-top {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: -1
}

.shape-left-top {
    position: absolute;
    left: 0;
    top: 0;
    height: 350px !important;
    width: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: left top;
    background-size: contain;
    opacity: .05
}

.banner-style-four {
    overflow: inherit
}

@media (min-width: 1024px) {
    .validnavs.no-background .navbar-nav.text-white > li > a {
        color: var(--white)
    }
}

.banner-style-four {
    padding-top: 60px
}

@media (min-width: 1450px) {
    .banner-style-four img {
        max-width: 120%
    }
}

.banner-style-four .thumb {
    text-align: right
}

.banner-style-four form {
    border-radius: 50px;
    margin-top: 40px
}

.banner-style-four form input {
    min-height: 70px;
    border-radius: 50px
}

.banner-style-four form button {
    min-height: 54px;
    top: 8px;
    right: 8px;
    min-width: 180px;
    font-weight: 500
}

.features-style-four-area .single-item {
    margin-bottom: 30px
}

.feature-style-four {
    padding: 60px 37px;
    background: #fff;
    box-shadow: 0 20px 50px rgb(0 0 0/10%);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid transparent;
    transition: all .35s ease-in-out
}

.feature-style-four-box .single-item:hover .feature-style-four, .feature-style-four-box .single-item:first-child .feature-style-four {
    border-color: var(--color-primary)
}

.feature-style-four img {
    height: 55px
}

.feature-style-four .icon {
    display: inline-block;
    margin: 30px 0;
    position: relative;
    z-index: 1
}

.feature-style-four .icon::after {
    position: absolute;
    right: -60px;
    top: -30px;
    content: "";
    height: 120px;
    width: 120px;
    background: url(../img/shape/1.svg);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain
}

.feature-style-four h4 {
    font-weight: 700;
    font-size: 18px
}

.feature-style-four p {
    margin: 0
}

.feature-style-four .shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: contain
}

.shape-center {
    background-size: contain;
    background-position: center bottom
}

@media only screen and (min-width: 992px) {
    .about-style-four.info {
        padding-left: 80px
    }
}

.about-style-four h2 {
    font-weight: 700;
    margin-bottom: 30px
}

.about-style-four .nav-tabs {
    margin-top: 30px;
    border: none;
    margin-bottom: 30px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 10px
}

.about-style-four .nav-tabs button {
    display: inline-block;
    margin: 0 !important;
    padding: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: var(--color-heading)
}

.about-style-four .nav-tabs button.active {
    color: var(--color-primary)
}

.about-style-four .nav-tabs button::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    content: "";
    height: 4px;
    width: 0;
    background: var(--color-primary);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: all .35s ease-in-out
}

.about-style-four .nav-tabs button.active::after {
    width: 70%
}

.about-style-four ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px
}

.about-style-four ul li {
    padding-left: 30px;
    font-weight: 500;
    color: var(--color-heading);
    position: relative;
    z-index: 1;
    margin-top: 15px
}

.about-style-four ul li::after {
    position: absolute;
    left: 0;
    content: "N";
    font-family: eleganticons;
    background: var(--color-primary);
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%)
}

.services-style-four-box {
    position: relative;
    z-index: 1;
    background: var(--dark);
    padding: 120px 30px;
    padding-bottom: 90px
}

.services-style-four-box .single-item:nth-child(2) {
    margin-top: 50px
}

@media only screen and (min-width: 1024px) {
    .services-style-four-box {
        width: 90%;
        margin: auto;
        max-width: 2000px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgb(0 0 0/10%)
    }
}

.services-style-four-box .shape-right-top {
    height: 100%;
    width: 50%;
    top: 50px
}

.services-style-four img {
    width: 120px;
    margin-right: 30px;
    max-width: 120px;
    min-width: 120px
}

.services-style-four {
    padding: 50px 37px;
    border-radius: 10px;
    background: var(--color-primary);
    display: flex;
    margin-bottom: 30px
}

.services-style-four p {
    opacity: .8;
    margin: 0
}

@media only screen and (min-width: 992px) {
    .process-style-four.info {
        padding-left: 80px
    }
}

.process-style-four-area {
    overflow: hidden
}

.process-style-four .thumb {
    position: relative;
    z-index: 1
}

.process-style-four .thumb::after {
    position: absolute;
    left: -200px;
    bottom: 0;
    content: "";
    height: 400px;
    width: 400px;
    border: 100px solid #edf5ff;
    z-index: -1;
    border-radius: 50%
}

.process-style-four > h4 {
    text-transform: capitalize;
    font-weight: 900;
    color: var(--color-primary)
}

.process-style-four h2 {
    font-weight: 900;
    margin-bottom: 30px
}

.single-process {
    display: flex;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 20px 50px rgb(0 0 0/10%);
    margin-top: 30px;
    border-radius: 20px
}

.single-process .number {
    font-weight: 900;
    font-size: 17px;
    color: var(--color-heading);
    margin-right: 15px
}

.single-process h4 {
    font-weight: 900
}

.single-process p {
    margin: 0
}

.single-process:nth-child(2n) {
    background: var(--bg-gradient);
    margin-left: 50px;
    margin-right: -50px
}

.single-process:nth-child(2n) h4, .single-process:nth-child(2n) a, .single-process:nth-child(2n) .number {
    color: #fff
}

.single-process:nth-child(2n) p {
    color: var(--white);
    opacity: .9
}

.team-style-two-box .single-item {
    margin-bottom: 30px
}

.team-style-two {
    position: relative
}

.team-style-two .thumb {
    position: relative;
    z-index: 1
}

.team-style-two .thumb img {
    border-radius: 50%;
    padding: 30px
}

.team-style-two .thumb .shape {
    position: absolute;
    left: 50%;
    bottom: 25px;
    height: 90%;
    width: 90%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateX(-50%)
}

.team-style-two h4 {
    font-weight: 700;
    margin-bottom: 3px
}

.team-style-two span {
    font-weight: 400;
    color: #959595
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area.banner-style-four .double-items {
        padding-top: 120px
    }

    .banner-area.banner-style-four {
        background: var(--bg-gray)
    }

    .banner-area.banner-style-four img {
        padding: 0;
        width: 70%;
        margin: auto
    }

    .banner-style-four .thumb {
        text-align: center
    }

    .features-style-four-area.shape-center {
        background-repeat: no-repeat
    }

    .about-style-four img {
        margin-bottom: 40px
    }

    .services-style-four-box .single-item:nth-child(2) {
        margin-top: 0
    }

    .services-style-four {
        display: block;
        text-align: center
    }

    .services-style-four img {
        margin: 0;
        margin-bottom: 30px
    }

    .process-style-four .thumb {
        margin-bottom: 50px
    }

    .single-process:nth-child(2n) {
        margin-left: 0;
        margin-right: 0
    }
}

@media only screen and (max-width: 767px) {
    .banner-area.banner-style-four .double-items {
        padding-top: 70px
    }

    .banner-area.banner-style-four {
        background: var(--bg-gray)
    }

    .banner-area.banner-style-four img {
        padding: 0;
        width: 80%;
        margin: auto
    }

    .banner-style-four .thumb {
        text-align: center
    }

    .features-style-four-area.shape-center {
        background-repeat: no-repeat
    }

    .about-style-four img {
        margin-bottom: 40px
    }

    .services-style-four-box {
        padding: 50px 0;
        padding-bottom: 20px
    }

    .services-style-four-box .single-item:nth-child(2) {
        margin-top: 0
    }

    .services-style-four {
        display: block;
        text-align: center
    }

    .services-style-four img {
        margin: 0;
        margin-bottom: 30px
    }

    .process-style-four .thumb {
        margin-bottom: 50px
    }

    .single-process:nth-child(2n) {
        margin-left: 0;
        margin-right: 0
    }
}

.faq-area {
    overflow: hidden
}

.faq-area .site-heading {
    margin-bottom: 45px
}

.faq-items {
    display: grid;
    gap: 16px
}

.faq-item {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 8px;
    box-shadow: var(--box-shadow-regular);
    overflow: hidden
}

.faq-item summary {
    color: var(--color-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    list-style: none;
    padding: 22px 26px
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "\f107";
    color: var(--color-primary);
    flex: 0 0 auto;
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    font-weight: 900;
    transition: transform .25s ease
}

.faq-item[open] summary::after {
    transform: rotate(180deg)
}

.faq-item p {
    border-top: 1px solid rgba(212, 175, 55, .14);
    margin: 0;
    padding: 0 26px 24px;
    padding-top: 20px
}

@media only screen and (max-width: 767px) {
    .faq-item summary {
        font-size: 16px;
        padding: 18px 20px
    }

    .faq-item p {
        padding: 16px 20px 20px
    }
}

.news-area article {
    border-radius: 1.25rem;
}

.news-area article img {
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.news-area .desc-wrap {
    padding: 1rem;
    background: var(--dark);
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.news-area .time {
    font-size: 0.875rem;
}

.news-area a {
    font-weight: 400;
}

.news-area h3 {
    font-weight: 800;
    font-family: var(--font-heading);
}

.news-area .description {
    font-size: 1rem;
    color: var(--white);
}

.news-area .news-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.blog-list-area .site-heading {
    margin-bottom: 50px
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px
}

.blog-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 8px;
    box-shadow: var(--box-shadow-regular);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease
}

.blog-card:hover {
    border-color: rgba(212, 175, 55, .55);
    box-shadow: var(--box-shadow-secondary);
    transform: translateY(-5px)
}

.blog-card-thumb {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    display: block;
    overflow: hidden
}

.news-area .blog-card-thumb img,
.blog-card-thumb img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05)
}

.blog-card-placeholder {
    align-items: center;
    color: var(--color-primary);
    display: flex;
    font-size: 44px;
    height: 100%;
    justify-content: center;
    width: 100%
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px
}

.blog-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 14px
}

.blog-meta span {
    align-items: center;
    color: var(--color-paragraph);
    display: inline-flex;
    font-size: 13px;
    line-height: 1.4
}

.blog-meta i {
    color: var(--color-primary);
    margin-right: 7px
}

.blog-meta a {
    color: var(--color-paragraph);
    font-weight: 400
}

.blog-meta a:hover {
    color: var(--color-heading)
}

.blog-card h3 {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 14px
}

.blog-card h3 a {
    color: var(--color-heading);
    font-weight: 900
}

.blog-card h3 a:hover {
    color: var(--color-primary)
}

.blog-card p {
    flex: 1;
    line-height: 1.75;
    margin-bottom: 22px
}

.blog-read-more {
    align-items: center;
    color: var(--color-primary);
    display: inline-flex;
    font-weight: 800;
    gap: 8px
}

.blog-read-more:hover {
    color: var(--color-heading)
}

.blog-pagination {
    margin-top: 50px
}

.blog-pagination,
.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center
}

.blog-pagination .screen-reader-text {
    position: absolute;
    left: -9999px
}

.blog-pagination .page-numbers {
    align-items: center;
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 6px;
    color: var(--color-paragraph);
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    min-width: 42px;
    padding: 8px 14px
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--dark)
}

.blog-empty {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center
}

.blog-empty i {
    color: var(--color-primary);
    font-size: 46px;
    margin-bottom: 20px
}

.single-post-area {
    overflow: hidden
}

.blog-breadcrumb {
    align-items: center;
    color: var(--color-paragraph);
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 24px
}

.blog-breadcrumb a {
    color: var(--color-paragraph);
    font-weight: 500
}

.blog-breadcrumb a:hover {
    color: var(--color-heading)
}

.single-post-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 8px;
    box-shadow: var(--box-shadow-regular);
    overflow: hidden
}

.single-post-header {
    padding: 54px 60px 36px;
    text-align: center
}

.single-post-header .blog-meta {
    justify-content: center;
    margin-bottom: 22px
}

.single-post-header h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px
}

.single-post-excerpt {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 820px
}

.single-post-thumb {
    aspect-ratio: 16 / 7;
    overflow: hidden
}

.single-post-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.single-post-content {
    margin: 0 auto;
    max-width: 860px;
    padding: 54px 60px
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    font-weight: 900;
    margin-top: 34px
}

.single-post-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px
}

.single-post-content a {
    color: var(--color-primary)
}

.single-post-content ul,
.single-post-content ol {
    color: var(--color-paragraph);
    line-height: 1.9;
    margin: 0 0 24px 22px
}

.single-post-content ul {
    list-style: disc
}

.single-post-content ol {
    list-style: decimal
}

.single-post-content li {
    margin-bottom: 8px
}

.single-post-content blockquote {
    background: var(--dark);
    border-left: 4px solid var(--color-primary);
    color: var(--color-heading);
    margin: 34px 0;
    padding: 26px 30px
}

.single-post-content img {
    border-radius: 8px;
    height: auto
}

.single-post-tags {
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, .14);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 60px;
    padding: 26px 0 36px
}

.single-post-tags span {
    color: var(--color-heading);
    font-weight: 900;
    margin-right: 4px
}

.single-post-tags a {
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 30px;
    color: var(--color-paragraph);
    display: inline-block;
    font-weight: 600;
    padding: 6px 14px
}

.single-post-tags a:hover {
    background: var(--color-primary);
    color: var(--dark)
}

.single-post-nav {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px
}

.single-post-nav a {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 8px;
    color: var(--color-paragraph);
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    padding: 22px 26px
}

.single-post-nav .next-post a {
    align-items: flex-end;
    text-align: right
}

.single-post-nav span {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800
}

.single-post-nav strong {
    color: var(--color-heading);
    font-size: 17px;
    line-height: 1.45
}

.single-post-nav a:hover {
    border-color: rgba(212, 175, 55, .55)
}

.related-posts {
    margin-top: 80px
}

.related-posts .site-heading {
    margin-bottom: 42px
}

.related-grid .blog-card-body {
    padding: 22px
}

.related-grid .blog-card h3 {
    font-size: 18px;
    margin-bottom: 0
}

@media only screen and (max-width: 991px) {
    .blog-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .single-post-header,
    .single-post-content {
        padding-left: 34px;
        padding-right: 34px
    }

    .single-post-header h1 {
        font-size: 34px
    }

    .single-post-tags {
        margin-left: 34px;
        margin-right: 34px
    }
}

@media only screen and (max-width: 767px) {
    .blog-card-grid,
    .single-post-nav {
        grid-template-columns: 1fr
    }

    .blog-card-body {
        padding: 22px
    }

    .single-post-header {
        padding: 34px 22px 28px
    }

    .single-post-header h1 {
        font-size: 28px
    }

    .single-post-excerpt {
        font-size: 16px
    }

    .single-post-thumb {
        aspect-ratio: 16 / 10
    }

    .single-post-content {
        padding: 34px 22px
    }

    .single-post-tags {
        margin-left: 22px;
        margin-right: 22px
    }

    .single-post-nav .next-post a {
        align-items: flex-start;
        text-align: left
    }
}
