.hero .header-inner img {
    height: 350px;
    object-fit: cover;
}
.hero .over-hero::after {
    content: "";
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.48) 100%
    );
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.over-hero {
    background-size: cover !important;
    background-position: center !important;
    padding-top: 15rem;
    padding-bottom: 0 !important;
}
.hero .over-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(var(--color-light), 1);
}
.hero .over-hero .breadcrumb-item {
    font-size: 12px;
}
.hero .over-hero .img-header-inner img {
    border-radius: var(--service-img-radius);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}
.hero .over-hero .hero-content h1 {
    font-size: 50px;
}
.hero .over-hero .hero-content p {
    font-size: 18px;
    line-height: 1.75;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.banner-scrollable {
    background-color: var(--color-one);
}
.banner-scrollable .scroll-text {
    width: max-content;
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -moz-animation: my-animation 50s linear infinite;
    -webkit-animation: my-animation 50s linear infinite;
    animation: my-animation 50s linear infinite;
}
.banner-scrollable .scroll-text li {
    font-family: sans-serif !important;
    list-style: inherit !important;
    margin-left: 50px;
    text-transform: uppercase;
    font-size: 42px;
    color: var(--text-primery);
}

/* for Firefox */
@-moz-keyframes my-animation {
    from {
        -moz-transform: translateX(-100%);
    }
    to {
        -moz-transform: translateX(-100%);
    }
}
/* for Chrome */
@-webkit-keyframes my-animation {
    from {
        -webkit-transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(100%);
    }
}
@keyframes my-animation {
    from {
        -moz-transform: translateX(-20%);
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%);
    }
    to {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes my-animation2 {
    from {
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    to {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes my-animation3 {
    from {
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    to {
        -moz-transform: translateX(70%);
        -webkit-transform: translateX(70%);
        transform: translateX(70%);
    }
}
.about-us {
    padding-top: 100px;
    position: relative;
    padding-bottom: 250px;
}
.about-us::before {
    content: "";
    width: 500px;
    height: 500px;
    border-radius: 50% 0 0 50%;
    background: var(--color-two);
    position: absolute;
    bottom: 0px;
    right: 0px;
    filter: blur(120px) opacity(0.3);
}
.about-us .about-inner {
    position: relative;
    z-index: 1;
    border-radius: var(--about-back-radius);
    background: linear-gradient(180deg, #fff 0%, rgba(231, 224, 242, 0) 87.27%);
    height: 770px;
}
.about-us .about-inner .collection {
    height: 480px;
}
.about-us .about-inner .collection .col-xl:first-child {
    padding-right: 0 !important;
}
.about-us .about-inner .collection .col-xl:last-child {
    padding-left: 0 !important;
}
.about-us .about-inner .collection .first .img-gallery {
    border-radius: var(--about-img-one);
    height: 480px;
    object-fit: cover;
    object-position: center;
}
.about-us .about-inner .collection .second .img-gallery {
    border-radius: var(--arrow-btn-radius);
    height: 179px;
    object-fit: cover;
    object-position: center;
}
.about-us .about-inner .collection .third .img-gallery {
    height: 359px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--form-radius);
}
.about-us .about-inner .collection .fourth .img-gallery {
    height: 252px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--about-img-one);
}
.about-us .about-inner .collection .fifth .img-gallery {
    border-radius: var(--form-radius);
    height: 480px;
    object-fit: cover;
    object-position: center;
}
.about-us .about-inner .collection .select-form {
    height: 261px;
}
.about-us .about-inner .collection .select-form form {
    position: relative;
    z-index: 1;
}
.about-us .about-inner .collection-mobile .t-row {
    object-fit: cover;
}
.about-us .about-inner .collection-mobile .select-form {
    height: 260px;
}
.about-us .about-inner .collection-mobile .top img {
    border-radius: var(--arrow-btn-radius);
}
.about-us .about-inner .collection-mobile .bottom img {
    border-radius: var(--arrow-btn-radius);
    object-fit: cover;
}
.about-us .about-inner .collection-mobile .bottom img:first {
    height: 150px;
}
.about-us .slogan-scrollable {
    overflow: hidden;
    z-index: 0;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    mix-blend-mode: overlay;
}
.about-us .slogan-scrollable .scroll-text {
    width: max-content;
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -moz-animation: my-animation2 20s linear infinite;
    -webkit-animation: my-animation2 20s linear infinite;
    animation: my-animation2 20s linear infinite;
}
.about-us .slogan-scrollable .scroll-text p {
    text-align: right;
    font-family: playfair;
    font-size: 350px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.seo-box {
    line-height: 1.75;
    font-size: 14px;
    color: #333;
}
.seo-box img {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    margin: auto;
    display: block;
}
.seo-box .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-bg-type: var(--bg-table);
}
.seo-box table {
    width: 100% !important;
    text-align: center;
}
.seo-box table * {
    align-content: center;
}
.seo-box table p {
    margin-bottom: 0 !important;
}
.seo-box p {
    font-family: pelak-rgular;
    margin-bottom: 8px;
}
.seo-box li {
    font-family: pelak-rgular;
    list-style: inherit;
}

.about-us .h_iframe-aparat_embed_frame {
    width: 60%;
    margin: auto;
}

@media (min-width: 1600px) {
    .seo-box img {
        max-width: 70% !important;
        max-height: max-content !important;
        margin: auto !important;
        display: block;
    }
}
@media (min-width: 1400px) and (max-width: 1600px) {
    .about-us .about-inner {
        padding: 100px 0px 0 0px;
    }
    .about-us .about-inner .select-form {
        padding: 0 20px !important;
    }
    .about-us .about-inner .btn-arrow-two {
        padding: 15px;
    }
    .seo-box img {
        max-width: 80% !important;
        max-height: max-content !important;
        margin: auto !important;
        display: block;
    }
}
@media (min-widht: 1200px) and (max-width: 1400px) {
    .about-us .about-inner .select-form {
        padding: 0 20px !important;
    }
    .about-us .about-inner .btn-arrow-two {
        padding: 15px;
    }
    .seo-box img {
        max-width: 80% !important;
        max-height: max-content !important;
        margin: auto !important;
        display: block;
    }

    .about-us .h_iframe-aparat_embed_frame {
        width: 70% !important;
        margin: auto;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .about-us {
        padding-bottom: 100px;
    }
    .seo-box img {
        width: 70% !important;
        height: auto !important;
        margin: auto !important;
        display: block;
    }

    .about-us .h_iframe-aparat_embed_frame {
        width: 80% !important;
        margin: auto;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .about-us {
        padding-bottom: 80px;
    }
    .seo-box img {
        width: 80% !important;
        height: auto !important;
        margin: auto !important;
        display: block;
    }

    .about-us .h_iframe-aparat_embed_frame {
        width: 90% !important;
        margin: auto;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    .about-us {
        padding-bottom: 80px !important;
    }
    .about-us .about-inner {
        height: unset;
    }
    .seo-box img {
        width: 90% !important;
        height: auto !important;
        margin: auto !important;
        display: block;
    }
}
@media (max-width: 576px) {
    .about-us .h_iframe-aparat_embed_frame {
        width: 100% !important;
        margin: auto;
    }
    .about-us {
        padding-bottom: 80px !important;
    }
    .about-us::before {
        width: 100% !important;
    }
    .about-us .title-section .short-des {
        line-height: 1.65;
    }
    .about-us .about-inner {
        height: unset;
        padding: 50px 1.25rem 0 1.25rem;
        border-radius: var(--service-img-mobile-radius);
    }
    .about-us .about-inner .collection-mobile .bottom img:first-child {
        height: 100px !important;
    }
    .seo-box img {
        width: 100% !important;
        height: auto !important;
    }
}

.about-us .about-inner .iframe-parent {
    height: auto !important;
    position: relative;
}

.about-us .about-inner .iframe-parent iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/*# sourceMappingURL=about-us.css.map */
