/*Font Styles*/

@font-face {
    font-family: fontawesome;
    src: url('../fonts/font-awesome/fontawesome-webfont.ttf');
}
@font-face {
    font-family: calibri;
    src: url('../fonts/calibri/CalibriRegular/Calibri Regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: calibri;
    src: url('../fonts/calibri/CalibriLight/Calibri Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: calibri;
    src: url('../fonts/calibri/CalibriBold/Calibri Bold.TTF');
    font-weight: 700;
}
@font-face {
    font-family: segoe-ui;
    src: url('../fonts/segoe-ui/Segoe UI Semilight 350.ttf');
    font-weight: 400;
}
@font-face {
    font-family: segoe-ui;
    src: url('../fonts/segoe-ui/Segoe UI 400.ttf');
    font-weight: 500;
}
@font-face {
    font-family: segoe-ui;
    src: url('../fonts/segoe-ui/Segoe UI Gras 700.ttf');
    font-weight: 700;
}


/*Common Styles*/

body{
    font-family: calibri !important;
    font-size: 19px;
    letter-spacing: 0.5;
    font-weight: 400;
}

/*header*/

.navbar .navbar-brand{
    height: auto;
    display: inline-block;
    margin: 30px 0;
    padding: 0;
    transition: all 0.3s ease;
}
.navbar.sticky{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: #5A63A6;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.navbar.sticky .dropdown .menu-drp{
    color: #fff;
    background-color: transparent;
}
.navbar.sticky .dropdown2 .menu-drp i{
    color: #fff;
}
.navbar.sticky form .form-group input{
    color: #fff;
    border: 1px solid #3d4897;
    background-color: #3d4897;
}
.navbar.sticky .nav > li > a{
    color: #fff;
}
.main-header{
    height: 120px;
    background-color: #fff;
    margin: 0;
    transition: all 0.3s ease;
}
.main-header .navbar-brand img{
    display: inline-block;
    height: 50px;
}
.navbar .navbar-brand img.logo2{
    display: none;
    visibility: hidden;
    transition: all 0.3s ease;
}
.navbar.sticky .navbar-brand img.logo2{
    display: block;
    visibility: visible;
}
.navbar.sticky .navbar-brand img.logo1{
    display: none;
    visibility: hidden;
}
.nav > li > a{
    padding: 50px 7px;
    color: #5A63A6;
    font-size: 14px;
    background-color: transparent;
}
.nav > li > a:hover, .nav > li > a:focus{
    background-color: transparent;
    color: #5A63A6;
} 
.nav li.active a{
    background-color: transparent;
    border-bottom: 1px solid #8579fb;
}
.nav li a.btn{
    height: 40px;
    color: #fff;
    background-color: #95D2EE;
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    border: none;
    padding: 0 15px;
    margin: 40px 0 40px 5px;
    line-height: 40px;
}
.navbar .dropdown{
    display: inline-block;
}
.dropdown .menu-drp{
    background: none;
    color: #5A63A6;
    margin: 35px 0px 35px 20px;
}
.dropdown2 .menu-drp{
    height: 40px;
    background-color: #EDF6FB;
    border:1px solid #95D2EE;
    border-radius: 20px;
    width: 130px;
    font-size: 16px;
}
.dropdown .menu-drp i{
    color: #95D2EE;
    font-size: 18px;
    line-height: 20px;
    vertical-align: middle;
    margin-left: 3px;
}
.dropdown2 .menu-drp i{
    font-size: 22px;
    color: #5A63A6;
    margin-left: 5px;
}
.dropdown .menu-drp:focus{
    box-shadow: none;
}
.dropdown .menu-drp-nw{
    margin: 10px 0;
    min-width: 160px;
    border: 1px solid #ccc;
    padding: 0;
    top: calc(100% - 40px);
    left: 0;
}
.dropdown .menu-drp-nw li{
    transition: all 0.3s ease;
    border-bottom: 1px solid #f7f7f7;
}
.dropdown .menu-drp-nw li:last-child{
    border-bottom: none;
}
.dropdown .menu-drp-nw li a{
    color: #222;
    padding: 10px 15px;
    transition: all 0.3s ease;
}
.dropdown .menu-drp-nw li a:hover{
    background-color: #5A63A6;
    color: #fff;
}
.dropdown .menu-drp-nw li:hover a{
    color: #fff;
    text-decoration: none;
}
.main-header form{
    display: inline-block;
    margin: 20px 0 20px 15px;
}
.main-header form .form-group{
    position: relative;
    width: 240px;
    margin: 20px 0;
}
.main-header form .form-group input{
    border: 1px solid #95D2EE;
    width: 240px;
    height:40px;
    border-radius: 20px;
    color: #5A63A6;
    box-shadow: none;
    padding: 0 20px;
}
.main-header form .form-group i{
    position: absolute;
    right: 0;
    top: 0;
    background-color: #95D2EE;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
}

/*Banner*/
.banner-wrap{
    margin-top: 120px;
    background-image: url("../images/main-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: center;
}
.banner-container{
    margin-left: 80px;
    margin-top: 50px;
}
.banner-container h2{
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    font-family: segoe-ui;
    text-transform: uppercase;
}
.banner-container p{
    font-size: 18px;
    color: #fff;
    margin: 0 0 40px;
}
.banner-container .btn-default{
    background-color: #fff;
    padding: 0 30px;
    color: #2FB7E7;
    border-radius: 20px;
    height: 40px;
    border: none;
    line-height: 40px; 
    font-size: 15px;
    font-weight: 300;
    font-family: segoe-ui;
}

.rec-wrap{
    padding: 80px 0;
    background-color: #F7F7F7;
}
.main-title h3{
    position: relative;
    font-family: segoe-ui;
    font-size: 40px;
    font-weight: 500;
    color: #555555;
    margin: 0 0 40px;
}
/*.main-title h3:before{
    position: absolute;
    content: "";
    top: calc(100% + 10px);
    width: 75px;
    height: 3px;
    left: calc(50% - 37px);
    background-color: #F2ADAF;
}*/
.main-title p{
    color: #626262;
    font-size: 18px;
    margin: 0 0 60px;
    font-family: segoe-ui;
    font-weight: 500;
}
.rec-container img{
    margin: 0 auto;
}
.rec-container li{
    width: 33%;
    vertical-align: middle;
    text-align: center;
}

/*Plan*/
.plan-wrap{
    margin: 80px 0;
}
.main-title p a{
    color: #F0989C;
    font-weight: 700;
}
.plan-container{
    margin-bottom: 30px;
}
.plan-container .text1{
    font-family: segoe-ui;
    font-weight: 500;
    font-size: 16px;
    color: #262626;
    margin-right: 5px;
}
.plan-container .text2{
    margin-left: 10px;
    font-family: segoe-ui;
    font-weight: 500;
    font-size: 16px;
    color: #D6D6D6;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    vertical-align: middle;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 2px solid #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 0px;
    bottom: 0px;
    background-color: #B8ADD4;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #fff;
}

input:focus + .slider {
    box-shadow: 0 0 1px #fff;
}

input:checked + .slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.plan-container2{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 3px 99px rgba(225, 229, 241, 53%);
    padding: 40px 30px 30px;
    min-height: 500px;
    transition: all 0.3s ease;
}
.plan-container2 h5{
    color: #4B4B4B;
    font-family: segoe-ui;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 30px;
}
.plan-container2 span{
    /*font-family: adobe-arabic;*/
    font-weight: 700;
    font-size: 26px;
    color: #5A63A6;
    margin: 0 0 30px;
    display: inline-block;
}
.plan-container2 span span{
    font-size: 15px;
    text-align: right;
    margin: 0 0 0 30px;
}
.plan-container2 p{
    color: #93959F;
    font-family: segoe-ui;
    font-size: 14px;
    margin: 0 0 30px;
    line-height: 26px;
    min-height: 210px;
}
.plan-container2 a.btn{
    background-color: #5A63A6;
    height: 50px;
    border-radius: 25px;
    width: 100%;
    text-align: center;
    font-family: adobe-arabic;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    border: none;
    line-height: 50px;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 9;
}
.plan-container2:hover{
    background-color: #5A63A6;
}
.plan-container2 h5, .plan-container2 span, .plan-container2 p{
    transition: all 0.3s ease;
}
.plan-container2:hover h5, .plan-container2:hover span, .plan-container2:hover p{
    color: #fff;
} 
.plan-container2:hover a.btn{
    background-color: #fff;
    color: #5A63A6;
}
.plan-container2.middle{
    box-shadow: 0 0 99px rgba(225, 229, 241, 53%);
}

/*Features*/
.fea-wrap{
    margin: 30px 0 100px;
}
ul.plans-list li{
    width: 30%;
    display: inline-block;
    vertical-align: top;
    padding: 0 25px;
}
ul.plans-list li .plan-container2{
    min-height: auto;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
}
ul.plans-list li .plan-container2:hover h5{
    color: #4B4B4B;
}
ul.plans-list li .plan-container2:hover span{
    color: #5A63A6;
}
ul.plans-list li .plan-container2 > span{
    min-height: 60px;
    text-align: center;
}
ul.plans-list li .plan-container2 span span{
    margin-left: 0;
}
ul.plans-list li .plan-container2 a.btn{
    background-color: transparent;
    border: 1px solid #5A63A6;
    color: #5A63A6;
    transition: all 0.3s ease;
}
ul.plans-list li .plan-container2 a.btn:hover{
    color: #fff;
    background-color: #5A63A6;
}
.fea-container span.fea-span{
    text-transform: uppercase;
    color: #727272;
    font-size: 20px;
    font-family: segoe-ui;
    margin: 0 0 20px;
    display: block;
}
.fea-container h4{
    font-size: 40px;
    font-family: segoe-ui;
    color: #363636;
    font-weight: 700;
    margin: 0 0 30px;
}

/*Table*/
table{
    width: calc(100% - 20px);
    border-collapse: collapse;
    margin-top: 60px;
}
table thead tr{
    background-color: #5A63A6;
}
table thead tr th{
    color: #DCDFEE;
    font-size: 18px;
    font-family: segoe-ui;
    font-weight: 500;
    text-align: center;
    padding: 15px 20px;
}
table thead tr > th:first-child{
    color: #fff;
    font-family: segoe-ui;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    border-radius: 15px 0 0 0;
}
table thead tr > th:last-child{
    border-radius: 0 15px 0 0;
}
table tbody tr > td:first-child{
    border-left: 40px solid transparent;
}
table tbody tr > td:last-child{
    border-right: 40px solid transparent;
}
table tbody {
    background-color: #EDF6FB;
}
table tbody tr {
    border-bottom: 1px solid rgba(205, 232, 246, 75%);
}
table tbody tr:last-child{
    border-bottom: none;
}
table tbody tr td{
    padding: 15px 0;
    font-size: 16px;
    font-family: segoe-ui;
    font-weight: 500;
    text-align: center;
    color: #62C4EA;
}
table td:first-child{
    text-align: left;
    color: #93959F;
    width: 40%;
}
table td i.fa-times-circle{
    color: #F6C6C3;
} 


/*Save big*/
.save-wrap{
    padding: 80px 0;
    background-color: rgba(238, 243, 226, 41%);
}
.vma-container{
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    margin: 0 20px;
    position: relative;
    min-height: 695px;
}
.vma-container:before{
    position: absolute;
    content: "VS";
    font-family: adobe-arabic;
    font-size: 30px;
    color: #5A63A6;
    font-weight: 700;
    top: calc(50% - 5px);
    right: -55px;
}
.vma-container2:before{
    display: none;
}
.vma-container .icon-con .icon-img, .vma-container .icon-con .icon-content{
    display: inline-block;
    vertical-align: middle;
}
.vma-container .icon-con .icon-img{
    background-color: #7883BC;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
}
.vma-container .icon-con .icon-img img{
    margin: 0 auto;
    padding: 18px 0;
}
.vma-container .icon-con .icon-content{
    margin-left: 25px;
}
.vma-container .icon-con .icon-content h6{
    color: #4B4B4B;
    font-size: 22px;
    font-weight: 700;
    font-family: segoe-ui;
    margin: 0 0 10px;
}
.vma-container .icon-con .icon-content span{
    color: #5A63A6;
    font-family: adobe-arabic;
    font-size: 20px;
    font-weight: 700;
}
.vma-container ul{
    list-style: none;
    margin-left: 70px;
    margin-top: 50px;
}
.vma-container ul li{
    padding-bottom: 10px;
    font-family: segoe-ui;
    font-size: 16px;
    color: #93959F;
    font-weight: 500;
}
.vma-container ul li i{
    color: #95D2EE;
    margin-right: 5px;
}
.vma-container2{
    padding: 15px;
}
.vma-container2 .icon-con{
    background-color: rgba(232, 231, 243, 41%);
    padding: 20px 40px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.vma-container2 .icon-con .icon-content h6{
    font-size: 19px;
}
.vma-container2 .icon-con .icon-content span{
    font-size: 15px;
}
.icon-con{
    position: relative;
}
.icon-con:before{
    position: absolute;
    content: "+";
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-size: 18px;
    border-radius: 50%;
    left: calc(50% - 15px);
    top: calc(100% - 10px);
    z-index: 9;
}
.icon-con.icon1:before{
    background-color: #B8ADD4;
}
.icon-con.icon2:before{
    background-color: #8ED0EC;
}
.icon-con.icon3:before{
    background-color: #B1CF7A;
}
.icon-con.icon4:before{
    background-color: #EF9790;
    content: "=";
}
.vma-container2 .icon-con.icon2 .icon-img{
    background-color: #62C4EA;
}
.vma-container2 .icon-con.icon3 .icon-img{
    background-color: #B1CF7A;
}
.vma-container2 .icon-con.icon4 .icon-img{
    background-color: #F0989C;
}
.vma-container2 .icon-con.icon2 .icon-content span{
    color: #62C4EA;
}
.vma-container2 .icon-con.icon3 .icon-content span{
    color: #B1CF7A;
}
.vma-container2 .icon-con.icon4 .icon-content span{
    color: #F0989C;
}
.vma-container2 .icon-con.icon5{
    background-color: transparent;
    margin-top: 30px;
}
.vma-container2 .icon-con.icon5 span{
    font-size: 25px;
    margin: 0 0 5px;
    display: block;
}
.vma-container2 .icon-con.icon5 p{
    font-size: 16px;
    color: #93959F;
    font-family: adobe-arabic;
}


/*Mp*/
.mp-wrap{
    margin: 100px 0;
}
.mp-container{
    border-radius: 15px;
    padding: 50px;
    background-color: #EDF6FB;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.mp-container:hover{
    background-color: #5A63A6;
}
.mp-container:hover .mp-img{
    background-color: #EF9790;
}
.mp-container .mp-img{
    margin: 0 auto 30px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: #62C4EA;
    position: relative;
}
.mp-container:hover .mp-img:before{
    position: absolute;
    content: "";
    width: 92px;
    height: 92px;
    top: -6px;
    left: -6px;
    border: 6px solid rgba(247, 208, 204, 35%);
    border-radius: 50%;
}
.mp-container:hover p{
    color: #fff;
}
.mp-container .mp-img img{
    margin: 0 auto;
    height: 75px;
    width: auto;
    padding: 20px 0;
}
.mp-container p{
    font-family: segoe-ui;
    font-weight: 500;
    font-size: 18px;
    color: #363636;
}

/*Academy*/
.aca-wrap{
    background-color: rgba(235, 235, 235, 41%);
    padding: 100px 0;
}
.aca-container{
    position: relative;
}
.aca-container .aca-content{
    position: absolute;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.aca-container .aca-content.con1{
    top: -20px;
    left: calc(50% - 70px);
    padding: 60px 80px;
}
.aca-container .aca-content.con2{
    top: 70px;
    right: 0;
    padding: 30px;
}
.aca-container .aca-content.con3{
    bottom: 70px;
    right: 80px;
    padding: 60px 30px;
}
.aca-container .aca-content span{
    color: #62C4EA;
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    display: block;
}
.aca-container .aca-content p{
    font-size: 22px;
    color: #363636;
    margin: 0;
}
.aca-wrap .main-title{
    padding: 150px 0;
}
.aca-wrap .main-title h3{
    font-size: 28px;
    margin-bottom: 50px;
}
.aca-wrap .main-title h3:before{
    left: 0;
}
.aca-wrap .main-title p{
    font-size: 16px;
}

/*testimonials*/
.test-wrap{
    margin: 100px 0;
}
.test-container .item{
    background-color: #303986;
    border-radius: 20px;
    padding: 100px;
    position: relative;
    margin-bottom: 60px;
}
.test-container .item p, .test-container .item span{
    color: #fff;
    font-family: segoe-ui;
    font-size: 18px;
    margin: 0 0 20px;
}
.test-container .item img{
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: -60px;
    left: calc(50% - 60px);
    z-index: 9;
}
.owl-carousel .owl-nav{
    display: none;
}

/*Clients*/
.client-wrap{
    margin: 0 0 80px;
}
.client-container{
    margin: 0 auto;
    text-align: center;
}
.client-container li img{
    height: 85px;
    width: auto;
}

/*vma for business*/
.banner-wrap2{
    background-image: url("../images/vma/background.gif");
}
.banner-wrap2 .banner-container {
    margin-left: 60px;
}
.banner-container span{
    color: #F6C6C3;
    display: block;
    margin: 0 0 15px;
    font-family: segoe-ui;
    font-weight: 500;
}
.banner-wrap2 .banner-container p{
    line-height: 26px;
    font-size: 20px;
}
.banner-wrap2 .banner-container .btn-default{
    font-weight: 600;
}
.soft-wrap{
    margin: 100px 0;
}
.main-title2 span.st{
    font-size: 14px;
    color: #555;
    font-weight: 700;
    margin: 0 0 10px;
    display: block;
    font-family: segoe-ui;
}
.main-title2 h4{
    color: #303986;
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    font-family: segoe-ui;
    margin: 0;
}
.main-title2 h4 span{
    position: relative;
    display: inline-block;
}
.main-title2 h4 span:before{
    position: absolute;
    content: "";
    top: calc(100% - 4px);
    left: 0;
    width: 100%;
    background-color: #62C4EA;
    height: 4px;
}
.soft-container p{
    font-size: 14px;
    color: #555;
    margin: 0 0 20px;
    font-family: segoe-ui;
}
.soft-wrap .main-title2{
    padding-left: 100px;
}
.soft-container{
    padding-right: 100px;
    padding-left: 30px;
    margin-top: 35px;
}
.soft-container ul li{
    color: #303986;
    font-weight: 700;
    font-size: 14px;
    width: 49%;
    font-family: segoe-ui;
    padding-bottom: 2px;
}
.soft-container li i{
    color: #555;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    line-height: 14px;
    border: 2px solid #62C4EA;
    margin-right: 6px;
    margin-top: -3px;
}

/*Activity*/
.act-wrap{
    margin-bottom: 20px;
}
.act-container{
    margin-bottom: 80px;
}
.act-container h6{
    font-weight: 700;
    color: #303986;
    font-size: 20px;
    margin: 0 0 25px;
    font-family: segoe-ui;
}
.act-container img{
    margin-bottom: 25px;
    height: 85px;
    width: auto;
}
.act-container p{
    color: #303986;
    font-size: 14px;
    margin: 0;
    font-family: segoe-ui;
}
.pdlr{
    padding: 0 100px;
}

/*Case studies*/
.case-wrap{
    padding: 80px 0 120px;
    background-color: #F9F9F9;
}
.case-container{
    position: relative;
}
.case-container img{
    height: 450px;
    width: auto;
}
.case-container .case-content{
    position: absolute;
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    bottom: -40px;
    left: -40px;
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 6%);
}
.case-container .case-content p{
    font-size: 14px;
    font-weight: 700;
    color: #303986;
    margin: 0 0 25px;
    font-family: segoe-ui;
}
.case-container .case-content a{
    color: #62C4EA;
    font-weight: bold;
    font-size: 14px;
    font-family: segoe-ui;
}
.case-container .case-content a i{
    color: #303986;
    width: 20px;
    font-size: 12px;
    height: 20px;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #62C4EA;
    margin-left: 20px;
}
.case-wrap .main-title2{
    margin-top: 40px;
}
.case-wrap .main-title2 span.st{
    color: #62C4EA;
}
.case-wrap .main-title2 h4{
    font-size: 28px;
}
.cc2{
    margin: 40px 0 0 60px;
}
.case-container.cc2 p{
    font-size: 12px;
    color: #303986;
    font-weight: 500;
    line-height: 15px;
    margin: 0 0 10px;
    font-family: segoe-ui;
}
.case-container ul{
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
}
.case-container ul li{
    color: #303986;
    font-size: 13px;
    font-weight: 700;
    padding: 0 0 5px;
    font-family: segoe-ui;
}
.case-container ul li i{
    color: #62C4EA;
    padding-right: 5px;
}

/*Mobile membershpip plan*/
.mob-plan .plan-container2.pc {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    margin: 0 0 30px;
}
.mob-plan .plan-container2.pc h5{
    color: #5A63A6;
}
.mob-plan .plan-container2{
    background-color: #FAFAFA;
    box-shadow: none;
}
.mob-plan .plan-container2 span{
    color: #62C4EA;
}

/*Stories*/
.story-wrap{
    margin: 100px 0;
}
.story-container{
    padding: 60px 30px 250px;
    background-color: #EDF6FB;
    border-radius: 5px;
    position: relative;
    margin-bottom: 30px;
}
.story-wrap .main-title2 span.st{
    color: #62C4EA;
}
.story-wrap .main-title2 h4{
    font-size: 28px;
    margin-bottom: 60px;
}
.story-container img.img1{
    margin: 0 auto 30px;
    height: 50px;
    width: auto;
}
.story-container h6{
    color: #303986;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px;
}
.story-container p{
    color: #303986;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
.story-container .img2{
    position: absolute;
    bottom: -30px;
    height: 200px;
    width: auto !important;
    left: calc(50% - 150px);
}
.owl-carousel.story-owl .owl-nav{
    display: block;
}
.story-owl .owl-nav .owl-prev, .story-owl .owl-nav .owl-next{
    position: absolute;
    font-size: 0;
    background-color: #62C4EA;
    width: 30px;
    height: 5px;
    border-radius: 5px;
    bottom: -30px;
} 
.story-owl .owl-nav .owl-prev{
    right: 35px;
}
.story-owl .owl-nav .owl-next{
    right: 0;
}
.story-owl .owl-nav .owl-prev.disabled, .story-owl .owl-nav .owl-next.disabled{
    background-color: #D1D1D1;
    width: 20px;
}

.story-wrap ul li{
    color: #878FC2;
    font-size: 13px;
    font-family: segoe-ui;
    font-weight: 700;
    padding-left: 180px;
    margin-top: 20px;
}
.story-wrap ul li span{
    color: #303986;
}
.rec-wrap .main-title2 span.st{
    color: #62C4EA;
    margin-bottom: 60px;
}
.rec-wrap .main-title2 h4{
    font-size: 28px;
    margin-bottom: 10px;
}
.rec-wrap2{
    background-color: transparent;
    padding: 0;
    margin: 30px 0 120px;
}

.users-wrap{
    background-image: url("../images/vma/banner2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    margin: 0 0 100px;
}
.users-wrap .main-title2 span.st{
    color: #62C4EA;
    margin-bottom: 10px;
}
.user-container{
    position: relative;
}
.user-container span{
    position: absolute;
    top: 0;
    left: 40px;
}
.user-container span i{
    color: #62C4EA;
    transform: rotate(-180deg);
    font-size: 35px;
}
.user-container p{
    font-size: 20px;
    color: #303986;
    font-weight: 500;
    padding: 10px 70px 0;
    line-height: 25px;
    margin: 0 0 30px;
}
.user-container h6{
    color: #62C4EA;
    font-size: 14px;
    font-weight: 700;
    margin: 100px 0 0;
    display: block;
    font-family: segoe-ui;
}
.user-container .owl-dots{
    width: 250px;
    margin: 0 auto;
    position: absolute;
    bottom: 35px;
    left: calc(50% - 125px);
}
.user-container .owl-dots .owl-dot img{
    height: 48px;
    width: auto;
}
.user-container .owl-dots .owl-dot{
    cursor: pointer;
    display: inline-block;
    margin: 0 7px;
    transition: all 0.3s ease;
    position: relative;
    padding: 3px;
    border: 2px solid transparent;
}
.user-container .owl-dots .owl-dot.active{
    top: 0;
    left: 0;
    border: 2px solid #62C4EA;
    width: 58px;
    height: 58px;
    border-radius: 50%;
}
.user-container .owl-nav{
    display: block;
}
.user-container .owl-nav .owl-prev, .user-container .owl-nav .owl-next{
    position: absolute;
    bottom: 50px;
    color: #303986;
    font-size: 14px;
    font-weight: 700;
} 
.user-container .owl-nav .owl-prev{
    left: calc(50% - 155px);
}
.user-container .owl-nav .owl-next{
    right: calc(50% - 155px);
}
.user-container .owl-nav .owl-prev.disabled, .user-container .owl-nav .owl-next.disabled{
    background-color: #D1D1D1;
    width: 20px;
}

.client-wrap .main-title2{
    margin-bottom: 30px;
}


/*Quote*/
.quote-wrap{
    padding: 80px 0;
    background-image: url("../images/vma/quote-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0 60px 120px;
    border-radius: 5px;
}
.quote-wrap:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-image: url("../images/vma/quote-bg-hover.png");
    opacity: 0.7;
}
.quote-container h3{
    color: #fff;
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    font-family: segoe-ui;
    margin: 0 0 30px;
}
.quote-container p{
    color: #fff;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: segoe-ui;
}
.quote-container a{
    border: 2px solid #fff;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    display: block;
    width: 190px;
    color: #fff;
    margin: 30px 0 150px;
}
.contact-form{
    background-color: #fff;
    padding: 40px 40px 5px;
    border-radius: 5px;
}
.contact-form h4{
    color: #303986;
    font-weight: 700;
    font-family: segoe-ui;
    margin: 0 0 30px;
    font-size: 22px;
}
.contact-form label{
    font-size: 14px;
    font-weight: 500;
    font-family: segoe-ui;
    color: #303986;
    display: block;
}
.contact-form .form-group{
    margin-bottom: 25px;
}
.contact-form .form-control{
    border: 2px solid #DCDFEE;
    height: 50px;
    box-shadow: none;
    outline: none;
    color: #9EA2CD;
    font-size: 14px;
}
.contact-form textarea.form-control{
    height: 100px;
}
.contact-form .check-input{
    padding-left: 15px;
    font-size: 14px;
    color: #303986;
    font-family: segoe-ui;
    font-weight: 500;
}
.contact-form .btn{
    background-color: #303986;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: segoe-ui;
    border: none;
}
.btn-default {
	         font-family:calibri !important;
			 } 
.text {
	 font-family:calibri !important;
	 }			 