:root {
    --main-color: #9363a9;
    --secondary-color: #f26548;

    --gradient2-color1: #C3D502;
    --gradient2-color2: #3BC0CC;

    --gradient3-color1: #3bc1cc;
    --gradient3-color2: #9363a9;
}

body{
    font-family: 'Open Sans';
    font-family: 'Verdana';
    font-size: 18px;
    color: #434345;
    font-weight: 300;
    line-height: 1.2;

}
@media (max-width: 992px){
    body{
        font-size: 18px;
    }
}

a{
}
a:focus,
a:hover{
    outline: none;
    text-decoration: none;
}
p{
    margin-bottom: 20px;
}
p:last-child{
    margin-bottom: 0;
}
.container {
    max-width: 100%;
}
@media (min-width: 1510px){
    .container {
        width: 1350px;
        max-width: 100%;
    }
}
@media (min-width: 1200px){
    .container {
        /*width: 1350px;*/
    }
}

.img-wrap img{
    display: block;
    width: 100%;
}
.btn-gradient{
    background: var(--main-color);
    background: -moz-linear-gradient(left,  var(--main-color) 0%, var(--secondary-color) 100%);
    background: -webkit-linear-gradient(left,  var(--main-color) 0%,var(--secondary-color) 100%);
    background: linear-gradient(to right,  var(--main-color) 0%,var(--secondary-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--main-color)', endColorstr='var(--secondary-color)',GradientType=1 );
    color: #fff;
    font-size: 20px;
    padding: 12px 40px;
    display: inline-block;
    border-radius: 10px;
    border:0;
}
.btn-gradient2{
    background: var(--main-color);
    background: -moz-linear-gradient(left,  var(--gradient2-color1) 0%, var(--gradient2-color2) 100%);
    background: -webkit-linear-gradient(left,  var(--gradient2-color1) 0%,var(--gradient2-color2) 100%);
    background: linear-gradient(to right,  var(--gradient2-color1) 0%,var(--gradient2-color2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--gradient2-color1)', endColorstr='var(--gradient2-color2)',GradientType=1 );
    color: #fff;
    font-size: 20px;
    padding: 12px 40px;
    display: inline-block;
    border-radius: 10px;
    border:0;
}
.title-gradient{
    color: var(--main-color);
    background-image: -webkit-linear-gradient(0deg, var(--main-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 26px;
}
@media (max-width: 1600px){
    .title-gradient{
        font-size: 40px;
    }
}
@media (max-width: 992px){
    .title-gradient{
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
}
.title-gradient2{
    color: var(--gradient2-color1);
    background-image: -webkit-linear-gradient(315deg, var(--gradient2-color1) 0%, var(--gradient2-color2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;

    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 35px;
}
@media (max-width: 1600px){
    .title-gradient2{
        font-size: 40px;
    }
}

.gradient-bg{
    background: var(--main-color);
    background: -moz-linear-gradient(left,  var(--main-color) 0%, var(--secondary-color) 100%);
    background: -webkit-linear-gradient(left,  var(--main-color) 0%,var(--secondary-color) 100%);
    background: linear-gradient(to right,  var(--main-color) 0%,var(--secondary-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--main-color)', endColorstr='var(--secondary-color)',GradientType=1 );
    color: #fff;
}
.gradient-bg2{
    background: var(--gradient2-color1);
    background: -moz-linear-gradient(left,  var(--gradient2-color1) 0%, var(--gradient2-color2) 100%);
    background: -webkit-linear-gradient(left,  var(--gradient2-color1) 0%,var(--gradient2-color2) 100%);
    background: linear-gradient(to right,  var(--gradient2-color1) 0%,var(--gradient2-color2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--gradient2-color1)', endColorstr='var(--gradient2-color2)',GradientType=1 );
    color: #fff;
}
.gradient-bg3{
    background: var(--gradient3-color1);
    background: -moz-linear-gradient(left,  var(--gradient3-color1) 0%, var(--gradient3-color2) 100%);
    background: -webkit-linear-gradient(left,  var(--gradient3-color1) 0%,var(--gradient3-color2) 100%);
    background: linear-gradient(to right,  var(--gradient3-color1) 0%,var(--gradient3-color2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--gradient3-color1)', endColorstr='var(--gradient3-color2)',GradientType=1 );
    color: #fff;
}




.content-wrap {
}

.header-wrap{
    font-size: 15px;
    min-height:124px;
}
.header-wrap .container-fluid{
    max-width: 1590px;
    display: flex;
}
.header-wrap .header-top{
    background-color: #202020;
    color: #fff;
    font-family: "Montserrat";
    font-weight: 600;
    padding: 20px 0;
}
.header-wrap .header-top a{
    color: #fff;
    text-decoration: none;
}
.header-wrap .header-top .section-left{
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.header-wrap .header-top .section-left .country-switch{
    margin-right: 10%;
}
.header-wrap .header-top .section-right{
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.header-wrap .header-top .section-right .phone{
    flex-grow: 1;
}
.header-wrap .header-top .section-right .email{
    flex-grow: 1;
}
.header-wrap .header-top .section-right .social-icons{
}
.header-wrap .header-top .section-right .social-icons a{
    color: #7d7d7d;
    border: 1px solid #7d7d7d;
    border-radius: 50%;
    font-size: 17px;
    display: inline-flex;
    width: 35px;
    height: 35px;
    margin-left: 15px;
    align-items: center;
    justify-content: center;
}
.header-wrap .header-top .section-right .social-icons a:hover{
    color: #999fa7;
}
@media (max-width: 992px){
    .header-wrap .container-fluid{
        display: block;
        font-size: 12px;
    }
    .header-wrap .header-top .section-left {
        justify-content: space-between;
    }
    .header-wrap .header-top .section-right {
        display: block;
        text-align: center;
        padding: 10px 0 0;
        line-height: 2;
    }
    .header-wrap .header-top .section-right .social-icons {
        margin-top: 10px;
    }
    .header-wrap .header-top .section-right .social-icons a{
        font-size: 13px;
        width: 20px;
        height: 20px;
        margin: 0 10px;
    }
}
.header-wrap .header-main{
    width:100%;
    position:fixed;
    background:#fff;
    font-family: "Roboto";
    z-index:100;
}
.header-wrap .header-main{
    padding: 15px 0;
}
.header-wrap .header-main .logo{
    max-width: 490px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.header-wrap .header-main .menu{
    flex-grow: 1;
    padding: 0 0 0 100px;
    display: flex;
    align-items: center;
}
.header-wrap .header-main .menu .navbar-default{
    background-color: transparent;
    border:0;
    margin-bottom: 0;
    width: 100%;
}
.header-wrap .header-main .menu .navbar-default .navbar-collapse{
    padding: 0;
}
.header-wrap .header-main .menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    width: 100%;
}
.header-wrap .header-main .menu li{
    display: inline-flex;
    flex-grow: 1;
    text-align: center;
    justify-content: flex-end;
    align-items: center;
}
.header-wrap .header-main .menu a{
    position: relative;
    padding: 35px 0;
    display: inline-block;
    font-size: 20px;
    color: #4f5a68;
}
.header-wrap .header-main .menu a.btn{
    padding: 12px 40px;
    color: #fff;
}
.header-wrap .header-main .menu a:not(.btn):after{
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: transparent;
}
.header-wrap .header-main .menu a:hover,
.header-wrap .header-main .menu a.active{
    color: #4f5a68;
    background-color: transparent;
    text-shadow: 0.5px 0.5px 1px #4f5a68;
}
.header-wrap .header-main .menu a:hover:after,
.header-wrap .header-main .menu a.active:after{
    background: var(--main-color);
    background: -moz-linear-gradient(left,  var(--main-color) 0%, var(--secondary-color) 100%);
    background: -webkit-linear-gradient(left,  var(--main-color) 0%,var(--secondary-color) 100%);
    background: linear-gradient(to right,  var(--main-color) 0%,var(--secondary-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--main-color)', endColorstr='var(--secondary-color)',GradientType=1 );
}
@media (max-width: 992px){
    .header-wrap{
        min-height:65px;
    }
    .header-wrap .header-main .logo {
        max-width: 200px;
        float: left;
        min-height: 35px;
    }
    .header-wrap .header-main .menu{
        display: block;
    }
    .header-wrap .header-main .menu .navbar-default{
        min-height: 35px;
    }
    .header-wrap .header-main .menu .navbar-default .navbar-toggle{
        margin: 0;
    }
    .header-wrap .header-main .menu .navbar-default .navbar-collapse{
        border:0;
    }
    .header-wrap .header-main .menu ul{
        flex-direction: column;
    }
    .header-wrap .header-main .menu a{
        padding: 10px 0;
        line-height: normal;
    }
    .header-wrap .header-main .menu a.btn {
        padding: 5px 20px;
        margin: 5px 0;
    }
}


.content{
}
.content .container-fluid{
    max-width: 1600px;
    display: flex;
    align-items: center;
}
@media (max-width: 992px){
    .content .container-fluid{
        display: block;
    }
}

/*home page end*/
.home-s1{
    position: relative;
}
@media (max-width: 1600px){
}
@media (max-width: 1200px){
}
@media (max-width: 992px){
    .home-s1{
        padding: 100px 20px;
        overflow: hidden;
    }
    .home-s1 .img-wrap{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .home-s1 .img-wrap img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.home-s2{
    padding: 115px 0;
}
.home-s2 .side-wrap{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.home-s2 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.home-s2 .text-wrap{
    /*position: absolute;*/
    left: 49%;
    bottom: 8%;
    right: 0;
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 3px #000;
    margin-bottom: 20px;
}
.home-s2 .text-wrap .text{
    display: inline-block;
    padding: 0 10px;
    background-color: transparent;
    background-image: none;
    color: #0057a1;
    text-shadow: none;
}
.home-s2 .text-wrap .text.step1{
    margin-left: 40px;
}
.home-s2 .text-wrap .text.step2{
    margin-left: 80px;
}
.home-s2 .text-wrap .text.step3{
    margin-left: 120px;
}
.home-s2 .text-wrap span{
    font-weight: 700;
}
.home-s2 .text-wrap small{
    font-size: 56%;
}
.home-s2 .main-wrap{
    padding-left: 80px;
}
.home-s2 .title{
}
.home-s2 .sub-title{
    color: #0057a1;
    font-weight: 600;
    font-size: 31px;
    margin-bottom: 10px;
}
.home-s2 .desc{
}
.home-s2 .desc p{
}
@media (max-width: 1600px){
    .home-s2 .text-wrap{
        font-size: 24px;
    }
}
@media (max-width: 1200px){
    .home-s2{
        padding: 30px 20px;
    }
    .home-s2 .container-fluid{
        display: block;
    }
    .home-s2 .side-wrap{
        justify-content: center;
        margin-bottom: 20px;
    }
    .home-s2 .text-wrap{
        left: 20px;
        right: 20px;
    }
    .home-s2 .main-wrap {
        padding-left: 0;
    }
}
@media (max-width: 992px){
    .home-s2 .text-wrap{
        left: 0;
        bottom: 0;
        position: relative;
        font-size: 17px;
        text-shadow: 0 0 5px #000;
    }
    .home-s2 .text-wrap .text{
        margin-left: 0 !important;
    }
    .home-s2 .img-wrap {
        width: 200px;
        margin: 0 auto;
    }
    .home-s2 .sub-title {
        font-size: 20px;
    }
}


.home-s3{
    position: relative;
}
.home-s3 .text-wrap{
    position: absolute;
    left: 65%;
    top: 12%;
    right: 0;
    font-size: 40px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 3px #000;
}
.home-s3 .text-wrap .text{
    display: inline-block;
    padding: 0 10px;
}
.home-s3 .text-wrap .text.step1{
    margin-left: 40px;
}
.home-s3 .text-wrap .text.step2{
    margin-left: 80px;
}
.home-s3 .text-wrap .icon{
    max-width: 150px;
    float: right;
    margin-top: 50px;
    margin-right: 150px;
}
.home-s3 .text-wrap span{
    font-weight: 700;
}
.home-s3 .text-wrap small{
    font-size: 56%;
}
@media (max-width: 1600px){
    .home-s3 .text-wrap{
        font-size: 32px;
    }
}
@media (max-width: 1200px){
    .home-s3 .text-wrap{
        left: 20px;
        right: 20px;
    }
}
@media (max-width: 992px){
    .home-s3{
        padding: 50px 20px;
        overflow: hidden;
    }
    .home-s3 .img-wrap{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .home-s3 .img-wrap img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .home-s3 .text-wrap{
        top: 0;
        position: relative;
        font-size: 20px;
        text-shadow: 0 0 5px #000;
    }
    .home-s3 .text-wrap .icon{
        margin: 0;
    }
    .home-s3 .text-wrap .icon .img-wrap{
        left: auto;
        max-width: 50px;
        top: -20px;
        right: -10px;
    }
}


.home-s4{
    padding: 115px 0;
}
.home-s4 .side-wrap{
    /*    display: flex;
        align-items: center;
        background-image: url(/img/home/s4-side-bg2.jpg);
        background-position: center;
        background-size: cover;*/
}
.home-s4 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.home-s4 .main-wrap{
    padding-left: 80px;
}
.home-s4 .side-title{
    margin: 50px;
    min-width: 450px;
}
.home-s4 .title{
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: unset;
}
.home-s4 .sub-title{
    color: #0057a1;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 10px;
}
.home-s4 .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 59px;
}
.home-s4 .item{
    width: 30%;
    margin-bottom: 70px;
}
.home-s4 .item .item-icon{
    max-width: 120px;
    margin-left: 20px;
}
.home-s4 .item .item-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.home-s4 .item .item-desc{
    font-size: 20px;
}
@media (max-width: 1200px){
    .home-s4{
        padding: 20px 0;
    }
    .home-s4 .side-wrap{
        display: none;
    }
    .home-s4 .main-wrap{
        padding: 30px 20px;
    }
}
@media (max-width: 992px){
    .home-s4{
        padding: 20px 0;
    }
    .home-s4 .side-wrap{
        /*display: block;
        padding: 330px 0 30px;
        background-position: center top;*/
    }
    .home-s4 .img-wrap{
        display: none;
    }
    .home-s4 .side-title{
        min-width: unset;
        padding: 50px;
        margin: 0;
    }
    .home-s4 .sub-title{
        font-size: 18px;
    }
    .home-s4 .items{
        display: block;
        margin-top: 30px;
    }
    .home-s4 .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .home-s4 .item:last-child{
        margin-bottom: 0;
    }
    .home-s4 .item .item-icon {
        max-width: 35px;
        margin-left: 0;
        margin-right: 10px;
    }
    .home-s4 .item .item-title {
        font-size: 18px;
        margin-top: 7px;
        margin-bottom: 10px;
    }
    .home-s4 .item .item-title br {
        display: none;
    }
    .home-s4 .item .item-desc {
        font-size: 15px;
        clear: both;
    }

}

.home-s5{
    position: relative;
}
.home-s5 .text-wrap{
    position: absolute;
    left: 10%;
    top: 28%;
    right: 10%;
    font-size: 49px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 3px #000;
}
.home-s5 .text-wrap .text{
    display: inline-block;
    padding: 0 10px;
}
.home-s5 .text-wrap .text.step1{
    margin-left: 40px;
}
.home-s5 .text-wrap .text.step2{
    margin-left: 80px;
}
.home-s5 .text-wrap span{
    font-weight: 700;
}
.home-s5 .text-wrap small{
    font-size: 56%;
}
@media (max-width: 1600px){
    .home-s5 .text-wrap{
        font-size: 32px;
    }
}
@media (max-width: 1600px){
    .home-s5 .text-wrap{
        left: 20px;
        right: 20px;
    }
}
@media (max-width: 992px){
    .home-s5{
        padding: 50px 20px;
        overflow: hidden;
    }
    .home-s5 .img-wrap{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .home-s5 .img-wrap img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .home-s5 .text-wrap{
        top: 0;
        position: relative;
        font-size: 17px;
        text-shadow: 0 0 5px #000;
    }
    .home-s5 .text-wrap .text {
        margin-left: 0 !important;
    }
}


.home-s6{
    padding: 115px 0;
}
.home-s6 .side-wrap{
    /*display: flex;
    align-items: center;
    background-image: url(/img/home/s6-side-bg.jpg);
    background-position: center;
    background-size: cover;*/
}
.home-s6 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.home-s6 .main-wrap{
    padding-right: 80px;
}
.home-s6 .side-title{
    padding: 250px 100px 0;
    min-width: 450px;
    line-height: unset;
}
.home-s6 .title{
    margin-top: 30px;
    line-height: unset;
}
.home-s6 .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-s6 .item{
    width: 48%;
    margin-bottom: 40px;
    margin-top: 40px;
}
.home-s6 .item-title{
    color: #0057a1;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 20px;
}
.home-s6 .item.w-border{
    padding: 50px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    width: 100%;
}
.home-s6 .item.w-border.w-border-secondary{
    border-top-color: #3dc1cb;
    border-right-color: #8ccd6a;
    border-bottom-color: #bfd411;
    border-left-color: #8ccd6a;
}
.home-s6 .item.w-border .item-title{
    font-weight: 700;
    color: #000;
}
.home-s6 .item.w-border a{
    margin-top: 50px;
    font-weight: 700;
}
.home-s6 .item-title span{
    font-weight: 700;
}
.home-s6 .item-desc{
}
.home-s6 .item-desc ul{
}
.home-s6 .item-desc ul li{
}
@media (max-width: 1200px){
    .home-s6{
        padding: 30px 20px;
    }
    .home-s6 .main-wrap {
        padding-right: 0;
    }
    .home-s6 .side-wrap{
        display: none;
    }
}
@media (max-width: 992px){
    .home-s6 .items{
        display: block;
    }
    .home-s6 .item {
        width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .home-s6 .item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .home-s6 .item-title br {
        display: none;
    }
    .home-s6 .item-desc ul {
        padding: 0 10px;
        margin: 0;
    }
    .home-s6 .item.w-border{
        padding: 15px;
    }
    .home-s6 .item.w-border .item-title{
        margin: 0 0 10px;
    }
    .home-s6 .side-title {
        /*padding: 250px 20px 20px;
        min-width: unset;
        line-height: unset;
        margin-bottom: 0;*/
    }
}

.home-s7{
    position: relative;
}
.home-s7 .text-wrap{
    position: absolute;
    left: 10%;
    top: 28%;
    right: 30%;
    font-size: 49px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 3px #000;
}
.home-s7 .text-wrap .text{
    padding: 0 10px;
    display: inline-block;
}
.home-s7 .text-wrap .text.step1{
    margin-left: 40px;
}
.home-s7 .text-wrap .text.step2{
    margin-left: 80px;
}
.home-s7 .text-wrap span{
    font-weight: 700;
}
.home-s7 .text-wrap small{
    font-size: 56%;
}
.home-s7 .text-wrap .img-wrap{
    width: 500px;
    max-width: calc(100% - 80px);
}
@media (max-width: 1600px){
    .home-s7 .text-wrap{
        font-size: 32px;
    }
}
@media (max-width: 992px){
    .home-s7{
        padding: 50px 20px;
        overflow: hidden;
    }
    .home-s7 > .img-wrap{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .home-s7 > .img-wrap img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .home-s7 .text-wrap{
        left: 0;
        right: 0;
        top: 0;
        position: relative;
        font-size: 16px;
        text-shadow: 0 0 5px #000;
        margin-left: 0 !important;
    }
    .home-s7 .text-wrap .img-wrap{
        width: 250px;
    }
}

.home-s8{
    padding: 115px 0;
}
.home-s8 .side-wrap{
    display: flex;
    align-items: center;
}
.home-s8 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.home-s8 .main-wrap{
    padding-left: 80px;
}
.home-s8 .title{
}
.home-s8 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}
.home-s8 .items{
}
.home-s8 .item{
    padding: 25px 40px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    font-weight: 700;
}
.home-s8 .item-title{
    font-size: 27px;
}
.home-s8 .item-a{
}
@media (max-width: 1200px){
    .home-s8{
        padding: 30px 0;
    }
    .home-s8 .side-wrap{
        display: none;
    }
    .home-s8 .main-wrap {
        padding-left: 0;
    }
}
@media (max-width: 992px){
    .home-s8 .sub-title {
        font-size: 18px;
    }
    .home-s8 .item{
        margin-top: 20px;
        display: block;
        padding: 10px 15px;
    }
    .home-s8 .item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .home-s8 a.btn-gradient{
        font-size: 12px;
        padding: 10px 20px;
    }
}

.home-s9{
    background-image: url(/img/home/s9-bg2.webp);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}
.home-s9 .main-wrap{
    max-width: 500px;
}
.home-s9 .side-wrap{
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 600px;
    margin-left: auto;
}
.home-s9 .img-wrap{
    max-width: 390px;
    margin: 20px 0 100px;
}
.home-s9 .text-wrap{
    font-size: 46px;
    color: #fff;
    line-height: 1.2;
}
.home-s9 .text-wrap .text{
    display: inline-block;
    padding: 0 10px;
}
.home-s9 .text-wrap .text.step1{
    margin-left: 40px;
}
.home-s9 .text-wrap .text.step2{
    margin-left: 80px;
}
.home-s9 .text-wrap .text.step3{
    margin-left: 120px;
}
.home-s9 .text-wrap span{
    font-weight: 700;
}
.home-s9 .text-wrap small{
    font-size: 56%;
}
.home-s9 .title{
    font-size: 60px;
    /*margin-top: 100px;*/
    margin-bottom: 20px;
}
.home-s9 .title span{
    font-weight: 700;
}
.home-s9 .desc{
    font-size: 31px;
    margin-bottom: 34px;
}
.home-s9 a{
    font-weight: 700;
}
@media (max-width: 1600px){
    .home-s9 .title{
        font-size: 40px;
    }
    .home-s9 .text-wrap {
        font-size: 32px;
    }
}
@media (max-width: 992px){
    .home-s9{
        padding: 30px 0;
        background-image: url(/img/home/s9-bg2-small.webp);
        text-shadow: 0 0 3px #000;
    }
    .home-s9 .side-wrap,
    .home-s9 .main-wrap{
        max-width: 100%;
        width: 100%;
        display: block;
    }
    .home-s9 .img-wrap {
        max-width: 150px;
        margin: 20px auto;
    }
    .home-s9 .text-wrap{
        white-space: unset;
        font-size: 23px;
        font-size: 20px;
        margin-top: 20px;
    }
    .home-s9 .text-wrap .text-wrap{
        display: block;
    }
    .home-s9 .title {
        font-size: 29px;
        /*margin-top: 200px;*/
        margin-bottom: 20px;
    }
    .home-s9 .desc {
        font-size: 17px;
        /*margin-bottom: 100px;*/
        text-shadow: 1px 1px 5px #000;
    }
}

.home-s10{
    display: flex;
    color: #fff;
}
.home-s10 .side-wrap{
    width: 50%;
    padding: 150px 120px;
    /*display: flex;*/
    /*align-items: center;*/
    background: #c3d502;
    background: -moz-linear-gradient(top, var(--gradient2-color2) 0%, var(--gradient2-color1) 100%);
    background: -webkit-linear-gradient(top, var(--gradient2-color2) 0%,var(--gradient2-color1) 100%);
    background: linear-gradient(to bottom, var(--gradient2-color2) 0%,var(--gradient2-color1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--gradient2-color2)', endColorstr='var(--gradient2-color1)',GradientType=0 );
    color: #000;
}
.home-s10 .side-wrap .img-wrap{
    width: 135px;
}
.home-s10 .main-wrap{
    width: 50%;
    background-color: #f4c338;
    background-image: url(/img/home/s10-bg2.webp);
    background-size: cover;
    background-position: center bottom;
}
.home-s10 .text-wrap{
    font-size: 50px;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 0 10px #000;
    width: 400px;
    margin: 20px auto;
    max-width: 100%;
}
.home-s10 .text-wrap .text{
    display: inline-block;
    padding: 0 10px;
}
.home-s10 .text-wrap .text.step1{
    margin-left: 20px;
}
.home-s10 .text-wrap .text.step2{
    margin-left: 40px;
}
.home-s10 .text-wrap .text.step3{
    margin-left: 60px;
}
.home-s10 .text-wrap span{
    font-weight: 700;
}
.home-s10 .text-wrap small{
    font-size: 56%;
}
.home-s10 .title{
    font-size: 60px;
    margin-bottom: 20px;
}
.home-s10 .title span{
    font-weight: 700;
}
.home-s10 .desc{
    font-size: 31px;
    margin-bottom: 34px;
}
.home-s10 a{
    font-weight: 700;
}
@media (max-width: 1600px){
    .home-s10 .title{
        font-size: 40px;
    }
    .home-s10 .text-wrap {
        font-size: 32px;
    }
}
@media (max-width: 1200px){
    .home-s10 .side-wrap{
        padding: 50px;
    }
    .home-s10 .desc{
        margin-bottom: 0;
    }
}
@media (max-width: 992px){
    .home-s10{
        display: block;
    }
    .home-s10 .main-wrap{
        display: block;
        padding: 30px;
        width: 100%;
        background-image: url(/img/home/s10-bg2-small.webp);
        background-position: center top;
    }
    .home-s10 .left,
    .home-s10 .right{
        max-width: 100%;
        width: 100%;
        display: block;
    }
    .home-s10 .side-wrap .img-wrap {
        width: 100px;
    }
    .home-s10 .side-wrap {
        justify-content: center;
        width: 100%;
        padding: 30px 20px;
    }
    .home-s10 .title {
        font-size: 45px;
    }
    .home-s10 .desc {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .home-s10 a {
        margin-bottom: 20px;
    }
    .home-s10 .text-wrap {
        font-size: 28px;
        margin-left: 0 !important;
    }
}
/*home page end*/

/*business activity page*/

.business-activity-s2{
    padding: 115px 0;
}
.business-activity-s2 .side-wrap{
    display: flex;
    align-items: center;
}
.business-activity-s2 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.business-activity-s2 .main-wrap{
    padding-left: 80px;
}
.business-activity-s2 .title{
}
.business-activity-s2 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}
.business-activity-s2 .items{
}
.business-activity-s2 .item{
    padding: 25px 40px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    font-weight: 700;
}
.business-activity-s2 .item-title{
    font-size: 27px;
}
.business-activity-s2 .item-a{
}
@media (max-width: 1200px){
    .business-activity-s2{
        padding: 30px 0;
    }
    .business-activity-s2 .side-wrap{
        display: none;
    }
    .business-activity-s2 .main-wrap {
        padding-left: 0;
    }
}
@media (max-width: 992px){
    .business-activity-s2 .sub-title {
        font-size: 18px;
    }
    .business-activity-s2 .item{
        margin-top: 20px;
        display: block;
        padding: 10px 15px;
    }
    .business-activity-s2 .item-title {
        font-size: 18px;
        /*margin-bottom: 10px;*/
    }
    .business-activity-s2 a.btn-gradient{
        font-size: 12px;
        padding: 10px 20px;
    }
}

.business-activity-s3{
    padding: 115px 0;
}
.business-activity-s3 .side-wrap{
    display: flex;
    align-items: center;
}
.business-activity-s3 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.business-activity-s3 .main-wrap{
    padding-right: 80px;
}
.business-activity-s3 .title{
}
.business-activity-s3 .sub-title{
    color: #0057a1;
    font-weight: 600;
    font-size: 31px;
    margin-bottom: 10px;
}
.business-activity-s3 .desc{
}
.business-activity-s3 .desc p{
}
@media (max-width: 1200px){
    .business-activity-s3{
        padding: 30px 20px;
    }
    .business-activity-s3 .container-fluid{
        display: flex;
        flex-direction: column-reverse;
    }
    .business-activity-s3 .main-wrap {
        padding-right: 0;
        margin-top: 20px;
    }
}
@media (max-width: 992px){
    .business-activity-s3 .img-wrap {
        width: 200px;
        margin: 0 auto;
    }
    .business-activity-s3 .title{
        margin-top: 0;
    }
    .business-activity-s3 .sub-title {
        font-size: 20px;
    }
}

.business-activity-s4{
    padding: 115px 0;
}
.business-activity-s4 .title{
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: unset;
    text-align: center;
}
.business-activity-s4 .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 59px;
}
.business-activity-s4 .item{
    width: 30%;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
}
.business-activity-s4 .item .item-icon{
    max-width: 120px;
    margin-right: 20px;
}
.business-activity-s4 .item .item-title{
    color: #0057a1;
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.business-activity-s4 .item .item-title span{
    font-weight: 700;
}
@media (max-width: 1200px){
    .business-activity-s4 .item{
        width: 48%;
    }
}
@media (max-width: 992px){
    .business-activity-s4{
        padding: 20px 0;
    }
    .business-activity-s4 .items{
        display: block;
        margin-top: 30px;
    }
    .business-activity-s4 .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .business-activity-s4 .item:last-child{
        margin-bottom: 0;
    }
    .business-activity-s4 .item .item-icon {
        max-width: 35px;
        margin-left: 0;
        margin-right: 10px;
    }
    .business-activity-s4 .item .item-title {
        font-size: 18px;
        margin-top: 7px;
        margin-bottom: 10px;
    }
    .business-activity-s4 .item .item-title br {
        display: none;
    }

}
/*business activity page end*/

/*Dubai Plus page*/



.mplus-s2{
    padding: 115px 0;
}
.mplus-s2 .side-wrap{
    display: flex;
    align-items: center;
}
.mplus-s2 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.mplus-s2 .main-wrap{
    padding-left: 80px;
}
.mplus-s2 .title{
}
.mplus-s2 .title span{
    font-weight: 400;
}
.mplus-s2 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}
.mplus-s2 .items{
}
.mplus-s2 .item{
    padding: 25px 40px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    font-weight: 700;
}
.mplus-s2 .item-title{
    font-size: 27px;
}
.mplus-s2 .item-a{
}
@media (max-width: 1200px){
    .mplus-s2 .side-wrap{
        display: none;
    }
    .mplus-s2 .main-wrap {
        padding-left: 0;
    }
}
@media (max-width: 992px){
    .mplus-s2{
        padding: 30px 0;
    }
    .mplus-s2 .sub-title {
        font-size: 18px;
    }
    .mplus-s2 .item{
        margin-top: 20px;
        display: block;
        padding: 10px 15px;
    }
    .mplus-s2 .item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .mplus-s2 a.btn-gradient{
        font-size: 12px;
        padding: 10px 20px;
    }
}


.mplus-s3{
    padding: 115px 0;
    background-image: url(/img/mplus/s3-bg.webp);
    background-position: center top;
    background-size: cover;
}
.mplus-s3 .side-wrap{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.mplus-s3 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.mplus-s3 .main-wrap{
    padding-left: 80px;
}
.mplus-s3 .title{
}
.mplus-s3 .sub-title{
    color: #0057a1;
    font-weight: 600;
    font-size: 31px;
    margin-bottom: 10px;
}
.mplus-s3 .desc{
}
.mplus-s3 .desc p{
}
@media (max-width: 992px){
    .mplus-s3{
        padding: 30px 20px;
    }
    .mplus-s3 .img-wrap {
        width: 200px;
        margin: 0 auto;
    }
    .mplus-s3 .main-wrap {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .mplus-s3 .title{
        margin-top: 0;
    }
    .mplus-s3 .sub-title {
        font-size: 20px;
    }
}


.mplus-s4{
    padding: 115px 0;
}
.mplus-s4 .title{
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: unset;
    text-align: center;
}
.mplus-s4 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}
.mplus-s4 .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 59px;
}
.mplus-s4 .item{
    width: 30%;
    margin-bottom: 70px;
    padding-left: 50px;
    position: relative;
}
.mplus-s4 .item:before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid;
    top: 13px;
    left: 0;
    border-top-color: var(--main-color);
    border-right-color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    border-left-color: var(--main-color);
}
.mplus-s4 .item .item-title{
    color: #0057a1;
    font-size: 25px;
    /*margin-top: 20px;*/
    margin-bottom: 20px;
}
.mplus-s4 .item .item-title span{
    font-weight: 700;
}
@media (max-width: 1200px){
    .mplus-s4 .item{
        width: 48%;
    }
}
@media (max-width: 992px){
    .mplus-s4{
        padding: 20px 0;
    }
    .mplus-s4 .sub-title{
        font-size: 18px;
    }
    .mplus-s4 .items{
        display: block;
        margin-top: 30px;
    }
    .mplus-s4 .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .mplus-s4 .item:last-child{
        margin-bottom: 0;
    }
    .mplus-s4 .item .item-title {
        font-size: 18px;
        margin-top: 7px;
        margin-bottom: 10px;
    }
    .mplus-s4 .item .item-title br {
        display: none;
    }

}
/*Dubai Plus page end*/

/*Dubai Pay page*/
.mpay-s1{
    display: flex;
    color: #fff;
}
.mpay-s1 .side-wrap{
    width: 50%;
    padding: 150px 120px;
    /*display: flex;*/
    /*align-items: center;*/
    background: #c3d502;
    background: -moz-linear-gradient(top, var(--gradient2-color2) 0%, var(--gradient2-color1) 100%);
    background: -webkit-linear-gradient(top, var(--gradient2-color2) 0%,var(--gradient2-color1) 100%);
    background: linear-gradient(to bottom, var(--gradient2-color2) 0%,var(--gradient2-color1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--gradient2-color2)', endColorstr='var(--gradient2-color1)',GradientType=0 );
    color: #000;
}
.mpay-s1 .side-wrap .img-wrap{
    width: 135px;
}
.mpay-s1 .main-wrap{
    width: 50%;
    background-color: #f4c338;
    background-image: url(/img/home/s10-bg2.jpg);
    background-size: cover;
    background-position: center bottom;
}
.mpay-s1 .text-wrap{
    font-size: 50px;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 0 10px #000;
    width: 400px;
    margin: 20px auto;
    max-width: 100%;
}
.mpay-s1 .text-wrap .text{
    display: inline-block;
    padding: 0 10px;
}
.mpay-s1 .text-wrap .text.step1{
    margin-left: 20px;
}
.mpay-s1 .text-wrap .text.step2{
    margin-left: 40px;
}
.mpay-s1 .text-wrap .text.step3{
    margin-left: 60px;
}
.mpay-s1 .text-wrap span{
    font-weight: 700;
}
.mpay-s1 .text-wrap small{
    font-size: 56%;
}
.mpay-s1 .title{
    font-size: 60px;
    margin-bottom: 20px;
}
.mpay-s1 .title span{
    font-weight: 700;
}
.mpay-s1 .desc{
    font-size: 31px;
    margin-bottom: 34px;
}
.mpay-s1 a{
    font-weight: 700;
}
@media (max-width: 992px){
    .mpay-s1{
        display: block;
    }
    .mpay-s1 .main-wrap{
        display: block;
        padding: 30px;
        width: 100%;
    }
    .mpay-s1 .left,
    .mpay-s1 .right{
        max-width: 100%;
        width: 100%;
        display: block;
    }
    .mpay-s1 .side-wrap .img-wrap {
        width: 100px;
    }
    .mpay-s1 .side-wrap {
        justify-content: center;
        width: 100%;
        padding: 30px 20px;
    }
    .mpay-s1 .title {
        font-size: 45px;
    }
    .mpay-s1 .desc {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .mpay-s1 a {
        margin-bottom: 20px;
    }
    .mpay-s1 .text-wrap {
        font-size: 30px;
        margin-left: 0 !important;
    }
}


.mpay-s2{
    padding: 115px 0;
}
.mpay-s2 .side-wrap{
    display: flex;
    align-items: center;
}
.mpay-s2 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.mpay-s2 .main-wrap{
    padding-left: 80px;
}
.mpay-s2 .title{
}
.mpay-s2 .title span{
    font-weight: 400;
}
.mpay-s2 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}
.mpay-s2 .items{
}
.mpay-s2 .item{
    padding: 25px 40px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    font-weight: 700;
}
.mpay-s2 .item-title{
    font-size: 27px;
}
.mpay-s2 .item-a{
}
@media (max-width: 992px){
    .mpay-s2{
        padding: 30px 0;
    }
    .mpay-s2 .main-wrap {
        padding-left: 0;
    }
    .mpay-s2 .sub-title {
        font-size: 18px;
    }
    .mpay-s2 .item{
        margin-top: 20px;
        display: block;
        padding: 10px 15px;
    }
    .mpay-s2 .item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .mpay-s2 a.btn-gradient{
        font-size: 12px;
        padding: 10px 20px;
    }
}


.mpay-s3{
    padding: 115px 0;
    background-image: url(/img/mpay/s3-bg.jpg);
    background-position: center top;
    background-size: cover;
}
.mpay-s3 .side-wrap{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.mpay-s3 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.mpay-s3 .main-wrap{
    padding-left: 80px;
}
.mpay-s3 .title{
}
.mpay-s3 .sub-title{
    color: #0057a1;
    font-weight: 600;
    font-size: 31px;
    margin-bottom: 10px;
}
.mpay-s3 .desc{
}
.mpay-s3 .desc p{
}
@media (max-width: 992px){
    .mpay-s3{
        padding: 30px 20px;
    }
    .mpay-s3 .img-wrap {
        width: 200px;
        margin: 0 auto;
    }
    .mpay-s3 .main-wrap {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .mpay-s3 .title{
        margin-top: 0;
    }
    .mpay-s3 .sub-title {
        font-size: 20px;
    }
}


.mpay-s4{
    padding: 115px 0;
}
.mpay-s4 .title{
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: unset;
    text-align: center;
}
.mpay-s4 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}
.mpay-s4 .items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 59px;
}
.mpay-s4 .item{
    width: 30%;
    margin-bottom: 70px;
    padding-left: 50px;
    position: relative;
}
.mpay-s4 .item:before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid;
    top: 13px;
    left: 0;
    border-top-color: var(--main-color);
    border-right-color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    border-left-color: var(--main-color);
}
.mpay-s4 .item .item-title{
    color: #0057a1;
    font-size: 25px;
    /*margin-top: 20px;*/
    margin-bottom: 20px;
}
.mpay-s4 .item .item-title span{
    font-weight: 700;
}
@media (max-width: 992px){
    .mpay-s4{
        padding: 20px 0;
    }
    .mpay-s4 .sub-title{
        font-size: 18px;
    }
    .mpay-s4 .items{
        display: block;
        margin-top: 30px;
    }
    .mpay-s4 .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .mpay-s4 .item:last-child{
        margin-bottom: 0;
    }
    .mpay-s4 .item .item-title {
        font-size: 18px;
        margin-top: 7px;
        margin-bottom: 10px;
    }
    .mpay-s4 .item .item-title br {
        display: none;
    }

}

.mpay-s5{
    padding: 115px 0;
    background-image: url(/img/mpay/s5-bg.jpg);
    background-position: right top;
    background-size: cover;
}
.mpay-s5 .content-wrap{
    max-width: 700px;
    margin-left: auto;
}
.mpay-s5 .img-wrap{
    max-width: 300px;
    margin: 0 0 30px auto;
}
.mpay-s5 .desc{
    color: #0057a1;
    font-size: 36px;
    margin-bottom: 40px;
}
.mpay-s5 .title{
    margin-bottom: 40px;
    line-height: unset;
    display: inline-block;
}
.mpay-s5 .title span{
    font-weight: 400;
}
.mpay-s5 .items{
    display: inline-block;
}
.mpay-s5 .item{
    position: relative;
    margin-bottom: 50px;
    padding: 30px 0 0 30px;
}
.mpay-s5 .item.step1{
}
.mpay-s5 .item.step2{
    padding-left: 50px;
}
.mpay-s5 .item.step3{
    padding-left: 70px;
}
.mpay-s5 .item.step4{
    padding-left: 90px;
}
.mpay-s5 .item .thumb{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    transform: rotate(45deg) translateX(-50%);
    position: absolute;
}
.mpay-s5 .item .step{
    position: relative;
    font-weight: 600;
    font-size: 35px;
    color: #0057a1;
}
.mpay-s5 .item .text{
    color: #000000;
    position: relative;
    padding-left: 30px;
    max-width: 500px;
    font-weight: 500;
    text-shadow: 1px 1px 1px #fff;
}
.mpay-s5 .item{
}
@media (max-width: 992px){
    .mpay-s5 .title{
        font-size: 60px;
    }
}
/*Dubai Pay page end*/

/*UAE Golden Visa page*/
.gvisa-s1{}
.gvisa-s2{
    padding: 115px 0;
    background-image: url(/img/golden-visa/s2-bg.webp);
    background-position: center;
    background-size: cover;
}
.gvisa-s2 .side-wrap{
    display: flex;
    align-items: center;
}
.gvisa-s2 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.gvisa-s2 .main-wrap{
    padding-left: 80px;
}
.gvisa-s2 .title{
}
.gvisa-s2 .title span{
    font-weight: 400;
}
.gvisa-s2 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 23px;
}
@media (max-width: 1200px){
    .gvisa-s2 .side-wrap{
        display: none;
    }
    .gvisa-s2 .main-wrap {
        padding-left: 0;
    }
}
@media (max-width: 992px){
    .gvisa-s2{
        padding: 30px 0;
    }
    .gvisa-s2 .sub-title {
        font-size: 18px;
    }
}

.gvisa-s3{
    padding: 115px 0;
    background-image: url(/img/golden-visa/s3-bg.webp);
    background-position: center;
    background-size: cover;
}
.gvisa-s3 .side-wrap{
    display: flex;
    align-items: center;
}
.gvisa-s3 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.gvisa-s3 .main-wrap{
    padding-right: 80px;
}
.gvisa-s3 .title{
}
.gvisa-s3 .title span{
    font-weight: 400;
}
.gvisa-s3 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}
.gvisa-s3 .items{
}
.gvisa-s3 .item{
    padding: 25px 40px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    font-weight: 700;
}
.gvisa-s3 .item-title{
    font-size: 27px;
}
.gvisa-s3 .item-a{
}
@media (max-width: 1200px){
    .gvisa-s3 .side-wrap{
        display: none;
    }
    .gvisa-s3 .main-wrap {
        padding-right: 0;
    }
}
@media (max-width: 992px){
    .gvisa-s3{
        padding: 30px 0;
    }
    .gvisa-s3 .sub-title {
        font-size: 18px;
    }
    .gvisa-s3 .item{
        margin-top: 20px;
        display: block;
        padding: 10px 15px;
    }
    .gvisa-s3 .item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .gvisa-s3 a.btn-gradient{
        font-size: 12px;
        padding: 10px 20px;
    }
}
.gvisa-s4{}
.gvisa-s5{
    padding: 135px 0;
    background-image: url(/img/golden-visa/s5-bg.webp);
    background-position: center;
    background-size: cover;
    text-align: center;
}
.gvisa-s5 .container-fluid{
    flex-direction: column;
}
.gvisa-s5 .title{
}
.gvisa-s5 .title span{
    font-weight: 400;
}
.gvisa-s5 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 23px;
}
.gvisa-s5 .desc{
    max-width: 940px;
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 61px;
}
.gvisa-s5 .main-wrap{
    text-align: justify;
    padding: 52px 57px 25px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    max-width: 1340px;
}
.gvisa-s5 .main-wrap .items{}
.gvisa-s5 .main-wrap .items .item{
    margin-bottom: 48px;
}
.gvisa-s5 .main-wrap .items .item .item__title{
    position: relative;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 13px;
    margin-bottom: 15px;
}
.gvisa-s5 .main-wrap .items .item .item__title:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 325px;
    max-width: 100%;
    height: 1px;
    background: linear-gradient(to right,  #89d9e0 50%,#c3d502 50%);
}
.gvisa-s5 .main-wrap .items .item .item__desc{
}
.gvisa-s5 .main-wrap .items .item .item__desc ul{
    padding: 0;
    margin:0;
    list-style: none;
}
.gvisa-s5 .main-wrap .items .item .item__desc ul li{
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}
.gvisa-s5 .main-wrap .items .item .item__desc ul li:before{
    content: "";
    position: absolute;
    left: 3px;
    top: 10px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #000;
}
@media (max-width: 1200px){
    .gvisa-s5 .main-wrap {
        
    }
}
@media (max-width: 992px){
    .gvisa-s5{
        padding: 30px 0;
    }
    .gvisa-s5 .main-wrap{
        padding: 25px 15px;
    }
    .gvisa-s5 .sub-title {
        font-size: 18px;
    }
    .gvisa-s5 .desc{
        margin-bottom: 30px;
    }
    .gvisa-s5 .main-wrap .items .item {
        margin-bottom: 20px;
    }
    .gvisa-s5 .main-wrap .items .item .item__title{
        font-size: 21px;
    }
}
.gvisa-s6{
    padding: 115px 0;
    background-color: #eee7e4;
}
.gvisa-s6 .side-wrap{
    display: flex;
    align-items: center;
}
.gvisa-s6 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.gvisa-s6 .main-wrap{
    padding-left: 80px;
}
.gvisa-s6 .title{
}
.gvisa-s6 .title span{
    font-weight: 400;
}
@media (max-width: 1200px){
    .gvisa-s6 .side-wrap{
        display: none;
    }
    .gvisa-s6 .main-wrap {
        padding-left: 0;
    }
}
@media (max-width: 992px){
    .gvisa-s6{
        padding: 30px 0;
    }
}
/*UAE Golden Visa page end*/

/*contact page*/
.contact-s1{
    background-image: url(/img/order/s1-bg.webp);
    background-size: cover;
    background-position: center top;
    padding: 100px 0 400px;
    color: #fff;
}
.contact-s1 .main-wrap{
    max-width: 500px;
}
.contact-s1 .side-wrap{
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 600px;
    margin-left: auto;
}
.contact-s1 .img-wrap{
    max-width: 390px;
    margin: 20px 0 100px;
}
.contact-s1 .text-wrap{
    font-size: 46px;
    color: #fff;
    line-height: 1.2;
}
.contact-s1 .text-wrap .text{
    display: inline-block;
    padding: 0 10px;
}
.contact-s1 .text-wrap .text.step1{
    margin-left: 40px;
}
.contact-s1 .text-wrap .text.step2{
    margin-left: 80px;
}
.contact-s1 .text-wrap .text.step3{
    margin-left: 120px;
}
.contact-s1 .text-wrap span{
    font-weight: 700;
}
.contact-s1 .text-wrap small{
    font-size: 56%;
}
.contact-s1 .title{
    font-size: 60px;
    /*margin-top: 100px;*/
    margin-bottom: 20px;
}
.contact-s1 .title span{
    font-weight: 700;
}
.contact-s1 .desc{
    font-size: 31px;
    margin-bottom: 34px;
}
.contact-s1 a{
    font-weight: 700;
}
@media (max-width: 992px){
    .contact-s1{
        padding: 30px 0;
        text-shadow: 0 0 3px #000;
    }
    .contact-s1 .side-wrap,
    .contact-s1 .main-wrap{
        max-width: 100%;
        width: 100%;
        display: block;
    }
    .contact-s1 .img-wrap {
        max-width: 150px;
        margin: 20px auto;
    }
    .contact-s1 .text-wrap{
        white-space: unset;
        font-size: 23px;
        font-size: 20px;
        margin-top: 20px;
    }
    .contact-s1 .text-wrap .text-wrap{
        display: block;
    }
    .contact-s1 .title {
        font-size: 29px;
        /*margin-top: 200px;*/
        margin-bottom: 20px;
    }
    .contact-s1 .desc {
        font-size: 17px;
        /*margin-bottom: 100px;*/
        text-shadow: 1px 1px 5px #000;
    }
}

.contact-s2{
    padding: 115px 0;
}
.contact-s2 .side-wrap{
    display: flex;
    align-items: center;
}
.contact-s2 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.contact-s2 .main-wrap{
    padding-left: 80px;
}
.contact-s2 .title{
}
.contact-s2 .title span{
    font-weight: 400;
}
.contact-s2 .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}
.contact-s2 .items{
}
.contact-s2 .item{
    padding: 25px 40px;
    border: 1px solid;
    border-top-color: #9563a8;
    border-right-color: #b46488;
    border-bottom-color: #d2646a;
    border-left-color: #b46488;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    font-weight: 700;
}
.contact-s2 .item-title{
    font-size: 27px;
}
.contact-s2 .item-a{
}


.contact-s2 form{
    margin: 30px auto;
    width: 100%;
}
.contact-s2 form .form-title{
    font-size: 65px;
}
.contact-s2 form .form-title span{
    font-weight: 700;
}
.contact-s2 form .form-note{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}
.contact-s2 form .form-wrap{
    margin-bottom: 20px;
}
.contact-s2 form .form-wrap input,
.contact-s2 form .form-wrap select{
    width: 100%;
    background-color: #ffffff;
    color: #000;
    padding: 14px 15px;
    font-size: 20px;
    border-radius: 7px;
    border: 1px solid #a5a5a5;
}
.contact-s2 form .form-wrap .iti{
    width: 100%;
    color: #000;
}
.contact-s2 form .form-wrap .btn{
    background-color: #fff;
    border-radius: 7px;
    padding: 10px 50px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
}
.contact-s2 form .form-wrap .btn span{
    color: var(--main-color);
    background-image: -webkit-linear-gradient(0deg, var(--main-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    position: relative;
}
@media (max-width: 1200px){
    .contact-s2 .img-wrap{
        margin: 0 auto 30px;
    }
}
@media (max-width: 992px){
    .contact-s2{
        padding: 30px 0;
    }
    .contact-s2 .main-wrap {
        padding-left: 0;
    }
    .contact-s2 .sub-title {
        font-size: 18px;
    }
    .contact-s2 .item{
        margin-top: 20px;
        display: block;
        padding: 10px 15px;
    }
    .contact-s2 .item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .contact-s2 a.btn-gradient{
        font-size: 12px;
        padding: 10px 20px;
    }
}

.contact-s3{
    padding: 115px 0;
    background-image: url(/img/mplus/s3-bg.webp);
    background-position: center top;
    background-size: cover;
}
.contact-s3 .side-wrap{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.contact-s3 .img-wrap{
    width: 530px;
    max-width: 100%;
}
.contact-s3 .main-wrap{
    padding-left: 80px;
}
.contact-s3 .title{
}
.contact-s3 .sub-title{
    color: #0057a1;
    font-weight: 600;
    font-size: 31px;
    margin-bottom: 10px;
}
.contact-s3 .desc{
}
.contact-s3 .desc p{
}
@media (max-width: 992px){
    .contact-s3{
        padding: 30px 20px;
    }
    .contact-s3 .img-wrap {
        width: 200px;
        margin: 0 auto;
    }
    .contact-s3 .main-wrap {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-s3 .title{
        margin-top: 0;
    }
    .contact-s3 .sub-title {
        font-size: 20px;
    }
}

.contact-s4{
    padding: 115px 0;
}
.contact-s4 .row{
    width: 100%;
}
.contact-s4 .item{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.contact-s4 .item-icon{
}
.contact-s4 .item-desc{
    padding-left: 20px;
    font-weight: 500;
}
.contact-s4 .item-desc span{
    font-size: 30px;
    display: inline-block;
    margin-bottom: 10px;
}
.contact-s4 .address-wrap{
    display: flex;
    justify-content: space-evenly;
}
.contact-s4 .item-address{
    border-top: 1px solid var(--gradient2-color1);
    border-right: 1px solid var(--gradient2-color2);
    border-bottom: 1px solid var(--gradient2-color2);
    border-left: 1px solid var(--gradient2-color1);
    border-radius: 15px;
    padding: 40px 50px;
}
.contact-s4 .item-address .address-title{
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 30px;
    line-height: unset;
}
.contact-s4 .item-address.address-main{
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    border-left: 1px solid var(--main-color);
}
.contact-s4 .item-address.address-main .address-title{
}
.contact-s4 .item-address p{
    font-size: 25px;
    line-height: 1.7;
}
@media (max-width: 1600px){
    .contact-s4 .item-address .address-title{
        font-size: 30px;
    }
}
@media (max-width: 1200px){
    .contact-s4 .item{
        justify-content: center;
    }
    .contact-s4 .address-wrap{
        display: block;
    }
    .contact-s4 .item-address{
        width: 700px;
        margin: 20px auto;
        max-width: 100%;
    }
}
@media (max-width: 992px){
    .contact-s4{
        padding: 50px 0;
    }
    .contact-s4 .item{
        justify-content: flex-start;
        margin-bottom: 30px;
    }
    .contact-s4 .item-icon {
        max-width: 50px;
    }
    .contact-s4 .item-desc span{
        font-size: 20px;
        margin-top: 0;
    }
    .contact-s4 .item-address{
        padding: 20px 30px;
    }
    .contact-s4 .item-address .address-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .contact-s4 .item-address p {
        font-size: 15px;
        line-height: unset;
    }
}
/*contact page end*/


/*general sections*/
.s-form{
    color: #fff;
    display: flex;
}
.s-form .left{
    width: 55%;
    background-color: #000;
    background-image: url(/img/home/s11-bg.jpg);
    background-size: cover;
    background-position: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding: 100px;
}
.s-form .title{
    font-size: 60px;
}
.s-form .title span{
    font-weight: 700;
}
.s-form .note{
}
.s-form .right{
    width: 45%;
    flex-grow: 1;
    background: var(--main-color);
    background: -moz-linear-gradient(left,  var(--main-color) 0%, var(--secondary-color) 100%);
    background: -webkit-linear-gradient(left,  var(--main-color) 0%,var(--secondary-color) 100%);
    background: linear-gradient(to right,  var(--main-color) 0%,var(--secondary-color) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--main-color)', endColorstr='var(--secondary-color)',GradientType=1 );
    display: flex;
    align-items: center;
    justify-content: center;
}
.s-form .right.clickable{
}
.s-form .right.clickable{
    color: #fff;
}
.s-form .right.clickable:hover{
    background: var(--gradient3-color1);
    background: -moz-linear-gradient(left,  var(--gradient3-color1) 0%, var(--gradient3-color2) 100%);
    background: -webkit-linear-gradient(left,  var(--gradient3-color1) 0%,var(--gradient3-color2) 100%);
    background: linear-gradient(to right,  var(--gradient3-color1) 0%,var(--gradient3-color2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--gradient3-color1)', endColorstr='var(--gradient3-color2)',GradientType=1 );
}
.s-form form{
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    padding: 200px 100px 100px 0;
}
.s-form .form-title{
    font-size: 65px;
}
.s-form .form-title span{
    font-weight: 700;
}
.s-form .form-note{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}
.s-form form .form-wrap{
    margin-bottom: 20px;
}
.s-form form .form-wrap input,
.s-form form .form-wrap textarea{
    width: 100%;
    background-color: #ffffff;
    color: #000;
    border: 0;
    padding: 14px 15px;
    font-size: 20px;
    border-radius: 7px;
}
.s-form form .form-wrap .iti{
    width: 100%;
    color: #000;
}
.s-form form .form-wrap .btn{
    background-color: #fff;
    border-radius: 7px;
    padding: 10px 50px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
}
.s-form form .form-wrap .btn span{
    color: var(--main-color);
    background-image: -webkit-linear-gradient(0deg, var(--main-color) 0%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    position: relative;
}
/*contact form message container*/
.message-cont{
    padding:16px;
    text-align:center;
    font-size:12px;
    display:none;
}
.message-cont.success{
    background:#cefbc4;
    border:#63e163 solid 1px;
    color:#34a234;
    display:block;
}
.message-cont.error{
    background:#fbcec4;
    border:#e16363 solid 1px;
    color:#a23434;
    display:block;
}
/*contact form message container end*/
/*intl phone country-list*/
.iti__country-list{
    font-size:12px;
}
/*intl phone country-list end*/
@media (max-width: 1600px){
    .s-form form{
        padding: 50px;
    }
    .s-form .title{
        font-size: 40px;
        margin-bottom: 20px;
    }
}
@media (max-width: 1200px){
    .s-form .left{
        padding: 50px;
    }
    .s-form .title {
        font-size: 30px;
    }
}
@media (max-width: 992px){
    .s-form{
        display: block;
    }
    .s-form .left{
        background-image: url(/img/home/s11-bg-small.jpg);
    }
    .s-form .left,
    .s-form .right{
        width: 100%;
        padding: 50px;
    }
    .s-form .title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .s-form .title br{
        display: none;
    }
    .s-form form{
        padding: 0;
    }
    .s-form .form-title {
        font-size: 35px;
    }
    .s-form .form-note {
        font-size: 20px;
    }
}

.static{
    padding: 50px 0;
}
.static .static-s1{
}
.static .static-s1 .title{
    color: var(--main-color);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.static .static-s1 .text{

}
.static .static-s1 .text ul li,
.static .static-s1 .text p{
    text-align: justify;
}
@media (max-width: 992px){
    .static .static-s1 .title{
        font-size: 20px;
        font-weight: 600;
    }
}


.s-order{
    padding: 115px 0;
}
.s-order .title{
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: unset;
    text-align: center;
}
.s-order .main-wrap{
    flex-grow: 1;
}
.s-order .sub-title{
    color: #0057a1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}
.s-order .desc{
    max-width: 900px;
    text-align: center;
    margin: 30px auto 50px;
}
.s-order .items{
}
.s-order .item{
}
.s-order .item.active{
}
.s-order .item-header{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    align-items: center;
}
.s-order .item-header .name{
    font-weight: 600;
    font-size: 25px;
}
.s-order .item-header .price{
    color: var(--gradient3-color1);
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 600;
    font-size: 30px;
}
.s-order .item-body{
    border-right: 1px solid #9363aa;
    border-left: 1px solid #3bc0cb;
    border-bottom: 1px solid #df655e;
    border-radius: 0 0 15px 15px;
    padding: 30px 30px 50px;
}
.s-order .item.active .item-body{
    background-color: #eee;
}
.s-order .item-body .item-title{
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}
.s-order .item-body ul{
    list-style: none;
    padding: 0;
    margin: 0;

}
.s-order .item-body ul li{
    position: relative;
    padding-left: 40px;
    font-size: 26px;
    line-height: 1.6;
}
.s-order .item-body ul li:before{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 6 Pro";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f058";
}
.s-order .item-btn{
    transform: translate(-50%, -50%);
    margin-left: 50%;
    font-weight: 600;
    padding: 15px 40px;
    text-align: center;
}
.s-order .item.active .item-btn{
    background-color: #fff;
    color: var(--main-color);
    background-image: none;
    border: 1px solid;
}
.s-order .item-btn i.fa{
    display: none;
}
.s-order .item.active .item-btn i.fa{
    display: block;
}
.s-order a:active,
.s-order a:focus{
    color: #fff;
}
@media (max-width: 992px){
    .s-order{
        padding: 30px 0;
    }
    .s-order .sub-title{
        font-size: 18px;
    }
    .s-order .item-header .name{
        font-size: 30px;
    }
    .s-order .item-header .price{
        font-size: 20px;
    }
    .s-order .item-body .item-title{
        font-size: 25px;
    }
    .s-order .item-btn{
        font-size: 16px;
    }
    .s-order .item-body ul li{
        font-size: 18px;
    }
}

/*general sections end*/


.footer{
}
.footer .footer-top{
    padding: 50px 0;
    background-color: #fff;
    color: #000;
}
.footer .footer-bottom{
    padding: 50px 0;
    background-color: #202020;
    color: #fff;
}
.footer .row{
    flex-grow: 1;
}

.footer .address-wrap{
    display: flex;
    justify-content: space-evenly;
}
.footer .item-address{
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    border-left: 1px solid var(--main-color);
    border-radius: 15px;
    padding: 40px 50px;
}
.footer .item-address .address-title{
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 30px;
    line-height: unset;
}
.footer .item-address.address-main .address-title{
}
.footer .item-address p{
    font-size: 25px;
    line-height: 1.7;
}

@media (max-width: 1600px){
    .footer .item-address .address-title{
        font-size: 30px;
    }
}
@media (max-width: 1200px){
    .footer .item{
        justify-content: center;
    }
    .footer .address-wrap{
        display: block;
    }
    .footer .item-address{
        width: 700px;
        margin: 20px auto;
        max-width: 100%;
    }
}
@media (max-width: 992px){
    .footer .item-address{
        padding: 20px 30px;
    }
    .footer .item-address .address-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .footer .item-address p {
        font-size: 15px;
        line-height: unset;
    }
}

.footer .seal-wrap{
}
@media (max-width: 992px){
    .footer .seal-wrap{
        /*display: none;*/
    }
}
.footer .seal-wrap .container-fluid{
    display: block;
    max-width: 900px;
    margin: 0 auto;
}
.footer .seal-wrap .item{
    text-align: center;
}
.footer .seal-wrap .item a{
}
.footer .seal-wrap .item img{
    height: 95px;
    display: inline-block;
    border-radius: 7px;
}
.footer .seal-wrap{
}
.footer .seal-wrap{
}


.footer .copyright-block{
    flex-grow: 1;
    padding-top: 20px;
    font-size: 20px;
}
.footer .links-block{
    flex-grow: 1;
    padding-top: 20px;
}
.footer .links-block ul{
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    justify-content: space-evenly;
}
.footer .footer-bottom a{
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 20px;
}
.footer .footer-bottom a:hover{
    color: #fff;
}
.footer .links-block ul li{
}
.footer .links-block ul li a{
    display: block;
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 20px;
}
.footer .links-block ul li a:hover{
    color: #fff;
}

.footer .btn-fixed-wrap {
    display: none;
    width:100%;
    position: fixed;
    bottom: 15px;
    z-index: 99999;
    font-family:Roboto;
    font-weight: 500;
}
@media (max-width: 992px){
    .footer-bottom{
        padding: 30px 0 80px;
        text-align: center;
    }
    .footer .links-block ul{
        display: block;
    }
    .footer .footer-bottom a,
    .footer .links-block ul li a{
        font-size: 12px;
    }
    .footer .links-block ul li a{
        text-align: center;
    }
    .footer .copyright-block p{
        font-size: 12px;
        text-align: center;
    }
    .footer .btn-fixed-wrap {
        display: block;
    }
    .footer .btn-fixed-wrap > div:first-child {
        width:calc(50% - 22px);
        max-width:200px;
        float: left;
        margin-left: 15px;
    }
    .footer .btn-fixed-wrap > div:last-child {
        width:calc(50% - 22px);
        max-width:200px;
        float: right;
        margin-right: 15px;
    }
    .footer .btn-fixed-wrap > div a {
        color: #fff;
        text-decoration: none;
        height: 46px;
        border-radius: 12px;
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1;
        outline: none;
        box-sizing: border-box;
        padding: 8px 0px;
        text-align:center;
        font-size: 20px;
        box-shadow: 0 0 12px rgb(0 0 0 / 25%);
    }
    .footer .contact-btn-fixed a {
        background-color: #55a81e;
    }
    .footer .btn-fixed-wrap > div a i {
        font-size: 20px;
    }
    .footer .contact-btn-fixed a i {
        margin-right: 10px;
    }
}
.grecaptcha-badge{
    display: none;
}
#ct-ultimate-gdpr-cookie-open-shaddow{
    display: none !important;
}
.btn-fixed-wrap-desctop{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
@media screen and (max-width: 992px){
    .btn-fixed-wrap-desctop{
        display: none;
    }
}
.btn-fixed-wrap-desctop ul{
    list-style: none;
    background-color: #029718;
    color: #fff;
    display: flex;
    justify-content: center;
    border-radius: 10px 10px 0 0 !important;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 25%);
    box-shadow: 0 0 12px rgb(0 0 0 / 25%);
}
.btn-fixed-wrap-desctop ul li{
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.btn-fixed-wrap-desctop ul li:after{
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 5px;
    width: 1px;
    background-color: #00631b;
}
.btn-fixed-wrap-desctop ul li:last-child:after{
    content: none;
}
.btn-fixed-wrap-desctop ul li a,
.btn-fixed-wrap-desctop ul li input{
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    border: 0;
    white-space: unset !important;
}
@media screen and (max-width: 1440px){
    .btn-fixed-wrap-desctop ul li a,
    .btn-fixed-wrap-desctop ul li input{
        font-size: 12px;
    }
}
.btn-fixed-wrap-desctop ul li a:hover,
.btn-fixed-wrap-desctop ul li input:hover{
    opacity: 0.8;
    text-decoration: none;
}
.btn-fixed-wrap-desctop ul li img{
    margin-right: 10px;
}
.btn-fixed-wrap-desctop ul li span.flag-icon{
    margin-left: 10px;
}



.flag-icon {

    position: relative;
    display: inline-block;
    width: 1.3333333333333333em;
    line-height: 1em;

}

.flag-icon, .flag-icon-background {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.flag-icon-gb {
    background-image: url(/img/flags/gb.svg);
}

.flag-icon-ae {
    background-image: url(/img/flags/ae.svg);
}

.flag-icon-de {
    background-image: url(/img/flags/de.svg);
}

.flag-icon-es {
    background-image: url(/img/flags/es.svg);
}

.flag-icon-fr {
    background-image: url(/img/flags/fr.svg);
}

.flag-icon::before {
    content: "\00a0";
}


/*end*/