* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

html, body {
    height: 100%;
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    color: #595F6F;
    background: #f7f8fc;
}

p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 22px;
}

a {
    color: #595F6F;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.white-clr {
    color: #fff;
}

/* margin and padding  */
.m-tb-lg {
    margin-top: 115px;
}

.ml-0 {
    margin-left: 0px !Important;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.mr-0 {
    margin-right: 0px !Important;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mt-0 {
    margin-top: 0px !Important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-0 {
    margin-bottom: 0px !Important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.p-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-40 {
    padding: 40px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.ft-s32 {
    font-size: 32px;
    line-height: 34px;
}

.ft-s36 {
    font-size: 36px;
    line-height: 32px;
}

.ft-s16 {
    font-size: 16px;
    line-height: 25px;
}

.blue-clr {
    color: #645AFF;
}

.wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
}

/* Header */
header {
    min-height: 60px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    align-items: center;
    width: 90%;
}

.side_menu {
    position: fixed;
    transform: translate3d(-100%, 0, 0);
    height: 100%;
    width: 250px;
    background: #ffffff;
    z-index: 50;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 27px 15px;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: 5px 0 5px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 5px 0 5px rgba(0, 0, 0, 0.09);
}

.side_menu ul {
    display: grid;
    margin-top: 20px;
}

.menu:hover .menu__button {
    transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
    opacity: 0;
    transform: translate3d(200%, 0, 0);
}

.side_menu ul li {
    list-style: none;
    margin-bottom: 5px;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    transition: opacity 0.8s, transform 0.8s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.menu-open ul li {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.menu-open ul li:nth-child(2) {
    transition-delay: 0.03s;
}

.menu-open ul li:nth-child(3) {
    transition-delay: 0.06s;
}

.menu-open ul li:nth-child(4) {
    transition-delay: 0.09s;
}

.menu-open ul li:nth-child(5) {
    transition-delay: 0.12s;
}

.menu-open ul li:nth-child(6) {
    transition-delay: 0.15s;
}

.side_menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 6px;
    padding: 4px 0px 4px 10px;
    font-size: 25px;
    margin: 10px 0;
}

.side_menu li a:hover {
    background-color: #e5e7ec;
}

.side_menu li a span {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #4c4c4c;
}

.side_menu li a:hover span {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.side_menu .logo-container img {
    max-width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.side_menu .logo-container img {
    max-width: 100%;
}

.logo-container img {
    width: 150px;
}

.side_menu ul {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    margin-bottom: 0px;
}

.navbar ul li {
    list-style: none;
}

.navbar ul li a {
    padding: 5px 10px;
    text-transform: uppercase;
    color: #222F48;
    font-weight: 500;
    margin: 0px 15px;
    font-size: 14px;
}

.navbar ul li a:hover {
    border-bottom: 2.4px solid #212E48;
    transition: all ease-in-out .1s;
}

.navbar ul li.active a {
    border-bottom: 2.4px solid #212E48;
}

.social-nav {
    padding: 0px 20px;
}

.social-nav ul li a {
    padding: 5px 5px;
    margin: 0px 0px;
}

.social-nav ul li a img {
    width: 30px;
}

.social-nav ul li a:hover {
    border-bottom: none;
}

.side_menu .social-nav-phone ul {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.menu-toggle {
    display: none;
}

.menu-toggle:hover {
    color: #221f1f;
}

.menu-toggle {
    color: #212E48 !important;
    font-size: 28px;
    cursor: pointer;
}

/* banner section */
.banner-sec {
    background-image: url("../images/background.svg");
    background-size: 100%, cover;
    background-position: right, left;
}

.banner-img-pos {
    margin-top: -50px;
    margin-bottom: -115px;
}

.banner-img-pos-right {
    padding-right: 10vh;
}

.banner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    width: 80%;
    padding-top: 10vh;
    margin: 0 auto;
}

.banner-title {
    color: #fff;
    font-size: 58px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-title span {
    font-weight: 700;
}

.banner-text {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    padding-left: 12%;
}

.banner-subtitle {
    color: #fff;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-btn {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 2px solid #e74c3c;
    border-radius: 30px;
    color: #e74c3c;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin: 10px;
    padding: 8px 30px;
    text-decoration: none;
    text-align: center;
    width: 200px;
}

.banner-btn:hover, .banner-btn:focus {
    color: #fff;
    outline: 0;
}

.btn-st {
    border-color: #fff;
    color: #595F6F;
    background-color: #fff;
}

.btn-st:hover {
    /*box-shadow: 0 0 6px 0 #fff inset, 0 0 6px 1px #fff;*/
    color: #595F6F;
}

.btn-group.btn-full-wd {
    display: flex;
    justify-content: flex-end;
    padding: 15px 0px;
}

.btn-full-wd .banner-btn {
    /* flex: 1 */
}

.acc-btn {
    border: 1px solid;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 10px 40px;
    text-decoration: none;
    text-align: center;
}

.acc-btn:hover, .banner-btn:focus {
    color: #fff;
    outline: 0;
}

.border-radius-r-0 {
    color: #000000;
    background-color: #fff;
    border-color: #fff;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}

.border-radius-r-0:hover {
    color: #E97239;
    /* background-color: #8f6bff; */
    /* border-top-right-radius: 0; */
    /* border-bottom-right-radius: 0; */
    /* border-right: none; */
}

.border-radius-l-0 {
    background-color: #fff;
    color: #000000;
    border-color: #fff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
    border-right: none;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}

button:focus {
    outline: none;
}

.border-radius-l-0:visited {
    color: #212E48;
    background-color: #fff;
    border-color: #fff;
}

.border-radius-l-0:hover {
    color: #212E48;
    background-color: #fff;
    border-color: #fff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.right-text-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    padding-top: 10vh;
    width: 80%;
    margin: 0 auto;
}

.box-sec {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.left-sec-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 15px;
    min-width: 170px;
    min-height: 180px;
    -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
}

.left-sec-box img {
    margin-top: 15px;
    margin-bottom: 15px;
    /* width:36px; */
}

.left-sec-box p {
    font-size: 16px;
    font-weight: 600;
    color: #222F48;
    padding: 5px;
}

.price-title-txt {
    font-size: 20px;
    font-weight: 400;
}

.price-container {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    text-align: center;
}

.price-container:hover {
    -ms-transform: scale(1.08); /* IE 9 */
    -webkit-transform: scale(1.08); /* Safari 3-8 */
    transform: scale(1.08);
    border-radius: 3px;
    border: 2px solid #7661FF;
}

.price-table-wd {
    padding: 20px
}

.price-h {
    color: #0F358E;
    font-weight: 700;
    font-size: 64px;
    line-height: 60px;
}

.price-p {
    color: #645AFF;
    font-size: 16px;
}

.table-borderless td {
    border-top: none !important;
    font-size: 16px;
}

.price-btn-pos {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.price-btn {
    background-color: #9A6FFF;
    border: 2px solid #9A6FFF;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin: 10px;
    padding: 12px 36px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 30px;
}

.price-btn img {
    width: 5px;
    margin-right: 7px;
}

.contact-sec {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.form-control {
    line-height: 2.5;
}

.submit-btn {
    background-color: #212E48;
    border: 2px solid #212E48;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    padding: 12px 60px;
    text-decoration: none;
    text-align: center;
}

.submit-btn:hover {
    color: #212E48;
    border: 2px solid #212E48;
    background-color: #fff;
}

.dir {
    direction: rtl;
}

.footer-sec-clr {
    background: linear-gradient(to top right, #212E48 0%, #212E48 100%);
}

.m-t-20-p {
    margin-top: -20%;
}

.m-b-20-p {
    margin-bottom: 22%;
}

.m-b-8-p {
    margin-bottom: -4%;
}

#tab01 {
    display: none;
}

.tab-active {
    background-color: #212E48 !important;
    color: #fff !important;
    border-color: #212E48 !important;
}

.branded {
    color: #fff;
    font-weight: 600;
    transition: 500ms;
}

.branded:hover {
    color: #E97239;
    font-weight: 600;
    transition: 500ms;
}

.mar-l-80 {
    margin-left: 80px;
}

.mar-l-100 {
    margin-left: 100px;
}

.pad-l-180 {
    padding-left: 180px;
}



