:root {
    --primary-color: #DFC63E;
    --secondary-color: #101824
}

#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%
}

#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s
}

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }

    10% {
        width: 10px;
        height: 10px;
        opacity: 1
    }

    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0
    }
}

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

.card {
    color: #4a5257
}

.card .card-body {
    color: #4a5257
}

.ls-minus-2px {
    letter-spacing: -2px
}

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

.bg-secondary {
    background-color: #101824 !important
}

.primary-overlay[data-overlay-dark]:before {
    background: var(--primary-color)
}

.secondary-overlay[data-overlay-dark]:before {
    background: #101824
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(0, 55, 81, 0.76);
    background: linear-gradient(-90deg, transparent, #101824 65%)
}

.bg-light {
    background-color: rgba(16, 24, 36, 0.035) !important
}

.text-primary {
    color: var(--primary-color) !important
}

.text-primary-hover:hover {
    color: var(--primary-color) !important
}

.text-secondary {
    color: #101824 !important
}

.text-secondary-hover:hover {
    color: #101824 !important
}

a.text-primary:focus {
    color: var(--primary-color) !important
}

a.text-primary:hover {
    color: var(--primary-color) !important
}

a.text-primary:active {
    color: var(--primary-color) !important
}

a.text-primary.text-secondary-hover:focus {
    color: #101824 !important
}

a.text-primary.text-secondary-hover:hover {
    color: #101824 !important
}

a.text-primary.text-secondary-hover:active {
    color: #101824 !important
}

.cursor-pointer {
    cursor: pointer
}

.box-shadow-style1 {
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05)
}

@media screen and (min-width: 768px) {
    .min-width-100vw {
        min-width: 100vw
    }
}

.circle-icon-design {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    margin-inline-start: -22px
}

a.text-white-hover:hover {
    color: #fff !important
}

.border-color-primary {
    border-color: var(--primary-color) !important
}

.primary-shadow {
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1)
}

.overflow-x-clip {
    overflow-x: clip
}

.shape-img-01 {
    top: -45%
}

.shape-img-02 {
    bottom: 10px;
    left: -16%
}

@media screen and (max-width: 991px) {
    .shape-img-02 {
        left: -26%
    }
}

.shape-img-03 {
    top: 30%;
    right: -8%
}

@media screen and (max-width: 1399px) {
    .shape-img-03 {
        right: -26%
    }
}

@media screen and (max-width: 1199px) {
    .shape-img-03 {
        right: -36%
    }
}

@media screen and (min-width: 992px) {
    .mt-n10rem {
        margin-top: -5.5rem
    }
}

.diamond-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    clip-path: url(#roundedDiamond);
    transition: all ease 0.35s;
    padding: 5px;
    display: inline-block
}

.diamond-shape .diamond-border-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.diamond-shape img {
    object-fit: cover;
    clip-path: url(#roundedDiamond)
}

.min-height-760 {
    min-height: 760px
}

@media screen and (max-width: 1399px) {
    .min-height-760 {
        min-height: 685px
    }
}

@media screen and (max-width: 1199px) {
    .min-height-760 {
        min-height: 511px
    }
}

@media screen and (max-width: 991px) {
    .min-height-760 {
        min-height: 455px
    }
}

@media screen and (max-width: 767px) {
    .min-height-760 {
        min-height: 395px
    }
}

@media screen and (max-width: 575px) {
    .min-height-760 {
        min-height: 295px
    }
}

.sticky-top-style {
    position: sticky;
    top: 130px;
    z-index: 1
}

.bg-linear-gradient {
    position: relative
}

.bg-linear-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(250, 81, 15, 0.035) 20%, #fff 100%);
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 0
}

.bg-linear-gradient .container {
    position: relative;
    z-index: 1
}

.bottom-overlay {
    position: relative;
    overflow: hidden
}

.bottom-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(to bottom, transparent 12%, #101824 74%, #101824 100%)
}

.linear-gradient-text {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.linear-gradient-text.odometer .odometer-value {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.linear-gradient-text-secondary {
    background: linear-gradient(180deg, #101824 0%, rgba(238, 248, 248, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.linear-gradient-text-secondary.odometer .odometer-value {
    background: linear-gradient(180deg, #101824 0%, rgba(238, 248, 248, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.linear-gradient-text-primary {
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(238, 248, 248, 0) 100%);
    -webkit-background-clip: text;
    color: transparent
}

.linear-gradient-text-primary.odometer .odometer-value {
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(238, 248, 248, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media screen and (min-width: 992px) {
    .border-start-primary {
        border-left: 2px solid var(--primary-color)
    }
}

.rotate {
    -ms-animation: rotate 12s linear infinite;
    -o-animation: rotate 12s linear infinite;
    -moz-animation: rotate 12s linear infinite;
    -webkit-animation: rotate 12s linear infinite;
    animation: rotate 12s linear infinite
}

@-webkit-keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.cd-headline {
    font-size: 18px;
    color: #101824
}

.cd-headline.clip .cd-words-wrapper:after {
    content: none
}

.image-hover {
    position: relative;
    overflow: hidden
}

.image-hover:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1
}

.image-hover:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent
}

.image-hover:active:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent
}

.image-hover:focus:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent
}

.about-media {
    aspect-ratio: 1 / 1.15;
    border-radius: 0.375rem
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pricing-text {
    width: 180px;
    height: 180px;
    color: white;
    padding: 8px;
    font-weight: 600;
    position: relative;
    border-radius: 50%
}

.pricing-text .coloring {
    fill: black
}

.pricing-text svg {
    -webkit-animation: rotated_circle 12s linear infinite;
    animation: rotated_circle 12s linear infinite
}

.pricing-text .about-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 55px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 18px
}

.display-custom-1 {
    font-size: 104px
}

[data-top-bottom] {
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1)
}

@media screen and (max-width: 1199px) {
    .display-custom-1 {
        font-size: 99px
    }
}

@media screen and (max-width: 991px) {
    .display-custom-1 {
        font-size: 86px
    }
}

@media screen and (max-width: 767px) {
    .display-custom-1 {
        font-size: 65px
    }
}

@media screen and (max-width: 575px) {
    .display-custom-1 {
        font-size: 45px
    }
}

.display-custom-2 {
    font-size: 145px;
    font-weight: 700;
    line-height: 80%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media screen and (max-width: 991px) {
    .display-custom-2 {
        font-size: 134px
    }
}

@media screen and (max-width: 575px) {
    .display-custom-2 {
        font-size: 107px
    }
}

.display-custom-3 {
    font-size: 128px;
    font-weight: 800;
    line-height: 0.9em;
    letter-spacing: -0.04em
}

@media screen and (max-width: 1199px) {
    .display-custom-3 {
        font-size: 97px
    }
}

@media screen and (max-width: 991px) {
    .display-custom-3 {
        font-size: 89px
    }
}

@media screen and (max-width: 575px) {
    .display-custom-3 {
        font-size: 72px
    }
}

.display-custom-4 {
    font-size: 145px;
    font-weight: 700;
    line-height: 80%;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(238, 248, 248, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.display-custom-4 .linear-gradient-text.odometer {
    color: transparent
}

.display-custom-4 .linear-gradient-text.odometer .odometer-value {
    background: linear-gradient(180deg, var(--primary-color) 0%, #eef8f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.display-custom-4 sup {
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(238, 248, 248, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media screen and (max-width: 1399px) {
    .display-custom-4 {
        font-size: 125px
    }
}

@media screen and (max-width: 1199px) {
    .display-custom-4 {
        font-size: 100px
    }
}

.display-custom-5 {
    font-size: 140px;
    font-weight: 700;
    line-height: 80%
}

@media screen and (max-width: 1399px) {
    .display-custom-5 {
        font-size: 102px
    }
}

@media screen and (max-width: 1199px) {
    .display-custom-5 {
        font-size: 95px
    }
}

@media screen and (max-width: 991px) {
    .display-custom-5 {
        font-size: 83px
    }
}

@media screen and (max-width: 575px) {
    .display-custom-5 {
        font-size: 75px
    }
}

.border-text {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.border-text.primary {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.border-text.dark {
    text-fill-color: transparent;
    text-stroke-color: #101824;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #101824;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.border-text.secondary {
    text-fill-color: transparent;
    text-stroke-color: #063232;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #063232;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.list-style01 li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px
}

.list-style01 li:after {
    content: "\e64c";
    font-family: 'themify';
    position: absolute;
    left: 0px;
    top: 1px;
    z-index: 1;
    font-weight: 600;
    color: var(--primary-color)
}

.list-style01 li:last-child {
    padding-bottom: 0;
    margin-bottom: 0
}

.list-style02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px
}

.list-style02 li {
    position: relative;
    color: #fff;
    padding-left: 35px;
    font-size: 14px;
    justify-content: center
}

.list-style02 li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-weight: 600;
    top: -3px;
    left: 0;
    font-size: 18px;
    color: var(--primary-color)
}

@media screen and (max-width: 1399px) {
    .list-style02 {
        gap: 20px 40px
    }
}

@media screen and (max-width: 767px) {
    .list-style02 {
        gap: 15px;
        justify-content: start
    }
}

.list-style03 li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px
}

.list-style03 li:last-child {
    margin-bottom: 0
}

.list-style03 li a {
    color: #fff
}

.list-style03 li a:hover {
    color: var(--primary-color)
}

.list-style03 li:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    border-radius: 50%
}

.list-style04 li {
    margin-bottom: 22px
}

.list-style04 li:last-child {
    margin-bottom: 0
}

.list-style04 li a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400
}

.list-style04 li a:hover {
    color: var(--primary-color)
}

.list-style05 {
    list-style: none;
    padding-left: 0
}

.list-style05 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px
}

.list-style05 li:last-child {
    margin-bottom: 0
}

.list-style05 li:before {
    content: '\e64c';
    font-family: 'themify';
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    line-height: 35px;
    color: var(--primary-color)
}

.list-style05 li.white {
    color: #fff
}

.list-style05 li.white:before {
    color: #fff
}

.arrow-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%
}

.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100
}

.scroll-top-percentage.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    color: #fff;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600
}

#scroll-value i {
    font-size: 20px
}

@media (max-width: 575px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px
    }
}

@-webkit-keyframes "scrollToTop" {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes "scrollToTop" {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.butn-style01 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    line-height: 1.5;
    font-weight: 700;
    position: relative;
    outline: none;
    transition: all 0.4s ease;
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    font-size: 14px !important;
    padding: 15px 34px !important;
    z-index: 9;
    border-radius: 4px;
    text-transform: uppercase
}

.butn-style01:hover {
    color: #fff;
    background: #101824
}

.butn-style01:active {
    color: #fff;
    background: #101824
}

.butn-style01:focus {
    color: #fff;
    background: #101824
}

.butn-style01.md {
    padding: 12px 30px !important
}

.butn-style01.sm {
    padding: 10px 26px !important
}

.butn-style01.white {
    background: #fff;
    color: var(--primary-color) !important
}

.butn-style01.white:hover {
    background-color: #101824;
    color: #fff !important
}

.butn-style01.secondary {
    background: #101824;
    color: #fff !important
}

.butn-style01.secondary:hover {
    background-color: var(--primary-color);
    color: #fff !important
}

.butn-style01.white-hover:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important
}

.butn-style01.white-hover:active {
    background-color: #fff !important;
    color: var(--primary-color) !important
}

.butn-style01.white-hover:focus {
    background-color: #fff !important;
    color: var(--primary-color) !important
}

@media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav>ul>li>a.butn-style01 {
        color: #fff !important;
        border: 1px solid transparent
    }

    .header-style1.scrollHeader .attr-nav>ul>li>a.butn-style01:hover,
    .header-style1.scrollHeader .attr-nav>ul>li>a.butn-style01:active,
    .header-style1.scrollHeader .attr-nav>ul>li>a.butn-style01:focus {
        color: var(--primary-color) !important;
        border: 1px solid var(--primary-color)
    }

    .header-style3.scrollHeader .attr-nav>ul>li>a.butn-style01 {
        color: #fff !important;
        border: 1px solid transparent
    }

    .header-style3.scrollHeader .attr-nav>ul>li>a.butn-style01:hover,
    .header-style3.scrollHeader .attr-nav>ul>li>a.butn-style01:active,
    .header-style3.scrollHeader .attr-nav>ul>li>a.butn-style01:focus {
        color: var(--primary-color) !important;
        border: 1px solid var(--primary-color)
    }
}

.butn-style02 {
    background-color: var(--primary-color);
    color: #fff !important;
    font-size: 14px !important;
    padding: 12px 30px !important;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    width: auto;
    white-space: normal;
    word-wrap: break-word;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.15rem
}

.butn-style02:hover {
    color: #fff !important;
    -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0)
}

.butn-style02.white {
    background-color: #fff;
    color: #1e3238 !important
}

.butn-style02.secondary {
    background-color: var(--primary-color);
    color: #fff !important
}

.butn-style02.md {
    padding: 10px 26px !important
}

.butn-style02.sm {
    padding: 8px 24px !important
}

.butn-style03 {
    font-size: 15px !important;
    font-weight: 700;
    padding: 12px 34px !important;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden !important;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--primary-color);
    color: #fff;
    z-index: 1;
    white-space: normal;
    word-wrap: break-word;
    background-color: var(--primary-color);
    vertical-align: middle;
    text-transform: uppercase
}

.butn-style03:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1
}

.butn-style03:hover {
    background-color: var(--primary-color);
    color: #fff
}

.butn-style03:hover:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.butn-style03:focus {
    background-color: var(--primary-color);
    color: #fff
}

.butn-style03:focus:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.butn-style03:active {
    background-color: var(--primary-color);
    color: #fff
}

.butn-style03:active:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.butn-style03.secondary {
    border: 2px solid #101824;
    background-color: #101824
}

.butn-style03.md {
    padding: 8px 26px !important;
    font-size: 15px
}

.butn-style03.sm {
    padding: 6px 20px !important
}

@media screen and (max-width: 1399px) {
    .butn-style03 {
        padding: 10px 30px !important;
        font-size: 16px
    }
}

@media screen and (max-width: 767px) {
    .butn-style03 {
        padding: 8px 25px !important;
        font-size: 14px
    }
}

@-webkit-keyframes "btn_shine" {
    100% {
        left: 200%
    }
}

@keyframes "btn_shine" {
    100% {
        left: 200%
    }
}

.button-text {
    padding: 0;
    position: relative;
    text-decoration: none;
    border: 0;
    background-color: transparent;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    white-space: normal;
    word-wrap: break-word;
    width: auto;
    font-weight: 500
}

.button-text a {
    border-bottom: 2px solid
}

.button-text:hover {
    border-color: #25cdc7
}

.button-link {
    padding: 0 0 2px;
    position: relative;
    border: 0;
    border-bottom: 2px solid;
    letter-spacing: 0;
    background-color: transparent;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    white-space: normal;
    word-wrap: break-word;
    width: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.button-link:hover {
    opacity: 0.7
}

.button-link.contact-link {
    font-size: 14px
}

.circle-btn.circle-hover {
    position: relative;
    overflow: hidden
}

.circle-btn {
    width: 166px;
    height: 166px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border: 1px solid #101824;
    color: #101824;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize
}

.circle-btn .btn-text {
    position: relative;
    color: #101824;
    transition: 0.6s ease
}

.circle-btn .btn-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 1;
    bottom: -15px
}

.circle-btn:hover {
    border: 1px solid var(--primary-color)
}

.circle-btn:hover .btn-text {
    color: #fff;
    z-index: 999
}

@media screen and (max-width: 1399px) {
    .circle-btn {
        width: 155px;
        height: 153px
    }
}

.circle-btn01 {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px !important;
    font-weight: 600;
    transition: .5s;
    padding: 20px !important;
    clip-path: url(#roundedDiamond);
    object-fit: cover
}

.circle-btn01:hover {
    background-color: #191919
}

.circle-btn01:active {
    background-color: #191919
}

.circle-btn01:focus {
    background-color: #191919
}

.circle-btn01.white:hover {
    background-color: #fff
}

.circle-btn01.white:active {
    background-color: #fff
}

.circle-btn01.white:focus {
    background-color: #fff
}

.animation-up-down {
    animation: float 2s linear 0.5s infinite alternate both
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg)
    }
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(5px)
    }

    100% {
        transform: translateY(10px)
    }
}

.butn-text {
    display: flex;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3333333333;
    letter-spacing: -0.02em;
    cursor: pointer;
    overflow: hidden;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.butn-text i {
    font-size: 16px;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff
}

.butn-text .butn-wrap {
    display: flex;
    position: relative;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    align-items: self-end
}

.butn-text .butn-link {
    position: relative;
    overflow: hidden
}

.butn-text .butn-link .butn-default {
    display: block;
    transition: transform 0.45s ease, opacity 0.45s ease;
    transform: translateY(0);
    opacity: 1
}

.butn-text .butn-link .butn-hover {
    display: block;
    transition: transform 0.45s ease, opacity 0.45s ease;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0
}

.butn-text:hover .butn-link .butn-default {
    transform: translateY(-100%);
    opacity: 0
}

.butn-text:hover .butn-link .butn-hover {
    transform: translateY(-100%);
    opacity: 1;
    color: #fff
}

.butn-text:hover .butn-icon .icon-default {
    transform: translateX(100%);
    opacity: 0
}

.butn-text:hover .butn-icon .icon-hover {
    transform: translateX(100%);
    opacity: 1
}

.butn-text .butn-icon {
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden
}

.butn-text .butn-icon .icon-default {
    display: inline-flex;
    transition: transform 0.45s ease, opacity 0.45s ease;
    transform: translateX(0);
    opacity: 1
}

.butn-text .butn-icon .icon-hover {
    display: inline-flex;
    transition: transform 0.45s ease, opacity 0.45s ease;
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0
}

@-webkit-keyframes services-icon {
    10% {
        transform: translateY(-10px)
    }

    50% {
        transform: skew(15deg)
    }

    80% {
        transform: rotate(10deg)
    }

    100% {
        transform: translate(0)
    }
}

@-moz-keyframes services-icon {
    10% {
        transform: translateY(-10px)
    }

    50% {
        transform: skew(15deg)
    }

    80% {
        transform: rotate(10deg)
    }

    100% {
        transform: translate(0)
    }
}

@-ms-keyframes services-icon {
    10% {
        transform: translateY(-10px)
    }

    50% {
        transform: skew(15deg)
    }

    80% {
        transform: rotate(10deg)
    }

    100% {
        transform: translate(0)
    }
}

@keyframes services-icon {
    10% {
        transform: translateY(-10px)
    }

    50% {
        transform: skew(15deg)
    }

    80% {
        transform: rotate(10deg)
    }

    100% {
        transform: translate(0)
    }
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle
}

.top-bar-info ul {
    margin-bottom: 0
}

.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0
}

.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom
}

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0
}

.top-social-icon {
    padding: 0;
    float: right;
    margin: 0
}

.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px
}

.top-social-icon li:last-child {
    padding-right: 0
}

.top-social-icon li:last-child a {
    padding-right: 0
}

.top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 0 3px
}

.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65)
}

.navbar-nav li.current>a {
    color: var(--primary-color) !important
}

.navbar-nav li.active>a {
    color: var(--primary-color) !important
}

.attr-nav>ul>li>a.butn {
    color: #fff
}

.navbar>ul>li.current>a:after {
    border-color: transparent var(--primary-color) var(--primary-color) transparent !important
}

.menu_area-light .navbar-nav li.current>a {
    color: var(--primary-color)
}

.menu_area-light .navbar-nav li.active>a {
    color: var(--primary-color)
}

.menu_area-light .navbar>ul>li.current>a:after {
    border-color: transparent var(--primary-color) var(--primary-color) transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
    color: var(--primary-color)
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
    color: var(--primary-color)
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
    color: var(--primary-color)
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent var(--primary-color) var(--primary-color) transparent
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active>a {
        color: var(--primary-color)
    }

    .menu_area-light .navbar>ul>li.has-sub>a:hover:after {
        border-color: var(--primary-color)
    }

    .menu_area-light .navbar-nav li.has-sub a:hover {
        color: var(--primary-color)
    }

    .menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: var(--primary-color)
    }

    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: var(--primary-color)
    }

    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style2.scrollHeader .navbar-nav li.current>a {
        color: var(--primary-color)
    }

    .header-style2.scrollHeader .navbar-nav li.current>a:hover {
        color: var(--primary-color)
    }

    .header-style2.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style2 .navbar>ul>li.has-sub>a:hover:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style2 .navbar>ul>li.has-sub>a:active:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style2 .navbar>ul>li.has-sub>a:focus:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style2 .navbar ul ul li.active>a {
        color: var(--primary-color)
    }

    .header-style2 .navbar-nav li.has-sub a:hover {
        color: var(--primary-color)
    }

    .header-style2 .navbar-nav li.has-sub a:active {
        color: var(--primary-color)
    }

    .header-style2 .navbar-nav li.has-sub a:focus {
        color: var(--primary-color)
    }

    .header-style2 .navbar-nav li.current>a {
        color: var(--primary-color)
    }

    .header-style2 .navbar-nav li.active>a {
        color: var(--primary-color)
    }

    .menu_area-light .navbar-light .navbar-nav>li>a:hover,
    .menu_area-light .navbar-light .navbar-nav>li>a:active,
    .menu_area-light .navbar-light .navbar-nav>li>a:focus {
        color: var(--primary-color)
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: var(--primary-color)
    }

    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff
    }

    .header-style1 .navbar-toggler:before {
        background: #fff
    }

    .header-style1 .navbar-toggler.menu-opened:after {
        background: #fff
    }

    .header-style1 .navbar-toggler.menu-opened:before {
        background: #fff
    }
}

.header-style2 .navbar-nav li.current>a {
    color: var(--primary-color)
}

.header-style2 .navbar>ul>li.current>a:after {
    border-color: transparent var(--primary-color) var(--primary-color) transparent
}

.header-style2.scrollHeader .navbar-nav li.current>a {
    color: var(--primary-color)
}

.header-style2.scrollHeader .navbar-nav li.current>a:hover {
    color: var(--primary-color)
}

.header-style2.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent var(--primary-color) var(--primary-color) transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active>a {
        color: var(--primary-color)
    }

    .header-style2 .butn.secondary:before {
        background: #ffffff
    }

    .header-style2 .butn.secondary:hover {
        color: #101824 !important
    }

    .header-style2 .butn.secondary:focus {
        color: #101824 !important
    }

    .header-style2 .butn.secondary:active {
        color: #101824 !important
    }

    .header-style2.scrollHeader .butn.secondary:before {
        background: var(--primary-color)
    }

    .header-style2.scrollHeader .butn.secondary:hover {
        color: #fff !important
    }

    .header-style2.scrollHeader .butn.secondary:focus {
        color: #fff !important
    }

    .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important
    }
}

.header-style3 .navbar-nav li.current>a {
    color: var(--primary-color)
}

.header-style3 .navbar-nav li.active>a {
    color: var(--primary-color)
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active>a {
        color: var(--primary-color)
    }

    .header-style3 .navbar-nav>li>a:hover {
        color: var(--primary-color)
    }

    .header-style3 .navbar-nav>li>a:active {
        color: var(--primary-color)
    }

    .header-style3 .navbar-nav>li>a:focus {
        color: var(--primary-color)
    }

    .header-style3 .navbar-nav li.has-sub a:hover {
        color: var(--primary-color)
    }

    .header-style3 .navbar-nav li.current>a {
        color: var(--primary-color)
    }

    .header-style3 .navbar-nav>li.has-sub>a:hover {
        color: var(--primary-color)
    }

    .header-style3 .navbar ul ul li.active>a {
        color: var(--primary-color)
    }

    .header-style3 .navbar>ul>li.has-sub>a:hover:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style3 .navbar>ul>li.current>a:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style3.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: var(--primary-color)
    }

    .header-style3.scrollHeader .navbar-nav>li.active>a {
        color: var(--primary-color)
    }

    .header-style3.scrollHeader .navbar-nav li.current>a {
        color: var(--primary-color)
    }

    .header-style3.scrollHeader .navbar-nav li.current>a:hover {
        color: var(--primary-color)
    }

    .header-style3.scrollHeader .navbar>ul>li.has-sub>a:hover:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }

    .header-style3.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent var(--primary-color) var(--primary-color) transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: var(--primary-color)
    }

    .header-style3 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff
    }

    .header-style3 .navbar-toggler:before {
        background: #fff
    }

    .header-style3 .navbar-toggler.menu-opened:after {
        background: #fff
    }

    .header-style3 .navbar-toggler.menu-opened:before {
        background: #fff
    }
}

.slider-fade1 span {
    animation-delay: 0.8s
}

.slider-fade1 h1 {
    animation-delay: 1.2s
}

.slider-fade1 .butn-style03 {
    animation-delay: 1.6s
}

.slider-fade1 .owl-nav button.owl-prev {
    position: absolute;
    left: 37px;
    margin: 0;
    top: 40%
}

.slider-fade1 .owl-nav button.owl-prev i {
    color: #fff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--primary-color);
    display: block;
    border-radius: 10px;
    transition: all .3s
}

.slider-fade1 .owl-nav button.owl-prev:hover i {
    background: #fff !important;
    color: var(--primary-color)
}

.slider-fade1 .owl-nav button.owl-next {
    position: absolute;
    left: 37px;
    margin: 0;
    top: 47%;
    left: 37px
}

.slider-fade1 .owl-nav button.owl-next i {
    color: #fff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--primary-color);
    display: block;
    border-radius: 10px;
    transition: all .3s
}

.slider-fade1 .owl-nav button.owl-next:hover i {
    background: #fff !important;
    color: var(--primary-color)
}

.slider-fade1 .owl-nav [class*='owl-']:hover {
    background: none
}

.slider-fade1 .owl-nav:hover {
    margin-top: 0
}

.slider-fade1.owl-theme .owl-nav {
    margin-top: 0
}

.slider-fade1.owl-carousel .owl-dots {
    position: absolute;
    margin: 0;
    right: 54px;
    top: 50%;
    transform: translateY(-50%)
}

.slider-fade1.owl-carousel .owl-dots .owl-dot {
    display: block;
    margin: 10px 0;
    line-height: 1
}

.slider-fade1.owl-carousel .owl-dots .owl-dot span {
    display: inline-block;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0 !important;
    -webkit-transform: none;
    transform: none;
    transition: .3s;
    margin: 0;
    transform: rotateZ(45deg)
}

.slider-fade1.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: transparent;
    border-color: var(--primary-color)
}

.slider-fade1.owl-carousel .owl-dots .owl-dot.active span {
    background-color: transparent;
    border-color: var(--primary-color)
}

@media screen and (max-width: 991px) {
    .slider-fade1 .owl-nav button.owl-prev {
        top: 41%;
        left: 21px
    }

    .slider-fade1 .owl-nav button.owl-prev i {
        height: 42px;
        width: 42px;
        line-height: 42px
    }

    .slider-fade1 .owl-nav button.owl-next {
        top: 47%;
        left: 20px;
        left: 21px
    }

    .slider-fade1 .owl-nav button.owl-next i {
        height: 42px;
        width: 42px;
        line-height: 42px
    }

    .slider-fade1.owl-carousel .owl-dots {
        bottom: 20px;
        top: inherit;
        transform: translateY(0)
    }

    .slider-fade1.owl-carousel .owl-dots .owl-dot {
        display: inline-block
    }

    .slider-fade1.owl-carousel .owl-dots .owl-dot span {
        margin-left: 10px
    }
}

.banner-style01 h1 {
    font-size: 100px;
    line-height: 0.9em
}

@media screen and (max-width: 991px) {
    .banner-style01 h1 {
        font-size: 79px
    }
}

@media screen and (max-width: 767px) {
    .banner-style01 h1 {
        font-size: 69px
    }
}

@media screen and (max-width: 575px) {
    .banner-style01 h1 {
        font-size: 42px
    }
}

.banner-style02 .banner-text {
    width: 253px;
    height: 253px;
    color: white;
    padding: 18px;
    font-weight: 600;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(225, 255, 255, 0.3);
    position: relative
}

.banner-style02 .hero-title {
    width: 100%;
    max-width: 1180px
}

.banner-style02 .hero-banner-heading {
    font-size: clamp(3.5rem, 5.6vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    max-width: 12.5ch;
    text-wrap: balance
}

#home-banner[data-overlay-dark="8"]:before,
#home-banner[data-overlay-light="8"]:before {
    opacity: 0.5
}

.banner-style02 .banner-text .coloring {
    fill: white;
    text-transform: uppercase;
    letter-spacing: 4.5px;
    word-spacing: 3px;
    font-weight: 500
}

.banner-style02 .banner-text svg {
    -webkit-animation: rotated_circle 12s linear infinite;
    animation: rotated_circle 12s linear infinite
}

.banner-style02 .banner-text .banner-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.banner-style02 .counter-no {
    font-size: 168px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-right: 15px;
    position: relative;
    top: 25px
}

.banner-style02 .banner-count {
    margin-left: -120px
}

@media screen and (max-width: 1599px) {
    .banner-style02 .hero-banner-heading {
        font-size: clamp(3.1rem, 5vw, 5.85rem)
    }

    .banner-style02 .banner-count {
        margin-left: -65px
    }
}

@media screen and (max-width: 1399px) {
    .banner-style02 .hero-banner-heading {
        font-size: clamp(2.9rem, 4.5vw, 5rem)
    }

    .banner-style02 .banner-count {
        margin-left: 0
    }
}

@media screen and (max-width: 1199px) {
    .banner-style02 .hero-banner-heading {
        max-width: 13.5ch;
        font-size: clamp(2.7rem, 4.4vw, 4.35rem)
    }

    .banner-style02 .counter-no {
        top: 0
    }
}

@media screen and (max-width: 991px) {
    .banner-style02 .hero-banner-heading {
        max-width: 100%;
        font-size: clamp(2.45rem, 7vw, 4rem)
    }

    .banner-style02 .counter-no {
        top: 20px
    }
}

@media screen and (max-width: 991px) {
    .banner-style02 .banner-text {
        width: 220px;
        height: 220px
    }
}

@media screen and (max-width: 1536px) and (max-height: 700px) {
    .banner-style02 .hero-banner-heading {
        font-size: clamp(2.8rem, 4.2vw, 4.65rem);
        max-width: 14ch
    }

    .banner-style02 .container-fluid {
        padding-top: 3.5rem !important;
        padding-bottom: 2rem !important
    }

    .banner-style02 .row {
        padding-bottom: 3rem !important
    }
}

@media screen and (max-width: 767px) {
    .banner-style02 .hero-banner-heading {
        letter-spacing: -0.02em;
        font-size: clamp(2.05rem, 8vw, 3.35rem)
    }
}

@media screen and (max-width: 575px) {
    .banner-style02 .hero-banner-heading {
        font-size: clamp(1.7rem, 8.5vw, 2.7rem)
    }
}

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

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

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

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

.title-style01 .sub-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: -0.02em;
    width: fit-content;
    background: linear-gradient(100deg, #101824 0%, rgba(16, 24, 36, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    padding-left: 10px
}

.title-style01 .sub-title.primary {
    background: linear-gradient(100deg, var(--primary-color) 0%, rgba(250, 81, 15, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone
}

.title-style02 .sub-title {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.title-style02 .sub-title:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color)
}

.title-style02.secondary .sub-title {
    color: #1cbfaa
}

.title-style02.secondary .sub-title:before {
    background-color: #1cbfaa
}

.title-style02.footer .sub-title {
    margin-bottom: 0
}

.page-title-section {
    padding: 190px 0 90px;
    text-align: center
}

.page-title-section h1 {
    font-size: 72px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
    word-wrap: break-word;
    white-space: normal
}

.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    line-height: 1.2
}

.page-title-section ul li {
    display: inline-block;
    color: #ffffff;
    opacity: 0.80;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.page-title-section ul li:last-child {
    color: #ffffff;
    opacity: 0.70;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.page-title-section ul li:last-child a {
    color: #ffffff;
    opacity: 0.70;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.page-title-section ul li:last-child:after {
    content: none
}

.page-title-section ul li:after {
    content: "";
    font-weight: 700;
    vertical-align: middle;
    background-color: var(--primary-color);
    width: 10px;
    padding: 0 5px 0 10px;
    height: 2px;
    display: inline-block;
    margin: 0 15px
}

.page-title-section ul li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.page-title-section .active a {
    color: #fff
}

.page-title-section li.active:last-child a {
    color: #fff
}

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 180px 0 80px 0
    }

    .page-title-section h1 {
        font-size: 60px;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 160px 0 80px 0
    }

    .page-title-section h1 {
        font-size: 54px
    }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 140px 0 70px 0
    }

    .page-title-section h1 {
        font-size: 42px
    }
}

.height-400 {
    height: 400px
}

.card-style01 {
    border: none;
    border-radius: 0.375rem;
    height: 100%;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08)
}

.card-style01 .blog-img img {
    will-change: transform;
    -webkit-transition: -webkit-transform .3s ease;
    -ms-transition: -ms-transform .3s ease;
    transition: transform .3s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: scale(1.01, 1.01);
    -ms-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01)
}

.card-style01:hover .blog-img img {
    -webkit-transform: scale(1.07, 1.07);
    -ms-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07)
}

.card-style01:active .blog-img img {
    -webkit-transform: scale(1.07, 1.07);
    -ms-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07)
}

.card-style01:focus .blog-img img {
    -webkit-transform: scale(1.07, 1.07);
    -ms-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07)
}

.card-style01 .post-date {
    position: absolute;
    right: 30px;
    top: -51px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 3px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 22px 28px;
    min-width: 97px;
    min-height: 97px;
    clip-path: url(#roundedDiamond);
    object-fit: cover
}

.card-style01 .post-date .month {
    font-size: 12px;
    text-transform: uppercase
}

.card-style01 .text-uppercase.display-31 a {
    margin-right: 15px;
    margin-top: 5px;
    display: inline-block;
    vertical-align: top
}

.card-style01 .blog-tag:before {
    content: "";
    margin: 0 0.75em;
    width: 3px;
    height: 3px;
    background-color: #8E919D;
    top: 50%;
    transform: translateY(-50%);
    left: -30%;
    display: inline-block;
    position: absolute;
    border-radius: 50%
}

.card-style01>.card-body:nth-child(1) .post-date {
    display: none
}

.card-style02 {
    border: none
}

.card-style02 .card-body {
    padding: 0
}

.card-style02 .card-body .card-img-text a {
    display: inline-block;
    font-size: 12px;
    background: #101824;
    color: #fff;
    border-radius: 100px;
    padding: 8px 16px;
    transition: all 0.2s ease-in-out 0s;
    text-transform: uppercase;
    line-height: 1;
    margin: 2px
}

.card-style02 .card-body .card-img-text a:hover,
.card-style02 .card-body .card-img-text a:active,
.card-style02 .card-body .card-img-text a:focus {
    background: var(--primary-color);
    color: #fff
}

.card-style02 .card-body .card-text .card-line {
    position: relative
}

.card-style02 .card-body .card-text .card-line span::before {
    content: "";
    position: absolute;
    left: 10%;
    top: 50%;
    background-color: var(--primary-color);
    width: 20px;
    height: 1px;
    transform: translateY(-50%)
}

.card-style03 {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    min-height: 579px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.card-style03 .card-content {
    position: relative;
    z-index: 2
}

.card-style03 .card-content .service-icon {
    width: 110px;
    height: 110px;
    border-radius: 0.375rem;
    background-color: var(--primary-color);
    padding: 19px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.35s;
    clip-path: url(#roundedDiamond);
    object-fit: cover
}

.card-style03 .card-content p {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.175);
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.5)
}

.card-style03 .card-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff
}

.card-style03 .card-content a i {
    margin-left: auto;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.175);
    transition: all 0.4s ease
}

.card-style03 .card-content a .butn-link {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.4s ease
}

.card-style03 .card-body {
    opacity: 0;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: all 0.6s ease;
    z-index: 1
}

.card-style03 .card-body:before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 43, 63, 0) 0%, #101824 88.45%);
    z-index: 1;
    border-radius: 0.375rem
}

.card-style03:hover .card-body {
    opacity: 1;
    transform: scale(1)
}

.card-style03:hover p {
    border-color: var(--primary-color);
    color: #fff
}

.card-style03:hover .card-content a i {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff
}

.card-style03.active .card-body {
    opacity: 1;
    transform: scale(1)
}

.card-style03.active h3 a {
    color: #fff
}

.card-style03.active p {
    color: #fff;
    border-color: var(--primary-color)
}

.card-style03.active .butn-link {
    color: #fff
}

.card-style03.active .card-content a i {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff
}

@media screen and (max-width: 575px) {
    .card-style03 {
        padding: 26px;
        min-height: 520px
    }
}

.services-grid>[class*="col-"] {
    display: flex
}

.services-grid .card-style04 {
    width: 100%
}

.card-style04 .card-body {
    position: relative;
    padding: 30px;
    border: 1px solid #FFFFFF1A;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column
}

.services-grid .card-style04 .card-body .border-top {
    margin-top: auto
}

.card-style04 .card-body:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: -1px;
    right: -1px;
    pointer-events: none;
    opacity: 0.15;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.card-style04 .card-body .services-icon {
    transition: all 0.4s ease
}

.card-style04 .card-body .services-icon i {
    display: inline-block;
    line-height: 1;
    color: var(--primary-color)
}

.card-style04 .card-body:hover .services-icon {
    animation-name: services-icon;
    animation-timing-function: ease-in-out;
    animation-duration: 0.4s;
    animation-iteration-count: 1
}

.card-style05 {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s
}

.card-style05 .team-img {
    position: relative;
    -webkit-transition: transform 0.6s linear;
    transition: transform 0.6s linear;
    overflow: hidden;
    border-radius: 0.375rem
}

.card-style05 .team-img img {
    position: relative;
    width: 100%;
    height: auto;
    -webkit-transition: transform 0.6s linear;
    transition: transform 0.6s linear;
    overflow: hidden;
    display: block
}

.card-style05 .team-img::before {
    content: '';
    position: absolute;
    display: block;
    z-index: 3;
    width: 67.1053%;
    height: 117.2956%;
    background: radial-gradient(78.39% 69.97% at 11.63% 7.06%, #101824 0%, #101824 33.33%, #101824 66.67%, #101824 100%);
    filter: blur(50px);
    -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
    -ms-transform: rotate(90deg) translate3d(0, 0, 0);
    transform: rotate(90deg) translate3d(0, 0, 0);
    top: 44%;
    left: 4%;
    right: initial;
    opacity: 1;
    border-radius: inherit;
    overflow: hidden
}

.card-style05 .team-img .team-name {
    position: absolute;
    cursor: default;
    right: 0;
    left: initial;
    top: 50%;
    font-size: 80px;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: -.07em;
    text-align: center;
    white-space: nowrap;
    width: 131.5789%;
    height: 1em;
    color: #ffffff;
    transform-origin: center center;
    -webkit-transform: translate(calc(50% - 0.23em), -50%) rotate(-90deg);
    -ms-transform: translate(calc(50% - 0.23em), -50%) rotate(-90deg);
    transform: translate(calc(50% - 0.23em), -50%) rotate(-90deg);
    z-index: 2
}

.card-style05 .team-img .team-icon {
    position: absolute;
    left: 7px;
    right: initial;
    bottom: 10px;
    overflow: hidden;
    max-height: calc(100% - 14px);
    z-index: 3;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    padding: 20px 19px 20px 19px;
    border-radius: 0.375rem;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    transform: translateX(-120%);
    background-color: var(--primary-color)
}

.card-style05 .team-img .team-icon ul {
    padding: 0;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    gap: 1.5em
}

.card-style05 .team-img .team-icon ul li {
    position: relative;
    opacity: 0;
    left: -30px;
    right: initial;
    -webkit-transition: opacity 0.3s, left 0.3s, right 0.3s;
    transition: opacity 0.3s, left 0.3s, right 0.3s;
    padding: 0;
    margin: 0
}

.card-style05 .team-img .team-icon ul li a {
    color: #fff
}

.card-style05:hover .team-img img {
    transform: scale(1.03)
}

.card-style05:hover .team-img .team-icon {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.card-style05:hover .team-img .team-icon ul li {
    opacity: 1;
    left: 0;
    right: initial
}

.card-style06 .card-body {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}

.card-style06 .card-body:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border-radius: 0.375rem;
    background-color: rgba(16, 24, 36, 0.9);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s;
    transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s
}

.card-style06 .card-body .portfolio-icon {
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 1
}

.card-style06 .card-body .portfolio-icon .top-icon {
    position: relative;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform .4s, opacity .2s;
    transition: transform .4s, opacity .2s;
    will-change: transform, opacity
}

.card-style06 .card-body .portfolio-icon .top-icon a {
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    color: #fff;
    font-size: 24px;
    height: 73px;
    line-height: 70px;
    text-align: center;
    width: 75px;
    border-radius: 0.375rem;
    background-color: var(--primary-color)
}

.card-style06 .card-body .portfolio-content {
    position: absolute;
    bottom: 33px;
    z-index: 9;
    left: 25px;
    right: 25px
}

.card-style06 .card-body .portfolio-content span {
    position: relative;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform .4s, opacity .2s;
    transition: transform .4s, opacity .2s;
    will-change: transform, opacity;
    padding-bottom: 0.375rem;
    display: block
}

.card-style06 .card-body .portfolio-content h3 {
    position: relative;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform .4s, opacity .2s;
    transition: transform .4s, opacity .2s;
    will-change: transform, opacity
}

.card-style06:hover .card-body:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s;
    transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s
}

.card-style06:hover .card-body .portfolio-icon .top-icon {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s, opacity 0.2s 0.2s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s, opacity 0.2s 0.2s
}

.card-style06:hover .card-body .portfolio-content span {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s
}

.card-style06:hover .card-body .portfolio-content h3 {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s
}

.card-style06 .card-body.round:after {
    border-radius: .3rem
}

@media screen and (max-width: 1199px) {
    .card-style06 .card-body .portfolio-content {
        bottom: 15px;
        left: 25px
    }

    .card-style06 .card-body .portfolio-icon .top-icon a {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 17px
    }
}

@media screen and (max-width: 575px) {
    .card-style06 .card-body .portfolio-icon .top-icon a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px
    }
}

.pagination {
    border-radius: 0
}

.pagination ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 auto;
    padding: 0
}

.pagination li {
    display: inline
}

.pagination li:first-child a {
    border-left-width: 1px
}

.pagination a {
    float: left;
    padding: 0 16px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff
}

.pagination a:hover {
    background-color: #101824;
    color: #fff
}

.pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default
}

.pagination .disabled span {
    color: #999;
    background-color: transparent;
    cursor: default
}

.pagination .disabled a {
    color: #999;
    background-color: transparent;
    cursor: default
}

.pagination .disabled a:hover {
    color: #999;
    background-color: transparent;
    cursor: default
}

.page-item:not(:first-child) .page-link {
    margin-left: 0
}

.pagination-style01 {
    margin-top: 4%;
    width: 100%;
    display: flex;
    justify-content: center
}

.pagination-style01 ul {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0;
    padding-left: 0
}

.pagination-style01 ul li {
    list-style: none
}

.pagination-style01 ul li a {
    border: 0;
    padding: 0 2px;
    margin: 0 7px;
    background: 0 0;
    color: #828282;
    min-width: 45px;
    font-size: inherit;
    text-align: center;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    line-height: 45px;
    min-height: 45px;
    display: block;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.pagination-style01 ul li a i {
    line-height: 40px;
    font-size: 18px;
    display: inline-block
}

.pagination-style01 ul li a:hover {
    background: #fff;
    color: #101824;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important
}

.pagination-style01 ul li.active a {
    background: #101824;
    color: #fff;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important
}

@media screen and (max-width: 575px) {
    .pagination-style01 ul {
        margin-top: 10px
    }

    .pagination-style01 ul li a {
        min-width: 40px;
        min-height: 40px;
        line-height: 40px;
        margin: 0 4px
    }
}

ul.resp-tabs-list {
    margin: 0px;
    padding: 0px
}

.resp-tabs-list li {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer
}

.resp-tabs-list li:last-child {
    margin-right: 0
}

.resp-tabs-list li i {
    font-size: 20px;
    padding-right: 5px;
    vertical-align: text-bottom
}

.resp-tabs-list li.resp-tab-active {
    border: 1px solid #101824;
    border-bottom: none;
    border-color: #101824 !important;
    margin-bottom: -1px;
    padding: 12px 14px 14px 14px;
    border-top: 4px solid #101824 !important;
    border-bottom: 0px #fff solid;
    border-bottom: none;
    background-color: #fff;
    color: #101824
}

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left
}

.resp-tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #c1c1c1;
    border-top-color: #c1c1c1;
    float: left;
    width: 100%
}

.resp-content-active {
    display: block
}

.resp-accordion-active {
    display: block
}

h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 14px;
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    margin: 0px;
    padding: 14px 15px;
    float: left;
    width: 100%
}

h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #101824 !important;
    color: #fff
}

h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue
}

.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 30%;
    margin-top: 0
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0 0 4px;
    cursor: pointer;
    float: none
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #101824 !important;
    float: left;
    width: 70%;
    min-height: 250px;
    clear: none
}

.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word
}

.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 14px 15px 15px 11px !important;
    border-top: 1px solid;
    border: 1px solid #101824 !important;
    border-left: 4px solid #101824 !important;
    margin-bottom: 4px !important;
    border-right: 1px #FFF solid !important
}

.resp-arrow {
    border-color: transparent #1e2022 #1e2022 transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px
}

.resp-easy-accordion h2.resp-accordion {
    display: block
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1
}

.resp-jfit {
    width: 100%;
    margin: 0px
}

.resp-tab-content-active {
    display: block;
    border-color: #101824 !important
}

h2.resp-accordion.resp-tab-active {
    border-color: #101824 !important
}

@media only screen and (max-width: 991px) {
    ul.resp-tabs-list {
        display: none
    }

    h2.resp-accordion {
        display: block
    }

    h2.resp-accordion i {
        margin-right: 8px;
        font-size: 18px
    }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important
    }

    .resp-vtabs .resp-tabs-container {
        border: none !important;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none
    }

    .resp-accordion-closed {
        display: none !important
    }

    .resp-tab-content {
        background-color: #fff
    }
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block
}

.owl-carousel .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-carousel .owl-dots {
    margin-top: 20px;
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color)
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-color)
}

.services-carousel-one.owl-theme .owl-nav {
    margin-top: 25px
}

.services-carousel-one.owl-theme .owl-nav [class*='owl-']:hover {
    background: #fff;
    color: #101824
}

.services-carousel-one.owl-theme .owl-nav.disabled+.owl-dots {
    text-align: center
}

.services-carousel-one.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    transition: all 0.3s ease 0s;
    top: unset;
    width: 50px;
    margin: 0;
    height: 50px;
    font-size: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    line-height: 50px;
    left: 0
}

.services-carousel-one.owl-carousel .owl-nav button.owl-prev i {
    font-weight: 700
}

.services-carousel-one.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    transition: all 0.3s ease 0s;
    top: unset;
    width: 50px;
    margin: 0;
    height: 50px;
    font-size: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    line-height: 50px;
    left: 60px
}

.services-carousel-one.owl-carousel .owl-nav button.owl-next i {
    font-weight: 700
}

.services-carousel-one.owl-carousel .owl-dots {
    position: absolute;
    text-align: center;
    left: 50%
}

@media screen and (max-width: 991px) {
    .services-carousel-one.owl-carousel .owl-nav button.owl-prev {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 16px
    }

    .services-carousel-one.owl-carousel .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
        left: 55px
    }
}

.testimonial-carousel-one.center .owl-nav {
    text-align: center
}

.testimonial-carousel-one .owl-nav {
    margin-top: 32px;
    text-align: left
}

.testimonial-carousel-one .owl-nav i {
    font-size: 28px;
    color: #fff
}

.testimonial-carousel-one .owl-nav span {
    font-size: 28px;
    color: #fff
}

.testimonial-carousel-one .owl-nav [class*='owl-'] {
    width: 40px;
    height: 40px;
    color: #191919
}

.testimonial-carousel-one .owl-nav [class*='owl-']:hover {
    background: unset;
    color: var(--primary-color)
}

.testimonial-carousel-one .owl-nav .owl-prev {
    margin-right: 30px;
    position: relative
}

.testimonial-carousel-one .owl-nav .owl-prev:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    position: absolute;
    right: -20px;
    top: 15px;
    border-radius: 50%
}

.testimonial-carousel-one .testimonial-carousel-quote:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: -1px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    overflow: hidden;
    font-size: 7px;
    font-weight: 400;
    text-align: center;
    text-indent: 1px;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff
}

.testimonial-carousel-one .testimonial-carousel-quote i {
    max-width: 20px !important;
    position: absolute;
    bottom: 5px;
    right: 3px;
    z-index: 9
}

.testimonial-carousel-one.owl-carousel .owl-dots {
    position: absolute;
    margin-top: 0;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    top: 33%;
    right: -61px;
    transform: translate(10px, 10px);
    transform: rotateZ(90deg)
}

@media screen and (max-width: 1399px) {
    .testimonial-carousel-one.owl-carousel .owl-dots {
        top: 13%;
        right: -11px
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-carousel-one.owl-carousel .owl-dots {
        right: -44px
    }
}

@media screen and (max-width: 575px) {
    .testimonial-carousel-one.owl-carousel .owl-dots {
        right: -29px
    }
}

.team-carousel-one.center .owl-nav {
    text-align: center
}

.team-carousel-one .owl-nav {
    position: absolute;
    top: -139px;
    text-align: left;
    right: 0
}

.team-carousel-one .owl-nav i {
    font-size: 28px;
    color: #101824
}

.team-carousel-one .owl-nav span {
    font-size: 28px;
    color: #101824
}

.team-carousel-one .owl-nav [class*='owl-'] {
    width: 40px;
    height: 40px;
    color: #191919
}

.team-carousel-one .owl-nav [class*='owl-']:hover {
    background: unset;
    color: var(--primary-color)
}

.team-carousel-one .owl-nav .owl-prev {
    margin-right: 30px;
    position: relative
}

.team-carousel-one .owl-nav .owl-prev:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    position: absolute;
    right: -20px;
    top: 15px;
    border-radius: 50%
}

.team-carousel-one .testimonial-carousel-quote:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: -1px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    overflow: hidden;
    font-size: 7px;
    font-weight: 400;
    text-align: center;
    text-indent: 1px;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff
}

.team-carousel-one .testimonial-carousel-quote img {
    max-width: 20px !important;
    position: absolute;
    bottom: 5px;
    right: 3px;
    z-index: 9
}

.team-carousel-one.owl-carousel .owl-dots {
    position: absolute;
    margin-top: 0;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    right: 50%;
    transform: translateX(-50%)
}

@media screen and (max-width: 767px) {
    .team-carousel-one.owl-carousel .owl-nav {
        top: -162px
    }
}

@media screen and (max-width: 575px) {
    .team-carousel-one.owl-carousel .owl-nav i {
        font-size: 18px
    }

    .team-carousel-one.owl-carousel .owl-nav {
        top: -152px
    }
}

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0
}

.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none
}

.accordion-style .btn-link {
    color: var(--primary-color);
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff
}

.accordion-style .btn-link:hover {
    text-decoration: none;
    color: var(--primary-color)
}

.accordion-style .btn-link:active {
    text-decoration: none;
    color: var(--primary-color)
}

.accordion-style .btn-link:focus {
    text-decoration: none;
    color: var(--primary-color)
}

.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: var(--primary-color);
    background-color: transparent;
    border-radius: .3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .btn-link.collapsed {
    color: #42545e;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff
}

.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px
    }
}

.accordion .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0
}

.accordion .card:last-child {
    margin-bottom: 0
}

.accordion .card-header {
    border: 0;
    padding: 0;
    background: none
}

.accordion .accordion-collapse {
    border: none
}

.accordion .accordion-button {
    border-bottom: none;
    color: #fff;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 16px 64px 16px 20px;
    text-decoration: none;
    background: #101824;
    border: 1px solid transparent;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px
}

.accordion .accordion-button:hover {
    text-decoration: none
}

.accordion .accordion-button:after {
    background: #fff;
    border: none;
    content: "-";
    right: 20px;
    border-radius: 5px;
    left: inherit;
    font-size: 18px;
    border: 1px solid #fff;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 21px;
    top: 14px;
    position: absolute;
    color: var(--primary-color);
    text-align: center
}

.accordion .accordion-button.collapsed {
    background: #fff;
    color: #575a7b;
    border: 1px solid #ededed;
    border-radius: 5px
}

.accordion .accordion-button.collapsed:after {
    background: #101824;
    border: none;
    content: "+";
    right: 20px;
    left: inherit;
    font-size: 18px;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 20px;
    top: 14px;
    border-radius: 5px;
    text-align: center;
    color: #fff
}

.accordion .card-body {
    color: #575a7b;
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

@media screen and (max-width: 991px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
        font-size: 16px
    }

    .accordion .accordion-button:after {
        right: 15px;
        font-size: 16px;
        height: 22px;
        line-height: 18px;
        width: 22px;
        top: 13px
    }

    .accordion .accordion-button.collapsed:after {
        right: 15px;
        font-size: 16px;
        height: 22px;
        line-height: 18px;
        width: 22px;
        top: 13px
    }

    .accordion .card-body {
        padding: 20px 15px
    }
}

@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px
    }
}

.accordion.style1 .accordion-button {
    color: #1c1c1c;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 17px;
    padding: 23px 0 23px 50px;
    line-height: 1
}

.accordion.style1 .accordion-button:after {
    content: "\f068";
    font-family: Font Awesome\ 7 Free;
    color: #fff;
    border-left: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    top: 16px;
    font-size: 12px;
    left: 0;
    right: inherit
}

.accordion.style1 .accordion-button.collapsed {
    background-color: transparent;
    color: #1c1c1c;
    border: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 17px;
    padding: 23px 0 23px 50px;
    line-height: 1
}

.accordion.style1 .accordion-button.collapsed:after {
    content: "\+";
    font-family: Font Awesome\ 7 Free;
    color: #101824;
    border: 0;
    background-color: rgba(16, 24, 36, 0.05);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    top: 16px;
    font-size: 12px;
    left: 0;
    right: inherit
}

.accordion.style1 .card {
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid rgba(4, 20, 36, 0.05)
}

.accordion.style1 .card:last-child {
    border-bottom: 0
}

.accordion.style1 .card-body {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    padding: 14px 0 14px 50px
}

.accordion.style2 .accordion-button {
    color: #fdfefe;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 20px;
    padding: 23px 20px 23px 0;
    line-height: 1
}

.accordion.style2 .accordion-button:after {
    content: "\f068";
    font-family: Font Awesome\ 7 Free;
    color: #fff;
    border: 0;
    background-color: transparent;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 23px;
    right: 0
}

.accordion.style2 .accordion-button.collapsed {
    background-color: transparent;
    color: #ffffff;
    border: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 20px;
    padding: 23px 20px 23px 0;
    line-height: 1
}

.accordion.style2 .accordion-button.collapsed:after {
    content: "\+";
    font-family: Font Awesome\ 7 Free;
    color: #ffffff;
    border-left: 0;
    background-color: transparent;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20px;
    left: 0;
    right: 0
}

.accordion.style2 .card {
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.accordion.style2 .card:last-child {
    border-bottom: 0
}

.accordion.style2 .card-body {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    padding: 14px 20px 14px 0;
    color: rgba(255, 255, 255, 0.5)
}

@media screen and (max-width: 575px) {
    .accordion.style2 .accordion-button {
        padding: 17px 20px 18px 0;
        font-size: 17px
    }

    .accordion.style2 .accordion-button.collapsed {
        padding: 20px 20px 17px 0;
        font-size: 17px
    }
}

.sidebar .widget {
    position: relative;
    display: block;
    background-color: #101824;
    border-radius: 0.375rem
}

.sidebar .widget .category-list li {
    margin-bottom: 15px
}

.sidebar .widget .category-list li:last-child {
    margin-bottom: 0
}

.sidebar .widget .category-list li a {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 20px 14px 28px;
    border-radius: 6px
}

.sidebar .widget .category-list li a span {
    z-index: 9;
    position: relative
}

.sidebar .widget .category-list li a:after {
    content: '\f061';
    font-family: "Font Awesome 7 Free";
    font-size: 12px;
    font-weight: bold;
    margin-left: -10px;
    opacity: 0;
    transition: all .3s
}

.sidebar .widget .category-list li a:before {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    z-index: 1;
    border-radius: 50%;
    content: '';
    position: absolute;
    top: 17px;
    left: 20px;
    transition: all .3s
}

.sidebar .widget .category-list li:hover a:after,
.sidebar .widget .category-list li:active a:after,
.sidebar .widget .category-list li:focus a:after {
    margin-left: 10px;
    opacity: 1
}

.sidebar .widget .category-list li.active a {
    background: var(--primary-color)
}

.sidebar .widget .category-list li.active a:before {
    background: #18455d
}

.sidebar .widget .category-list li.active a:after {
    margin-left: 10px;
    opacity: 1
}

.btn-wrapper {
    position: relative;
    text-align: center;
    font-weight: 400;
    display: inline-block
}

.btn-wrapper .dow-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 35px 12px 35px;
    background-color: var(--primary-color);
    color: #ffffff;
    margin: 0 -5px;
    display: inline-block
}

.btn-wrapper .butn-or {
    position: absolute;
    z-index: 9;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #18455d;
    box-shadow: 0 0 0 5px rgba(24, 69, 93, 0.3);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    left: 46%;
    top: 11px
}

.btn-wrapper .disc-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 35px 12px 35px;
    background-color: #ffffff;
    color: #18455d;
    display: inline-block
}

.widget-content {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 30px
}

.blog-tags a {
    background-color: var(--primary-color);
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border-radius: 3px;
    border: 1px solid var(--primary-color)
}

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

.blog-tags a:active {
    background-color: #fff;
    color: var(--primary-color)
}

.blog-tags a:focus {
    background-color: #fff;
    color: var(--primary-color)
}

.comment-reply-link {
    color: #18455d;
    background: rgba(24, 69, 93, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px
}

.comment-reply-link:hover {
    color: #fff;
    background: #18455d
}

.comment-reply-link:active {
    color: #fff;
    background: #18455d
}

.comment-reply-link:focus {
    color: #fff;
    background: #18455d
}

@media screen and (max-width: 575px) {
    .widget-content {
        padding: 20px
    }

    .btn-wrapper .dow-btn {
        margin: 0;
        padding: 12px 25px
    }

    .btn-wrapper .disc-btn {
        padding: 12px 25px
    }
}

.banner-wrapper {
    overflow: hidden
}

.banner-wrapper img {
    margin-top: -1px;
    margin-left: 0;
    clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%)
}

.banner-wrapper .icon-boxs {
    position: absolute;
    top: -60px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.banner-wrapper .icon-boxs i {
    line-height: 80px
}

.error-wrapper .number-wrap h1 {
    color: #fff;
    font-size: 250px;
    text-align: center;
    line-height: 1
}

@media screen and (max-width: 1199px) {
    .error-wrapper .number-wrap h1 {
        font-size: 230px;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 991px) {
    .error-wrapper .number-wrap h1 {
        font-size: 220px;
        margin-bottom: 15px
    }
}

@media screen and (max-width: 767px) {
    .error-wrapper .number-wrap h1 {
        font-size: 200px;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 575px) {
    .error-wrapper .number-wrap h1 {
        font-size: 150px
    }
}

.blogs .posts-wrapper .meta-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 30px;
    padding-left: 0;
    padding-bottom: 10px;
    position: relative;
    font-weight: 600
}

.blogs .posts-wrapper .meta-list:before {
    background: #ededed;
    bottom: -1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%
}

.blogs .posts-wrapper .meta-list li {
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #777;
    margin-right: 20px
}

.blogs .posts-wrapper .post-content-details {
    padding: 1.75rem
}

.blogs .posts-wrapper .blog-detail-list {
    padding-left: 0;
    list-style: none;
    margin: 0
}

.blogs .posts-wrapper .blog-detail-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    text-transform: capitalize;
    font-size: 16px
}

.blogs .posts-wrapper .blog-detail-list li:after {
    content: '\f0a9';
    font-family: Font Awesome\ 5 Free;
    position: absolute;
    left: 0px;
    top: 1px;
    z-index: 1;
    font-weight: 600;
    color: var(--primary-color)
}

.blogs .posts-wrapper .share-post {
    text-align: right;
    padding-left: 10px
}

.blogs .posts-wrapper .share-post ul li {
    display: inline-block;
    margin: 0 0 0 10px
}

@media screen and (max-width: 991px) {
    .blogs .posts-wrapper .meta-list {
        margin: 0 0 15px;
        padding-bottom: 15px
    }
}

@media screen and (max-width: 767px) {
    .blogs .posts-wrapper .blog-detail-list li {
        font-size: 14.4px
    }

    .blogs .posts-wrapper .share-post {
        text-align: unset
    }

    .blogs .posts-wrapper .share-post ul li {
        font-size: 15px;
        margin: 0 8px
    }

    .blogs .posts-wrapper .meta-list li {
        margin-right: 15px
    }

    .blogs .posts-wrapper .separator {
        margin-top: 20px
    }
}

.blog-tags {
    margin-bottom: 0;
    padding-left: 0
}

.blog-tags li {
    display: inline-block;
    list-style: none
}

.blog-tags li a {
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    padding: 3px 8px;
    margin: 4px 4px 4px 0;
    border: 1px solid #ededed;
    line-height: 30px;
    border-radius: 4px
}

.blog-tags li a:hover {
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
    color: #fff
}

@media screen and (max-width: 991px) {
    .widget-title {
        font-size: 18px;
        margin-bottom: 25px
    }
}

@media screen and (max-width: 767px) {
    .side-bar .widget {
        margin-bottom: 25px
    }
}

@media screen and (max-width: 575px) {
    .side-bar .widget {
        padding: 20px
    }
}

.countdown {
    padding: 0
}

.countdown li {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    min-width: 220px;
    overflow: hidden;
    margin-right: 40px;
    position: relative
}

.countdown li:last-child {
    margin-right: 0
}

.countdown li span {
    font-size: 100px;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    position: relative
}

.countdown li p.timeRefWeeks {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding-top: 26px;
    text-transform: capitalize
}

.countdown li p.timeRefDays {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding-top: 26px;
    text-transform: capitalize
}

.countdown li p.timeRefHours {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding-top: 26px;
    text-transform: capitalize
}

.countdown li p.timeRefMinutes {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding-top: 26px;
    text-transform: capitalize
}

.countdown li p.timeRefSeconds {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding-top: 26px;
    text-transform: capitalize
}

.countdown-box h2 {
    font-size: 70px
}

@media screen and (max-width: 1599px) {
    .countdown li {
        min-width: 240px;
        margin-bottom: 50px;
        margin-right: 50px
    }
}

@media screen and (max-width: 1399px) {
    .countdown li {
        min-width: 180px;
        margin-right: 30px
    }

    .countdown li span {
        font-size: 80px
    }
}

@media screen and (max-width: 1199px) {
    .countdown-box h2 {
        font-size: 50px
    }
}

@media screen and (max-width: 991px) {
    .countdown li {
        min-width: 155px;
        margin-right: 20px
    }

    .countdown li span {
        font-size: 65px
    }

    .countdown-box h2 {
        font-size: 40px
    }
}

@media screen and (max-width: 767px) {
    .countdown li {
        min-width: 130px;
        margin-right: 15px;
        margin-bottom: 20px
    }

    .countdown li span {
        font-size: 58px
    }

    .countdown li p.timeRefWeeks {
        font-size: 12px;
        padding-top: 15px
    }

    .countdown li p.timeRefDays {
        font-size: 12px;
        padding-top: 15px
    }

    .countdown li p.timeRefHours {
        font-size: 12px;
        padding-top: 15px
    }

    .countdown li p.timeRefMinutes {
        font-size: 12px;
        padding-top: 15px
    }

    .countdown li p.timeRefSeconds {
        font-size: 12px;
        padding-top: 15px
    }
}

@media screen and (max-width: 575px) {
    .countdown-box h2 {
        font-size: 30px
    }

    .countdown li {
        min-width: 130px;
        margin-right: 8px;
        margin-bottom: 20px;
        margin-left: 8px
    }
}

.social-icon {
    margin-bottom: 0;
    list-style: none;
    padding: 0
}

.social-icon li {
    display: inline-block;
    margin-right: 5px
}

.social-icon li a {
    text-align: center;
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff
}

.social-icon li a:hover {
    background-color: #101824
}

.social-icon li:last-child {
    margin-right: 0
}

.contact-map {
    width: 100%;
    height: 400px;
    vertical-align: top;
    border: 0
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

.lg-outer .lg-thumb-item.active {
    border-color: var(--primary-color)
}

.lg-outer .lg-thumb-item:hover {
    border-color: var(--primary-color)
}

.lg-progress-bar .lg-progress {
    background-color: var(--primary-color)
}

.lg-backdrop.in {
    opacity: 0.85
}

.error-page span {
    font-size: 300px;
    writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(267deg, #fff -5%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: middle
}

@media screen and (max-width: 1399px) {
    .error-page span {
        font-size: 258px
    }
}

@media screen and (max-width: 1199px) {
    .error-page span {
        font-size: 229px
    }
}

@media screen and (max-width: 991px) {
    .error-page span {
        font-size: 184px
    }
}

@media screen and (max-width: 767px) {
    .error-page span {
        writing-mode: inherit;
        font-size: 175px
    }
}

@media screen and (max-width: 575px) {
    .error-page span {
        writing-mode: inherit;
        font-size: 102px
    }
}

.team-details-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 35px;
    border-top: 1px solid #ededed
}

.team-details-social ul {
    margin-left: 30px;
    padding-left: 0;
    margin-bottom: 0
}

.team-details-social ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px
}

.team-details-social ul li:last-child {
    margin: 0
}

.team-details-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ededed;
    color: #343a40;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

.team-details-social ul li a:hover {
    color: #fff;
    border-color: var(--primary-color);
    background: var(--primary-color)
}

.portfolio-details-style01 .box-letter {
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
    float: left;
    width: 1.5em;
    height: 1.5em;
    margin-top: 0.3em;
    margin-right: 0.5em;
    font-size: 1.75em;
    line-height: 1.55em;
    color: #fff;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    border-radius: 10px
}

.portfolio-details-style01 .portfolio-tag a {
    display: inline-block;
    margin-bottom: 6px;
    margin-right: 6px;
    padding: 0 9px;
    font-size: 14px !important;
    line-height: 28px;
    font-weight: 500;
    color: #1e3e55;
    background-color: transparent;
    transition: 0.4s;
    border-radius: 3px;
    border: 1px solid rgba(16, 24, 36, 0.065)
}

.portfolio-details-style01 .portfolio-tag a:last-child {
    margin-right: 0
}

.portfolio-details-style01 .portfolio-tag a:hover {
    color: #fff;
    border-color: var(--primary-color);
    background-color: var(--primary-color)
}

.portfolio-details-style01 .portfolio-social-icons a {
    width: 36px;
    height: 36px;
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #1e3e55;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.4s
}

.portfolio-details-style01 .portfolio-social-icons a:last-child {
    margin-right: 0
}

.portfolio-details-style01 .portfolio-social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff
}

.filtering {
    margin-bottom: 40px
}

.filtering span {
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
    padding: 6px 15px;
    border-radius: 4px;
    background: #101824;
    color: #ffffff;
    text-transform: uppercase
}

.filtering span:last-child {
    margin: 0
}

.filtering .active {
    color: #ffffff;
    background: var(--primary-color)
}

@media screen and (max-width: 575px) {
    .filtering {
        margin-bottom: 30px
    }

    .filtering span {
        padding: 6px 8px;
        margin-right: 5px;
        font-size: 13px
    }
}

.portfolio-style01 .portfolio-count .inner-count {
    position: relative;
    display: block;
    font-size: 160px;
    line-height: 160px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.6)
}

.portfolio-style01 .portfolio-count .h6 {
    position: absolute;
    top: 0px;
    right: -5px;
    font-weight: 400;
    color: #fff;
    height: 100%;
    text-align: center;
    writing-mode: vertical-lr;
    margin-bottom: 0
}

.portfolio-style01 .portfolio-box {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-width: 1px 1px 0 1px;
    height: 100%;
    padding: 273px 47px 34px 50px;
    transition: all 500ms ease
}

.portfolio-style01 .portfolio-box .bg-img {
    position: absolute;
    left: -2px;
    top: -30px;
    width: 0%;
    height: calc(100% + 60px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: all 500ms ease
}

.portfolio-style01 .portfolio-box .bg-img:before {
    position: absolute;
    content: '';
    background: #161e2c;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.3
}

.portfolio-style01 .portfolio-box .content-box {
    position: relative;
    z-index: 2;
    transition: all 500ms ease
}

.portfolio-style01 .portfolio-box .h3 a {
    color: var(--primary-color);
    display: inline-block
}

.portfolio-style01 .portfolio-box .link a i {
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5)
}

.portfolio-style01 .portfolio-box:hover .bg-img {
    width: calc(100% + 3px);
    opacity: 1
}

.portfolio-style01 .portfolio-box:hover .content-box {
    transform: translateY(34px)
}

.portfolio-style01 .portfolio-box:hover .h3 a {
    color: #fff
}

.portfolio-style01 .portfolio-box:hover .link a i {
    color: #fff;
    transform: rotate(-45deg)
}

@media screen and (max-width: 1399px) {
    .portfolio-style01 .portfolio-box {
        padding: 273px 30px 34px 25px
    }

    .portfolio-style01 .portfolio-count .inner-count {
        font-size: 140px;
        line-height: 140px
    }
}

@media screen and (max-width: 1199px) {
    .portfolio-style01 .portfolio-box {
        padding: 273px 40px 34px 30px
    }
}

@media screen and (max-width: 575px) {
    .portfolio-style01 .portfolio-count .inner-count {
        font-size: 80px;
        line-height: 80px
    }

    .portfolio-style01 .portfolio-count .h6 {
        position: unset;
        writing-mode: unset;
        text-align: start
    }
}

.about-style01 .experience-box {
    position: relative;
    display: inline-block
}

.about-style01 .experience-box img {
    width: 100%;
    border-radius: 0.375rem
}

.about-style01 .experience-card {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 216px;
    height: 253px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.375rem;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.about-style01 .experience-card .h3 {
    font-size: 90px;
    margin: 0;
    font-weight: 700;
    background-image: url("../img/content/about-03.jpg");
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: block;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.about-style01 .experience-card p {
    font-size: 16px;
    color: #555;
    background-image: url("../img/content/about-03.jpg");
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: block;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media screen and (max-width: 1399px) {
    .about-style01 .experience-card {
        width: 184px;
        height: 214px
    }
}

.service-style01 .service-box {
    transition: all 1s ease;
    position: relative
}

.service-style01 .service-box .service-img {
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    height: 100%
}

.service-style01 .service-box .service-img .service-num {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 400px;
    font-weight: 400;
    line-height: 0.695;
    letter-spacing: -12px;
    position: absolute;
    left: -85px;
    bottom: -25px;
    z-index: 9
}

.service-style01 .service-box .service-img img {
    transform: scale(1.15);
    opacity: 0;
    transition: all 1s ease;
    object-fit: cover;
    height: 100%;
    width: 100%
}

.service-style01 .service-box .service-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(223, 198, 62, 0.4);
    border-radius: 0.375rem;
    opacity: 0;
    transition: all 0.5s ease
}

.service-style01 .service-box .service-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    padding: 56px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    overflow: hidden;
    position: relative
}

.service-style01 .service-box .service-content .service-tag {
    display: inline-flex;
    color: #E5E5E5;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5555555556;
    border-radius: 8px;
    background-color: #ffffff1a;
    backdrop-filter: blur(6px);
    padding: 8px 24px
}

.service-style01 .service-box .service-content .service-title {
    position: relative;
    z-index: 1
}

.service-style01 .service-box .service-content .service-title .h3 a {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.36px;
    margin-bottom: 24px
}

.service-style01 .service-box:hover .service-img img {
    transform: scale(1);
    opacity: 1
}

.service-style01 .service-box:hover .service-img::before {
    opacity: 1
}

.services-block {
    backdrop-filter: blur(40px);
    margin-top: -108px;
    position: relative;
    z-index: 9;
    overflow: visible;
    background-color: rgba(16, 24, 36, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2)
}

@media screen and (max-width: 991px) {
    .services-block {
        margin-top: 0;
        background-color: #101824
    }

    .service-style01 .service-box .service-content {
        padding: 45px
    }

    .service-style01 .service-box .service-content .service-title .h3 a {
        font-size: 32px
    }

    .service-style01 .service-box .service-img .service-num {
        font-size: 277px
    }
}

@media screen and (max-width: 767px) {
    .service-style01 .service-box .service-content {
        padding: 34px
    }
}

@media screen and (max-width: 575px) {
    .service-style01 .service-box .service-content {
        padding: 23px
    }

    .service-style01 .service-box .service-content .service-title .h3 a {
        font-size: 26px
    }

    .service-style01 .service-box .service-img .service-num {
        font-size: 231px
    }
}

.why-choose-style01 .why-choose-content {
    padding: 50px 0px 50px 0px;
    position: relative;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: end
}

.why-choose-style01 .why-choose-content .why-choose-num .h3 {
    font-weight: 800;
    font-size: 127px;
    line-height: 0.72em;
    letter-spacing: -0.06em;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-bottom: 0
}

.why-choose-style01 .why-choose-content:before {
    content: "";
    top: -1px;
    left: 0;
    background: #101824;
    height: 1px;
    width: 0;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute
}

.why-choose-style01 .why-choose-content:hover:before {
    width: 100%
}

.why-choose-style01 .why-choose-content:hover .why-choose-num .h3.border-text.primary {
    color: var(--primary-color);
    -webkit-text-fill-color: unset
}

.why-choose-style01 .why-choose-content:hover .why-choose-num .h3.linear-gradient-text-primary {
    color: var(--primary-color);
    -webkit-text-fill-color: unset
}

@media screen and (max-width: 1199px) {
    .why-choose-style01 .why-choose-content {
        padding: 38px 0 38px 0
    }

    .why-choose-style01 .why-choose-content .why-choose-num .h3 {
        font-size: 102px
    }
}

@media screen and (max-width: 767px) {
    .why-choose-style01 .why-choose-content {
        padding: 32px 0 32px 0
    }

    .why-choose-style01 .why-choose-content .why-choose-num .h3 {
        font-size: 86px
    }
}

@media screen and (max-width: 575px) {
    .why-choose-style01 .why-choose-content {
        display: block
    }

    .why-choose-style01 .why-choose-content .why-choose-num .h3 {
        font-size: 60px;
        line-height: 1
    }
}

.testimonial-style01 {
    overflow-x: clip
}

.testimonial-style01 .testimonial-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 90px
}

.testimonial-style01 .testimonial-content::before {
    content: "";
    position: absolute;
    left: 43px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #dee2e6
}

.testimonial-style01 .testimonial-text {
    position: relative;
    display: flex;
    gap: 60px
}

.testimonial-style01 .testimonial-text::before {
    content: "";
    position: absolute;
    top: -46px;
    left: 43px;
    width: 90vw;
    height: 1px;
    background: #dee2e6
}

.testimonial-style01 .testimonial-text:first-child::before {
    display: none
}

@media screen and (max-width: 1399px) {
    .testimonial-style01 .testimonial-text {
        gap: 49px
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-style01 .testimonial-content {
        gap: 68px
    }
}

@media screen and (max-width: 575px) {
    .testimonial-style01 .testimonial-content {
        gap: 68px
    }

    .testimonial-style01 .testimonial-content::before {
        content: none
    }

    .testimonial-style01 .testimonial-text {
        display: block
    }

    .testimonial-style01 .testimonial-text::before {
        width: 105vw;
        top: -32px;
        left: -20px
    }
}

.progress-round {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative
}

.progress-round:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #f1f1f1;
    position: absolute;
    top: 0;
    left: 0
}

.progress-round>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1
}

.progress-round .progress-left {
    left: 0
}

.progress-round .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
    animation: loading-5 1.2s linear forwards 1.8s
}

.progress-round .progress-left .progress-bar.progress-bar2 {
    animation: loading-3 1.2s linear forwards 1.8s
}

.progress-round .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 2px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: var(--primary-color)
}

.progress-round .progress-right {
    right: 0
}

.progress-round .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards
}

.progress-round .progress-value {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 135px;
    text-align: center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 5%;
    left: 5%
}

@media screen and (max-width: 991px) {
    .progress-round .progress-value {
        font-size: 14px
    }
}

@keyframes "loading-1" {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes "loading-2" {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes "loading-3" {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes "loading-4" {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

@keyframes "loading-5" {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

.progress-style1 .progress {
    height: 8px
}

.extra-style01 {
    min-height: 900px;
    position: relative;
    align-content: end
}

.extra-style01 .video_btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: relative;
    background: var(--primary-color);
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s
}

.extra-style01 .video_btn:before {
    width: 75px;
    height: 75px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite
}

.extra-style01 .video_btn:after {
    width: 60px;
    height: 60px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite
}

.extra-style01 .video_btn:hover i {
    color: #fff
}

.extra-style01 .video_btn:focus i {
    color: #fff
}

.extra-style01 .video_btn.small {
    width: 55px;
    height: 55px;
    line-height: 55px
}

.extra-style01 .video_btn.small:after {
    height: 50px;
    width: 50px
}

.extra-style01 .video_btn.small:before {
    height: 65px;
    width: 65px
}

@media screen and (max-width: 991px) {
    .extra-style01 .video_btn {
        height: 55px;
        width: 55px;
        line-height: 55px
    }

    .extra-style01 .video_btn:after {
        height: 75px;
        width: 75px
    }

    .extra-style01 .video_btn:before {
        height: 90px;
        width: 90px
    }
}

@media screen and (max-width: 1399px) {
    .extra-style01 {
        min-height: 850px
    }
}

@media screen and (max-width: 1199px) {
    .extra-style01 {
        min-height: 680px
    }
}

@media screen and (max-width: 767px) {
    .extra-style01 .video_btn {
        height: 50px;
        width: 50px;
        line-height: 50px
    }

    .extra-style01 .video_btn:after {
        height: 70px;
        width: 70px
    }

    .extra-style01 .video_btn:before {
        height: 85px;
        width: 85px
    }
}

@media screen and (max-width: 575px) {
    .extra-style01 {
        min-height: 400px
    }
}

@keyframes "pulse-border" {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1)
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2)
    }
}

.client-style01 .client-logo {
    opacity: 1;
    -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -moz-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -ms-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -o-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center
}

.client-style01 .client-logo img {
    max-height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.35s cubic-bezier(0.2, 0, 0.3, 1)
}

.client-style01:hover .client-logo {
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: .6
}

.client-style01 .client-logo:hover {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0)
}

.client-style01 .client-logo:hover img {
    transform: scale(1.8);
}

.counter-style01 .counter-block .counter-inner {
    font-size: 78px;
    line-height: 1;
    font-weight: 700;
    color: #101824;
    letter-spacing: -0.04em;
    overflow: hidden
}

.counter-style01 .counter-block .counter-inner .counter-no {
    display: flex;
    margin: 0 0 -0.36em 0;
    font-weight: inherit;
    position: relative;
    white-space: nowrap;
    justify-content: center
}

.counter-style01 .counter-block .counter-line {
    width: 100%;
    height: 1px;
    background: #dee2e6;
    margin: 0 0 21px
}

@media screen and (max-width: 1199px) {
    .counter-style01 .counter-block .counter-inner {
        font-size: 65px
    }

    .counter-style01 .counter-block .counter-inner .counter-no {
        margin: 0 0 -0.30em 0
    }

    .counter-style01 .counter-block .counter-line {
        margin: 0 0 12px
    }
}

@media screen and (max-width: 991px) {
    .counter-style01 .counter-block .counter-inner {
        font-size: 56px
    }
}

.counter-style02 .counter-icon {
    position: relative
}

.counter-style02 .counter-icon::before {
    display: inline-block;
    font-family: "Font Awesome 7 Free";
    font-weight: 600 !important;
    content: "\f0a3";
    font-size: 20px;
    position: absolute;
    width: 30px;
    right: -30px;
    margin-top: -30px;
    top: 50%;
    color: var(--primary-color)
}

.counter-style02 .counter-icon .counter-num {
    font-size: 120px;
    margin: 0 0 10px;
    line-height: .8em;
    display: block;
    color: #fff;
    position: relative;
    z-index: 9;
    font-weight: 600;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.counter-style02 .row>div:last-child .counter-icon::before {
    display: none
}

@media screen and (max-width: 1399px) {
    .counter-style02 .counter-icon::before {
        right: -28px
    }

    .counter-style02 .counter-icon .counter-num {
        font-size: 90px
    }
}

@media screen and (max-width: 1199px) {
    .counter-style02 .counter-icon .counter-num {
        font-size: 86px
    }

    .counter-style02 .counter-icon::before {
        content: none
    }
}

@media screen and (max-width: 575px) {
    .counter-style02 .counter-icon .counter-num {
        font-size: 69px
    }
}

.process-style01 .process-box {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: background-color 0.4s ease, box-shadow 0.4s ease
}

.process-style01 .process-grid>[class*="col-"] {
    display: flex
}

.process-style01 .process-grid .image-hover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50rem
}

.process-style01 .process-grid .image-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.process-style01 .process-grid .process-box p {
    flex-grow: 1
}

.process-style01 .process-box .process-step {
    padding: 10px 30px;
    color: #fff;
    background-color: var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    z-index: 1;
    border-radius: 50px
}

.process-style01 .process-box .process-line {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #e9ecef;
    transition: background-color 0.4s ease;
    z-index: 0
}

.process-style01 .process-box:hover {
    background-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08)
}

.process-style01 .process-box:hover .diamond-shape {
    background-color: #fff
}

.process-style01 .process-box:hover .h5 {
    color: #ffffff
}

.process-style01 .process-box:hover p {
    color: #ffffff
}

.process-style01 .process-box:hover .process-step {
    background-color: #ffffff;
    color: var(--primary-color)
}

.process-style01 .process-box:hover .process-line {
    background-color: rgba(255, 255, 255, 0.2)
}

.process-style01 .process-box:active,
.process-style01 .process-box.active {
    background-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08)
}

.process-style01 .process-box:active .diamond-shape,
.process-style01 .process-box.active .diamond-shape {
    background-color: #fff
}

.process-style01 .process-box:active .h5,
.process-style01 .process-box.active .h5 {
    color: #ffffff
}

.process-style01 .process-box:active p,
.process-style01 .process-box.active p {
    color: #ffffff
}

.process-style01 .process-box:active .process-step,
.process-style01 .process-box.active .process-step {
    background-color: #ffffff;
    color: var(--primary-color)
}

.process-style01 .process-box:active .process-line,
.process-style01 .process-box.active .process-line {
    background-color: rgba(255, 255, 255, 0.2)
}

.process-style01 .process-box:focus {
    background-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08)
}

.process-style01 .process-box:focus .diamond-shape {
    background-color: #fff
}

.process-style01 .process-box:focus .h5 {
    color: #ffffff
}

.process-style01 .process-box:focus p {
    color: #ffffff
}

.process-style01 .process-box:focus .process-step {
    background-color: #ffffff;
    color: var(--primary-color)
}

.process-style01 .process-box:focus .process-line {
    background-color: rgba(255, 255, 255, 0.2)
}

.process-style01 [class^="col-"]:first-child .process-line {
    left: 50%;
    transform: none;
    width: 50%
}

.process-style01 [class^="col-"]:last-child .process-line {
    left: 0;
    transform: none;
    width: 50%
}

@media screen and (max-width: 991px) {
    .process-style01 .process-box {
        padding: 20px 20px
    }

    .process-style01 .process-box .process-step {
        display: block
    }

    .process-style01 [class^="col-"] .process-line {
        display: none
    }
}

.process-style02 .process-right {
    gap: 60px;
    position: relative;
    display: flex;
    z-index: 1;
    flex-direction: column;
    justify-content: space-between
}

.process-style02 .process-right:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(16, 24, 36, 0.1);
    inset-inline-start: 20px;
    height: calc(100% - 80px);
    inset-block-start: 24px;
    z-index: -1
}

.process-style02 .process-box {
    display: flex;
    flex-direction: row;
    gap: 60px;
    text-align: start
}

.process-style02 .process-icon .icon-circle {
    background-color: rgba(16, 24, 36, 0.065);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center
}

.process-style02 .process-icon .icon-circle .icon-inner-circle {
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: var(--primary-color);
    border-radius: 50rem
}

@media screen and (max-width: 1399px) {
    .process-style02 .process-right:before {
        height: calc(100% - 105px)
    }
}

@media screen and (max-width: 1199px) {
    .process-style02 .process-box {
        gap: 50px
    }

    .process-style02 .process-right {
        gap: 35px
    }
}

@media screen and (max-width: 991px) {
    .process-style02 .process-box {
        gap: 32px
    }
}

@media screen and (max-width: 575px) {
    .process-style02 .process-box {
        gap: 20px
    }
}

.faq-style01 .faq-name {
    position: absolute;
    cursor: default;
    right: 0;
    left: initial;
    top: 50%;
    font-size: 80px;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: -.07em;
    text-align: center;
    white-space: nowrap;
    width: 131.5789%;
    height: 1em;
    color: #ffffff;
    transform-origin: center center;
    -webkit-transform: translate(calc(50% - 0.23em), -50%) rotate(-90deg);
    -ms-transform: translate(calc(50% - 0.23em), -50%) rotate(-90deg);
    transform: translate(calc(50% - 0.23em), -50%) rotate(270deg);
    background: linear-gradient(217deg, #fff 38%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2
}

.faq-style01 .faq-box {
    display: flex;
    gap: 90px 90px;
    row-gap: 90px;
    column-gap: 90px;
    overflow: hidden;
    border-radius: 0.375rem;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
    flex-direction: column
}

@media screen and (max-width: 575px) {
    .faq-style01 .faq-box {
        padding-top: 27px;
        padding-bottom: 33px;
        padding-left: 30px;
        padding-right: 40px
    }
}

.progress-style01 .progress {
    height: 8px
}

.progress-style01 .progress .progress-bar {
    background-color: var(--primary-color)
}

.team-style01 .team-img {
    position: relative;
    aspect-ratio: 1 / 1.4;
    overflow: hidden;
    border-radius: 0.375rem
}

.team-style01 .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.team-style01 .team-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 80px;
    backdrop-filter: blur(15px);
    mask-image: linear-gradient(to top, #000 0%, #000 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 0%, #000 50%, transparent 100%);
    border-radius: 0.375rem
}

.contact-us {
    padding: 60px;
    background-color: #f6f6f6
}

.contact-us .contacts-icon {
    float: left;
    margin-right: 20px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background-color: rgba(255, 255, 255, 0.5196078431);
    text-align: center;
    display: inline-block;
    transition: .5s
}

.contact-us .contacts-icon img {
    padding: 16px
}

.contact-us .contacts-icon i {
    color: #fff;
    font-size: 22px;
    transition: .5s
}

.contact-us .contact-details {
    padding: 30px 50px 40px;
    border-radius: 5px;
    margin-left: 20px;
    background-color: #101824
}

.contact-us .contact-details .follow-company-icon2 a {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    margin-right: 7px;
    transition: .5s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center
}

.contact-us .contact-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
    padding: 0 0 25px;
    margin-bottom: 22px
}

.contact-us .contact-info:hover .contacts-icon {
    transform: rotateY(180deg);
    background: var(--primary-color)
}

.contact-us .contacts-title h6 {
    font-size: 14px;
    line-height: 23px;
    opacity: .702;
    margin-top: 5px
}

.contact-us .contact-info.upper2 {
    border-bottom: none;
    margin-bottom: 0px
}

.contact-us .follow-company-icon2 a:hover {
    background: var(--primary-color)
}

@media screen and (max-width: 1199px) {
    .contact-us {
        padding: 40px
    }

    .contact-us .contact-details {
        padding: 30px 31px 30px;
        margin-left: 7px
    }
}

@media screen and (max-width: 575px) {
    .contact-us {
        padding: 30px 19px 31px 19px
    }

    .contact-us .contact-info {
        padding: 0 0 18px;
        margin-bottom: 21px
    }

    .contact-us .contacts-icon {
        margin-right: 13px;
        width: 48px;
        height: 48px;
        line-height: 48px
    }

    .contact-us .contact-details {
        padding: 19px 19px 19px;
        margin-left: 7px
    }

    .contact-us .contacts-title h6 {
        font-size: 13px;
        line-height: 21px
    }
}

.scroll-section {
    width: 100%;
    overflow: hidden;
    position: relative
}

.scroll-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running
}

.pause-on-hover:hover {
    animation-play-state: paused
}

.pause-on-hover:active {
    animation-play-state: paused
}

.pause-on-hover:focus {
    animation-play-state: paused
}

.scroll-left {
    animation-name: scroll-left
}

.scroll-right {
    animation-name: scroll-right
}

.scroll-group {
    display: inline-flex;
    white-space: nowrap
}

.scroll-item {
    display: inline-block;
    white-space: nowrap;
    line-height: 1
}

.scroll-item.with-img {
    min-width: 256px;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: inline-flex
}

.scroll-item.with-img img {
    vertical-align: middle;
    max-height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.35s cubic-bezier(0.2, 0, 0.3, 1), opacity 0.3s ease
}

.scroll-item.with-img:hover img {
    transform: scale(1.08)
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-200%)
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-200%)
    }

    100% {
        transform: translateX(0)
    }
}

.scroll-icon-rotated {
    -webkit-animation: icon-rotated 2s linear infinite;
    animation: icon-rotated 2s linear infinite
}

@keyframes icon-rotated {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

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

.scroll-speed-1 {
    animation-duration: 10s
}

.scroll-speed-2 {
    animation-duration: 15s
}

.scroll-speed-3 {
    animation-duration: 20s
}

.scroll-speed-4 {
    animation-duration: 30s
}

.scroll-speed-5 {
    animation-duration: 40s
}

.scroll-speed-6 {
    animation-duration: 60s
}

.scroll-speed-7 {
    animation-duration: 80s
}

.scroll-speed-8 {
    animation-duration: 100s
}

.scroll-speed-9 {
    animation-duration: 120s
}

.scroll-section.scroll-style01 .scroll-item {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    font-size: 120px;
    font-weight: 800;
    line-height: 1.05em;
    letter-spacing: -0.02em;
    color: rgba(16, 24, 36, 0.08);
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.scroll-section.scroll-style01 .scroll-item:hover {
    color: var(--primary-color)
}

@media screen and (max-width: 991px) {
    .scroll-section.scroll-style01 .scroll-item {
        font-size: 109px
    }
}

@media screen and (max-width: 767px) {
    .scroll-section.scroll-style01 .scroll-item {
        font-size: 97px
    }
}

@media screen and (max-width: 575px) {
    .scroll-section.scroll-style01 .scroll-item {
        font-size: 79px
    }
}

.scroll-section.scroll-style02 .scroll-item.with-img {
    min-width: 192px
}

.scroll-section.scroll-style02 .scroll-item.with-img img {
    opacity: 0.4;
    transition-duration: 0.3s
}

.scroll-section.scroll-style02 .scroll-item.with-img:hover img {
    opacity: 1;
    transform: scale(1.08)
}

.home-insights-gallery {
    overflow: hidden
}

.home-insights-gallery .button-link {
    border-bottom-color: var(--primary-color)
}

.insight-gallery-masonry {
    column-count: 4;
    column-gap: 24px
}

.insight-gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 24px
}

.insight-gallery-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(16, 24, 36, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background-color: #fff
}

.insight-gallery-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 24, 36, 0.04) 0%, rgba(16, 24, 36, 0.72) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none
}

.insight-gallery-card:hover,
.insight-gallery-card:focus,
.insight-gallery-card:active {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(16, 24, 36, 0.16)
}

.insight-gallery-card-media {
    position: relative;
    overflow: hidden;
    background-color: rgba(16, 24, 36, 0.06)
}

.insight-gallery-card-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.45s ease
}

.insight-gallery-card:hover:before,
.insight-gallery-card:focus:before,
.insight-gallery-card:active:before {
    opacity: 1
}

.insight-gallery-card:hover .insight-gallery-card-media img,
.insight-gallery-card:focus .insight-gallery-card-media img,
.insight-gallery-card:active .insight-gallery-card-media img {
    transform: scale(1.06)
}

.insight-gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 18px 20px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease
}

.insight-gallery-overlay-visible,
.insight-gallery-card:hover .insight-gallery-overlay,
.insight-gallery-card:focus .insight-gallery-overlay,
.insight-gallery-card:active .insight-gallery-overlay {
    opacity: 1;
    transform: translateY(0)
}

.insight-gallery-card-title {
    color: #fff;
    line-height: 1.35;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28)
}

.insight-gallery-card-featured {
    max-width: 100%
}

.insight-gallery-single-media img {
    max-height: 620px;
    object-fit: contain;
    display: block
}

.insight-gallery-carousel .owl-stage {
    display: flex
}

.insight-gallery-carousel .owl-item {
    height: auto
}

.insight-gallery-carousel .owl-item>div {
    height: 100%
}

.insight-gallery-carousel .insight-gallery-card {
    height: 100%
}

.insight-gallery-carousel .owl-nav {
    margin-top: 22px;
    display: flex;
    gap: 12px
}

.insight-gallery-carousel .owl-nav button.owl-prev,
.insight-gallery-carousel .owl-nav button.owl-next {
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: #fff !important;
    color: #101824 !important;
    transition: all 0.3s ease !important
}

.insight-gallery-carousel .owl-nav button.owl-prev:hover,
.insight-gallery-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    color: #fff !important
}

.mfp-figure figure {
    margin: 0
}

.mfp-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

@media screen and (max-width: 1399px) {
    .insight-gallery-masonry {
        column-count: 3
    }
}

@media screen and (max-width: 991px) {
    .insight-gallery-masonry {
        column-count: 2
    }
}

@media screen and (max-width: 767px) {
    .insight-gallery-masonry {
        column-count: 1;
        column-gap: 18px
    }

    .insight-gallery-masonry-item {
        margin-bottom: 18px
    }

    .insight-gallery-overlay {
        padding: 16px
    }
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background-color: rgba(250, 81, 15, 0.065)
}

.prev-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px
}

.prev-page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: .3s ease-in-out;
    pointer-events: none
}

.prev-page .page-info>a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s
}

.prev-page .page-info .image-prev {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden
}

.prev-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden
}

.prev-page .page-info .prev-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.prev-page .page-info .prev-title:empty {
    display: none
}

.prev-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.prev-page .page-info .next-title:empty {
    display: none
}

.prev-page:hover:before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1)
}

.prev-page a {
    justify-content: flex-start;
    text-align: left
}

.prev-page a:hover .image-prev:after {
    visibility: visible;
    opacity: 1
}

.prev-page a:hover .image-prev:before {
    visibility: visible;
    opacity: 1;
    margin-left: 0
}

.prev-page .image-prev {
    margin-right: 20px
}

.prev-page .image-prev:after {
    background-color: var(--primary-color);
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.prev-page .image-prev:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px;
    margin-left: auto
}

.next-page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: .3s ease-in-out;
    pointer-events: none
}

.next-page .page-info>a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s
}

.next-page .page-info .image-prev {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden
}

.next-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden
}

.next-page .page-info .prev-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.next-page .page-info .prev-title:empty {
    display: none
}

.next-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.next-page .page-info .next-title:empty {
    display: none
}

.next-page:hover:before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1)
}

.next-page .image-next {
    margin-left: 20px
}

.next-page .image-next:after {
    background-color: var(--primary-color);
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page .image-next:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-right: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    transform: scaleX(-1)
}

.next-page a {
    justify-content: flex-end;
    text-align: right
}

.next-page a:hover .image-next:after {
    visibility: visible;
    opacity: 1
}

.next-page a:hover .image-next:before {
    visibility: visible;
    opacity: 1;
    margin-right: 0
}

.next-page .next-title {
    text-align: right
}

.prev-link-page-info>span {
    display: block
}

.prev-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px
}

.prev-link-page-info .date-details>div {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.prev-link-page-info .date-details>span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.prev-link-page-info .date-details:only-child {
    margin-top: 0
}

.next-link-page-info>span {
    display: block
}

.next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px
}

.next-link-page-info .date-details>div {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.next-link-page-info .date-details>span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.next-link-page-info .date-details:only-child {
    margin-top: 0
}

@media (max-width: 767px) {
    .prev-page {
        width: calc(100% - 20px);
        max-width: unset
    }

    .next-page {
        width: calc(100% - 20px);
        max-width: unset
    }

    .prev-page+.next-page {
        margin-top: 0
    }

    .page-navigation {
        flex-direction: column
    }
}

@media (max-width: 575px) {
    .prev-page .page-info>a {
        padding: 10px
    }

    .prev-page .page-info .prev-title {
        max-width: 168px
    }

    .prev-page .page-info .next-title {
        max-width: 168px
    }

    .next-page .page-info>a {
        padding: 10px
    }

    .next-page .page-info .prev-title {
        max-width: 168px
    }

    .next-page .page-info .next-title {
        max-width: 168px
    }
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    margin-bottom: .5rem
}

.form-control:focus {
    border-color: var(--primary-color)
}

.form-check-input:checked {
    border-color: var(--primary-color);
    background-color: var(--primary-color)
}

.quform-input {
    position: relative
}

.quform-input .form-control {
    border-radius: 5px
}

.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1
}

.quform-element>label {
    font-weight: normal;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 16px
}

.quform-element>label .quform-required {
    color: #cc0101;
    font-size: 10px
}

.quform-inner input {
    width: 100%
}

.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top
}

.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px
}

.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal
}

.quform-errors>.quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input {
    border-color: #f5543f !important
}

.quform-has-error textarea {
    border-color: #f5543f !important
}

.quform-has-error select {
    border-color: #f5543f !important
}

.quform-has-error input[type=file] {
    border-color: #f5543f !important
}

.quform-has-error .custom-file-label {
    border-color: #f5543f !important
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
    float: none
}

.quform-loading-wrap {
    float: none
}

.quform-loading-wrap .quform-loading {
    display: inline-block
}

.light-validation .quform-errors>.quform-error {
    color: #fff
}

.newsletter-form .quform-submit-inner button {
    font-size: 18px;
    border: none;
    position: absolute;
    right: -10px;
    top: -1px;
    height: 55px;
    width: 55px;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 0
}

.newsletter-form .quform-submit-inner button.newsletter-btn {
    right: 0;
    top: 0
}

.newsletter-form .quform-element .quform-input .form-control.news-box {
    min-height: 55px;
    border-radius: 5px;
    padding: 0 70px 0 20px
}

.newsletter-form-icon .quform-elements {
    position: relative;
    border-radius: 10px
}

.newsletter-form-icon .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px
}

.newsletter-form-icon .quform-submit-inner .btn {
    padding: 0.441rem 1rem
}

.newsletter-form-icon .quform-submit-inner .btn:focus {
    border: 1px solid transparent
}

.newsletter-form-icon .quform-submit-inner .btn:active {
    border: 1px solid transparent
}

.newsletter-form-icon .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.newsletter-form-icon input {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff
}

.newsletter-form-icon .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff
}

.newsletter-form-icon .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff
}

.newsletter-form-icon .quform-has-error input {
    border-color: var(--primary-color)
}

.newsletter-form-icon .quform-has-error textarea {
    border-color: var(--primary-color)
}

.newsletter-form-icon .quform-has-error select {
    border-color: var(--primary-color)
}

.newsletter-form-icon .quform-input .quform-errors-wrap {
    right: 15px
}

.newsletter-form-icon i {
    font-size: 1.2rem;
    line-height: 2rem
}

.quform.dark .form-control {
    min-height: 60px;
    border-radius: 0.375rem;
    resize: none;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    color: #fff;
    opacity: 0.65
}

.quform.dark .form-control:focus {
    border-color: var(--primary-color);
    background-color: transparent;
    color: #fff;
    opacity: 0.95
}

.quform.dark .form-control:active {
    border-color: var(--primary-color);
    background-color: transparent;
    color: #fff;
    opacity: 0.95
}

.quform.dark .form-control:hover {
    border-color: var(--primary-color);
    background-color: transparent;
    color: #fff;
    opacity: 0.95
}

.social-icon-style1 li {
    display: inline-block;
    margin-right: 30px
}

.social-icon-style1 li:last-child {
    margin-right: 0
}

.social-icon-style1 li a {
    color: #fff
}

.social-icon-style1 li a:hover {
    color: var(--primary-color)
}

.social-icon-style2 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none
}

.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style2 li a {
    display: inline-flex;
    font-size: 14px;
    text-align: center;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50%
}

.social-icon-style2 li a:hover {
    background: var(--primary-color)
}

.social-icon-style2 li:last-child {
    margin-right: 0
}

.social-icon-style3 li {
    display: inline-block
}

.social-icon-style3 li a {
    color: #fff !important;
    padding: 10px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1
}

.social-icon-style3 li a i {
    font-size: 18px
}

.social-icon-style3 li a:hover {
    background-color: var(--primary-color)
}

@media screen and (max-width: 1399px) {
    .social-icon-style3 li a i {
        font-size: 16px
    }
}

@media screen and (max-width: 767px) {
    .social-icon-style3 li a {
        padding: 8px 10px
    }
}

.social-icon-style4 li {
    display: inline-block;
    margin-right: 5px;
    -moz-transition-duration: .3s;
    -ms-transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: 0.3s;
    margin-bottom: 10px
}

.social-icon-style4 li:last-child {
    margin-right: 0
}

.social-icon-style4 li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    border-radius: 50%
}

.social-icon-style4 li a:hover {
    color: rgba(255, 255, 255, 0.6)
}

@media screen and (max-width: 1599px) {
    .social-icon-style4 li a {
        width: 38px;
        height: 38px;
        font-size: 13px
    }
}

.social-icon-style5 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

.social-icon-style5 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style5 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: var(--primary-color);
    background: #fff;
    height: 41px;
    line-height: 42px;
    width: 41px;
    border-radius: 2px
}

.social-icon-style5 li a:hover {
    background: var(--primary-color);
    color: #fff
}

.social-icon-style5 li:last-child {
    margin-right: 0
}

.social-icon-style5 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px
}

.social-icon-style5.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px
}

@media screen and (max-width: 991px) {
    .social-icon-style5.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.social-icon-style6 li {
    display: inline-block;
    margin-right: 5px;
    -moz-transition-duration: .3s;
    -ms-transition-duration: .3s;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: 0.3s;
    margin-bottom: 10px
}

.social-icon-style6 li:last-child {
    margin-right: 0
}

.social-icon-style6 li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    border-radius: 50%
}

.social-icon-style6 li a:hover {
    color: rgba(255, 255, 255, 0.6)
}

@media screen and (max-width: 1599px) {
    .social-icon-style6 li a {
        width: 38px;
        height: 38px;
        font-size: 13px
    }
}

footer {
    overflow: hidden
}

.footer-logo {
    max-width: 215px;
    width: 100%;
    display: inline-block
}

footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px
}

footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.8s ease
}

footer .email a:hover {
    color: var(--primary-color) !important
}

footer .email a:hover:after {
    width: 100%
}

footer .email a:active {
    color: var(--primary-color) !important
}

footer .email a:active:after {
    width: 100%
}

footer .email a:focus {
    color: var(--primary-color) !important
}

footer .email a:focus:after {
    width: 100%
}

footer .email a:after {
    border-bottom: 1px solid #fff;
    transition: all 0.8s ease;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0
}

footer .phone {
    padding-bottom: 0;
    margin-bottom: 0
}

footer .phone a {
    padding-bottom: 0;
    letter-spacing: -0.05rem;
    color: white
}

footer .phone a:hover {
    color: var(--primary-color) !important
}

footer .phone a:active {
    color: var(--primary-color) !important
}

footer .phone a:focus {
    color: var(--primary-color) !important
}

footer li {
    list-style: none;
    word-wrap: break-word
}

footer li:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0
}

footer li a {
    color: #fff
}

footer li a:hover {
    color: var(--primary-color)
}

footer li a:active {
    color: var(--primary-color)
}

footer li a:focus {
    color: var(--primary-color)
}

footer label {
    color: #fff
}

.left-icon i {
    margin-right: 6px;
    margin-left: 0
}

@media screen and (max-width: 767px) {
    footer .email a:after {
        bottom: -10px
    }
}

.footer-style01 .footer-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 50%;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out
}

.footer-style01 .footer-icon:hover {
    transform: scale(1.1)
}

.footer-contact-number {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px
}

.footer-contact-number .contact-circle {
    position: relative;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.footer-contact-number .contact-circle:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #101824;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0
}