﻿/**
* Template Name: Baker
* Template URL: https://bootstrapmade.com/baker-free-onepage-bootstrap-theme/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: 'estedad-regular';
    src: url('../fonts/estedad-regular.woff2') format('woff2');
}

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

@font-face {
    font-family: 'Chamran';
    src: url('../Fonts/Chamran.ttf') unset, url('../Fonts/Chamran.ttf') unset;
}

@font-face {
    font-family: 'VAZIR-REGULAR-FD';
    src: url('../fonts/VAZIR-REGULAR-FD.TTF') format('truetype');
}


@font-face {
    font-family: 'Vazir-Light-FD';
    src: url('../Fonts/Vazir-Light-FD.eot');
    src: url('../Fonts/Vazir-Light-FDd41d.eot?#iefix') format('embedded-opentype'), url('../Fonts/Vazir-Light-FD.woff2') format('woff2'), url('../Fonts/Vazir-Light-FD.woff') format('woff'), url('../Fonts/Vazir-Light-FD.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'VAZIR-BOLD-FD';
    src: url('../Fonts/VAZIR-BOLD-FD.TTF') format('truetype');
}

@font-face {
    font-family: 'VAZIR-THIN-FD';
    src: url('../Fonts/VAZIR-THIN-FD.TTF') format('truetype');
}

@font-face {
    font-family: 'VAZIR-THIN-FD';
    src: url('../Fonts/VAZIR-THIN-FD.TTF') format('truetype');
}

body {
    font-family: VAZIR-REGULAR-FD;
    color: #444444;
}

a {
    color: #282417;
    text-decoration: none;
}

    a:hover {
        color: #3e3e3d;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lalezar';
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #424242;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #ffcb30;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    background: rgba(105, 150, 254, 0.90);
}

    #header.header-transparent {
        background: transparent;
    }

    #header.header-scrolled {
        background: rgba(51, 112, 254, 0.90);
        padding: 15px 0;
    }

    #header .logo {
        font-size: 18px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 100;
        /*letter-spacing: 2px;*/
        font-family: Lalezar;
        color:white;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 40px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: flex-start;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        color: #fff;
        font-size: 14px;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #4e4e4e;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #414c64;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #424242;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(45, 53, 69, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #414c64;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #424242;
        }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

        .navbar-mobile .dropdown uhl a:hover,
        .navbar-mobile .dropdown ul .active:hover,
        .navbar-mobile .dropdown ul li:hover > a {
            color: #424242;
        }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    padding: 2rem 0;
}

    #hero:before {
        content: "";
        background: rgba(45, 53, 69, 0.0);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        text-align: center;
        padding-top: 1rem;
    }

.hero-header {
    padding: 0 1rem;
    margin-bottom: 2rem !important;
}

.icon-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.hero-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    padding: 0.5rem 1rem;
}

.hero-subtitle {
    color: #666;
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0 1rem;
}

.search-container {
    margin-top: 1.5rem;
}

.search-box {
    padding: 0.8rem 1rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*#hero .btn-get-started {
    font-family: VAZIR-REGULAR-FD;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 15px;
    transition: 0.3s;
    margin-top: 1.5rem;
    border: 2px solid #81c3f7;
    color: #333;
}*/

    /*#hero .btn-get-started:hover {
        background: #9ecaff;
        color: rgba(45, 53, 69, 0.0);
    }*/

@media (max-width: 992px) {
    #hero .container {
        padding-top: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .icon-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    #hero {
        margin-top: 5px;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .search-box {
        padding: 0.6rem 0.8rem !important;
    }

    #hero .btn-get-started {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-header {
        margin-bottom: 3rem !important;
    }

    .search-container {
        margin-top: 2rem;
    }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 35px 0;
}


.section-bg {
    background-color: #f7f8fa;
}

.section-title {
    text-align: center;
    padding-bottom: 25px;
}

    .section-title h2 {
        font-size: 28px;        
        margin-bottom: 15px;
        padding-bottom: 12px;
        position: relative;
    }

        /*.section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: #424242;
            bottom: 0;
            left: calc(50% - 25px);
        }*/

    .section-title h5 {
        font-size: 28px;        
        margin-bottom: 12px;
        padding-bottom: 12px;
        position: relative;
    }
    .section-title p {
        margin-bottom: 0;
        font-size: 14px;
        color: #aab3c7;
    }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 0 0;
    background-color: #fafafc;
    min-height: 10px;
    margin-top: 65px;
    padding-top: 5px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 65px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 100;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
        filter: grayscale(100);
    }

        .clients img:hover {
            filter: none;
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
    font-weight: 100;
    font-size: 34px;
    color: #414c64;
}

.about h4 {
    font-size: 20px;
    font-weight: 100;
    margin-top: 5px;
}

.about i {
    font-size: 48px;
    margin-top: 15px;
    color: #8b97b3;
}

.about p {
    font-size: 15px;
    color: #848484;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 40px 0;
}

    .counts .counters span {
        font-size: 48px;
        display: block;
        color: #414c64;
    }

    .counts .counters p {
        padding: 0;
        margin: 0 0 20px 0;
        font-family: "Raleway", sans-serif;
        font-size: 14px;
    }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    padding: 1px 1px 10px 10px;
    border-radius: 20px;
}

    .services .icon-box .icon {
        margin: 0 auto;
        /*width: 64px;
        height: 64px;*/
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease-in-out 0.3s;
        position: relative;
        border-radius: 50px;
    }

        .services .icon-box .icon i {
            font-size: 32px;
            transition: 0.5s;
            line-height: 1;
            position: relative;
        }

    .services .icon-box h4 {
        font-weight: 100;
        margin: 10px 0 15px 0;
        font-size: 22px;
    }

        .services .icon-box h4 a {
            color: #414c64;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        /*box-shadow: 0px 0 1px 0 rgba(0, 0, 0, 0.08);*/
    }

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon {
    background: #47aeff;
}

    .services .iconbox-blue:hover .icon i {
        color: #fff;
    }

.services .iconbox-orange i {
    color: #2d2d33;
}

.services .iconbox-orange:hover .icon {
    background: #2d2d33;
}

    .services .iconbox-orange:hover .icon i {
        color: #fff;
    }

.services .iconbox-pink i {
    color: #e80369;
}

.services .iconbox-pink:hover .icon {
    background: #e80368;
}

    .services .iconbox-pink:hover .icon i {
        color: #fff;
    }

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon {
    background: #ffbb2c;
}

    .services .iconbox-yellow:hover .icon i {
        color: #fff;
    }

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon {
    background: #ff5828;
}

    .services .iconbox-red:hover .icon i {
        color: #fff;
    }

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon {
    background: #11dbcf;
}

    .services .iconbox-teal:hover .icon i {
        color: #fff;
    }

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #414c64;
    background-size: cover;
    padding: 60px 0;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 100;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: "Raleway", sans-serif;
        font-weight: 100;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 35px;
        border-radius: 25px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #424242;
        color: #fff;
    }

        .cta .cta-btn:hover {
            background: #424242;
        }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 250px;
    direction: rtl;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 180px;
        height: 180px;
        /*max-height:200px;*/
        border-radius: 10%;
        margin: 2px 0 0 40px;
        position: relative;
        z-index: 2;
        border: 6px solid #fff;
    }

    .testimonials .testimonial-item .testimonial-img1 {
        width: 90px;
        border-radius: 50%;
        margin: -40px 30px 0 40px;
        position: relative;
        z-index: 2;
        border: 6px solid #fff;
    }

    .testimonials .testimonial-item h3 {
        font-size: 16px;
        margin: 2px 1px 2px 1px;
        color: #1b1b1b;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0 35px 0 45px;
    }



    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: #ffe7a0;
        font-size: 26px;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0 15px 0 15px;
        padding: 20px 20px 60px 20px;
        background: #fafafc;
        position: relative;
        border-radius: 6px;
        position: relative;
        z-index: 1;
        direction: rtl;
        text-align: justify;
    }

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #424242;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #424242;
    }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 18px 10px 18px;
        font-size: 14px;
        font-weight: 100;
        line-height: 1;
        color: #444444;
        margin: 0 3px 10px 3px;
        transition: all ease-in-out 0.3s;
        background: #fafafc;
        border-radius: 50px;
    }

        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            color: #414c64;
            background: #424242;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

    .portfolio .portfolio-item img {
        position: relative;
        top: 0;
        transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: -50px;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: #424242;
        padding: 15px 20px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            color: #fff;
            font-weight: 100;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: #fff;
            font-size: 14px;
            margin-bottom: 0;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 50px;
            font-size: 24px;
            top: calc(50% - 18px);
            color: rgba(255, 255, 255, 0.7);
            transition: ease-in-out 0.3s;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover,
            .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: #fff;
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 15px;
        }

    .portfolio .portfolio-item:hover img {
        top: -30px;
    }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 0;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 10px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #424242;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #424242;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(65, 76, 100, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 100;
            margin-bottom: 20px;
            padding-bottom: 20px;
            /*border-bottom: 1px solid #eee;*/
        }


        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 16px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 100;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }



/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

    .faq .faq-list ul {
        padding: 0;
        list-style: none;
    }

    .faq .faq-list li + li {
        margin-top: 15px;
    }

    .faq .faq-list li {
        padding: 20px;
        background: #fff;
        border-radius: 4px;
        position: relative;
    }

    .faq .faq-list a {
        display: block;
        position: relative;
        font-family: Lalezar;
        font-size: 16px;
        line-height: 24px;
        font-weight: 100;
        padding: 0 30px;
        outline: none;
        cursor: pointer;
    }

    .faq .faq-list .icon-help {
        font-size: 24px;
        position: absolute;
        right: 0;
        left: 20px;
        color: #6bbfdb;
    }

    .faq .faq-list .icon-show,
    .faq .faq-list .icon-close {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .faq .faq-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
    }

    .faq .faq-list .icon-show {
        display: none;
    }

    .faq .faq-list a.collapsed {
        color: #343a40;
        transition: 0.3s;
    }

        .faq .faq-list a.collapsed:hover {
            color: #424242;
        }

        .faq .faq-list a.collapsed .icon-show {
            display: inline-block;
        }

        .faq .faq-list a.collapsed .icon-close {
            display: none;
        }

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
    padding: 20px 0 30px 0;
}

    .contact .info-box i {
        font-size: 32px;
        color: #424242;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #ffeeba;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 100;
        margin: 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form {
    box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
    padding: 30px;
}

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 100;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 4px;
        box-shadow: none;
        font-size: 14px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #424242;
        }

    .contact .php-email-form input {
        padding: 10px 15px;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
    }

    .contact .php-email-form button[type=submit] {
        background: #424242;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #ffce3a;
        }

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

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #e7e7e7;
    font-size: 14px;
    background: #232323;
}
#footer a{
    color:#cacaca;
}

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: #fafafc;
        color: #444444;
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h4 {
                font-size: 22px;
                margin: 0 0 30px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 100;
            }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: VAZIR-REGULAR-FD;
                color: #777777;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            /*font-weight: bold;*/
            color: #444444;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #424242;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #777777;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #424242;
                    }

    #footer .footer-newsletter {
        font-size: 15px;
    }

        #footer .footer-newsletter h4 {
            font-size: 16px;
            /*font-weight: bold;*/
            color: #444444;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 50px;
            text-align: left;
            border: 1px solid #e1e4ec;
        }

            #footer .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type=submit] {
                position: absolute;
                top: -1px;
                right: -1px;
                bottom: -1px;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #424242;
                color: #fff;
                transition: 0.3s;
                border-radius: 50px;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }

                #footer .footer-newsletter form input[type=submit]:hover {
                    background: #ffce3a;
                }

    #footer .credits {
        padding-top: 5px;
        font-size: 13px;
    }

    #footer .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #e1e4ec;
        color: #5f6f92;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #footer .social-links a:hover {
            background: #ffce3a;
            text-decoration: none;
        }



.profileImageSmall {
    width: 45px;
    height: 45px;
    padding-left:4px;
}

.bottomNavbar {
    font-size: 12px;
}

.profileImageNormal {
    width: 150px;
    height: 150px;
}

.menuSubjectImage {
    width: 80px;
    height: 80px;
}


.center {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    padding: 5px;
}

.font-normal {
    font-size: 14px;
}


.phiDropDown {
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    height: 40px;
    width: 100%;
    flex: 1;
}

    .phiDropDown:hover {
        color: #414c64;
    }

.phiFormControl {
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    padding: 20px;
    width: 100%;
    height: 15px;
    flex: 1;
    background-color: #fbfbfb;
}

    .phiFormControl:hover {
        color: #414c64;
    }

.phiFormControlNoTrasparent {
    font-size: 1.5rem;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    padding: 20px;
    width: 100%;
    height: 15px;
    flex: 1;
}

    .phiFormControlNoTrasparent:hover {
        color: #414c64;
    }

.formInputTitle {
    margin: 10px;
    margin-bottom: 5px;
    font-family: Lalezar;
    color: #414c64;
}

.jobDetailTitle {
    margin: 10px;
    margin-bottom: 5px;
    font-family: VAZIR-BOLD-FD;
    color: #414c64;
    font-size: 16px;
}




/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* The actual popup */
    .popup .popuptext {
        visibility: hidden;
        padding-right: 30px;
        width: 200px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 8px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -80px;
    }

        /* Popup arrow */
        .popup .popuptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 35%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Toggle this class - hide and show the popup */
    .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
    }

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.phiSmallText {
    font-size: 13px;
    font-family: Vazir-Light-FD;
}

.phiSmallText1 {
    font-size: 15px;
    font-family: Vazir-Light-FD;
}

.phiMedBoldText {
    font-size: 18px;
    font-family: Lalezar;
}

.phiLargText {
    font-size: 24px;
}

.phiXLargText {
    font-size: 30px;
}


.phiRightPaddingSm {
    padding-right: 3px;
    padding-top: 10px;
}

.phiRightPaddingMd {
    padding-right: 5px;
    padding-top: 10px;
}

.phiRightPaddingLg {
    padding-right: 8px;
    padding-top: 12px;
}

.phiOnlyRightPaddingMd {
    padding-right: 3px;
}

.tag-phi {
    direction: rtl;
    display: inline-block;
    color: black;
    padding: 8px 20px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background-color: #acecfc;
    margin-top: 15px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}
    .tag-phi strong {
        font-weight: normal;
    }

.tag-phiSmall {
    direction: rtl;
    display: inline-block;
    color: white;
    padding: 2px 10px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 18px;
    background-color: #d9d9d9;
    margin-top: 4px;
    margin-left: 5px;
    margin-right: 5px;
}

.phicomment-info {
    font-size: 1.7rem;
    padding: 1% 1% 1% 1%;
    color: #690071
}

.image-center-crop {
    object-fit: cover;
    object-position: center;
    width: 150px;
    height: 150px;
}

.image-center-crop-small {
    object-fit: cover;
    object-position: center;
    width: 100px;
    height: 100px;
}

.image-center-crop-450 {
    object-fit: cover;
    object-position: center;
    width: 100%;
    min-height: 450px;
    max-height: 450px;
}

.imageThumb {
    width: 110px;
    height: 110px;
    cursor: pointer;
    border-radius: 8px;
    border-width: 2px;
}

.imageThumb1 {
    width: 110px;
    height: 110px;
    cursor: pointer;
    border-radius: 8px;
    border-width: 2px;
}

.trashIconImg {
    font-size: 16px;
    background-color: rgba(80, 80, 80, 0.7);
    color: white;
    padding-right: 3px;
    padding-top: 3px;
    padding-left: 3px;
    border-radius: 6px;
    cursor: pointer;
}


.jobMarkerImg {
    font-size: 18px;
    background-color: rgba(80, 80, 80, 0.7);
    color: white;
    padding-right: 3px;
    padding-top: 3px;
    padding-left: 20%;
    border-radius: 6px;
    cursor: pointer;
}

.red-border {
    border: 3px solid red;
}



html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    /*overflow-x:hidden;*/
}



.spaceBottom {
    margin-bottom: 18px;
}

.jobCard {
    border-radius: 15px;
    border-width: 1px;
    border-color: #ededed;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

    .jobCard img {
        border-width: 1px;
        border-radius: 12px;
    }

.jobCardScore {
    font-size: smaller;
}

.jobCardTitle {
    color: black;
    /*font-weight:bold;*/
    font-size: 16px !important;
    font-family: Vazir-Light-FD;
}









.carousel-item {
    transition: transform 1s ease;
}

    .carousel-item .row {
        flex-wrap: nowrap;
    }

    .carousel-item .col-lg-3 {
        flex: 0 0 auto;
        width: 100%;
    }



.dropdown-menu {
    right: 0;
    left: auto;
}



.image-center-Div {
    display: flex;
    justify-content: center;
    align-items: center;
}





.arrow {
    position: absolute;
    top: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    font-family: Lalezar;
}

    .arrow:hover {
        background: rgba(0, 0, 0, 0.7);
    }

#prev {
    left: 10px;
}

#next {
    /*right: 10px;*/
    right: 15px;
}

.arrow1 {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 40%;
    cursor: pointer;
    font-size: 16px;
    font-family: Lalezar;
}

    .arrow1:hover {
        background: rgba(0, 0, 0, 0.7);
    }




.borderRadius {
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
}

.borderRadiusTop {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer-logo {
    width: 100%;
    height: 70px;
}




/*autocomlete*/
mark {
    background-color: pink;
}


.list-autocomplete {
    padding: 0;
}

    .list-autocomplete em {
        font-style: normal;
        background-color: #e1f2f9;
    }

.hasNoResults {
    color: #aaa;
}

.hasNoResults,
.btn-extra {
    display: block;
    padding: 10px;
}

.hasNoResults {
    color: #aaa;
}

.btn-extra {
    width: 100%;
    border-top: .5px solid #d2d2d2;
}
/*autocomlete*/
.whole-padding {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.padding-bottom {
    padding-bottom: 8px;
}


.subPageHeader {
    font-size: larger;
}

.title {
    font-size: 20px;
    font-family: Lalezar;
}

.CategoryIcon {
    width: 80px;
    height: 80px;
}



.cross {
    position: relative;
    display: inline-block;
}

    .cross::before, .cross::after {
        content: '';
        width: 100%;
        position: absolute;
        right: 0;
        top: 50%;
    }

   


/*radio button style*/
.graphicRadio {
    display: none;
}

/*input[type="radio"] {
    display:none;
}*/

input[type="radio"] + label {
    font-weight: 400;
    font-size: 14px;
}

    input[type="radio"] + label span {
        display: inline-block;
        width: 18px;
        height: 18px;
        margin: -2px 10px 0 0;
        vertical-align: middle;
        cursor: pointer;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 3px solid #6a6a6b;
    }

    input[type="radio"] + label span {
        background-color: #e1e1e1;
    }

input[type="radio"]:checked + label {
    color: #333;
    font-weight: 700;
}

    input[type="radio"]:checked + label span {
        background-color: #3e4676;
        border: 2px solid #0c4551;
        box-shadow: 2px 2px 2px rgba(0,0,0,.1);
    }

    input[type="radio"] + label span, input[type="radio"]:checked + label span {
        -webkit-transition: background-color 0.24s linear;
        -o-transition: background-color 0.24s linear;
        -moz-transition: background-color 0.24s linear;
        transition: background-color 0.24s linear;
    }



.bannerGreen {
    padding-left: 8%;
    padding-right: 8%;
    width: 100%;
    height: 200px;
    background: linear-gradient(to right, #008000, #01cf01);
    color: white;
    border-radius: 15px;
}

.bannerViolet {
    padding-left: 8%;
    padding-right: 8%;
    width: 100%;
    height: 200px;
    background: linear-gradient(to right, #be1aff, #560e8f);
    color: white;
    border-radius: 15px;
}

.bannerBlue {
    padding-left: 8%;
    padding-right: 8%;
    width: 100%;
    height: 200px;
    background: linear-gradient(to right, #1a42ff, #0b2486);
    color: white;
    border-radius: 15px;
}

.bannerOrange {
    padding-left: 8%;
    padding-right: 8%;
    width: 100%;
    height: 200px;
    background: linear-gradient(to right, #f64f4f,#ff671a );
    color: white;
    border-radius: 15px;
}

.instagramGradient {
    background: #833ab4;
    background: linear-gradient( to right, #833ab4,#fd1d1d,#fcb045 );
    border-radius: 15px;
    padding-left: 5%;
    padding-right: 8%;
}


.adminButton {
    width: 100px;
    padding-left: 3px;
    padding-right: 3px;
    margin-bottom: 2px;
}

.halfButton {
    width: 250px;
    padding-left: 3px;
    padding-right: 3px;
    margin-bottom: 2px;
}

/*#loading {
    background: url('../image/site/loading.gif') no-repeat center center;
    background-size: auto 10%;   
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
}*/


/**/
/* ratings */
/**/
.rating {
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 27px;
    color: #404040;
}

    .rating:last-child {
        margin-bottom: 0;
    }

    .rating input {
        position: absolute;
    }

    .rating label {
        display: block;
        float: right;
        height: 17px;
        margin-top: 5px;
        padding: 0 2px;
        font-size: 17px;
        line-height: 17px;
        cursor: pointer;
    }




.vertical-line {
    border-right: 5px solid #47aeff; /* Adjust the thickness and color here */
    padding-right: 8px; /* Adjust the spacing between the line and the text */
    border-radius: 5px;
}



/*speciality cards toggle*/


/*article list horizontally*/
.scroll-container {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory; /* Enables snap behavior */
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: rgba(55, 64, 85, 0.9);
    scroll-behavior: smooth; /* Smooth scrolling for CSS scroll actions */
}

div.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container img {
    flex: 0 0 auto;
    width: 100%;
    height: 190px;
    scroll-snap-align: start;
}

.card-article-horiz {
    scroll-snap-align: start; /* Each card will snap to the start of its position */
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 15px;
    margin-bottom: 10px;
    min-width: 340px;
    max-width: 340px;
    min-height: 295px;
    max-height: 295px;
}
/*article list horizontally*/



@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 555px;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 755px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 975px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1180px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1380px;
    }
}





.author-thumb {
    padding: 1% 1% 1% 1%;
    width: 50px;
    height: 50px;
}

.blog-content-img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-bottom: 12px;
    width: 100%;
}





.social-wrapper {
    position: fixed;
    top: 17%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 10px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

    .social-wrapper a {
        display: block;
        color: #E1306C; /* Instagram color */
        font-size: 25px; /* Increased font size */
        text-decoration: none;
        margin-bottom: 10px;
    }

        .social-wrapper a:last-child {
            color: #000; /* Default color for download icon */
            padding-left: 0px;
        }

        .social-wrapper a:hover {
            color: #C13584; /* Hover color for Instagram */
        }

        .social-wrapper a:last-child:hover {
            color: #b1efe6; /* Hover color for download icon */
        }

.btn-close-social {
    font-size: 10px;
    padding-left: 12px;
}


















.custom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-download-app {
    order: -1;
    margin-bottom: 10px;
    flex: 0.8;
}

.custom-social-links {
    flex: 1.2;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.col-sm-12.col-lg-10.col-md-10.text-center {
    flex: 1;
}

.custom-social-links, .custom-copyright, .custom-credits {
    margin-top: 10px;
}

@media(min-width: 992px) {
    .custom-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 40px;
    }

    .custom-download-app {
        order: 0;
        margin-bottom: 0;
        margin-right: auto;
    }

    .custom-social-links {
        justify-content: flex-start; /* Align to the right on large screens */
    }
}





.pageOpButtons {
    color: black; /* Initial color */
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%; /* Keep it a circle */
    transition: box-shadow 0.3s; /* Smooth transition for shadow */
}

    .pageOpButtons:hover {
        color: blue; /* Hover text color */
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
    }


.smallSVG {
    width: 20px;
    height: 20px;
}

.center-container {
    display: flex;
    justify-content: center;
}






.floating-contact-container {
    position: fixed;
    bottom: 70px;
    right: 10px;
    display: flex;
    flex-direction: column-reverse; /* Buttons stack upwards */
    align-items: flex-end;
    gap: 15px; /* Space between buttons */
    z-index: 1000;
}


    .floating-contact-container:hover {
        opacity: 1;
        transform: translateY(0);
    }

/* Your existing styles (modified for this example) */
.floating-contact {
    width: 60px;
    height: 60px;
    background-color: #cf2d2d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .floating-contact:hover {
        background-color: #c62828;
        transform: scale(1.1);
    }

    .floating-contact i {
        font-size: 1.5rem;
    }








.button-icon {
    width: auto; /* Adjust the width as needed */
    height: 35px; /* Adjust the height as needed */
    margin-right: 8px; /* Add some space between the image and the text */
    vertical-align: middle; /* Align the image vertically with the text */
}






#popupCTA {
    position: fixed;
    bottom: 50px;
    right: 85px;
    z-index: 1000;
    background-color: #9bfb97; /* رنگ نارنجی */
    color: black; /* رنگ متن سفید */
    border: none;
    border-radius: 8px;
    padding: 15px 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: none; /* ابتدا پاپ‌آپ مخفی است */
    align-items: center; /* تراز عمودی متن و دکمه */
    justify-content: space-between; /* فاصله بین متن و دکمه */
}
    /* استایل دکمه بستن */
    #popupCTA .btn-close {
        margin-left: 245px; /* فاصله بین متن و دکمه */
    }





.iphone-checkbox {
    --active: #4191cc;
    --active-inner: #fff;
    --border: #D1D1D6;
    --background: #fff;
    --disabled: #F2F2F7;
    display: flex;
    align-items: center;
    position: relative;
    margin: 10px 0;
    cursor: pointer;
    font-size: 16px;
}

    .iphone-checkbox input {
        opacity: 0;
        position: absolute;
    }

.iphone-checkbox__control {
    width: 52px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--background);
    position: relative;
    transition: all 0.3s ease;
}

    .iphone-checkbox__control:after {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

.iphone-checkbox input:checked + .iphone-checkbox__control {
    background: var(--active);
    border-color: var(--active);
}

    .iphone-checkbox input:checked + .iphone-checkbox__control:after {
        left: calc(100% - 29px);
        background: var(--active-inner);
    }

.iphone-checkbox input:disabled + .iphone-checkbox__control {
    background: var(--disabled);
    border-color: var(--border);
    opacity: 0.6;
}

    .iphone-checkbox input:disabled + .iphone-checkbox__control:after {
        background: var(--border);
    }

.iphone-checkbox__label {
    margin-right: 10px;
    color: #1C1C1e;
}



.ribbon-awesome {
    position: absolute;
    top: 2px;
    right: 30px;
    width: 100px;
    height: 24px;
    background: linear-gradient(45deg, #005bff 0%, #6bc4ff 100%);
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 550;
    line-height: 24px;
    transform: rotate(-90deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    padding: 0 10px;
}

    /*.ribbon-awesome:before {
        content: "";
        position: absolute;
        bottom: -6px;
        right: 0;
        border-left: 8px solid transparent;
        border-right: 0px solid transparent;
        border-top: 6px solid #6bc4ff;
    }

    .ribbon-awesome:after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        border-left: 0px solid transparent;
        border-right: 8px solid transparent;
        border-top: 6px solid #005bff;
    }*/