body {
    all: unset;
    font-family: vazir;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
}

*:root {
    --secondary: rgb(148, 148, 148);
    --card-background: #efefef;
    --card-subtitle: #797979;
}

.whiteTriangle {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 20px 25px 20px;
    border-color: transparent transparent #ffffff transparent;
    transform: rotate(180deg);

    position: absolute;
    top: 75px;
    right: -23px;
}

.triangle {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 20px 25px 20px;
    border-color: transparent transparent #66247c transparent;
    transform: rotate(180deg);

    position: absolute;
    top: 280px;
    right: -23px;
}

/*---------------------------------------- Start of Navigation Styles --------------------------------------*/

.navigation {
    background: #fff;
}

.navigationContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: row-reverse; */
    height: 95px;
    padding: 0 40px;
}

.navigationContentLinks ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 12px;
}

.navigationContentLinks ul li {
    list-style: none;
    display: flex;
    justify-content: center;
}

.navigationContentLinks ul li a {
    text-decoration: none;
    font-size: 1em;
    font-family: vazir;
    font-style: normal;
    color: #707070;
}

.navigationContentActions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navigationContentActions span {
    padding: 6px 12px;

    border-color: rgba(117, 42, 143, 1);
    border-width: 2px;
    border-style: solid;
    border-radius: 12px;

    font-family: vazir;

    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: #752a8f;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* .hamburger {
  display: none;
} */
#menuToggle {
    display: none;
}

@media all and (min-width: 1024px) and (max-width: 1440px) {
    .navigationContentLinks ul li a {
        font-size: 0.8em;
    }
}

@media all and (min-width: 768px) and (max-width: 1023px) {

    .navigationContentActions img,
    .navigationContentLinks {
        display: none;
    }

    #menuToggle {
        display: block;
        z-index: 5;
        position: relative;
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle a {
        text-decoration: none;
        color: #232323;

        transition: color 0.3s ease;
    }

    #menuToggle a:hover {
        color: tomato;
    }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;

        cursor: pointer;

        opacity: 0;
        /* hide this */
        z-index: 2;
        /* and place it over the hamburger */

        -webkit-touch-callout: none;
    }

    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;

        background: #66247d;
        border-radius: 3px;

        z-index: 5;

        transform-origin: 4px 0px;

        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked~span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }

    #menuToggle input:checked~span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked~span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menu {
        position: absolute;
        margin: -100px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;

        background: #ededed;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        /* to stop flickering of text in safari */
        transform-origin: 0% 0%;
        transform: translate(100%, 0);

        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    #menu li {
        padding: 10px 0;
        font-size: 22px;
    }

    #menuToggle input:checked~ul {
        transform: translate(-60%, 0);
    }
}

@media all and (max-width: 767px) {
    .navigationContent {
        padding: 0 20px;
    }

    .navigationContentActions span {
        font-size: 10px;
    }

    .navigationContentActions img,
    .navigationContentLinks {
        display: none;
    }

    #menuToggle {
        display: block;
        z-index: 5;
        position: relative;
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle a {
        text-decoration: none;
        color: #232323;

        transition: color 0.3s ease;
    }

    #menuToggle a:hover {
        color: tomato;
    }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;

        cursor: pointer;

        opacity: 0;
        /* hide this */
        z-index: 2;
        /* and place it over the hamburger */

        -webkit-touch-callout: none;
    }

    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;

        background: #66247d;
        border-radius: 3px;

        z-index: 5;

        transform-origin: 4px 0px;

        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked~span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }

    #menuToggle input:checked~span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked~span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menu {
        height: 100vh;
        position: absolute;
        width: calc(100vw);
        margin: -100px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;

        background: #ededed;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        /* to stop flickering of text in safari */
        transform-origin: 0% 0%;
        transform: translate(100%, 0);

        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    #menu li {
        padding: 10px 0;
        font-size: 22px;
    }

    #menuToggle input:checked~ul {
        transform: translate(-60%, 0);
    }
}

/*---------------------------------------- End of Navigation Styles --------------------------------------*/

/*---------------------------------------- Start of Header Styles --------------------------------------*/

.header {
    position: relative;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow-x: hidden;
}

.headerBackground {
    background-image: url("/assets/images/pattern.png");
}

.headerWrapper {
    border: 2px dashed #fff;
    padding: 54px 0;
    max-height: 503px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.headerContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.headerContentProfiles {
    display: flex;
    align-items: center;
    gap: 12px;
}

.headerContentProfile {
    max-width: 240px;
    max-height: 348px;
    border: 6px solid #fff;
    border-radius: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.headerContentDesc {
    max-width: 31%;
}

.headerContentDesc h1 {
    font-size: 2.5rem;
    font-weight: bold;

    color: #ffffff;
    text-align: right;
    direction: rtl;
    line-height: 48px;
}

.headerContentDesc p {
    font-size: 20px;
    font-style: normal;
    color: #ffffff;

    margin: 0;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    text-align: right;
    direction: rtl;
}

.headerContentBtns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 24px;
}

.headerContentBtn {
    font-size: 20px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    font-family: vazir;

    width: 193px;
    height: 57px;

    border-color: rgba(255, 255, 255, 1);
    border-width: 3px;
    border-style: solid;
    border-radius: 24px;

    background: none;
}

.headerContentBtn.primary {
    background: #fff;
    color: #66247d;
}

@keyframes arrowAnimations {
    0% {
        opacity: 0;
        left: -90px;
    }

    20% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    90% {
        left: -50px;
    }

    100% {
        opacity: 0;
    }
}

.arrows {
    width: 101px;
    height: 70px;
    background: rgba(54, 54, 54, 1);

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;

    position: absolute;

    left: -67px;
    z-index: 5;

    /* animation: 3s infinite forwards; */
    /* animation-delay: 1s; */
    /* animation-name: arrowAnimations; */
}

.arrows.purple {
    background: rgba(102, 36, 125, 1);
    left: -67px;
    z-index: 5;
}

@media all and (min-width: 1200px) and (max-width: 1440px) {
    .headerWrapper {
        max-width: 90%;
    }

    .headerContentDesc h1 {
        font-size: 2em;
    }

    .headerContentDesc p {
        font-size: 1.25em;
    }

    .headerContentProfile {
        width: 180px;
        height: 280px;
    }

    .headerContentProfile img {
        width: calc(180px - 12px);
        height: calc(280px - 12px);
    }

    .headerContentBtn {
        font-size: 1em;

        width: 173px;
        height: 48px;
    }

    .arrows {
        width: 70px;
        height: 50px;
    }

    .arrows img {
        width: 40px;
        height: 25px;
    }
}

@media all and (min-width: 1024px) and (max-width: 1199px) {
    .headerWrapper {
        max-width: 90%;
    }

    .headerContentDesc h1 {
        font-size: 1.5em;
    }

    .headerContentDesc p {
        font-size: 1em;
    }

    .headerContentProfile {
        width: 140px;
        height: 230px;
    }

    .headerContentProfile img {
        width: calc(140px - 12px);
        height: calc(230px - 12px);
    }

    .headerContentBtn {
        font-size: 1em;

        width: 153px;
        height: 48px;
    }

    .arrows {
        width: 50px;
        height: 30px;
        left: -43px;
    }

    .arrows.purple {
        width: 50px;
        height: 30px;
        left: -43px;
    }

    .arrows img {
        width: 30px;
        height: 15px;
    }
}

@media all and (min-width: 768px) and (max-width: 1023px) {
    .header {
        height: unset;
        overflow-x: hidden;
    }

    .headerContent {
        flex-direction: column;
    }

    .headerWrapper {
        max-width: 100%;
        border: none;
        max-height: unset;
        padding-bottom: 40px;
    }

    .headerBackground {
        height: 100%;
    }

    .headerContentDesc {
        max-width: 100%;
    }

    .headerContentDesc h1 {
        font-size: 1.5em;
    }

    .headerContentDesc p {
        font-size: 1em;
    }

    .headerContentProfile img {
        width: calc(165px - 12px);
        height: calc(250px - 12px);
    }

    .headerContentBtn {
        font-size: 1em;

        width: 153px;
        height: 48px;
    }

    .arrows {
        width: 80px;
        height: 40px;
        left: -53px;
    }

    .arrows.purple {
        width: 80px;
        height: 40px;
        left: -53px;
    }

    .arrows img {
        width: 40px;
        height: 20px;
    }
}

@media all and (max-width: 767px) {
    .border {
        display: none;
    }

    .header {
        height: unset;
        overflow-x: hidden;
    }

    .headerContent {
        flex-direction: column;
    }

    .headerWrapper {
        max-width: 100%;
        border: none;
        max-height: unset;
        padding-bottom: 40px;
    }

    .headerBackground {
        height: 100%;
    }

    .headerContentDesc {
        max-width: 80%;
    }

    .headerContentDesc h1 {
        font-size: 2em;
    }

    .headerContentDesc p {
        font-size: 1em;
    }

    .headerContentProfile {
        width: 100px;
        height: 190px;
        border-radius: 21px;
    }

    .headerContentProfile img {
        width: calc(100px - 12px);
        height: calc(190px - 12px);
    }

    .headerContentBtn {
        font-size: 1em;

        width: 153px;
        height: 48px;
    }

    .arrows {
        width: 65px;
        height: 35px;
        left: -53px;
    }

    .arrows.purple {
        width: 65px;
        height: 35px;
        left: -53px;
    }

    .arrows img {
        width: 35px;
        height: 15px;
    }
}

/*---------------------------------------- End of Header Styles --------------------------------------*/

/*---------------------------------------- Start of Features Styles --------------------------------------*/

.features {
    position: relative;
    height: 980px;
    margin-bottom: 150px;
    right: -10px;
    top: -180px;
}

.features .whiteBorder {
    border-radius: 0;
    border-right: 6px solid #ffffff;
    height: 180px;
    position: relative;
}

.profiles {
    display: flex;
    gap: 18px;
}

.profiles>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#brace {
    font-size: 14em;
    color: #66237d;
}

#dash {
    font-size: 4em;
    color: #66237d;
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-radius: 0 0 24px 0;
    border-bottom: 6px solid #66247c;
    border-right: 6px solid #66247c;

    position: relative;
}

#empty {
    border-bottom: 6px solid #66247c;
    border-right: 6px solid #66247c;
    border-radius: 0 0 24px 0;
}

.featuresContent {
    position: relative;
}

.featuresContent.featuresContentCircle::before {
    content: " ";
    width: 22px;
    height: 22px;
    position: absolute;
    background: #66247c;
    border-radius: 50%;
    top: 10px;
    right: -32px;
}

.featuresContent h3 {
    font-size: 1.875em;
    font-style: normal;
    font-weight: bold;
    color: #282828;
    text-align: right;
    direction: rtl;
    margin: 0;
}

.featuresContent .primary {
    color: #752a8f;
}

.featuresContent p {
    font-size: 20px;
    font-style: normal;
    color: #5c5c5c;
    text-align: right;
    direction: rtl;
    margin: 0;
    margin-top: 14px;
}

#internship {
    top: 30px;
    left: 100px;
}

#website {
    top: 275px;
    left: 86px;
}

#courses {
    top: 617px;
    left: 138px;
    max-width: 407px;
}

#job {
    bottom: 67px;
    left: 124px;
    max-width: 407px;
}

#talent {
    top: 520px;
    right: 117px;
    max-width: 407px;
}

#ideal {
    bottom: 123px;
    right: 116px;
    max-width: 407px;
}

.featuresMobile {
    display: none;
}

.servicesMobile {
    display: none;
}

@media all and (max-width: 767px) {
    .features {
        display: none;
    }

    .featuresMobile {
        display: block;
    }

    .featuresContentMobileHeader {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        padding-top: 50px;
        border-left: 4px solid #66247c;
        border-bottom: 4px solid #66247c;
        border-radius: 0 61px;
        padding-bottom: 30px;
        margin-right: -60px;
        margin-left: 50px;
    }

    .featuresContentMobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .featuresContentMobile img {
        width: 50px;
        height: 50px;
        margin-left: 40px;
    }

    .featuresContentMobile h3,
    .featuresContentMobileHeader h3 {
        font-size: 1.25em;
        font-style: normal;
        font-weight: bold;
        color: #282828;
        text-align: right;
        direction: rtl;
        margin: 0;
    }

    .featuresContentMobile .primary,
    .featuresContentMobileHeader .primary {
        color: #752a8f;
    }

    .featuresContentMobile p,
    .featuresContentMobileHeader p {
        font-size: 14px;
        font-style: normal;
        color: #5c5c5c;
        text-align: right;
        direction: rtl;
        margin: 0;
    }

    #dash2 {
        font-size: 2em;
        color: #66237d;
        align-items: center;
        display: flex;
        justify-content: center;
        width: 90px;
    }

    .servicesMobile {
        background-color: #66247d;
        padding: 36px 24px;
        direction: rtl;
        display: block;
    }

    .servicesMobile h3 {
        font-size: 20px;
        font-style: normal;
        color: #ffffff;
    }

    .servicesMobile p {
        font-size: 14px;
        font-style: normal;
        color: #ffffff;
    }

    .profilesMobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
    }

    .profilesMobile>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .profilesMobile>div>img {
        width: 90px;
    }

    .profilesMobile #downArrow {
        width: 20px;
    }

    .MobileservicesCards {
        gap: 12px;
        display: flex;
        flex-direction: column;

        margin-top: 50px;
    }

    .MobileservicesCard {
        height: 108px;
        background-color: #fff;
        border-radius: 12px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0 18px;
    }

    .MobileservicesCard div {
        display: flex;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        border-right: 1px solid darkgray;
        padding-right: 20px;
    }

    .MobileservicesCard p {
        font-size: 18px;
        font-style: normal;
        text-align: right;
        color: #66247d;
        margin: 0;
        font-weight: bold;
    }

    .MobileservicesCard span {
        font-size: 14px;
        font-style: normal;
        text-align: right;
        color: #282828;

        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .MobileservicesCard img {
        width: 47px;
        height: 47px;
        margin-left: 20px;
    }
}

@media all and (min-width: 768px) and (max-width: 1023px) {
    .features {
        display: none;
    }

    .featuresMobile {
        display: block;
    }

    #dash2 {
        font-size: 4em;
        color: #66237d;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .featuresContentMobileHeader {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        padding-top: 50px;
        border-left: 4px solid #66247c;
        border-bottom: 4px solid #66247c;
        border-radius: 0 61px;
        padding-bottom: 30px;
    }

    .featuresContentMobile {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 24px;
    }

    .featuresContentMobile img {
        width: 50px;
        height: 50px;
    }

    .featuresContentMobile h3,
    .featuresContentMobileHeader h3 {
        font-size: 1.25em;
        font-style: normal;
        font-weight: bold;
        color: #282828;
        text-align: right;
        direction: rtl;
        margin: 0;
    }

    .featuresContentMobile .primary,
    .featuresContentMobileHeader .primary {
        color: #752a8f;
    }

    .featuresContentMobile p,
    .featuresContentMobileHeader p {
        font-size: 18px;
        font-style: normal;
        color: #5c5c5c;
        text-align: right;
        direction: rtl;
        margin: 0;
        margin-top: 10px;
    }

    .servicesMobile {
        background-color: #66247d;
        padding: 36px 24px;
        direction: rtl;
        display: block;
    }

    .servicesMobile h3 {
        font-size: 26px;
        font-style: normal;
        color: #ffffff;
    }

    .servicesMobile p {
        font-size: 18px;
        font-style: normal;
        color: #ffffff;
    }

    .profilesMobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 50px;
    }

    .profilesMobile>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .profilesMobile>div>img {
        width: 110px;
        background-color: #e6e6e6;
        border-radius: 50%;
    }

    .profilesMobile #downArrow {
        width: 20px;
        background-color: unset;
        border-radius: unset;
    }

    .MobileservicesCards {
        gap: 12px;
        display: flex;
        flex-direction: column;

        margin-top: 50px;
    }

    .MobileservicesCard {
        height: 108px;
        background-color: #fff;
        border-radius: 12px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0 18px;
    }

    .MobileservicesCard div {
        display: flex;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        border-right: 1px solid darkgray;
        padding-right: 20px;
    }

    .MobileservicesCard p {
        font-size: 18px;
        font-style: normal;
        text-align: right;
        color: #66247d;
        margin: 0;
        font-weight: bold;
    }

    .MobileservicesCard span {
        font-size: 14px;
        font-style: normal;
        text-align: right;
        color: #282828;

        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .MobileservicesCard img {
        width: 47px;
        height: 47px;
        margin-left: 20px;
    }
}

@media all and (min-width: 1024px) and (max-width: 1199px) {
    .features {
        height: unset;
        width: unset;
        right: 30px;
        margin-bottom: 0;
    }

    .profiles {
        top: -15px;
        right: 120px;
    }

    .profiles>div img {
        width: 120px;
    }

    #dash {
        font-size: 2.8em;
    }

    #downArrow {
        width: 20px;
    }

    .featuresContent h3 {
        font-size: 1.275em;
    }

    .featuresContent p {
        font-size: 1em;
    }

    #internship {
        top: 15px;
        left: 0px;
    }

    #website {
        top: 146px;
        left: 0px;
    }

    #courses {
        top: 331px;
        left: 100px;
        max-width: 290px;
    }

    #job {
        bottom: 37px;
        left: 93px;
        max-width: 287px;
    }

    #talent {
        top: 298px;
        right: 166px;
        max-width: 291px;
    }

    #ideal {
        bottom: 54px;
        right: 165px;
        max-width: 325px;
    }

    #ideal img,
    #courses img,
    #website img,
    #job img,
    #talent img {
        width: 30px;
    }

    .servicesMobile {
        display: none;
    }
}

@media all and (min-width: 1200px) and (max-width: 1440px) {
    .features {
        height: unset;
    }

    .profiles>div img {
        width: 170px;
    }

    #downArrow {
        width: 20px;
    }

    .featuresContent h3 {
        font-size: 1.575em;
    }

    .featuresContent p {
        font-size: 1.25em;
    }

    #internship {
        top: 20px;
        left: 80px;
    }

    #website {
        top: 190px;
        left: 63px;
    }

    #courses {
        top: 427px;
        left: 75px;
        max-width: 407px;
    }

    #job {
        bottom: 40px;
        left: 64px;
        max-width: 407px;
    }

    #talent {
        top: 369px;
        right: 191px;
        max-width: 407px;
    }

    #ideal {
        bottom: 65px;
        right: 190px;
        max-width: 407px;
    }

    #ideal img,
    #courses img,
    #website img,
    #job img,
    #talent img {
        width: 50px;
    }

    .servicesMobile {
        display: none;
    }
}

/*---------------------------------------- End of Features Styles --------------------------------------*/

/*---------------------------------------- Start of Services Styles --------------------------------------*/

.servicesWrapper {
    background-image: url("./assets/images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 200px;
}

.services {
    display: flex;
    justify-content: center;

    width: 100%;
    gap: 100px;
    margin-top: 100px;

    position: relative;
}

.servicesDesc {
    font-size: 20px;
    color: #282828;
    margin: 0;
    direction: rtl;
    margin-top: 40px;
    margin-left: 25px;
    line-height: 25px;

    position: relative;
    right: -110px;
}

.servicesContent {
    direction: rtl;
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-right: 110px;
}

.servicesContent .featuresContent {
    position: unset;
    max-width: 320px;
}

.servicesCards {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin-top: 100px;
}

.servicesCards .card {
    width: 30%;
    height: 403px;

    border-color: rgba(161, 161, 161, 1);
    border-width: 3px;
    border-style: solid;
    border-radius: 24px;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.servicesCards .card p {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: #66247d;

    margin: 24px 0 0 0;
}

.servicesCards .card span {
    font-size: 20px;
    font-style: normal;
    text-align: center;
    color: #282828;

    width: 85%;
    margin-bottom: 24px;
}

.servicesCards .card button {
    border-color: rgba(115, 39, 142, 1);
    border-width: 2px;
    border-style: solid;
    border-radius: 54px;
    cursor: pointer;

    background-color: #fff;

    font-family: vazir;
    font-size: 20px;
    font-style: normal;
    text-align: center;
    color: #752a8f;

    padding: 8px 16px;
}

.servicesCards .card.active {
    position: relative;
    background: #752a8f;
    border-color: #752a8f;
    overflow: hidden;
}

.servicesCards .card.active .back {
    opacity: 0.1;
    position: absolute;
    bottom: -44px;
    width: 100%;
}

.servicesCards .card.active p,
.servicesCards .card.active span {
    color: #fff;
}

.servicesCards .card.active button {
    z-index: 5;
}

@media all and (max-width: 767px) {
    .servicesWrapper {
        display: none;
    }
}

@media all and (min-width: 768px) and (max-width: 1023px) {
    .servicesWrapper {
        display: none;
    }
}

@media all and (min-width: 1024px) and (max-width: 1199px) {
    .services {
        margin-top: 0px;
    }

    .services>div>img {
        width: 100% !important;
    }

    .servicesContent {
        margin-right: 0;
    }

    .servicesDesc {
        right: -86px;
        width: 150%;
        margin-left: 0;
        margin-top: 150px;
    }
}

/*---------------------------------------- End of Services Styles --------------------------------------*/

/*---------------------------------------- Start of Circles Styles --------------------------------------*/

.circle-items {
    display: flex;
    height: 30vh;
    margin-top: -100px;
    gap: 40px;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

@media (max-width: 1024px) {
    .circle-items {
        display: none !important;
    }
}

.circle {
    height: 200px;
    aspect-ratio: 1;
    border: 10px solid #a5a3a3;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.circle>* {
    font-size: 20px;
    font-style: normal;
    text-align: center;
    color: #66247d;
}

.circle>h3 {
    font-weight: bold;
    font-size: 60px;
    font-style: normal;
    text-align: center;
    color: #66247d;
}

.two-circle-container {
    display: flex;
    gap: 40px;
}

/*---------------------------------------- End of Circles Styles --------------------------------------*/

/*---------------------------------------- Start of Footer Styles --------------------------------------*/
footer {
    display: flex;
    padding: 40px 20px;
    justify-content: space-around;
    background-color: #282828;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sublinks ul {
    padding-right: 0;
}

@media (max-width: 768px) {
    .footer-section:not(.no-deletable-footer) {
        display: none;
    }

    footer {
        background-color: #efefef;
    }

    .no-deletable-footer {
        width: 80%;
        background-color: #282828;
        padding: 20px;
        border-radius: 24px 24px 0 0;
    }
}

.footer-section h4 {
    color: white;
}

.sublink-wrapper {
    list-style-type: none;
}

.sublink-wrapper a {
    text-decoration: none;
    color: var(--secondary);
}

.sublink-wrapper {
    text-decoration: none;
    color: var(--secondary);
}

.certificates {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.certificate {
    aspect-ratio: 1;
    width: 90px;
    height: 63px;
    background-color: white;
    border-radius: 3px;
    max-width: 90px;
    max-height: 90px;
}

.certificate img {
    width: 90px;
}

/*---------------------------------------- End of Footer Styles --------------------------------------*/

/*---------------------------------------- Start of Carousal Styles --------------------------------------*/
.sliders {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 75px;
    /* background-image: url(assets/images/lastline.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35%;
    z-index: 3; */
}

@media (max-width: 1024px) {
    .carousel-container {
        justify-content: center;
        margin-bottom: 0;
        background-color: #ece7ee !important;
        margin-bottom: -25px;
    }

    .sliders {
        margin-top: 200px;
        margin-bottom: 0;
    }

    .carousel-header-container,
    .carousel.slide {
        max-width: 50% !important;
    }
}

.carousel.slide {
    width: 300px;
    background-color: white;
    margin: auto;
    margin-bottom: 40px;
    position: static;
    border-radius: 25px;
}

.carousel-inner {
    position: relative;
}

.carousel-indicators [data-bs-target] {
    border-radius: 50%;
    height: auto;
    aspect-ratio: 1;
}

.carousel-image {
    max-height: 200px;
    width: 300px;
    border-radius: 8px 8px 0 0;
}

@media (max-width: 480px) {
    .carousel-image {
        max-height: 150px;
    }
}

[data-bs-target="#myCarousel"],
[data-bs-target="#myCarousel2"] {
    background-color: #5c5c5c !important;
    width: 20px !important;
    height: 20px !important;
}

.active[data-bs-target="#myCarousel2"],
.active[data-bs-target="#myCarousel"] {
    background-color: #66247d !important;
}

.carousel-container {
    background-color: #ece7ee;
    min-width: 40%;
    padding: 80px 20px;
    position: relative;
    max-height: 850px;
    height: 850px;
}

.date {
    font-size: x-small;
    font-size: 13px;
    font-style: normal;
    text-align: right;
    color: #282828;
    opacity: 0.5;
    margin-top: 10px;
}

.carousel-description {
    font-size: smaller;
    font-size: 17px;
    font-style: normal;
    text-align: right;
    color: #282828;
}

@media (max-width: 480px) {
    .carousel-description {
        font-size: x-small;
    }
}

.carousel-question {
    margin: 12px 0;
    color: #66247d;
    font-size: 19px;
}

@media (max-width: 480px) {
    .carousel-question {
        font-size: smaller;
    }
}

.slide-header {
    font-size: 30px;
    font-style: normal;
    text-align: right;
    color: #66247d;
    text-align: right;
}

.continue-button {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-style: normal;
    text-align: right;
    color: #4a165c;
    margin-left: 10px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;

    gap: 8px;
}

.continue-button a {
    text-decoration: none;
    color: #66247d;
    font-weight: bold;
}

.carousel-header-container {
    width: 300px;
    margin: auto !important;
    text-align: right;
}

@media (max-width: 480px) {

    .carousel-header-container,
    .carousel.slide {
        width: 100%;
    }
}

.carousel-header-container>p {
    text-align: right;
    font-size: 20px;
    font-style: normal;
    color: #5c5c5c;

    margin-bottom: 50px;
}

.carousel.slide.secondary {
    background: none;
}

.carousel-half {
    background-color: white;
    padding: 10px;
    border-radius: 20px;
}

.carousel-half-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.carousel-container-left {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-left: 40px;
}

.carousel-container-right {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-right: 40px;
}

@media (max-width: 1024px) {
    .carousel-container-right {
        border-radius: 0;
        width: 100%;
        padding: 35px;
        margin-top: -25px;
        background-color: #efefef;
    }

    .carousel-item {
        background-color: #ffffff;
        border-radius: 24px;
    }

    .carousel-image {
        width: 100%;
    }

    .carousel-container-left {
        display: none;
    }
}


.footer-section-header {
    color: white;
    text-align: center;
}

.line {


    width: 60%;
    margin: auto;
    height: 60px;
    border-bottom: 6px solid #66247c;
    border-right: 6px solid #66247c;
    border-left: 6px solid #66247c;
    border-radius: 0 0 24px 24px;
}

.straightLine {
    width: 6px;
    background-color: #66247c;

    height: 100vh;
    position: absolute;
    right: 50%;
    display: block;
}

.straightLine svg {
    width: 68px;
    position: absolute;
    right: -30px;
    bottom: -80px;
    border: 6px solid #66247c;
    border-radius: 50%;
    height: 68px;
}

@media (max-width: 1024px) {
    .straightLine {
        display: none;
    }
}

/* .navigationContentLinks ul > li {
  width: 70px;
} */

/* ---------------------------------------- */


#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 12;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}


input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.formContainer {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;

    width: 50%;
    padding: 24px;
    margin: auto;
    position: absolute;

    right: 0;
    left: 0;

}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

.formRow {
    flex-direction: row;
    direction: rtl;
}

/* Clear floats after the columns */
.formRow:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

    .col-25,
    .col-75,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

.formModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 12;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}
