@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&amp;family=Roboto&amp;display=swap");

:root {
    --base-clr: #22a2f8;
    --base-rgb: 34, 162, 248;
    --body-clr: #71778e;
    --light-clr: #ded6ff;
    --title-clr: #121c42;
    --title-rgb: 18, 28, 66;
    --body-bg: #ffffff;
    --section-bg: #f6fbff;
    --section-light: #f6fbff;
    --dark-clr: #05263b;
    --dark-rgb: 5, 38, 59;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --primary-clr: #0c67a3;
    --primary-rgb: 12, 103, 163;
    --border-clr: #5b57ba1a;
    --border-light: #e5e5e5;
    --border-light-only: #e5e5e5;
    --border-dark: #302474;
    --border-dark-only: transparent;
    --heading-fonts: "Inter", sans-serif;
    --body-fonts: "Roboto", sans-serif;
    --base-shadow-sm: 0 0 1px var(--base-clr), 0 0 3px var(--base-clr);
    --base-shadow: 0 0 1px var(--base-clr), 0 0 2px var(--base-clr),
  	0 0 3px var(--base-clr), 0 0 5px var(--base-clr), 0 0 7px var(--base-clr);
    --shadow: 0 0 5px rgba(var(--title-rgb), 0.2);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--body-clr);
    line-height: 26px;
    overflow-x: hidden;
    font-family: var(--body-fonts);
    background: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--title-clr);
    font-family: var(--heading-fonts);
    font-weight: 600;
    line-height: 1.2;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #121c42;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--base-clr);
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin-top: -9px;
}

p:last-child {
    margin-bottom: -7px !important;
}

@media (min-width: 576px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 56px;
    }

    h2.title {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px;
    }
}

a {
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

label,
button,
select {
    cursor: pointer;
}

.bg_img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg_contain {
    background-size: contain;
}

input,
textarea {
    width: 100%;
}

.font--sm {
    font-size: 14px;
    line-height: 1.6;
}

.font--lg {
    font-size: 18px;
    line-height: 1.6;
}

.contact__item, .filter-menu, .widget-body .widget-tags, .banner-wrapper, .social-icons {
    display: flex;
    flex-wrap: wrap;
}

.video--btn::after, .video--btn::before, .cmn--btn .round-effect::before, .loader::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    content: "";
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-120 {
    padding-top: 70px;
}

.pb-120 {
    padding-bottom: 70px;
}

.pt-50 {
    padding-top: 35px;
}

.pb-50 {
    padding-bottom: 35px;
}

@media (min-width: 992px) {
    .pt-120 {
        padding-top: 120px;
    }

    .pb-120 {
        padding-bottom: 120px;
    }

    .pt-50 {
        padding-top: 50px;
    }

    .pb-50 {
        padding-bottom: 50px;
    }
}

.overlayer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--dark-rgb), 0.7);
    z-index: 99;
    display: none;
}

.overlayer.active {
    display: block;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -5px;
    margin-top: 15px;
}

.pagination li {
    padding: 5px;
}

.pagination li a,
.pagination li span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: var(--section-bg);
    color: var(--title-clr);
    border: 1px solid var(--border-clr);
}

.pagination li a.active,
.pagination li span.active {
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    color: var(--white-clr);
}

.pagination li a.disabled,
.pagination li span.disabled {
    background: rgba(var(--base-rgb), 0.1);
}

.owl-dots {
    display: flex;
    flex-wrap: wrap;
    margin: -3px;
    margin-top: 20px;
    justify-content: center;
}

.owl-dots .owl-dot {
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    margin: 3px;
}

.owl-dots .owl-dot.active {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid var(--base-clr);
    border-color: var(--base-clr);
}

.owl-dots .owl-dot span {
    background: var(--base-clr);
    width: 5px;
    height: 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.toTopBtn {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    color: var(--base-clr);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    cursor: pointer;
    z-index: 3;
    background: var(--title-clr);
}

.toTopBtn.active {
    bottom: 30px;
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--section-bg);
    z-index: 99999;
}

.loader::before {
    width: 46px;
    height: 46px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid var(--base-clr);
    border-left-color: transparent;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(720deg);
        -ms-transform: translate(-50%, -50%) rotate(720deg);
        transform: translate(-50%, -50%) rotate(720deg);
    }
}

.rtl {
    direction: rtl;
}

.ltr {
    direction: ltr;
}

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

.section-header {
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 50px;
    }
}

.section-header .category-shape {
    margin-bottom: 15px;
}

.section-header .title:not(:last-child) {
    margin-bottom: 20px;
}

.section-header .text:not(:last-child) {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .section-header .category-shape {
        margin-bottom: 22px;
    }

    .section-header .title:not(:last-child) {
        margin-bottom: 25px;
    }

    .section-header .text:not(:last-child) {
        margin-bottom: 35px;
    }
}

.section-header.text-center {
    max-width: 734px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-center .category-shape {
    margin-left: auto;
    margin-right: auto;
}

.footer-input-group {
    position: relative;
}

.footer-input-group .form-control {
    outline: none;
    box-shadow: none !important;
    border: 1px solid rgba(var(--white-rgb), 0.1);
    height: 51px;
    padding: 0 60px 0 20px;
    color: var(--white-clr);
    background: rgba(var(--title-clr), 0.1);
}

.footer-input-group .form-control:focus {
    color: var(--white-clr);
    border-color: var(--base-clr);
}

.footer-input-group .input-group-text {
    height: 36px;
    width: 36px;
    justify-content: center;
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 9;
    background: var(--base-clr) !important;
    color: var(--white-clr) !important;
}

.ctas-wrapper-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 75px 46px 74px 56px;
    background: #f6f7fb;
    border-radius: 30px;
    position: relative;
    align-items: center;
}

.ctas-wrapper-inner .cart-shape {
    position: absolute;
    bottom: 0;
    left: calc(50% + 40px);
}

@media (max-width: 1199px) and (min-width: 992px) {
    .ctas-wrapper-inner .cart-shape img {
        max-width: 150px;
    }
}

@media (max-width: 991px) {
    .ctas-wrapper-inner .cart-shape {
        left: 100px;
    }
}

@media (max-width: 575px) {
    .ctas-wrapper-inner .cart-shape {
        left: 30px;
    }
}

.ctas-wrapper-inner::before {
    inset: -8px -8px calc(100% - 40px);
    background: var(--base-clr);
    position: absolute;
    content: "";
    z-index: -1;
}

.ctas-wrapper-inner .ctas-left {
    width: calc(100% - 442px);
    max-width: 607px;
}

@media (min-width: 1200px) {
    .ctas-wrapper-inner .ctas-left {
        padding-right: 30px;
    }
}

@media (max-width: 1199px) and (min-width: 576px) {
    .ctas-wrapper-inner .ctas-left .section-header .title {
        font-size: 36px;
    }
}

.ctas-wrapper-inner .ctas-right {
    width: 442px;
}

.ctas-wrapper-inner .ctas-right .ctas-right-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 575px) {
    .ctas-wrapper-inner .ctas-right .ctas-right-top {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .ctas-wrapper-inner .ctas-right .ctas-right-top .code-logo img {
        max-width: 150px;
    }
}

.ctas-wrapper-inner .ctas-right .code-logo {
    padding-right: 15px;
}

.ctas-wrapper-inner .ctas-right .code-rating .rating {
    color: #facb1e;
    margin-bottom: 10px;
}

.ctas-wrapper-inner .ctas-right .code-rating .rating i {
    font-size: 18px;
}

.ctas-wrapper-inner .ctas-right .code-rating .rating i:not(:last-child) {
    margin-right: 5px;
}

@media (max-width: 450px) {
    .ctas-wrapper-inner .ctas-right .code-rating .rating i {
        font-size: 14px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .ctas-wrapper-inner .ctas-right .code-rating .rating {
        margin-bottom: 0;
    }
}

@media (max-width: 1199px) {
    .ctas-wrapper-inner {
        padding: 70px 35px;
    }
}

@media (max-width: 1023px) {
    .ctas-wrapper-inner .ctas-left {
        width: calc(100% - 380px);
    }

    .ctas-wrapper-inner .ctas-right {
        width: 380px;
    }
}

@media (max-width: 991px) {
    .ctas-wrapper-inner .ctas-left {
        width: 100%;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .ctas-wrapper-inner .ctas-right {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .ctas-wrapper-inner {
        padding: 45px 15px;
    }
}

@media (max-width: 375px) {
    .ctas-wrapper-inner {
        text-align: center;
    }

    .ctas-wrapper-inner .section-header .title {
        font-size: 24px;
    }

    .ctas-wrapper-inner .ctas-right-top {
        justify-content: space-evenly !important;
    }

    .ctas-wrapper-inner .ctas-right-top .code-logo {
        padding-right: 0;
    }

    .ctas-wrapper-inner .ctas-right .text-end {
        text-align: center !important;
    }
}

.ctas-wrapper {
    max-width: 1236px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .ctas-wrapper {
        max-width: 640px;
    }
}

.footer-top {
    padding: 90px 0 45px;
}

.footer-wrapper {
    color: var(--light-clr);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -12px;
}

.footer-wrapper .footer-links,
.footer-wrapper .footer-comunity {
    padding: 0 12px 40px;
    width: 100%;
}

.footer-wrapper .title {
    margin-bottom: 15px;
    color: var(--white-clr);
}

.footer-wrapper .footer-links {
    max-width: 180px;
}

.footer-wrapper .footer-links ul li a {
    color: var(--light-clr);
    padding: 3px 0;
    display: block;
}

.footer-wrapper .footer-links ul li a:hover {
    color: var(--base-clr);
}

@media (max-width: 1399px) {
    .footer-wrapper .footer-links {
        max-width: 200px;
    }
}

.footer-wrapper .logo-area {
    max-width: 331px;
    width: 100%;
    color: var(--white-clr);
}

.footer-wrapper .logo-area p {
    margin-bottom: 20px;
}

.footer-wrapper .footer-logo {
    max-width: 120px;
    margin-bottom: 30px;
}

.footer-wrapper .footer-logo a {
    display: block;
}

.footer-wrapper .footer-logo a img {
    width: 100%;
}

@media (max-width: 991px) {
    .footer-wrapper .footer-links {
        max-width: 180px;
        font-size: 14px;
    }

    .footer-wrapper .logo-area {
        max-width: 100%;
    }
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid rgba(var(--white-rgb), 0.1);
}

.footer-bottom-wrapper ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom-wrapper ul li a {
    color: var(--body-clr);
    padding: 0 15px;
}

.footer-bottom-wrapper ul li a:hover {
    color: var(--base-clr);
}

.footer-bottom-wrapper ul li:not(:last-child) {
    position: relative;
}

.footer-bottom-wrapper ul li:not(:last-child)::after {
    width: 1px;
    height: 10px;
    background: var(--white-clr);
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .footer-bottom-wrapper {
        justify-content: space-evenly;
    }
}

.parent-menu {
    position: relative;
    z-index: 999 !important;
}

.parent-menu > a {
    align-items: center;
}

.parent-menu > a::after {
    content: "\f107";
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
    margin-left: 5px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: inline-block;
}

@media (max-width: 991px) {
    .parent-menu > a::after {
        margin-left: auto;
    }
}

.parent-menu:hover > a::after, .parent-menu.open > a::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

@media (min-width: 992px) {
    .parent-menu.open .submenu {
        display: block !important;
    }

    .parent-menu .submenu {
        display: block !important;
    }
}

.nav-toggle {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

.nav-toggle span {
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background: var(--title-clr);
    left: 0;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.nav-toggle span:last-child {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 9px);
    -ms-transform: rotate(45deg) translate(3px, 9px);
    transform: rotate(45deg) translate(3px, 9px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -9px);
    -ms-transform: rotate(-45deg) translate(3px, -9px);
    transform: rotate(-45deg) translate(3px, -9px);
}

.navbar-top {
    position: relative;
    z-index: 999;
    padding-top: 5px;
    padding-bottom: 5px;
    background: var(--section-bg);
}

@media (max-width: 767px) {
    .navbar-top {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.social-icons {
    justify-content: center;
    margin: -3px;
}

.social-icons li {
    padding: 3px;
}

.social-icons li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid var(--border-clr);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    color: var(--base-clr);
    background: rgba(var(--title-rgb), 0.011);
}

.social-icons li a i[class*=facebook] {
    color: #3b5998;
}

.social-icons li a i[class*=whatsapp] {
    color: #25d366;
}

.social-icons li a i[class*=twitter] {
    color: #55acee;
}

.social-icons li a i[class*=linkedin] {
    color: #007bb5;
}

.social-icons li a i[class*=instagram] {
    color: #e4405f;
}

.social-icons li a i[class*=google] {
    color: #dd4b39;
}

.social-icons li a i[class*=youtube] {
    color: #cd201f;
}

.social-icons li a i[class*=camera] {
    color: #e4405f;
}

.social-icons li a i[class*=pinterest] {
    color: #007bb5;
}

.social-icons li a i[class*=tumblr] {
    color: #34465d;
}

.social-icons li a i[class*=behance] {
    color: #1769ff;
}

.social-icons li a i[class*=skype] {
    color: #2fb7df;
}

.social-icons li a i[class*=vimeo] {
    color: #1ab7ea;
}

.contact-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 767px) {
    .contact-bar {
        justify-content: center;
    }
}

.contact-bar li a {
    color: var(--title-clr);
}

.contact-bar li:not(:last-child) {
    border-right: 1px solid var(--border-clr);
}

.contact-bar li:not(:last-child) a {
    padding: 0 10px;
    font-size: 14px;
}

.contact-bar li:nth-last-child(2) {
    border: none;
}

header {
    position: relative;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.navbar-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background: var(--white-clr);
}

.navbar-bottom.active {
    box-shadow: 0 0 5px rgba(var(--base-rgb), 0.2);
    position: fixed;
    bottom: unset;
    top: 0;
    animation: fadeInDown 0.4s;
    -webkit-animation: fadeInDown 0.4s;
    -moz-animation: fadeInDown 0.4s;
}

.navbar-bottom.active .navbar-wrapper {
    min-height: 0;
}

.navbar-bottom.active .mode--toggle {
    display: block !important;
}

.navbar-wrapper {
    padding: 15px 0;
}

@media (min-width: 992px) {
    .navbar-wrapper {
        min-height: 100px;
    }
}

.navbar-wrapper .logo {
    max-width: 190px;
}

@media (max-width: 575px) {
    .navbar-wrapper .logo {
        max-width: 130px;
    }
}

.navbar-wrapper .logo a {
    display: block;
}

.navbar-wrapper .logo img {
    width: 100%;
    height: 45px;
    object-fit: contain;
    object-position: left center;
}

/*Nav Menu*/
.navbar-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-wrapper .cmn--btn {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: var(--heading-fonts);
}

@media (min-width: 992px) {
    .navbar-wrapper .cmn--btn {
        padding: 17px 60px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        font-family: var(--heading-fonts);
        line-height: 120%;
    }
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-menu li {
        padding: 0 15px;
    }

    .nav-menu li:last-child {
        padding-right: 0;
    }

    .nav-menu li a:not([class*=btn]) {
        color: var(--title-clr);
        font-family: var(--heading-fonts);
        text-transform: capitalize;
        padding: 5px 0;
    }
}

@media (min-width: 992px) and (min-width: 1200px) {
    .nav-menu li {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .nav-menu li .sub-nav {
        min-width: 220px;
        position: absolute;
        left: 0;
        top: 100%;
        border-bottom: 3px solid var(--base-clr);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background: var(--dark-clr);
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        transition: all ease 0.3s;
    }

    .nav-menu li .sub-nav li {
        padding: 0;
    }

    .nav-menu li .sub-nav li a {
        padding: 5px 15px;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        color: var(--white-clr);
        align-items: center;
    }

    .nav-menu li .sub-nav li a:hover {
        padding-left: 20px;
        background: var(--base-clr);
        color: var(--white-clr);
    }

    .nav-menu li .sub-nav li:not(:last-child) > a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li .sub-nav .sub-nav {
        left: 100%;
        top: 0;
    }
}

@media (min-width: 992px) {
    .nav-menu li:not(:hover) .sub-nav {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
    }
}

@media (min-width: 992px) {
    .nav-menu li:nth-last-of-type(1) .sub-nav, .nav-menu li:nth-last-of-type(2) .sub-nav, .nav-menu li:nth-last-of-type(3) .sub-nav {
        left: unset;
        right: 0;
    }

    .nav-menu li:nth-last-of-type(1) .sub-nav .sub-nav, .nav-menu li:nth-last-of-type(2) .sub-nav .sub-nav, .nav-menu li:nth-last-of-type(3) .sub-nav .sub-nav {
        right: 100%;
    }
}

.nav-menu li a {
    position: relative;
}

.nav-menu li a:before {
    position: absolute;
    content: "";
    background: #bde4fd;
    height: 4px;
    bottom: 10px;
    left: 0;
    transform: scaleX(0);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    z-index: -1;
    width: 100%;
}

.nav-menu li a:hover, .nav-menu li a.active {
    color: var(--base-clr);
}

.nav-menu li a:hover::before, .nav-menu li a.active::before {
    transform: scaleX(1);
}

/*Nav Mobile Menu*/
@media (max-width: 991px) {
    .nav-menu-area {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: 999;
        max-width: 320px;
        background: var(--dark-clr);
        padding: 30px 20px;
        overflow-y: auto;
        -webkit-transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        transition: all ease 0.3s;
        transform-origin: left;
    }

    .nav-menu-area .menu-close {
        position: absolute;
        right: 30px;
        top: 20px;
        font-size: 20px;
    }

    .nav-menu-area:not(.active) {
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
    }

    .nav-menu-area .nav-menu {
        width: 100%;
        margin-top: 20px;
    }

    .nav-menu-area .nav-menu li {
        text-align: center;
    }

    .nav-menu-area .nav-menu li a {
        color: #fff;
        padding: 5px 0;
        margin: 0 auto;
    }

    .nav-menu-area .nav-menu li a::before {
        bottom: 11px;
        z-index: -1;
        background: rgba(var(--base-rgb), 0.6);
    }

    .nav-menu-area .nav-menu li a.active {
        color: var(--base-clr);
    }

    .nav-menu-area .nav-menu li a.cmn--btn {
        background: #fff;
        color: var(--base-clr);
        display: inline-flex;
        padding: 10px 25px;
        margin-top: 15px;
        border: none;
    }

    .nav-menu-area .nav-menu .sub-nav {
        padding-left: 15px;
        display: none;
        font-size: 14px;
    }
}

.remove-scroll header,
.modal-open header {
    visibility: hidden;
    opacity: 0;
}

.banner-section {
    padding: 60px 0;
    overflow: hidden;
}

.category-shape {
    background: #e9f6ff;
    border-radius: 20px;
    display: inline-flex;
    padding: 10px 20px;
    font-weight: 600;
    font-family: var(--heading-fonts);
    color: var(--title-clr);
}

.category-shape .icon {
    margin-right: 10px;
}

.category-shape .icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (min-width: 576px) {
    .category-shape {
        font-size: 18px;
        padding: 14px 24px;
    }
}

.banner-wrapper {
    align-items: center;
    justify-content: space-between;
}

.banner-wrapper .banner-content {
    flex-grow: 1;
    max-width: 610px;
    position: relative;
    z-index: 1;
}

.banner-wrapper .banner-content .content .title {
    margin-top: 23px;
    margin-bottom: 23px;
}

.banner-wrapper .banner-content .content .text {
    margin-bottom: 42px;
}

.banner-wrapper .banner-thumb {
    width: 448px;
    position: relative;
    padding-bottom: 20px;
}

.banner-wrapper .banner-thumb .main-img {
    width: 100%;
    object-fit: cover;
    -webkit-border-radius: 29px;
    -moz-border-radius: 29px;
    border-radius: 29px;
}

.banner-wrapper .banner-thumb .shape1 {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    animation: banner__one 3s linear infinite;
    -webkit-animation: banner__one 3s linear infinite;
    -moz-animation: banner__one 3s linear infinite;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .banner-wrapper .banner-thumb .shape1 {
        max-width: 240px;
    }
}

@media (max-width: 575px) {
    .banner-wrapper .banner-thumb .shape1 {
        max-width: 240px;
        right: -40px;
    }
}

.banner-wrapper .banner-thumb .shape2 {
    position: absolute;
    left: -100px;
    bottom: 0;
    animation: banner__two 3s linear infinite;
    -webkit-animation: banner__two 3s linear infinite;
    -moz-animation: banner__two 3s linear infinite;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .banner-wrapper .banner-thumb .shape2 {
        max-width: 240px;
    }
}

@media (max-width: 575px) {
    .banner-wrapper .banner-thumb .shape2 {
        max-width: 240px;
        left: -40px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .banner-wrapper .banner-content {
        width: calc(100% - 400px);
    }

    .banner-wrapper .banner-content .title {
        font-size: 44px;
    }

    .banner-wrapper .banner-thumb {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .banner-wrapper .banner-content {
        text-align: center;
        max-width: 100%;
    }

    .banner-wrapper .banner-content .title {
        font-size: 44px;
    }

    .banner-wrapper .banner-thumb {
        margin: 45px auto 0;
    }
}

@media (max-width: 767px) {
    .banner-wrapper .banner-content .content .title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) and (max-width: 575px) {
    .banner-wrapper .banner-content .content .title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .banner-wrapper .banner-content .content .text {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .banner-wrapper .banner-thumb {
        margin: 40px auto 0;
    }
}

@keyframes banner__one {
    0%, 100% {
        -webkit-transform: translate(0, -80px);
        -ms-transform: translate(0, -80px);
        transform: translate(0, -80px);
    }

    50% {
        -webkit-transform: translate(0, -60px);
        -ms-transform: translate(0, -60px);
        transform: translate(0, -60px);
    }
}

@keyframes banner__two {
    0%, 100% {
        -webkit-transform: translate(0, -10px);
        -ms-transform: translate(0, -10px);
        transform: translate(0, -10px);
    }

    50% {
        -webkit-transform: translate(0, -30px);
        -ms-transform: translate(0, -30px);
        transform: translate(0, -30px);
    }
}

.filter-widget {
    border: 1px solid var(--border-clr);
    background: var(--section-bg);
}

.filter-widget:not(:last-child) {
    margin-bottom: 24px;
}

.filter-widget .title {
    border-bottom: 1px solid var(--border-clr);
    padding: 15px;
    text-align: center;
}

.filter-widget .filter-body {
    padding: 20px 0;
}

.filter-widget .filter-body .filter-cate-grp li a {
    color: var(--body-clr);
    font-size: 14px;
    padding: 3px 30px;
    display: block;
    font-family: var(--heading-fonts);
}

.filter-widget .filter-body .filter-cate-grp li a:hover {
    color: var(--base-clr);
}

.filter-widget .filter-body .check-filter-grp {
    padding-left: 10px;
    padding-right: 10px;
}

.filter-widget .filter-body .check-filter-grp li:not(:last-child) {
    margin-bottom: 10px;
}

.form-check .form-check-input:checked {
    background-color: var(--base-clr);
    border-color: var(--base-clr);
}

.form-check .form-check-input:focus {
    box-shadow: var(--base-shadow-sm);
}

.form--check {
    text-transform: capitalize;
    font-size: 14px;
}

.form--check label {
    display: block;
    line-height: 1.5;
}

.filter-widget-sidebar {
    position: sticky;
    top: 0;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid var(--border-clr);
    margin-bottom: 25px;
    background: var(--section-bg);
}

.filter-header .form--control {
    width: unset;
}

.filter-amount label {
    margin-right: 5px;
}

.filter-amount input {
    width: unset;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
}

.filter--price {
    padding: 0 22px;
}

.filter--price .filter-amount {
    margin-bottom: 10px;
}

.filter--price .ui-widget-header {
    background: var(--base-clr);
}

.filter--price .ui-widget.ui-widget-content {
    border: none;
    background: rgba(var(--title-rgb), 0.2);
}

.filter--price .ui-slider-horizontal {
    height: 8px;
}

.filter--price .ui-slider-horizontal .ui-slider-handle {
    top: -7px;
}

.filter--price .ui-slider-handle {
    border-radius: 50% !important;
}

.filter--price .ui-state-focus {
    box-shadow: 0 0 5px var(--base-clr);
    border: none;
    outline: none;
}

/*FAQs*/
.accordion-item:not(:last-child) {
    margin-bottom: 14px;
}

.accordion-item .accordion-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 15px 15px 20px;
    background: var(--section-bg);
    border: 1px solid var(--border-clr);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.accordion-item .accordion-title .title {
    flex-grow: 1;
    margin: 0;
    font-weight: 600;
    max-width: calc(100% - 20px);
}

.accordion-item .accordion-title .icon {
    width: 14px;
    height: 14px;
    border-left: 1px solid var(--title-clr);
    border-bottom: 1px solid var(--title-clr);
    -webkit-transform: translateX(-5px) rotate(-45deg);
    -ms-transform: translateX(-5px) rotate(-45deg);
    transform: translateX(-5px) rotate(-45deg);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: block;
}

.accordion-item .accordion-content {
    padding: 25px 20px;
    display: none;
    border: 1px solid var(--border-clr);
    border-top: none;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

.accordion-item .accordion-content strong {
    font-family: var(--heading-fonts);
    font-weight: 500;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.open .accordion-title {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.accordion-item.open .accordion-title .icon {
    -webkit-transform: translateX(-5px) translateY(8px) rotate(135deg);
    -ms-transform: translateX(-5px) translateY(8px) rotate(135deg);
    transform: translateX(-5px) translateY(8px) rotate(135deg);
}

/*Blog Sidebar*/
.widget {
    -webkit-border-radius: 7px !important;
    -moz-border-radius: 7px !important;
    border-radius: 7px !important;
}

.widget:not(:last-child) {
    margin-bottom: 25px;
}

.widget-header {
    padding: 12px 15px;
    background: var(--base-clr);
    -webkit-border-radius: 7px 7px 0 0 !important;
    -moz-border-radius: 7px 7px 0 0 !important;
    border-radius: 7px 7px 0 0 !important;
}

.widget-body {
    border: 1px solid var(--border-clr);
    border-top: none;
    padding: 20px;
    -webkit-border-radius: 0 0 7px 7px;
    -moz-border-radius: 0 0 7px 7px;
    border-radius: 0 0 7px 7px;
}

.widget-body .archive-links li a {
    color: #121c42;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.widget-body .archive-links li a::before {
    content: "\f101";
    margin-right: 5px;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--base-clr);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.widget-body .archive-links li a span:last-child {
    margin-left: auto;
}

.widget-body .archive-links li a:hover {
    padding-left: 2px;
}

.widget-body .archive-links li a:hover::before {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}

.widget-body .archive-links li:not(:last-child) {
    border-bottom: 1px solid var(--border-clr);
}

.widget-body .archive-links li:first-child a {
    padding-top: 0;
}

.widget-body .archive-links li:last-child a {
    padding-bottom: 0;
}

.widget-body .latest-posts li {
    padding: 0;
}

.widget-body .latest-posts li:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-clr);
}

.widget-body .latest-posts li:not(:first-child) {
    padding-top: 10px;
}

.widget-body .latest-posts li a {
    display: flex;
}

.widget-body .latest-posts li a .img {
    width: 70px;
}

.widget-body .latest-posts li a .img img {
    height: 70px;
    object-fit: cover;
    width: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.widget-body .latest-posts li a .cont {
    width: calc(100% - 70px);
    padding-left: 15px;
}

.widget-body .latest-posts li a .cont .subtitle {
    margin: 0;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-body .latest-posts li a .cont .date {
    font-size: 14px;
    color: var(--base-clr);
}

.widget-body .widget-tags {
    margin: -3px;
}

.widget-body .widget-tags li {
    padding: 3px;
}

.widget-body .widget-tags li a {
    padding: 7px 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: var(--section-bg);
    border: 1px solid var(--border-clr);
    color: #121c42;
    font-size: 14px;
}

.widget-body .widget-tags li a:hover, .widget-body .widget-tags li a.active {
    background: var(--base-clr);
    border-color: var(--base-clr);
    color: #fff;
}

@media (max-width: 1199px) {
    .about-thumb {
        text-align: center;
    }

    .about-thumb img {
        max-width: 100%;
    }
}

.service-box {
    padding: 38px;
    background: #f6f7fb;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-box::before {
    inset: 0 100% 100% 0;
    position: absolute;
    content: "";
    background: var(--title-clr);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.service-box > * {
    position: relative;
    z-index: 1;
}

.service-box__icon {
    width: 100px;
    height: 100px;
    background: var(--body-bg);
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    margin-bottom: 20px;
}

.service-box__icon img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.service-box__cont .title {
    margin-bottom: 21px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .service-box {
        padding: 38px 25px;
    }
}

@media (max-width: 767px) {
    .service-box {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) and (max-width: 380px) {
    .service-box {
        padding: 30px 25px;
    }

    .service-box .service-box__icon {
        width: 80px;
        height: 80px;
    }

    .service-box .service-box__icon img {
        width: 50px;
        height: 50px;
    }
}

.service-box:hover {
    color: var(--light-clr);
}

.service-box:hover::before {
    inset: 0;
}

.service-box:hover .service-box__icon {
    background: rgba(var(--white-rgb), 0.2);
}

.service-box:hover .service-box__cont .title {
    color: var(--base-clr);
}

.product-wrapper {
    background: #f6f7fb;
    border-radius: 40px 40px 0px 0px;
    padding-top: 30px;
    padding-left: 25px;
    padding-right: 25px;
}

@media (min-width: 1200px) {
    .product-wrapper {
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1236px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 400px) {
    .product-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.filter-menu {
    margin: -10px;
    margin-bottom: 25px;
    justify-content: center;
}

@media (min-width: 992px) {
    .filter-menu {
        margin-bottom: 35px;
    }
}

.filter-menu li {
    margin: 10px;
    background: var(--body-bg);
    text-align: center;
    cursor: pointer;
    padding: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid var(--body-bg);
}

@media (min-width: 1200px) {
    .filter-menu li {
        flex-grow: 1;
    }
}

.filter-menu li.active {
    border-color: var(--base-clr);
    color: var(--base-clr);
}

@media (max-width: 1199px) {
    .filter-menu {
        margin: -5px;
        margin-bottom: 35px;
    }

    .filter-menu li {
        font-size: 14px;
        margin: 5px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        padding: 8px 20px;
    }
}

.product-box {
    border-radius: 15px;
    background: var(--white-clr);
}

.product-box__img {
    border: 5px solid var(--white-clr);
    border-radius: 15px;
    overflow: hidden;
}

.product-box__img a {
    display: block;
}

.product-box__img img {
    border-radius: 15px;
    width: 100%;
    transition: all ease 0.3s;
}

.product-box__cont {
    padding: 15px 15px 0;
}

.product-box__cont .rating {
    margin-bottom: 12px;
}

.product-box__cont .title {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-clr);
}

.product-box__cont .price-area {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 14px 0;
}

.product-box__cont .price-area .price {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.product-box__cont .cmn--btn {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.product-box__cont .cmn--btn.btn-outline {
    border-width: 1px;
    border-color: var(--border-clr);
    color: var(--title-clr);
}

.product-box__cont .cmn--btn.btn-outline:hover {
    border-color: var(--base-clr);
}

@media screen and (max-width: 400px) {
    .product-box .product-box__cont .title {
        font-size: 16px;
    }

    .product-box .product-box__cont .price .amount {
        font-size: 18px;
    }

    .product-box .product-box__cont .cmn--btn {
        padding: 8px 15px;
    }
}

.product-box:hover .product-box__img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.feature-wrapper .left-content {
    width: 100%;
    max-width: 491px;
}

.feature-wrapper .right-content {
    width: calc(100% - 491px);
    margin-top: 30px;
}

@media (min-width: 992px) {
    .feature-wrapper .right-content {
        padding-left: 18px;
        margin-top: 0;
    }

    .feature-wrapper .right-content .slider-wrapper {
        margin-right: -330px;
    }
}

.feature-wrapper .right-content .slider-wrapper {
    position: relative;
}

@media screen and (min-width: 1700px) {
    .feature-wrapper .right-content .slider-wrapper {
        margin-right: -822px;
    }
}

@media (min-width: 992px) {
    .feature-wrapper .right-content .slider-wrapper .product-box__img {
        border-width: 10px;
    }
}

@media (max-width: 991px) {
    .feature-wrapper .left-content {
        max-width: 100%;
    }

    .feature-wrapper .right-content {
        width: 100%;
    }
}

.feature-section {
    position: relative;
}

.feature-section::before {
    content: "";
    inset: 0 0 0 calc(50% + 415px);
    background: linear-gradient(271.38deg, rgba(17, 15, 34, 0.53) -48.27%, rgba(44, 41, 78, 0) 85.51%);
    position: absolute;
    z-index: 9;
}

.feature-section .owl-nav {
    position: absolute;
    z-index: 9;
    left: 395px;
    top: 50%;
    margin-top: -40px;
    display: flex;
    width: 230px;
    justify-content: space-between;
}

.feature-section .owl-nav div {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #ffffff;
    box-shadow: 0px 5px 25px rgba(49, 56, 55, 0.05);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

.feature-section .owl-nav div:hover {
    color: var(--title-clr);
}

@media (max-width: 1399px) {
    .feature-section .owl-nav {
        width: 150px;
    }

    .feature-section .owl-nav div {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        line-height: 50px;
    }
}

@media (max-width: 1199px) {
    .feature-section .owl-nav {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .feature-section .owl-nav {
        width: calc(100% + 24px);
    }
}

.client-bg {
    position: absolute;
    inset: 0 0 135px 0;
    min-height: 300px;
}

.section-header .subtitle {
    font-weight: 500;
    position: relative;
}

@media (min-width: 576px) {
    .section-header .client-header-img {
        margin-top: -10px;
        margin-left: -50px;
    }
}

@media (min-width: 1200px) {
    .section-header .client-header-img {
        margin-left: -60px;
    }
}

@media (min-width: 1400px) {
    .section-header .client-header-img {
        margin-left: -100px;
    }
}

@media (min-width: 1200px) {
    .cmn--btn.btn--lg {
        min-width: 220px;
        padding: 22px 40px;
    }
}

.client-box {
    padding: 30px 24px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #f6f7fb;
}

.client-box .quote--author {
    display: flex;
}

.client-box .quote--author img {
    width: 46px;
    height: 46px;
    border-radius: 10px !important;
}

.client-box .quote--author .quote-author {
    padding-left: 12px;
    width: calc(100% - 46px);
}

.client-box .quote-author {
    margin-top: auto;
}

.client-box .quote-author .name {
    font-size: 18px;
    font-weight: 600;
}

.client-box .rating {
    color: #f3904b;
    margin-bottom: 18px;
}

@media (min-width: 1400px) {
    .client-box .rating {
        font-size: 20px;
    }
}

.client-box .rating > span i {
    animation: pulse 3s linear infinite;
    -webkit-animation: pulse 3s linear infinite;
    -moz-animation: pulse 3s linear infinite;
}

.client-box .rating > span:nth-child(5n+1) i {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}

.client-box .rating > span:nth-child(5n+2) i {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}

.client-box .rating > span:nth-child(5n+3) i {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
}

.client-box .rating > span:nth-child(5n+4) i {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
}

.client-box .rating > span:nth-child(5n+5) i {
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
}

.client-box .quote {
    max-width: 462px;
    font-style: italic;
    font-family: var(--heading-fonts);
    font-weight: 400;
    margin-bottom: 26px;
}

@media (max-width: 1199px) {
    .client-box {
        padding: 25px 15px 25px;
    }

    .client-box .rating {
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .client-box {
        padding: 25px 20px 25px;
    }
}

.hero-content {
    padding: 50px 0;
    text-align: center;
}

.hero-content .hero-title {
    font-weight: 600;
}

.hero-content .hero-title:not(:last-child) {
    margin-bottom: 10px;
}

.hero-content .breadcrumb {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.hero-content .breadcrumb li {
    color: var(--base-clr);
}

.hero-content .breadcrumb li a {
    color: var(--title-clr);
    display: inline-flex;
    align-items: center;
}

.hero-content .breadcrumb li a::after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 10px;
    background: var(--base-clr);
    margin: 0 5px;
}

@keyframes pulse {
    0%, 100% {
        -webkit-transform: scale(1.18);
        -ms-transform: scale(1.18);
        transform: scale(1.18);
    }

    50% {
        -webkit-transform: scale(0.65);
        -ms-transform: scale(0.65);
        transform: scale(0.65);
    }
}
/*Conact US*/
.contact-wrapper {
    padding: 30px;
    border: 1px solid var(--border-clr);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.form--control {
    height: 48px;
    box-shadow: none !important;
}

.form--control:focus {
    border-color: var(--base-clr);
}

.form--control[type=number]::-webkit-inner-spin-button, .form--control[type=number]::-webkit-outer-spin-button {
    display: none;
}

textarea.form--control {
    height: 132px;
}

select.form--control {
    -webkit-appearance: button;
}

.form-label {
    margin-bottom: 10px;
    font-family: var(--heading-fonts);
    color: #121c42;
}

.contact__item {
    align-items: center;
}

.contact__item-icon {
    width: 60px;
    height: 60px;
    line-height: 56px;
    text-align: center;
    color: var(--base-clr);
    font-size: 28px;
    border: 2px solid rgba(var(--base-rgb), 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.contact__item-cont {
    width: calc(100% - 60px);
    padding-left: 20px;
}

.contact__item-cont-title {
    margin: 0;
    margin-bottom: 5px;
}

.contact__item:not(:last-child) {
    margin-bottom: 25px;
}

.mapouter {
    position: relative;
    text-align: right;
    height: 300px;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 300px;
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.product-single .thumb {
    padding: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: var(--section-bg);
    border: 1px solid var(--border-clr);
}

.product-single .thumb img {
    width: 100%;
}

.product-single .thumb .btn__grp {
    margin-top: 10px;
}

.product-single .thumb .btn__grp .cmn--btn {
    padding: 12px 25px;
}

.product-single-sidebar .single-widget {
    border: 1px solid var(--border-clr);
    padding: 20px;
}

.product-single-sidebar .single-widget:not(:last-child) {
    margin-bottom: 24px;
}

.widget-attributes li {
    display: flex;
    font-size: 14px;
}

.widget-attributes li .left {
    display: block;
    width: 120px;
    font-weight: 600;
    font-family: var(--heading-fonts);
    color: var(--title-clr);
}

.widget-attributes li .right {
    width: calc(100% - 120px);
    padding-left: 5px;
}

.widget-attributes li:not(:last-child) {
    margin-bottom: 10px;
}

.widget-attributes li a:not(:last-child)::after {
    content: ",";
}

.social-icons-dark {
    justify-content: flex-start;
}

.social-icons-dark li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.blog__item-img {
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.blog__item-img a {
    display: block;
    height: 250px;
}

.blog__item-img a img {
    height: 100%;
    object-fit: cover;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.blog__item-img img {
    width: 100%;
}

.blog__item-details p {
    margin: 0;
}

.blog__item-details p:not(:last-child) {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .blog__item-details .blog__item-img img {
        height: 450px;
    }
}

.blog__item-details .meta-post {
    margin-bottom: 20px;
    margin-top: 25px;
}

.blog__item-details .meta-post i {
    color: var(--base-clr);
}

.blog__item-details .blog__item-content-title {
    margin-bottom: 15px;
}

.blog-box {
    background: #f6f7fb;
    border-radius: 20px;
    position: relative;
}

.blog-box__img {
    overflow: hidden;
    border: 5px solid var(--white-clr);
    border-radius: 20px;
}

.blog-box__img img {
    width: 100%;
    height: 100%;
    transition: all ease 0.3s;
}

.blog-box__content {
    padding: 14px 20px 25px;
}

.blog-box__content .date {
    margin-bottom: 8px;
}

.blog-box__content .date i {
    color: var(--base-clr);
}

.blog-box__content .title {
    margin-bottom: 17px;
    transition: all ease 0.3s;
}

.blog-box__content .text {
    margin-bottom: 12px;
}

.blog-box__content .read-more i {
    margin-left: 7px;
}

.blog-box .blog-links {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-box:hover .title {
    color: var(--base-clr);
}

.blog-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.cmn--btn {
    font-family: var(--heading-fonts);
    position: relative;
    color: var(--white-clr);
    border-radius: 7px;
    width: auto;
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
    border: none;
    padding: 12px 35px;
    overflow: hidden;
    background: var(--base-clr);
    text-decoration: none;
    border: 1px solid var(--base-clr, 0.3);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-align: center;
    font-family: var(--heading-fonts);
    line-height: 120%;
}

.cmn--btn:hover, .cmn--btn.btn-outline {
    color: var(--base-clr);
    background: transparent;
    border-color: var(--base-clr);
}

.cmn--btn:hover .round-effect::before, .cmn--btn.btn-outline .round-effect::before {
    background: var(--base-clr);
}

.cmn--btn:hover .round-effect i, .cmn--btn.btn-outline .round-effect i {
    color: var(--white-clr);
}

.cmn--btn.btn-outline:hover {
    background: var(--base-clr);
    color: #fff;
}

.cmn--btn .round-effect {
    position: relative;
    margin-left: 15px;
}

.cmn--btn .round-effect::before {
    width: 25px;
    height: 25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(var(--dark-rgb), 0.3);
}

.cmn--btn .round-effect i {
    position: relative;
    z-index: 1;
}

.cmn--btn.btn-sm {
    padding: 4px 20px;
}

@media (min-width: 768px) {
    .cmn--btn {
        padding: 17px 60px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }
}

button.cmn--btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
}

button.cmn--btn:hover {
    background: var(--base-clr);
    color: var(--white-clr);
}

.btn.cmn--btn {
    outline: none;
    box-shadow: none;
}

.btn.cmn--btn:hover {
    color: #121c42;
    border-color: rgba(18, 28, 66, 0.1);
}

.video--btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    background: var(--base-clr);
}

.video--btn::after, .video--btn::before {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--base-clr);
    opacity: 0.4;
}

.video--btn::after {
    animation: inside-ripple 2s linear infinite;
    animation-delay: 1s;
}

.video--btn::before {
    animation: outside-ripple 2s linear infinite;
}

.video--btn i {
    position: relative;
    z-index: 1;
    color: #fff;
}

@keyframes inside-ripple {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        -ms-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        -ms-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        -ms-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes outside-ripple {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        -ms-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        -ms-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.btn__grp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -4px;
}

.btn__grp a {
    margin: 4px;
}

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

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

.btn--base,
.badge--base,
.bg--base {
    background-color: var(--base-clr) !important;
    border-color: var(--base-clr) !important;
}

.btn--primary,
.badge--primary,
.bg--primary {
    background-color: #0c67a3 !important;
    border-color: #0c67a3 !important;
}

.btn--secondary,
.badge--secondary,
.bg--secondary {
    background-color: #668799 !important;
    border-color: #668799 !important;
}

.btn--success,
.badge--success,
.bg--success {
    background-color: #0ead69 !important;
    border-color: #0ead69 !important;
}

.btn--danger,
.badge--danger,
.bg--danger {
    background-color: #d90429 !important;
    border-color: #d90429 !important;
}

.btn--warning,
.badge--warning,
.bg--warning {
    background-color: #ee9b00 !important;
    border-color: #ee9b00 !important;
}

.btn--warning {
    color: #192a56 !important;
}

.btn--info,
.badge--info,
.bg--info {
    background-color: #00b4d8 !important;
    border-color: #00b4d8 !important;
}

.btn--dark,
.badge--dark,
.bg--dark {
    background-color: var(--dark-clr) !important;
    border-color: var(--dark-clr) !important;
}

.btn--white,
.badge--white,
.bg--white {
    background-color: #fff !important;
    border-color: #fff !important;
}

[class*=btn--]:not(.cmn--btn) {
    color: #fff;
    font-weight: 500;
}

[class*=btn--]:not(.cmn--btn):hover {
    color: #fff;
}

.btn--warning,
.badge--warning,
.btn--white,
.badge--white {
    color: #121c42;
}

.btn--warning:hover,
.badge--warning:hover,
.btn--white:hover,
.badge--white:hover {
    color: #121c42;
}

.btn--black,
.badge--black,
.bg--black {
    background-color: #000 !important;
    border-color: #000 !important;
}

.btn--title,
.badge--title,
.bg--title {
    background-color: var(--title-clr) !important;
    border-color: var(--title-clr) !important;
}

.text--primary {
    color: #0c67a3 !important;
}

.text--secondary {
    color: #668799 !important;
}

.text--success {
    color: #0ead69 !important;
}

.text--danger {
    color: #d90429 !important;
}

.text--warning {
    color: #ee9b00 !important;
}

.text--info {
    color: #00b4d8 !important;
}

.text--dark {
    color: #192a56 !important;
}

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

.text--white p,
.text--white ul li,
.text--white ul li a,
.text--white span {
    color: #daddff;
}

.text--black {
    color: #000 !important;
}

.text--body {
    color: var(--body-clr) !important;
}

.text--base {
    color: var(--base-clr) !important;
}

.text--title {
    color: var(--title-clr) !important;
}

.text--light {
    color: #daddff !important;
}

.bg--transparent {
    background-color: transparent !important;
}

.bg--none {
    background: none !important;
}

.text--star {
    color: #facb1e;
}

a {
    text-decoration: none;
}

*[class*=border] {
    border-color: var(--border-clr) !important;
}

.badge {
    padding: 8px 15px 7px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
}

* {
    border-radius: 0 !important;
}

* * {
    border-radius: 0 !important;
}
/*# sourceMappingURL=main.css.map */

.cookie-bar-wrap {
	background: var(--dark-clr);
	color: var(--light-clr);
	padding: 50px 0;
	text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}
.cookie-bar-wrap .cmn--btn {
	margin-top: 25px;
}
