@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");

:root {
    --colorMain: #ffc107;
    --colorStrong: #ffb422;
    --colorAlt: #ffeecc;
    --colorFonts: #444444;
    --fontNoto: "Noto Kufi Arabic", sans-serif;
    --TajawalFont: "Tajawal", sans-serif;
    --diamondColor: #00695c;
    --first_pkgColor: #d08a00;
    --bronzeColor: #cd853f;
    --link: #914900;
}

html {
    scroll-padding-top: calc(100px - 30px);
}

body {
    font-family: var(--fontNoto);
}

* {
    letter-spacing: 0 !important;
}

strong,
p,
span {
    font-family: var(--TajawalFont);
}
a{
    color: var( --link);
}

a,
a:hover {
    text-decoration: none;
    -webkit-transitiontransition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

a * {
    cursor: pointer;
}

dl,
ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.error-message {
    color: red;
}

.active_li {
    color: var(--colorMain) !important;
}

.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
    display: -webkit-box !important;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.lines-1 {
    -webkit-line-clamp: 1;
}

.lines-2 {
    -webkit-line-clamp: 2;
}

.lines-3 {
    -webkit-line-clamp: 3;
}

.lines-4 {
    -webkit-line-clamp: 4;
}

.lines-5 {
    -webkit-line-clamp: 5;
}

.lines-6 {
    -webkit-line-clamp: 6;
}

.lines-7 {
    -webkit-line-clamp: 7;
}

.lines-8 {
    -webkit-line-clamp: 8;
}

.lines-9 {
    -webkit-line-clamp: 9;
}

.lines-10 {
    -webkit-line-clamp: 10;
}

.lines-11 {
    -webkit-line-clamp: 11;
}

.lines-12 {
    -webkit-line-clamp: 12;
}

.lines-13 {
    -webkit-line-clamp: 13;
}

.lines-14 {
    -webkit-line-clamp: 14;
}

.lines-15 {
    -webkit-line-clamp: 15;
}

.coloMain {
    /* color: var(--colorMain) !important; */
    color: var(--colorMain) !important;
    text-shadow: 1px 0px 0px rgba(0, 0, 0, 1.5);



}

.btn-primary {
    background-color: var(--colorMain);
    padding: 20px 50px;
    color: var(--colorFonts);
    font-weight: bold;
    border-radius: 4px;
    border: 0;
    font-weight: 600;
    font-size: 14px;
}

.btn.active,
.btn.show,
.btn.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--colorFonts);
    border-color: var(--colorFonts);
    color: #fff;
}

.btn-wts {
    background-color: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wts:hover {
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

.bar-main {
    /* margin: 18px 0 35px; */
}

.bar.bar-big {
    height: 5px;
    width: 90px;
    background: #8b8b8b;
    margin: 20px auto;
    position: relative;
    border-radius: 30px;
    margin-right: auto;
}

.bar.bar-big::before {
    content: "";
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--colorMain);
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}

.t_center .bar.bar-big::before {
    margin: auto;
}

.t_right .bar.bar-big::before {
    left: auto;
    margin: auto;
    right: 0;
}

.section-title span {
    color: #0c5adb;
}

@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

@keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

/* $ => Header */
header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

header .btn-sign {
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-item:not(:last-child)::after {
    content: "|";
    color: #fff;
    /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

.nav-link {
    color: #fff;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--colorMain);
}

.right-actions .btn-signin {
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}

.right-actions .btn-signin.btn_reg {
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

.btn_offcanvas {
    background-color: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
}

.logo img {
    transition: 0.3s;
}

.navbar-sticky.sticky {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    background-color: #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    animation: goDown 0.5s ease-in-out forwards;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

@keyframes goDown {
    0% {
        top: -60px;
    }

    100% {
        transform: translateY(60px);
    }
}

.navbar-sticky.sticky .logo img {
    width: 100px;
}

.btn_dropdown {
    background-color: #fff;
    font-weight: bold;
}

.btn_dropdown.btn.active,
.btn_dropdown.btn.show,
.btn_dropdown.btn:active,
.btn_dropdown:hover,
.btn_dropdown:focus {
    background-color: var(--colorMain);
    border-color: var(--colorMain);
    color: var(--colorFonts);
}

.dropdown_profile .dropdown-menu {
    width: 275px;
}

.dropdown_profile .header-profile-user {
    height: 36px;
    width: 36px;
}

.dropdown_profile .menu-item {
    display: block;
    padding: 0.15rem 0;
}

.dropdown_profile .menu-item .menu-content {
    padding: 0.65rem 1rem;
}

.dropdown_profile .symbol {
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    border-radius: 0.475rem;
}

.dropdown_profile .symbol>img {
    width: 100%;
    flex-shrink: 0;
    display: inline-block;
    border-radius: 0.475rem;
}

.dropdown_profile .symbol.symbol-50px>img {
    width: 50px;
    height: 50px;
}

.dropdown_profile .badge-light-success {
    color: #17c653;
    background-color: #dfffea;
}

.dropdown_profile .badge-light-danger {
    color: #c61717;
    background-color: #e36a86be;
}

.dropdown_profile .dropdown-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    flex: 0 0 100%;
    padding: 0.5rem 1rem;
    transition: none;
    outline: 0 !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

/* # => Header */

/* $ => Home Banner */
.home-banner {
    position: relative;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    padding-top: 130px;
    z-index: 1;
}

.home-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.home-banner .logo-banner img {
    max-width: 300px;
}

.banner-content .swiper-slide div,
.banner-content h1 {
    font-size: 32px;
    line-height: 1.8;
    font-family: var(--TajawalFont);
    color: #fff;
}

.banner-form {
    margin-top: 50px;
}

.banner-form form .form-control {
    padding: 24px 70px;
    font-weight: 600;
}

.banner-form form .form-control:focus {
    z-index: initial;
}

.banner-form form .btn-primary {
    position: absolute;
    top: 5px;
    left: 4px;
}

.icon-input {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: var(--colorFonts);
}

.banner-services {
    margin-top: 80px;
}

.banner-services .item-ser {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.banner-services .item-ser:hover {
    transform: translateY(-5px) scale(1.1);
}

.banner-services .item-ser .img-ser {
    background-color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-services .item-ser .img-ser img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-services .item-ser span {
    display: block;
    font-weight: bold;
    margin: auto;
    margin-top: 10px;
    width: 80%;
    text-align: center;
}

.bannerTxt-swiper {
    padding-bottom: 2rem;
}

.bannerTxt-swiper .swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    background-color: var(--colorMain);
    opacity: 1;
}

/* # => Home Banner */

/* $ => About US */
.sec-about .about-txt p {
    font-size: 22px;
    font-weight: 500;
}

/* # => About US */

/* $ => Why Choose Us */
.sec-choosen {
    background-color: #f8f8f8;
}

.choosen-txt span {
    display: block;
    font-size: 30px;
    font-weight: 600;
}

.choosen-txt p {
    font-size: 20px;
    font-weight: 500;
}

.counter {
    display: flex;
    margin-top: 3rem;
}

.counter div {
    width: 200px;
}

.counter div strong {
    display: block;
    font-size: 40px;
    font-weight: bold;
    font-family: var(--fontNoto);
}

.counter div p {
    font-weight: 600;
}

.choosen-boxes .box {
    padding: 3rem 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.choosen-boxes .box p {
    font-size: 20px;
    font-weight: 600;
}

.choosen-boxes .row>div:nth-child(2) {
    margin-top: 5rem;
}

/* # => Why Choose Us */

/* $ => Pricing */
.sec-title {
    text-align: center;
}

.sec-title strong {
    font-family: var(--fontNoto);
    color: var(--colorFonts);
    font-weight: bold;
}

.item-price {
    border: 1px solid #eee;
    padding: 3rem 1rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.item-price .price-title {
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.item-price .price {
    display: block;
    text-align: center;
    font-size: 34px;
    color: var(--colorMain);
    margin-bottom: 2rem;
}

.item-price .price sub {
    font-size: 16px;
}

.price-content {
    padding: 0rem 3rem;
}

.price-content li {
    font-family: var(--TajawalFont);
    font-weight: 600;
    color: var(--colorFonts);
    display: block;
    margin-bottom: 16px;
}

.btn-booking {
    background-color: transparent;
    border: 1px solid var(--colorFonts);
    color: var(--colorFonts);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    display: block;
    text-align: center;
    width: 50%;
    margin: auto;
    margin-top: 2rem;
}

.btn-booking svg {
    width: 20px;
}

.btn-booking:hover {
    background-color: var(--colorMain);
    border-color: var(--colorMain);
    color: var(--colorFonts);
}

/* # => Pricing */

/* $ => Affiliate */
.sec-affiliate {
    background-color: #fff9e8;
    padding: 8rem 0;
}

.shapes_imgs img {
    position: absolute;
    z-index: -1;
    opacity: 0.7;
}

.shape_1 {
    left: 5%;
    top: 40%;
    transform: translateY(-50%);
}

.shape_2 {
    left: 60%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sec-affiliate strong.h4 {
    margin-bottom: 2rem;
}

.sec-affiliate strong.h1 {
    font-family: var(--fontNoto);
}

.affiliate-btns {
    display: flex;
    align-items: center;
}

.affiliate-btns a {
    margin: 0.5rem;
    background-color: var(--colorMain);
    padding: 20px 7px;
    border-radius: 20px;
    color: var(--colorFonts);
    font-size: 18px;
    width: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.affiliate-btns a:hover {
    background-color: var(--colorFonts);
    color: #fff;
}

.affiliate-btns a:nth-child(2) {
    background-color: var(--colorFonts);
    color: #fff;
}

.affiliate-btns a:nth-child(2):hover {
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

.affiliate-btns a i {
    transform: rotate(-35deg);
    font-size: 26px;
}

/* # => Affiliate */

/* $ => Testimonials */
.testimonials-title strong {
    margin-bottom: 1rem;
}

.section-heading p,
.testimonials-title p {
    font-family: var(--fontNoto);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #666;
}

.testimonial-item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.fa-star {
    color: #ffaa17;
}

.txt-comment p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.user-info {
    margin-top: 2rem;
}

.user-info .user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.user-info .user-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-info .user-name span {
    font-size: 13px;
    font-weight: 600;
    color: var(--colorMain);
}

.navs-arrows {
    /* position: absolute; */
    bottom: 0px;
    left: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navs-arrows>div {
    position: absolute;
    color: #333;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: 0.3s;
}

.navs-arrows .swiper-button-next:after,
.navs-arrows .swiper-button-prev:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;

    font-size: 24px;
}

.navs-arrows .swiper-button-next:after {
    content: "\f178";
}

.navs-arrows .swiper-button-prev:after {
    content: "\f177";
}

.navs-arrows>div:hover {
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: auto;
    left: 10px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    right: 10px;
    left: auto;
}

/* # => Testimonials */

/* $ => Subscribe */
.sec-subscribe {
    padding: 4rem 0;
}

.box-subscribe {
    background-color: rgb(245 194 41 / 30%);
    width: 80%;
    margin: auto;
    padding: 4rem 10rem;
    border-radius: 20px 130px 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.box-subscribe .title {
    color: var(--colorFonts);
    font-weight: 600;
    text-align: center;
    font-size: 2rem;
    line-height: 1.6;
}

.box-subscribe .paper-plane {
    position: absolute;
    top: -25px;
    right: -25px;
    background-color: var(--colorMain);
    color: var(--colorFonts);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-subscribe .shapes img {
    filter: grayscale(1);
    opacity: 0.1;
    position: absolute;
    z-index: -1;
}

.box-subscribe .shapes img:nth-child(1) {
    left: -60px;
    top: -60px;
}

.box-subscribe .shapes img:nth-child(2) {
    right: -20px;
    bottom: -140px;
}

.subscribe-form form .form-control {
    padding-left: 120px;
}

.subscribe-form form .btn-primary {
    padding: 20px 20px;
}

/* # => Subscribe */

/* $ => Footer */
footer p,
footer ul li a {
    color: var(--colorFonts);
    padding: 0.5rem;
    font-size: 13px;
}

footer ul li a:hover {
    color: var(--colorMain);
}

footer p {
    font-weight: bold;
}

.social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-media li a {
    display: inline-block;
    margin: auto 0.3rem;
}

@media (max-width: 991.98px) {
    .social-media li a {
        margin: auto 0.2rem;
    }
}

.social-media li a i {
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .social-media li a i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

.social-media li a i.fa-facebook-f {
    background-color: #3b5998;
}

.social-media li a i.fa-x-twitter {
    background-color: #000;
}

.social-media li a i.fa-instagram {
    background-color: #e95950;
    background: radial-gradient(circle farthest-corner at 35% 90%,
            #fec564,
            transparent 50%),
        radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
        radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
        radial-gradient(ellipse farthest-corner at 20% -50%,
            #5258cf,
            transparent 50%),
        radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
        radial-gradient(ellipse farthest-corner at 60% -20%,
            #893dc2,
            transparent 50%),
        radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
        -webkit-gradient(linear, left top, left bottom, from(#6559ca), color-stop(30%, #bc318f), color-stop(50%, #e33f5f), color-stop(70%, #f77638), to(#fec66d));
    background: radial-gradient(circle farthest-corner at 35% 90%,
            #fec564,
            transparent 50%),
        radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
        radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
        radial-gradient(ellipse farthest-corner at 20% -50%,
            #5258cf,
            transparent 50%),
        radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
        radial-gradient(ellipse farthest-corner at 60% -20%,
            #893dc2,
            transparent 50%),
        radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
        linear-gradient(#6559ca,
            #bc318f 30%,
            #e33f5f 50%,
            #f77638 70%,
            #fec66d 100%);
}

.social-media li a i.fa-linkedin-in {
    background-color: #007bb5;
}

.social-media li a i.fa-youtube {
    background-color: #e95950;
}

.social-media li a i.fa-tiktok {
    background-color: #010101;
}

.social-media li a i.fa-snapchat {
    background-color: #ffcd36;
}

.social-icons a {
    border: 1px solid #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    font-size: 11px;
}

.social-icons a:hover {
    transform: translateY(-1px);
}

.social-icons a.linkedin {
    border-color: #0072b1;
    color: #0072b1;
}

.social-icons a.linkedin:hover {
    background-color: #0072b1;
    color: #fff;
}

.social-icons a.facebook-f {
    border-color: #3b5998;
    color: #3b5998;
}

.social-icons a.facebook-f:hover {
    background-color: #3b5998;
    color: #fff;
}

.social-icons a.youtube {
    border-color: #983b3b;
    color: #850404;
}

.social-icons a.youtube:hover {
    background-color: #b41616;
    color: #fff;
}

.social-icons a.tiktok {
    border-color: #141414;
    color: #2c2b2b;
}

.social-icons a.tiktok:hover {
    background-color: #010101;
    color: #fff;
}

.social-icons a.behance {
    border-color: #141414;
    color: #2c2b2b;
}

.social-icons a.behance:hover {
    background-color: #010101;
    color: #fff;
}

.social-icons a.whatsapp {
    border-color: #014f1d;
    color: rgb(8, 96, 20);
}



.social-icons a.whatsapp:hover {
    background-color: #014f1d;
    color: #fff;
}


.social-icons a.twitter {
    border-color: #020202;
    color: #020202;
}

.social-icons a.twitter:hover {
    background-color: #020202;
    color: #fff;
}

.social-icons a.instagram {
    border-color: #e95950;
    color: #e95950;
}

.social-icons a.instagram:hover {
    background-color: #e95950;
    color: #fff;
    background: radial-gradient(circle farthest-corner at 35% 90%,
            #fec564,
            transparent 50%),
        radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
        radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
        radial-gradient(ellipse farthest-corner at 20% -50%,
            #5258cf,
            transparent 50%),
        radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
        radial-gradient(ellipse farthest-corner at 60% -20%,
            #893dc2,
            transparent 50%),
        radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
        linear-gradient(#6559ca,
            #bc318f 30%,
            #e33f5f 50%,
            #f77638 70%,
            #fec66d 100%);
}

/* # => Footer */

.w_30px {
    width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .card_left_info .card-body {
        padding: 10px;
    }

    .card_left_info strong.h5 {
        font-size: 16px;
    }

    .card_left_info p.small {
        font-size: 12px;
        width: 100%;
        font-weight: 600;
    }

    .card_left_info .w_30px {
        width: 16px;
        font-size: 10px;
    }

    .card_left_info .btn {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .card_left_info {
        margin-bottom: 2rem;
    }

    .card_left_info .map_cards {
        display: flex;
    }

    .card_left_info .map_cards .card {
        margin: 5px;
    }
}

@media (max-width: 600px) {
    .card_left_info {
        margin-bottom: 2rem;
    }

    .card_left_info .map_cards {
        display: block;
    }

    .card_left_info .map_cards .card {
        margin: 5px;
    }
}

/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/

/* $ => Customer Profile */
.profile-top {
    position: relative;
}

.cover-img {
    height: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.cover-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9;
}

.cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-image-info {
    background-color: #fff;
    margin-top: -50px;
    z-index: 1;
    padding: 1.5rem 1.5rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 140px;
    height: 140px;
    /* position: absolute; */
    /* bottom: -100px;
  right: 0; */
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* margin-top: -60px; */
}

.profile-image .name-profile {
    display: block;
    flex: 0 0 100%;
}

.profile-links ul li a {
    padding: 1rem;
    font-size: 13px;
    color: var(--colorFonts);
    display: inline-block;
    font-weight: bold;
    border-bottom: 3px solid transparent;
}

.profile-links ul li a.active,
.profile-links ul li a:hover {
    color: var(--colorFonts);
    border-color: var(--colorMain);
    background-color: var(--colorFonts);
    color: var(--colorMain);
}

.user-online {
    background-color: #198754;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #f1f1f4;
    border-color: var(--bs-body-bg);
    position: absolute;
    bottom: 0;
    left: 20px;
    transform: translate(-50%, -50%);
}

.box-visited {
    border: 1px dashed #ddd;
    padding: 5px 20px;
    display: inline-block;
}

.profile-box-content {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

/********************************************/

.branches .card .card-header {
    background-color: transparent;
}

.branches .card .card-header h2 {
    font-size: 20px;
}

.branch-map iframe {
    width: 100% !important;
    height: 200px !important;
}

/********************************************/

.profile-service {
    border: 1px solid #ddd;
    color: var(--colorFonts);
    cursor: pointer;
    position: relative;
    height: 100%;
    transition: 0.1s;
}

.profile-services .mb-4 {
    margin-bottom: 4.5rem !important;
}

.profile-service:hover {
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.profile-service .img {
    border-bottom: 1px solid #ddd;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.profile-service .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.profile-service:hover .img img {
    transform: scale(1.2) rotate(3deg);
}

.profile-service .img .location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--colorMain);
    color: var(--colorFonts);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.has_discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f50963;
    color: #fff;
    padding: 2px 5px;
}

.ser_info {
    padding: 1rem;
}

.ser_info span {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.ser_info .title_profile-service {
    display: block;
    color: var(--colorFonts);
    font-weight: bold;
    margin-bottom: 10px;
    transition: 0.3s;
}

.profile-service:hover .ser_info .title {
    color: var(--colorMain);
}

.ser_info .price {
    font-size: 24px;
    margin-bottom: 16px;
}

.ser_info del {
    color: #959595;
    font-weight: 400;
    font-size: 14px;
}

del {
    /* color: #f50963; */
    /* color: currentColor; */
    color: #000;
    opacity: 0.9;
}

.btn-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--colorStrong);
    color: var(--colorFonts);
    padding: 2px 5px;
    font-weight: 600;
    font-size: 13px;
}

.btn-edit.free_shiopp {
    background-color: #f5c229;
    color: var(--colorFonts);
    font-weight: bold;
    font-size: 11px;
    padding: 5px 6px 5px 6px;
    border-radius: 0px;
}

.free_shiopp svg {
    width: 40px;
    height: 40px;
}

.profile-service .btn {
    padding: 8px;
    border: 0;
    font-size: 13px;
}

.profile-service .btn.btn_floating {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    border-radius: 0;
    transition: all 0.2s;
    opacity: 0;
}

.profile-service:hover .btn.btn_floating {
    bottom: -35.5px;
    opacity: 1;
}

.tippy-box {
    font-size: 12px;
}

#imagePreviewContainer {
    margin-top: 20px;
    display: none;
}

#imagePreviewContainer .img-item {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

#imagePreviewContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

#imagePreviewContainer .img-item:hover img {
    opacity: 1;
}

#imagePreviewContainer button {
    background-color: tomato;
    color: currentColor;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    outline: unset;
    border-radius: 50%;
}

/********************************************/

#viewDetails .btn-close {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

#viewDetails .modal-body {
    border-radius: 0;
    padding: 40px;
}

.page-service-details .swiper-slide,
.modalViewDetails .swiper-slide {
    background-size: cover;
    background-position: center;
    background-color: #f7f7f7;
}

.galleryBig {
    width: 100%;
    height: 520px;
}

.galleryBig {
    margin-bottom: 3rem;
}

.galleryBig .img_prod_popup {
    border: 1px solid #eee;
    height: 480px;
}

.galleryBig .swiper-horizontal>.swiper-pagination-bullets,
.galleryBig .swiper-pagination-bullets.swiper-pagination-horizontal,
.galleryBig .swiper-pagination-custom,
.galleryBig .swiper-pagination-fraction {
    bottom: 8px;
}

.galleryBig .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #000;
    opacity: 0.2;
}

.galleryBig .swiper-pagination-bullet-active {
    background-color: var(--colorMain);
    opacity: 1;
}

.galleryThump {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: 5px;
}

.galleryThump .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.galleryThump .swiper-slide-thumb-active {
    opacity: 1;
}

.modalViewDetails .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-details .play_btn {
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    font-size: 24px;
    width: 50px;
    height: 50px;
    left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    transition: 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--colorFonts);
    font-size: 1rem;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--colorMain);
    border-color: var(--colorMain);
    color: var(--colorFonts);
}

[dir="rtl"] .galleryBig .swiper-button-next {
    right: auto;
    left: 10px;
}

.galleryBig .swiper-button-next {
    right: 10px;
    left: auto;
}

[dir="rtl"] .galleryBig .swiper-button-prev {
    right: 10px;
    left: auto;
}

.galleryBig .swiper-button-prev {
    right: auto;
    left: 10px;
}

.fancybox__container {
    z-index: 9999;
}

/*******************************************/

.table> :not(caption)>*>* {
    border: 1px dashed #e8e8e8;
    border-left: 0;
    border-right: 0;
}

.table thead th {
    border-top: 0;
}

.status_item {
    border: 1px solid currentColor;
    padding: 5px 16px;
    border-radius: 30px;
    font-weight: 500;
}

.activated {
    color: #09d53e;
}

.inactive {
    color: #e91e63;
}

[data-fancybox] {
    cursor: zoom-in;
}

.pagination_custom {
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination_custom {
    direction: rtl;
}

.pagination_custom .pages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: auto;
}

.pagination_custom .page-number {
    cursor: pointer;
    background-color: white;
    color: #000;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    font-size: 1em;
    margin: auto 2px;
}

.pagination_custom .page-number:hover,
.pagination_custom .active {
    background-color: var(--colorMain);
}

.pagination_custom button {
    width: 120px;
    padding: 8px 16px;
    background-color: #ffffff00;
    color: #000;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination_custom button:hover {
    color: var(--colorMain);
}

.pagination_custom button:disabled {
    background-color: #ffffff00;
    color: #ccc;
    cursor: not-allowed;
}

.pagination_custom #prevPage {}

.pagination_custom #nextPage {}

.pagination_custom .arrow {
    font-size: 1.2em;
    width: auto;
}

.pagination_custom .nav-text {
    font-size: 0.7em;
    letter-spacing: 0.3em;
}

/* # => Customer Profile */

/* $ => Register & Login & Forgot Password */
.banner-page {
    background-color: #222;
    height: 92.14px;
}

.page-register {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.page-register::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.login_wrapper {
    background: var(--tp-common-white);
    box-shadow: 0 30px 60px #03041c1a;
    padding: 50px 85px 55px;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-input {
    position: relative;
}

.form-control {
    border-radius: 4px;
    border: 1px solid #eaeaef;
    color: #03041c;
    font-size: 14px;
    font-weight: 500;
    padding: 1rem;
}

.form-input .form-control::placeholder,
.form-control::placeholder {
    font-size: 14px;
    color: #84848b;
}

.form-control:focus {
    box-shadow: unset;
    border-color: var(--colorMain);
}

.form-input .form-control {
    padding-right: 50px;
    padding-left: 50px;
}

.form-input .icon {
    position: absolute;
    top: 14px;
    right: 20px;
    z-index: 5;
    right: 20px;
}

[dir="rtl"] .form-input .input-group .btn {
    left: auto;
    right: 20px;
}

.form-input .icon svg {
    width: 1.1em;
    height: 1.1em;
}

.form-input .icon.mobile_ico svg {
    width: 1.5em;
    height: 1.5em;
}

.form-input .input-group .btn {
    border-radius: 0;
    border: 0;
    padding: 0;
    margin: 0;
    border-color: transparent !important;
    color: #777;
    position: absolute;
    top: 14px;
    right: 20px;
    z-index: 5;
}

.input-group .btn {
    z-index: 1;
}

[dir="rtl"] .form-input .input-group .btn {
    right: auto;
    left: 20px;
}

.login_social-header {
    color: var(--colorFonts);
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    padding: 0 10px;
    position: relative;
    text-align: center;
}

.login_social-header:after,
.login_social-header:before {
    background-color: var(--colorFonts);
    content: "";
    height: 1px;
    left: 100%;
    position: absolute;
    top: 10px;
    width: 30px;
}

.login_social-header:before,
[dir="rtl"] .login_social-header:after,
[dir="rtl"] .login_social-header:before {
    left: auto;
    right: 100%;
}

[dir="rtl"] .login_social-header:before {
    left: 100%;
    right: auto;
}

.login_social-item a {
    background: #fff;
    border: 1px solid #eaeaef;
    color: var(--colorFonts);
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-right: 5px;
    padding: 11px 25px;
}

[dir="rtl"] .login_social-item a {
    margin-left: 5px;
    margin-right: 0;
}

@media (max-width: 575px) {
    .login_social-item a {
        margin-right: 0;
        width: 100%;
    }

    [dir="rtl"] .login_social-item a {
        margin-left: 0;
    }
}

.login_social-item a:last-child {
    margin-right: 0;
}

[dir="rtl"] .login_social-item a:last-child {
    margin-left: 0;
}

.login_social-item a .login-social-icon {
    margin-right: 3px;
}

[dir="rtl"] .login_social-item a .login-social-icon {
    margin-left: 3px;
    margin-right: 0;
}

.login_social-item a .login-social-icon svg {
    transform: translateY(-2px);
}

.login_social-item a:hover {
    border-color: var(--tp-theme-1);
}

.have_account {
    color: var(--colorFonts);
    text-align: center;
    font-weight: bold;
}

.have_account a {
    color: var(--colorMain);
    font-weight: bold;
}

/* # => Register & Login & Forgot Password */

/* $ => Services */
.service-serch-form .form-control {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-serive {
    /* border: 1px solid #ddd; */
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: var(--colorFonts);
    font-weight: 600;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-serive:hover {
    transform: translateY(-5px);
    color: var(--colorMain);
}

.img-card {
    height: 100px;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-serive strong {
    font-weight: 600;
}

/* $=> Swiper Navs */
.swiper-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.swiper-navs .next_btn,
.swiper-navs .prev_btn {
    position: static;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0 1rem;
    color: var(--colorFonts);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0;
}

.swiper-navs .next_btn::after,
.swiper-navs .prev_btn::after {
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-size: 16px;
    font-weight: bold;
}

.swiper-navs .next_btn:hover,
.swiper-navs .prev_btn:hover {
    background-color: unset !important;
    color: var(--colorMain) !important;
}

.swiper-navs .prev_btn::after {
    content: "prev";
}

.swiper-navs .next_btn::after {
    content: "next";
}

/* #=> Swiper Navs */

/* === Title === */
.title_block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.title_block h4 {
    margin: 0;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .title_block h4 {
        font-size: 18px;
    }
}

/* # => Services */

/*
  START => Sidebar Filter
*/
.sidebar-filter {
    border: 1px solid #ddd;
    padding: 10px;
}

@media (max-width: 991.98px) {
    .sidebar-filter {
        height: auto;
        border: 0;
        padding: 0;
    }

    .sidebar-filter .blocks {
        overflow-y: scroll;
        height: 100%;
    }
}

.sidebar-filter .blocks .block-filtering>span {
    font-size: 12px;
    background-color: #dae4ff;
    font-weight: 600;
    padding: 3px 5px;
    border-radius: 10px;
    color: var(--colorFonts);
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    display: inline-block;
}

.sidebar-filter .blocks .block-filtering>span:hover {
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

.sidebar-filter .blocks .block-filtering>span:hover i {
    color: #000;
}

.sidebar-filter .blocks .block-title {
    margin: 14px 0;
}

.sidebar-filter .blocks .block-title h6 {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--colorFonts);
    font-family: var(--TajawalFont);
    font-size: 14px;
}

.sidebar-filter .blocks .form-check {
    /*padding-right: 2em;*/
    padding-bottom: 0.5rem;
}

.sidebar-filter .blocks .form-check:last-child {
    padding-bottom: 0;
}

.sidebar-filter .blocks a,
.sidebar-filter .blocks .form-check label {
    color: var(--colorFonts);
    font-weight: 500;
    font-family: var(--TajawalFont);
    font-size: 16px;
    display: block;
}

.sidebar-filter .blocks a,
.sidebar-filter .blocks .form-check {
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.sidebar-filter .blocks a:last-child,
.sidebar-filter .blocks .form-check:last-child label {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar-filter .blocks a:hover {
    color: var(--colorMain);
}

.sidebar-filter .blocks .form-check .form-check-input {
    margin-left: -2em;
    width: 1.3em;
    height: 1.3em;
    margin-top: 0em;
    background-color: var(--colorMain);
    border-color: var(--colorMain);
    color: var(--colorFonts);
}

.sidebar-filter .blocks .input-group .btn {
    z-index: 5;
}

.filter-sorts {
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 575.98px) {
    .filter-sorts {
        padding: 1rem 0rem;
    }
}

.filter-sorts .items_founded {
    font-weight: 600;
    color: var(--colorFonts);
}

.filter-sorts .items_founded span {
    color: var(--colorMain);
}

.filter-sorts .dropdown:not(:last-child) {
    margin-left: 1rem;
}

@media (max-width: 575.98px) {
    .filter-sorts .dropdown:not(:last-child) {
        margin-left: 0.2rem;
    }
}

.filter-sorts .dropdown .dropdown-toggle {
    color: var(--colorFonts);
    font-weight: 600;
    border: 1px solid var(--colorFonts);
    padding: 6px 8px;
    border-radius: 4px;
}

@media (max-width: 575.98px) {
    .filter-sorts .dropdown .dropdown-toggle {
        font-weight: 700;
        font-size: 10px;
    }
}

.filter-sorts .toggle_filter {
    display: none;
    font-weight: 700;
    cursor: pointer;
    color: var(--colorFonts);
    font-weight: 600;
    border: 1px solid var(--colorFonts);
    padding: 5px 8px;
    border-radius: 4px;
    background-color: transparent;
}

.filter-sorts .toggle_filter:hover {
    color: var(--colorMain);
}

.filter-sorts .toggle_filter i {
    font-size: 16px;
}

@media (max-width: 575.98px) {
    .filter-sorts .toggle_filter i {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .filter-sorts .toggle_filter {
        display: block;
    }
}

/* //END => Sidebar Filter */

/* $ => Breadcrumb */
.breadcrumb-page {
    padding-top: 5rem;
    padding-bottom: 1rem;
    background: #fff;
    background-color: #111;
}

.breadcrumb-page hr {
    border-color: #707070;
}

.breadcrumb-page h1 {
    display: block;
    font-size: 25px;
    color: var(--colorMain);
    line-height: 1.5;
}

.breadcrumb-page ul {
    display: flex;
}

.breadcrumb-page ul li {
    color: #ddd;
}

.breadcrumb-page ul li a {
    color: #ddd;
    font-size: 12px;
}

.breadcrumb-page ul li a span {}

/* # => Breadcrumb */

/* $ => Service Details */
.user-info-column {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
}

.user_info .profile-image {
    width: 70px;
    height: 70px;
}

.user_info .profile-image .user-online {
    bottom: -5px;
    left: auto;
    right: -15px;
}

.user_info .name-profile .name {
    color: var(--colorFonts);
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.user_info .name-profile:hover .name {
    color: var(--colorMain);
}

.user_info .name-profile .sub_title {
    font-size: 12px;
    color: var(--colorFonts);
}

.user_info .stars-rates i {
    font-size: 10px;
}

.user_info .btn-primary {
    background-color: transparent;
    border: 1px solid var(--colorFonts);
    padding: 5px 10px;
    color: var(--colorFonts);
    font-weight: bold;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
}

.user_info .btn-primary:hover {
    background-color: var(--colorMain);
    color: var(--colorFonts);
    border-color: var(--colorMain);
}

.service-details .swiper-slide {
    background-color: #f7f7f7;
}

.service-details .service-gallery .swiper-slide {
    height: 500px;
}

.service-details .service-gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content p {}

.service-content strong {}

.service-content ul {
    margin: 1rem auto;
}

.service-content li {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

/* # => Service Details */

/* $ => Blogs */
.item-blog .img-blog {
    display: block;
    height: 250px;
    overflow: hidden;
}

.item-blog img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.item-blog:hover img {
    opacity: 0.8;
}

.info-blog {
    background-color: #fff;
    border: 1px solid #eee;
    border-top: 0;
}

.info-blog .date {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

.item-blog a.blog-title {
    display: block;
    color: #444;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.item-blog a.blog-title:hover {
    color: var(--colorMain);
}

.item-blog p {
    font-size: 15px;
    margin: 0;
}

.blog-details h1 {
    font-size: 26px;
    font-weight: 600;
}

.blog-details .date {
    color: #444;
    font-weight: 600;
    font-size: 15px;
}

.blog-details .txt h4 {
    margin-top: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

.blog-details .txt strong {
    margin-bottom: 10px;
    color: #444;
}

.blog-details .txt p {
    font-weight: 600;
}

.blog-details .txt ul li {
    padding-bottom: 5px;
    color: #444;
    font-weight: 600;
}

blockquote {
    background: #f9f9f9;
    border-right: 6px solid #ccc;
    margin: 1.5em 10px;
    padding: 2em 10px;
    font-weight: 600;
    line-height: 1.8;
}

blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    color: #ccc;
    font-size: 3em;
    line-height: 0.1em;
    margin-left: 0.25em;
    vertical-align: -0.4em;
    opacity: 0.4;
}

blockquote p {
    display: inline;
}

.social-share a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 29px;
    text-align: center;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #232323;
    background-color: transparent;
    border-radius: 100%;
}

.social-share a.facebook-f:hover {
    border-color: #3b5998;
    color: #3b5998;
}

.social-share a.twitter:hover {
    border-color: #020202;
    color: #020202;
}

.news-slider .swiper-slide a {
    display: block;
    height: 350px;
}

.news-slider .swiper-slide a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: zoom-in;
}

.news-slider .swiper-slide:hover a img {
    opacity: 0.5;
}

.news-slider .swiper-button-next,
.news-slider .swiper-button-prev {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    z-index: 1;
    color: var(--colorMain);
    transition: 0.4s;
}

.news-slider .swiper-button-next {
    left: -50px;
}

.news-item-slider .swiper-button-prev,
.news-slider .swiper-button-prev,
.project-slider .swiper-button-prev {
    right: -50px;
}

.news-slider .swiper-button-next:hover,
.news-slider .swiper-button-prev:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.news-slider .swiper-button-next:after,
.news-slider .swiper-button-prev:after {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: none;
    font-size: 20px;
}

.news-slider .swiper-button-next:after {
    content: "\f060";
}

.news-slider .swiper-button-prev:after {
    content: "\f061";
}

.news-slider:hover .swiper-button-next {
    left: 10px;
}

.news-slider:hover .swiper-button-prev {
    right: 10px;
}

.missing-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    border-radius: 6px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.missing-badge img {
    max-width: 50px;
}

#typed {
    min-height: 60px;
}

.typed-cursor {
    color: #fff;
}

.sidebar-blog {
    padding-left: 1.5rem;
    border-left: 1px solid #f0f0f0;
}

[dir="rtl"] .sidebar-blog {
    padding-left: 0;
    padding-right: 1.5rem;
    border-left: 0;
    border-right: 1px solid #f0f0f0;
}

.widget_search {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.widget-blog {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.widget-blog h5 {
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.widget-blog p {
    color: #777777;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
}

.widget-blog ul li {
    padding-left: 10px;
    position: relative;
    color: #777777;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.widget-blog ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #555555;
}

.news-item .news-info {
    padding: 0 5px;
}

.news-item a.img_news {
    height: 50px;
    overflow: hidden;
}

.news-item a.img_news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item .news-info a {
    color: #555555;
    letter-spacing: 0.3px;
    font-weight: 500;
    font-size: 12px;
}

.news-item .news-info span {
    display: block;
    padding-top: 3px;
    color: #777777;
    font-size: 12px;
    line-height: 20px;
}

/* # => Blogs */

/* $ => Page Title */
.page-title {
    padding: 1rem 0;
    background-color: #f7f7f7;
}

.page-title h1 {
    font-family: var(--TajawalFont);
    font-weight: bold;
    margin: 0;
    font-size: 1.5rem;
}

ul.list_bredcrumb,
.page-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.list_bredcrumb>li,
.page-title ul li {
    display: inline-block;
    line-height: normal;
    font-weight: 500;
    font-size: 0.8rem;
    color: #6f6f6f;
}

ul.list_bredcrumb>li {
    color: #ddd;
}

ul.list_bredcrumb>li:not(:last-child)::after,
.page-title ul>li:not(:last-child)::after {
    content: "";
    font-family: Font Awesome\5 Free;
    display: inline-block;
    vertical-align: baseline;
    opacity: 0.6;
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
    margin: 0 0.5rem;
}

ul.list_bredcrumb>li:not(:last-child)::after {
    background-color: #fff;
}

ul.list_bredcrumb li a,
.page-title ul li a {
    color: #6f6f6f;
    font-weight: 600;
    font-size: 0.8rem;
}

ul.list_bredcrumb li a {
    color: #fff;
}

ul.list_bredcrumb li a:hover,
.page-title ul li a:hover {
    color: var(--colorMain);
}

/* # => Page Title */

/* $ => Packages */
.list-pkg-detail {
    max-width: 90%;
}

@media (max-width: 991.98px) {
    .list-pkg-detail {
        max-width: 100%;
    }
}

.list-pkg-detail li {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #212529;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 2px dashed var(--colorMain);
    border-radius: 0.375rem;
    padding: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-bottom: 1rem;
    margin-right: 20px;
}

.list-pkg-detail li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m10.5 13.4l4.9-4.9q.275-.275.7-.275t.7.275q.275.275.275.7t-.275.7l-5.6 5.6q-.3.3-.7.3t-.7-.3l-2.6-2.6q-.275-.275-.275-.7t.275-.7q.275-.275.7-.275t.7.275l1.9 1.9Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

.list-pkg-detail li strong {
    display: block;
    color: var(--colorFonts);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.list-pkg-detail li p {
    margin: 0 !important;
    font-weight: 500;
}

/* $1 */
.demo0 .pricingTable {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease 0s;
}

.demo0 .pricingTable:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8) inset, 0 0 10px rgba(0, 0, 0, 0.8);
}

.demo0 .pricingTable .price-header {
    position: relative;
    height: 220px;
    z-index: 1;
}

.demo0 .pricingTable .price-header strong {
    color: #fff;
    margin-top: -30px;
}

.demo0 .pricingTable .price-header strong sub {
    font-size: 15px;
}

.demo0 .pricingTable .price-header svg {
    display: block;
    margin-left: -1px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.demo0 .pricingTable .pricing-content {
    padding: 50px 0 30px;
    position: relative;
}

.demo0 .pricingTable .title {
    font-size: 35px;
    font-weight: 600;
    color: #ae003d;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.demo0 .pricingTable .pricing-content ul {
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
}

.demo0 .pricingTable .pricing-content ul li {
    font-size: 18px;
    color: var(--colorFonts);
    line-height: 40px;
    text-transform: capitalize;
}

.demo0 .pricingTable .pricingTable-signup {
    display: inline-block;
    padding: 8px 50px;
    background: #ae003d;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease 0s;
}

.demo0 .pricingTable:hover .pricingTable-signup {
    box-shadow: 0 0 10px #ae003d;
}

.demo0 .pricingTable .pricingTable-signup:hover {
    color: #ae003d;
    background: #fff;
    box-shadow: 0 0 10px #ae003d, 0 0 10px #000 inset;
}

.demo0 .pricingTable.diamond_pkg .title {
    color: var(--diamondColor);
}

.demo0 .pricingTable.diamond_pkg .pricingTable-signup {
    background: var(--diamondColor);
}

.demo0 .pricingTable.diamond_pkg:hover .pricingTable-signup {
    box-shadow: 0 0 10px var(--diamondColor);
}

.demo0 .pricingTable.diamond_pkg .pricingTable-signup:hover {
    color: var(--diamondColor);
    background: #fff;
    box-shadow: 0 0 10px var(--diamondColor), 0 0 10px #000 inset;
}

.demo0 .pricingTable.diamond_pkg .price-header svg path {
    fill: var(--diamondColor);
}

.demo0 .pricingTable.first_pkg .title {
    color: var(--first_pkgColor);
}

.demo0 .pricingTable.first_pkg .pricingTable-signup {
    background: var(--first_pkgColor);
}

.demo0 .pricingTable.first_pkg:hover .pricingTable-signup {
    box-shadow: 0 0 10px var(--first_pkgColor);
}

.demo0 .pricingTable.first_pkg .pricingTable-signup:hover {
    color: var(--first_pkgColor);
    background: #fff;
    box-shadow: 0 0 10px var(--first_pkgColor), 0 0 10px #000 inset;
}

.demo0 .pricingTable.first_pkg .price-header svg path {
    fill: var(--first_pkgColor);
}

.demo0 .pricingTable.third_pkg .title {
    color: var(--bronzeColor);
}

.demo0 .pricingTable.third_pkg .pricingTable-signup {
    background: var(--bronzeColor);
}

.demo0 .pricingTable.third_pkg:hover .pricingTable-signup {
    box-shadow: 0 0 10px var(--bronzeColor);
}

.demo0 .pricingTable.third_pkg .pricingTable-signup:hover {
    color: var(--bronzeColor);
    background: #fff;
    box-shadow: 0 0 10px var(--bronzeColor), 0 0 10px #000 inset;
}

.demo0 .pricingTable.third_pkg .price-header svg path {
    fill: var(--bronzeColor);
}

@media only screen and (max-width: 990px) {
    .demo0 .pricingTable {
        margin-bottom: 30px;
    }
}

/* #1 */

/* $2 */
:root {
    --pricingTable-second_pkg: #ffd333;
    --pricingTable-purple: #be4f91;
    --pricingTable-blue: #0192af;
}

.demo1 .pricingTable {
    padding-bottom: 10px;
    background: #fff;
    border-bottom: 15px solid var(--pricingTable-second_pkg);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.demo1 .pricingTable:before {
    content: "";
    width: 100%;
    height: 350px;
    background: var(--pricingTable-second_pkg);
    position: absolute;
    top: -150px;
    left: 0;
    transform: skewY(-20deg);
}

.demo1 .pricingTable .pricingTable-header {
    padding: 20px 20px 60px;
    text-align: left;
    position: relative;
}

.demo1 .pricingTable .title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.demo1 .pricingTable .sub-title {
    display: block;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.demo1 .pricingTable .year {
    width: 80px;
    height: 55px;
    background: #fff;
    padding: 7px 0;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--pricingTable-second_pkg);
    text-align: center;
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 1;
}

.demo1 .pricingTable .year:before,
.demo1 .pricingTable .year:after {
    content: "";
    width: 57px;
    height: 57px;
    background: #fff;
    position: absolute;
    top: -28px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%) scaleY(0.5) rotate(45deg);
}

.demo1 .pricingTable .year:after {
    top: auto;
    bottom: -28px;
}

.demo1 .pricingTable .price-value {
    display: inline-block;
    width: 170px;
    height: 110px;
    padding: 15px;
    border: 2px solid var(--pricingTable-second_pkg);
    border-top: none;
    border-bottom: none;
    position: relative;
}

.demo1 .pricingTable .price-value:before,
.demo1 .pricingTable .price-value:after {
    content: "";
    width: 121px;
    height: 121px;
    border: 3px solid var(--pricingTable-second_pkg);
    border-right: none;
    border-bottom: none;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%) scaleY(0.5) rotate(45deg);
}

.demo1 .pricingTable .price-value:after {
    border-top: none;
    border-left: none;
    border-bottom: 3px solid var(--pricingTable-second_pkg);
    border-right: 3px solid var(--pricingTable-second_pkg);
    top: auto;
    bottom: -60px;
}

.demo1 .pricingTable .value {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 2px solid var(--pricingTable-second_pkg);
    border-top: none;
    border-bottom: none;
    color: var(--pricingTable-second_pkg);
    z-index: 1;
    position: relative;
}

.demo1 .pricingTable .value:before,
.demo1 .pricingTable .value:after {
    content: "";
    width: 97px;
    height: 97px;
    background: #fff;
    border: 3px solid var(--pricingTable-second_pkg);
    border-bottom: none;
    border-right: none;
    position: absolute;
    top: -48px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%) scaleY(0.5) rotate(45deg);
}

.demo1 .pricingTable .value:after {
    border-right: 3px solid var(--pricingTable-second_pkg);
    border-bottom: 3px solid var(--pricingTable-second_pkg);
    border-top: none;
    border-left: none;
    top: auto;
    bottom: -48px;
}

.demo1 .pricingTable .currency {
    display: inline-block;
    font-size: 30px;
    margin-top: 7px;
    vertical-align: top;
}

.demo1 .pricingTable .amount {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    line-height: 65px;
}

.demo1 .pricingTable .amount sub {
    font-size: 13px;
}

.demo1 .pricingTable .amount span {
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    vertical-align: top;
    margin-top: -7px;
}

.demo1 .pricingTable .month {
    display: block;
    font-size: 16px;
    line-height: 0;
}

.demo1 .pricingTable .pricing-content {
    padding: 50px 80px 0 0;
    margin-bottom: 20px;
    list-style: none;
    transition: all 0.3s ease 0s;
}

.demo1 .pricingTable .pricing-content li {
    padding: 7px 0;
    font-size: 16px;
    color: #808080;
    position: relative;
}

.demo1 .pricingTable .pricing-content li:before,
.demo1 .pricingTable .pricing-content li.disable:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    background: #98c458;
    text-align: center;
    color: #fff;
    position: absolute;
    right: -50px;
}

.demo1 .pricingTable .pricing-content li.disable:before {
    content: "\f00d";
    background: #fe6c6c;
}

.demo1 .pricingTable .pricingTable-signup {
    display: inline-block;
    width: 60%;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    font-weight: 700;
    color: var(--pricingTable-second_pkg);
    text-transform: uppercase;
    border: 2px solid var(--pricingTable-second_pkg);
    margin: 0 auto 10px;
    position: relative;
    transition: all 0.3s ease 0s;
}

.demo1 .pricingTable .pricingTable-signup:hover {
    background: var(--pricingTable-second_pkg);
    color: #fff;
}

.demo1 .pricingTable.diamond_pkg {
    border-bottom-color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg:before {
    background: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .year {
    color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .price-value {
    border-left-color: var(--diamondColor);
    border-right-color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .price-value:before {
    border-left-color: var(--diamondColor);
    border-top-color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .price-value:after {
    border-right-color: var(--diamondColor);
    border-bottom-color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .value {
    border-left-color: var(--diamondColor);
    border-right-color: var(--diamondColor);
    color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .value:before {
    border-left-color: var(--diamondColor);
    border-top-color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .value:after {
    border-right-color: var(--diamondColor);
    border-bottom-color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .pricingTable-signup {
    color: var(--diamondColor);
    border-color: var(--diamondColor);
}

.demo1 .pricingTable.diamond_pkg .pricingTable-signup:hover {
    color: #fff;
    background: var(--diamondColor);
}

.demo1 .pricingTable.first_pkg {
    border-bottom-color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg:before {
    background: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .year {
    color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .price-value {
    border-left-color: var(--first_pkgColor);
    border-right-color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .price-value:before {
    border-left-color: var(--first_pkgColor);
    border-top-color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .price-value:after {
    border-right-color: var(--first_pkgColor);
    border-bottom-color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .value {
    border-left-color: var(--first_pkgColor);
    border-right-color: var(--first_pkgColor);
    color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .value:before {
    border-left-color: var(--first_pkgColor);
    border-top-color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .value:after {
    border-right-color: var(--first_pkgColor);
    border-bottom-color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .pricingTable-signup {
    color: var(--first_pkgColor);
    border-color: var(--first_pkgColor);
}

.demo1 .pricingTable.first_pkg .pricingTable-signup:hover {
    color: #fff;
    background: var(--first_pkgColor);
}

.demo1 .pricingTable.third_pkg {
    border-bottom-color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg:before {
    background: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .year {
    color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .price-value {
    border-left-color: var(--bronzeColor);
    border-right-color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .price-value:before {
    border-left-color: var(--bronzeColor);
    border-top-color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .price-value:after {
    border-right-color: var(--bronzeColor);
    border-bottom-color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .value {
    border-left-color: var(--bronzeColor);
    border-right-color: var(--bronzeColor);
    color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .value:before {
    border-left-color: var(--bronzeColor);
    border-top-color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .value:after {
    border-right-color: var(--bronzeColor);
    border-bottom-color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .pricingTable-signup {
    color: var(--bronzeColor);
    border-color: var(--bronzeColor);
}

.demo1 .pricingTable.third_pkg .pricingTable-signup:hover {
    color: #fff;
    background: var(--bronzeColor);
}

@media only screen and (max-width: 990px) {
    .demo1 .pricingTable {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .demo1 .pricingTable:before {
        transform: skewY(-15deg);
    }

    .demo1 .pricingTable .title {
        font-size: 22px;
    }
}

/* #2 */

/* $3 */
.demo2 .pricingTable {
    padding-bottom: 100px;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.demo2 .pricingTable:before {
    content: "";
    width: 80%;
    height: 10px;
    background: #727cb6;
    margin: 0 auto;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
}

.demo2 .pricingTable .title {
    display: inline-block;
    width: 80%;
    margin: 0 0 40px 0;
    background: #727cb6;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.demo2 .pricingTable .title:before,
.demo2 .pricingTable .title:after {
    content: "";
    border-right: 10px solid #4a59ab;
    border-top: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: -10px;
}

[dir="rtl"] .demo2 .pricingTable .title:before,
[dir="rtl"] .demo2 .pricingTable .title:after {
    border-right: none;
    border-left: 10px solid #4a59ab;
    left: auto;
    right: -10px;
}

.demo2 .pricingTable .title:after {
    border-right: none;
    border-left: 10px solid #4a59ab;
    left: auto;
    right: -10px;
}

[dir="rtl"] .demo2 .pricingTable .title:after {
    border-right: 10px solid #4a59ab;
    border-left: none;
    left: -10px;
    right: auto;
}

.demo2 .pricingTable .title span {
    display: block;
    padding: 25px 0;
}

.demo2 .pricingTable .title span:after {
    content: "";
    display: block;
    width: 100%;
    height: 21px;
    position: absolute;
    bottom: -21px;
    background: linear-gradient(-45deg, transparent 75%, #727cb6 75%) 0 50%,
        linear-gradient(45deg, transparent 75%, #727cb6 75%) 0 50%;
    background-repeat: repeat-x;
    background-size: 16px;
}

.demo2 .pricingTable .pricing-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo2 .pricingTable .pricing-content li {
    font-size: 16px;
    font-weight: bold;
    color: #727cb6;
    line-height: 30px;
    margin-bottom: 20px;
    position: relative;
}

.demo2 .pricingTable .pricing-content li:last-child {
    margin-bottom: 0;
}

.demo2 .pricingTable .pricing-content li:before {
    content: "";
    width: 30px;
    height: 100%;
    background: #727cb6;
    position: absolute;
    top: 0;
    left: -10px;
}

[dir="rtl"] .demo2 .pricingTable .pricing-content li:before {
    left: auto;
    right: -10px;
}

.demo2 .pricingTable .pricing-content li:after {
    content: "";
    border-left: 15px solid #727cb6;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 0;
    left: 20px;
}

[dir="rtl"] .demo2 .pricingTable .pricing-content li:after {
    border-left: none;
    border-right: 15px solid #727cb6;
    left: auto;
    right: 20px;
}

.demo2 .pricingTable .pricing-content i {
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 6px;
    left: 0;
}

[dir="rtl"] .demo2 .pricingTable .pricing-content i {
    left: auto;
    right: 0;
}

.demo2 .pricingTable .pricing-content i:after {
    content: "";
    border-right: 10px solid #4a59ab;
    border-top: 10px solid transparent;
    position: absolute;
    top: -16px;
    left: -10px;
}

[dir="rtl"] .demo2 .pricingTable .pricing-content i:after {
    border-right: none;
    border-left: 10px solid #4a59ab;
    left: auto;
    right: -10px;
}

.demo2 .pricingTable .price-value {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #727cb6;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    bottom: -75px;
    left: 0;
    right: 0;
}

.demo2 .pricingTable .pricingTable-signup {
    display: block;
    padding: 21px 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
}

.demo2 .pricingTable .pricingTable-signup:before,
.demo2 .pricingTable .pricingTable-signup:after {
    content: "";
    width: 53%;
    height: 15px;
    background: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: rotate(20deg);
}

[dir="rtl"] .demo2 .pricingTable .pricingTable-signup:before,
[dir="rtl"] .demo2 .pricingTable .pricingTable-signup:after {
    left: auto;
    right: 0;
}

.demo2 .pricingTable .pricingTable-signup:after {
    left: auto;
    right: 0;
    transform: rotate(-20deg);
}

[dir="rtl"] .demo2 .pricingTable .pricingTable-signup:after {
    left: 0;
    right: auto;
}

.demo2 .pricingTable .amount {
    display: block;
    padding: 3px 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.demo2 .pricingTable .amount span {
    display: inline;
    font-size: 16px;
    /* border-bottom: 2px solid #fff; */
    position: relative;
    top: -8px;
}

.demo2 .pricingTable.diamond_pkg:before,
.demo2 .pricingTable.diamond_pkg .title,
.demo2 .pricingTable.diamond_pkg .price-value,
.demo2 .pricingTable.diamond_pkg .pricing-content li:before {
    background: var(--diamondColor);
}

.demo2 .pricingTable.diamond_pkg .title span:after {
    background: linear-gradient(-45deg, transparent 75%, var(--diamondColor) 75%) 0 50%,
        linear-gradient(45deg, transparent 75%, var(--diamondColor) 75%) 0 50%;
    background-size: 16px;
}

.demo2 .pricingTable.diamond_pkg .pricing-content li {
    color: var(--diamondColor);
}

.demo2 .pricingTable.diamond_pkg .pricing-content li:after {
    border-left: 15px solid var(--diamondColor);
}

[dir="rtl"] .demo2 .pricingTable.diamond_pkg .pricing-content li:after {
    border-left: none;
    border-right: 15px solid var(--diamondColor);
}

.demo2 .pricingTable.diamond_pkg .title:before,
.demo2 .pricingTable.diamond_pkg .pricing-content i:after {
    border-right: 10px solid var(--diamondColor);
}

[dir="rtl"] .demo2 .pricingTable.diamond_pkg .title:before,
[dir="rtl"] .demo2 .pricingTable.diamond_pkg .pricing-content i:after {
    border-right: none;
    border-left: 10px solid var(--diamondColor);
}

.demo2 .pricingTable.diamond_pkg .title:after {
    border-left: 10px solid var(--diamondColor);
}

[dir="rtl"] .demo2 .pricingTable.diamond_pkg .title:after {
    border-left: none;
    border-right: 10px solid var(--diamondColor);
}

.demo2 .pricingTable.first_pkg:before,
.demo2 .pricingTable.first_pkg .title,
.demo2 .pricingTable.first_pkg .price-value,
.demo2 .pricingTable.first_pkg .pricing-content li:before {
    background: var(--first_pkgColor);
}

.demo2 .pricingTable.first_pkg .title span:after {
    background: linear-gradient(-45deg, transparent 75%, var(--first_pkgColor) 75%) 0 50%,
        linear-gradient(45deg, transparent 75%, var(--first_pkgColor) 75%) 0 50%;
    background-size: 16px;
}

.demo2 .pricingTable.first_pkg .pricing-content li {
    color: var(--first_pkgColor);
}

.demo2 .pricingTable.first_pkg .pricing-content li:after {
    border-left: 15px solid var(--first_pkgColor);
}

[dir="rtl"] .demo2 .pricingTable.first_pkg .pricing-content li:after {
    border-left: none;
    border-right: 15px solid var(--first_pkgColor);
}

.demo2 .pricingTable.first_pkg .title:before,
.demo2 .pricingTable.first_pkg .pricing-content i:after {
    border-right: 10px solid var(--first_pkgColor);
}

[dir="rtl"] .demo2 .pricingTable.first_pkg .title:before,
[dir="rtl"] .demo2 .pricingTable.first_pkg .pricing-content i:after {
    border-right: none;
    border-left: 10px solid var(--first_pkgColor);
}

.demo2 .pricingTable.first_pkg .title:after {
    border-left: 10px solid var(--first_pkgColor);
}

[dir="rtl"] .demo2 .pricingTable.first_pkg .title:after {
    border-left: none;
    border-right: 10px solid var(--first_pkgColor);
}

.demo2 .pricingTable.third_pkg:before,
.demo2 .pricingTable.third_pkg .title,
.demo2 .pricingTable.third_pkg .price-value,
.demo2 .pricingTable.third_pkg .pricing-content li:before {
    background: var(--bronzeColor);
}

.demo2 .pricingTable.third_pkg .title span:after {
    background: linear-gradient(-45deg, transparent 75%, var(--bronzeColor) 75%) 0 50%,
        linear-gradient(45deg, transparent 75%, var(--bronzeColor) 75%) 0 50%;
    background-size: 16px;
}

.demo2 .pricingTable.third_pkg .pricing-content li {
    color: var(--bronzeColor);
}

.demo2 .pricingTable.third_pkg .pricing-content li:after {
    border-left: 15px solid var(--bronzeColor);
}

[dir="rtl"] .demo2 .pricingTable.third_pkg .pricing-content li:after {
    border-left: none;
    border-right: 15px solid var(--bronzeColor);
}

.demo2 .pricingTable.third_pkg .title:before,
.demo2 .pricingTable.third_pkg .pricing-content i:after {
    border-right: 10px solid var(--bronzeColor);
}

[dir="rtl"] .demo2 .pricingTable.third_pkg .title:before,
[dir="rtl"] .demo2 .pricingTable.third_pkg .pricing-content i:after {
    border-right: none;
    border-left: 10px solid var(--bronzeColor);
}

.demo2 .pricingTable.third_pkg .title:after {
    border-left: 10px solid var(--bronzeColor);
}

[dir="rtl"] .demo2 .pricingTable.third_pkg .title:after {
    border-left: none;
    border-right: 10px solid var(--bronzeColor);
}

@media only screen and (max-width: 990px) {
    .demo2 .pricingTable {
        margin-bottom: 100px;
    }
}

/* #3 */

/* $4 */
.demo3 .pricingTable {
    background: #fff;
    border: 1px solid #ddd;
    font-family: "Titillium Web", sans-serif;
    text-align: center;
    padding: 0 0 25px;
    margin: 25px 15px 0;
    transition: all 0.3s ease 0s;
    border-radius: 15px;
}

.demo3 .pricingTable:hover {
    /* box-shadow: 0 0 15px rgba(0,0,0,0.2) inset, 0 0 15px rgba(0,0,0,0.2); */
}

.demo3 .pricingTable .pricingTable-header {
    color: #fff;
    background-color: #192a56;
    padding: 25px 10px 40px;
    margin: 0 30px;
    position: relative;
    top: -20px;
    -webkit-clip-path: polygon(100% 0, 100% 60%, 50% 100%, 0 60%, 0 0);
    clip-path: polygon(100% 0, 100% 60%, 50% 100%, 0 60%, 0 0);
}

.demo3 .pricingTable .pricingTable-header:before {
    content: "";
    background-color: #28417f;
    height: 100%;
    width: 100%;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

[dir="rtl"] .demo3 .pricingTable .pricingTable-header:before {
    left: auto;
    right: 0;
}

.demo3 .pricingTable .title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.demo3 .pricingTable .month {
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
}

.demo3 .pricingTable .price-value {
    color: #192a56;
    background-color: #e7e7e7;
    padding: 70px 0 30px;
    margin-top: -42px;
    -webkit-clip-path: polygon(50% 40%, 100% 0, 100% 60%, 50% 100%, 0 60%, 0 0);
    clip-path: polygon(50% 40%, 100% 0, 100% 60%, 50% 100%, 0 60%, 0 0);
}

.demo3 .pricingTable .amount {
    font-size: 40px;
    font-weight: 700;
    line-height: 35px;
    display: inline-block;
}

.demo3 .pricingTable .amount sub {
    font-size: 14px;
}

.demo3 .pricingTable .amount-sm {
    font-size: 30px;
    vertical-align: top;
    margin-top: -10px;
    display: inline-block;
}

.demo3 .pricingTable .pricing-content {
    color: #1c1c1c;
    font-size: 18px;
    line-height: 50px;
    text-transform: uppercase;
    padding: 25px 15px;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.demo3 .pricingTable .pricing-content li i {
    color: #192a56;
    margin-right: 5px;
}

[dir="rtl"] .demo3 .pricingTable .pricing-content li i {
    margin-right: auto;
    margin-left: 5px;
}

.demo3 .pricingTable .pricingTable-signup {
    color: #fff;
    background: linear-gradient(165deg, #28417f 49%, #192a56 50%);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 20px;
    margin: 0 30px;
    display: block;
    transition: all 0.3s ease 0s;
}

.demo3 .pricingTable .pricingTable-signup:hover {
    letter-spacing: 3px;
    text-shadow: 0 0 2px #000;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.7);
}

.demo3 .pricingTable.diamond_pkg .pricingTable-header {
    background-color: var(--diamondColor);
}

.demo3 .pricingTable.diamond_pkg .pricingTable-header:before {
    background-color: var(--diamondColor);
}

.demo3 .pricingTable.diamond_pkg .price-value,
.demo3 .pricingTable.diamond_pkg .pricing-content li i {
    color: var(--diamondColor);
}

.demo3 .pricingTable.diamond_pkg .pricingTable-signup {
    background: linear-gradient(165deg,
            var(--diamondColor) 49%,
            var(--diamondColor) 50%);
}

.demo3 .pricingTable.first_pkg .pricingTable-header {
    background-color: var(--first_pkgColor);
}

.demo3 .pricingTable.first_pkg .pricingTable-header:before {
    background-color: var(--first_pkgColor);
}

.demo3 .pricingTable.first_pkg .price-value,
.demo3 .pricingTable.first_pkg .pricing-content li i {
    color: var(--first_pkgColor);
}

.demo3 .pricingTable.first_pkg .pricingTable-signup {
    background: linear-gradient(165deg,
            var(--first_pkgColor) 49%,
            var(--first_pkgColor) 50%);
}

.demo3 .pricingTable.third_pkg .pricingTable-header {
    background-color: var(--bronzeColor);
}

.demo3 .pricingTable.third_pkg .pricingTable-header:before {
    background-color: var(--bronzeColor);
}

.demo3 .pricingTable.third_pkg .price-value,
.demo3 .pricingTable.third_pkg .pricing-content li i {
    color: var(--bronzeColor);
}

.demo3 .pricingTable.third_pkg .pricingTable-signup {
    background: linear-gradient(165deg,
            var(--bronzeColor) 49%,
            var(--bronzeColor) 50%);
}

@media only screen and (max-width: 990px) {
    .demo3 .pricingTable {
        margin: 25px 0 50px;
    }
}

@media only screen and (max-width: 479px) {
    .demo3 .pricingTable .pricing-content {
        font-size: 15px;
        padding-left: 10px;
    }
}

/* #4 */

/* $5 */
.demo4 .pricingTable {
    background: #fff;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    padding: 30px 30px 70px;
    border-radius: 10px;
    box-shadow: 0 0 15px -8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.demo4 .pricingTable:before,
.demo4 .pricingTable:after {
    content: "";
    background-color: #f4f5f9;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: absolute;
    top: -213px;
    right: -213px;
    z-index: -1;
}

.demo4 .pricingTable:after {
    background-color: #fe5f85;
    height: 300px;
    width: 300px;
    top: auto;
    bottom: -210px;
    right: auto;
    left: -160px;
}

.demo4 .pricingTable .title {
    color: #1a2a3a;
    font-size: 33px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.demo4 .pricingTable .title:before {
    content: "";
    background-color: #1a2a3a;
    width: 65px;
    height: 3px;
    margin: 0 auto 20px;
    display: block;
    clear: both;
}

.demo4 .pricingTable .price-value {
    color: #fff;
    background-color: #fe5f85;
    width: 160px;
    height: 160px;
    padding: 57px 0 0;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.demo4 .pricingTable .price-value .currency {
    font-size: 35px;
    font-weight: 300;
    line-height: 35px;
    vertical-align: top;
    display: inline-block;
}

.demo4 .pricingTable .price-value .amount {
    font-size: 58px;
    font-weight: 700;
    line-height: 45px;
    display: inline-block;
}

.demo4 .pricingTable .price-value .duration {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 0 -5px;
    display: inline-block;
}

.demo4 .pricingTable .pricing-content {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
    display: inline-block;
}

.demo4 .pricingTable .pricing-content li {
    color: #888;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    padding: 0 0 0 35px;
    margin: 0 0 20px;
    position: relative;
}

.demo4 .pricingTable .pricing-content li:last-child {
    margin: 0;
}

.demo4 .pricingTable .pricing-content li:before {
    content: "\f00c";
    color: #fff;
    background-color: #fe5f85;
    font-family: "Font Awesome 5 Free";
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 0;
}

.demo4 .pricingTable .pricingTable-signup a {
    color: #fff;
    background-color: #fe5f85;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    width: 140px;
    padding: 3px 10px;
    margin: 0 auto;
    border-radius: 15px;
    border: 2px solid transparent;
    display: block;
    transition: all 0.3s ease 0s;
}

.demo4 .pricingTable .pricingTable-signup a:hover {
    color: #fe5f85;
    background-color: transparent;
    border-color: #fe5f85;
}

.demo4 .pricingTable.blue:after {
    background-color: #00ccff;
}

.demo4 .pricingTable.blue .price-value {
    background-color: #00ccff;
}

.demo4 .pricingTable.blue .pricing-content li:before {
    background-color: #00ccff;
}

.demo4 .pricingTable.blue .pricingTable-signup a {
    background-color: #00ccff;
}

.demo4 .pricingTable.blue .pricingTable-signup a:hover {
    color: #00ccff;
    background-color: transparent;
    border-color: #00ccff;
}

@media only screen and (max-width: 990px) {
    .demo4 .pricingTable {
        margin-bottom: 30px;
    }
}

/* #5 */

/* $6 */
:root {
    --main-color: #22a6b2;
    --white: #fff;
}

.demo5 .pricingTable {
    background: #fff;
    font-family: "Lato", sans-serif;
    text-align: center;
    padding: 0 0 15px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 0 20px;
}

.demo5 .pricingTable .pricingTable-header {
    color: var(--white);
    background: var(--main-color);
    padding: 19px 0;
}

.demo5 .pricingTable .title {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.demo5 .pricingTable .price-value {
    color: var(--white);
    display: block;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.demo5 .pricingTable .price-value:before,
.demo5 .pricingTable .price-value:after {
    content: "";
    position: absolute;
}

.demo5 .pricingTable .price-value:before {
    background: #1e334e;
    width: calc(100% - 50px);
    height: 100%;
    border-radius: 0 0 15px 0;
    transform: skew(15deg, 0deg);
    top: 0;
    left: -13px;
    z-index: -1;
}

.demo5 .pricingTable .price-value:after {
    background: linear-gradient(to top left, #051c32 49%, #cccccc 50%);
    width: 25px;
    height: 25px;
    top: -25px;
    left: -24px;
}

.demo5 .pricingTable .price-value .amount {
    font-size: 45px;
    font-weight: 600;
    line-height: 45px;
}

.demo5 .pricingTable .price-value .duration {
    font-size: 13px;
    font-weight: 400;
    display: block;
    text-transform: capitalize;
}

.demo5 .pricingTable .pricing-content {
    text-align: left;
    padding: 20px 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.demo5 .pricingTable .pricing-content li {
    color: #333;
    background: #eee;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 35px;
    padding: 0 15px 0 35px;
    margin: 0 0 8px;
    position: relative;
}

.demo5 .pricingTable .pricing-content li:last-child {
    margin: 0;
}

.demo5 .pricingTable .pricing-content li:before {
    content: "\f00c";
    color: #2a8317;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    top: 2px;
    left: 8px;
}

.demo5 .pricingTable .pricing-content li.disable:before {
    content: "\f00d";
    color: #f32e30;
}

.demo5 .pricingTable .pricingTable-signup {
    background: var(--main-color);
    width: calc(100% - 30px);
    padding: 12px 0;
    margin: 0 auto;
}

.demo5 .pricingTable .pricingTable-signup a {
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    line-height: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.demo5 .pricingTable .pricingTable-signup a:hover {
    letter-spacing: 3px;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.demo5 .pricingTable.pink {
    --main-color: #dd2a55;
}

.demo5 .pricingTable.green {
    --main-color: #42a147;
}

@media only screen and (max-width: 990px) {
    .demo5 .pricingTable {
        margin: 0 20px 40px;
    }
}

/* #6 */

/* $7 */
:root {
    --main-color: #01c0a2;
}

.packages .pricingTable {
    background: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 0 0 30px;
    margin: 0 15px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.packages .pricingTable:before {
    content: "";
    border: 10px solid var(--main-color);
    border-top: none;
    border-bottom: none;
    border-radius: 10px;
    position: absolute;
    top: 55px;
    bottom: 55px;
    left: -10px;
    right: -10px;
    z-index: -1;
}

.packages .pricingTable .pricingTable-header {
    color: var(--main-color);
    text-transform: capitalize;
    position: relative;
    margin: 0 0 30px;
}

.packages .pricingTable .title {
    color: #fff;
    background: var(--main-color);
    font-size: 33px;
    font-weight: 500;
    width: 80%;
    padding: 10px 0;
    margin: 0 auto 30px;
    border-radius: 0 0 50px 50px;
        font-family: var(--fontNoto);

}

.packages .pricingTable .price-value .amount {
    font-size: 50px;
    font-weight: 600;
    line-height: 53px;
}

.packages .pricingTable .duration {
    font-size: 17px;
    line-height: 17px;
    display: block;
}

.packages .pricingTable .pricing-content {
    text-align: left;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    display: inline-block;
}

.packages .pricingTable .pricing-content li {
    color: #555;
    font-size: 17px;
    font-family: var(--fontNoto);
    font-weight: 500;
    line-height: 30px;
    padding: 0 15px 0 30px;
    margin: 0 0 10px;
    position: relative;
    text-align: right;
}

[dir="rtl"] .packages .pricingTable .pricing-content li {
    padding: 0 30px 0 15px;
}

.packages .pricingTable .pricing-content li:last-child {
    margin: 0;
}

.packages .pricingTable .pricing-content li:before {
    content: "\f00c";
    color: var(--colorMain);
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    position: absolute;
    top: 3px;
    right: 0;
}

.packages .pricingTable .pricing-content li.disable:before {
    content: "\f00d";
    color: #ff3a39;
}

.packages .pricingTable .pricingTable-signup a {
    color: #fff;
    font-family: var(--fontNoto);
    background: var(--main-color);
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 20px 5px;
    border-radius: 50px 50px;
    display: inline-block;
    transition: all 0.3s ease 0s;
}

.packages .pricingTable .pricingTable-signup a:hover {
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
}

.packages .pricingTable.blue {
    --main-color: #226aff;
}

.packages .pricingTable.red {
    --main-color: red;
}

.packages .pricingTable.second_pkg {
    --main-color: var(--pricingTable-second_pkg);
}

.packages .pricingTable.third_pkg {
    --main-color: #fcb04c;
}

.packages .pricingTable.first_pkg {
    --main-color: var(--first_pkgColor);
}

.packages .pricingTable.orange {
    --main-color: #ff6616;
}

@media only screen and (max-width: 990px) {
    .packages .pricingTable {
        margin: 0 10px 40px;
    }
}

/* #7 */

/* $ => p1 */
.p_1.pricing {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 3em;
}

.p_1.pricing-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    -webkit-flex: 0 1 330px;
    flex: 0 1 330px;
}

.p_1 .pricing-action {
    color: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.p_1 .pricing-action:focus {
    outline: none;
}

.p_1 .pricing-feature-list {
    text-align: left;
}

.p_1.pricing-palden .pricing-item {
    font-family: "Open Sans", sans-serif;
    cursor: default;
    color: #84697c;
    background: #fff;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
    border-radius: 20px 20px 10px 10px;
    margin: 1em;
}

@media screen and (min-width: 66.25em) {
    .p_1.pricing-palden .pricing-item {
        margin: 1em -0.5em;
    }

    .p_1.pricing-palden .pricing__item--featured {
        margin: 0;
        z-index: 10;
        box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
    }
}

.p_1.pricing-palden .pricing-deco {
    border-radius: 10px 10px 0 0;
    background: linear-gradient(135deg, #4097f9, #0af0c7);
    padding: 4em 0 9em;
    position: relative;
}

.p_1.pricing-palden .pricing-deco-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
}

.p_1.pricing-palden .pricing-title {
    font-size: 0.75em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #fff;
}

.p_1.pricing-palden .deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.p_1.pricing-palden .pricing-item:hover .deco-layer--1 {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.p_1.pricing-palden .pricing-item:hover .deco-layer--2 {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
}

.p_1.pricing-palden .icon {
    font-size: 2.5em;
}

.p_1.pricing-palden .pricing-price {
    font-size: 5em;
    font-weight: bold;
    padding: 0;
    color: #fff;
    margin: 0 0 0.25em 0;
    line-height: 0.75;
}

.p_1.pricing-palden .pricing-currency {
    font-size: 0.15em;
    vertical-align: top;
}

.p_1.pricing-palden .pricing-period {
    font-size: 0.15em;
    padding: 0 0 0 0.5em;
    font-style: italic;
}

.p_1.pricing-palden .pricing__sentence {
    font-weight: bold;
    margin: 0 0 1em 0;
    padding: 0 0 0.5em;
}

.p_1.pricing-palden .pricing-feature-list {
    margin: 0;
    padding: 0.25em 0 2.5em;
    list-style: none;
    text-align: center;
}

.p_1.pricing-palden .pricing-feature {
    padding: 1em 0;
}

.p_1.pricing-palden .pricing-action {
    font-weight: bold;
    margin: auto 3em 2em 3em;
    padding: 1em 2em;
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(135deg, #a93bfe, #584efd);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.p_1.pricing-palden .pricing-action:hover,
.p_1.pricing-palden .pricing-action:focus {
    background: linear-gradient(135deg, #fd7d57, #f55d59);
}

.p_1.pricing-palden .pricing-item--featured .pricing-deco {
    padding: 5em 0 8.885em 0;
}

/* # => p1 */

/* # => Packages */

/* $ => Stores */
.store-wrapper {
    box-shadow: 0px 0px 25px 0px #ddd;
}

.store-wrapper .store-content {
    max-width: 100%;
}

.store-wrapper .store-content .store-info {
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 50%;
    height: 220px;
    position: relative;
}

.store-wrapper .store-content .store-info .store-data-container {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
}

.store-wrapper .store-content .store-info .store-data {
    padding: 0px 20px;
}

.store-wrapper .store-content .store-info .store-data h2 {
    margin-bottom: 14px;
    padding: 0px;
    font-size: 17px;
    line-height: 1.6;
    padding: 0 !important;
}

.store-wrapper .store-content .store-info .store-data h2 a {
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.8) 0 1px 0;
}

.store-wrapper .store-content .store-info .store-data h2 a:hover {
    color: var(--colorMain);
}

.store-wrapper .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    font-family: star;
    margin-bottom: 12px;
}

.store-wrapper .star-rating i {
    font-size: 12px;
}

.fa-star {
    color: var(--colorMain);
}

.store-wrapper .store-content .store-info .store-data p {
    margin-bottom: 12px;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.8) 0 1px 0;
    line-height: 23px;
}

.store-wrapper .store-footer {
    background: #f7fbfc;
    position: relative;
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.store-wrapper .store-footer .seller-avatar {
    padding: 3px;
    background: #fff;
    position: absolute;
    width: 80px;
    height: 80px;
    top: -40px;
    right: 20px;
    border-radius: 100%;
    box-shadow: 0px 0px 30px -6px #afafaf;
    overflow: hidden;
}

[dir="rtl"] .store-wrapper .store-footer .seller-avatar {
    right: auto;
    left: 20px;
}

.store-wrapper .store-footer .seller-avatar img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Comments */
.comments .items__comment {
    -webkit-box-shadow: 0 0 5px #ddd;
    box-shadow: 0 0 5px #ddd;
    padding: 10px;
    margin-bottom: 2rem;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.comments .items__comment:hover {
    -webkit-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
}

.comments .items__comment .img__comment img {
    display: block;
    margin: auto;
    border-radius: 50%;
    width: 80px;
}

.comments .items__comment .info__comment {
    margin-top: 1rem;
}

.comments .items__comment .info__comment>p {
    color: #666;
}

.comments .items__comment .info__comment .user__name>p {
    color: #666;
    font-weight: bold;
}

.comments .items__comment .info__comment span.date {
    color: #666;
    font-weight: bold;
}

/* Add Comments Form */
.form-add-comments .title {
    font-size: 20px;
    color: #555;
}

.form-add-comments label {
    font-weight: 600;
}

.form-add-comments textarea {
    min-height: 150px;
    padding: 1rem;
}

.form-add-comments .starrating input {
    display: none;
}

.form-add-comments .starrating input:checked~label {
    color: var(--colorMain);
}

.form-add-comments .starrating input:hover~label {
    color: var(--colorMain);
}

.form-add-comments .starrating label {
    color: #222222;
    display: block;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.form-add-comments .starrating label:before {
    content: "\f005";
    /* Star */
    margin: 2px 5px;
    font-size: 1.5rem;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-weight: bold;
}

/* # => Stores */

/* $ => danger PAGE */
.page-danger .icon_chk {
    border-radius: 200px;
    height: 200px;
    width: 200px;
    background: #faf5f8;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-danger .h1 {
    color: #b04b4b;
    font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 10px;
}


.page-danger p {
    color: #404f5e;
    font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
    font-size: 20px;
    margin: 0;
}

.page-danger b {
    color: #bc6666;
    font-size: 100px;
    line-height: 200px;
    margin-left: -15px;
}
/* $ => SUCCESS PAGE */

.page-success .icon_chk {
    border-radius: 200px;
    height: 200px;
    width: 200px;
    background: #f8faf5;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}



.page-success .h1 {
    color: #88b04b;
    font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 10px;
}

.page-success p {
    color: #404f5e;
    font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
    font-size: 20px;
    margin: 0;
}

.page-success i {
    color: #9abc66;
    font-size: 100px;
    line-height: 200px;
    margin-left: -15px;
}

/* # => SUCCESS PAGE */

/* $ => Contact */
.page-contact .thumbnail {
    background-color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    height: 630px;
    border-radius: 6px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.page-contact .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.rbt-contact-form.contact-form-style-1 {
    padding: 50px;
    position: relative;
    z-index: 1;
    padding-left: 60px;
    z-index: 2;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.rbt-address {
    padding: 40px;
    background: #fff;
    padding-bottom: 50px;
    transition: 0.3s;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.rbt-address {
    padding: 40px;
    background: #fff;
    padding-bottom: 50px;
    transition: 0.3s;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.rbt-address .icon {
    color: var(--colorMain);
    border-radius: 100%;
    font-size: 33px;
    display: inline-block;
    margin-bottom: 12px;
}

.rbt-address .icon i {
    font-size: 40px;
}

.rbt-address .inner h4.title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.rbt-address .inner h4.title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.rbt-address .inner p {
    margin: 0;
}

.rbt-address .inner p a {
    margin: 0;
    color: var(--colorFonts);
}

.rbt-address .inner p a:hover {
    color: var(--colorMain);
}

/* # => Contact */

/* $ => About */
.banner_about {
    height: 300px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.banner_about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
}

.banner_about h1 {
    color: #fff;
    font-weight: bold;
    font-size: 45px;
}

.about-section {
    position: relative;
    z-index: 1;
}

.bg_section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg_section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.9;
    z-index: -1;
}

.about-text p {
    font-weight: 500;
    line-height: 30px;
}

.count-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    transition: 0.3s;
}

.count-item .title-count .count-number {
    font-size: 40px;
    font-weight: bold;
    color: var(--colorMain);
}

.count-item .title-count bdi {
    font-size: 20px;
    font-weight: bold;
}

.count-item p {
    font-weight: bold;
    color: var(--colorFonts);
    font-size: 18px;
    font-family: var(--fontNoto);
}

.count-item:hover {
    background-color: var(--colorMain);
    color: var(--colorFonts);
    transform: translateY(-5px);
}

.swiper_about .swiper-slide {
    height: 400px;
}

.swiper_about .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.swiper_about .swiper-button-prev,
.swiper_about .swiper-button-next {
    transform: translateY(0);
}

/* # => About */

/* $ => How Work */
.work-process-wrap {
    display: block;
    width: 100%;
}

.d_gird {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.single-work-process {
    position: relative;
}

.work-process-icon-wrap {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
}

.work-process-icon-wrap i {
    font-size: 40px;
}

.work-process-divider {
    background-image: linear-gradient(90deg,
            #73778c,
            #73778c 40%,
            transparent 40%,
            transparent 100%);
}

.single-work-process .work-process-divider {
    position: absolute;
    top: 40px;
    width: calc(100% - 130px);
    height: 1px;
    background-image: linear-gradient(90deg,
            #73778c,
            #73778c 40%,
            transparent 40%,
            transparent 100%);
    background-size: 12px 1px;
}

.single-work-process .work-process-divider:after {
    content: "\e628";

    --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17.079 12.5H5.5q-.213 0-.357-.143Q5 12.213 5 12t.143-.357q.144-.143.357-.143h11.579L11.64 6.062q-.146-.147-.152-.345q-.007-.198.158-.363q.166-.16.354-.163q.188-.003.354.163l6.08 6.08q.131.131.184.268q.053.136.053.298t-.053.298q-.053.137-.183.267l-6.081 6.081q-.14.14-.341.15q-.201.01-.367-.15q-.165-.165-.165-.357t.165-.356L17.08 12.5Z'/%3E%3C/svg%3E");
    -webkit-mask: var(--un-icon) no-repeat;
    mask: var(--un-icon) no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background-color: currentColor;
    color: inherit;
    width: 1.5em;
    height: 1.5em;

    position: absolute;
    right: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
}

[dir="rtl"] .single-work-process .work-process-divider:after {
    --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m6.921 12.5l5.439 5.438q.146.147.153.345q.006.198-.16.363q-.165.16-.353.163q-.188.003-.354-.163l-6.08-6.08q-.131-.131-.184-.268q-.053-.136-.053-.298t.053-.298q.053-.137.183-.267l6.081-6.081q.14-.14.341-.15q.201-.01.367.15q.165.165.165.357t-.165.356L6.92 11.5H18.5q.213 0 .357.143q.143.144.143.357t-.143.357q-.144.143-.357.143H6.921Z'/%3E%3C/svg%3E");
    right: auto;
    left: -30px;
}

.work-process-icon-wrap i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.work-process-icon-wrap .process-step {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
    background-color: var(--colorMain);
    color: var(--colorFonts);
}

[dir="ltr"] .work-process-icon-wrap .process-step {
    right: auto;
    left: -20px;
}

.single-work-process:last-child .work-process-divider {
    display: none !important;
}

.work-process-content h5 {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

@media screen and (max-width: 1199px) {
    .work-process-icon-wrap i {
        font-size: 28px;
    }

    .work-process-content h5 {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 600;
    }

    .work-process-content p {
        font-size: 13px;
        font-weight: 500;
    }

    .work-process-icon-wrap .process-step {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .d_gird {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .d_gird {
        grid-template-columns: repeat(1, 1fr);
    }

    .single-work-process {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .work-process-divider {
        display: none;
    }
}

/* # => How Work */

/* $ =>  */
.imgs_pays {
    /* background-color: var(--colorFonts); */
}

.imgs_pays>div {}

.imgs_pays img {
    max-width: 90px;
}

/* # =>  */

/* $ =>  */
/* # =>  */

/*
  =============================
  ## Media CSS || Responsive ##
  =============================
*/

@media (min-width: 1500px) {}

@media (max-width: 1399px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 1270px) {}

@media (max-width: 1199.98px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 13px;
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .user_info .profile-image {
        width: 50px;
        height: 50px;
    }

    .logo img {
        width: 100px;
    }

    .user_info .btn-primary {
        padding: 5px 5px;
        border-radius: 6px;
        font-size: 13px;
    }

    .img-card {
        height: 60px;
    }

    .sec-about .about-txt p {
        font-size: 24px;
    }

    .count-item .title-count .count-number {
        font-size: 30px;
    }

    .count-item p {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .offcanvas {
        background-color: #fff;
        height: 100vh;
    }

    .offcanvas .offcanvas-header {
        border-bottom: 1px solid #ddd;
        color: #444;
    }

    .offcanvas .navbar-nav .nav-item .nav-link {
        color: #444;
        padding: 1rem;
        font-weight: bold;
    }

    .offcanvas .navbar-nav .nav-item .nav-link:hover {
        color: var(--colorMain);
    }

    .home-banner .logo-banner img {
        max-height: 100px;
    }

    .banner-content h1 {
        font-size: 20px;
    }

    .sec-about .about-txt p {
        font-size: 18px;
        font-weight: 500;
    }

    .txt-logo {
        width: 150px;
    }

    .about-img img {
        width: 200px;
    }

    .choosen-txt span {
        font-size: 20px;
    }

    .choosen-txt p {
        font-size: 16px;
    }

    .counter div strong {
        font-size: 20px;
    }

    .counter div p {
        font-size: 12px;
    }

    .price-content {
        padding: 0rem 0.5rem;
    }

    .item-price .price-title {
        font-size: 20px;
    }

    .item-price .price {
        font-size: 26px;
    }

    .price-content li {
        font-size: 14px;
    }

    .btn-booking {
        padding: 0.5rem 0.5rem;
        width: 90%;
    }

    .affiliate-btns a {
        padding: 35px 20px 32px 20px;
        font-size: 15px;
    }

    .testimonials-title p {
        font-size: 24px;
    }

    .box-subscribe .title {
        font-size: 1.5rem;
    }

    .box-subscribe {
        width: 100%;
        padding: 4rem 2rem;
    }

    footer ul li a {
        padding: 0.2rem;
        font-size: 12px;
    }

    /* .btn-primary {
    padding: 10px 10px;
    font-size: 13px;
  } */

    .demo0 .pricingTable .price-header {
        height: 130px;
    }

    .demo0 .pricingTable .title {
        font-size: 24px;
    }

    .demo0 .pricingTable .pricing-content ul li {
        font-size: 14px;
    }

    .demo0 .pricingTable .pricingTable-signup {
        padding: 8px 30px;
        font-size: 16px;
    }

    .sec-about .about-txt {
        text-align: center;
    }

    .sec-about .about-txt+.row {
        justify-content: center;
    }

    .about_page_img img {
        width: 100%;
    }

    .header {
        z-index: 9999;
    }

    .sidebar-blog {
        border: 0 !important;
        padding: 0 !important;
        padding-top: 4rem !important;
    }

    .news-item a.img_news {
        height: 80px;
    }
}

/* 991 */

@media (max-width: 767.98px) {
    .home-banner {
        background-size: cover;
        height: auto;
    }

    .banner-services .item-ser {
        font-size: 14px;
    }

    .banner-services .item-ser .img-ser {
        width: 100px;
        height: 100px;
        padding: 1.5rem;
    }

    .sec-about {
        text-align: center;
    }

    .affiliate-btns,
    .sec-about .d-flex {
        text-align: center;

        justify-content: center !important;
    }

    .affiliate-btns {
        margin-top: 2rem;
    }

    .about-img {
        margin-bottom: 2rem;
    }

    .price-content li {
        font-size: 16px;
    }

    .sec-affiliate {
        text-align: center;
    }

    .affiliate-btns a {
        font-size: 14px;
        padding: 20px 10px 20px 10px;
    }

    .testimonials-title {
        text-align: center;
    }

    .link-footer {
        justify-content: center;
    }

    footer img {
        margin: auto;
        display: block;
        margin-bottom: 1rem;
    }

    footer .justify-content-end {
        justify-content: center !important;
    }

    footer p.m-0 {
        margin-top: 0.5rem !important;
    }

    .profile-links ul li a {
        padding: 1rem;
        font-size: 13px;
    }

    .profile-image {
        width: 70px;
        height: 70px;
    }

    .profile-image {
        width: 55px;
        height: 55px;
    }

    .user-online {
        width: 15px;
        height: 15px;
        bottom: -30%;
        left: 0;
    }

    .profile-image-info .name-profile.ms-4 {
        margin-right: 0.8rem !important;
    }

    .profile-image-info .name-profile strong {
        font-size: 13px;
    }

    .profile-image-info .name-profile i {
        font-size: 13px;
    }

    .box-visited strong.fs-1 {
        font-size: 18px !important;
    }

    .box-visited strong.fs-2 {
        font-size: 18px !important;
    }

    .box-visited strong.fs-6 {
        font-size: 10px !important;
    }

    .btn-primary {
        font-size: 14px;
    }

    .banner-form form .btn-primary {
        padding: 20px 20px;
    }

    .has_discount {
        position: static;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-details .service-gallery .swiper-slide {
        height: 200px;
    }

    .breadcrumb-page h1 {
        font-size: 20px;
    }

    .testimonials-title.mb-5 {
        margin-bottom: 0rem !important;
    }

    .testimonials-title .row>div.justify-content-end {
        justify-content: center !important;
    }

    .navs-arrows {
        margin-top: 50px;
    }

    .testimonials-title p {
        font-size: 18px;
    }

    .navs-arrows {
        flex-direction: row-reverse;
    }

    .navs-arrows>div {
        position: static;
    }

    .profile-service .btn.btn_floating {
        bottom: -35.5px;
        opacity: 1;
    }
}

@media (max-width: 575.98px) {
    .logo img {
        width: 80px;
    }

    .banner-page {
        height: 66px;
    }

    .banner-page.banner_about {
        height: 200px;
    }

    .banner_about h1 {
        font-size: 30px;
    }

    .home-banner .logo-banner img {
        max-height: 80px;
    }

    .home-banner {
        padding-top: 90px;
    }

    .banner-partners img {
        max-width: 100px;
    }

    .affiliate-btns {
        flex-wrap: wrap;
    }

    .affiliate-btns a {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        justify-content: center;
    }

    .right-actions .btn-signin {
        padding: 0.5rem 0.2rem;
        font-size: 12px;
    }

    .btn_offcanvas .fa-xl {
        font-size: 1em;
    }

    .login_wrapper {
        padding: 50px 30px 50px;
    }

    .w-75 {
        width: 100% !important;
    }

    .count-item {
        text-align: center;
    }
}

@media (max-width: 480.98px) {
    body {
        font-size: 14px;
    }

    .profile-links ul li a {
        padding: 1rem 0.4rem;
        font-size: 11px;
    }

    .breadcrumb-page h1 {
        font-size: 16px;
    }

    .breadcrumb-page ul {
        flex-wrap: wrap;
    }

    .breadcrumb-page ul li a {
        font-size: 9px;
    }

    .imgs_pays img {
        max-width: 50px;
    }
}

@media (max-width: 360.98px) {
    /* .btn-primary {
    font-size: 13px;
    padding: 10px 4px;
  } */

    .user_info .btn-primary {
        width: 50%;
        margin: auto;
        margin-top: 1rem;
    }

    .box-visited {
        padding: 5px;
    }
}

@media (max-width: 300.98px) {
    .profile-image-info {
        padding: 1.5rem 0.5rem 0;
    }

    .profile-image-info .name-profile strong {
        font-size: 12px;
    }

    .profile-image-info .name-profile i {
        font-size: 11px;
    }
}

@media (max-width: 1366px),
(max-height: 840px) {
    .home-banner {
        height: 100%;
    }
}


#loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    /* background: #ff5458; */
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 999;
}

#loading img {
    width: 100px;
    /* Adjust the size of the loading spinner */
    /* width: 500px; */
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--colorMain);
    border-color: #000;
    opacity: 0.3;
}

.is-invalid {
    color: red !important;
}

.span-reg {
    font-size: small;
    color: #7c7c7c;
    display: block;
}

.gray {
    background-color: #efefef !important;
}
.link-number {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.link-number:hover {
    text-decoration: underline; /* Underline the link on hover */
    color: #ff4500; /* Change the color on hover to a different one */
    transform: scale(1.1); /* Scale the text slightly on hover */

    border-radius: 50px; /* Add rounded corners on hover */

}
.fa-map-marker-alt
{
    color: #d9534f; /* Google Maps marker color */
}
.fa-signs-post{

    color: green; /* Google Maps marker color */
}
.fa-phone{
    color: #428bca; /* Set the color you prefer */

}
.fa-calendar-days{
    color: #5bc0de; /* Set the color you prefer */

}
.fa-clock{
    color: #5cb85c;
}
.fa-volume-control-phone{
    color: #ff5733;
}
.border {
    padding: 8px;
    border: 0;
    font-size: 13px;
    border-radius: 15%;
}
.btn-slider {
    margin-top: 40px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.hidden
{
    display: none;
}
.whatsapp{
    border-color: #014f1d !important;
    color: rgb(8, 96, 20) !important;
}
.whatsapp:hover{
    border-color: #014f1d !important;
    color:#fff !important;
    background-color: rgb(8, 96, 20);
}
.envelope{
    border-color: rgb(8, 67, 96) !important;
    color: rgb(8, 67, 96) !important;
}


.envelope:hover{
    border-color: rgb(8, 67, 96) !important;

    color:#fff !important;
    background-color: rgb(8, 67, 96);
}
.fa-check-square{
    color: var(--colorMain);
}
