@charset "utf-8";
/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework
*/

/* 1. Clean Base
------------------------------------------------------------------------------*/
html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
blockquote,
q {
    quotes: none;
}
br {
    height: 0;
}
ul,
ol,
dl,
li {
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
    border: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

/* Class for clearing floats */
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.cf:after,
.cf:before {
    display: table;
    content: "";
}
.cf:after {
    clear: both;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 2. Base Typography
------------------------------------------------------------------------------*/
body {
    /* Typography */
    color: #1a1a1a;
    font: 400 21px/36px "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* Typography */
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

h1 {
    /* Typography */
    font-size: 88px;
    line-height: 84px;
    color: #2f3f52;
    margin-bottom: 10px;
    font-weight: 900;
}

h2 {
    /* Box-model */
    margin-bottom: 15px;

    /* Typography */
    font-size: 36px;
    line-height: 42px;
    color: #000000;
}

h3 {
    /* Box-model */
    margin-bottom: 10px;

    /* Typography s*/
    font-size: 21px;
    font-weight: 700;
    line-height: 36px;
    color: #1a1a1a;
}

h4 {
    /* Box-model */
    margin-bottom: 20px;

    /* Typography */
    font-size: 24px;
    line-height: 28px;
    color: #000;
}

h5 {
    /* Box-model */
    margin-bottom: 20px;

    /* Typography */
    font-size: 27px;
    line-height: 30px;
    color: #ea7617;
}

h6 {
    /* Box-model */
    margin-bottom: 10px;

    /* Typography */
    font-size: 16px;
    line-height: 20px;
    color: #ea7617;
}

blockquote {
    /* Box-model */
    padding: 10px 20px;
    margin: 0 0 20px;

    /* Typography */
    font-size: 17px;

    /* Visual */
    border-left: 5px solid #eee;
}

p {
    /* Box-model */
    margin-bottom: 20px;

    /* Typography */
    color: #373a3e;
    font: 400 21px/36px "Roboto", sans-serif;
}

p strong {
    /* Box-model */
    display: block;

    /* Typography */
    font-weight: 700;
}

p a {
    /* Typography */
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

p span {
    /* Typography */
    color: inherit;
    font-weight: 700;
}

ul {
    /* Box-model */
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    margin-left: 15px;
}

ul li {
    /* Box-model */
    padding: 0;
    margin: 0;

    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;
}

ol {
    /* Box-model */
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    margin-left: 18px;
}

ol li {
    /* Box-model */
    padding: 0;
    margin: 0;

    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;
}

hr {
    /* Box-model */
    margin-top: 20px;
    margin-bottom: 20px;

    /* Visual */
    border: 0;
    border-top: 1px solid #eee;
}

/* 3. Images
------------------------------------------------------------------------------*/
img {
    /* Box-model */
    display: block;
    max-width: 100%;
    vertical-align: middle;

    /* Visual */
    border: none;
    border-style: none;
}

.alignleft {
    /* Box-model */
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    /* Box-model */
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter,
.alignnone {
    /* Box-model */
    float: none;
    margin: 0 auto 20px;
}

/* 4. Link
------------------------------------------------------------------------------*/
a {
    /* Typography */
    color: #ea7617;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    /* Visual */
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover,
a:focus {
    /* Typography */
    color: #cb003d;

    /* Visual */
    outline: none;
}

/* 5. Forms
------------------------------------------------------------------------------*/
input,
button,
select,
textarea {
    /* Typography */
    font-family: "sofia-pro";
    font-weight: 400;
    font-size: inherit;
    line-height: inherit;

    /* Visual */
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;
    -webkit-text-size-adjust: none;
    outline: none;
}

input[type="email"],
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="password"],
textarea {
    /* Box-model */
    padding: 0 10px 0 22px;
    display: block;
    width: 100%;
    height: 42px;

    /* Typography */
    font-size: 14px;
    line-height: 42px;
    color: #aeaeae;

    /* Visual */
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

textarea {
    /* Box-model */
    padding: 15px 22px;
    height: 122px;

    /* Typography */
    line-height: 24px;

    /* Visual */
    overflow: auto;
    resize: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    /* Box-model */
    display: inline-block;
    padding: 0 18px;
    height: 65px;

    /* Typography */
    text-align: center;
    font-family: "sofia-pro";
    font-weight: 700;
    color: #fff;
    font-size: 21px;
    background-color: #16133f;
    line-height: 60px;
    min-width: 198px;
    text-transform: inherit;

    /* Visual */
    border: 0px solid #ea7617;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    -webkit-appearance: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #009ab4;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    color: #aeaeae;
}
::-moz-placeholder {
    color: #aeaeae;
}
:-ms-input-placeholder {
    color: #aeaeae;
}
:-moz-placeholder {
    color: #aeaeae;
}

@-moz-document url-prefix() {
    ::-webkit-input-placeholder {
        opacity: 1;
    }
    ::-moz-placeholder {
        opacity: 1;
    }
    :-ms-input-placeholder {
        opacity: 1;
    }
    :-moz-placeholder {
        opacity: 1;
    }
}

/* 6. Tables
------------------------------------------------------------------------------*/
table {
    /* Visual */
    border-spacing: 0;
    border-collapse: collapse;
}

td {
    /* Typography */
    text-align: left;
    font-weight: normal;
}

/* 7. Layout Framework
------------------------------------------------------------------------------*/

/* commomn css */
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-justify {
    text-align: justify;
}
.left {
    float: left;
}
.right {
    float: right;
}

.mm-page {
    min-height: 100%;
}

#wrapper {
    /* Box-model */
    width: 100%;
    min-height: 100%;
}

.container {
    /* Box-model */
    margin: 0 auto;
    max-width: 1800px;
    width: 100%;
    padding: 0 15px;
}

/* button */
.btn {
    /* Box-model */
    display: inline-block;
    padding: 0 18px;
    height: 55px;
    min-width: 200px;

    /* Typography */
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 52px;
    font-size: 22px;
    color: #1ab395;

    /* Visual */
    cursor: pointer;
    border: 2px solid #1ab395;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.btn:hover,
.btn:focus {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #ea7617;
}

/* header */
header {
    /* Visual */
    position: relative;

    /* Box-model */
    width: 100%;
    height: auto;
}

nav ul {
    margin: 0;
}

/* footer */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.top-footer-box {
    background-color: #ebf2fe;
    padding: 90px 0;
}

.full-container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
}

.header-div .logo {
    float: left;
}

.header-div .right-header-box {
    float: right;
    padding-top: 0px;
}

.header-div .right-header-box .header-menu {
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}

.header-div .right-header-box .header-menu nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-div .right-header-box .header-menu nav ul li {
    display: inline-block;
    margin-right: 50px;
    position: relative;
}

.header-div .right-header-box .header-menu nav ul li a {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    color: #51545a;
    text-transform: uppercase;
}

header {
    padding: 20px 0;
}

.header-div .right-header-box .header-menu nav ul li:last-child {
    margin-right: 0;
}

.header-div .right-header-box .header-menu nav ul li a:hover {
    color: #1ab395;
}

.topimg-content-section,
.topimg-content-box.ar {
    padding: 60px 0;
}

.topimg-content-section .leftbnar-contbox {
    float: left;
    width: 45%;
    padding-right: 40px;
}

.topimg-content-section .ritnar-imgbox {
    float: right;
    width: 52%;
}

.topimg-content-section .leftbnar-contbox .toptit-wi-con p {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 30px;
    color: #2f3f52;
}

.topimg-content-section .leftbnar-contbox .toptit-wi-con h1 {
    margin-bottom: 35px;
    letter-spacing: -0.05em;
}

.topimg-content-section .leftbnar-contbox .topbaner-butonwith-ptag p strong {
    font-weight: 700;
    display: inline-block;
    color: #292f3c;
    font-size: 32px;
}

.topimg-content-section .leftbnar-contbox .topbaner-butonwith-ptag p span {
    color: #1ab395;
    margin-left: 20px;
    font-size: 22px;
    font-weight: 600;
}

.topimg-content-section .leftbnar-contbox .topbaner-butonwith-ptag p {
    color: #373a3e;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.default-btn {
    background-color: #1ab395;
    color: #fff;
    text-transform: uppercase;
}

.default-btn:hover {
    opacity: 0.8;
    background-color: #1ab395;
}

.blue-btn {
    background-color: #4e95f3;
    color: #fff;
    border-color: #4e95f3;
    text-transform: uppercase;
}

.blue-btn:hover {
    opacity: 0.8;
    background-color: #4e95f3;
}

.topimg-content-section .topbanner-butons a.default-btn {
    margin-right: 25px;
}

.topimg-content-section .leftbnar-contbox .topbanner-butons {
    margin-top: 60px;
}
.topimg-content-section .leftbnar-contbox .topbanner-butons a.btn {
    min-width: 300px;
}

.pour-four-section {
    background-color: #e9f2fe;
    padding: 130px 0;
}

.pour-four-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.row {
    margin: 0 -15px;
}

.two-blocks {
    float: left;
    width: 50%;
    padding: 0 20px;
}

.pour-four-section .whitebox-div {
    height: 100%;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 2px 2px 8px 1px #d5e2f3;
    position: relative;
}

.pour-four-section .two-blocks {
    margin-bottom: 100px;
}
.pour-four-section .two-blocks:last-nth-child,
.pour-four-section .two-blocks:last-nth-child(2) {
    margin-bottom: 0px;
}
.pour-four-section .whitebox-div .left-bgbox {
    width: 70px;
    position: absolute;
    left: 0;
    height: 100%;
    border-radius: 6px 0 0 6px;
}

.whitebox-div.blue-color .left-bgbox {
    background-color: #1f68c8;
}

.pour-four-section .whitebox-div .rigt-contbox-dv {
    float: left;
    width: 100%;
    padding: 30px 20px 30px 160px;
}

.whitebox-div.green-color .left-bgbox {
    background-color: #01a37c;
}

.whitebox-div.pink-color .left-bgbox {
    background-color: #ed6a94;
}

.whitebox-div.light-gold-color .left-bgbox {
    background-color: #fbc379;
}

.whitebox-div .left-bgbox:before {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid white;
    left: 85px;
    top: 43px;
}

.whitebox-div.blue-color .left-bgbox:before {
    border-left: 40px solid #1f68c8;
}

.whitebox-div.green-color .left-bgbox:before {
    border-left: 40px solid #01a37c;
}

.whitebox-div.pink-color .left-bgbox:before {
    border-left: 40px solid #ed6a94;
}

.whitebox-div.light-gold-color .left-bgbox:before {
    border-left: 40px solid #fbc379;
}
.pour-four-section .two-blocks:nth-last-child(2),
.pour-four-section .two-blocks:last-child {
    margin-bottom: 0;
}

.pour-four-section .whitebox-div .rigt-contbox-dv span {
    font-weight: 600;
    font-size: 22px;
    display: block;
    margin-bottom: 0;
}

.pour-four-section .whitebox-div .rigt-contbox-dv h3 {
    font-size: 36px;
    font-weight: 900;
    margin: 0;
    color: #253243;
    line-height: 42px;
}

.pour-four-section .whitebox-div .rigt-contbox-dv p {
    color: #5c7489;
    font-size: 24px;
    margin: 0;
}

.whitebox-div.blue-color .rigt-contbox-dv span {
    color: #1f68c8;
}

.whitebox-div.green-color .rigt-contbox-dv span {
    color: #01a37c;
}

.whitebox-div.pink-color .rigt-contbox-dv span {
    color: #ed6a94;
}

.whitebox-div.light-gold-color .rigt-contbox-dv span {
    color: #fbc379;
}

.solution-deve-section {
    padding: 100px 0;
}

.solution-deve-section .toptitle-h2 {
    max-width: 1000px;
    margin: 0 auto 70px;
    text-align: center;
}

.solution-deve-section .toptitle-h2 h2 {
    font-size: 50px;
    line-height: 64px;
    margin: 0 0 10px 0;
}

.solution-deve-section .toptitle-h2 p {
    font-size: 24px;
    line-height: 34px;
}

.three-block {
    float: left;
    width: 33.33%;
    padding: 0 15px;
}

.matheblock-box .math-blockbox {
    text-align: center;
}

.matheblock-box .math-blockbox span {
    display: inline-block;
    margin: 0 auto 20px;
    max-width: 239px;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.matheblock-box .math-blockbox p {
    font-size: 26px;
}

.matheblock-box .math-blockbox {
    padding: 0 30px;
}

.matheblock-box {
    padding-top: 60px;
}

.expert-bloc-section .row {
    display: flex;
    flex-wrap: wrap;
}

.expert-bloc-section .row .fiv-col {
    float: left;
    width: 33.33%;
    padding: 0 15px;
}

.expert-bloc-section .row .fiv-col .comn-boxes {
    height: 100%;
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
}

.expert-bloc-section .row .fiv-col .comn-boxes span {
    font-size: 58px;
    text-align: center;
    font-weight: 900;
    display: block;
    margin-bottom: 20px;
    color: #020202;
    letter-spacing: 0.05em;
    line-height: 56px;
}

.expert-bloc-section .row .fiv-col .comn-boxes p {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    color: #020202;
}

.expert-bloc-section .row .fiv-col .comn-boxes.grn-bg {
    background-color: #1ab395;
}

.expert-bloc-section .row .fiv-col .comn-boxes.litpink-bg {
    background-color: #f6c7d5;
}

.expert-bloc-section .row .fiv-col .comn-boxes.coff-bg {
    background-color: #e3bb93;
}

.expert-bloc-section .row .fiv-col .comn-boxes.yelo-bg {
    background-color: #e0e393;
}

.expert-bloc-section .row .fiv-col .comn-boxes.blu-bg {
    background-color: #7bc0df;
}
.expert-bloc-section {
    background-color: #d2ddf3;
    padding: 100px 0;
}

.joifree-box {
}

.header-div .right-header-box .joifree-box {
    display: inline-block;
    vertical-align: middle;
    margin-left: 40px;
    position: relative;
}

.header-div .right-header-box .joifree-box a.freeregis-link {
    background-color: #fb9b01;
    border-radius: 5px;
    min-width: auto;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    height: 55px;
    line-height: 55px;
    text-align: left;
    padding: 0 20px;
    position: relative;
    font-size: 18px;
}

.header-div .right-header-box .joifree-box ul.joifree-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 0 4px 1px #c4c4c4;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
}

.header-div .right-header-box .joifree-box ul.joifree-ul li {
    display: block;
}

.header-div .right-header-box .joifree-box ul.joifree-ul li a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #c4c4c4;
    font-size: 17px;
    color: #333;
}

.header-div .right-header-box .joifree-box ul.joifree-ul li:last-child a {
    border: navajowhite;
}

.header-div .right-header-box .joifree-box ul.joifree-ul li a:hover {
    background-color: #4e95f3;
    color: #fff;
}

/*.header-div .right-header-box .joifree-box a.freeregis-link:after {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    position: absolute;
    top: 24px;
    right: 15px;
}*/

.header-div .logo a {
    display: block;
    margin-top: 9px;
}

.pourquoi-section {
    padding: 60px 0;
}

.pourquoi-section .pour-title-boxes {
    margin-bottom: 40px;
    text-align: center;
}

.pourquoi-section .pour-title-boxes h2 {
    font-size: 40px;
    line-height: 46px;
}

.pourquoi-section .pourthree-block span {
    display: inline-block;
    margin: 0 auto 15px;
}

.pourquoi-section .pourthree-block {
    text-align: center;
}

.pourquoi-section .pourthree-block span img {
    width: 120px;
}

.pourquoi-section .pourthree-block h3 {
    margin: 0 0 20px 0;
    font-size: 42px;
    line-height: 49px;
}

.pourquoi-section .pourthree-block p {
    font-size: 24px;
    color: #474747;
}

.pourquoi-section .pourthree-block {
    padding: 0 80px;
}

.pourquoi-section .pourthree-block.grencol h3 {
    color: #5ea444;
}

.pourquoi-section .pourthree-block.bluecol h3 {
    color: #7067ae;
}

.pourquoi-section .pourthree-block.orangcol h3 {
    color: #f3a521;
}

.fullbutton-section {
    padding: 80px 0;
}

.fullbutton-section .middlebutton-box a.btn {
    min-width: 320px;
    margin: 0 20px;
}

.skybox-2block-section {
    background-color: #e5eefb;
    padding: 100px 0;
}

.skybox-2block-section .row {
    display: flex;
    flex-wrap: wrap;
}

.equal-box-block {
    height: 100%;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 2px 2px 8px 1px #d5e2f3;
    position: relative;
}

.equal-box-block .leftblu-panel {
    position: absolute;
    left: 0;
    width: 120px;
    height: 100%;
    background-color: #5b76a5;
    border-radius: 5px 0 0 5px;
}

.equal-box-block .ritpanel-descbox {
    width: 100%;
    padding: 25px 60px 25px 190px;
    text-align: center;
}

.equal-box-block .ritpanel-descbox p strong {
    color: #000;
}

.equal-box-block .ritpanel-descbox p {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 10px 0;
    font-weight: 300;
}

.equal-box-block .ritpanel-descbox p:last-child {
    margin-bottom: 0;
}

div#page-wrapper {
    position: relative;
    min-height: 100%;
}

footer .four-blocks {
    float: left;
    width: 25%;
    padding: 0 15px;
}

.ftr-heading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.ftr-heading:before {
    content: "";
    width: 110px;
    position: absolute;
    height: 2px;
    background-color: #009688;
    bottom: 0;
}

.ftr-contet-box p {
    font-size: 22px;
    line-height: 33px;
}

.social-icons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-icons ul li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons ul li a {
    font-size: 22px;
    color: #000;
}

.social-icons ul li a:hover {
    color: #009688;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    display: block;
    margin-bottom: 15px;
}

.footer-links ul li p {
    float: left;
    width: calc(100% - 50px);
    padding-left: 5px;
    font-size: 22px;
    line-height: 30px;
    margin: 0;
}

.footer-links ul li i {
    float: left;
    width: 42px;
    font-size: 22px;
    color: #009688;
    position: relative;
    top: 6px;
}

.footer-links ul li:before,
.footer-links ul li:after {
    content: "";
    display: table;
}

.footer-links ul li:after {
    clear: both;
}

.footer-links ul li a {
    color: #000;
    font-size: 22px;
    line-height: 30px;
}

.footer-links ul li i.fa-whatsapp {
    font-size: 25px;
    top: 2px;
}

.footer-links ul li i.fa-phone {
    transform: rotate(105deg);
    left: -16px;
    top: 13px;
}

.footer-links ul li a:hover {
    color: #009688;
}

.footer-links.arrowlinks ul li {
    padding-left: 30px;
    position: relative;
}

.footer-links.arrowlinks ul li a:before {
    content: "\f105";
    position: absolute;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.footer-bar {
    background-color: #000;
    padding: 20px 0;
}

.footer-bar p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.mobile-menudiv {
    display: none;
}

.right-header-box .language-topbox {
    display: inline-block;
    margin-left: 15px;
    position: relative;
}

.right-header-box .language-topbox a.langua-clicklink {
    min-width: 150px;
    display: inline-block;
    background-color: #4e95f3;
    margin: 0;
    color: #fff;
    border-radius: 5px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 15px;
    height: 55px;
    vertical-align: middle;
    line-height: 55px;
    position: relative;
}

.right-header-box .language-topbox a.langua-clicklink:after {
    content: "";
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    position: absolute;
    top: 24px;
    right: 15px;
}

.right-header-box .language-topbox ul.language-divul {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 2px 1px #c4c4c4;
    width: 100%;
    list-style: none;
    margin: 0;
    top: 100%;
    display: none;
}

.right-header-box .language-topbox ul.language-divul li a {
    padding: 10px 15px;
    display: block;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
}

.right-header-box .language-topbox ul.language-divul li a:hover {
    background-color: rgb(78 149 243 / 0.5);
    color: #fff;
}
label.error {
    color: #cc5965;
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
}

section.contact-form {
}

section.contact-form .form-group {
    margin-bottom: 15px;
}

section.contact-form .form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    border-radius: 30px;
    border: 2px solid #d4d4d4;
    background-color: #ffffff;
    background-image: none;
    color: inherit;
    display: block;
    padding: 6px 20px;
    transition: border-color 0.15s ease-in-out 0s,
        box-shadow 0.15s ease-in-out 0s;
    width: 100%;
    font-family: "Raleway", sans-serif;
    text-transform: capitalize;
    font-weight: 100;
    font-size: 15px;
}

section.contact-form textarea.form-control {
    height: auto;
    resize: auto;
    max-width: 100%;
}

section.contact-form input.form-control:focus,
section.contact-form textarea.form-control:focus {
    border-color: #1ab394;
}

section.contact-form label.error {
    color: #cc5965;
    display: block;
    margin: 5px;
    font-size: 14px;
    line-height: normal;
}

section.contact-form button.btn.btn-primary {
    background-color: #38b74a;
    border-color: #38b74a;
    color: #ffffff;
    border-radius: 30px;
    height: 40px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    display: block !important;
    line-height: normal;
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
}

section.contact-form button.btn.btn-primary:hover,
section.contact-form button.btn.btn-primary:active {
    background-color: #000;
    border-color: #000;
    color: #ffffff;
}

div#successMessage .alert {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

div#successMessage .alert-success {
    background-color: #00a65a !important;
    padding: 15px;
    line-height: normal;
    height: auto;
    max-width: 300px;
    margin: 0 auto 30px;
}

div#successMessage .alert .close {
    color: #000;
    opacity: 0.3;
    filter: alpha(opacity=20);
    background-color: transparent;
    height: auto;
    line-height: normal;
    min-width: auto;
    padding: 0;
    float: right;
}

section.error_page.conditions {
    margin-top: 80px;
}
section.error_page.conditions section .container .row {
    margin: 0;
}

section.error_page.conditions section .container .row h1 {
    margin-bottom: 20px;
}

section.error_page.conditions section .container .row h2 {
    font-size: 35px;
    line-height: 40px;
}

section.error_page.conditions section .container .row p {
    font-size: 17px;
    line-height: 28px;
}

section.error_page.conditions section .container .row h3 {
    font-size: 27px;
}

section.error_page.conditions section .container .row h5 {
    font-size: 20px;
    margin-bottom: 13px;
    color: #121212;
}

header .header-div .whatsapp_link {
    float: left;
    margin-top: 12px;
    margin-left: 8px;
}

header .header-div .whatsapp_link a {
    display: inline-block;
    max-width: 203px;
    font-size: 16px;
    font-weight: 600;
    color: #a2a2a2 !important;
    line-height: normal;
    padding-left: 41px;
    font-family: sans-serif;
}

header .header-div .whatsapp_link a img {
    display: inline-block;
    max-width: 36px;
    vertical-align: middle;
    margin-left: -41px;
    float: left;
}

header .header-div .whatsapp_link a span {
    /*display: inline-block;
    line-height: initial;*/
}

header .header-div .whatsapp_link a span.small {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-top: 1px;
    margin-bottom: 1px;
    color: #3776b9;
}

.header-div
    .right-header-box
    .header-menu
    nav
    ul
    li
    a.have_sub
    ~ .dropdown-content {
    opacity: 0;
    display: none;
    position: absolute;
    width: 150px;
    max-width: 150px;
    left: 0;
    text-align: center;
    top: 40px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 5px #d7d7d7;
    z-index: 1;
}

.header-div
    .right-header-box
    .header-menu
    nav
    ul
    li
    a.have_sub
    ~ .dropdown-content:hover {
    opacity: 1;
    display: block;
    top: 22px;
}

.header-div
    .right-header-box
    .header-menu
    nav
    ul
    li
    a.have_sub
    ~ .dropdown-content
    a {
    display: block;
    line-height: 40px;
    background-color: #fff;
}

.header-div
    .right-header-box
    .header-menu
    nav
    ul
    li
    a.have_sub
    ~ .dropdown-content
    a:hover {
    background-color: #f9f9f9;
}

.header-div
    .right-header-box
    .header-menu
    nav
    ul
    li
    a.have_sub:hover
    ~ .dropdown-content {
    opacity: 1;
    display: block;
    top: 22px;
}
/*-Become a Member-*/
.become_member {
}

.become_member .green {
    color: #069e06;
}

.become_member .title_member h1 {
    font-size: 25px;
    line-height: 37px;
    font-weight: 500;
}

.become_member .title_member h1 span {
    font-weight: 600;
}

.become_member .topimg-content-box.ar .title_member h1 span {
    font-weight: 500;
}

.become_member .title_member {
    margin-bottom: 30px;
}

.become_member .d-flex {
    display: flex;
    flex-wrap: wrap;
}

.become_member .d-flex .conditions {
    width: 87%;
    padding: 0 45px 0 15px;
}

.become_member .d-flex .image {
    width: 13%;
}

.become_member .d-flex .image img {
    width: 100%;
}

.become_member .d-flex .conditions li {
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 28px;
}

.become_member .conditions li .green {
    color: #6aa851;
}

.become_member .condiyion_note {
    color: #666;
    font-size: 23px;
    line-height: 32px;
    margin-top: 40px;
}

.become_member .table_section .table_compare {
    max-width: 1140px;
    margin: 0 auto;
}

.become_member .table_section .table_compare table {
    width: 100%;
}

.become_member .table_section .table_compare table th {
    border: 2px solid #38b137;
    background-color: #f4fcf2;
    width: 37.5%;
    padding-left: 10px;
    padding-right: 10px;
}

.become_member .table_section .table_compare table th:first-child {
    border: none;
    background-color: transparent;
    width: 25%;
}

.become_member .table_section .table_compare table th:last-child {
    color: #38b137;
}

.become_member .table_section .table_compare tr td {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    border: 2px solid #38b137;
    background-color: #f4fcf2;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 5px;
}

.become_member .table_section .table_compare tr td:first-child {
    text-align: right;
    border: none;
    background-color: transparent;
}

.become_member .table_section .table_compare tr td:nth-child(2) {
    color: #8a8a8a;
}

.table_section .table_title h3 {
    font-size: 25px;
    line-height: 37px;
    /*text-align: center;*/
}

.become_member .table_section {
    padding-top: 35px;
    padding-bottom: 60px;
}

.become_member .table_section .table_title {
    margin-bottom: 15px;
}

.become_member .bottom_button a.bottom_btn {
    background-color: #069e06;
    border: 1px solid #069e06;
    color: #fff;
    padding: 15px 25px;
    border-radius: 4px;
}

.become_member .bottom_button a.bottom_btn:hover {
    background-color: #fff;
    color: #069e06;
}

.become_member .bottom_button {
    text-align: center;
}
/*-new language drop down-*/
.lang_drop {
    position: relative;
    padding-top: 10px;
    margin-left: 22px;
    padding-right: 10px;
    z-index: 1;
}

.lang_drop a.drop_func,
body.log-in .lang_drop a.drop_func {
    font-size: 14px;
    color: #51545a;
    text-transform: capitalize;
}

.lang_drop a.drop_func i.fa {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
}

.lang_drop ul {
    margin: 0;
    position: absolute;
    left: 0;
    top: 45px;
    background-color: #fff;
    padding: 5px 0 14px;
    box-shadow: 0px 2px 15px #d7d7d7;
    box-shadow: 0px -1px 20px #e8e5ff;
    border-radius: 5px;
}

.lang_drop ul:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    display: block;
    margin-top: -10px;
    margin-left: 7px;
}

.lang_drop ul li {
    list-style-type: none;
    text-align: left;
    padding: 12px 25px 0;
    min-width: 150px;
}

.lang_drop ul li a,
body.log-in .lang_drop ul li a {
    /*padding: 5px;*/
    color: #51545a;
}

.lang_drop a:hover,
body.gray-bg.log-in .lang_drop a:hover,
body.log-in .lang_drop ul li a:hover {
    color: #1ab395;
}

[lang="fr"] .header-div .right-header-box .header-menu nav ul li {
    margin-right: 30px;
}

[lang="fr"] .header-div .right-header-box .header-menu nav ul li:last-child {
    margin-right: 0;
}

[lang="fr"] .header-div .right-header-box .header-menu {
    margin-right: 30px;
}

[lang="fr"] .header-div .right-header-box .header-menu nav ul li a {
    /*font-size: 14px;*/
}

[lang="ar"] .solution-deve-section .matheblock-box .three-block {
    float: right;
}

.become_member .topimg-content-box.ar .image {
    width: 13%;
}

.become_member .topimg-content-box.ar .conditions {
    padding: 0 15px 0 45px;
    text-align: right;
    direction: rtl;
    width: 87%;
}

.become_member .topimg-content-box.ar .conditions li {
    padding-left: 0;
    padding-right: 10px;
    font-size: 23px;
    margin-right: 19px;
    line-height: 30px;
}

.become_member .table_section.ar {
    padding-top: 50px;
}

.become_member .topimg-content-box.ar .d-flex {
    align-items: center;
}

.become_member .topimg-content-box.ar .title_member {
    direction: rtl;
    text-align: right;
    /*margin-bottom: 40px;*/
}

.become_member .topimg-content-box.ar .title_member h1 {
    font-size: 34px;
    line-height: 49px;
    color: #6aa851;
}

.become_member .table_section.ar .table_compare {
    direction: rtl;
    max-width: 1140px;
    /*max-width: 991px;*/
    /*max-width: 740px;*/
}

.become_member .table_section.ar .condiyion_note {
    margin: 0 0 25px;
    direction: rtl;
    color: #069e06;
    font-weight: 600;
}

.become_member .table_section.ar .table_compare table th {
    width: 35%;
}

.become_member .table_section.ar .table_compare table th:first-child {
    width: 23%;
}

.become_member .table_section.ar .table_compare table th .red {
    color: #c00000;
}

.become_member .table_section.ar .table_compare table th .blue {
    color: #0070c0;
}

.become_member .table_section.ar .table_compare table {
    border: 4px solid #d4d4d4;
}

.become_member .table_section.ar .table_compare table th,
.become_member .table_section.ar .table_compare table td {
    border: 2px solid #d4d4d4;
    background-color: transparent;
    text-align: right;
    color: #000000;
}
/*-2021-*/
.header-div .right-header-box .joifree-box .language_menu {
    margin: 0;
    position: absolute;
    top: -31px;
    right: 0;
    width: max-content;
}
.header-div .right-header-box .joifree-box .language_menu li {
    display: inline-block;
    text-align: center;
    margin: 0 2px;
}
.header-div .right-header-box .joifree-box .language_menu li a {
    font-size: 12px;
    line-height: normal;
    color: #378bd9;
}

.header-div .right-header-box .joifree-box .language_menu li a:hover {
    color: #005eb5;
}

.become_member .table_section.ar .table_compare table td {
    color: #8f9192;
    vertical-align: middle;
}

.become_member .table_section.ar .table_compare table td:first-child {
    color: #6aa851;
}

.become_member .table_section.ar .table_compare table th {
    background-color: #e0ffed;
}

.become_member .table_section.ar .table_compare table .green {
    color: #6aa851;
}

/*-our partner section-*/
.pour-four-section .row {
    margin: -15px 0;
}
.ourpartner-section {
    padding: 80px 0;
    background-color: #f7faf5;
}

.ourpartner-section .container {
    max-width: 1280px;
}

.ourpartner-section .pour-title-boxes {
    text-align: center;
    margin-bottom: 35px;
}

.ourpartner-section .row {
    margin: 0;
}

.ourpartner-section .map-block {
    text-align: center;
}

.ourpartner-section .map-block .map_inner {
    max-width: 320px;
    margin: 0 auto;
}

.ourpartner-section .map-block .map_inner .name {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ourpartner-section .map-block .map_inner .head_name {
    color: #52ae08;
    font-weight: 600;
    line-height: normal;
    margin: 5px 0;
}

.ourpartner-section .map-block .map_inner .contact_info {
    margin-top: 5px;
}

.ourpartner-section .map-block .map_inner .contact_info a {
    display: block;
    line-height: normal;
    margin-bottom: 5px;
    color: #000;
    font-size: 18px;
}

.ourpartner-section .map-block .map_inner .contact_info a:hover {
    color: #009688;
}

.ourpartner-section .map-block .map_inner .contact_info a:last-child {
    margin-bottom: 0;
}

.clients-logos-slider {
    background-color: #e9f9eb;
    padding: 25px 0 50px 0;
}

.clients-logos-slider h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.autoplay-slider img {
    padding: 0 70px;
}

.clients-logos-slider .slick-list {
    margin: 0 25px;
}

.slider-prev,
.slider-next {
    color: #1ab395;
}

.slider-prev:hover,
.slider-next:hover {
    color: #22c2a2;
    cursor: pointer;
}

.main-body .flex-fix {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-body .ritnar-imgbox {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .main-body .flex-fix {
        flex-direction: column;
    }
}
