/* in the name of Allah */
/*#intro-video {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    background: #000000b0;*/
/*    z-index: calc(var(--zin-max) - 1);*/
/*    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;*/
/*    -webkit-transform: scale(0);*/
/*    -ms-transform: scale(0);*/
/*    transform: scale(0);*/
/*}*/

/*#intro-video.active {*/
/*    -webkit-transform: scale(1);*/
/*    -ms-transform: scale(1);*/
/*    transform: scale(1);*/
/*}*/

/*#intro-video.active video {*/
/*    border-radius: var(--br);*/
/*    max-width: 95%;*/
/*    max-height: 95%;*/
/*}*/

/*.close-video {*/
/*    position: fixed;*/
/*    top: 1rem;*/
/*    right: 1rem;*/
/*    font-size: 3rem;*/
/*    color: white;*/
/*    cursor: pointer;*/
/*}*/

.play-btn {
    width: 70px;
    height: 70px;
    background: radial-gradient( rgba(255, 0, 128, 0.8) 60%, rgba(255, 255, 255, 1) 62%);
    border-radius: 50%;
    position: relative;
    display: block;
    margin: 0 auto 1rem;
    box-shadow: 0px 0px 25px 3px rgba(255, 0, 128, 0.8);
}

/* triangle */
.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -25%;
    left: -24%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}
#intro-video {
    background-color: var(--mc2);
}
#intro-video .wrap {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    background-image: linear-gradient(0deg, rgb(0 0 0 / 80%) 0%, rgba(0,0,0,0) 100%), url(../img/intro-video-poster.png);
    background-position: center;
    background-size: cover;
    border-radius: var(--br);
    box-shadow: 0 11px 20px -7px #bf1579;
    cursor: pointer;
}
#intro-video .wrap .inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
#intro-video .wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    border-radius: var(--br);
}

/* 000000000000000000000000000000000000000 */
.desktop-header:not(.active) .solid-btn:hover {
    border-color: white;
    color: white;
}

/* 000000000000000000000000000000000000000 */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -o-linear-gradient(top, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 29, 51, 0.8)), to(rgba(14, 29, 51, 0.2)));
    background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}

.hero-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .carousel-cell {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0 1rem;
}

.hero-slider .carousel-cell .inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: white;
    text-align: center;
}

.hero-slider .carousel-cell .inner .subtitle {
    color: rgb(204, 204, 204);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hero-slider .carousel-cell .inner .title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero-slider .carousel-cell .inner .desc {
    border-top: 1px solid white;
    padding-top: 1rem;
}

/* .hero-slider .carousel-cell .inner .btn {
    border: 1px solid #fff;
    padding: 14px 18px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.hero-slider .carousel-cell .inner .btn:hover {
    background: #fff;
    color: #000;
} */

/* .hero-slider .flickity-prev-next-button {
    width: 80px;
    height: 80px;
    background: transparent;
}

.hero-slider .flickity-prev-next-button:hover {
    background: transparent;
}

.hero-slider .flickity-prev-next-button .arrow {
    fill: white;
} */

.hero-slider .flickity-page-dots {
    bottom: 30px;
}

.hero-slider .flickity-page-dots .flickity-page-dot {
    width: 15px;
    height: 15px;
    opacity: 1;
    /* background: rgba(var(--mc-rgb), 0.3); */
    background: rgba(255, 255, 255, 0.3);
    border: 0 solid white;
    border-radius: 30rem;
}

.hero-slider .flickity-page-dots .flickity-page-dot.is-selected {
    background: var(--mc);
    border: 0;
}

.hero-slider .flickity-page-dot:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.hero-slider .solid-btn:hover {
    border-color: white;
    color: white;
}

/* 000000000000000000000000000000000000000 */
#suitable-for .section-title {
    margin-bottom: 3rem;
}

#suitable-for .card {
    border-radius: 1rem;
    padding: 1rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#suitable-for .card:hover {
    -webkit-box-shadow: -5px 5px 0px 0px currentColor;
    box-shadow: -5px 5px 0px 0px currentColor;
    -webkit-transform: translate(5px, -5px);
    -ms-transform: translate(5px, -5px);
    transform: translate(5px, -5px);
}

#suitable-for .card .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1rem;
}

#suitable-for .card img {
    width: 80px;
    height: 80px;
    margin-left: 1rem;
}

#suitable-for .card .desc {
    padding-bottom: 1rem;
    font-size: 0.9rem;
}

#suitable-for .card .link {
    position: relative;
    font-weight: 600;
    margin-top: auto;
}

#suitable-for .card .link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    height: 2px;
    width: 0;
    background: currentColor;
}

#suitable-for .card .link i {
    margin-right: 0.3rem;
}

#suitable-for .card .link:hover {
    color: currentColor;
}

#suitable-for .card .link:hover::after {
    width: 100%;
}

#suitable-for .card .link:hover i {
    margin-right: 0.6rem;
}

#suitable-for .card-1 {
    border: 2px solid #d4ffd5;
    background: #d4ffd5;
    color: #005e03;
}

#suitable-for .card-1:hover {
    border-color: #005e03;
}

#suitable-for .card-2 {
    border: 2px solid #dcf2ff;
    background: #dcf2ff;
    color: #005a8f;
}

#suitable-for .card-2:hover {
    border-color: #005a8f;
}

#suitable-for .card-3 {
    border: 2px solid #ffedf8;
    background: #ffedf8;
    color: #bf1579;
}

#suitable-for .card-3:hover {
    border-color: #bf1579;
}

#suitable-for .card-4 {
    border: 2px solid #ffebd6;
    background: #ffebd6;
    color: #914a00;
}

#suitable-for .card-4:hover {
    border-color: #914a00;
}

#suitable-for .card-5 {
    border: 2px solid #ffe4e4;
    background: #ffe4e4;
    color: #af1f1f;
}

#suitable-for .card-5:hover {
    border-color: #af1f1f;
}

#suitable-for .card-6 {
    border: 2px solid #e9e9e9;
    background: #e9e9e9;
    color: #666;
}

#suitable-for .card-6:hover {
    border-color: #666;
}


/* 000000000000000000000000000000000000000 */
.schools-university {
    display: block;
    border-radius: var(--br);
    background: var(--mc);
    text-align: center;
    overflow: hidden;
    color: white;
    margin: 1rem 0;
}

.schools-university img {
    width: 100%;
}

/* 000000000000000000000000000000000000000 */
#possibilities {
    background: white;
}

#possibilities .row:not(:last-child) {
    margin-bottom: 3rem;
}

#possibilities .img-wrap {
    min-height: 343px;
}

#possibilities .img {
    width: 100%;
    margin: 0 auto;
}

#possibilities .text {
    height: 100%;
    text-align: center;
}

#possibilities .text span {
    line-height: 1;
}

.acco-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.accordion-item {
    border: 0;
    border-radius: var(--br) !important;
    overflow: hidden;
    -webkit-box-shadow: var(--bsh);
    box-shadow: var(--bsh);
}

.accordion-item:not(:last-child) {
    margin-bottom: 1rem;
}

.accordion-item:not(:first-of-type) {
    border: 0;
}

.accordion-button:focus {
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--mc);
    background-color: var(--mc2);
}

.accordion-button:not(.collapsed)::after {
    /* background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23bf1579'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>"); */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    font-size: 0.9rem;
}

/* 000000000000000000000000000000000000000 */
#services {
    background-image: -o-repeating-radial-gradient(circle, transparent, transparent 35px, #ffffff 35px, #ffffff 45px), -o-repeating-radial-gradient(circle, transparent, transparent 35px, #ffffff 35px, #ffffff 45px);
    background-image: repeating-radial-gradient(circle, transparent, transparent 35px, #ffffff 35px, #ffffff 45px), repeating-radial-gradient(circle, transparent, transparent 35px, #ffffff 35px, #ffffff 45px);
    background-size: 200px 200px;
    background-position: 0 0, 99px 99px, 198px 99px;
    background-color: #fff6ff;

    background-attachment: fixed;
    border-radius: 4rem;
    -webkit-box-shadow: inset 0 0 29px -17px rgba(0, 0, 0, 0.514);
    box-shadow: inset 0 0 29px -17px rgba(0, 0, 0, 0.514);
}

#services .card {
    border-radius: var(--br);
    border: 0;
    -webkit-box-shadow: var(--bsh);
    box-shadow: var(--bsh);
    padding: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
}

#services .card .color {
    border-top-left-radius: var(--br);
    border-top-right-radius: var(--br);
    position: absolute;
    inset: 0 0 0 0;
    -webkit-clip-path: circle(0 at 0 0);
    clip-path: circle(0 at 0 0);
}

#services .col:not(:last-child) .card {
    margin-bottom: 2rem;
}

#services .card .img {
    width: 80px;
    border-radius: var(--br);
    margin-top: -3.2rem;
    margin-bottom: 1rem;
    -webkit-transform: translateZ(60px);
    transform: translateZ(60px);
}

#services .card .h3 {
    font-family: "Mikhak";
    font-weight: 700;
    -webkit-transform: translateZ(40px);
    transform: translateZ(40px);
}

/* #services .card .solid-btn {
    margin-top: 1rem;
} */
#services .card a {
    margin-top: 1rem;
}

/* #services .card:hover .img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
} */

#services .maharat-btn {
    border: 1px solid #0fb583;
    color: #0fb583;
}

#services .raheno-btn {
    border: 1px solid #1181c8;
    color: #1181c8;
}

#services .maharat-btn:hover, #services .raheno-btn:hover {
    border: 1px solid transparent;
    color: white;
}

#services .maharat-btn:after {
    background-color: #0fb583;
}

#services .raheno-btn:after {
    background-color: #1181c8;
}

/* 000000000000000000000000000000000000000 */
figure.user-note {
    margin: 0;
    padding-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

figure.user-note .avatar {
    max-width: 100%;
    vertical-align: middle;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin: 40px 0 0 10px;
    -webkit-box-shadow: var(--bsh);
    box-shadow: var(--bsh);
    object-fit: contain;
}

figure.user-note blockquote {
    display: block;
    border-radius: var(--br);
    position: relative;
    background-color: var(--mc2);
    padding: 1.5rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6em;
}

figure.user-note blockquote:after {
    font-family: 'FontAwesome';
    content: "\201C";
    position: absolute;
    font-size: 40px;
    opacity: 0.2;
    font-style: normal;
    left: 7px;
    bottom: 10px;
    color: var(--mc);
}

figure.user-note .arrow {
    top: 100%;
    right: 3.5rem;
    width: 0;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 25px solid transparent;
    border-top: 25px solid var(--mc2);
    margin: 0;
    position: absolute;
}

figure.user-note .author {
    position: absolute;
    bottom: 45px;
    padding: 0 120px 0 10px;
    margin: 0;
    text-transform: uppercase;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

figure.user-note .author .h5 {
    opacity: 0.8;
    margin: 0;
    font-weight: 800;
    font-family: "Mikhak";
}

figure.user-note .author .h5 span {
    font-weight: 400;
    text-transform: none;
    /* padding-right: 5px; */
    font-size: 1rem;
}

#user-notes,
#customers {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#user-notes .container {
    padding-bottom: 5rem;
}

#user-notes .swiper-pagination-bullets {
    bottom: 30px;
}

#user-notes .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--mc);
}

/* 000000000000000000000000000000000000000 */
#customers {
    background: var(--mc2);
}

#customers .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

#customers .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--bc);
    border-radius: var(--br);
}

/* 000000000000000000000000000000000000000 */
#suitable-for .card .link::after,
#footer .col3 fieldset button,
#suitable-for .card .link i,
#footer .col1 ul li::before,
#services .card .color,
#services .card .img,
#footer .col1 ul li,
#suitable-for .card,
#footer .socials a,
#footer .col2 a i,
#footer .col2 a,
#intro-video {
    -webkit-transition-duration: var(--td);
    -o-transition-duration: var(--td);
    transition-duration: var(--td);
}
/* 000000000000000000000000000000000000000 */
@media (min-width:768px) {
    #possibilities .img-wrap {
        min-height: 696px;
    }

    #services .card:hover .color {
        -webkit-clip-path: circle(35% at 0 0);
        clip-path: circle(35% at 0 0);
    }

    #services .card .img {
        width: 100px;
    }
}

@media (min-width:992px) {
    .hero-slider .carousel-cell .inner .desc {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-slider .carousel-cell .inner .title {
        font-size: 3rem;
    }

    #possibilities .img-wrap {
        min-height: 463px;
    }

    #possibilities .text {
        text-align: start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #possibilities .text span {
        line-height: 2;
    }
}

@media (min-width:1200px) {
    #possibilities .img-wrap {
        min-height: 553px;
    }

    #possibilities .text h5 {
        font-size: 2rem;
    }

    #possibilities .text span {
        font-size: 1.2rem;
    }
}
/* 000000000000000000000000000000000000000 */
#blog {
    background-color: var(--mc2);
}
#blog .card {
    border-radius: var(--br);
    overflow: hidden;
    border: 0;
    box-shadow: var(--bsh);
}
#blog .text {
    padding: 1rem 1rem 2rem 1rem;
}
#blog .text h3 {
    font-family: "Mikhak";
    transition-duration: var(--td);
    font-size: 1.3rem;
    font-weight: 500;
}
#blog .text h3:hover {
    color: var(--mc);
}
#blog .text .desc {
    font-size: 0.9rem;
    color: #7a7a7a;
}
#blog .img {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#blog .img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#blog .img button {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border: 0;
    padding: 0.4rem 1rem;
    border-radius: 50rem;
    color: var(--mc);
    white-space: nowrap;
    box-shadow: 0 3px 5px rgb(0 0 0 / 15%);
}
#blog .img button i {
    margin-right: 3px;
    transition-duration: var(--td);
}
#blog .img .overlay {
    background-image: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
#blog .card:hover .img button i {
    margin-right: 8px;
}
#blog .card:hover .text h3 {
    color: var(--mc);
}