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

    Template Name: Voice GPS Driving Directions - GPS Navigation
    Template Description: Voice GPS Driving Directions - GPS Navigation
    Version: 1.0
    Template Author: Vasundhara Infotech
    Template URL: https://vasundhara.com/Voice GPS Driving Directions - GPS Navigation

    ---------------------------------------------------------------------

    CSS INDEX
    ================
    1. Fonts
    2. Primary Style
    3. Preloader
    4. Back To Top
    5. Navigation Bar
    6. Custom Button & Title Bar & Section
    7. Hero Section
    8. App Details
    9. About Our App
    10. Apps Features
    11. How It Work
    12. Screen Slider
    13. Review
    14. Download
    15. Footer & Copyright
*/


/* ==================================================
    1. Fonts
================================================== */
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Bold.eot');
    src: url('../fonts/ProductSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ProductSans-Bold.woff2') format('woff2'),
    url('../fonts/ProductSans-Bold.woff') format('woff'),
    url('../fonts/ProductSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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


/* ==================================================
    2. Primary
================================================== */

:root {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    --bg-light: #f8f8f8;
    --bg-footer: #F5F7FB;
    --gray: #999fae;
    --primary: #4285F4;
    --success:#34A853;
    --danger:#EA4335;
    --warning:#FBBC05;
    --dark: #2B2B2B;
    --white: #ffffff;
    --border:#e3e3e3;
    --font-white: #FFFFFF;
}
[data-theme="rtocare-darks"] {
    --bg-light: #141218;
    --bg-footer: #F5F7FB;
    --gray: #a0a0a0;
    --primary: #4285F4;
    --green-color:#34A853;
    --red-color:#EA4335;
    --yellow-color:#FBBC05;
    --dark: #e0e0e0;
    --white: #201e26;
    --border:#2e2d32;
    --font-white: #FFFFFF;
}
body {
    font-family: 'Product Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    transition: all 200ms linear;
}
p{
    color: var(--gray);
    font-size: 16px;
    font-weight: 300;
}
b, strong {
    font-weight: 700;
    color: var(--dark);
}
::selection {
    color: var(--font-white);
    background-color: var(--primary);
}

::-moz-selection {
    color: var(--font-white);
    background-color: var(--primary);
}

::placeholder {
    color: var(--gray) !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--gray) !important;
}

::-ms-input-placeholder {
    color: var(--gray) !important;
}
::marker {
    color: var(--dark);
}

/* width */

::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}


/* Track */

::-webkit-scrollbar-track {
    background-color: var(--white) !important;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--primary);
}


/* ==================================================
    3. Preloader
  ================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var( --bg-light);
}
#preloader:after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../img/logo/logo.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    border: 2px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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


/* ==================================================
    4. Back To Top
================================================== */

#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: none;
    z-index: 99;
}

#back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--font-white);
    border-radius: 0.325rem;
    transition: all 0.4s;
}


/* ==================================================
    5. Navigation
================================================== */

.top-header {
    opacity: 1;
    transform: translateY(0);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.top-header.scroll-on {
    background-color: var(--bg-light);
    padding: 5px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    box-shadow:0 8px 20px 0 #0000000d;
}

.top-header.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: var(--white);
}

.top-header .navbar {
    padding: 0;
}
.top-header .navbar-brand{
    display: flex !important;
    align-items: center;
}
.top-header .navbar-brand span{
    margin-left: 15px;
    font-weight: bold;
    color: var(--dark);
}
.top-header .navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.top-header .navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.top-header .navbar-toggler:active,
.top-header .navbar-toggler:focus {
    outline: none;
}

.top-header .navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 19px;
    background-image: none;
    position: relative;
    border-bottom: 3px solid var(--dark);
    transition: all 300ms linear;
}

.top-header .navbar-light .navbar-toggler-icon:after,
.top-header .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 3px;
    background-color: var(--dark);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.top-header .navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.top-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.top-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.top-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.top-header .navbar-nav .nav-link {
    color: var(--dark) ;
    font-weight: 500;
    transition: all 200ms linear;
}

.top-header .navbar-nav .nav-item:hover .nav-link {
    color: var(--dark) !important;
}

.top-header .navbar-nav .nav-item.active .nav-link {
    color: var(--primary) !important;
}
.top-header .navbar-nav .nav-item:last-child{
    margin-right: 0 !important;
    background-color: var(--primary);
    padding: 10px 20px;
    border-radius: 0.325rem;
}
.top-header .navbar-nav .nav-item:last-child .nav-link{
    color: var(--font-white) !important;
}
.top-header .navbar-nav .nav-item:hover:last-child .nav-link{
    color: var(--font-white) !important;
}
.top-header .navbar-nav .nav-link {
    position: relative;
    padding: 0 !important;
    display: inline-block;
    font-size: 18px;
}
.top-header .navbar-nav .nav-item:focus .nav-link,
.top-header .navbar-nav .nav-item:hover .nav-link {
    color: var(--primary) !important;
}
.top-header .navbar-nav .nav-item {
    position: relative;
    transition: all 200ms linear;
    margin: 0 22px;
}


.top-header .navbar-nav .nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    box-shadow: 0 10px 30px 0 #00000017;
    transition: all 200ms linear;
}

/* active menu */
.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    visibility: hidden;
    width: 0;
    z-index: -2;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
}
.nav-menu>ul>li>a:before {
    content: "";
    visibility: hidden;
}
.nav-menu a:hover:before, .nav-menu li:hover>a:before, .nav-menu .active>a:before {
    visibility: visible;
    width: 50%;
    opacity: 1;
}


.top-header .navbar-nav .nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.top-header .dropdown-menu {
    padding: 10px !important;
    margin-top: 20px !important;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--dark);
    background-color: var( --bg-light);
    border: none;
    border-radius: 0;
    transition: all 200ms linear;
}

.top-header .dropdown-toggle::after {
    display: none;
}

.top-header .dropdown-item {
    padding: 10px 15px;
    color: var(--dark);
    border-radius: 2px;
    transition: all 200ms linear;
}

.top-header .dropdown-item:hover,
.top-header .dropdown-item:focus {
    color: var(--primary);
    background-color:transparent;
}

.top-header .nav-item .bx-small-icon {
    font-size: 1.2rem !important;
}
@media (max-width: 1300.98px) {
    .top-header .navbar-nav .nav-item {
        margin: 0 22px;
    }
}
@media (max-width: 1199.98px) {
    .top-header .nav-item:after {
        display: none;
    }
    .nav-menu>ul>li>a:before{
        display: none;
    }
    .top-header .navbar-nav .nav-item.active .nav-link {
        color: var(--primary) !important;
    }
    .top-header .navbar-nav .nav-item:first-child{
        margin-top: 1rem;
    }
    .top-header .navbar-nav .nav-item:last-child{
        margin-bottom: 1rem;
    }
    .top-header .navbar-nav .nav-item:last-child .nav-link {
        color: var(--dark) !important;
    }
    .top-header .navbar-nav .nav-item:hover:last-child .nav-link {
        color: var(--primary) !important;
    }
    .top-header .navbar-nav .nav-item:hover .nav-link {
        color: var(--primary) !important;
    }
    .top-header .navbar-nav .nav-item:last-child {
        margin-right: 0 !important;
        background-color:transparent !important;
        padding: 0 !important;
    }
    .top-header .nav-item::before {
        position: absolute;
        display: block;
        top: 16px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: var(--gray);
    }
    .top-header .nav-item.active::before{
        background-color: var(--primary) !important;
    }
    .top-header .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 11px;
        left: 1px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: var(--primary);
        transition: all 200ms linear;
    }

    .top-header .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .top-header .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .top-header .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .top-header .navbar-collapse {
        background-color: var( --bg-light);
        margin-top: 15px;
    }

    .top-header .navbar-nav {
        align-items: start !important;
    }

    .top-header .navbar-nav .nav-link {
        padding: 5px 25px !important;
    }

    .top-header .dropdown-item {
        padding: 5px 25px;
        color: var(--dark);
    }

    .top-header .dropdown-menu {
        margin-top: 0 !important;
    }

    .top-header .nav-item .bx-small-icon {
        display: none;
    }

    .top-header .navbar-nav .nav-item:last-child a {
        color: var(--gray) !important;
    }
}
@media (max-width: 1475px) {
    .top-header .navbar-brand span{
        display: none;
    }
}
@media (max-width: 1199.98px) {
    .mobile-hidden-active{
        overflow: hidden;
    }
    .top-header .navbar-brand span{
        display: block;
    }
}
@media (max-width: 991.98px) {
    .top-header .navbar-brand img {
        height: 50px;
    }
}
@media (max-width: 370.98px) {
    .top-header .navbar-brand span {
        font-size: 15px;
    }
}
@media (max-width: 319.98px) {
    .top-header .navbar-brand span{
        display: none;
    }
}

/*  ==================================================
    6. Custom Button & Title Bar & Section
================================================== */

section {
    position: relative;
    width: 100%;
    display: block;
    padding: 80px 0;
    overflow: hidden;
}
.title {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.title h2 {
    position: relative;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 1rem;
}
.title p{
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 0;
}
a {
    text-decoration: none !important;
}

a:hover {
    color: var(--primary);
}
button:focus{
    outline: 0;
}
:focus-visible {
    outline: unset;
}

a:-webkit-any-link:focus-visible {
    outline-offset: unset;
}
.btn-primary.focus, .btn-primary:focus,
.btn-success.focus, .btn-success:focus{
    box-shadow: unset;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus,
.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show>.btn-success.dropdown-toggle:focus{
    box-shadow: unset;
}
:focus-visible {
    outline: 0;
}
:-webkit-direct-focus {
    outline-color: unset;
    outline-style: unset;
    outline-width: 0 !important;
}
:focus{
    outline-color: unset;
    outline-style: unset;
    outline-width: 0;
}
.form-control{
    border-color: var(--border);
    color: var(--dark);
    background-color: var(--bg-light);
}
.form-control:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: unset;
}
.form-control:focus {
    color: var(--dark);
    background-color: var(--bg-light);
    border-color: #80bdff;
    outline: 0;
    box-shadow: unset;
}
/* App Store Button */
.app-store-btn.btn-apple{
    display: inline-block;
    padding: .375rem 1.2310rem;
    padding-left: 3rem;
    border-radius: .325rem;
    background-position: center left .75rem;
    background-color: var(--dark);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    text-decoration: none;
    white-space: nowrap;
}
.app-store-btn {
    display: inline-block;
    padding: .375rem 1rem;
    padding-left: 3rem;
    border-radius: .325rem;
    background-position: center left .75rem;
    background-color: var(--dark);
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
}
[data-theme="rtocare-darks"] .app-store-btn.btn-apple, [data-theme="rtocare-darks"] .app-store-btn{
    background-color: #141218;
}
.app-store-btn .app-store-btn-subtitle {
    display: block;
    margin-bottom: -.125rem;
    color: var(--white);
    font-size: .65rem;
    text-transform: uppercase;
}
.app-store-btn .app-store-btn-title {
    display: block;
    color: var(--white);
    font-size: 1.125rem;
}
[data-theme="rtocare-darks"] .app-store-btn .app-store-btn-subtitle, [data-theme="rtocare-darks"] .app-store-btn .app-store-btn-title{
    color: var(--dark);
}
.btn-google {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.btn-apple {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiNGRkZGRkYiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}
.btn{
    padding: 0.6rem 1rem;
    font-size: 17px;
}
.btn i{
    font-size: 20px;
    margin-left: 5px;
}
.btn-primary, .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active{
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
@media (max-width: 1199.98px) {
    .title p {
        font-size: 17px;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    .title h2 {
        font-size: 40px;
    }

}

@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }
    .title h2 {
        font-size: 35px;
    }
}

@media (max-width: 575.98px) {
    section {
        padding: 30px 0;
    }
    .title {
        margin-bottom: 30px;
    }
    .title h2 {
        font-size: 30px;
    }
    br{
        display: none;
    }
}

@media (max-width: 319.98px) {
    section {
        padding: 25px 0;
    }
    .title {
        margin-bottom: 25px;
    }
    .title h2 {
        font-size: 30px;
    }
}


/* ==================================================
    7. Hero Section
================================================== */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--white);
    padding-top: 200px;
}
.hero .container{
    z-index: 1;
}
.hero .hero-content h1 {
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}
.hero .hero-content h1 span{
    color: var(--primary);
    font-weight: 800;
}
.hero .hero-content p{
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
}
.hero svg{
    position: absolute;
    bottom: -1px;
    max-width: 100%;
    height: auto;
}
/* Train */
#train{
    animation: train 5s infinite ease-in;
}
@keyframes train {
    from {transform: translateX(-16%); }
    to { transform: translateX(150%) }
}

/* Bus Left */
#bus {
    animation: busleft 12s infinite ease-in;
}
#bus g{
    animation: shaking .2s linear infinite alternate;
}

@keyframes busleft {
    from { transform: translateX(-8%) }
    to { transform: translateX(100%) }
}

/* Car Right */
#car {
    animation: carright 8s infinite ease-in;
}
#car g{
    animation: shaking .2s linear infinite alternate;
}
@keyframes carright {
    from { transform: translateX(6%) }
    to { transform: translateX(-100%) }
}


/* Auto */
#reckshaw {
    animation: autoright 12s infinite ease-in;
}
#reckshaw g{
    animation: shaking .2s linear infinite alternate;
}

@keyframes autoright {
    from { transform: translateX(7%)}
    to { transform: translateX(-100%) }
}


/* Main Car */
#blue_x5F_car{
    animation: car 8s infinite ease;
}

@keyframes car {
    0% {
        transform: translate(-10%, -6%) scale(1.2);
        animation-timing-function: ease-out;
    }
    35% {
        transform: translate(0%, -2%) scale(1);
    }
    36%,
    60% {
        transform: translate(0%, -2%) scale(1);
        animation-timing-function: ease-in;
    }
    100% {
        transform: translate(46.1%, 75.5%) scale(0.1);
    }
}

/* Car Light */
#blue_x5F_car .st10 {
    fill: #802a2b;
    animation: rearLight 8s infinite ease-in;
}
@keyframes rearLight {
    0%, 27% {fill: #802a2b;}
    28%, 56% {fill: #ff0f01;}
    57%,100% {fill: #802a2b;}
}


/* Traffic Sign Frames */
#light .st10 {
    fill: red;
    animation: red 8s infinite ease-in;
}

#light .st34 {
    fill: orange;
    animation: yellow 8s infinite ease-in;
}

#light .st35 {
    fill: darkgreen;
    animation: green 8s infinite ease-in;
}

@keyframes red {
    0%,
    20% {
        fill: #444;
    }
    21%,
    52% {
        fill: red;
    }
    53%,
    100% {
        fill: #444;
    }
}

@keyframes yellow {
    0%,
    20% {
        fill: orange;
    }
    21%,
    89% {
        fill: #444;
    }
    90%,
    100% {
        fill: orange;
    }
}

@keyframes green {
    0%,
    52% {
        fill: #444;
    }
    53%,
    91% {
        fill: green;
    }
    92%,
    100% {
        fill: #444;
    }
}

/* Car & Bus Shaking Animation */
@keyframes shaking {
    from {transform: translateY(.07em);}
    to {transform: translateY(0);}
}

/* helocopter */
#helocopter {
    position: absolute;
    width: 150px;
    transform-box: fill-box;
    transform-origin: 50% 50%;
    -webkit-animation: stayin-air 12s infinite ease-in;
    animation: stayin-air 12s infinite ease-in;
    z-index: 99;
}
#helocopter .top-fan {
    transform-box: fill-box;
    transform-origin: center center;
    transform: scale(1, 1);
    animation: fan-spin 0.1s linear infinite alternate-reverse;
}
#helocopter .rear-fan {
    transform-box: fill-box;
    transform-origin: center center;
    -webkit-animation: spin 0.25s linear infinite;
    animation: spin 0.25s linear infinite;
}
#helocopter .st222 {
    fill: #fbdd85;
}
#helocopter .st111 {
    fill: #fbbc05;
}
@keyframes spin {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes stayin-air {
    0% {
        top: 10%;
        right: -10%;
        transform: translate(90%, -90%) rotate(-5deg);
    }
    100%{
        top: 45%;
        right: 100%;
        transform:translate(-0%, -55%) rotate(1deg);
    }
}
@keyframes fan-spin {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(0.5, 0.5);
    }
}

/* Icon Animation */
#one_x5F_way, #men_x5F_walking, #trafic_x5F_signal, #form, #uturn, #review, #petrol_x5F_pump_1_, #stop, #number_x5F_plate, #Parking{
    display: none;
}
#one_x5F_way{
    animation: anim2 4s infinite ease-in;
}
#men_x5F_walking{
    animation: anim2 6s infinite ease-in;
}
#trafic_x5F_signal{
    animation: anim2 8s infinite ease-in;
}
@keyframes anim1 {
    0% {
        transform: translateY(-12%);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
    }
}

#form{
    animation: anim2 5s infinite ease-in;
}
#uturn{
    animation: anim2 7s infinite ease-in;
}
#review{
    animation: anim2 9s infinite ease-in;
}
@keyframes anim2 {
    0% {
        transform: translateY(-8%);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 1;
    }
}

#petrol_x5F_pump_1_{
    animation: anim2 10s infinite ease-in;
    display: none;
}
#stop{
    animation: anim2 9s infinite ease-in;
    display: none;
}
#number_x5F_plate, #Parking{
    display: none;
}

@keyframes anim3 {
    0% {
        transform: translateY(-5%);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 1;
    }
}
@media (max-width: 1660.98px) {

}
@media (max-width: 1300.98px) {
    .hero {
        height: auto;
        padding: 200px 0 300px;
    }
}
@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .hero {
        height: auto;
        padding: 150px 0 250px;
    }
    .hero .hero-content h1{
        font-size: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero .hero-content h1{
        font-size: 55px;
    }
    .hero .hero-content p{
        font-size: 17px;
    }
    .hero .hero-content p br{
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero {
        height: auto;
        padding: 120px 0 160px;
    }
    .hero .hero-content h1{
        font-size: 32px;
    }
    .hero .hero-content h1 br{
        display: block;
    }
    .hero .hero-content p {
        font-size: 16px;
    }
    #helocopter {
        width: 120px;
    }
}
@media (max-width: 369px){

}
@media (max-width: 319px){
    .hero .hero-content h1{
        font-size: 30px;
    }
}

/* ==================================================
    9. About Our App
================================================== */
.about h3{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark);
}
.about p{
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.about .about-box{
    padding: 15px;
    box-shadow:0 6px 20px 0 #0000000d;
    border-radius: 0.325rem;
}
[data-theme="rtocare-darks"] .about .about-box{
    box-shadow:6px 8px 20px 0 #0000004a;
}
.about-box-inner {
    display: flex;
    align-items: center;
}
.about .about-box .about-box-inner img{
    background-color: #4285f338;
    border-radius: 0.625rem;
    padding: 8px;
    min-width: 45px;
    height: 45px;
    overflow: hidden;
    max-width: 100%;
}
.about .about-box .about-box-inner.green img{
    background-color: #34a75338;
}
.about .about-box .about-box-inner h6{
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin-left: 0.8rem;
    margin-bottom: 0;
}
.about .about-box p{
    font-size: 16px;
    margin-top: 0.6rem;
    margin-bottom: 0;
}
.about  .btn{
    margin-top: 2.5rem;
}
.about .btn {
    position: relative;
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 0.325rem;
    justify-content: center;
}
.about .green.btn{
    background-color: var(--green-color);
    border-color: var(--green-color);;
}
@media (max-width: 1199.98px) {
    .about h3 {
        font-size: 35px;
    }
    .about p {
        font-size: 17px;
    }
}

@media (max-width: 991.98px) {
    .about h3 {
        font-size: 33px;
    }
}

@media (max-width: 767.98px) {
    .about h3 {
        font-size: 30px;
    }
    .about  .about-img {
        max-width: 70%;
    }
}

@media (max-width: 575.98px) {
    .about h3 {
        font-size: 24px;
    }
    .about p {
        font-size: 16px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 319.98px) {
    .about h3 {
        font-size: 20px;
    }
}
/* ==================================================
    10. Apps Features
================================================== */
.features{
    background-color: var(--bg-light);
}
.features .card {
    background-color:transparent;
    padding: 30px;
    text-align: left;
    transition: 0.2s linear;
    margin-bottom: 30px;
    border: 2px solid var(--white);
    border-radius: .325rem;
}
.features .card img {
    width: 70px;
    height: 70px;
}

.features .card .card-body {
    padding: 0;
}

.features .card .card-body h3 {
    font-size: 21px;
    font-weight: bold;
    margin: 30px 0 20px;
}

.features .card .card-body p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 0;
}
.features .card:hover{
    background-color: var(--white);
    box-shadow: 0 8px 20px 0 #0000000d;
}
@media (max-width: 1400.98px) {
    .features .card{
        padding: 26px;
    }
}
@media (max-width: 1300.98px) {
    .features .card{
        padding: 21px;
    }
    .features .card .card-body p {
        font-size: 16px;
    }
}
@media (max-width: 1199.98px) {
    .features .card img {
        width: 60px;
        height: 60px;
    }
    .features .card {
        margin-bottom: 30px;
    }
    .features .card .card-body h3 {
        font-size: 21px;
        margin: 20px 0 10px;
    }
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
    .features .card {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .features .card {
        padding: 20px;
        margin-bottom: 15px;
    }
    .features .card img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 319.98px) {
}
/* ==================================================
    11. How It Work
================================================== */
.how-it-work .video-wrapper img{
    border-radius: 1rem;
}
.how-it-work .video-wrapper .button {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.how-it-work .video-wrapper .button.is-play {
    background-color: var(--primary);
    border-radius: 50%;
    width: 75px;
    height: 75px;
}
.how-it-work .video-wrapper .button.is-play .button-outer-circle {
    background: #5784ff66;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.how-it-work .video-wrapper .button.is-play .button-icon {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    line-height: 0;
    color: #fff;
}
.how-it-work .video-wrapper .button.is-play .has-scale-animation {
    -webkit-animation: smallScale 3s infinite;
    animation: smallScale 3s infinite;
}
.how-it-work .video-wrapper .button.is-play .has-delay-short {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {
    .how-it-work br{
        display: none;
    }
    .how-it-work .video-wrapper .button.is-play {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 575.98px) {
    .how-it-work .video-wrapper .button.is-play {
        width: 50px;
        height: 50px;
    }
    .how-it-work .video-wrapper .button.is-play .button-icon {
        font-size: 35px;
    }
}

@media (max-width: 319.98px) {
}
/*--------------------------------------------------------------
    12. Screen Slider
--------------------------------------------------------------*/

.screen {
    position: relative;
    background-color: var(--bg-light);
}
.screen .centered_mobile {
    position: relative;
    width: 100%;
}
.screen .centered_mobile:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 450px;
    height: 450px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 100px 20px #0000000d;
}
.screen .centered_mobile .screen-slider.owl-carousel .owl-stage{
    margin-bottom: 40px;
    padding: 15px 0;
}
.screen .centered_mobile .screen-slider .owl-item .item img{
    opacity: 0.15;
    -webkit-transform: scale(0.80);
    transform: scale(0.80);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    border-radius: 18px;
    box-shadow: 0 0 20px #b0aec3;
}
[data-theme="rtocare-darks"] .screen .centered_mobile .screen-slider .owl-item .item img{
    box-shadow:unset;
}
.screen .centered_mobile .screen-slider .owl-item.active.center .item img{
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-box-shadow: 0 0 20px 0 #817fc333;
    box-shadow: 0 0 20px 0 #817fc333;
}
.screen .centered_mobile .screen-slider .owl-nav {
    text-align: center;
}
.screen .centered_mobile .screen-slider .owl-item .item{
    text-align: center;
}
.screen .centered_mobile .screen-slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 100px;
    margin: 0;
    opacity: 0.9;
    line-height: 55px;
    width: 55px;
    height: 55px;
    box-shadow: 0 3px 60px #3e3f5f33;
}
.screen .centered_mobile .screen-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 100px;
    margin: 0;
    opacity: 0.9;
    line-height: 55px;
    width: 55px;
    height: 55px;
    box-shadow: 0 3px 60px #3e3f5f33;
}
.screen .centered_mobile .screen-slider .owl-nav .owl-next span, .screen .centered_mobile .screen-slider .owl-nav .owl-prev span {
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    bottom: 0;
    font-size: 35px;
    font-weight: 600;
    color: var(--dark);
}
@media (max-width: 1199.98px) {
    .screen .centered_mobile:before {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .screen .centered_mobile:before {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .screen .centered_mobile:before {
        width: 380px;
        height: 380px;
    }
    .screen .centered_mobile .screen-slider.owl-carousel .owl-stage{
        margin-bottom: 20px;
    }
    .screen .centered_mobile .screen-slider .owl-nav .owl-prev {
        line-height: 45px;
        width: 45px;
        height: 45px;
    }
    .screen .centered_mobile .screen-slider .owl-nav .owl-next {
        line-height: 45px;
        width: 45px;
        height: 45px;
    }
    .screen .centered_mobile .screen-slider .owl-nav .owl-next span, .screen .centered_mobile .screen-slider .owl-nav .owl-prev span {
        font-size: 30px;
    }
}

@media (max-width: 575.98px) {
    .screen .centered_mobile .screen-slider .owl-item .item img{
        max-width: 60%;
    }
    .screen .centered_mobile:before{
        display: none;
    }
}

@media (max-width: 319.98px) {
}
/* ==================================================
    13. Review
================================================== */

/*--------------------------------------------------------------
    13. Testimonials
--------------------------------------------------------------*/
.testimonials-slider {
    position: relative;
    transition: all 0.3s;
}
.testimonials-slider .slider-wrp .slider-item .slider-img img{
    border-radius: 20px;
}
.testimonials-slider .slider-wrp .slider-item.swiper-slide-active .slider-img img {
    opacity: 1;
    transition-delay: 0.3s;
}
.testimonials-slider .slider-wrp .slider-item.swiper-slide-active .slider-content>* {
    opacity: 1;
    transform: none;
}
.testimonials-slider .slider-wrp .slider-item.swiper-slide-active .slider-content>*:nth-child(1) {
    transition-delay: 0.3s;
}

.testimonials-slider .slider-wrp .slider-item.swiper-slide-active .slider-content>*:nth-child(2) {
    transition-delay: 0.4s;
}

.testimonials-slider .slider-wrp .slider-item.swiper-slide-active .slider-content>*:nth-child(3) {
    transition-delay: 0.5s;
}

.testimonials-slider .slider-wrp .slider-item.swiper-slide-active .slider-content>*:nth-child(4) {
    transition-delay: 0.6s;
}
.testimonials-slider .slider-wrp .slider-item .slider-img {
    overflow: hidden;
}
[data-theme="rtocare-darks"] .testimonials-slider .slider-wrp .slider-item .slider-content img {
    filter: invert(0) sepia(0) saturate(0) hue-rotate(218deg) brightness(0) contrast(85%);
}
.testimonials-slider .slider-wrp .slider-item .slider-content>* {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}
.testimonials-slider .slider-wrp .slider-item .quote-right {
    float: right;
}
.testimonials-slider .slider-wrp .slider-item .slider-content h4 {
    display: flex;
    align-items: center;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--dark);
    padding: 30px 80px 0;
    margin-bottom: 0;
    min-height: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.testimonials-slider .slider-wrp .slider-item .user-info{
    padding: 0 80px;
    margin-top: 6rem;
}
.testimonials-slider .slider-wrp .slider-item .star{
    margin-bottom: 0.5rem;
}
.testimonials-slider .slider-wrp .slider-item .star i {
    color: var(--gray);
    font-size: 26px;
}
.testimonials-slider .slider-wrp .slider-item .star .fill {
    color: #FFC700;
}
.testimonials-slider .slider-wrp .slider-item .slider-content h6 {
    font-size: 20px;
    font-weight: bold;
}
.testimonials-slider .swiper-button-next, .testimonials-slider .swiper-button-prev{
    position: absolute;
    top: auto;
    bottom: 70px;
}
.testimonials-slider .swiper-button-prev{
    right: 60px !important;
    left: auto;
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    margin: 0 1rem;
    border-radius: 0.325rem;
    transition: 0.3s linear;
}
.testimonials-slider .swiper-button-next{
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 0.325rem;
    transition: 0.3s linear;
}
.testimonials-slider .swiper-button-next:hover, .testimonials-slider .swiper-button-prev:hover{
    background-color: var(--primary);
}
[data-theme="rtocare-darks"] .testimonials-slider .swiper-button-next:hover:after, [data-theme="rtocare-darks"] .testimonials-slider .swiper-button-prev:hover:after{
    color: var(--font-white);
}
.testimonials-slider .swiper-button-next:after, .testimonials-slider .swiper-button-prev:after {
    font-size: 20px;
    color: var(--gray);
    font-weight: bold;
    transition: 0.3s linear;
}
.testimonials-slider .swiper-button-next:hover:after, .testimonials-slider .swiper-button-prev:hover:after{
    color: var(--white);
}
.testimonials-slider .swiper-notification{
    display: none;
}
@media (max-width: 1199.98px) {
    .testimonials-slider .slider-wrp .slider-item .slider-content h4 {
        padding: 20px 30px 0;
        min-height: 140px;
        margin-bottom: 20px;
    }
    .testimonials-slider .slider-wrp .slider-item .quote-left, .testimonials-slider .slider-wrp .slider-item .quote-right{
        max-width: 80px;
    }
    .testimonials-slider .slider-wrp .slider-item .user-info {
        padding: 0 30px;
    }
    .testimonials-slider .swiper-button-next, .testimonials-slider .swiper-button-prev {
        bottom: 80px;
    }
}

@media (max-width: 991.98px) {
    .testimonials-slider .slider-wrp .slider-item .slider-content h4 {
        font-size: 18px;
        margin-bottom: 0;
    }
    .testimonials-slider .slider-wrp .slider-item .user-info {
        margin-top: 4rem;
    }
    .testimonials-slider .swiper-button-next, .testimonials-slider .swiper-button-prev {
        bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .testimonials-slider .slider-wrp .slider-item .slider-content{
        margin-top: 30px;
    }
    .testimonials-slider .slider-wrp .slider-item .quote-left, .testimonials-slider .slider-wrp .slider-item .quote-right{
        max-width: 70px;
    }
}

@media (max-width: 575.98px) {
    .testimonials-slider .slider-wrp .slider-item .slider-content h4 {
        padding: 10px 10px 0;
    }
    .testimonials-slider .slider-wrp .slider-item .user-info {
        padding: 0 10px;
    }
    .testimonials-slider .swiper-button-next, .testimonials-slider .swiper-button-prev {
        bottom: 10px;
    }
    .testimonials-slider .swiper-button-prev{
        margin: 0;
    }
    .testimonials-slider .swiper-button-next, .testimonials-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .testimonials-slider .swiper-button-next:after, .testimonials-slider .swiper-button-prev:after {
        font-size: 16px;
    }
    .testimonials-slider .slider-wrp .slider-item .quote-left, .testimonials-slider .slider-wrp .slider-item .quote-right{
        max-width:60px;
    }
    .testimonials-slider .slider-wrp .slider-item .star i {
        font-size: 22px;
    }
    .testimonials-slider .slider-wrp .slider-item .slider-content h4 {
        font-size: 17px;
    }
    .testimonials-slider .slider-wrp .slider-item .user-info {
        margin-top: 3rem;
    }
    .testimonials-slider .slider-wrp .slider-item .star {
        margin-bottom: 0;
    }
    .testimonials-slider .slider-wrp .slider-item .slider-content h6 {
        font-size: 18px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 14ch;
    }
}

@media (max-width: 319.98px) {
    .testimonials-slider .slider-wrp .slider-item .slider-content h6 {
        font-size: 17px;
        max-width: 12ch;
    }
}
/* ==================================================
    14. Download
================================================== */
.download .download-content h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 1.35rem;
    color: var(--dark);
}
.download .download-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
}
.download .app-detail .user-info{
    padding: 30px;
    border-radius: 0.625rem;
    box-shadow: 0 8px 20px 0 #0000000d;
    margin: 15px 0;
}
[data-theme="rtocare-darks"] .download .app-detail .user-info {
    box-shadow: 6px 8px 20px 0 #0000004a;
}
.download .app-detail .user-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 1rem 0 0.1rem;
    color: var(--dark);
}
.download .app-detail .user-info p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--gray);
}
.download .app-detail .user-info img{
    width: 60px;
}
@media (max-width: 1450.98px) {

}
@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .download .app-detail{
        margin-top: 30px;
    }
    .download .app-detail .user-info {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .download .download-content h3 {
        font-size: 35px;
    }
    .download .download-content p {
        font-size: 17px;
    }
}

@media (max-width: 575.98px) {
    .download .download-content h3 {
        font-size: 30px;
    }
    .download .app-detail .user-info {
        margin: 7.5px 0;
    }
    .download .app-detail .user-info img {
        width: auto;
    }
    .download .app-detail .user-info h3 {
        font-size: 22px;
    }
}

@media (max-width: 319.98px) {
}
/* ==================================================
    15. Privacy Policy
================================================== */

.privacy-policy .privacy-policy-content .mb-30{
    margin-bottom: 30px;
}
.privacy-policy .privacy-policy-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}
.privacy-policy .privacy-policy-content p{
    font-size: 18px;
    color: var(--gray);
}
.privacy-policy .privacy-policy-content span{
    display: block;
    font-size: 18px;
    color: var(--gray);
}
.privacy-policy .privacy-policy-content ul li{
    font-size: 18px;
    color: var(--gray);
}
.privacy-policy .privacy-policy-content a{
    color: var(--primary);
}
@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
    .privacy-policy .privacy-policy-content .privacy-policy-title {
        font-size: 34px;
        font-weight: 800;
        margin: 5rem 0 1rem;
    }
    .privacy-policy .privacy-policy-content ul{
        padding-left: 1rem;
    }
    .privacy-policy .privacy-policy-content p, .privacy-policy .privacy-policy-content ul li {
        font-size: 17px;
    }
    .privacy-policy .privacy-policy-content h2 {
        font-size: 26px;
    }
    .privacy-policy .privacy-policy-content .mb-30 {
        margin-bottom: 20px;
    }
}

@media (max-width: 319.98px) {
}


/* ==================================================
    16. Footer & Copyright
================================================== */
.footer {
    position: relative;
    padding: 30px 0;
    background-color: var(--bg-light);
    z-index: 1;
}
[data-theme="rtocare-darks"] .footer.bg-white{
    background-color: var(--white) !important;
}
.footer p, .footer a {
    margin-bottom: 0;
    font-size: 17px;
    color: var(--gray);
    text-transform: capitalize;
}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
}

@media (max-width: 319.98px) {
}


/* ==================================================
    17. New Hero
================================================== */
.news-hero{
    padding: 140px 0 60px;
}
.news-hero .news-hero-slider.owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}
.news-hero .news-hero-slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 1.75rem;
    transform: translateX(1rem);
    background: #ffffff;
    border-radius: 100px;
    margin: 0;
    line-height: 55px;
    width: 55px;
    height: 55px;
    box-shadow: 0 3px 60px rgb(62 63 95 / 20%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.news-hero .news-hero-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 1.75rem;
    transform: translateX(-1rem);
    background: var(--white);
    border-radius: 100px;
    margin: 0;
    line-height: 55px;
    width: 55px;
    height: 55px;
    box-shadow: 0 3px 60px rgb(62 63 95 / 20%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
[data-theme="rtocare-darks"] .news-hero .news-hero-slider .owl-nav .owl-prev,
[data-theme="rtocare-darks"] .news-hero .news-hero-slider .owl-nav .owl-next{
    background: var(--bg-light);
}
.news-hero:hover .news-hero-slider .owl-nav .owl-prev{
    transform: none;
    opacity: 1;
}
.news-hero:hover .news-hero-slider .owl-nav .owl-next{
    transform: none;
    opacity: 1;
}
.news-hero .news-hero-slider .owl-nav .owl-next span, .news-hero .news-hero-slider .owl-nav .owl-prev span {
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    bottom: 0;
    font-size: 35px;
    font-weight: 600;
    color: var(--dark);
}
.news-hero .custom-nav{
    list-style: none;
    margin: 0;
}
.news-hero .custom-nav .custom-prev{
    position: absolute;
    top: 50%;
    left: 1.75rem;
    transform: translateX(1rem);
    background: var(--white);
    border-radius: 100px;
    margin: 0;
    line-height: 55px;
    width: 55px;
    height: 55px;
    box-shadow: 0 3px 60px rgb(62 63 95 / 20%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 1;
}
.news-hero .custom-nav .custom-next {
    position: absolute;
    top: 50%;
    right: 1.75rem;
    transform: translateX(-1rem);
    background: var(--white);
    border-radius: 100px;
    margin: 0;
    line-height: 55px;
    width: 55px;
    height: 55px;
    box-shadow: 0 3px 60px rgb(62 63 95 / 20%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    z-index: 1;
}
.news-hero .custom-nav .custom-next span i, .news-hero .custom-nav .custom-prev span i {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: 55px;
    height: 55px;
    font-size: 30px;
    font-weight: 600;
    color: var(--dark);
}
.news-hero .custom-nav .custom-next.disabled, .news-hero .custom-nav .custom-prev{
    cursor: not-allowed;
}
.news-hero .custom-nav .custom-next.disabled span i, .news-hero .custom-nav .custom-prev.disabled span i{
    color: var(--gray);
}
.news-hero:hover .custom-nav .custom-prev{
    transform: none;
    opacity: 1;
}
.news-hero:hover .custom-nav .custom-next{
    transform: none;
    opacity: 1;
}

.news-hero .news-hero-slider .news-hero-media {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    box-shadow: 0 2px 20px 0 #00000005;
    padding: 1.3rem;
    border-radius: 0.325rem;
}
.news-hero .news-hero-slider .news-hero-media .news-hero-media-inner {
    background-color: var(--bg-light);
    overflow: hidden;
    padding-top: 65.2%;
    position: relative;
    border-radius: 0.325rem;
}
.news-hero .news-hero-slider .news-hero-media .news-hero-media-inner .news-hero-img {
    border-radius: 2px;
    display: block;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    position: absolute;
    top: 0;
    width: 100%;
}
.news-hero .news-hero-slider .news-hero-content{
    text-align: left;
}
.news-hero .news-hero-slider .news-hero-content .news-hero-subtitle {
    border: 1px solid var(--primary);
    display: inline-block;
    padding: .3em .8em;
    font-size: .9em;
    border-radius: 50px;
    color: var(--primary);
    margin-right: 6px;
}
.news-hero .news-hero-slider .news-hero-content .news-hero-title {
    color: var(--dark);
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}
.news-hero .news-hero-slider .news-hero-content .news-hero-info {
    color: var(--gray);
    margin: 1rem 0 2rem 0;
    font-size: 17px;
    letter-spacing: 0.4px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-hero-slider .owl-slide-animated {
    transform: translateX(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.05s;
}

.news-hero-slider .owl-slide-animated.is-transitioned {
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.news-hero-slider .news-hero-subtitle.is-transitioned {
    transition-delay: 0.2s;
}

.news-hero-slider .news-hero-title.is-transitioned {
    transition-delay: 0.3s;
}
.news-hero-slider .news-hero-info.is-transitioned {
    transition-delay: 0.4s;
}
.news-hero-slider .news-hero-button.is-transitioned {
    transition-delay: 0.5s;
}
@media (max-width: 1199.98px) {
    .news-hero .news-hero-slider .news-hero-media {
        padding: 1rem;
    }
}

@media (max-width: 991.98px) {
    .news-hero {
        padding: 120px 0 80px;
    }
    .news-hero .news-hero-slider .news-hero-content{
        padding-bottom: 30px;
    }
    .news-hero .news-hero-slider .news-hero-content .news-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .news-hero {
        padding: 120px 0 40px;
    }
    .news-hero .news-hero-slider .news-hero-content .news-hero-title {
        font-size: 35px;
    }
    .news-hero .news-hero-slider .news-hero-content .news-hero-info {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 575.98px) {
    .news-hero {
        padding: 100px 0 40px;
    }
    .news-hero .news-hero-slider .news-hero-content .news-hero-title {
        font-size: 30px;
    }
    .news-hero .news-hero-slider .news-hero-content .news-hero-info {
        margin: 0.5rem 0 1.5rem 0;
    }
}

@media (max-width: 319.98px) {
    .news-hero .news-hero-slider .news-hero-content .news-hero-title {
        font-size: 28px;
    }
    .news-hero .news-hero-slider .news-hero-media {
        padding: 10px;
    }
}


/*--------------------------------------------------------------
    News Grid
--------------------------------------------------------------*/
.news-grid {
    background-color: var(--bg-light);
}
.news-grid .nav-scroller {
    position: relative;
    z-index: 2;
    overflow-y: hidden;
    margin-bottom: 30px;
}
.news-grid .controls {
    padding: 0;
    margin: 0 auto 40px auto;
    list-style: none;
    text-align: center;
    overflow-y: hidden;
}
.news-grid .nav-scroller .nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.news-grid .nav-scroller li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--dark);
    margin: 0 5px;
    transition: 0.3s;
    border-radius: 0.325rem;
    background-color: var(--bg-light);
}
[data-theme="rtocare-darks"] .news-grid .nav-scroller li{
    color: var(--font-white);
}
.news-grid .containers .mix{
    position: relative;
}
.news-grid .containers .mix{
    text-align: left;
    margin-bottom: 0%;
    display: none;
}
.news-grid .containers .mix:after{
    content: attr(data-myorder);
    display: none;
    vertical-align: top;
}
.news-grid .containers .mix:before{
    content: '';
    display: none;
}

.news-grid li.active {
    color: var(--font-white);
    background-color: var(--primary);
}

.news-grid li:last-child {
    margin-right: 0;
}
.news-grid .news-grid-item{
    margin: 15px 0;
}
.news-grid .news-grid-item .news-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 2px 20px 0 #00000005;
    padding: 1.3rem;
    border-radius: 0.325rem;
}
.news-grid .news-grid-item .news-card .news-card-media {
    background-color: var(--bg-footer);
    margin-bottom: 1em;
    overflow: hidden;
    padding-top: 65.2%;
    position: relative;
    border-radius: 0.325rem;
}
.news-grid .news-grid-item .news-card .news-card-media .news-card-img {
     border-radius: 2px;
     display: block;
     height: 100%;
     left: 0;
     -o-object-fit: cover;
     object-fit: cover;
     -o-object-position: center center;
     object-position: center center;
     position: absolute;
     top: 0;
     width: 100%;
}
.news-grid .news-grid-item .news-card .news-card-content {
    -webkit-box-flex: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.news-grid .news-grid-item .news-card .news-card-tag-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 10px;
}
.news-grid .news-grid-item .news-card .news-card-tag-item {
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    display: inline-block;
    font-size: .9rem;
    padding: .3em .8em;
    margin-right: 6px;
    transition: 0.3s;
}
.news-grid .news-grid-item .news-card .news-card-tag-item:hover{
    border-color: var(--primary);
    color: var(--primary);
}
.news-grid .news-grid-item .news-card .news-card-title{
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}
.news-grid .news-grid-item .news-card .news-card-title a{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 65px;
    transition: all 0.3s;
}
.news-grid .news-grid-item .news-card .news-card-title a:hover{
    color: var(--primary);
    text-decoration: underline !important;
}
.news-grid .news-grid-item .news-card .news-card-date {
    display: flex;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-top: 1px solid var(--border);
    padding: 15px 0 0;
    margin-top: 15px;
}
.news-grid .news-grid-item .news-card .news-card-date i{
    font-size: 22px;
    margin-right: 5px;
}
.news-grid .news-grid-item .news-card .news-card-info {
    font-size: 17px;
    color: var(--gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
    overflow: hidden;
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
    .news-grid .news-grid-item .news-card .news-card-title a {
        font-size: 1.4rem;
        height: 55px;
    }
}

@media (max-width: 767.98px) {

    .news-grid .news-grid-item .news-card .news-card-info {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 575.98px) {
    .news-grid .news-grid-item .news-card {
        padding: 1rem;
    }
    .news-grid .news-grid-item .news-card .news-card-title a {
        font-size: 1.3rem;
        height: 50px;
    }
    .news-grid .news-grid-item .news-card .news-card-title{
        margin-bottom: 0.5rem;
    }
    .news-grid .news-grid-item {
         margin: 7.5px 0;
    }
    .news-grid .controls li {
        padding: 9px 14px;
        font-size: 17px;
        margin: 0 3px 10px;
    }
    .news-grid .controls{
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 319.98px) {
}


/*--------------------------------------------------------------
    News Details
--------------------------------------------------------------*/
.news-details{
    margin-top: 70px;
    background-color: var(--bg-light);
}
.news-details .news-details-media {
    display: flex;
    flex-direction: column;
    border-radius: 0.325rem;
}
.news-details .news-details-media .news-details-media-inner{
    background-color: var(--bg-footer);
    overflow: hidden;
    padding-top: 65.2%;
    position: relative;
    border-radius: 0.325rem;
}
.news-details .news-details-media .news-details-media-inner .news-details-img {
    border-radius: 2px;
    display: block;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    position: absolute;
    top: 0;
    width: 100%;
}
.news-details .news-details-media .news-details-media-inner button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    background-color: #1977D3;
    border-color: #1977D3;
}
.news-details .news-details-media .news-details-media-inner button i {
    position: absolute;
    right: 1rem;
    font-size: 24px;
}
.news-details .news-details-content{
    text-align: left;
}
.news-details .news-details-content .news-details-tag-list {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}
.news-details .news-details-content .news-details-tag-item {
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    display: inline-block;
    font-size: .9rem;
    padding: .3em .8em;
    transition: 0.3s;
    margin-right: 6px;
}
.news-details .news-details-content  .news-details-subtitle {
    border: 2px solid var(--primary);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50%;
    color: var(--primary);
}
.news-details .news-details-content .news-details-title {
    color: var(--dark);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-details .news-details-content .news-details-info {
    color: var(--gray);
    margin: 1rem 0 2rem 0;
    font-size: 17px;
    letter-spacing: 0.4px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.news-details .sidebar {
    padding: 30px;
    background-color: var(--white);
    box-shadow: 0 2px 20px 0 #00000005;
    border-radius: 0.325rem;
    margin-left: 30px;
}
.news-details .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    color: var(--dark);
    position: relative;
}
.news-details .sidebar .sidebar-item {
    margin-bottom: 30px;
    position: relative;
}
.news-details .sidebar .search-form form {
    background:transparent;
    border: 2px solid var(--border);
    padding: 7px 15px;
    position: relative;
    border-radius: 0.325rem;
}
.news-details .sidebar .search-form #search_result {
    position: absolute;
    top: 60px;
    width: 100%;
    background-color: var(--bg-light);
    color: var(--dark);
    border-radius: 0.325rem;
    z-index: 99;
}

.news-details .sidebar .search-form #search_result ul{
    padding: 15px;
    list-style: none;
    margin: 0;
}
.news-details .sidebar .search-form #search_result ul li{
    border-bottom: 1px solid var(--border);
}
.news-details .sidebar .search-form #search_result ul li:last-child {
    border-bottom: none;
}
.news-details .sidebar .search-form #search_result ul li a {
    color: var(--dark);
    font-size: 17px;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

    max-width: 32ch;
}
.news-details .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius:0.325rem;
    width: calc(100% - 50px);
    background-color: var(--white);
    color: var(--dark);
}
.news-details .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    display: flex;
    align-items: center;
    background: none;
    font-size: 24px;
    padding: 0 16px;
    margin: -2px;
    background: var(--primary);
    color: var(--font-white);
    transition: 0.3s;
    border-radius: 0 0.325rem 0.325rem 0;
    line-height: 0;
    cursor: pointer;
}
.news-details .sidebar .categories ul {
    list-style: none;
    padding: 0;
}
.news-details .sidebar .categories ul li + li {
    padding-top: 10px;
}
.news-details .sidebar .categories ul a {
    font-size: 17px;
    color: var(--dark);
    transition: 0.3s;
}
.news-details .sidebar .categories ul a:hover, .news-details .sidebar .categories ul a:hover span{
    color: var(--primary)
}
.news-details .sidebar .categories ul a span {
    padding-left: 5px;
    color: var(--gray);
    font-size: 17px;
}
.news-details .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
}
.news-details .sidebar .recent-posts img {
    width: 120px;
    height: 60px;
    float: left;
    border-radius: .325rem;
}
.news-details .sidebar .recent-posts h4 a {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-details .sidebar .recent-posts h4 a:hover {
    color: var(--primary);
}
.news-details .sidebar .recent-posts time {
    display: block;
    font-size: 14px;
    color: var(--gray);
}
.news-details .sidebar .tags {
    margin-bottom: -10px;
}
.news-details .sidebar .tags ul {
    list-style: none;
    padding: 0;
}
.news-details .sidebar .tags ul li {
    display: inline-block;
}
.news-details .sidebar .tags ul a {
    color: var(--dark);
    font-size: 16px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border-radius: 50px;
    border: 2px solid var(--bg-footer);
    display: inline-block;
    transition: 0.3s;
}
.news-details .sidebar .tags ul a:hover {
    color: var(--white);
    border: 1px solid var(--primary);
    background: var(--primary);
}
.news-details .news-details-info h2{
    font-size: 30px;
    font-weight: bold;
    color: var(--dark);
}
.news-details .news-details-info h3{
    font-size: 25px;
    font-weight: bold;
    color: var(--dark);
}
.news-details .news-details-info img{
    max-width: 50%;
}
.news-details .news-details-info p, .news-details .news-details-info li{
    color: #6e6e6e;
    font-size: 18px;
}
.news-details .news-details-info strong, .news-details .news-details-info b, .news-details .news-details-info li::marker{
    color: #6e6e6e;
}
.news-details .news-details-info a{
    color: #4285F4;
    font-size: 18px;
}
@media (max-width: 1199.98px) {
    .news-details .news-details-content .news-details-title {
        font-size: 35px;
    }
    .news-details .news-details-media {
        margin-top: 16px !important;
    }

}

@media (max-width: 991.98px) {
    .news-details .sidebar {
        margin-left: 0;
    }
    .news-details {
        margin-top: 60px;
    }
}

@media (max-width: 767.98px) {
    .news-details .news-details-content .news-details-title {
        font-size: 30px;
    }
    .news-details .sidebar {
        padding: 1rem;
    }
    .news-details .sidebar .sidebar-item {
        margin-bottom: 20px;
    }
    .news-details .news-details-info p, .news-details .news-details-info li, .news-details .news-details-info a{
        font-size: 17px;
    }
}

@media (max-width: 575.98px) {
    .news-details {
        margin-top: 80px;
    }
    .news-details .sidebar .sidebar-title {
        font-size: 20px;
        margin: 0 0 0.8rem 0;
    }
    .news-details .sidebar .recent-posts img {
        width: 100px;
        height: 50px;
        float: left;
    }
    .news-details .sidebar .tags ul a {
        font-size: 15px;
        padding: 4px 12px;
    }
}

@media (max-width: 319.98px) {
    .news-details .news-details-content .news-details-title {
        font-size: 26px;
    }
    .news-details .sidebar .recent-posts img {
        width: 90px;
        height: 45px;
        float: left;
    }
    .news-details .sidebar .tags ul a {
        margin: 0 0 6px 0;
    }
}

/* ==================================================
    17. recent-posts
================================================== */
.also-like{
    overflow: initial;
    background-color: var(--bg-light);
}
.also-like .title{
    display: inline-block;
    color: var(--dark);
    font-size: 30px;
    font-weight: 600;
}
.also-like .recent-posts-slider.owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}
.also-like .recent-posts-slider .owl-nav .owl-prev {
    position: absolute;
    top: -90px;
    right: 14%;
    background-color: var(--white);
    box-shadow: 0 2px 20px 0 #00000005;
    border-radius: 50%;
    margin: 0;
    opacity: 0.9;
    line-height: 55px;
    width: 55px;
    height: 55px;
}
.also-like .recent-posts-slider .owl-nav .owl-next {
    position: absolute;
    top: -90px;
    right: 10%;
    background-color: var(--white);
    box-shadow: 0 2px 20px 0 #00000005;
    border-radius: 50%;
    margin: 0;
    opacity: 0.9;
    line-height: 55px;
    width: 55px;
    height: 55px;
    transition: 0.3s;
}
.also-like .recent-posts-slider .owl-nav .owl-next:hover, .also-like .recent-posts-slider .owl-nav .owl-prev:hover{
    background-color: var(--primary);
}
.also-like .recent-posts-slider .owl-nav .owl-next:hover span, .also-like .recent-posts-slider .owl-nav .owl-prev:hover span{
    color: var(--font-white);
}
.also-like .recent-posts-slider .owl-nav .owl-next span, .also-like .recent-posts-slider .owl-nav .owl-prev span {
    position: absolute;
    left: 0;
    right: 0;
    top: -3px;
    bottom: 0;
    font-size: 35px;
    font-weight: 600;
    color: var(--dark);
    border-radius: 50%;
}
.also-like .recent-posts-slider .recent-posts-card{
    overflow: hidden;
    position: relative;
}
.also-like .recent-posts-slider .recent-posts-card:before {
    content: "";
    height: 60%;
    width: 100%;
    background-image: linear-gradient(to top,#000,transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    transition: all .3s ease-in-out;
}
.also-like .recent-posts-slider .recent-posts-card:hover:before{
    height: 100%;
}
.also-like .recent-posts-card .recent-posts-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 40px 40px;
    transform: translateY(105px);
    z-index: 5;
    text-align: left;
    transition: all .3s ease-in-out;
}
.also-like .recent-posts-card:hover .recent-posts-content {
    transform: translateY(0);
}
.also-like .recent-posts-card .recent-posts-media {
    background-color: var(--bg-footer);
    overflow: hidden;
    padding-top: 65.2%;
    position: relative;
}
.also-like .recent-posts-card .recent-posts-img {
    border-radius: 2px;
    display: block;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    position: absolute;
    top: 0;
    width: 100%;
}
.also-like .recent-posts-card .recent-posts-content .recent-posts-subtitle {
    border: 2px solid var(--font-white);
    display: inline-block;
    font-size: .9rem;
    padding: .3em .8em;
    border-radius: 50px;
    color: #fff;
    background-color: #00000080;
}
.also-like .recent-posts-card .recent-posts-content .recent-posts-title {
    color: var(--font-white);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
}
.also-like .recent-posts-card .recent-posts-content .recent-posts-subtitle a{
    color: var(--font-white);
}
.also-like .recent-posts-card .recent-posts-content .recent-posts-info {
    color: var(--font-white);
    margin: 15px 0 0;
    visibility: hidden;
    font-size: 16px;
    letter-spacing: 0.4px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.also-like .recent-posts-card .recent-posts-content .recent-posts-more{
    color: var(--primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.also-like .recent-posts-card .recent-posts-content .recent-posts-more i{
    margin-left: 5px;
}
.also-like .recent-posts-card:hover .recent-posts-content .recent-posts-info {
    visibility: visible;
    opacity: .7;
}

.also-like .recent-posts-card .recent-posts-content .recent-posts-button {
    position: relative;
    transition: all .5s ease-in-out;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}
.also-like .recent-posts-card .recent-posts-content .recent-posts-button {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 1199.98px) {
    .also-like .recent-posts-card .recent-posts-content {
        padding: 0 30px 30px;
        transform: translateY(70px);
    }
    .also-like .recent-posts-card .recent-posts-content .recent-posts-title {
        font-size: 25px;
    }
    .also-like .recent-posts-card .recent-posts-content .recent-posts-subtitle {
        margin-bottom: 0.5rem;
    }
    .also-like .recent-posts-slider .owl-nav .owl-next {
        right: 3%;
    }
    .also-like .recent-posts-slider .owl-nav .owl-prev {
        right: 10%;
    }
}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {
    .also-like .recent-posts-slider .owl-nav .owl-prev {
        right: 15%;
    }

}

@media (max-width: 575.98px) {
    .also-like .recent-posts-card .recent-posts-content .recent-posts-title {
        font-size: 22px;
    }
    .also-like .title {
        font-size: 22px;
    }
    .also-like .recent-posts-slider .owl-nav .owl-next {
        right: 0;
    }
    .also-like .recent-posts-slider .owl-nav .owl-prev {
        right: 17%;
    }
    .also-like .recent-posts-slider .owl-nav .owl-next, .also-like .recent-posts-slider .owl-nav .owl-prev {
        top: -70px;
        line-height: 45px;
        width: 45px;
        height: 45px;
    }
}
@media (max-width: 319.98px) {
    .also-like .title {
        font-size: 18px;
    }
    .also-like .recent-posts-slider .owl-nav .owl-next, .also-like .recent-posts-slider .owl-nav .owl-prev {
        top: -60px;
    }
}
/* ==================================================
    18. News Details API
================================================== */
.news-details.news-details-api{
    margin: 0;
    padding: 12px;
}
.news-details.news-details-api .news-details-media{
    margin-top: 0 !important;
}
.news-details.news-details-api .news-details-content.news-details-date-inner .news-details-date {
    float: right;
    color: #727272;
}
.news-details.news-details-api .news-details-content.news-details-content-inner .news-details-title{
    display: block;
    color: #2B2B2B;
    margin: 25px 0 10px;
}
.news-details.news-details-api .more-content-details p, .news-details.news-details-api .more-content-details li{
    color: #727272;
    font-size: 17px;
}
.news-details.news-details-api .more-content-details strong, .news-details.news-details-api .more-content-details b, .news-details.news-details-api .more-content-details li::marker{
    color: #6e6e6e;
}
.news-details.news-details-api .more-content-details a{
    color: #0000cd;
}
.news-details.news-details-api .more-content-details iframe, .news-details .news-details-info iframe{
    display: block !important;
    margin: 0 auto !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
}
.news-details.news-details-api .more-content-details .twitter-tweet, .news-details .news-details-info .twitter-tweet{
    margin: 0 auto !important;
}
@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
    .news-details.news-details-api .container {
        max-width: 100%;
    }
    .news-details.news-details-api .news-details-content .news-details-title {
        font-size: 20px;
        font-weight: 600;
        margin: 15px 0 10px;
    }
    .news-details.news-details-api .more-content-details h2{
        font-size: 20px;
        font-weight: 600;
    }
    .news-details.news-details-api .more-content-details ul{
        padding-left: 20px;
    }
}

@media (max-width: 767.98px) {


}

@media (max-width: 575.98px) {
}

@media (max-width: 319.98px) {
}



/* ==================================================
    19. FeedBack
================================================== */
.multi-img-picker{
    margin-right: -8px;
    margin-left: -8px;
}
.multi-img-picker .preview-zone .box {
     position: relative;
     background: var(--white);
     width: 100%;
}
.multi-img-picker .preview-zone .box .box-body .previe-single-image{
    padding-right: 8px;
    padding-left: 8px;
}

.multi-img-picker .preview-zone .box .box-body .previe-single-image .image-box {
    box-shadow: none;
    border-radius: 0.325rem;
    margin-bottom: 0;
    padding: 8px;
    border: 2px dashed var(--border);
    min-height: 104px;
    max-height: 104px;
    align-items: center;
    display: flex;
}

.multi-img-picker .preview-zone .box .box-body .previe-single-image .img-box {
    max-width: 100%;
    max-height: 85px;
    margin: 0 auto;
}

.multi-img-picker .preview-zone .box .box-body .previe-single-image .close-icon {
    position: absolute !important;
    right: 8px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--danger);
    border-radius: 0.325rem;
    width: 26px;
    height: 26px;
    text-decoration: none;
    color: var(--font-white);
    cursor: pointer;
}

.multi-img-picker .dropzone-wrapper {
    border: 2px dashed var(--border);
    border-radius: 0.325rem;
    color:var(--dark);
    position: relative;
    height: 104px;
    width: 104px;
    margin: 0 8px;
    float: left;
}
.multi-img-picker .dropzone-wrapper .dropzone-desc {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 35px;
    color: var(--dark);
}

.multi-img-picker .dropzone-wrapper .dropzone,
.multi-img-picker .dropzone-wrapper .dropzone:focus {
    position: absolute;
    outline: none !important;
    height: 100px;
    width: 100px;
    cursor: pointer;
    opacity: 0;
}

/* Feedback Button */
.feeback-bottom {
    position: fixed;
    right: 90px;
    bottom: 0;
    border-radius: 0.25rem 0.25rem 0 0;
    font-size: 17px;
    z-index: 15;
    padding: 0.2rem 1rem;
    outline: none;
    box-shadow:none;
}
.custom-feedback{
    position: fixed;
    z-index: 100;
    right: 88px;
    bottom: -150%;
    transition: .85s ease-in-out;
    opacity: 0;
}
.custom-feedback.d-block{
    bottom: 0 !important;
    opacity: 1;
}
.custom-feedback .feedback-content{
    width: 100%;
    max-width: 500px;
    min-width: 500px;
    overflow: hidden;
    border-radius: .325rem;
    background-color: var(--white);
    box-shadow: 0 0 20px 25px #0000000d;
}
[data-theme="rtocare-darks"] .custom-feedback .feedback-content {
    box-shadow: 0 0 20px 25px #00000030;
}
.feedback-content{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--white);
    background-clip: padding-box;
    border-radius: 0.3rem;
    outline: 0;
}
.custom-feedback .feedback-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    /*border-bottom: 1px solid #f0f0f0;*/
}
.custom-feedback .feedback-body{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    max-height: 420px;
    overflow-y: auto;
}
.custom-feedback .feedback-title {
    font-weight: 600;
    font-size: 26px;
    line-height: initial;
    color: var(--dark);
    margin-bottom: 0;
}
.custom-feedback .close{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-shadow: unset;
    opacity: .8;
    background-color: var(--bg-light) !important;
    margin: 0;
    width: 45px;
    height: 45px;
    border-radius: 0.325rem;
}
.custom-feedback .feedback-body label {
    font-size: 17px;
}
.custom-feedback .feedback-footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
}
@media (max-width: 767.98px) {
    .custom-feedback .feedback-content{
        max-width: 100%;
        min-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .custom-feedback{
        right: 0;
    }
    .custom-feedback .feedback-content{
        min-width: 320px;
    }
}

@media (max-width: 319.98px) {
    .feeback-bottom{
        right: 80px;
    }
    .custom-feedback .feedback-content{
        min-width: 280px;
    }
}
/* ==================================================
    20. Toast
================================================== */
.error {
    border-bottom: 2px solid var(--danger) !important;
}
.success {
    border-bottom: 2px solid var(--success) !important;
}
.warning {
    border-bottom: 2px solid var(--warning) !important;
}
.error {
    color:  var(--danger);
}
.success {
    color: var(--success);
}
.warning {
    color: var(--warning);
}
.suggesion-highlight{
    background-color: var(--primary);
}
.captcha{
    text-align: center;
    margin: auto;
}
label.error {
    display: none !important;
}
label.success {
    display: none !important;
}
label.warning {
    display: none !important;
}

/* ==================================================
    21. Dark Mode
================================================== */
.my_switcher {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 999;
}
.my_switcher .theme-switch .control {
    font-family: boxicons!important;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    background-color: var(--primary);
    color: var(--font-white);
    cursor: pointer;
}
.my_switcher .theme-switch input[type="checkbox"]:checked ~ .control::before {
    content: "\eb90";
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
.my_switcher .theme-switch .control::before {
    content: "\eaf6";
    -webkit-animation: tada 3s ease infinite;
    animation: tada 3s ease infinite;
}
@media (max-width: 575.98px) {
    .my_switcher .theme-switch .control {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Search Bar */
.search-bar{
    position: relative;
}
.search-bar .input-icon{
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray);
}
.search-bar .form-control{
    padding-left: 3rem;
    background-color: var(--white);
}

/* ==================================================
    22. Recent Web Slider
================================================== */
.recent-web-slider .recent-web-card{
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: .625rem;
    box-shadow: 0 0 6px 0 #00000014;
}
.recent-web-content{
    padding: .5rem;
}
.recent-web-media img{
    border-top-left-radius: .625rem;
    border-top-right-radius: .625rem;
}
.recent-web-content a{
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    color: var(--dark);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*.recent-web-slider.owl-carousel.owl-drag .owl-item{*/
/*    margin-left: 14px;*/
/*}*/
