::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #E9572B;
}

::selection {
    color: #fff;
    background: #E9572B;
  }


*{
    margin: 0;
    padding: 0;
    font-family: 'Gilroy';
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
p{
    font-family: 'Gilroy-Medium';
    line-height: 1.5;
}
img:hover{
    cursor: pointer;
}
/* defealt */
.text-red{
    color: #E9572B;
}
.text-black{
    color: #242021;
}
.text-white{
    color: #fff;
}
.bg-grey{
    background-color: #F3F3F3;
}
/* defealt */

/* scroll */
/* width */
::-webkit-scrollbar {
    width: 15px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #e9734f8c; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #E9572B; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #983113; 
  }

/* scroll */


/* main */
.main{
    width: 100%;
    height: 900px;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

/* navbar */
.nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
    transition: all 0.5s;
}
.nav-left{
    display: flex;
    align-items: center;
}
.nav-menu a{
    text-decoration: none;
    color: #242021;
    font-size: 20px;
    font-weight: 600;
    padding: 0 30px;
    transition: all 0.6s;
    display: flex;
}
.nav-menu a i{
    display: block;
    padding: 0  10px;
    transition: all 0.3s;
}

.nav-menu a:hover{
    color: #E9572B;
}
.dropdown a:hover i{
    transform: rotate(180deg);
}

.nav-menu-hover{
    display: none;
    position: absolute;
    background-color: #fff;
    transition: all 0.3s;
    border-radius:5px;
    box-shadow: 0 1px 10px 1px grey;
    z-index:100;
}
.nav-menu-hover a{
    border-radius:5px;
    font-size: 16px;
    border-bottom: 1px solid #F3F3F3;
    padding: 10px 10px;
    font-weight: 500;
}
/* .dropdown:hover .nav-menu-hover{
    display: block;
} */


.nav-right{
    display: flex;
    align-items: center;
}
.btn-menu button{
    background:  linear-gradient(95.38deg, #E9572B 3.84%, #B7573B 109.54%);
    color: #fff;
    padding: 10px 40px;
    border: none;
    box-shadow: 0px 20px 40px rgba(233, 87, 43, 0.2);
    border-radius: 60px;
    font-size: 20px;
    transition: all 0.6s;
    cursor: pointer;
    text-transform: capitalize;
}
.btn-menu button:hover{
    background:  linear-gradient(95.38deg, #B7573B 3.84%, #E9572B 110.54%);
}

/* responsive menu */

.menu-responsive{
    display: none;
    background-color: #E9572B;
    padding: 10px;
    color: #fff;
    transition: all 0.6s;
    border-radius:5px;
}


/* responsive menu */


.main-line{
    border: 1px solid #fff;
}



/* navbar */
/* main */


/* responsive menu */
.window{
    width: 100%;
    height: 100%;
    background-color: rgb(248, 248, 248);
    opacity: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
}
.res-menu{
    width: 50%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0 10px 10px 0 #808080;
    transition: all 0.7s;
    display: none;
    z-index: 1000;
}
.res-item-close{
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    font-size: 30px;
    color: #E9572B;
}
.res-item-close i{
    cursor: pointer;
}
.container-res{
    max-width: 400px;
    margin: 0 auto;
}
.res-item-a a{
    display: block;
    border: none;
    border-bottom: 1px solid #c2c2c2;
    padding: 10px 0;
    text-decoration: none;
    color: #242021;
    font-weight: bold;
}
.btn-menu a {
    border: none;
}


/* responsive menu */
/* main text */
.main-text{
    width: 100%;
    display: flex;
    justify-content: center;
}
.main-text-in{
    width: 65%;
    text-align: center;
}
.main-text-in h1{
    font-size: 59px;
    padding: 40px 0 10px 0 ;
}
.main-text-in span{
    color: #E9572B;
}
.main-text-in p{
    padding: 10px 0 20px 0;
    font-size: 22px;
    color: #8B7C7C;
    line-height: 1.6;
}

/* main text */


/* main img */

.main-img{
    padding: 20px 0 0 0 ;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* main img */
.index-shape{
    left: -20px;
}

/* main vertical */

.main-vertical{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #983113;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 100;
    cursor: pointer;
}
.main-ver-shape{
    margin: 15px 0 0 0;
    width: 2px;
    height: 75px;
    background: #983113;
}
/* main vertical */


/* absolute */
.main-check{
    position: absolute;
    top: 135px;
    left: 380px;
    color: #E9572B;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
    animation-name: main-check;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
/*.main-check:hover{*/
/*    background-color: #E9572B;*/
/*    color: #fff;*/
/*}*/

.main-dollar-sign{
    position: absolute;
    top: 170px;
    left: 760px;
}

.main-dollar-sign div{
    color:#fff;
    background-color: #E9572B;
    width: 20px;
    height: 20px;
    font-size: 14px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(130deg);
}
.main-shape{
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transform: matrix(0.68, 0.73, -0.73, 0.68, 0, 0);
    transition: all 0.5s;
    animation-name: main-check;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
    box-shadow: 0px 5px 30px rgba(233, 87, 43, 0.1);
}
/*.main-shape:hover{*/
/*    background-color: #E9572B;*/
/*}*/
.main-check-2{
    position: absolute;
    bottom: 100px;
    left: 130px;
    color: #E9572B;
    background-color: #fff;
    padding: 13px 15px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.5s;
    animation-name: main-check;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.about-check-2{
    padding:10px 15px;
}
/*.main-check-2:hover{*/
/*    background-color: #E9572B;*/
/*    color: #fff;*/
/*}*/
.main-dollar-sign-2{
    position: absolute;
    bottom: 0;
    left: 260px;
}
.main-dollar-sign-2 div{
    color:#fff;
    background-color: #E9572B;
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: main-check;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}
/*.main-dollar-sign-2:hover{*/
/*    cursor: pointer;*/
/*}*/
.main-dollar-sign-3{
    position: absolute;
    bottom: 30px;
    left: 600px;
}
.main-dollar-sign-3 div {
    color:#E9572B;
    background-color:#fff;
    width: 30px;
    height: 30px;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: main-check;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}
.main-dollar-sign-3 div img{
    transform:rotate(-50deg);
}
.main-check-3{
    position: absolute;
    bottom: 0;
    left: 950px;
    color: #fff;
    background-color: #E9572B;
    padding: 10px;
    font-size:14px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.5s;
    animation-name: main-check;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
/*.main-check-3:hover{*/
/*    background-color: #fff;*/
/*}*/








@keyframes main-check {
    0%{    box-shadow: 0 3px 10px #E9572B; };
    25%{    box-shadow: 0 3px 10px #E9572B; };
    50%{    box-shadow: 0 3px 10px #E9572B; };
    100%{   box-shadow: 0 3px 10px #c8390d;}
}




/* absolute */

/* short about */
.short-about{
    width: 100%;
    margin: 500px 0 0 0;
}
.short-about-content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.short-about-left{
    width: 50%;
    position: relative;
}
.short-about-right{
    width: 50%;
    font-size: 22px;
}
.short-about-right{
    text-align: left;
}
.short-about-left img{
    width: 520px;
    height: 520px;

}
.short-about-main-shape-1{
    position: absolute;
    bottom: 100px;
    left: 0;
}

.short-about-main-shape{
    position: absolute;
    top: 100px;
    left: 300px;
}
.main-shape-1{
    background-color: #E9572B;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    font-size:22px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transform: matrix(0.68, 0.73, -0.73, 0.68, 0, 0);
    transition: all 0.5s;
    animation-name: main-check;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
    box-shadow: 0px 5px 30px rgba(233, 87, 43, 0.1);
}
.main-shape-1 div i{
    transform: rotate(-50deg);
}
/*.main-shape-1:hover{*/
/*    color: #E9572B;*/
/*    background-color: #fff;*/
/*}*/
.short-about-shape{
    width: 100px;
    height: 3px;
    background-color: #b7583b69;
}
.short-about-right h5{
    color: #242021;
    font-size: 22px;
    margin: 30px 0 30px 0;
}
.short-about-right h1{
    font-size: 46px;
    color: #242021;
    margin: 10px 0;
}
.short-about-right h1 span{
    color: #E9572B;
}
.short-about-right p{
    color: #8B7C7C;
    margin: 0 0 50px 0;
}
.short-about-btn{
    display: flex;
    margin: 10px 0 30px 0;
}
.short-about-btn button{
    margin:  0 10px 0 0;
}
.btn-menu-1 button{
    background:  #e9572b38;
    color: #E9572B;
    padding: 10px 40px;
    border: none;
    box-shadow: 0px 20px 40px rgba(233, 87, 43, 0.2);
    border-radius: 60px;
    font-size: 20px;
    transition: all 0.6s;
    cursor: pointer;
}
/* short about */

/* card 1 */
.card-1{
    width: 100%;
    background-color: #F3F3F3;
    margin: 100px 0;
}
.card-1-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    /* flex-wrap: wrap; */
    padding: 80px 0;
}
.card-1-card{
    width: 370px;
    height: 440px;
    margin: 30px 0;
    background-color: #fff;
    box-shadow: 0px 20px 47px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s;
}

.card-1-card .card-1-card-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    font-size: 30px;
    background-color: #e9572b28;
    color: #E9572B;
    border-radius: 20px;
    margin: 40px 0;
}

.card-1-card h1{
    font-size: 72px;
    color: #242021;
}
.card-1-text-1
{
    font-family: 'Gilroy-Medium';
    font-size: 15px;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #8B7C7C;
    font-weight: 200;
    margin-bottom: 50px;
}
.card-1-text{
    font-family: 'Gilroy-Medium';
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #8B7C7C;
    font-weight: 200;
}
.card-1-card-icon-last{
    font-size: 22px;
    color: #8b7c7c57;
}


.card-1-active{
    width: 400px;
    background-color: #E9572B;
    color: #fff;
    height: 480px;
}
.card-1-active .card-1-card-icon{
    background-color: #fff;
}
.card-1-active h1{
    color: #fff;
}
.card-1-active .card-1-text-1{
    color: #fff;
}
.card-1-active .card-1-text{
    color: #fff;
}
.card-1-active .card-1-card-icon-last{
    color: #fff;
}


/*.card-1-card:hover{*/
/*    cursor: pointer;*/
/*    background-color: #E9572B;*/
/*    color: #fff;*/
/*    height: 480px;*/
/*}*/
/*.card-1-card:hover .card-1-card-icon{*/
/*    background-color: #fff;    */
/*}*/
/*.card-1-card:hover .card-1-text-1{*/
/*    color: #fff;*/
/*}*/
/*.card-1-card:hover .card-1-text{*/
/*    color: #fff;*/
/*}*/
/*.card-1-card:hover h1{*/
/*    color: #fff;*/
/*}*/
/*.card-1-card:hover .card-1-card-icon-last{*/
/*    color: #fff;*/
/*}*/


/* card 1 */


/* main phone */

.main-phones{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    overflow: hidden;
    padding: 50px 0 150px 0;
    z-index:1;
}
.main-phones-img{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-top: 100px;
}
.main-phones-img img{
    position: absolute;
    right: -100px;
    height: auto;
    /* width: 520px;
    height: 650px; */
}
.main-phones-shape{
    bottom: -40px;
    left: 80px;
    color: #E9572B;
    background-color: #fff;
}
/*.main-phones-shape:hover{*/
/*    color: #fff;*/
/*    background-color: #E9572B;*/
/*}*/
/* main phone */


.footer{
    width: 100%;
}

.footer-content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0 0 0 ;
}
.footer-con{
    width: 25%;
}
.footer-con h5 a{
    color: #242021;
    font-size: 20px;
    padding: 0 0 50px 0;
}
.footer-con h5{
    padding: 0 0 50px 0;
}
.footer-con img{
    width: 190px;
    height: 70px;
    margin-bottom: 50px;
}
.footer-con a , p{
    color: #8B7C7C;
    font-size: 18px;
    padding: 0 0 18px 0;
    transition: all 0.5s;
}
.footer-con a:hover{
    transition: all 0.5s;
}
.footer-con a:hover{
    color: #242424;
}
.footer i{
    padding: 0 10px 0 0;
}





.address{
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media i{
    padding: 0 20px 0 0;
    color: #8B7C7C;
}
.social-media i:hover{
    color: #242424;
    cursor: pointer;
}


.footer-last{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top:50px;
}
.footer-last-left p{
    font-size: 16px;
}
.footer-last-right a{
    font-size: 16px;
    /*color: #8B7C7C;*/
    padding: 0 10px;
}
.footer-last div a{
    color: #242424;
}

/* about page */
.about-main h1{
    text-transform: uppercase;
    padding: 70px 0 10px 0;
}
.about-main p{
    padding: 20px 0 80px 0;
}
.about-shape{
    width: 200px;
    height: 5px;
    margin: 0 auto;
    background-color: #e9572b3d;
    /* borderbo: 1px solid #E9572B; */
}
.about-main-img img{
    height: auto;
    width: 1100px;
}
.about-dollar-1{
    top: 150px;
    left: 130px;
}
.about-dollar-2{
    bottom: 100px;
    left: 450px;
    background-color: #E9572B;
    color: #fff;
}
.about-dollar-2 .fa-wallet{
    transform: rotate(-50deg);
}
/*.about-dollar-2:hover{*/
/*    background-color: #fff;*/
/*    color: #E9572B;*/
/*}*/
.about-dollar-1 div{
    background-color: #fff;
    color: #E9572B;
}
.about-dollar-1 .fa-wallet{
    transform: rotate(-50deg);
}

/* about-short-about */

.about-page-short img{
    height: auto;
    width: 500px;
}
.about-page-about{
    margin: 400px 0  0  0;
}
.about-page-short-i-2{
    top: 50px;
    left: 400px;
}
.about-page-short-i-1{
    left: 100px;
    bottom: 130px;
}
.about-page-short-i-2 i{
    transform: rotate(120deg);
    font-size:16px;
}

.about-page-short-i-3{
    background-color: #fff;
    color: #E9572B;
    bottom: 210px;
    left: 400px;
}

.about-page-short-i-3 i{
    transform: rotate(-50deg);
    font-size: 40px;
}
/*.about-page-short-i-3:hover{*/
/*    color: #fff;*/
/*}*/
.about-page-about .short-about-right h1{
    font-size: 36px;
}
.about-page-about .short-about-right p{
    line-height: 2;
}
.about-page-short img{
    width: 500px;
    /* height: 660px; */
    height: auto;
}

/* avbout-page-about-2 */
.about-page-about-2{
    margin: 0 ;
}
.about-page-short-i-2-1{
    left: 10px;
    transform: rotate(0deg);
}

.about-page-about-2 .short-about-right p{
    line-height: 2;
}
/* avbout-page-about-2 */

/* about map */
.about-map{
    width: 100%;
    /* height: 500p; */
    background-color: #F3F3F3;
    margin: 80px 0 0 0;
}
.about-map-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.about-map-con{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.absolute-about-con{
    position: absolute;
    top:50px;

}
.about-map-con h5{
    padding: 50px 0 0 0;
    font-size: 24px;
    font-family: 'Gilroy-Bold';
}
.about-map-con h3{
    padding: 30px;
    font-size: 46px;
}
.about-map-con h3 span{
    color: #E9572B;
}
.about-map-con-btn{
    position: absolute;
    bottom: 100px;
}


.absolute-country{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center ;

}
.uz-country{
    top: 390px;
    left: 800px;
}
.country-text{
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 10px 10px;
    text-transform: uppercase;
    /* margin: 10px  10px; */
    border-radius: 10px;
    box-shadow: 0 1px 15px 3px #d39887;
    animation-name: icon-name;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    font-family: 'Gilroy-Medium';
}
.country-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.country-img:hover{
    cursor: pointer;
}
.uz-country .country-icon{
    transform: rotate(180deg);
    padding: 0 10px;
}
.eg-country .country-icon{
    transform: rotate(180deg);
    padding: 0 10px;
}

.tj-country .country-icon{
    transform: rotate(90deg);
}
.ae-country .country-icon{
    transform: rotate(-90deg);
}
.country-icon{
    animation-name: country-icon;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}


.eg-country{
    top: 460px;
}
.tj-country{
    top: 440px;
    left: 730px;
    flex-direction: column;
}
.ae-country{
    top: 360px;
    left: 650px;
    flex-direction: column;
}


@keyframes  icon-name {
    0%{
        box-shadow: 0 1px 15px 3px #d39887;
    }
    25%{
        box-shadow: 0 1px 15px 3px #ce7b65;
    }
    50%{
        box-shadow: 0 1px 15px 3px #cf6a4e;
    }
    75%{
        box-shadow: 0 1px 15px 3px #ac4528;
    }
    100%{
        box-shadow: 0 1px 15px 3px #9b3417;
    }
}

@keyframes  country-icon {
    0%{
        color: #ce7b65;
    }
    25%{
        color:#b15b43;
    }
    50%{
        color: #c7583a;
    }
    75%{
        color:  #a73314;
    }
    100%{
       color: #E9572B;
    }
}


/* about map */


/* about page */


/* label page */
/* .label-phones-img img{
    right: -200px;
} */


.label-about-right{
    position: relative;
}
.label-vertical{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #983113;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 100;
    cursor: pointer;
    left: -50px;
    top: 220px;
}
.label-phones-i{
    top: 150px;
}
/* .label-main-right img{
} */

.label-main{
    height: 700px;
}

.label-page-about{
    margin: 100px 0;
}

.label-about-about-1{
    top:100px;
}

.label-page-short-left{
    display: flex;
    justify-content: flex-end;
}

.card-2{
    width: 100%;
    background-color: #F3F3F3;
}
.card-2 h1{
    text-align: center;
    font-family: 'Gilroy';
    font-size: 46px;
    padding: 70px 0 50px 0;
}
.card-2-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0 70px 0;
}
.card-2-con{
    background-color: #fff;
    width: 300px;
    height: 230px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
    transition: all 0.5s;
}
.card-2-con-in{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.card-2-con-in div:first-child{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-2-con-in div img{
    padding: 10px;
    border-radius: 10px;
}
.card-2-con-in p{
    font-size: 20px;
    margin: 10px 0;
}

.card-2-shape{
    width: 50px;
    height: 5px;
    background-color: #E9572B;
}
.card-2-con:hover{
    cursor: pointer;
    box-shadow: 0px 20px 47px rgba(0, 0, 0, 0.05);
    background-color: #E9572B;
}
.card-2-con:hover  .card-2-con-in div:first-child img{
    background-color: #fff;
}
.card-2-con:hover .card-2-con-in p{
    color: #fff;
}
.card-2-con:hover .card-2-shape{
    background-color: #d39887;
}

.label-4-2 i{
    color: #E9572B;
    transform: rotate(-50deg);
}
/*.label-4-2:hover{*/
/*    color: #fff;*/
/*}*/
.label-4-3{
    transform: rotate(50deg);
}



.label-page-about-1{
    margin: 0;
}



/* card 3 */

.card-3{
    width: 100%;
    background-color: #F3F3F3;
    padding: 10px 0 90px 0;
}
.card-3 h1{
    padding: 70px 0 70px 0;
    font-size: 46px;
    width: 70%;
    text-align: center;
    margin: 0 auto;
}
.card-3 h1 span{
    color: #E9572B;
}
.card-3-in{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}
.card-3-con{
    background-color: #fff;
    width: 570px;
    height: 135px;
    margin: 30px 0;
    background: #FFFFFF;
    box-shadow: 0px 20px 40px rgba(138, 149, 158, 0.15);
    transition: all 0.5s;
}
.card-3-con-in{
    height: 135px;
    background-color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}
.card-3-con-in{
    font-size: 22px;
    font-family: 'Gilroy-Medium';
}
.card-3-con-in i{
    color: #E9572B;
    padding: 0 20px;
}


.card-3-con:hover{
    transform: translate(0,-10px);
    cursor: pointer;
}

/* card 3 */
.main-text-in h4{
    font-size: 46px;
    padding: 20px 0;
}
.main-text-in h5{
    font-size: 22px;
    padding: 120px 0 0 0;
}


/* label page */

/* wallet page */
.wallet-page-about-1  .short-about-right p{
    margin: 0;
}

/* card 4 */
.card-4{
    width: 100%;
    margin: 30px 0 100px 0;
}
.card-4-content{
    display: flex;
    justify-content: center;
}
.card-4-con{
    display: flex;
    background-color: #fff;
    box-shadow: 0px 30px 60px rgba(138, 149, 158, 0.15);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.5s;
    flex-wrap: wrap;
}
.card-4-con img{
    padding: 5px;
    transition: all 0.5s;
    width: 245px;
    height: 205px;
}
.card-4-con img:hover{
    cursor: pointer;
    transform: translate(0 , -10px);
}
/* card 4 */

.partners-about-left img{
    width: 750px;
    height: 450px;
    right: -100px;
}
.partners-phones-1{
    top: 30px;
    left: 180px;
}
.partners-phones-2{
    top: -230px;
    left: 600px;
}
.partners-phones-3{
    bottom: -200px;
    left: 500px;
}
.card-5-partners{
    width: 50%;
}
.card-5-partners h5{
    width: 180px;
    padding: 40px 0 0 0;
    font-size: 22px;
    color: #E9572B;
}
.card-5-partners h5 div{
    margin: 10px 0 0 0;
}
.card-5-partners h1{
    padding: 20px 0 0 0;
    font-size: 46px;
}

.card-5-card p{
    padding: 10px 50px ;
    font-size: 19px;
}



/* card 5 */

.card-5-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}
.card-5-con{
    width: 360px;
    /* height: 380px; */
    background-color: #fff;
    box-shadow: 0px 30px 60px rgba(138, 149, 158, 0.15);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 30px 30px 0;
}

.card-5-con-icon{
    font-size: 40px;
    color: #E9572B;
    margin-top: 10px 0;
    padding: 50px 0 5px 0;
}
.card-5-con p{
    font-size: 18px;
    padding: 20px 30px ;
}
.card-5-img{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
    transition: all 0.5s;
}
.card-5-img img{
    padding: 0 5px 0 15px;
}
.person img:first-child{
    padding: 0 7px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.card-5-con  h4{
    color: #E9572B;
    padding: 0 0 50px 0;
}
.card-5-shape{
    width: 50px;
    height: 5px;
    background-color: #ce7b65;
    margin: 10px 0;
}
/*.card-5-con:hover{*/
/*    cursor: pointer;*/
/*    background-color: #E9572B;*/
/*    color: #fff;*/
/*    padding: 10px 0;*/
/*    transition: all 0.5s;*/
/*}*/
/*.card-5-con:hover p{*/
/*    color: #fff;*/
/*}*/
/*.card-5-con:hover .card-5-con-icon i{*/
/*    color: #fff;*/
/*}*/
/*.card-5-con:hover  h4{*/
/*    color: #fff;*/
/*}*/
.card-5-last{
    width: 40%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:0 auto;
    padding: 0 0 70px;
}
.card-5-last h3{
    padding: 0 0 10px 0;
}
/* card 5 */
.card-form{
    width: 100%;
}
.card-form-content{
    display: flex;
    justify-content: space-between;
}
.card-form-left{
    position: relative;
}
.card-form-left h2{
    font-size: 46px;
    text-transform: uppercase;
    padding: 0  0  5px 0;
}
.card-form-left div img{
    position: absolute;
    left: -100px;
    width: 750px;
    height: 650px;
}
.card-form-left p{
    font-size: 19px;
    width: 80%;
    padding: 0 0 20px 0;
}
label{
    display: block;
}
.card-form-right div{
    padding: 20px 0 0 0 ;
}


.form-1{
    display: flex;
    justify-content: space-between;
    padding: 30px 0 0 0;
}
.card-form-right{
    width: 50%;
}
.card-form-right label{
    font-size: 19px;
    font-family: 'Gilroy-Medium';
    color: #8E909F;
    padding: 0 0 12px 0;
}
.card-form-right input{
    width: 250px;
    height: 60px;
    border-radius: 50px;
    background-color: #FAFBFC;
    border: none;
    padding: 0 30px;
}
#email , #website , #companyname{
    width: 100%;
}
.partners-footer{
    margin-top: 157px;
}
/* wallet page*/


/* software page */
.software-about{
    padding: 0;
}
.software-about-right h4{
    padding: 20px 0 20px 0;
}
.software-about-right h4 span{
    color: #E9572B;
}
.software-main{
    height: 750px;
}
.software-about-right .btn-menu{
    margin: 50px 0;
}

.software-page-about{
    margin: 90px 0;
}
.software-page-about-i-1{
    bottom: 320px;
    left:270px;
}
.software-page-about-i-2{
    top: 250px;
    left: 300px;
}
.software-page-about-i-3{
    left: 450px;
}
.software-page-about-i-3 i{
    font-size: 20px;
}
.software-phones-2{
    top:180px;
    left: -50px;
}
.software-about-left{
    height:auto;
}





/*.software-phones-1{*/
/*    z-index:-1;*/
/*}*/

/* key */
.key{
    width: 100%;
    background-color: #F3F3F3;
    position: relative;
}
.key h2 span{
    color: #E9572B;
}
.key-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.key h2{
    font-size: 36px;
    position: absolute;
    top: 100px;
}
.key-content-con-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.key-content-con-img img{
    width: 420px;
    height: 750px ;
}
.key-content-con{
    width: 600px;
    padding: 0 10px 0 0;
}
.key-content-con-in{
    display: flex;
    justify-content: flex-start;
} 
.key-content-con-in div i{
    color: #E9572B;
    font-size: 22px;
}
.key-content-con-in div {
    padding: 0 10px 0 0;
}
.key-content-con-in p{
    font-size: 22px;
    color: #242021;
    font-family: 'Gilroy-Medium';
}
.key-content-con-in{
    padding: 20px 0 0 0;
}
/* key */


/* key 2 */
.key-2{
    width: 100%;
    margin: 100px 0 0  0;
}
.key-2 h1{
    width: 30%;
    padding: 20px 0 40px 0;
}
.key-2 h1 span{
    color: #E9572B;
}
.key-2  h5{
    font-size: 20px;
}
.key-2  h5 div{
    margin: 5px 0;
}
.key-2-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.key-left{
    padding: 30px 0 0 0;
}
.key-card-left{
    display: flex;
    font-size: 22px;
    font-family: 'Gilroy-Medium';
    padding: 0 0 20px 0;
    width: 80%;
}
.key-card-left div i{
    color: #E9572B;
    padding: 0  30px 0 0;
}
.key-card-left div p{
    font-size: 22px;
}
.key-right img{
    width: 490px;
    height: 700px;
}
.text-software{
    margin: 70px 0;
    padding: 10px;
}
/* key 2 */

.message{
    width: 100%;
    text-align: center;
}
.message-content{
    width: 100%;
    background-color: #F3F3F3;
    margin: 50px 0;
}
.message-content p{
    font-size: 22px;
    font-family: 'Gilroy-Medium';
    color: #242021;
    text-align: center;
    padding: 20px;
}
.btn-total{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-total button{
    padding: 22px;
    margin: 0 25px;
}
.btn-total .transparent-btn button{
    background: transparent;
    border: 2px solid #E9572B;
    color: #E9572B;
    font-weight: bold;
    padding: 20px;
}

/* software page */
.index-shape{
    left:30px;
    top:170px;
}

.partner-main{
    height:115px;
}







/* media */
@media (min-width:1440px){
    .container{
        max-width: 1200px;
    }
    .main-img-in img{
        width: 1100px;
    }
    .main-shape{
        width: 60px;
        height: 60px;
    }
    .main-phones-shape{
        left: 130px;
    }

    .label-phones-i{
        top: 150px;
    }
    .label-dollar-sign-2{
        top: 230px;
        left: 590px;
    }
    .label-about-about-1{
        top:100px;
    }
    .label-about-about-1{
        top:100px;
        left: 20px;
    }
    .label-about-about-1-1{
        top: 150px;
        left: 450px;
    }
    .label-about-about-1-2{
        top: 500px;
        left: 150px;
    }
    .label-4-1{
        top: 400px;
    }
    .label-4-2{
        top: 230px;
        left: 350px;
    }
    .label-4-3{
        top: 620px;
        left: 420px;
    }
    .wallet-about{
        margin: -20px 0 ;
        /* padding: 250px 0 0 0; */
    }
    .wallet-main{
        height: 800px;
        margin: -20px 0 0 0;
    }
    .wallet-about-content{
        height: 500px;
    }
    /* .partners-page-about-content  .label-page-short img{
        width: 750px;
    } */
    /* .software-about{
        padding: 90px 0;
    } */   
    .partners-phones-1{
        left:-15px;
    }
    .index-shape{
    left:30px;
    top:170px;
}

}
@media (max-width:1440px){
    .container{
        max-width: 1200px;
    }
    .main-img-in img{
        width: 1100px;
    }
    .main-shape{
        width: 60px;
        height: 60px;
    }
    .main-phones-img img{
        right: -180px;
    }
    .main-phones-shape{
        left: 150px;
    }
    .label-dollar-sign-2{
        top: 200px;
        left: 600px;
    }
    .label-about-about-1{
        top:100px;
        left: 10px;
    }
    .label-about-about-1-1{
        top: 150px;
        left: 450px;
    }
    .label-about-about-1-2{
        top: 500px;
        left: 150px;
    }
    .label-4-1{
        top: 400px;
    }
    .label-4-2{
        top: 230px;
        left: 350px;
    }
    .label-4-3{
        top: 620px;
        left: 420px;
    }
    /* .main-phones{
        padding:180px;
    } */
    .wallet-phones-img img{
        right: -286px;
        width: 700px;
        height: 500px;
    }
    .wallet-about{
        padding: 105px 0 ;
    }
    .card-form-left div img{
        left: -120px;
    }
    .partners-about-left img{
        right: -240px;
    }
    /* .software-about{
        padding: 90px 0;
    } */.index-shape{
    left:  110px;
    top:170px;
}
.software-phones-2{
    left:100px; color:#fff;
    background-color: #E9572B;
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: main-check;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}
.software-about-left{
    height:auto;
}


}
@media (max-width:1200px){
    .container{
        max-width: 1100px;
    }
    .main-img-in img{
        width: 1100px;
    }
    .card-form-left div img{
        width: 650px;
        height: auto;
    }
    .index-shape{
    left:30px;
    top:170px;
}

}
@media (max-width:1200px){
    .container{
        max-width: 1000px;
    }
    .main-img-in img{
        width: 1000px;
    }
    .main-check{
        top: 110px;
        left: 305px;
    }
    .main-dollar-sign{
        top: 165px;
        left: 655px;
    }
    .card-1-card{
        width: 300px;
    }
    .card-1-active{
        width: 350px;
    }
    /*.card-1-card:hover{*/
    /*    width: 330px;*/
    /*}*/


    .main-phones-img img{
        height: 600px;
    }
    .main-phones-shape{
        left: 50px;
        bottom: 30px;
    }
    
    
    .map-world img{
        width: 1000px;
    }
    .uz-country{
        top: 350px;
        left: 680px;
    }
    
    .tj-country{
        top: 400px;
        left: 630px;
    }
    .ae-country{
        top: 320px;
        left: 540px;
    }
    .eg-country{
        top: 430px;
    }
    
    .label-4-1{
        top: 390px;
    }
    .label-4-2{
        top: 190px;
        left: 340px;
    }
    .label-4-3{
        top: 620px;
        left: 420px;
    }
    .wallet-phones-img img{
        width: 550px;
        height: 500px;
        right: -250px;
    }
    .partners-about-left img{
        width: 500px;
        height: 400px;
    }
    .partners-phones-1{
        top: 30px;
        left: 40px;
    }
    .partners-phones-2{
        top: -260px;
        left: 480px;
    }
    .partners-phones-3{
        bottom: -200px;
        left: 450px;
    }
    .partners-about-left img{
        width: 750px;
    }
        .key h2{
        top:50px;
    }
    .software-phones-2{
        left:-20px;
    }
}
@media (max-width:1024px){
    .container{
        max-width: 920px;
    }
    .main{
        height: 800px;
    }
    .nav-menu a{
        font-size: 18px;
        padding: 0 10px;
    }
    .main-text-in h1{
        font-size: 50px;
    }
    .main-img-in img{
        width: 900px;
    }
    .main-check{
        top: 110px;
        left: 305px;
    }
    .main-dollar-sign{
        top: 130px;
        left: 580px;
    }
    .main-shape{
        width: 60px;
        height: 60px;
    }
    .main-check-2{
        bottom: 80px;
        left: 80px;
    }
    .main-dollar-sign-2{
        left: 180px;
    }
    .main-dollar-sign-3{
        left: 450px;
    }
    .main-check-3{
        left: 700px;
    }
    .short-about-left img{
        width: 450px;
    }


    .card-1-card{
        width: 250px;
    }
    .card-1-active{
        width: 300px;
    }
    /*.card-1-card:hover{*/
    /*    width: 280px;*/
    /*}*/
    .card-1-card h1{
        font-size: 60px;
    }
    .card-1-text{
        letter-spacing: 10px;
    }
    .card-1-text-1{
        letter-spacing: 10px;
    }
    
    .main-phones-img img{
        left: 70px;
    }
    .main-phones-shape{
        left: 50px;
        bottom: 30px;
    }

    .about-dollar-1{
        left: 80px;
    }

    .about-page-short-i-1{
        bottom: 150px;
    }
    .about-page-short-i-2{
        left: 320px;
    }
    .about-page-short-i-3{
        left: 320px;
    }

    .about-page-short-i-2-1{
        left:10px;
    }

    .map-world img{
        width: 900px;
        height: auto;
    }
    .uz-country{
        top: 310px;
        left: 630px;
    }
    .tj-country{
        top: 360px;
        left: 580px;
    }
    .ae-country{
        top: 280px;
        left: 500px;
    }
    .eg-country{
        top: 380px;
    }
    .label-phones-i{
        top: 150px;
        left: 10px;
    }

    .label-dollar-sign-2{
        top: 200px;
        left: 400px;
    }
    .label-check-2{
        bottom: 90px;
        left: 10px;
    }

    .label-about-about-1{
        top:100px;
        left: 20px;
    }
    .label-about-about-1-1{
        top: 150px;
        left: 350px;
    }
    .label-about-about-1-2{
        top: 430px;
        left: 150px;
    }
    .label-4-1{
        top: 380px;
    }
    .label-4-2{
        top: 190px;
        left: 320px;
    }
    .label-4-3{
        top: 560px;
        left: 380px;
    }
    .card-3-con{
        width: 450px;
    }
    .wallet-phones-img img{
        width: 550px;
        height: 500px;
        right: -320px;
    }
    .partners-about-left img{
        width: 500px;
        height: auto;
    }
    .partners-phones-1{
        top: 30px;
        left: 100px;
    }
    .partners-phones-2{
        top: -260px;
        left: 480px;
    }
    .partners-phones-3{
        bottom: -200px;
        left: 450px;
    }
    .card-5-con{
        width:400px;
    }
    .card-form-left div img{
        width: 600px;
        height: auto;
    }

    .software-page-about-i-1{
        bottom: 300px;
    }
    .software-page-about-i-2{
        top: 250px;
        left: 250px;
    }
    .software-page-about-i-3{
        left: 380px;
    }
    .key-card-left div p{
        font-size: 18px;
    }
    .nav-menu-hover a{
        padding: 7px;
    }
    .key h2{
        top:50px;
    }
    .software-phones-2{
        left:40px;
    }
    
.partner-main{
    height:115px;
}
}
@media (max-width:960px){
    .container{
        max-width: 800px;
    }
    .nav-menu a{
        font-size: 16px;
        padding: 0 10px;
    }
    .nav-menu-hover a{
        font-size: 14px;
        padding: 10px 10px;
    }
    .main-text-in h1{
        font-size: 40px;
    }
    .main-text-in p{
        font-size: 22px;
    }
    .main-img-in img{
        width: 750px;
    }
    .main{
        height: 700px;
    }
    .main-check{
        top: 90px;
        left: 270px;
    }
    .main-dollar-sign{
        top: 120px;
        left: 505px;
    }
    .main-shape{
        width: 50px;
        height: 50px;
    }
    .main-check-2{
        bottom: 65px;
    }
    .main-dollar-sign-3{
        left: 350px;
    }
    .main-check-3{
        left: 600px;
    }
    .short-about{
        margin: 300px 0 30px 0;
    }
    /* .short-about-left img{
        width: 400px;
        height: 500px;
    } */
    .short-about-right h5{
        font-size: 20px;
    }
    .short-about-right h1{
        font-size: 36px;
    }
    .short-about-right p{
        font-size: 18px;
    }


    .card-1{
        margin: 50px 0;
    }
    .card-1-card{
        width: 230px;
    }
    .card-1-active{
        width: 250px;
    }
    .card-1-card h1{
        font-size: 60px;
    }
    .card-1-text{
        letter-spacing: 10px;
    }
    .card-1-text-1{
        letter-spacing: 10px;
    }
    .main-phones{
        margin: 0 0 50px 0;
        padding: 0;
    }
    /* .main-phones .short-about-content{
        padding: 100px 0;
    } */

    .footer-last p{
        font-size: 14px;
    }
    .footer-last a{
        font-size: 14px;
        padding: 5px;
    }

    .about-dollar-1{
        left: 100px;
    }
    .about-dollar-2{
        bottom: 60px;
        left: 350px;
    }

    .about-page-short-i-1{
        bottom: 150px;
    }
    .about-page-short-i-2{
        left: 320px;
    }
    .about-page-short-i-3{
        left: 320px;
    }
    /* .about-page-about .short-about-left img{
        width: 500px;
    } */
    .about-page-short-i-2-1{
        left:10px;
    }
    .about-page-about-2{
        margin: 50px 0 0 0;
    }


    .uz-country{
        top: 270px;
        left: 540px;
    }
    .map-world img{
        width: 800px;
        height: auto;
    }

    .tj-country{
        top: 320px;
        left: 500px;
    }
    .ae-country{
        top: 240px;
        left: 430px;
    }
    .eg-country{
        top: 330px;
        left: 280px;
    }

    .label-phones-img img{
        left: 120px;
    }

    .label-phones-i{
        top: 110px;
        left: 70px;
    }
    .label-about{
        padding: 0;
    }
    .label-about-content{
        margin: 0;
        padding: 10px 0;
    }

    .label-dollar-sign-2{
        top: 200px;
        left: 400px;
    }
    .label-check-2{
        bottom: 90px;
        left: 80px;
    }
    .label-page-about{
        margin: 0;
    }
    .label-page-short img{
        width: 300px;
    }

    .label-about-about-1{
        top:100px;
        left: -20px;
    }
    .label-about-about-1-1{
        top: 100px;
        left: 300px;
    }
    .label-about-about-1-2{
        top: 300px;
        left: 110px;
    }

    .label-4-1{
        top: 330px;
        left: 10px;
    }
    .label-4-2{
        top: 170px;
        left: 290px;
    }
    .label-4-3{
        top: 500px;
        left: 350px;
    }
    .label-page-about-1 img{
        width: 400px;
    }
    .label-page-about-1{
        margin: 0;
    }
    .card-3-con{
        width: 370px;
    }
    .card-3-con-in{
        font-size: 18px;
    }
    /*.wallet-page-about-1{*/
    /*    margin: 530px 0 0 0 ;*/
    /*}*/
    .card-4-con{
        justify-content: center;
    }
    .card-4-con img{
        width: 250px;
    }
    .wallet-about-1{
        margin-top: 100px;
    }
    .wallet-phones-img img{
        width: 500px;
        height: 500px;
        right: -200px;
    }
    .partners-about-left img{
        width: 400px;
        height: 400px;
    }
    .partners-about-left img{
        width: 500px;
        height: 500px;
    }
    .partners-phones-1{
        top: 30px;
        left: 100px;
    }
    .partners-phones-2{
        top: -260px;
        left: 400px;
    }
    .partners-phones-3{
        bottom: -200px;
        left: 450px;
    }
    /* .partners-about{
        padding: 100px 0;
    } */
    .partners-page-about{
        padding: 0;
        margin: 50px 0 0 0;
    }
    .partners-page-about-content{
        padding: 0;
    }
    .card-form-left div img{
        width: 600px;
        height: auto;
    }
    .form-1{
        flex-wrap: wrap;
    }
    .key-content-con-in p{
        font-size: 18px;
    }
    .key-2 h1{
        width: 100%;
    }

    .key-card-left div p{
        font-size: 16px;
    }
    .key-right img{
        width: 400px;
        height: 700px;
    }
    .partners-about-left img{
        height:auto;
    }
    .partner-main{
        height:115px;
    }
    .label-about-content{
        padding:100px 0;
    }
    .label-phones-img img{
        width:420px;
    }
    .label-page-about{
        margin:0;
    }

    .card-5-con{
        width:370px;
    }



}

@media(max-width:900px){
    .short-about-left img{
        width: 400px;
    }
    .about-page-about{
        margin:415px 0 0 0;
    }
    .label-about-content{
        padding:100px 0;
    }
    .label-phones-img img{
        width:420px;
    }
    .label-page-about{
        margin:0;
    }
    .wallet-page-about-1{
        margin:0;
    }
    .software-page-about{
        margin: 100px 0 0 0;
    }
    .card-5-con{
        width:360px;
    }
}
@media (max-width:790px){
    .container{
        max-width: 650px;
    }
    .nav-menu{
        display: none;
    }
    .menu-responsive{
        display: block;
    }
    /* .nav-menu-hover{
        width: 100%;
    } */
    .menu-responsive-page{
        display: block;
        width: 50%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #fff;
    }
    .menu-container{
        max-width: 600px;
    }
    .res-menu{
        width: 70%;
    }

    .main-text-in h1{
        font-size: 30px;
    }
    .main-text-in p{
        font-size: 20px;
    }
    .main-img-in img{
        width: 690px;
    }
    .main-vertical{
        font-size: 14px;
    }
    .main-ver-shape{
        height: 50px;
    }
    .main-check{
        top: 90px;
        left: 230px;
    }
    .main{
        height: 600px;
    }
    .main-dollar-sign{
        top: 105px;
        left: 435px;
    }
    .main-check-2{
        left: 50px;
    }
    .main-dollar-sign-2{
        left: 140px;
    }
    .main-dollar-sign-3{
        left: 300px;
    }
    .main-check-3{
        left: 520px;
    }
    .short-about-left{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .short-about-right{
        width: 100%;
    }
    .short-about-main-shape{
        left: 400px;
    }
    .short-about-main-shape-1{
        bottom: 50px;
        left: 100px;
    }


    .card-1{
        margin: 50px 0;
    }
    .card-1-content{
        flex-wrap: wrap;
    }
    .card-1-card{
        margin: 50px auto;
        width: 370px;
        height: 400px;
    }
    /*.card-1-card:hover{*/
    /*    width: 400px;*/
    /*    height: 410px;*/
    /*}*/
    .card-1-active{
        width: 400px;
        height: 410px;
    }
    .card-1-card h1{
        font-size: 40px;
    }
    .card-1-text{
        letter-spacing: 5px;
    }
    .card-1-text-1{
        letter-spacing: 5px;
    }

    .main-phones-img {
        margin: 80px 0;
        justify-content: flex-start;
        
    }
    .main-phones-img img{
        position: relative;
        width: auto;
    }
    .main-phones-shape{
        left: 50px;
        bottom: 60px;
    }
    .footer-con{
        width: 50%;
    }

    .about-dollar-1{
        left: 70px;
    }
    .about-dollar-2{
        bottom: 60px;
        left: 350px;
    }
    .about-page-about{
        margin: 400px 0 0;
    }
    .about-page-short-i-1{
        bottom: 150px;
        left: 180px;
    }
    .about-page-short-i-2{
        left: 450px;
    }
    .about-page-short-i-3{
        left: 450px;
    }
    .about-page-about-2 .short-about-left img{
        width: 500px;
    }
    .about-page-short-i-2-1{
        left:80px;
    }


    .about-map-con h3{
        font-size: 30px;
    }

    .country-img img{
        width: 26px;
    }
    .map-world img{
        width: 700px;
        height: auto;
        margin-top: 70px;
    }
    .uz-country{
        top: 320px;
        left: 460px;
    }
    .country-text{
        width: 70px;
        font-size: 9px;
    }
    .tj-country{
        top: 355px;
        left: 420px;
    }
    .ae-country{
        top: 280px;
        left: 360px;
    }
    .eg-country{
        top: 355px;
        left: 260px;
    }
    .label-phones-img{
        margin: 0;
    }
    .label-phones-img img{
        width: 480px;
        height: auto;
    }

    .label-phones-i{
        top: 200px;
        left:170px;
    }

    .label-dollar-sign-2{
        top: 480px;
        left: 440px;
    }
    .label-check-2{
        bottom: 400px;
        left: 500px;
    }
    .label-page-about{
        margin: 500px 0 0 0;
    }

    .label-about-about-1{
        top:100px;
        left: 120px;
    }
    .label-about-about-1-1{
        top: 100px;
        left: 450px;
    }
    .label-about-about-1-2{
        top: 300px;
        left: 280px;
    }
    .label-about-about-1{
        margin: 0;
    }

    .label-4-1{
        top: 330px;
        left: 140px;
    }
    .label-4-2{
        top: 170px;
        left: 410px;
    }
    .label-4-3{
        top: 480px;
        left: 460px;
    }
    .card-3-con{
        width: 300px;
        height: 100px;
        margin: 15px 0;
    }
    .card-3-con-in{
        height: 100px;
        font-size: 16px;
        padding: 5px;
    }
    .wallet-phones-i{
        top: 490px;
        left: 190px;
    }
    .wallet-phones-img img{
        width: 600px;
        height: 400px;
        right: 500px;
        margin: 0 auto;
    }
    .partners-phones-1{
        top: 250px;
        left: 80px;
    }
    .partners-phones-2{
        top: -30px;
        left: 500px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 500px;
    }
    .card-5-con{
        margin: 30px auto;
    }
    .card-5-partners h1{
        font-size: 30px;
    }
    .card-5-partners h5{
        font-size: 16px;
    }
    .card-5-last{
        width: 60%;
    }
    .form-1{
        flex-wrap: wrap;
    }
    .card-form-left div img{
        width: 500px;
        height: auto;
    }
    .partners-about-left img{
        top:30px;
    }
    /*.partners-page-about{*/
    /*    margin-top: 400px;*/
    /*}*/
    .software-page-about{
        margin: 650px 0 0 0;
    }
    .software-page-about-i-3{
        display: none;
    }
    .key-content{
        flex-wrap: wrap;
    }
    .key-content-con-img{
        position: relative;
    }
    .key-content-con-img img{
        display: none;
    }
    .key-content-con:first-child{
        padding: 200px 0 0 0;
    }
    .key-card-left div p{
        font-size: 16px;
    }
    .key-2-content{
        justify-content: center;
        align-items: center;
    }
    .key-right img{
        width: 350px;
        height: auto;
    }
    .short-about-right p{
        margin: 0;
    }
    .footer-content{
        padding: 0;
    }
    .main-phones-img{
        margin: 0;
    }
    .software-phones-2{
        top: 450px;
        left:100px;
    }
    .software-page-about-i-1{
        left:315px;
        bottom:280px;
    }
    
    .partner-main{
        height:115px;
    }
}
@media (max-width:720px){
    .main-img-in img{
        width: 680px;
    }
    .btn-total  button{
        font-size: 14px;
    }
    .short-about-shape{
        width: 70px;
    }
    
.partner-main{
    height:115px;
}
}
@media (max-width:690px){
    .container{
        max-width: 550px;
    }
    .container-res{
        max-width: 300px;
    }
    .main-text-in h1{
        font-size: 25px;
    }
    .main-text-in p{
        font-size: 18px;
    }
    .main-img-in img{
        width: 600px;
    }
    .main-vertical{
        font-size: 13px;
    }
    .main-ver-shape{
        height: 45px;
    }
    .main-check{
        top: 70px;
        left: 200px;
        padding: 7px;
    }
    .main{
        height: 600px;
    }
    .main-dollar-sign{
        top:   85px;
        left: 375px;
    }
    .main-check-2{
        bottom: 40px;
        left: 40px;
    }
    .main-check-3{
        left: 450px;
    }
    .short-about{
        margin: 100px 0 0 0;
    }
    .short-about-main-shape{
        left: 350px;
    }
    .short-about-main-shape-1{
        bottom: 50px;
        left: 70px;
    }
    
    .main-phones{
        margin:100px 0;
    }

    .main-phones-img {
        margin: 80px 0 0 0;
        justify-content: flex-start;
        
    }
    .main-phones-img img{
        position: relative;
        width: auto;
        left: 0;
    }
    .main-phones-shape{
        left: 50px;
        bottom: 60px;
    }
    .footer-last{
        flex-wrap: wrap;
        text-align: center;
    }
    .footer-last-left{
        width: 100%;
    }
    .footer-last-right{
        width: 100%;
    }

    .about-dollar-1{
        left: 65px;
        top: 110px;
    }
    .about-dollar-2{
        bottom: 50px;
        left: 250px;
    }


    .about-page-about{
        margin: 400px 0 0;
    }
    .about-page-short-i-1{
        bottom: 150px;
        left: 150px;
    }
    .about-page-short-i-2{
        left: 450px;
    }
    .about-page-short-i-3{
        left: 450px;
    }
    .about-page-short-i-2-1{
        left:30px;
    }
    .about-page-about-2{
        margin: 50px 0 0 0;
    }


    .about-map-con h3{
        font-size: 30px;
    }


    .country-img img{
        width: 26px;
    }
    .about-map{
       width: 100%;
    }
    .map-world img{
        width: 550px;
        height: auto;
        margin-top: 70px;
    }
    .uz-country{
        top: 260px;
        left: 380px;
    }
    .country-text{
        width: 70px;
        font-size: 9px;
    }
    .tj-country{
        top: 295px;
        left: 350px;
    }
    .ae-country{
        top: 225px;
        left: 300px;
    }
    .eg-country{
        top: 300px;
        left: 200px;
    }


    .label-about{
        margin: 0;
    }
    .label-phones-img {
       margin: 10px 0;
    }

    .label-phones-img img{
        width: 400px;
        left: 0;
        margin: 0 auto;
    }

    .label-phones-i{
        top: 330px;
        left: 20px;
    }

    .label-dollar-sign-2{
        top: 410px;
        left: 380px;
    }
    .label-check-2{
        bottom: 300px;
        left: 10px;
    }

    .label-vertical{
        left: -20px;
    }


    .label-about-about-1{
        top:100px;
        left: 100px;
    }
    .label-about-about-1-1{
        top: 100px;
        left: 420px;
    }
    .label-about-about-1-2{
        top: 300px;
        left: 240px;
    }
    .label-page-about-1{
        margin: 0;
    }
    .label-4-1{
        top: 330px;
        left: 90px;
    }
    .label-4-2{
        top: 170px;
        left: 360px;
    }
    .label-4-3{
        top: 480px;
        left: 410px;
    }
    .card-2-con{
        width: 200px;
    }
    .card-2-con p{
        font-size: 16px;
    }
    .card-3-con{
        width: 100%;
        height: 100px;
        margin: 15px 0;
    }
    .card-3-con-in{
        height: 100px;
        font-size: 16px;
        padding: 5px;
        justify-content: flex-start;
    }
    .wallet-page-about-1{
        margin: 330px 0 0 0 ;
    }
    .wallet-phones-img img{
        width: 600px;
        height: 400px;
        right: 500px;
        margin: 0 auto;
    }
    .partners-phones-1{
        top: 140px;
        left: 100px;
    }
    .partners-phones-2{
        top: -30px;
        left: 400px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 400px;
    }
    .card-form-left h2{
        font-size: 36px;
    }
    .card-form-left div img{
        width: 450px;
    }
    .partners-about-left img{
        width: 660px;
    }
    .label-phones-i{
        top: 200px;
    }
    .label-check-2{
        bottom: 400px;
        left: 400px;
    }
    .key h2{
        position: relative;
    }

    .software-page-about{
        margin: 650px 0 0 0;
    }
    .key-2-content{
        flex-wrap: wrap;
    }
    .software-phones-2{
        top: 410px;
        left:-10px;
    }
    .software-page-about-i-1{
        left: 280px;
        bottom:280px;
    }
    .partner-main{
        height:115px;
    }
}
@media (max-width:640px) {
    .main-img-in img{
        width: 550px;
    }
    .country-img img{
        width: 26px;
    }
    .about-map{
       width: 100%;
    }


    .map-world img{
        width: 550px;
        height: auto;
        margin-top: 100px;
    }
    .uz-country{
        top: 290px;
        left: 380px;
    }
    .country-text{
        width: 70px;
        font-size: 9px;
    }

    .tj-country{
        top: 320px;
        left: 350px;
    }
    .ae-country{
        top: 250px;
        left: 300px;
    }
    .eg-country{
        top: 330px;
        left: 200px;
    }
    .main-text-in h4{
        font-size: 30px;
    }
    .card-3 h1{
        font-size: 30px;
    }
    .partners-phones-1{
        top: 120px;
        left: 190px;
    }
    .partners-phones-2{
        top: -30px;
        left: 900px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 400px;
    }
    .key h2{
        top: 30px;
    }
    .key-content-con:first-child{
        padding: 50px 0 0 0;
    }
    .software-phones-2{
        top: 410px;
        left:-10px;
    }
    .partner-main{
        height:115px;
    }
}


@media (max-width:620px){
    .main-img-in img{
        width: 550px;
    }
    .main-dollar-sign{
        top:   80px;
        left: 340px;
    }
    .main-dollar-sign-2{
        left: 100px;
    }
    .main-check-3{
        left: 400px;
    }
    
    .about-page-about-2 .short-about-left img{
        width: 450px;
    }
    .about-map-con h3{
        font-size: 30px;
    }


    
    .country-img img{
        width: 26px;
    }
    .map-world img{
        width: 600px;
        height: auto;
        margin-top: 70px;
    }
    .uz-country{
        top: 280px;
        left: 390px;
    }
    .country-text{
        width: 70px;
        font-size: 9px;
    }
    .map-world img{
        width: 550px;
        height: auto;
        margin-top: 100px;
    }
    .uz-country{
        top: 290px;
        left: 380px;
    }
    .country-text{
        width: 70px;
        font-size: 9px;
    }

    .tj-country{
        top: 320px;
        left: 350px;
    }
    .ae-country{
        top: 250px;
        left: 290px;
    }
    .eg-country{
        top: 320px;
        left: 200px;
    }

    .label-4-1{
        top: 330px;
        left: 90px;
    }
    .label-4-2{
        top: 170px;
        left: 360px;
    }
    .label-4-3{
        top: 480px;
        left: 410px;
    }
    .card-3 h1{
        width: 100%;
    }
    .card-2 h1{
        font-size: 30px;
    }
    .about-page-about h1{
        font-size: 30px;
    }
    .partners-phones-1{
        top: 120px;
        left: 100px;
    }
    .partners-phones-2{
        top: -30px;
        left: 400px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 400px;
    }
    .card-5-partners{
        width: 100%;
    }
    .card-5-partners h1{
        font-size: 30px;
    }
    .card-5-partners h5{
        font-size: 16px;
    }
    .card-5-last{
        width: 90%;
    }
    .footer-content{
        padding: 0;
    }
    .software-phones-2{
        top: 410px;
        left:-10px;
    }
}
@media (max-width:550px){
    
    .container{
        max-width: 450px;
    }
    .container-res{
        max-width: 250px;
    }
    .res-menu{
        width: 80%;
    }
    .main-img-in img{
        width: 480px;
    }
    .main-check{
        top: 60px;
        left: 160px;
        padding: 5px;
    }
    .main-dollar-sign{
        top:   65px;
        left: 290px;
    }
    .main-check-2{
        bottom: 35px;
        left: 30px;
        padding: 5px;
    }
    .main-dollar-sign-3{
        bottom: -5px;
        left: 230px;
    }
    .main-check-3{
        left: 350px;
    }

    /* .short-about{
        margin: 200px 0 0 0;
    } */
    .short-about-main-shape{
        left: 300px;
    }
    .short-about-main-shape-1{
        bottom: 50px;
        left: 20px;
    }

    .main-phones-img {
        margin: 80px 0;
        justify-content: flex-start;
        
    }
    .main-phones-img img{
        position: relative;
        width: 490px;
        left: 0;
    }
    .main-phones-shape{
        left: -20px;
        bottom: 60px;
    }
    .footer-con{
        width: 50%;
    }
    .footer-con p{
        font-size: 14px;
    }
    .footer-con p a{
        font-size: 14px;
    }
    .about-dollar-1{
        left: 45px;
        top: 110px;
    }
    .about-dollar-2{
        bottom: 30px;
        left: 200px;
    }

    .about-page-about{
        margin: 400px 0 0;
    }
    .about-page-short-i-1{
        bottom: 150px;
        left: 100px;
    }
    .about-page-short-i-2{
        left: 350px;
    }
    .about-page-short-i-3{
        left: 350px;
        bottom: 220px;
    }
    .about-page-short-i-2-1{
        bottom: 20px;
        left:10px;
    }
    /* .about-page-about-2{
        margin: 50px 0 0 0;
    } */

    .about-map-con h3{
        font-size: 30px;
    }

    .country-img img{
        width: 26px;
    }
    .map-world img{
        width: 400px;
        height: auto;
        margin-top: 70px;
    }
    .uz-country{
        top: 280px;
        left: 390px;
    }
    .country-text{
        width: 70px;
        font-size: 9px;
    }

    .map-world img{
        width: 500px;
        height: auto;
        margin-top: 100px;
    }
    .uz-country{
        top: 270px;
        left: 320px;
    }
    .country-text{
        width: 70px;
        font-size: 9px;
    }


    .tj-country{
        top: 300px;
        left: 295px;
    }
    .ae-country{
        top: 230px;
        left: 250px;
    }
    .eg-country{
        top: 305px;
        left: 150px;
    }


    .label-about{
        margin: 0;
    }
    .label-phones-img {
       margin: 10px 0;
    }

    .label-phones-img img{
        width: 400px;
        left: 0;
        margin: 0 auto;
    }

    .label-phones-i{
        top: 330px;
        left: -30px;
    }

    .label-dollar-sign-2{
        top: 400px;
        left: 320px;
    }
    .label-check-2{
        bottom: 300px;
        left: -10px;
    }

    .label-vertical{
        left: -20px;
        top: 250px;
    }

    .label-about-about-1{
        top:100px;
        left: 40px;
    }
    .label-about-about-1-1{
        top: 100px;
        left: 380px;
    }
    .label-about-about-1-2{
        top: 300px;
        left: 180px;
    }

    .label-4-1{
        top: 330px;
        left: 50px;
    }
    .label-4-2{
        top: 170px;
        left: 320px;
    }
    .label-4-3{
        top: 480px;
        left: 360px;
    }
    .wallet-phones-i{
        top: 370px;
        left: 70px;
    }
    /* .wallet-page-about-1{
        margin: 530px 0 0 0 ;
    } */
    .wallet-phones-img img{
        width: 400px;
        height: 300px;
        right: 500px;
        margin: 0 auto;
    }
    .partners-phones-1{
        top: 120px;
        left: 40px;
    }
    .partners-phones-2{
        top: -30px;
        left: 350px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 400px;
    }
    .card-form-content{
        flex-wrap: wrap;
    }
    .card-form-right{
        margin-top: 400px;
    }
    .card-form-right{
        width: 100%;
    }
    .form-1 div{
        width: 100%;
    }
    .form-1 input{
        width: 100%;
    }
    .partners-about-left img{
        width: 560px;
    }
    .software-page-about{
        margin: 650px 0 0 0;
    }
    .btn-total{
        flex-wrap: wrap;
    }
    .btn-total button{
        margin: 20px 0;
    }
    .footer-con h5 {
        padding: 0 0 20px 0;
    }
    .footer-con h5 a{
        padding: 0 0 20px 0;
    }
    .partners-page-about{
        margin: 250px 0 0 0;
    }
    .wallet-phones-i-1{
        top:250px;
        left:10px;
    }
    .software-phones-2{
        top: 340px;
        left:-10px;
    }
    .software-page-about-i-1{
        left: 230px;
        bottom:280px;
    }
    .partner-main{
        height:115px;
    }
}
@media (max-width:495px){
    .main-img-in img{
        width: 450px;
    }
    .main-vertical{
        font-size: 10px;
    }
    .main-ver-shape{
        height: 40px;
    }
    .main-dollar-sign{
        width: 40px;
        height: 40px;
    }
    .main-dollar-sign{
        top:   70px;
        left: 280px;
    }
    .main-dollar-sign-2{
        left: 100px;
    }
    .footer-con{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-page-about-2 .short-about-left img{
        width: 400px;
    }
    .about-page-short-i-2-1{
        bottom: 30px;
        left: 10px;
    }
    /* .about-page-about-2{
        margin: 50px 0 0 0;
    } */
    .map-world img{
        width: 400px;
        height: auto;
        margin-top: 100px;
    }
    .country-img img{
        width: 15px;
    }
    .uz-country{
        top: 240px;
        left: 300px;
    }
    .country-text{
        width: 50px;
        font-size: 7px;
    }

    .tj-country{
        top: 265px;
        left: 285px;
    }
    .ae-country{
        top: 200px;
        left: 250px;
    }
    .eg-country{
        top: 260px;
        left: 170px;
    }


    .label-about{
        margin: 0;
    }
    .label-phones-img {
       margin: 10px 0;
    }

    .label-phones-img img{
        width: 320px;
    }

    .label-phones-i{
        top: 250px;
        left: 20px;
    }

    .label-dollar-sign-2{
        top: 320px;
        left: 300px;
    }
    .label-check-2{
        bottom: 250px;
        left: 10px;
    }

    .label-vertical{
        left: 0;
        top: 250px;
    }

    .label-4-1{
        top: 330px;
        left: 50px;
    }
    .label-4-2{
        top: 170px;
        left: 320px;
    }
    .label-4-3{
        top: 480px;
        left: 360px;
    }
    .wallet-phones-i{
        top: 300px;
        left: 100px;
    }
    .wallet-phones-img img{
        width: 400px;
        height: 300px;
        right: 500px;
        margin: 0 auto;
    }
    .partners-phones-1{
        top: 120px;
        left: 40px;
    }
    .partners-phones-2{
        top: -30px;
        left: 350px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 400px;
    }   
    h1{
        font-size: 30px;
    }
    .software-phones-2{
        top: 200px;
        left:  50px;
    }
    .software-page-about{
        margin:400px 0 0 0;
    }
    .partner-main{
        height:115px;
    }
    
}
@media (max-width:450px){
    .container{
        max-width: 320px;
    }
    .container-res{
        max-width: 200px;
    }
    .res-menu{
        width: 100%;
    }
    .main-text-in{
        width: 90%;
    }
    .main-text-in h1{
        font-size: 22px;
    }
    .main-text-in p{
        font-size: 14px;
    }
    .main-img-in img{
        width: 330px;
    }
    .main-check{
        top: 50px;
        left: 110px;
        padding: 3px;
        font-size: 12px;
    } 
    .main-dollar-sign , .main-dollar-sign-3{
        width: 25px;
        height: 25px;
    }  
    .main-dollar-sign div , .main-dollar-sign-3 div{
        width: 15px;
        height: 15px;
        font-size: 10px;
    }
    .main-dollar-sign{
        top:   60px;
        left: 210px;
    }
    /*.main-check-2{*/
    /*    bottom: 25px;*/
    /*    left: 20px;*/
    /*    padding: 3px;*/
    /*    font-size: 12px;*/
    /*}*/
    .main-dollar-sign-2{
        bottom: 0;
        left: 80px;
    }  
    .main-dollar-sign-2 div{
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .main-dollar-sign-3{
        left: 150px;
    }
    .main-check-3{
        left: 250px;
        padding: 3px;
        font-size: 12px;
    }

    .short-about{
        margin: 0;
    }
    .short-about-main-shape{
        left: 200px;
        top: 45px;
    }
    .short-about-main-shape-1{
        bottom: 50px;
        left: -40px;
    }
    .short-about-left img{
        width: 350px;
        height: auto;
    }
    .short-about-right h5{
        font-size: 16px;
    }
    .short-about-right h1{
        font-size: 24px;
    }
    .short-about-right p{
        font-size: 14px;
    }

    .main-phones-shape{
        left: -30px;
        bottom: 30px;
    }
    .about-dollar-1{
        left: 35px;
        top: 90px;
    }
    .about-dollar-2{
        bottom: 20px;
        left: 150px;
    }

    .about-page-about{
        margin: 200px 0 0;
    }
    .about-page-about .short-about-left img{
        width: 350px;
    }
    .about-page-short-i-1{
        bottom: 150px;
        left: 50px;
    }
    .about-page-short-i-2{
        left: 300px;
    }
    .about-page-short-i-3{
        left: 300px;
        bottom: 220px;
    }
    .about-page-short-i-3 i{
        font-size: 14px;
    }
    .about-page-about-2 .short-about-left img{
        width: 350px;
        height: auto;
    }
    .about-page-short-i-2-1{
        bottom: 50px;
        left: -5px;
    }
    /* .about-page-about-2{
        margin: 50px 0 0 0;
    } */
    .about-map-con h3{
        font-size: 22px;
    }
    .map-world img{
        width: 300px;
        height: auto;
        margin-top: 100px;
    }
    .country-img img{
        width: 15px;
    }
    .uz-country{
        top: 200px;
        left: 220px;
    }
    .country-text{
        width: 50px;
        height: 10px;
        font-size: 5px;
        padding: 3px;
        margin: 3px ;
    }
    .country-icon{
        display: none;
    }

    .tj-country{
        top: 215px;
        left: 195px;
    }
    .ae-country{
        top: 190px;
        left: 160px;
    }
    .eg-country{
        top: 220px;
        left: 120px;
    }
    /* .main-vertical{
        left: 10px;
    } */

    .label-phones-img img{
        width: 300px;
    }


    .label-about{
        margin: 0;
    }
    .label-phones-img {
       margin: 35px 0;
    }

    .label-phones-img img{
        width: 320px;
    }

    .label-phones-i{
        top: 230px;
        left: -5px;
    }

    .label-dollar-sign-2{
        top: 320px;
        left: 240px;
    }
    .label-check-2{
        bottom: 300px;
        left: -20px;
    }

    .label-vertical{
        left: -30px;
        top: 250px;
    }
    /* .label-page-about{
        margin: 400px 0 0 0;
    } */

    .label-about-about-1{
        top:100px;
        left: -20px;
    }
    .label-about-about-1-1{
        top: 100px;
        left: 300px;
    }
    .label-about-about-1-2{
        top: 350px;
        left: 100px;
    }

    .label-4-1{
        top: 290px;
        left: 5px;
    }
    .label-4-2{
        top: 150px;
        left: 230px;
    }
    .label-4-3{
        top: 430px;
        left: 270px;
    }
    .wallet-phones-i{
        top: 300px;
        left: 30px;
    }
    .wallet-page-about-1{
        margin: 200px 0 0 0 ;
    }
    .wallet-phones-img img{
        width: 350px;
        height: 260px;
        right: 500px;
        margin: 0 auto;
    }
    .partners-phones-1{
        top: 100px;
        left: -30px;
    }
    .partners-phones-2{
        top: -30px;
        left: 270px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 300px;
    }
    .partners-page-about{
        margin: 80px 0 0 0;
    }
    /* .partners-page-about{
        padding: 0;
        margin: 250px 0 0 0;
    } */
    .card-5-con p{
        font-size: 16px;
    }
    .card-form-left div img{
        width: 330px;
        left: -50px;
    }
    .card-form-right{
        margin: 300px 0 0 0;
    }
    .software-page-about{
        margin: 450px 0 0 0;
    }
    .about-page-about .short-about-right h1{
        font-size: 24px;
    }
    .about-page-about .short-about-right h1{
        font-size: 24px;
    }
    .main-text-in h4{
        font-size: 24px;
    }
    .key-right img{
        width: 300px;
    }
    .short-about-btn{
        margin: 35px 0 0px 0;
    }
    .software-phones-2{
        top: 200px;
        left:-10px;
    }
    .software-page-about-i-2 img{
        width:30px;
    }
    .software-page-about-i-1{
        left: 230px;
        bottom:280px;
    }
    .software-page-about-i-1{
        left: 170px;
        bottom:230px;
    }
    .partner-main{
        height:115px;
    }
}
@media (max-width:320px){
    .container{
        max-width: 260px;
    }
    .container-res{
        max-width: 260px;
    }
    .main-text-in h1{
        font-size: 20px;
    }
    .main-text-in p{
        font-size: 12px;
    }
    .main-img-in img{
        width: 270px;
    }
    .main-vertical{
        font-size: 8px;
    }
    .main-ver-shape{
        height: 30px;
    }
    .main-check{
        top: 45px;
        left: 90px;
        padding: 3px;
        font-size: 8px;
    } 
    .main-dollar-sign{
        top:   50px;
        left: 165px;
    } 
    /*.main-check-2{*/
    /*    bottom: 22px;*/
    /*    left: 17px;*/
    /*    padding: 10px;*/
    /*    font-size: 8px;*/
    /*}*/
    .main-dollar-sign-2{
        bottom: 0;
        left: 60px;
    }  
    .main-dollar-sign-2 div{
        width: 20px;
        height: 20px;
        font-size: 8px;
    }
    .main-dollar-sign-3{
        left: 130px;
    }
    .main-check-3{
        left: 200px;
        padding: 3px;
        font-size: 8px;
    }
    .short-about-left img{
        width: 280px;
        height: auto;
    }
    /* .short-about-left{
        display: none;
    } */
    .short-about-btn button{
        font-size: 12px;
    }
    .about-dollar-1{
        left: 30px;
        top: 70px;
    }
    .about-dollar-2{
        bottom: 20px;
        left: 100px;
    }
    .about-page-about{
        margin: 100px 0 0 0;
    }
    .about-page-about .short-about-left{
        display: block;
    }
    .about-page-about .short-about-left img{
        width: 280px;
        height: 400px;
    }
    .about-page-short-i-1{
        bottom: 100px;
        left: 50px;
    }
    .about-page-short-i-2{
        left: 220px;
    }
    .about-page-short-i-3{
        left: 220px;
        bottom: 220px;
    }
    .about-page-about-2 .short-about-left{
        display: block;
    }
    .about-page-about-2 .short-about-left img{
        width: 280px;
        height: 400px;
    }
    .about-page-short-i-2-1{
        bottom: 50px;
        left: -5px;
    }
    /* .about-page-about-2{
        margin: 50px 0 0 0;
    } */


    .map-world img{
        width: 250px;
        height: auto;
        margin-top: 150px;
    }
    .country-img img{
        width: 10px;
    }
    .uz-country{
        top: 235px;
        left: 175px;
    }
    .country-text{
        width: 40px;
        height: 8px;
        font-size: 5px;
        padding: 0;
        margin: 3px ;
    }
    .about-map-con h3{
        font-size: 16px;
    }
    .country-icon{
        display: none;
    }

    .tj-country{
        top: 250px;
        left: 160px;
    }
    .ae-country{
        top: 230px;
        left: 130px;
    }
    .eg-country{
        top: 250px;
        left: 100px;
    }

    .label-about{
        margin: 0;
    }
    .label-phones-img {
       margin: 10px 0;
    }

    .label-phones-img img{
        width: 320px;
    }

    .label-phones-i{
        top: 230px;
        left: -20px;
    }

    .label-dollar-sign-2{
        top: 320px;
        left: 240px;
    }
    .label-check-2{
        bottom: 300px;
        left: -20px;
    }

    .label-vertical{
        left: -20px;
        top: 250px;
    }

     .label-page-about{
        margin: 150px 0 0 0;
    } 

    .label-4-1{
        top: 240px;
        left: 5px;
    }
    .label-4-2{
        top: 110px;
        left: 195px;
    }
    .label-4-3{
        top: 340px;
        left: 220px;
    }
    .wallet-phones-i{
        top: 300px;
        left: 30px;
    }
    .partners-about-left img{
        width: 250px;
    }
    .partners-phones-1{
        top: 80px;
        left: -30px;
    }
    .partners-phones-2{
        top: -10px;
        left: 230px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 240px;
    }
    .software-page-about{
        margin: 450px 0 0 0;
    }
    .software-page-about .software-page-short img{
        height: 200px;
    }
    .software-page-about-i-2{
        display:none;
    }
    .software-phones-2{
        top: 160px;
        left:-10px;
    }
    .software-page-about-i-1{
        left: 130px;
        bottom:210px;
    }
    .partner-main{
        height:115px;
    }
    
}
@media (max-width:280px){
    .main-img-in img{
        width: 250px;
    }
    .main-dollar-sign{
        top:   50px;
        left: 155px;
    } 
    .main-check-2{
        left: 19px;
    }
    .about-page-about .short-about-left img{
        width: 260px;
        height: 400px;
    }
    .about-page-short-i-1{
        bottom: 100px;
        left: 50px;
    }
    .about-page-short-i-2{
        left: 220px;
    }
    .about-page-short-i-3{
        left: 220px;
        bottom: 220px;
    }
    .about-page-about-2{
        margin: 30px 0;
    }
    .about-page-about-2 .short-about-left{
        display: block;

    }
    .about-page-about-2 .short-about-left img{
        width: 250px;
        height: 400px;
    }
    .about-page-short-i-2-1{
        bottom: 50px;
        left: -5px;
    }
    /* .about-page-about-2{
        margin: 50px 0 0 0;
    } */
    .label-4-3{
        top: 340px;
        left: 220px;
    }
    .partners-phones-1{
        top: 80px;
        left: -30px;
    }
    .partners-phones-2{
        top: -10px;
        left: 230px;
    }
    .partners-phones-3{
        bottom: 20px;
        left: 240px;
    }
    .partner-main{
        height:115px;
    }
}
@media (max-width:250px){
    .container{
        max-width: 180px;
    }
    .container-res{
        max-width: 200px;
    }
    .main-img-in img{
        width: 200px;
    }
    .partner-main{
        height:115px;
    }
}

/* media */