@font-face {
    font-family: "iran-sans";
    src: url("../fonts/iran-sans-400.ttf");
    font-style: medium;
    font-weight: 500;
    font-display: swap;
}

body {
    font-family: 'iran-sans';
}

.main-luncher {
    width: 100%;
    /* display: none; */
    /* overflow-y: scroll; */
    /* height: 100vh; */
    /* overflow-x: hidden; */
    /* scroll-behavior: smooth; */
}

.loading {
    width: 100vw;
    height: 100vh;
    background: #f95061;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    color: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    flex-direction: column;
}

.loading h5{
    font-size: 1.1rem;
}
@keyframes loading-bar-keyframe {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.loading-cog {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: loading-bar-keyframe 2s linear infinite;
    -moz-animation: loading-bar-keyframe 2s linear infinite;
    -ms-animation: loading-bar-keyframe 2s linear infinite;
    -o-animation: loading-bar-keyframe 2s linear infinite;
    animation: loading-bar-keyframe 2s linear infinite;
}

#factory-2 #turbine-right {
    -webkit-animation: fanRotate 2s linear infinite;
    -moz-animation: fanRotate 2s linear infinite;
    -ms-animation: fanRotate 2s linear infinite;
    -o-animation: fanRotate 2s linear infinite;
    animation: fanRotate 2s linear infinite;
}

@-webkit-keyframes fanRotate {
    from {
        transform-origin: center;
        transform-box: fill-box;
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        transform-origin: center;
        transform-box: fill-box;
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


#tire {
    -webkit-animation: fanRotate 2s linear infinite;
    -moz-animation: fanRotate 2s linear infinite;
    -ms-animation: fanRotate 2s linear infinite;
    -o-animation: fanRotate 2s linear infinite;
    animation: fanRotate 2s linear infinite;
}

@keyframes fanRotate {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform-origin: center;
        transform-box: fill-box;
        transform: rotate(360deg);
    }
}

#ambulance\ custom-animate {
    -webkit-animation: abmulance-keyframe 6s linear infinite;
    -moz-animation: abmulance-keyframe 6s linear infinite;
    -ms-animation: abmulance-keyframe 6s linear infinite;
    -o-animation: abmulance-keyframe 6s linear infinite;
    animation: abmulance-keyframe 6s linear infinite;

}



@keyframes abmulance-keyframe {
    0% {
        transform: translateX(-600px) translateY(20px);
        transform-origin: center;
        transform-box: fill-box;
    }

    50% {
        transform: translateX(0px) translateY(0px);
        transform-origin: center;
        transform-box: fill-box;
    }

    51% {
        transform: rotateY(180deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    100% {
        transform: translateX(-600px) translateY(20px) rotateY(180deg);
        transform-origin: center;
        transform-box: fill-box;
    }
}

#icon_accident,
#fire-smoke,
#location-in-area {
    -webkit-animation: accident-keyframe 1s linear infinite;
    -moz-animation: accident-keyframe 1s linear infinite;
    -ms-animation: accident-keyframe 1s linear infinite;
    -o-animation: accident-keyframe 1s linear infinite;
    animation: accident-keyframe 1s linear infinite;
}


@keyframes accident-keyframe {
    0% {
        transform: translateY(0px);
        transform-origin: center;
        transform-box: fill-box;
    }

    50% {
        transform: translateY(-10px);
        transform-origin: center;
        transform-box: fill-box;
    }

    100% {
        transform: translateY(0px);
        transform-origin: center;
        transform-box: fill-box;
    }
}

#basket {
    -webkit-animation: basket-keyframe 0.7s linear infinite;
    -moz-animation: basket-keyframe 0.7s linear infinite;
    -ms-animation: basket-keyframe 0.7s linear infinite;
    -o-animation: basket-keyframe 0.7s linear infinite;
    animation: basket-keyframe 0.7s linear infinite;
}

@keyframes basket-keyframe {
    0% {
        transform: translateY(0px);
        transform-origin: center;
        transform-box: fill-box;
    }

    50% {
        transform: translateY(-5px);
        transform-origin: center;
        transform-box: fill-box;
    }

    100% {
        transform: translateY(0px);
        transform-origin: center;
        transform-box: fill-box;
    }
}

#glop path {
    -webkit-animation: glop-keyframe 1s linear infinite;
    -moz-animation: glop-keyframe 1s linear infinite;
    -ms-animation: glop-keyframe 1s linear infinite;
    -o-animation: glop-keyframe 1s linear infinite;
    animation: glop-keyframe 1s linear infinite;
}

@keyframes glop-keyframe {
    0% {
        fill: #00ff00;
        transform-origin: center;
        transform-box: fill-box;
    }

    50% {
        fill: black;
        transform-origin: center;
        transform-box: fill-box;
    }

    100% {
        fill: #00ff00;
        transform-origin: center;
        transform-box: fill-box;
    }
}

#gloptow path {
    -webkit-animation: gloptow-keyframe 1s linear infinite;
    -moz-animation: gloptow-keyframe 1s linear infinite;
    -ms-animation: gloptow-keyframe 1s linear infinite;
    -o-animation: gloptow-keyframe 1s linear infinite;
    animation: gloptow-keyframe 1s linear infinite;
}

@keyframes gloptow-keyframe {
    0% {
        fill: black;
        transform-origin: center;
        transform-box: fill-box;
    }

    50% {
        fill: #00ff00;
        transform-origin: center;
        transform-box: fill-box;
    }

    100% {
        fill: black;
        transform-origin: center;
        transform-box: fill-box;
    }
}

.slider {
    width: 100vw;
    height: 100vh;
}

.slider svg {
    width: 100vw;
}

#traffic_light #red {
    animation: 5s redes infinite;
}

#traffic_light #green {
    animation: 5s greenes infinite;
}

#traffic_light #yellow {
    animation: 5s yellowes infinite;
}

@keyframes redes {
    0% {
        fill: red
    }

    20% {
        fill: red
    }

    40% {
        fill: red
    }

    60% {
        fill: #000
    }

    80% {
        fill: #000
    }

    100% {
        fill: #000
    }
}

@keyframes yellowes {
    0% {
        fill: #000
    }

    20% {
        fill: #000
    }

    40% {
        fill: yellow
    }

    50% {
        fill: #000
    }

    60% {
        fill: #000
    }

    80% {
        fill: #000
    }

    86% {
        fill: yellow
    }

    100% {
        fill: yellow
    }
}

@keyframes greenes {
    0% {
        fill: #000
    }

    40% {
        fill: #000
    }

    60% {
        fill: #00ff00;
    }

    80% {
        fill: #00ff00
    }

    83% {
        fill: #000
    }

    100% {
        fill: #000
    }
}


#ship {
    -webkit-animation: ship-keyframes 10s linear infinite;
    -moz-animation: ship-keyframes 10s linear infinite;
    -ms-animation: ship-keyframes 10s linear infinite;
    -o-animation: ship-keyframes 10s linear infinite;
    animation: ship-keyframes 10s linear infinite;
}


@keyframes ship-keyframes {
    0% {
        transform: rotate(-1deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    30% {
        transform: translateY(30px) translateX(30px) rotate(30deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    50% {
        transform: translateY(40px) translateX(60px) rotate(0deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    70% {
        transform: translateY(0px) translateX(120px) rotate(30deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    100% {
        transform: rotate(-1deg);
        transform-origin: center;
        transform-box: fill-box;
    }
}

#airplane {
    -webkit-animation: airplane-keyframe 15s linear infinite;
    -moz-animation: airplane-keyframe 15s linear infinite;
    -ms-animation: airplane-keyframe 15s linear infinite;
    -o-animation: airplane-keyframe 15s linear infinite;
    animation: airplane-keyframe 15s linear infinite;
}


@keyframes airplane-keyframe {
    0% {
        transform: translateX(0px) translateY(0px);
        transform-origin: center;
        transform-box: fill-box;
    }

    30% {
        transform: translateX(-450px) translateY(-130px);
        transform-origin: center;
        transform-box: fill-box;
    }

    35% {
        transform: translateX(-450px) translateY(-130px) rotateY(180deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    60% {
        transform: translateX(0px) translateY(-280px) rotateY(180deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    65% {
        transform: translateX(0px) translateY(-280px) rotateZ(-100deg) rotateX(0deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    100% {
        transform: translateX(0px) translateY(0px) rotateZ(-100deg) rotateX(0deg);
        transform-origin: center;
        transform-box: fill-box;
    }
}

.slider-parent {
    width: 100vw;
    overflow: hidden;
}

.luncher {
    position: relative;
    float: left;
    /*left: 0;*/
    /*top: 0;*/
    height: 100vh;
    width: 100vw;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.bilbilak {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 20px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    -webkit-animation: bilbilakMotion 0.5s linear infinite;
    -moz-animation: bilbilakMotion 0.5s linear infinite;
    -ms-animation: bilbilakMotion 0.5s linear infinite;
    -o-animation: bilbilakMotion 0.5s linear infinite;
    animation: bilbilakMotion 0.5s linear infinite;
}

@keyframes bilbilakMotion {
    0% {
        bottom: 20px;
    }

    50% {
        bottom: 15px;
    }

    100% {
        bottom: 20px;
    }
}

#tarazou {
    -webkit-animation: tarazou 2s linear infinite;
    -moz-animation: tarazou 2s linear infinite;
    -ms-animation: tarazou 2s linear infinite;
    -o-animation: tarazou 2s linear infinite;
    animation: tarazou 2s linear infinite;
}

.custom-slider {
    width: max-content;
    position: relative;
    background-repeat: repeat;
    height: 100%;

}

section {
    width: 100vw;
    /* height: 100vh; */
    float: left;
    position: relative;
}

svg {
    background-repeat: repeat;
}

@-webkit-keyframes tarazou {
    0% {
        transform-origin: center;
        transform-box: fill-box;
        -webkit-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    50% {
        transform-origin: center;
        transform-box: fill-box;
        -webkit-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    0% {
        transform-origin: center;
        transform-box: fill-box;
        -webkit-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

@keyframes tarazou {
    0% {
        -ms-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg);
        transform-origin: center;
        transform-box: fill-box;
    }

    50% {
        -ms-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        transform-origin: center;
        transform-box: fill-box;
        transform: rotate(10deg);
    }

    100% {
        -ms-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg);
        transform-origin: center;
        transform-box: fill-box;
    }
}

.our-solution-col{
    /* transform: scale(0.6); */
    /* opacity: 0; */
    transition: .3s;
}

.row{
    transition: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideSide {
    to{
        opacity: 1;
        transform: translateX(0);
    }
}


.forground {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 99;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 65% 100%);
}

/* 
.show-forground {
    background-repeat: repeat;
    height: 100vh;
    width: 100vw;
    background-image: url('../images/glasses\ outer.svg');
} */

.img-foreground {
    width: max-content;
    height: 100vh;
    float: left;
}

.luncher-forground {
    height: 100vh;
}
.forground-image{
    height: 100vh;
    background-size: contain;
    background-image: url("../images/glasses outer.svg");
}

.navbar-head {
    position: absolute;
    top: 0px;
    height: 140px;
    width: 100vw;
    align-items: center;
    z-index: 999999;
    display: none;
}

.navbar-head h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.navbar-head h5 {
    color: #fff;
    font-size: 13px;
    margin-right: 15px;
    margin-top: -10px;
}

.card-right-cotnent span {
    font-size: 2rem;
    font-weight: 900;
    color: #212121;
    padding-bottom: 5px;
    border-bottom: 3px solid #f95061;
}

.card-right-cotnent {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.card-right-cotnent h5 {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
}

.title-in-header {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
}

.card-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}

.company-detail span {
    border-bottom: 3px solid #ffffff;
    font-size: 1.3rem;
    font-weight: 900;
}

.company-detail p {
    font-size: 1rem;
    font-weight: 100;
    color: #ffffff;
}

.company-detail{
    color: #ffffff;
}

@media screen and (max-width: 640px) {
    .card-row {
        flex-direction: column !important;
    }
}

.card-row h3 {
    font-size: 1.7rem;
    font-weight: 900;
}

.content-img {
    width: 100%;
}

.hesaba-brand {
    width: 90px;
    height: 70px;
    float: right;
    margin-right: 20px;
    position: relative;
    transform: scale(1);
}

.squra {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 4px solid #f95061;
    transform: rotate(23deg);
    position: absolute;
    left: 10px;
    z-index: 2;
    top: 10px;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #a7a9ac;
    top: 3px;
    z-index: 1;
    position: absolute;
    right: 0;
}

.navbar-list {
    float: right;
    margin-right: 40px;
}

.navbar-list .item {
    float: right;
    margin-right: 15px;
    height: 50px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.navbar-list .item::after {
    content: '';
    position: absolute;
    bottom: 0px;
    height: 3px;
    width: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #f95061;
    transition: 0.3s all ease-in-out;
}
.navbar-list .active.item::after{
    width: 100%;
    height: 4px;
}


.navbar-list .item:hover::after {
    width: 100%;
    transition: 0.3s all ease-in-out;
}


.navbar-list .item:hover h3 {
    /* color:#f95061 ; */
}

.navbar-list h3 {
    float: right;
    font-size: 1.1rem;
    color: #fff;
    padding: 0;
    line-height: 3.2;
    margin: 0px;
}

.content-data {
    width: 100vw;
    height: auto;
}

.customers {
    width: 100vw;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    background-image: url(../images/march-gaines-cover.jpg);
    margin-bottom: 30px;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}


@media screen and (orientation:landscape) { 
    #column-reverce{
        display: flex;
        flex-direction: column-reverse !important;
        row-gap: 90px;
    }
    .mainer{
        zoom: 0.8;
    }

    .data-driven{
        padding: 0 !important;
        margin-top: -7rem !important;
    }
}


@media only screen and (max-width: 600px) {
    .navbar-list {
        display: none;
    }
    .data-trigger-content{
        display: none;
    }
    .bilbilak{
        display: none !important;
    }
    .mobile-menu{
        display: block !important;
    }
    .data-trigger-content-in-mobile{
        display: block !important;
    }
    .container.footers{
        padding-bottom: 50px !important;
    }
    .main-triangle{
        zoom: 0.5;
    }
    .navbar-head.about-us{
        margin-top: 0px !important;
        background-color: unset !important;
    }

    .navbar-head.about-us h1{
        color: #ffffff !important;
    }
    .navbar-head.about-us h5{
        color: #ffffff !important;
    }
    .card-row{
        flex-direction: column-reverse !important;
    }
    .mainer{
        zoom: 0.85;
    }
    .customers{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contents{
        display: flex;
        column-gap: 15px;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    #ismap{
        width: calc(100vw - 40px) !important;
    }
    .show-in-mobile{
        display: flex;
        flex-direction: column-reverse;
    }
    .image-show-in-mobile{
        position: relative;
        height: 300px;
    }
    .box-size-in-mobile{
        height: 300px !important;
    }
    .header-of-images{
        margin-top: -80px;
    }
    .data-driven{
        display: none !important;
    }
    .data-driven-in-mobile{
        display: block !important;
    }
    .square-absolute{
        display: none !important;
    }
    .footer-section{
        margin-top: 0px !important;
    }
}


#luncher-sliders.about-us{
    height: 80px;
}

.data-driven-in-mobile{
    display: none;
    width: 100%;
    height: 600px;
    padding : 0;
    position: relative;
}
.data-driven-in-mobile-item{
    width: 100%;
    position: relative;
    float: right;
    height: 110px;
}
.data-driven-in-mobile-item.left-item{
    border-left: 5px solid hsl(225deg 51% 30%);
    border-bottom: 5px solid hsl(225deg 51% 30%);
    border-radius: 20px 0 0 20px;
    width: calc(100% - 140px);
    float: left;
    margin-left: 60px;
}
.level-in-circle{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 5px solid #fff;
}
.footer-section{
    overflow: hidden;
    margin-top: -110px;
}
.driven-title{
    width: calc(100% - 80px);
    height: 20px;
    font-size: 1.1rem;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.level-in-circle img {
    width: 25px;
}
.data-driven-in-mobile-item.right-item{
    border-right: 5px solid hsl(336deg 99% 43%);
    border-top: 5px solid #253974;
    border-radius: 0 20px 20px 0;
    margin-top: -5px;
    width: calc(100% - 140px);
    margin-right: 60px;
    float: right;
}

.data-trigger-content-in-mobile{
    display: none;
    position: relative;
    height: 600px;

}

.data-trigger-content-in-mobile .gradiant-line{
    width: 4px;
    height: 600px;
    position: absolute;
    background: linear-gradient(to bottom , #ffb346,#5f85ed , #e85a53 ,#b5d337 , #007063  ,  #263238);
}

ul.gradiant-list{
    padding: 0px;
    width: 100%;
    height: 600px;
    display: inline;
}
ul.gradiant-list li{
    width: 100%;
    height: 100px;
    position: relative;
    float: right;
}
.li-gradiant-line{
    width: 10%;
    height: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}

.li-gradiant-circle{
    position: absolute;
    right: calc(10% + 20px);
    width: 60px;
    height: 60px;
    top : 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.li-gradiant-circle img{
    width: 35px !important;
}
.li-gradiant-title{
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(10% + 100px);
    margin: auto;
    height: 20px;
    font-size: 1.1rem;
}

.footer-contents{
    display: flex;
    column-gap: 15px;
}

.customers .rectangle-shape.top{
    position: absolute;
    top: -99px;
    width: 100%;
    height: 100px;
    background-image: url(../images/march-gaines-cover.jpg);
    margin-bottom: 30px;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.customers .rectangle-shape.top::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    bottom: 0;
    /* background-color: rgba(0, 0, 0, 0.6); */
    clip-path: polygon(0 0, 0% 100%, 100% 100%);

}
.customers .rectangle-shape.bottom{
    content: '';
    position: absolute;
    bottom: -128px;
    width: 100%;
    height: 100px;
    background-image: url(../images/march-gaines-cover.jpg);
    margin-bottom: 30px;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(0 0, 100% 100%, 100% 0);

}

.customers .rectangle-shape.bottom::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    top: 2px;
    /* background-color: rgba(0, 0, 0, 0.6); */
    clip-path: polygon(0 0, 100% 100%, 100% 0);

}
.customers .background-fliter{
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.6); */
}

.company-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.company-detail h5 {
    font-size: 1.3rem;
    font-weight: 900;
}

.show-address {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

.address-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    height: 40px;
}

.address-item img {
    width: 25px;
}

.list-items {
    padding: 0;
    margin-top: 10px;
}

.list-items li {
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-right: -25px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
}

.list-items li i {
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.list-items li:hover {
    padding-right: 10px;
    margin-right: -15px;
    transition: 0.3s ease-in-out;

}


.list-items li:hover i {
    opacity: 1;
    transition: 0.3s ease-in-out;

}
#side-content{
    width: 100%;
    height: 100%;
    float: right;
}

#content-lunchers{
    width: 100%;
    float: right;
    position: relative;
}

.circle-absolute {
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background-color: #e85a53;
    top: 10%;
    opacity: 0.1;
    position: absolute;
    left: -260px;
}

.square-absolute{
    width: 1000px;
    height: 1000px;
    transform: rotate(120deg);
    border-radius: 10%;
    background-color: #a7a9ac;
    position: absolute;
    top: 50%;
    right: -500px;
    opacity: 0.2;
}


.mainer {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.shaddow-content{
    width: 0;
    opacity: 1;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    transition: 0.3s;   
    box-shadow: 0 0 100px 50px rgb(0,0,0,40%);
}
.shaddow-content.active{
    opacity: 1;
    transition: 0.3s;
    box-shadow: 0 0 196px 100px rgba(0, 0, 0, 0.7);

}



.data-driven-organization{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

#box-container { 
    position: absolute;
    width: 400px;
    height: 60px;
    transform: scale(0.85);
    transition: 0.3s ease;

}

.absolute-back-image{
    position: absolute;
    top: -32px;
    zoom: 2;
    left: 0;
    opacity: 0.2;
}

#content-data {
    position: relative;
}
@media  screen and (max-width: 768px) {
    #box-container{
        transform: scale(0.6);
    }
    .container.content-data{
        width: 95% !important;
    }
    #column-reverce {
        margin-top: 0px !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        row-gap: 90px !important;
    }
  }
  
@media  screen and (max-width: 320px) {
    #box-container{
        transform: scale(0.5);
    }
}  

.data-driven-luncher{
    position: relative;
     display: flex;
    justify-content: center;
}

.data-driven-container{
    margin-top: 110px;
}

@media  screen and (max-width: 1020px) {
    .container.content-data{
        width: 95% !important;
    }
    #box-container{
        transform: scale(0.6);
    }

    .data-driven{
        padding: 0 0 0 50px !important;
    }
    .column-reverce{
        display: flex ;
        row-gap: 80px;
        flex-direction: column-reverse ;
    }
    #content-lunchers .square-absolute{
        zoom: 0.5;
    }
    .data-driven{

    }
    .data-driven-container{
        display: flex;
        flex-direction: column;
        row-gap: 60px;
        margin-top: 50px;
    }

    #content-lunchers .circle-absolute{
        zoom: 0.7;
    }

    .circle-in-mobile{
        display: none;
    }

    .absolute-back-image{
        zoom: 1.5;
        right: 0;
    }
}


#box-container.active{
    height: 80px;
    transition: 0.7s;
}


#box-container .lower-box{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: rotateX(-30deg) rotateY(295deg);
    transform-style:preserve-3d ;
    transition: 0.7s;
}


#box-container .lower-box.active{
    transform: rotateX(-30deg) rotateY(315deg);
    /* box-shadow: 0 0 30px 5px #f95061; */
    transition: 0.7s;

}

#box-container .upper-box{
    width: 220px;
    position: absolute;
    top: 90px;
    right: 0;
    bottom: 5px;
    left: -3px;
    margin: auto;
    transform: rotateX(-30deg) rotateY(295deg);
    transform-style: preserve-3d;
    transition: 0.7s;
    animation: motionUpperHide 0.7s linear 0s 1 forwards;
    
}

#box-container .upper-box.active{
    transition: 0.5s;
    transform: rotateX(-30deg) rotateY(315deg);

    animation: motionUpper 0.7s linear 0s 1 forwards;
}

@keyframes motionUpper {
    0%  {
        top : 90px;
        height : 0;
    }

    100% {
        height: 30px;
        top : 60px;
    }
}


@keyframes motionUpperHide {
    0%  {
        top : 60px;
        height : 30px;
    }
    100% {
        height: 0;
        top : 90px;
    }
}

#box-container .lower-box #realy-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d ;
}

#box-container .lower-box #realy-container #realy{
    position: absolute;
    top : 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

#box-container .lower-box #realy-container #realy:nth-child(1){
    transform: rotateY(0deg) translate3d(0,0,200px);
    background-color: hsl(0deg 0% 80%);
}

#box-container .lower-box #realy-container #realy:nth-child(2){
    transform: rotateY(90deg) translate3d(0,0,200px);
    background-color: hsl(0deg 0% 90%);
}

#box-container .lower-box #realy-container #realy:nth-child(3){
    transform: rotateY(180deg) translate3d(0,0,200px);
    background-color: hsl(0deg 0% 80%);
}

#box-container .lower-box #realy-container #realy:nth-child(4){
    transform: rotateY(270deg) translate3d(0,0,200px);
    background-color: hsl(0deg 0% 90%);
}

#box-container .lower-box #top-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: hsl(0deg 0% 95%);
    transform: rotateX(90deg) translate3d(0,0,200px);
}

#box-container .lower-box #top-content .right-icons{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

#box-container .lower-box #top-content .right-icons ul{
    margin: 0;
    list-style: none;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px;
}



#box-container .lower-box #top-content .right-icons ul li {
    float: left;
    transform: rotate(-90deg);
}
#box-container .lower-box #top-content .right-icons ul li img{
    width: 45px;
    height: 45px;
}



#box-container .upper-box #realy-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d ;
}

#box-container .upper-box #realy-container #realy{
    position: absolute;
    top : 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

#box-container .upper-box #realy-container #realy:nth-child(1){
    transform: rotateY(0deg) translate3d(0px,-90px,110px);
    background-color:hsl(0deg 0% 80%);
}

#box-container .upper-box #realy-container #realy:nth-child(2){
    transform: rotateY(90deg) translate3d(0px,-90px,110px);
    background-color: hsl(0deg 0% 80%);
}

#box-container .upper-box #realy-container #realy:nth-child(3){
    transform: rotateY(180deg) translate3d(0,-90px,110px);
    background-color: hsl(0deg 0% 80%);
}

#box-container .upper-box #realy-container #realy:nth-child(4){
    transform: rotateY(270deg) translate3d(0,-90px,110px);
    background-color: hsl(0deg 0% 90%);
}

#box-container .upper-box #top-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background-color: hsl(0deg 0% 90%);
    transform: rotateX(90deg) translate3d(0,0,200px);
}



.block{
    display: block;
}

.none{
    display: none;
}


:root{
    --triangleMainHeight : 400px;
    --triangleMainPadding : 50px;
}

.main-triangle{
    /* transform: scale(0.8); */
    margin : 80px 0;
    height: var(--triangleMainHeight);
    /* background-color: #ccc; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--triangleMainPadding);
}

.triangle-relations{
    position: relative;
    width: calc(var(--triangleMainHeight) - var(--triangleMainPadding) + 100px);
    height: calc(var(--triangleMainHeight) - var(--triangleMainPadding));
    /* clip-path: polygon(50% 0%, 0% 100%, 100% 100%); */
}

.progress-in-line{
    width: 20px;
    height: calc(var(--triangleMainHeight) - 100px);
    position: absolute;
    background-color: #f95061;

}

.progress-in-line:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background:linear-gradient(
        45deg,
        transparent 25%,
        rgba(255,255,255,0.5) 25%,
        rgba(255,255,255,0.5) 60%,
        transparent 60%
    ) ;
    background-size:60px 100% ;
    animation: shift 2s linear infinite;
}

@keyframes shift {
    to {background-position: 60px 100%;}
}

.arrow-icons{
    width: 40px;
    height: 40px;
    margin: auto;
    bottom: 0;
    position: absolute;
    left: -15px;
    animation: go-run-arrow 2s infinite;
}
.arrow-icons img{
    transform: rotate(180deg);
    width: 100%;
}

@keyframes go-run-arrow {
    0% {
        top: 0;
        opacity: 0;
    }
    20%{
        top : -30px;
        opacity: 1;
    }
    50% {
        top: -70px;
        opacity: 1;
    }
    80% {
        top: -110px;
        opacity: 1;
    }
    100% {
        top: -150px;
        opacity: 0;
    }
}

.circle-coin-rotation{
    width: 180px;
    height: 180px;
    z-index: 9;
    border-radius: 50%;
    background-color: #ccc;
    position: absolute;
    perspective: 1000px;
}

.coin-content{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    top: 0;
    right: 0;
    left: 0;
    background-color: #a7a9ac;
    bottom: 0;
    z-index: 9;
    margin: auto;
    cursor: pointer;
    transition: transform 1s;
    position: absolute;
    transform-style: preserve-3d;
    animation: coinRotaitor 5s infinite;
    animation-delay: 2s;
}
.circle-coin-rotation:hover .coin-content{
    transform: rotateY(540deg);
}

/* 
@keyframes coinRotaitor {
    0% {
        transform: rotateY(0deg);
    }
    20% {
        transform: rotateY(540deg);
    }
    100%{
        transform: rotateY(540deg);
    }
} */
.flip-card-front, .flip-card-back {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backface-visibility: hidden;
    position: absolute;
    z-index: 99;
}

.flip-card-front{
    background-color: #f95061;
    color: #fff;
}


.flip-card-back{
    background-color: #fff;
    color: #212121;
    transform: rotateY(180deg);
}







.data-driven {
    height: 780px;
    direction: ltr;
    padding: 0 0 0 100px;
    margin-top: -15rem;
}

.data-driven .data-driven-top {
    width: 100%;
    height:  260px;
    overflow: hidden;
}

.data-driven .data-driven-mid{
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.data-driven .data-driven-bottom{
    width: 100%;
    height:  260px;
    overflow: hidden;
}

.data-driven .mini-box-in-driven {
    
}

.data-driven .parent-circle{
    width: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    border-radius: 50%;
    position: relative;
    background: hsl(60deg 71% 52%);
    height: 215px;
    cursor: pointer;
}

.data-driven .circle {
    width: 154px;
    height: 154px;
    /* shape-outside: circle(50% at 30%); */
    /* clip-path: circle(50% at 0%); */
    background: hsl(225deg 51% 30%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .data-driven .white-half {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgb(255, 255, 255);
    }

.data-driven .squre-pare{
    width: 147px;
    float: left;
    position: relative;
    height: 80px;
    margin-top: 165px;
}

.data-driven .first-sqr{
    width: 35px;
    background-color: hsl(225deg 52% 30%);
    float: right;
}
.data-driven .second-sqr{
    width: 15px;
    background-color: hsl(60deg 71% 52%);
    float: right;
}
.data-driven .third-sqr{
    width: 20px;
    background-color: hsl(60deg 71% 52%);
    float: right;
}

.data-driven .shape-part{
    width: 67px;
    height: 100%;
    display: flex;
    align-items: end;
}

.data-driven .circle-indriven-logo{
    width: 70px;
    height: 70px;
    background-color: hsl(227deg 51% 31%);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}


.data-driven .absolute-text {
    width: 190px;
    height: 180px;
    direction: rtl;
    text-align: right;
    position: absolute;
    left: 0;
    top: -175px;
}

.data-driven .absolute-text span#counter {
    border-radius: 50%;
    background-color: #253874;
    padding: 2px;
    min-width: 20px;
    float: right;
    text-align: center;
    color: #fff;
    margin-left: 5px;
}

.data-driven .absolute-text span#content{
    font-size: 0.8rem;
} 

.filler{
    width: 100%;
    height: 25px;
    background: #f95061;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
}

#ismap{
    height: 200px;
    width: 200px;
    border-radius: 5px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-head.about-us{
    background: #fff;
    height: 80px;
    z-index: 999 !important;
    box-shadow: 0 0 13px 1px rgb(0 0 0 / 30%);
}

.navbar-head.about-us h1{
    color: #212121;
}
.navbar-head.about-us h5{
    color: #212121;
}
.navbar-head.about-us .navbar-list{
    height: 100%;
}
.navbar-head.about-us .navbar-list .item h3{
    color: #212121;
}

.navbar-head.about-us .navbar-list .item{
    height: 100%;
    display: flex;
    align-items: center;
}

.header-of-images {
    height: 450px;
    background-position: bottom;
    background-attachment: fixed;
    position: relative;
    background-size: cover;
    background-image: url(../images/4.jpg);
}

.header-of-images .highlight{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-of-images .highlight p {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 900;
}




.container-flowchart{
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -150px;
}

.circle-flow-chart{
    width: 100%;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luncher-flow-chart{
    width: 80%;
    height: 100%;
    position: relative;
    display: flex;
}
.luncher-flow-chart::after{
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(to left , #ffb346,#5f85ed , #e85a53 ,#b5d337 , #007063  ,  #263238);

}

.luncher-flow-chart .content-flow-manager{
    height: 100%;
    width: calc(100% / 6);
    position: relative;
}

.luncher-flow-chart .content-flow-manager .half-content{
    height: 50%;
    position: absolute;
    width: 100%;
}
.luncher-flow-chart .content-flow-manager .half-content .circle-content-route{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    cursor: pointer;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.luncher-flow-chart .content-flow-manager .half-content .circle-content-route:hover img{
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}
.luncher-flow-chart .content-flow-manager .half-content  .half-circle-top{
    width: 7px;
    height: 6px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border: 10px solid #ffb346;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    bottom: 0;
    border-bottom: 0;
}


.luncher-flow-chart .content-flow-manager .half-content  .half-circle-bottom{
    width: 7px;
    height: 6px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border: 10px solid #ffb346;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    bottom: 0;
    border-top: 0;
}

.luncher-flow-chart .content-flow-manager .half-content .circle-content-route img{
    width: 55px;
    transition: 0.3s ease-in-out;
}
.luncher-flow-chart .content-flow-manager .half-content .horiz-line{
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.luncher-flow-chart .content-flow-manager .half-content .horiz-line #line-grep{
    width: 100%;
    height: 13px;
    float: right;
}

.luncher-flow-chart .content-flow-manager .half-content .vertical-line{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #007063;
}



.luncher-flow-chart .content-flow-manager .half-content .horiz-line #line-grep:nth-child(even){
 
    background-color: transparent;
}

.luncher-flow-chart .content-flow-manager .half-content .title{
    position: absolute;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
    height: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.luncher-flow-chart .content-flow-manager .half-content .horiz-line #line-grep:nth-child(odd){
 
    background-color: red;
}


.repetor{
    display: grid;
    grid-template-columns: repeat(2, 20px 1fr);
    height: 60px;
    background: black;
    /*width: 100vw;*/
    float: right;
}

.maintener-forground-image{
    width: 100vw;
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.slider-mover-conatiner {
    height: 100%;
    position: absolute;
    z-index: 9999;
    top:0;
    left : 0;
    width: 100%;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 65% 100%);

}
.slider-mover{
    height: 100%;
    position: relative;
    z-index: 9999;
    top:0;
    left : 0;
    width: 8000px;
    display: flex;
    list-style-type: none;
    margin: 0;
    background-color: #272443;
    padding: 0;
    /* background-image: url('../images/glasses outer.svg'); */
    -webkit-animation: slider-mover 110s linear infinite;
    -moz-animation: slider-mover 110s linear infinite;
    -ms-animation: slider-mover 110s linear infinite;
    -o-animation: slider-mover 110s linear infinite;
    animation: slider-mover 110s linear infinite;
}

.slider-mover img{
    display: inline;
    float: left;
    width: revert;
}


@keyframes slider-mover {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-8000px);
    }
}


.background-container {
    width: 8000px;
    height: 100%;
    background : #ecb9a4;
    top : 0;
    left : 0;
    z-index: 999;
    transition: 0.3s;
    -webkit-animation: slider-mover 110s linear infinite;
    -moz-animation: slider-mover 110s linear infinite;
    -ms-animation: slider-mover 110s linear infinite;
    -o-animation: slider-mover 110s linear infinite;
    animation: slider-mover 110s linear infinite;
}


.cycle-container{
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 20px solid #a7a9ac;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.cycle-container:hover{
    -webkit-animation: rotation-cycle  9s linear infinite;
    -moz-animation: rotation-cycle  9s linear infinite;
    -ms-animation: rotation-cycle  9s linear infinite;
    -o-animation: rotation-cycle  9s linear infinite;
    animation: rotation-cycle  9s linear infinite;
    box-shadow: 0 0 19px 5px rgba(0 0 0 / 50%);
}

@keyframes rotation-cycle {
    to  {transform : rotate(360deg)}
}


@keyframes rotation-cycle-reverce {
    to  {transform : rotate(-360deg)}
}

.cycle-container:hover .span-text-in-item{
    -webkit-animation: rotation-cycle-reverce  9s linear infinite;
    -moz-animation: rotation-cycle-reverce  9s linear infinite;
    -ms-animation: rotation-cycle-reverce  9s linear infinite;
    -o-animation: rotation-cycle-reverce  9s linear infinite;
    animation: rotation-cycle-reverce  9s linear infinite;
}
.cycle-container-in{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 20px solid #a7a9ac;
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}

.cycle-container:hover .cycle-container-in {
    box-shadow: 0 0 19px 5px rgba(0 0 0 / 50%);
    transition: 0.3s;
}

.cycle-container-in .cycle-item{
    /* width: 120px;
    height: 120px;
    background-color: #f95061;
    border-radius: 50%;
    margin: auto;
    position: absolute; */
    width: 100px;
    height: 100px;
    background-color: #f95061;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    z-index: 99;
    border: 15px solid #fca8b0;
}

.cycle-container-in .cycle-item .cycle-item-mil{
    /* position: absolute;
    width: 50px;
    height: 85px;
    background-color: #fca8b0;
    z-index: 9;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%); */
    position: absolute;
    width: 20px;
    height: 77px;
    background-color: #a7a9ac;
    z-index: 9;
       
}
/* 
.cycle-container-in .cycle-item .cycle-item-mil:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:linear-gradient(
        45deg,
        transparent 25%,
        rgba(255,255,255,0.5) 25%,
        rgba(255,255,255,0.5) 60%,
        transparent 60%
    ) ;
    background-size:100% 100% ;
    animation: shift 2s linear infinite;
}

@keyframes shift {
to {background-position:  0  100%;}
} */

.cycle-container .cycle-item {
    width: 100px;
    height: 100px;
    background-color: #f95061;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    z-index: 999;
    justify-content: center;
    position: absolute;
    border: 15px solid #a7a9ac;
    box-shadow: 0 0 10px 3px rgba(0,0,0,0.3);
}

.span-text-in-item {
    min-height: 30px;
    text-align: center;
    color: #ffffff !important;
}


.mobile-menu{
    width: 100%;
    display: none;
    height: 55px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
    background-color: #ffffff;
    box-shadow: 0 0 5px 2px rgba(0,0,0,0.3);
}

.mobile-menu ul {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.mobile-menu ul li {
     flex: 1;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #212121;
}
.mobile-menu ul li a{
    color: #212121 !important;
}

.mobile-menu ul li.active{
    height: 65px;
    margin-top: -10px;
    position: relative;
    background: #f95061;
    color: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
}
.mobile-menu ul li.active a{
    color: #ffffff !important;
}
.mobile-menu ul li.active::after{
    content: '';
    position: absolute;
    top: -15px;
    width: 20px;
    height: 12px;
    background-color: #f95061;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 30%);
}