@font-face {
    font-family: "YFont";
    src: url("Fonts/Yekan.eot");
    src: url("Fonts/Yekan.woff") format("woff"),
    url("Fonts/Yekan.otf") format("opentype"),
    url("Fonts/Yekan.svg#filename") format("svg");
    }
/* @font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v128/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
} */

  *{
    font-family: 'YFont', Arial, sans-serif;

    font-weight:400;
    font-style:normal;
}
body{
    direction: rtl;
    margin: 0px;
    font-family: 'YFont', Arial, sans-serif;
    font-weight:400;
    font-style:normal;
    background: #333;
    overflow-x: hidden;
}
li {
    list-style: none;
}
ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#Container{
    background-color: #e2e2e2;
    width: 100%;
    box-sizing: border-box;
    
    /* margin: 5px; */
}
#head{
    width: 100%;
    background-color: white;
    display: flex;
    /* display: flex; */
    justify-content: center;
    box-shadow: 3px 0px 10px grey;
    
    /* flex-direction: column; */
}
/* **************************************************** */
#head.sticky{
    background: #fff;
    padding: 5px 0;
    position: fixed;
    z-index: 5000;
    top: 0;
}
#head.sticky #profileNav{
    display: none;
}

/* **************************************************** */

/* **************************************************** */

.box{
    position: absolute;
    top: 15px;
    right: 40px;
    padding: 5px;
    background: #0ff;
    display: flex;
    flex-direction: column;
}

.box a{
    width: 15px;
    height: 15px;
    margin: 2px;
    cursor: pointer;
    text-indent: -9999px;
}

#red{
    background: #b71c1c;
}
#blue{
    background: #0D47A1;
}
#green{
    background: #1B5E20;
}
#gray{
    background: #263238;
}
#yellow{
    background: #F57F17;
}
#orange{
    background: #BF360C;
}

/* **************************************************** */
.social{
    padding: 0;
    font-size: 2em;
    /* color: #000; */
    /* padding: 10px; */
    position: fixed;
    top: 200px;
    left: -50px;
    direction: ltr;
    /* border: 2px solid rgba(255,255,255,0.5); */
    /* box-shadow: 3px 3px 5px grey; */
    
    width: 50px;
    height: 200px;
    z-index: 5000;
    transition: left .4s ease-in-out;
    -webkit-transition: left .4s ease-in-out;
    -moz-transition: left .4s ease-in-out;
    -ms-transition: left .4s ease-in-out;
    -o-transition: left .4s ease-in-out;
    
    
}
.social nav{
    position:relative;
    /* transform: translateX(-60); */
    
    /* display: flex; */
    /* flex-direction: column; */
    
}
.socialActive{
    left: 0;
}
.social nav button{
    position: absolute;
    top: 0;
    left: 50px;
    width: 50px;
    height: 50px;
    align-items: center;
    background-color: rgb(255,255,255,0.3);
    border: none;
    border-radius: 0 5px 5px 0;
}
.social nav button i{
    padding: 0;
    box-sizing: border-box;
    /* color: #fac03f; */
    
}
.social nav ul{
    display: flex;
    flex-direction: column;;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: rgb(255,255,255,0.3);
    border-radius: 0 0 5px 0;
    /* visibility: hidden; */
}
.social nav ul li{
    margin: 5px;
}
.social nav ul li i{
    /* font-size: 1em !important; */
    width: 30px;
    height: 30px;
    /* color: #fac03f; */
}

/* **************************************************** */

/* **************************************************** */
.progress{
    position: fixed;
    width: 100%;
    height: 10px;
    background-color: #d1d1d1;
    z-index: 5000;
}

.progress .progress-bar{
    width: 0;
    height: 100%;
    background: linear-gradient(to right, rgb(184,2,216),  rgb(255,0,43));
}
.topProgressBar{
    top: 25px;
}
/* **************************************************** */

#topNav{
    width: 80%;
    display: flex;
    flex-direction: column;
}
#profileNav{
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: space-between;
}
#profileNav img{
    margin: 3px 80px 5px 20px;
    width: 222px;
    height: 100px;
    cursor: pointer;
}

/* **************************************************** */
.profile{
    position: relative;
}
.menu {
    display: none; 
    flex-direction: column !important;
    position: absolute;
    top: 100px;
    right: 100px;
    background: rgb(238, 238, 238);
    width: 400px;
    border-radius: 15px;
    box-shadow: 3px 3px 5px grey;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    z-index: 5000;
    opacity: 0;
    transform: translateY(80px);
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out; 
}
.menu ul{
    display: flex;
    flex-direction: column;
    justify-content: right;
    /* width: 100%; */
    list-style: none;
    padding: 0 10px;
    box-sizing: border-box;
}
.menu ul li img{
    width: 30px !important;
    height: 30px !important;
    margin-left: 10px !important;
    opacity: .6 !important;
}
.menu.activeP{
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    z-index: 55000;
}

.menu::before{
    content: '';
    position: absolute;
    top: -10px;
    right: 40px;
    background: rgb(238, 238, 238);
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.menu h3{
    text-align: center;
    padding: 20px;
    font-weight: 900;
    box-sizing: border-box;
    width: 100%;
}



.menu h3 span{
    font-size: 14px;
    color: #777;
}



.menu ul li{
    display: flex;
    align-items: center;
    padding: 10px 0;
    
}


.menu ul li a{
    text-decoration: none;
    color: #000;
} 
/* **************************************************** */

#profileNav h1{
    font-size: 0px;
    
}
#profileNav div{
    display: flex;
    flex-direction: row;
    align-items: center;
}
#profileNav #headerSearch{
    display: flex;
    
    height: 50px;
    border-radius: 5px;
    margin: 0 30px;
    background-color: #f0f0f1;
}
#profileNav #headerSearch input{ 
    height: 90%;
    width: 600px;
    padding: 0 5px;
    margin: 3px;
    border-style: none;
    background-color: #f0f0f1;
    font-size: 1.5em;
    font-weight: 200;
    line-height: 2em;
    
    /* color:#f1f1f2; */
}
.searchIcon{
    font-size: 3em;
    color: #b0b0b1;
    padding: 10px;
}


#profileNav #headerSearch ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #b0b0b1;
    opacity: 1; /* Firefox */
}
#profileNav #headerSearch :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #b0b0b1;
}
#profileNav #headerSearch ::-ms-input-placeholder { /* Microsoft Edge */
    color: #b0b0b1;
}

.awsomeIcon {
    font-size: 3em;
    color: #b0b0b1;
    padding: 10px;
}

#profileNav ul{
    margin-left: 80px;
    
}

#profileNav ul button{
    font-size: 1.1em;
    background-color: white;
    border-style: none;
    color: #474747;
    align-items: center;
    display: block;
    text-align: center;
    line-height: 20px;
}
.headCenter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#mainNav{
    height: 80px;
}
#mainNav >ul{
    /* width: 70%; */
    height: 100%;
    margin-right: 40px;
}
#mainNav >ul>li{
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 200px; */
    width: 220px;
    /* margin: 0 10px; */
    padding: 0 20px;
    font-size: 1.7rem;
    color: #474747;
}

#cirContainer{
    margin: 0 0 20px 0;
}
#topSlider{
    width: 75%;
    margin: 20px auto;
    padding: 0px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: black;
    overflow: hidden;
}
.fade {
    animation-name: fade;
    animation-duration: 5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
.dot{
    border-radius: 3 !important;
    width: 30px !important;
    height: 6px !important;
    opacity: 0.5 !important;
}
.active{
    background-color: lightsalmon !important;
    border-color: lightsalmon !important;
}
.left,.right{
    background-color: aliceblue;
    opacity: 0.5;
    width: 3%;
    transition-duration: 0.5s;
    /* z-index: 3000; */
    /* border-radius: 25px 50% 50% 25px / 25% 50% 50% 25%; */
    /* border-end-end-radius: 30%; */
}
.left:hover,.right:hover{
    opacity: 0.8;
    width: 10%;
}

#circleSlider{
    width: 75%;
    margin: 0 12.5%;
    box-sizing:content-box;
    overflow: hidden;
    /* position: relative; */
}
@keyframes mymove {
    0% {right: 0px;}
    25% {right: -11%;}
    50% {right: -11%;}
    75%{right: 0px;}
    100%{right: 0px;}
}
#circleSliderInner{
    width: 110%;
    margin: 20px 0;
    padding: 10px 0 30px 0;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    animation: mymove 10s infinite;
}

#circleSliderInner .circleBorder{
    width: 120px;
    height: 120px;
    border: 4px solid red;
    /* border-image: linear-gradient(to right, darkblue, darkorchid) ; */
    border-radius: 50%;
    /* z-index: 5000; */
}

#circleSliderInner .circleBorder >img{
    width: 90%;
    margin: 5%;
    /* z-index: 50000; */
}
#circleSliderInner .circleBorder >h5{
    text-align: center;
    padding: 5px;
    font-size: 1.1em;
}
#offerSection{
    background-color: #1e3c58;
    position: relative;
    display: block;
}
.setSize{
    width: 75%;
    height: 500px;
    margin: 0 12.5%;
    position: relative;
    overflow: hidden;
}
.OfferControl{
    position: absolute;
    top: 50%;
    /* left: 10px; */
    width: 50px;
    height: 50px;
    background-color: black;
    opacity: 0.5;
    z-index: 3000;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    transition-duration: 0.5s;
    box-shadow: 3px 3px 5px grey;
    /* justify-content: center; */
}
.OfferControl:hover{
    width: 100px;
    height: 25px;
    top: 53%;
    line-height: 25px;
    border-radius: 10px;
}

.leftControl{
    left: 10px;
}
.rightControl{
    right: 10px;
    display: none;
}
.OfferControl span{
    display: inline-block;
    /* margin-top: 16px; */
}

.sectionHead img{
    width: 10%;
    margin: 10px;
}
.sectionHead h3{
    width: 10%;
    margin: 10px;
}
.setSize .sectionHead::after{
    content:"";
    background-color: orange;
    width: 85%;
    box-sizing: border-box;
    height: 1px;
    margin-right: 10px;
    border: 1px solid orange;
    display: inline-block;
    
}
.setSize>div{
    position: absolute;
}
.setSize .absoluteOffer{
    top: 100px;
    right: 0;
    width: 250%;
    display: flex;
    /* flex-direction: row; */
    /* justify-content: space-between; */
    z-index: 2000;
    transition-duration: 0.5s;
}

.setSize .absoluteOffer a {
    margin: 0;
    padding: 10px;
    width: 235px;
    height: 400px;
    position: relative;
    /* border-radius: 5%; */
    /* overflow: hidden; */
}
a:hover{
    text-decoration: none;
}

.offer{

    box-sizing: border-box;
    height: 100%;
    background-color: white;
    border-radius: 5%;
    overflow: hidden;
}
.offer img{
    width: 90%;
    margin: 0 5%;
}
.offer p{
    text-align: center;
    margin: 0 5%;
    color: #5f5f5f;
}
.offer ul{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0;
    background-color: #f1f8ff;
    margin: 10px 0;
}
.offer ul li{
    width: 25px;
}
.offer ul li span{
    color: #1e3b58;
    text-align: center;
    padding: 5px;
    font-size: 1.1em;
}

.offer ul li::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 18px;
    background: #b39b63;
    /* position: absolute; */
    left: 3%;
    bottom: 0;
}
.price{
    width: 90%;
    margin: 0 5%;
}
.price .realPrice{
    text-decoration:line-through;
}
.price .offerPrice{
    color: red;
    font-size: 2rem;
}
.offerTimer{
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    bottom: 0;
    /* border-radius: 20px; */
}
.offerTimer .percent{
    background-color: #e47a7c;
    color: white;
    font-size: 1.5rem;
    width: 40%;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 0 0 10px 0px;
    
}

.offerTimer .timeCounter{
    background-color: red;
    color: white;
    font-size: 1.5rem;
    /* display: inline-block; */
    width: 60%;
    padding: 5px;
    direction: ltr;
    box-sizing: border-box;
    border-radius: 0 0px 0px 10px;
    /* position: absolute;
    left: 0;
    bottom: 0; */
}

#offerSection .c1{
    position: absolute;
    border-radius: 50%;
    left: 300px;
    top: 300px;
    padding: 60px;
    z-index: 1001;
    background-color: #fac03f;
}
#offerSection .c2{
    position: absolute;
    border-radius: 50%;
    left: 180px;
    top: 360px;
    padding: 50px;
    z-index: 1002;
    background-color: #1aba47;
}
#offerSection .c3{
    position: absolute;
    border-radius: 50%;
    left: 150px;
    top: 200px;
    padding: 120px;
    z-index: 1003;
    background-color: #ba24b5;
}
#offerSection .c4{
    position: absolute;
    border-radius: 50%;
    left: 130px;
    top: 200px;
    padding: 80px;
    z-index: 1004;
    background-color: #f05562;
}

#intelligence{
    background-color: #d3e3f2;
    position: relative;
    overflow: hidden;
    display: block;
}
/* 1e3b58 */
#intelligence .setSize .absoluteOffer a .offer .price p{
    color: #1e3b58;
}
#intelligence .r1{
    position: absolute;
    border-radius: 3%;
    right: 200px;
    top: -50px;
    /* padding: 150px; */
    width: 250px;
    height: 250px;
    z-index: 1004;
    background-color: #c0ddf8;
    transform: rotate(45deg);
    justify-content: center;
}
.intelienceSectionHead{

}
.intelienceSectionHead span h3::after{
    content:"";
    display: inline-block;
    position: absolute;
    /* background-color: orange; */
    width: 500%;
    right: 200px;
    /* top: 30px; */
    /* position: absolute; */
    /* height: 30px; */
    box-sizing: border-box;
    height: 1px;
    margin-right: 10px;
    border: 1px solid black;
    display: inline-block;
}
#intelligence::before{
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #f5f5f5;
    width: 500%;
    top: 0;
    right: 250px;
    /* top: 30px; */
    /* position: absolute; */
    /* height: 30px; */
    box-sizing: border-box;
    height: 10px;
    margin-right: 10px;
    /* border: 1px solid #f5f5f5; */
    display: inline-block;
}

#intelligence .r1 h3{
    text-align: center;
    padding: 40px;
    transform: rotate(-45deg);
    /* position: absolute;
    top: 20px;
    right: 150px; */
    /* z-index: 3000; */
    color: #1e3b58;
}
#centerBanner .setSize{
    position:static;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#centerBanner .setSize img{
    width: 48%;
    /* height: 45%; */
    border-radius: 5px;
    margin: 20px 10px;
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 16%);
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.goToTop{
    display: flex;
    /* width: 50%;
    height: 50px; */
    margin: 20px auto;
    color: #1e3b58;
    outline: none;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    font-size: 1.5rem;
    line-height: 4em;
}
footer{
    background-color: #0d1e2d;
    box-shadow: 3px 0px 10px grey;
}
footer .footerdiv{
    width: 75%;
    margin: 0 12.5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}
footer .footerdiv div{
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    /* justify-content: center; */
}
footer .footerdiv div p{
    color: #c9a352;
    font-size: 2rem;
    line-height: 2em;
    /* padding: 30px auto auto 100px; */
    display: flex;
    justify-content: center;
}
footer .footerdiv div ul{
    display: flex;
    flex-direction: column;
}
footer .footerdiv div ul li a{
    color: white;
    font-size: 1.5rem; 
    line-height: 2.5em;

}
/******************************************************************/
#behindNav{
    position: fixed;
    bottom: 50px;
    right: 30px;
}

#behindNav ul{
    list-style: none;
}

#behindNav ul li{
    color: #fff;
    margin: 20px;
    cursor: pointer;
    transform: translateX(150%);
    -webkit-transform: translateX(150%);
    -moz-transform: translateX(150%);
    -ms-transform: translateX(150%);
    -o-transform: translateX(150%);
    transition: transform .3s linear;
    -webkit-transition: transform .3s linear;
    -moz-transition: transform .3s linear;
    -ms-transition: transform .3s linear;
    -o-transition: transform .3s linear;
}

#behindNav ul li svg{
    font-size: 20px;
    margin-left: 10px;
}

#behindNav ul li + li{
    margin-right: 35px;
    transform: translateX(200%);
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
}

#behindNav ul li + li + li{
    margin-right: 60px;
    transform: translateX(250%);
    -webkit-transform: translateX(250%);
    -moz-transform: translateX(250%);
    -ms-transform: translateX(250%);
    -o-transform: translateX(250%);
}

.loader{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.loader.hidden{
    animation: fadeOut 1s;
    -webkit-animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut{
    100%{
        opacity: 0;
        visibility: hidden;
    }
}
.activeNav{
    /* display: inline-block; */
    background: #c70808; 
}
/* *********************************************************** */
.field_outer{
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;

}

.field_outer .field{
    width: 25%;
}
.field_outer .field textarea{
    width: 100%;
    height: 200px;
    border: 2px solid #999;
    padding: 10px;
    /* font-family: 'vazir'; */
    resize: none;
}

.field_outer #textarea-remaining{
    width: 100%;
    text-align: center;
    position: absolute;
    left: -10px;
    bottom: 30px;
    color: #999;
}
/* ******************************************************************************* */

.hidden1 {
    visibility: hidden;
}

.alert-box {
    position: absolute;
    top: 50px;
    right: 0;
    width: 270px;
    padding: 20px 30px;
    background: green;
    color: #fff;
    font-size: 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 500000;
}

.alert-box .close-btn {
    cursor: pointer;
}


.alert-box.hide {
    animation: hideAlert 1s ease forwards;
    -webkit-animation: hideAlert 1s ease forwards;
}


@keyframes hideAlert {
    0% {
        transform: translateX(-5%);
        -webkit-transform: translateX(-5%);
        -moz-transform: translateX(-5%);
        -ms-transform: translateX(-5%);
        -o-transform: translateX(-5%);
}

    40% {
        transform: translateX(-0%);
        -webkit-transform: translateX(-0%);
        -moz-transform: translateX(-0%);
        -ms-transform: translateX(-0%);
        -o-transform: translateX(-0%);
}

    80% {
        transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        -moz-transform: translateX(-15%);
        -ms-transform: translateX(-15%);
        -o-transform: translateX(-15%);
}

    100% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
}
}



.alert-box.show {
    animation: showAlert 1s ease forwards;
    -webkit-animation: showAlert 1s ease forwards;
}

@keyframes showAlert {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }

    40% {
        transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        -moz-transform: translateX(-15%);
        -ms-transform: translateX(-15%);
        -o-transform: translateX(-15%);
    }

    80% {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }

    100% {
        transform: translateX(-5%);
        -webkit-transform: translateX(-5%);
        -moz-transform: translateX(-5%);
        -ms-transform: translateX(-5%);
        -o-transform: translateX(-5%);
    }
}


.alert-box.show::before{
    content: '';
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #32ac32;
    bottom: 0;
    left: 0;
    animation: hideMaster 5s linear;
    -webkit-animation: hideMaster 5s linear;
}

@keyframes hideMaster{
    0%{
        width: 100%;
    }
    100%{
        width: 0;
    }
}
/* ********************************* */
#underFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.counter-section{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.counter-section .counter-box{
    width: calc(25% - 20px);
    text-align: center;
    color: #fff;
}


.counter-section .counter-box svg{
    font-size: 60px;
    color: #faa000;
}

.counter-section .counter-box .counter{
    font-size: 30px;
    padding: 20px 0;
}

.counter-section .counter-box p{
    font-size: 25px;
}
/* ************************************************************ */
.progress2-section{
    position: fixed;
    left: 20px;
    top: -10px;
    width: 45px;
    height: 20%;
    display: flex;
    justify-content: space-between;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    z-index: 50000;
}

.progress2-bar-wrap{
    position: relative;
    width: 5px;
    border: 1px solid black;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    background-color: rgb(70, 70, 70);
}

.progress2-bar{
    position: absolute;
    width: 100%;
    height: 0%;
    background: rgb(189, 189, 189);
    bottom: 0;
}
.progress2-num{
    color: #fff;
}


.wrapper{
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    z-index: 50000;
}


.wrapper .logo{
    display: flex;
}

.wrapper .logo img{
    width: 60px;
    height: 60px;
    margin: 0 10px;
    opacity: .3;
    transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
}

/* ********************************************************** */

.slider3 {
    border: 1px solid #333;
    color: #fff;
    padding: 30px;
    width: 600px;
    height: 250px;
    text-align: center;
    margin: auto;
}


.slider3 .slide3 {
    width: 100%;
    display: none;
}


.slider3 .slide3.active {
    display: block;
    animation: slide 1s ease;
    -webkit-animation: slide 1s ease;
}


@keyframes slide3 {
    0% {
        opacity: 0;
        transform: translateX(-15px);
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        -o-transform: translateX(-15px);
    }
    100%{
       opacity: 1;
       transform: translateX(0);
       -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
       -ms-transform: translateX(0);
       -o-transform: translateX(0);
}
}

.slider3 .slide3 p {
    font-size: 18px;
    word-spacing: 2px;
}




.slider3 .slide3 .client-info h3 {
    font-size: 18px;
    margin: 60px 0 10px 0;
}

.slider3 .slide3 .client-info span {
    color: #11bead;
    font-size: 14px;
}


.slider-indicator {
    padding-top: 30px;
    text-align: center;
}

.slider-indicator img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    opacity: .2;
    border: 4px solid #fff;
}

.slider-indicator img.active {
    opacity: 1;
}


/* ************************* */
.typeSpan{
    color: #c91231;
    font-weight: bold;
    position: absolute;
    right: 170px;
    bottom: 15px;
}

.typeSpan::after{
    content: '';
    background: #c91231;
    border-right: 4px solid #c91231;
    margin-right: 5px;
    animation: blink .5s infinite ease;
    -webkit-animation: blink .5s infinite ease;
}
@keyframes blink{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/* ****************************************** */
.autoHideNav{
    z-index: 500000;
    position: relative;
    /* top: 50px; */
    /* right: 100px; */
}

.autoHideNav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    box-shadow: -7px 9px 17px 0px #00000017;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    padding: 20px;
    
}

.autoHideNav.show ul{
    width: 450px;
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
}

.autoHideNav ul li a{
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
}


.autoHideNav .close{
    position: absolute;
    top: 6%;
    right: -80px;
    width: 60px;
    height: 60px;
    background-image: url('../img/hamburger.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 0px 17px 0px #00000017;
    background-color: #ffff;
    border: 1px solid black;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.autoHideNav .closeBtn{
    transform: rotate(360deg);
    background-image: url('../img/close.svg');
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}