/*
    - Template Name: Fox
    - Template URI:
    - Author: Mohamed Kamel
    - Author URI: https://www.facebook.com/M.Kamel090
    - Description: Fox This is html5 template for App Landing Page
    - Version: 1.0
    - Tags: HTML, Mobile App, Template, Landing Page , Responsive, Bootstrap 4
*/

/* ----------------------------------------------------
    CSS INDEX

    01. START GENERAL STYLE (font, body, btn, section-title, section-padding, margins ... etc)
    02. START PRELOADER STYLE
    03. START HEADER STYLE
    04. START SLIDE STYLE
    05. START BOXES SECTION
    06. START WHY US SECTION
    07. START MAIN FEATURES SECTION
    08. START OTHER FEATURES SECTION
    09. START WATCH VIDEO SECTION
    10. START SCREENSHOTS SECTION
    11. START TESTIMONIAL SECTION
    12. START FUN FACTS SECTION
    13. START PRICE TABLE SECTION
    14. START TEAM SECTION
    15. START FAQ SECTION
    16. START LOGOS SECTION
    17. START RECENT NEWS SECTION
    18. START DOWNLOAD APP SECTION
    19. START GET IN TOUCH SECTION
    20. START MAP SECTION
    21. START FOOTER SECTION
    22. START BLOG PAGE
    23. START SIDEBAR
    24. START SINGLE BLOG PAGE

/* ----------------------------------------------------*/


:root {
    --bg-primary: #005A96;
    --bg-primary-opacity-20: rgba(0, 85, 238, 0.2);
    --bg-success: #028A0f;
    --bg-secondary: #fff;
    --text-primary: #fff;
    --text-secondary: #010101;
    --text-secondary-inactive: rgba(1, 1, 1, 0.5);
    --text-primary-hover: rgba(255, 255, 255, 0.8);
    --text-secondary-hover: rgba(1, 1, 1, 0.8);
    --border-radius: 20px;
    --border-mobile-radius: 12px;
    --box-shadow: 0px 4px 4px 3px rgba(0, 0, 0, 0.3);

}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

p {
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    h3 {
        font-size: 2rem;
    }

    p {
        font-size: 18px;
    }
}



::-webkit-scrollbar {
    background-color: #f5f5f5;
    width: .25rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--bg-primary);
    box-shadow: inset 0 0 .375rem rgba(0, 0, 0, .3);
}

@keyframes spinner-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.underline {
    transition: background-size .5s ease, color .5s ease;
    width: calc(100% + 1px);
    padding-bottom: 0;
    background-repeat: no-repeat;
    background-size: 0 100%;
}

.underline.underline-white:hover {
    background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
}

.underline.underline-blue:hover {
    background-image: linear-gradient(transparent calc(100% - 1px), var(--bg-primary) 1px);
}

.underline:hover {
    background-size: 100% 100%;
}

.w-fit {
    width: fit-content;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
    .underline:hover::before {
        left: 0;
        right: auto;
        width: 100%;
    }
}

*:not(.lnr) {
    font-family: 'Lato', sans-serif !important;
    line-height: 120% !important;

    @media screen and (min-width: 768px) {
        line-height: 150% !important;

        h1 {
            line-height: 100% !important;
        }
    }
}


/*------------------------------
    01. START GENERAL STYLE
------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&subset=latin-ext');

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

p {
    font-weight: 400;
    line-height: 30px;
}

.button {
    height: 3.3125rem;
    border-radius: 6.25rem;
    display: inline-flex;
    overflow: hidden
}

.button a,.button button {
    min-width: 9.5rem;
    display: flex;
    width: 100%;
    justify-content: center;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: .8125rem;
    font-family: futura-pt,sans-serif;
    padding: 0 1.5rem;
    height: 3.3125rem;
    text-align: center;
    transition: background .6s,color cubic-bezier(.87,0,.13,1) .6s;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 1px;
    border: none;
}

.button.button-white a, .button.button-white button {
    background: #fff;
    color: var(--text-secondary);
}

.button.button-gray a, .button.button-gray button {
    background: #5c6263;
    color: var(--text-primary);
}

@media screen and (min-width: 744px) {
    .button a,.button button {
        font-size:.875rem
    }
}

.button a:before,.button button:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-success);
    max-height: 0;
    transform-origin: bottom center;
    transition: max-height cubic-bezier(.87,0,.13,1) .6s
}

.button a .text-parent,.button button .text-parent {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    transform: scaleX(1);
    transition: transform cubic-bezier(.87,0,.13,1) .6s;
    height: 3.3125rem
}

.button a .text-parent .copy-text,.button button .text-parent .copy-text {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateY(-100%) rotateX(180deg);
    transition: transform cubic-bezier(.87,0,.13,1) .5s;
    align-items: center;
    justify-content: center
}

.button.button-white a .text-parent .copy-text,.button.button-white button .text-parent .copy-text {
    color: var(--text-primary);
}

.button.button-gray a .text-parent .copy-text,.button.button-gray button .text-parent .copy-text {
    color: var(--text-primary);
}

.button a .text-parent .main-text,.button button .text-parent .main-text {
    position: relative;
    display: flex;
    transform: translateY(0) rotateX(0);
    transition: transform cubic-bezier(.87,0,.13,1) .5s;
    align-items: center;
    justify-content: center
}

.button a:hover:before,.button button:hover:before {
    max-height: 100%
}

.button a:hover .main-text,.button button:hover .main-text {
    transform: translateY(100%) rotateX(180deg)
}

.button a:hover .copy-text,.button button:hover .copy-text {
    transform: translateY(0) rotateX(0)
}

.lnr {
    display: inline-block;
    fill: currentColor;
    width: 1em;
    height: 1em;
    vertical-align: -0.05em;
}

a:focus {
    outline: none;
    outline-offset: none;
}

a:hover {
    text-decoration: none;
}


.background-fullwidth {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.background-fixed {
    background-attachment: fixed;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.height-100 {
    height: 100vh;
    min-height: 600px;
}

.btn-primary {
    border-radius: 50px;
    padding: 15px 45px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    border: 0;
}


@media (max-width: 1000px) {
    .btn-primary {
        padding: 15px 35px;
    }
}

@media (max-width: 500px) {
    .btn-primary {
        padding: 15px 25px;
    }
}

.btn-colord {
    color: #fff;
}

.btn-colord:hover {
    color: #fff;
}

.btn-white {
    background: #fff;
}

.btn-theme {
    position: relative;
    overflow: hidden;
    outline: none !important;
    border: none;
    box-shadow: none !important;
}

.btn-theme:active,
.btn-theme:focus {
    color: var(--text-secondary);
    .btn-theme-secondary {
        color: var(--text-primary)
    }
}

.btn-theme:hover {
    color: var(--text-primary);
    .btn-theme-secondary {
        color: var(--text-secondary)
    }
}

.btn-theme.btn-white:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    &.btn-theme-secondary {
        background: var(--bg-primary)
    }
    background: var(--text-primary);

}

.btn-theme.btn-colord:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.btn-theme:hover:before {
    opacity: 0 !important;
}

.btn-theme > span {
    position: relative;
}

.shadow {
    box-shadow: 0.5px 0.866px 10px 0px rgb(0, 0, 0);
}

a,
.btn-white,
.btn-theme:before,
.boxes .box:hover .lnr,
.other-features .other-features-slider .item,
.screenshots .screenshots-slider .item,
.clients-testimonial .testimonial-slider .slick-dots li,
.clients-testimonial .testimonial-slider .slick-dots li button,
.our-team .team-slider .person,
.our-team .team-slider .person h3,
.our-team .team-slider .person ul,
.our-team .team-slider .person ul li a,
.our-team .team-slider .slick-dots li,
.our-team .team-slider .slick-dots li button,
.faq .accordion .card .card-header h5 .btn,
.faq .accordion .card .card-header h5 .btn:before,
.faq .accordion .card .card-header h5 .btn:after,
.recent-news .recent-news-slider .slick-dots li,
.recent-news .recent-news-slider .slick-dots li button,
.download-app a,
footer .subscribe .subscribe-form-2 label,
footer .subscribe .subscribe-form-2 .form-group {
    transition: all ease 0.3s;
}

a.dropdown-item.pressed {
    color: var(--text-secondary-inactive);
    pointer-events: none;
}

a.dropdown-item.pressed {

}

/*.contact-info a:hover {*/
/*    color: #fff;*/
/*    text-decoration: underline;*/
/*    opacity: .5;*/
/*}*/

.ramka1 {
    border: none;
    box-shadow: 0 4px 20px 0 var(--bg-primary-opacity-20);
    border-radius: 30px;
}

.ramka3 {
    border: none;
    box-shadow: 0 4px 20px 0 var(--bg-primary-opacity-20);
    border-radius: 30px;
}

.ramka1:focus {
    color: var(--text-secondary);
}

.rounded {
    counter-reset: li;
    list-style: none;
}

.rounded p {
    position: relative;
    display: block;
    padding: .4em .4em .4em 2.5em;
    margin: .5em 0;

}

.rounded p:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -0.5em;
    top: 50%;
    margin-top: -1em;
    background: #fff;
    height: 1.5em;
    width: 1.5em;
    line-height: 1.5em;
    border: 0.3em solid #3182E6;
    text-align: center;
    font-weight: bold;
    border-radius: 1em;
    transition: all .3s ease-out;
    box-sizing: unset;
}

.header-conts {
    margin-left: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
}

.header-conts a {
    color: var(--text-secondary);
}

.header-logo {
    @media screen and (max-width: 991px) {
        padding-left: 15px;
    }

    img {
        height: 2.5rem;
    }
}

@media (min-width: 992px) {
    .header-conts {
        order: 1;
    }
}

.header-conts .i-phone {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    position: relative;
    width: 30px;
    height: 30px;
    font-size: 30px;
    transition: color 0.3s ease;
    cursor: pointer;
    border-radius: 50px;
    /*color: #3182E6;*/
}

@media (max-width: 1500px) {
    .header-conts .i-phone {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 1024px) {
    .header-conts .i-phone {
        /*color: #3182E6;*/
    }
}

.header-conts .i-phone:hover {
    color: #0B2443;
}

.header-conts .i-phone:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid currentColor;
    z-index: 1;
    opacity: 0;
}

.header-conts .i-phone:before {
    position: relative;
    z-index: 2;
}


@media (max-width: 1680px) {
    .header-conts {
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    .header-conts {
        color: var(--text-secondary);
    }
}

.header-conts__main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding-right: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    margin-right: 10px;
}

@media (max-width: 1500px) {
    .header-conts__main {
        margin-right: 8px;
        padding-right: 8px;
    }
}

.header-conts__main a {
    transition: color 0.3s ease;
    white-space: nowrap;
    color: var(--text-secondary);
}

.header-conts__main a:hover {
    color: #0B2443;
}

.header-conts__phone {
    font-size: 15px;
}

@media (max-width: 1500px) {
    .header-conts__phone {
        font-size: 12px;
    }
}

.header-conts__email {
    font-size: 14px;
}

@media (max-width: 1500px) {
    .header-conts__email {
        font-size: 12px;
    }
}


/* Arrow Up */
html {
    scroll-behavior: smooth;
}

#arrow-up {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    z-index: 65;
    transition: all .3s ease;
}

#arrow-up:hover {
    opacity: .5;
}

#arrow-up span {
    display: block;
    width: 14px;
    height: 10px;
    margin: 14px 0 0 13px;
    background: url('../img/arrow-up.png') center no-repeat;
    background-size: 100%;
}

/* Кнопка с мессенджарами */

.t898__wrapper {
    bottom: 10px;
    right: 10px;
}

.t898__wrapper {
    position: fixed;
    /*bottom: 50px;
    right: 65px;*/
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.float {
    position: relative;
    cursor: pointer;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    animation: t898__btn-pulsate 2s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: t898__btn-pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
}

.t898__btn_input {
    display: none;
}

.t898__btn_input:checked + label {
    background: #fff !important;
    animation: none;
}

.t898__icon-write {
    stroke-width: 1.5px;
}

.t898__icon-write {
    stroke-width: 1.5px;
}

.t898__icon_link {
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    width: 50px;
    height: 50px;
}

.t898__icon {
    transition: all 0.3s ease-in-out;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.t898__tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-color: transparent;
    border-left-width: medium;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929;
}

.t898__tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: 0;
    transition: all 0.1s linear;
}

.t-name {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;

}

.t-name_xs {
    font-size: 16px;
    line-height: 1.35;
}

.t898__icon_link:hover .t898__tooltip {
    opacity: .85;
}


.t898__icon-close {
    opacity: 0;
    visibility: hidden;
    transform: scale(.1);
}

.t898__btn_input:checked + label .t898__icon-close {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.t898__btn_input:checked ~ a:nth-of-type(1) {
    transition: all 0.2s ease-in-out;
    transform: translate(0, -135%);
}

.t898__btn_input:checked ~ a:nth-of-type(2) {
    transition: all 0.225s ease-in-out;
    transform: translate(0, -255%);
}

.t898__btn_input:checked ~ a:nth-of-type(3) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -375%);
}

.t898__btn_input:checked ~ a:nth-of-type(4) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -495%);
}

.t898__btn_input:checked ~ .t898__icon_link {
    opacity: 1;
    visibility: visible;
}

.t898__icon-call_wrapper {
    background-color: #ec5923;
    fill: white;
}

@keyframes t898__btn-pulsate {

    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1.1, 1.1);
    }
    50% {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes t898__btn-pulsate {

    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1.1, 1.1);
    }
    50% {
        transform: scale(1, 1);
    }
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-50 {
    height: 50px;
}

.padding-50 {
    padding: 16px 0;

    @media screen and (min-width: 768px) {
        padding: 24px 0;
    }
}

.padding-100 {
    padding: 50px 0;

    @media screen and (min-width: 768px) {
        padding: 100px 0;
    }
}

.padding-b-100 {
    padding-bottom: 100px;
}

.padding-b-0 {
    padding-bottom: 0;
}

.padding-t-100 {
    padding-top: 100px;
}


.lity-close {
    text-shadow: none !important;
}

.lity-content:after {
    box-shadow: none !important;
}

.section-title h3 {
    margin: 0;
}

.section-title h2 span.white {
    color: #fff !important;
}

h2 span.blue, h4 span.blue {
    color: #07d !important;
}

.section-title p {
    font-size: 18px;
    font-weight: 600;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title h3 {
        font-size: 40px;
    }
}

/*------------------------------
    01. END GENERAL STYLE
------------------------------*/

/*------------------------------
    02. START PRELOADER STYLE
------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.loader-wrapper {
    width: 70px;
    height: 35px;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 17px);
    left: calc(50% - 35px);
}

.loader {
    width: 70px;
    height: 70px;
    border-style: solid;
    border-top-color: #FFF;
    border-right-color: #FFF;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotate 3s ease-in-out infinite;
    transform: rotate(-200deg)
}

@keyframes rotate {
    0% {
        border-width: 10px;
    }

    25% {
        border-width: 3px;
    }

    50% {
        transform: rotate(115deg);
        border-width: 10px;
    }

    75% {
        border-width: 3px;
    }

    100% {
        border-width: 10px;
    }
}

/*------------------------------
    02. End Preloader Style
------------------------------*/

/*------------------------------
    03. START HEADER STYLE
------------------------------*/

@keyframes menu_sticky {
    0% {
        margin-top: -120px;
        opacity: 0;
    }

    50% {
        margin-top: -64px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}


@media screen and (max-width: 1200px) {
    .nav-link {
        font-size: 14px;
    }
}


@keyframes hide_dropdown_menu {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes show_dropdown_menu {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.custom-dropdown-menu {
    @media screen and (max-width: 991px) {
        left: -50px;
    }
}


/*------------------------------
    03. End HEADER STYLE
------------------------------*/

/*------------------------------
    04. START SLIDE STYLE
------------------------------*/

.press-here {
    color: var(--text-primary);
}

.press-here:hover {
    color: var(--text-primary);
}

.dropdown-toggle:after,
.bootstrap-switch-label:before,
.caret {
    -webkit-transition: all 150ms ease 0s;
    -moz-transition: all 150ms ease 0s;
    -o-transition: all 150ms ease 0s;
    -ms-transition: all 150ms ease 0s;
    transition: all 150ms ease 0s;
}

.dropdown-toggle[aria-expanded="true"]:after,
a[data-toggle="collapse"][aria-expanded="true"] .caret,
.card-collapse .card a[data-toggle="collapse"][aria-expanded="true"] i,
.card-collapse .card a[data-toggle="collapse"].expanded i {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fade-right-animate {
    opacity: 0;
    transform: translate(-10%, 0);
}

.fade-right-animate2 {
    -webkit-transition: 3s;
    -moz-transition: 3s;
    -ms-transition: 3s;
    -o-transition: 3s;
    transition: 3s;
    opacity: 1;
    transform: translate(0);
}

.fade-left-animate {
    opacity: 0;
    transform: translate(10%, 0);
}

.fade-left-animate2 {
    -webkit-transition: 3s;
    -moz-transition: 3s;
    -ms-transition: 3s;
    -o-transition: 3s;
    transition: 3s;
    opacity: 1;
    transform: translate(0);
}


.container h1 {
    font-weight: bold;
    letter-spacing: 2.6px;
    text-align: center;
}


.offer__title-sub {
    margin: 14px 0 48px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 4px rgb(0 0 0 / 50%);
}

/*------------------------------
    04. END SLIDE STYLE
------------------------------*/

/*------------------------------
    05. START BOXES SECTION
------------------------------*/

.boxes .box {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;

    @media screen and (min-width: 768px) {
        padding: 24px;
        border-radius: 32px;
    }
}

.boxes .box:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 5px;
    transform: translateX(-50%);
    -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.boxes .box:hover:after {
    width: 100%;
}

.boxes .box .icon {
    padding: 25px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    width: 110px;
    height: 110px;
}

.boxes .box .lnr {
    font-size: 55px;
    line-height: 60px;
}

.boxes .box h4 {
    color: #fff;
    margin: 0;
}

.boxes .box p {
    color: #fff;
    margin: 0 auto;
}

/*@media (max-width: 767px) {*/
/*    .boxes .box {*/
/*        margin-bottom: 30px;*/
/*    }*/
/*}*/

/*------------------------------
    05. END BOXES SECTION
------------------------------*/

/*------------------------------
    06. START WHY US SECTION
------------------------------*/

.why-us h3 {
    font-size: 40px;
    font-weight: 900;
}

.why-us p {
    font-weight: 400;
    margin: 0;
}

.why-us .why-us-icon {
    margin-bottom: 20px;
}

.why-us .why-us-icon .lnr {
    font-size: 35px;
    color: #3182E6;
}

/*------------------------------
    06. END WHY US SECTION
------------------------------*/

/*------------------------------
    07. START MAIN FEATURES SECTION
------------------------------*/

.main-features .main-features-pic {
    @media screen and (max-width: 991px) {
        order: 1;
    }
    position: relative;
}

.features-circle .circle-svg {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: -1;
    max-width: 100%;
    margin: 0 auto;
}

.features-circle svg g {
    transform-origin: 50%;
}

.main-features .one-feature {
    margin-bottom: 5em;
}

.main-features .one-feature h5 {
    font-size: 20px;
    line-height: 45px;
    display: inline-block;
    margin: 0;
}

.gap-2 {
    gap: 10px;
}

.gap-4 {
    gap: 20px;
}

.cursor-pointer {
    cursor: pointer;
}

.main-features .one-feature .lnr {
    font-size: 35px;
    color: #3182E6;
}

.main-features .one-feature p {
    margin-bottom: 0;
}

.main-features .left-side .one-feature span {
    float: right;
}

.main-features .left-side .one-feature:nth-child(3),
.main-features .right-side .one-feature:nth-child(3) {
    @media screen and (min-width: 992px) {
        margin-bottom: 0;
    }

}

.main-features .right-side .one-feature span {
    float: left;
}

@media (min-width: 992px) {

    /*.main-features .left-side .one-feature:nth-child(1),
    .main-features .left-side .one-feature:nth-child(3) {
        position: relative;
        left: 50px;
    }

    .main-features .right-side .one-feature:nth-child(1),
    .main-features .right-side .one-feature:nth-child(3) {
        position: relative;
        right: 50px;
    }*/
}

@media (max-width: 992px) {
    .main-features .one-feature {
        margin-bottom: 1.5em;
    }

    .main-features .left-side .one-feature span {
        float: left;
    }
}

@media (max-width: 414px) {
    .features-circle svg {
        max-width: 100%;
        height: 410px;
    }
}

@media (max-width: 375px) {
    .features-circle svg {
        height: 350px;
    }
}

/*------------------------------
    07. END MAIN FEATURES SECTION
------------------------------*/

/*------------------------------
    08. START OTHER FEATURES SECTION
------------------------------*/

.other-features .other-features-slider {
    margin: 0 -15px;
}

.other-features .other-features-slider .item {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    /*opacity: 0.6;*/
    margin: 0 15px;
    outline: none;
    cursor: pointer;

    @media screen and (min-width: 768px) {
        padding: 20px;
        border-radius: 32px;
    }
}

.other-features .other-features-slider .item img {
    margin-bottom: 1rem;
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
}

.other-features .other-features-slider .item.slick-center {
    opacity: 1;
}

.other-features .other-features-slider .item span {
    display: block;
}

.other-features .other-features-slider .item .lnr {
    font-size: 40px;
}

.other-features .other-features-slider .item h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.other-features .other-features-slider .item p {
    margin: 0 auto;
}

/*------------------------------
    08. END OTHER FEATURES SECTION
------------------------------*/

/*------------------------------
    09. START WATCH VIDEO SECTION
------------------------------*/
.watch-video .video {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.watch-video .video:before {
    position: absolute;
    content: '';
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
}

.watch-video .video img {
    position: relative;
}

.watch-video .video a {
    position: absolute;
    height: 80px;
    width: 80px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border: 2px solid #fff;
    border-radius: 50%;
    animation: ripple_shadow 2s linear infinite;
}

.watch-video .video a:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-left: 25px solid #fff;
    border-bottom: 17px solid transparent;
    left: 55%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@keyframes ripple_shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0.2), 0 0 0 60px rgba(255, 255, 255, 0);
    }
}

/*------------------------------
    09. END WATCH VIDEO SECTION
------------------------------*/


/*------------------------------
    10. START SCREENSHOTS SECTION
------------------------------*/

.screenshots .screenshots-slider {
    margin: 0 -15px;
}

.screenshots .screenshots-slider .item {
    display: flex;
    flex-direction: column;
    /*opacity: 0.6;*/
    margin: 0 15px;
    outline: none;
    cursor: pointer;
}

.screenshots .screenshots-slider .item img {
    flex: 1;
    object-fit: cover;
    margin-bottom: 2rem;
}

.screenshots .screenshots-slider .item.slick-center {
    opacity: 1;
}

/*------------------------------
    10. END SCREENSHOTS SECTION
------------------------------*/

/*------------------------------
    11. START TESTIMONIAL SECTION
------------------------------*/

.model3d {
    height: 50vh;
    display: flex;
    justify-content: center;

}

.model3d model-viewer {
    width: 100%;
    height: 100%;

}

#lazy-load-poster {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url("/assets/landing/img/3D_model.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#button-load {
    background-image: url("/assets/landing/img/ic_get_app_white_24dp.svg");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 6% 50%;
    background-color: #000;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    display: inline-block;
    padding: 10px 18px 9px 40px;
    font-weight: 500;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2), 0 0 4px rgba(0, 0, 0, .25);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 100;
}


.clients-testimonial .testimonial-slider {
    margin-bottom: 60px;
}

.clients-testimonial .testimonial-slider .item {
    outline: none;
    margin: 0 15px;
}

.clients-testimonial .testimonial-slider .item .client-testimonial {
    padding: 3em;
    position: relative;
}

.clients-testimonial .testimonial-slider .item .client-testimonial:after {
    position: absolute;
    content: '';
    bottom: -15px;
    width: 0;
    left: 45px;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: transparent transparent transparent transparent;
}

.clients-testimonial .testimonial-slider .item .client-testimonial p {
    color: #fff;
    font-size: 17px;
    margin: 0;
    position: relative;
}

.clients-testimonial .testimonial-slider .item .client-testimonial p:after,
.clients-testimonial .testimonial-slider .item .client-testimonial p:before {
    position: absolute;
    font-size: 400px;
    opacity: 0.2;
    color: #fff;
}

.clients-testimonial .testimonial-slider .item .client-testimonial p:before {
    content: '\f10d';
    font-family: 'Font Awesome\ 5 Free';
    font-size: 85px;
    font-weight: 900;
    line-height: 85px;
    top: -50px;
    left: -40px;
}

.clients-testimonial .testimonial-slider .item .client-testimonial p:after {
    font-family: 'Font Awesome\ 5 Free';
    content: '\f10e';
    font-size: 85px;
    font-weight: 900;
    line-height: 85px;
    bottom: -50px;
    right: -40px;
}

.clients-testimonial .testimonial-slider .item .client-info {
    padding: 30px 15px;
}

.clients-testimonial .testimonial-slider .item .client-info figure {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 15px;
}

.clients-testimonial .testimonial-slider .item .client-info h3 {
    font-size: 20px;
    margin: 0;
}

.clients-testimonial .testimonial-slider .slick-dots {
    bottom: -60px;
}

.clients-testimonial .testimonial-slider .slick-dots li {
    width: 20px;
    height: 15px;
}

/*.other-features-slider .slick-dots {*/
/*    padding: 16px 0;*/

/*    @media screen and (min-width: 768px) {*/
/*        padding: 24px 0;*/
/*    }*/
/*}*/

.clients-testimonial .testimonial-slider .slick-dots li.slick-active {
    width: 40px;
}

.clients-testimonial .testimonial-slider .slick-dots li button:before {
    display: none;
}

.clients-testimonial .testimonial-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #dcdfe7;
    margin: 0 auto;
}

/*------------------------------
    11. END TESTIMONIAL SECTION
------------------------------*/

/*------------------------------
    12. START FUN FACTS SECTION
------------------------------*/

.fun-facts .fact-box {
    padding: 2em;
    background: #fff;
    border-radius: 50px;
}

.fun-facts .fact-box .lnr {
    font-size: 50px;
    margin: 10px 0 20px;
}

.fun-facts .fact-box h5 {
    font-size: 55px;
    font-weight: 900;
}

.fun-facts .fact-box h6 {
    font-size: 25px;
    word-break: break-word;
}

/*------------------------------
    12. END FUN FACTS SECTION
------------------------------*/

/*------------------------------
    13. START PRICE TABLE SECTION
------------------------------*/

.prices .price-table {
    margin-bottom: 30px;
}

.prices .price-table .top {
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.prices .price-table .top .offer {
    width: 200px;
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    left: -58px;
    top: 30px;
    padding: 2px 0;
    letter-spacing: 2px;
    transform: rotate(-45deg);
}

.prices .price-table .top h4 {
    font-size: 25px;
    font-weight: 600;
}

.prices .price-table .top h3 {
    font-size: 80px;
    font-weight: 600;
    margin: 0;
}

.prices .price-table .top h3 span {
    font-size: 20px;
}

.prices .price-table .top h5 {
    font-size: 16px;
    margin: 0;
}

.prices .price-table .bottom {
    padding: 25px 0;
}

.prices .price-table .bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prices .price-table .bottom ul li {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    border-bottom: 1px solid #f6f6f647;
    padding: 15px;
}

.prices-slider .item {
    @media screen and (min-width: 768px) {
        margin: 0 15px;
    }
}


.prices .bottom-parent-div {
    display: flex;
    flex-direction: column;
    height: 100%;

    .bottom {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        a {
            max-width: 170px;
        }
    }

}

/*------------------------------
    13. END PRICE TABLE SECTION
------------------------------*/

/*------------------------------
    13.1. START PRICE TABLE SECTION
------------------------------*/

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.HeaderSection {
    @media (max-width: 1366px) {
        padding-top: 80px;
    }

    padding-top: 70px;
    background: #FFF;

    * {
        font-weight: 600;
    }

    a {
        color: var(--text-secondary);
    }

    a:hover {
        color: var(--bg-primary)
    }

    h1, h2 {
        text-align: left;
        text-transform: none;
    }

    h2 {
        font-size: 1.5rem;
    }

    .small-text {
        font-weight: 400;
    }

    h1 {
        margin: 0 0 1rem 0;
    }

    @media screen and (min-width: 768px) {
        h1 {
            margin-bottom: 1.5rem;
        }
    }

    .header-button-gap {
        @media screen and (min-width: 768px) {
            gap: 8rem;
        }
    }

    img {
        width: 100%;
        width: -moz-available;
        width: -webkit-fill-available;
        width: fill-available;
    }
}

.main-features {
    *:not(.lnr){
        font-weight: 600;
    }

    .main-features-heading {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        padding-bottom: 2rem;

        h2, h3 {
            flex: 1;
            margin: 0;
        }

        h3 {
            font-size: 1.25rem;
            font-weight: 400;
        }

        @media screen and (min-width: 767px) {
            gap: 2rem;
            padding-bottom: 3rem;
        }
    }

    .main-features-body {
        .single-feature {
            padding-bottom: 1.5rem;

            .single-feature-text {
                p {
                    font-weight: 400;
                }
            }

            .lnr {
                color: var(--bg-primary);
                font-size: 4rem;
                display: flex;
                justify-content: center;
                width: 100%;

                margin-bottom: 1rem;
            }


            .single-feature-image-box {
                display: flex;
                flex-direction: column;
                width: 100%;
                height: 100%;
                justify-content: center;

                img {
                    border-radius: 12px;
                    @media screen and (min-width: 767px) {
                        border-radius: 20px;
                    }
                    box-shadow: 0 4px 20px 0 var(--bg-primary-opacity-20);
                    object-fit: contain;
                    max-width: 100%;
                    height: auto;
                    
                }

                @media screen and (min-width: 768px) {
                    flex-direction: row;
                }
            }
        }
    }
}

.prices {
    .prices-grid-container {
        @media screen and (max-width: 767px) {
            gap: 1rem;
        }
    }

    .price-change {
        padding: 0 10px;
        display: inline-block;
        overflow: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .price-change.animate {
        opacity: 0;
        transform: translateX(-100%) scale(0.8); /* Start from left and scale down */
    }

    .price-change.animate.in {
        opacity: 1;
        transform: translateX(0%) scale(1); /* Fly in from left to normal position */
    }

    .price-box {
        padding-bottom: 30px;
    }

    .price-box-header {
        .price-box-header-watermark {
            z-index: 1;
            bottom: 10px;
            right: 10px;
        }
        height: 500px;
        img, video {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .price-box-header-text {
            bottom: 20px;
            display: flex;
            width: 100%;
            align-items: center;
            flex-direction: column;
            text-align: center;

            div {
                background: var(--bg-primary);
                width: fit-content;
                color: white;
                padding: 10px 20px;

                h3 {
                    color: white;
                }

                p {
                    font-size: 1.5rem;
                    margin: 0;
                }
            }
        }
    }

    .price-box-body {
        .pricing-box-outro-text {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            text-align: center;
        }

        .pricing-box-description {
            padding: 10px 20px;
            font-weight: 600;

        }

        .feeder-name-and-price {
            h3, span {
                font-weight: bold;
            }

            span {
                font-size: 1.5rem;
            }

            align-items: center;

            display: flex;
            flex-direction: column;
            padding: 20px 0;
        }

        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        background-color: rgba(38,114,183, 0.1);
        margin-bottom: 20px;

        .price-box-container, fieldset {
            color: var(--text-secondary);
            margin: 0;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(38,114,183, 0.5);

            &.hidden {
                display: none;
            }
        }

        .price-box-container:not(.hidden):last-child {
            border-bottom: none;
        }

        .pricing-box-pdf-box {
            margin: 0;
            padding: 10px 20px;
            text-align: center;

            a {
                color: var(--bg-primary);
                font-weight: bold;
            }
        }

        fieldset {
            display: flex;
            flex-direction: column;
            color: var(--text-secondary);
            font-weight: 600;

            div:first-child {
                legend {
                    font-weight: 600;
                    width: fit-content;
                    padding-top: 0;
                    font-size: 1.25rem;
                    margin: 0;
                    padding-bottom: 0;
                }
                display: flex;
                flex-direction: row;
                align-items: center;
                margin-bottom: 10px;
                gap: 10px;
            }
            div:last-child:not(.info-hover-content) {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                label {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;

                    input {
                        width: 20px;
                        height: 20px;
                    }
                }
            }
        }



        input[type="checkbox"] {
            position: relative;
            appearance: none;
            min-width: 35px;
            width: 35px;
            min-height: 15px;
            height: 15px;
            background: #eb4444;
            border-radius: 50px;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: 0.4s;
        }

        input:checked[type="checkbox"] {
            background: limeGreen;
        }

        input[type="checkbox"]::after {
            position: absolute;
            content: "";
            width: 15px;
            height: 15px;
            top: 0;
            left: 0;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            transform: scale(1.1);
            transition: 0.4s;
        }

        input:checked[type="checkbox"]::after {
            left: 55%;
        }

        input[type=radio] {
            cursor: pointer;
            appearance: auto;
            accent-color: limeGreen;
            caret-color: white;
        }

        .input-container {
            margin: 0;
            gap: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;

            span {
                font-weight: 600;
                color: var(--text-secondary) !important;

            }

        }

        p:last-child {
            padding-bottom: 20px;
            border-bottom: none;
        }

        p:first-child {
            padding-top: 20px;
        }
    }

    .price-box-footer {
        display: flex;
        justify-content: center;

        padding-top: 20px;
    }
}

.footer-img {
    max-height: 250px;
}


/*------------------------------
    13.1. END PRICE TABLE SECTION
------------------------------*/


/*------------------------------
    14. START TEAM SECTION
------------------------------*/

.our-team .team-slider .person {
    background: #fff;
    padding: 30px;
    margin: 0 15px;
    position: relative;
    margin-bottom: 100px;
    outline: none;
}

.our-team .team-slider .person img {
    border-radius: 50%;
    width: 130px;
}

.our-team .team-slider .person h3 {
    font-weight: 800;
    font-size: 18px;
    margin: 0;
}

.our-team .team-slider .person h5 {
    font-size: 16px;
    margin: 0;
}

.our-team .team-slider .person p {
    margin: 0;
}

.our-team .team-slider .person ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    z-index: -1;
    background: #fff;
}

.our-team .team-slider .person ul li {
    display: inline-block;
}

.our-team .team-slider .person ul li a {
    display: block;
    padding: 5px;
    width: 35px;
    border-radius: 50%;
}

.our-team .team-slider .person:hover ul {
    transform: translateY(100%);
}

.our-team .team-slider .slick-dots li {
    width: 20px;
    height: 15px;
}

.our-team .team-slider .slick-dots li.slick-active {
    width: 40px;
}

.our-team .team-slider .slick-dots li button:before {
    display: none;
}

.our-team .team-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #fff;
    margin: 0 auto;
}

/*------------------------------
    14. END TEAM SECTION
------------------------------*/

/*------------------------------
    15. START FAQ SECTION
------------------------------*/

.faq .accordion .card {
    margin-bottom: 1em;
    border-radius: 28px !important;
    overflow: hidden;
    background: #fff;
}

.faq .accordion .card,
.faq .accordion .card .card-header {
    border: none;
}

.faq .accordion .card .card-header {
    padding: 0;
}

.faq .accordion .card .card-header h5 .btn {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    white-space: unset;
    text-decoration: none;
    padding: 15px 60px 15px 30px;
    color: #2a3659;
    position: relative;
}

.faq .accordion .card .card-header h5 .btn:before,
.faq .accordion .card .card-header h5 .btn:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: #ccc;
}

.faq .accordion .card .card-header h5 .btn:before {
    width: 2px;
    height: 12px;
    right: 30px;
}

.faq .accordion .card .card-header h5 .btn:after {
    width: 12px;
    height: 2px;
    right: 25px;
}

.faq .accordion .card .card-header h5 .btn.collapsed:before,
.faq .accordion .card .card-header h5 .btn.collapsed:after {
    background: #fff;
    transform: translateY(-50%) rotate(0deg);
}

.faq .accordion .card .card-header h5 .btn.collapsed {
    color: #fff;
}

.faq .accordion .card .card-body {
    padding: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

/*------------------------------
    15. END FAQ SECTION
------------------------------*/

/*------------------------------
    16. START LOGOS SECTION
------------------------------*/

.logos {
    padding: 35px 0;
}

.logos .logos-slider .item {
    outline: none;
    margin: 0 30px;
}

@media (max-width: 768px) {
    .logos .logos-slider .slick-next {
        right: 0;
    }

    .logos .logos-slider .slick-prev {
        left: 0;
        z-index: 1;
    }
}

/*------------------------------
    16. END LOGOS SECTION
------------------------------*/

/*------------------------------
    17. START RECENT NEWS SECTION
------------------------------*/

.recent-news .recent-news-slider .item {
    outline: none;
    margin-bottom: 100px;
}

.recent-news .recent-news-slider .item h3 {
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.recent-news .recent-news-slider .item p {
    font-size: 18px;
    margin: 0;
}

.news-meta {
    padding: 0;
    list-style: none;
    margin: 0;
}

.news-meta li {
    display: inline-block;
    font-size: 14px;
    color: #c2c2c2;
    margin-right: 15px;
}

.news-meta ul li span {
    margin-right: 5px;
}

.recent-news .recent-news-slider .slick-dots li {
    width: 20px;
    height: 15px;
}

.recent-news .recent-news-slider .slick-dots li.slick-active {
    width: 40px;
}

.recent-news .recent-news-slider .slick-dots li button:before {
    display: none;
}

.recent-news .recent-news-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #dcdfe7;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .recent-news .recent-news-slider .item h3 {
        margin-top: 15px;
    }
}

/*------------------------------
    17. END RECENT NEWS SECTION
------------------------------*/

/*------------------------------
    18. START DOWNLOAD APP SECTION
------------------------------*/

.download-app h2 {
    font-size: 40px;
    font-weight: 900;
}

.download-app p {
    font-size: 18px;
}

.download-app a {
    position: relative;
    padding-left: 80px;
    text-align: left;
    text-transform: none;
    margin-right: 30px;
}

.download-app a:last-child {
    margin: 0;
}

.download-app a i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    left: 35px;
}

@media (max-width: 414px) {
    .download-app a {
        padding: 10px;
        padding-left: 55px;
        padding-right: 20px;
        font-size: 12px;
        margin-right: 10px;
    }

    .download-app a i {
        left: 20px;
        font-size: 25px;
    }

    .download-app a:last-child {
        margin: 0;
    }
}

/*------------------------------
    18. END DOWNLOAD APP SECTION
------------------------------*/

/*------------------------------
    19. START GET IN TOUCH SECTION
------------------------------*/
.paysera-section .form-group,
.pricing-modal .form-group,
.git-in-touch .form-group {
    position: relative;
}

.paysera-section .form-group .form-control,
.pricing-modal .form-group .form-control,
.git-in-touch .form-group .form-control {
    border: none;
    border-bottom: 2px solid;
    border-radius: 0;
    font-weight: 300;
    padding: 10px 20px;
    margin-bottom: 1.5em;
}

.paysera-section .form-group .form-control ~ .focus-border,
.pricing-modal .form-group .form-control ~ .focus-border,
.git-in-touch .form-group .form-control ~ .focus-border {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    transform: translateX(-50%);
    -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.paysera-section .form-group .form-control:focus ~ .focus-border,
.pricing-modal .form-group .form-control:focus ~ .focus-border,
.git-in-touch .form-group .form-control:focus ~ .focus-border {
    width: 100%;
}

.paysera-section .form-group .form-control:focus,
.pricing-modal .form-group .form-control:focus,
.git-in-touch .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.paysera-section .contact-info .info-box span,
.git-in-touch .contact-info .info-box span {
    display: block;
    margin-bottom: 20px;
}

.paysera-section .contact-info .info-box .lnr,
.git-in-touch .contact-info .info-box .lnr {
    font-size: 60px;
    text-align: center;
    margin: 0 auto 20px;
    color: #3182E6;
}

.paysera-section .contact-info .info-box h5,
.paysera-section .contact-info .info-box a,
.git-in-touch .contact-info .info-box h5,
.git-in-touch .contact-info .info-box a {
    font-size: 18px;
    line-height: 30px;
    display: block;
}

/*------------------------------
    19. END GET IN TOUCH SECTION
------------------------------*/

/*------------------------------
    20. START MAP SECTION
------------------------------*/
.map {
    line-height: 0;
}

.map iframe {
    width: 100%;
    height: 500px;
}


/*------------------------------
    20. END MAP SECTION
------------------------------*/

/*------------------------------
    21. START FOOTER SECTION
------------------------------*/
footer {
    background: url('../img/footer-bg.jpg') no-repeat center center/cover;
}

footer .subscribe .subscribe-form {
    background: #fff;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 80px;
}

footer .subscribe .subscribe-form .form-group .form-control {
    border: none;
    border-bottom: 2px solid;
    border-radius: 0;
    font-weight: 300;
    padding: 14px 20px;
    background: transparent;
    margin-bottom: 0;
    background: rgba(158, 158, 158, 0.1);
    border-radius: 50px;
    border: none;
}

footer .subscribe .subscribe-form .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

footer .footer-widgets .widget {
    color: #fff;
    margin-bottom: 1em;
}

footer .footer-widgets .widget img {
    margin-bottom: 15px;
}

footer .footer-widgets .widget h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1.5em;
    color: #fff;
}

footer .footer-widgets .widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .footer-widgets .widget ul li {
    margin-bottom: 0.25rem;
}

footer .footer-widgets .widget ul li span {
    color: #fff;
}

footer .footer-widgets .widget ul li a {
    color: #fff;
}


footer .copyright {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.2);
}

footer .copyright p {
    font-weight: 400;
    margin: 0;
    line-height: 40px;
    color: #fff;
}

/*------------------------------
    21. END FOOTER SECTION
------------------------------*/


/*------------------------------
    22. START BLOG PAGE
------------------------------*/
.page-head {
    position: relative;
    padding: 125px 0;
}

.page-head h1 {
    margin: 0;
    padding: 100px 0 10px;
    text-transform: uppercase;
}

.blog-page .blog-box {
    margin-bottom: 30px;
}

.blog-page .blog-box .blog-details {
    padding: 0 15px
}

.blog-page .blog-box .blog-details h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.blog-page .blog-box .blog-img a {
    display: block;
}

.blog-page .blog-box .blog-img a img {
    width: 100%;
}

.blog-page .blog-box .blog-details h3 a {
    transition: all ease 0.3s;
}

.blog-page .blog-box .blog-details p {
    font-size: 14px;
    line-height: 25px;
    margin: 0;
}

nav .pagination {
    padding: 15px 35px;
    margin: 0 auto;
    justify-content: center;
}

nav .pagination li:first-child a,
nav .pagination li:last-child a {
    line-height: 28px;
    border-radius: 50% !important;
    background: transparent !important;
}

nav .pagination li {
    margin: 0 10px;
}

nav .pagination li a {
    font-size: 14px;
    border-radius: 50%;
    border: none;
    color: #000;
    padding: 0;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 24px;
    background: transparent;
}

nav .pagination li a:hover {
    color: #333;
    background: rgba(158, 158, 158, 0.1);
}

@media (max-width: 992px) {
    nav .pagination {
        margin-bottom: 30px;
    }
}

/*------------------------------
    22. END BLOG PAGE
------------------------------*/

/*------------------------------
    23. START SIDEBAR
------------------------------*/
aside.sidebar .gray-panel {
    background: rgba(158, 158, 158, 0.1);
    padding: 15px 30px;
    margin-bottom: 30px;
}

aside.sidebar .search .form-group {
    position: relative;
}

aside.sidebar .search .form-group .form-control {
    border: none;
    border-bottom: 2px solid;
    border-radius: 0;
    font-weight: 300;
    padding: 10px 20px;
    background: transparent;
}

aside.sidebar .search .form-group .form-control ~ .focus-border {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    transform: translateX(-50%);
    -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

aside.sidebar .search .form-group .form-control:focus ~ .focus-border {
    width: 100%;
}

aside.sidebar .gray-panel h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    position: relative;
    margin-bottom: 15px;
}

aside.sidebar .gray-panel h3:after {
    position: absolute;
    width: 50px;
    height: 2px;
    background: #000;
    content: '';
    bottom: 0;
    left: 0;
}

aside.sidebar .follow-me ul {
    padding: 0;
    list-style: none;
    margin: 0 0 20px;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

aside.sidebar .follow-me ul li {
    margin-right: 10px;
    margin-bottom: 10px;
}

aside.sidebar .follow-me ul li a {
    font-size: 30px;
    height: 80px;
    width: 60px;
    background: #ccc;
    display: block;
    text-align: center;
    line-height: 80px;
    color: #fff;
}

aside.sidebar .follow-me ul li.facebook a {
    background: #4B69B1;
}

aside.sidebar .follow-me ul li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

aside.sidebar .follow-me ul li.linkedin a {
    background: #1278B6;
}

aside.sidebar .follow-me ul li.twitter a {
    background: #2BB2E1;
}

aside.sidebar .categories ul {
    padding: 0;
    list-style: none;
    margin: 0 0 20px;
}

aside.sidebar .categories ul li a {
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 7px;
    display: block;
}

aside.sidebar .categories ul li:last-child a {
    margin: 0;
}

aside.sidebar .recent-post .post {
    margin-bottom: 15px;
}

aside.sidebar .recent-post .post figure {
    height: 60px;
    margin: 0 10px 0 0;
    flex: 0 0 60px;
}

aside.sidebar .recent-post .post h4 {
    font-weight: 600;
    font-size: 16px;
}

aside.sidebar .tags ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

aside.sidebar .tags ul li {
    display: inline-block;
    margin: 0 20px 15px 0;
}

/*------------------------------
    23. END SIDEBAR
------------------------------*/


/*------------------------------
    24. START SINGLE BLOG PAGE
------------------------------*/
.single-blog-with-sidebar {
    padding-bottom: 100px;
}

.single-blog-page .blog-box .blog-details {
    padding: 0 15px
}

.single-blog-page .blog-box .blog-details h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.single-blog-page .blog-box .blog-img img {
    width: 100%;
}

.single-blog-page .blog-box .blog-details h3 {
    transition: all ease 0.3s;
}

.single-blog-page .blog-box .blog-details p {
    font-size: 16px;
    line-height: 25px;
    margin: 0;
    font-weight: 400;
    margin-bottom: 30px;
}

.single-blog-page .blog-box .blog-details blockquote {
    padding: 30px 45px;
    background: rgba(158, 158, 158, 0.1);
    margin-bottom: 30px;
    border-left: 5px solid;
}

.single-blog-page .blog-box .blog-details blockquote p {
    margin: 0;
    font-size: 20px;
    font-style: italic;
    line-height: 30px;
}

.single-blog-page hr {
    border-top: 1px solid rgba(124, 124, 124, 0.1);
}

.single-blog-page .blog-box .post-tag-area {
    border-bottom: 1px solid #e5e5e5;
    padding: 0 15px 10px;
    margin-bottom: 30px;
}

.single-blog-page .blog-box .post-tag-area ul {
    padding: 0;
    padding-bottom: 10px;
    margin: 0;
}

.single-blog-page .blog-box .post-tag-area ul li {
    display: inline-block;
    font-size: 18px;
    color: #3e3e3e;
}

.single-blog-page .blog-box .post-tag-area ul li a {
    display: block;
    text-align: center;
}

.single-blog-page .blog-box .post-tag-area .share-icon li a {
    width: 30px;
    font-size: 16px;
}

.single-blog-page .blog-box .post-tag-area .tags li a {
    font-size: 16px;
}

.comments-container {
    padding: 15px;
}

.comments-container h3 {
    font-size: 22px;
    margin-bottom: 30px;
}

.comments-container .comments-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.comments-container .comments-list li {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.comments-container .comments-list li:last-child {
    border: none;
}

.comments-container .comments-list li figure {
    flex: 0 0 60px;
    max-width: 60px;
    margin: 0;
    margin-right: 30px;
}

.comments-container .comments-list li h4 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 16px;
}

.comments-container .comments-list li h6 {
    font-size: 14px;
    margin-bottom: 8px;
}

.comments-container .comments-list li p {
    margin-bottom: 10px;
}

.comments-container .comments-list li .reply {
    font-size: 14px;
}

.comments-container .comments-list li .reply i {
    margin-right: 5px;
}

.comments-container .comments-list li.comment-reply {
    margin-left: 100px;
}

.comments-form h3 {
    font-size: 22px;
    margin-bottom: 30px;
}

.comments-form .form-group {
    position: relative;
}

.comments-form .form-group .form-control {
    border: none;
    border-bottom: 2px solid;
    border-radius: 0;
    font-weight: 300;
    padding: 10px 20px;
    background: transparent;
}

.comments-form .form-group .form-control ~ .focus-border {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    transform: translateX(-50%);
    -webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.comments-form .form-group .form-control:focus ~ .focus-border {
    width: 100%;
}

@media (max-width: 992px) {
    .comments-form .btn {
        margin-bottom: 30px;
    }
}


/*------------------------------
    24. END SINGLE BLOG PAGE
------------------------------*/


/*------------------------------
    25. PRODUCT DELIVERY
 */

.html-content {
    h1 {
        margin-top: 20px;
        margin-bottom: 0;
        text-shadow: none;
        color: var(--text-secondary);
        text-align: start;
    }

    h2 {
        color: var(--text-secondary);
        text-align: start;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    div li {
        font-size: 16px;
    }

    p {
        margin: 0;
    }

    ol.parent-list {
        counter-reset: item;
        li {
            display: block;
            position: relative;
        }

        > li {
            display: block;
            position: relative;
            counter-increment: item;
        }

         > li:before {
            content: counter(item) ". ";
            position: absolute;
            left: -2em; /* Adjust the positioning as needed */
        }

        /* Reset and style for the nested list */
        .nested-list {
            counter-reset: subitem; /* Reset the subitem counter for nested lists */
            list-style-type: none;  /* Remove default numbering */
        }

        .nested-list > li {
            counter-increment: subitem;
        }

        .nested-list > li:before {
            content: counter(item) "." counter(subitem) ". ";
            position: absolute;
            left: -2.5em; /* Adjust the positioning as needed */
        }
    }



    padding-bottom: 50px;
}

/*------------------------------
    25. END PRODUCT DELIVERY
 */

.paysera-section {
    .form-control, label {
        margin-bottom: 0 !important;
    }
}

.gradient-text {
    background: linear-gradient(90deg, rgba(0,238,85,1) 0%, rgba(0,112,243,1) 24%, rgba(0,182,228,1) 82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-modal {


    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;



    .pricing-content {
        min-width: 360px;
        background: white;
        padding: 1.5rem 2rem;
        border-radius: 10px;
        .pricing-content-body {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 30px;
            overflow: auto;

            .pricing-header {
                border-top: 1px solid #ccc;
                padding-top: 10px;

                .pricing-image-container {
                    img,video {
                        height: 200px;
                        &.hidden {
                            display: none;
                        }
                    }
                }


                .feeder-name {
                    font-size: 20px;
                    font-weight: 600;
                }

                .selected-items {
                    max-height: 200px;
                    max-width: 300px;
                    overflow: auto;

                    p {
                        margin: 0;
                        padding-bottom: 5px;
                    }
                }
            }




            .total-prices {
                padding: 10px 0;
                border-top: 1px solid #ccc;
                p {
                    margin: 0;
                    span {
                        float: right;
                    }
                }
            }
            &.hidden {
                display: none;
            }


        }

    }

    .pricing-form-submit {
        .pricing-form-submit-content {
            margin: 30px 0;
        }

        &.hidden {
            display: none;
        }
    }

    .pricing-loading {
        .loading-spinner {
            width: 100px;
            height: 100px;
            border: 10px solid var(--bg-primary);
            border-bottom-color: transparent;
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: spinner-rotation 1s linear infinite;
            &.hidden {
                display: none;
            }
        }

        .result-container {
            max-width: 360px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;

            .result-error, .result-success {
                &.hidden {
                    display: none;
                }
            }

            .result-message {
                text-align: center;
            }

            &.hidden {
                display: none;
            }
        }

        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px;


        &.hidden {
            display: none;
        }
    }

    &.hidden {
        display: none;
    }
}

.info-hover:hover {
    fill: rgba(0,0,0, 0.5)

}

.info-hover + .info-hover-content {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 0;
    box-shadow: 0 4px 20px 0 var(--bg-primary-opacity-20);
    background: white;
    color: black;
    padding: 1rem;
    border-radius: 10px;
    min-width: 200px;
    z-index: 1000;
}

.info-hover:hover + .info-hover-content {
    display: flex;
    flex-direction: row;
    @media screen and (min-width: 767px) {
        flex-wrap: nowrap;
    }
    flex-wrap: wrap;
    align-items: center;
    justify-items: center;
    justify-content: center;

    div {
        font-weight: 600;
        min-width: 200px;
    }
    img {
        width: fit-content;
        max-height: 150px;
        object-fit: cover;
        @media screen and (min-width: 767px) {
            margin-left: 1rem;
        }
    }
}

.overflow-hidden {
    overflow: hidden;
}

.thank-you-for-buying {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 2rem;



    .thank-you-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 30px;
        border-radius: 20px;
        background: var(--bg-primary);

        h1 {
            text-align: center;
            color: white;
        }

        .thank-you-content-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: white;
            .text {
                text-align: center;
                max-width: 360px;
            }
        }


    }

    .bottom-text {
        text-align: center;
        color: var(--text-secondary);
        font-size: 1rem;
    }
}

.copy-content {
    background: #5c6263;
    color: var(--text-primary);
    border-radius: 12px;
    padding: 0.25rem;
    text-align: center;
    min-width: fit-content;
    width: fit-content;
    bottom: 20px;
    right: 0;
    opacity: 0;

    &.fade-in {
        animation: fadeIn 0.5s;
    }

    &.fade-out {
        animation: fadeOut 1.5s;
    }
}

.catalogue-swiper {
    .swiper-container {
        height: fit-content;

        @media screen and (min-width: 768px) {
            height: calc(100vh - 50px);
        }
        background: #fff;
    }

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%; /* Maintain aspect ratio */
        object-fit: contain; /* Ensure the image fits fully within */
    }

    .swiper-slide {
        width: 60%;
        background: #fff;
    }

    .swiper-slide:nth-child(2n) {
        width: 40%;
    }

    .swiper-slide:nth-child(3n) {
        width: 20%;
    }
}

