@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

body {
    font-family: 'Almarai', sans-serif;
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Almarai', sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
}



.menu-toggle .main-wrapper {
	-webkit-transition: -webkit-transform .0s ease;
	transition: -webkit-transform .0s ease;
	transition: transform .0s ease;
	transition: transform .0s ease,
    -webkit-transform .0s ease;
}



.hamburger {
	width: 35px;
	height: 35px;
	border: none;
    position: absolute;
    z-index: 9;
    float: left;
    left: 0;
    top: 25px;
	-webkit-transition: background-color .2s linear;
	-ms-transition: background-color .2s linear;
	transition: background-color .2s linear;
	display: none;
	margin-right: 0px;
	background-color: transparent;
}
.hamburger span {
	width: 20px;
	height: 2px;
	border-radius: 0px;
	background-color: #404199;
	display: block;
	margin-bottom: 4px;
	-webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger span:nth-child(2) {
	width: 15px;
}
.hamburger span:last-child {
	margin-bottom: 0;
	width: 9px;
}

/*mobile menu*/

.menu-mobile {
	position: fixed;
	right: 0px;
	top: 0px;
	bottom: 0;
	height: 100%;
	width: 250px;
	background:#fff;
	z-index: 1001;
	overflow-y: auto;
	-webkit-transform: translateX(265px);
	-moz-transform: translateX(265px);
	-ms-transform: translateX(265px);
	-o-transform: translateX(265px);
	transform: translateX(265px);
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	-webkit-box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
	box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
}
.brand-area {
	position: relative;
	padding-top: 20px;
}
.close_menu {
	position: absolute;
	top: 0;
	left: 0px;
	font-size: 24px;
	cursor: pointer;
	color: #363636;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	background-color: #fff;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.close_menu:hover {
	background-color: #767676;
	color: #fff;
}
.brand-area a {
	width: 90%;
	height: auto;
	display: block;
	background-size: contain;
	margin: 0px auto 0 auto;
	margin-top: 10px;
	text-align: center;
	margin-bottom: 20px;
}
.brand-area a > img {
	max-width: 120px;
	max-height: 100%;
}
.mmenu > ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.mmenu > ul li a {
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: #000;
	padding: 10px;
	transition: all .3s;
	font-size: 16px;
	text-transform: capitalize;
}
.mmenu > ul li a > i {
	margin-left: 5px;
}
.mmenu > ul li a:hover {
	background: #434242;
	color: #fff;
	border-color: #434242;
}
.register-mobile {
	margin-top: 0 !important;
}
.register-mobile li:last-child > a {
	border-bottom: 0;
}
.plusIcon {
	font-size: 14px;
	margin-left: 5px;
}
.m-overlay {
	position: fixed;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background: #333;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}
.menu-toggle {
	overflow: hidden;
}
.menu-toggle .m-overlay {
	opacity: 0.6;
	visibility: visible;
}
.menu-toggle .menu-mobile {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);

}
.menu-toggle .main-wrapper {
	-webkit-transform: translate3d(-250px, 0, 0);
	-moz-transform: translate3d(-250px, 0, 0);
	-ms-transform: translate3d(-250px, 0, 0);
	-o-transform: translate3d(-250px, 0, 0);
	transform: translate3d(-250px, 0, 0);

}
html.menu-toggle {
	overflow: hidden;
}

/*header*/

#header {
    position: relative;
    width: 100%;
    top: 0;
    overflow: hidden;
    left: 0;
    padding: 0 0 30px;
    z-index: 2;
}
.logo-site {
	float: right;
    margin-top: 20px;
}
.logo-site a {
	display: inline-block;
}
.logo-site img{
	max-width: 120px;
}

.main_menu {
	float: right;
	margin-right: 150px;
	margin-top: 40px;
}
.main_menu > li {
	float: right;
	margin-left: 30px;
}
.main_menu > li:last-child {
	margin-left: 0;
}
.main_menu > li > a {
	display: block;
	color: #1B1B1B;
	font-size: 16px;
	text-transform: capitalize;
    font-weight: 600;
}
.main_menu > li > a:hover {
    color: #EB6228
}
.contact-header {
    float: left;
    margin-top: 30px;
    display: flex;
    align-items: center
}
.contact-header li {
    display: inline-block;
}
.contact-header li:first-child {
    margin-left: 30px;
}
.contact-header li > a {
	display: block;
	font-size: 14px;
	text-transform: capitalize;
    font-weight: bold;
    color: #1B1B1B
}
.contact-header li > a:hover {
    color: #EB6228
}
.contact-header .btn-join {
    background: #EB6228;
    padding: 10px 35px;
    border-radius: 30px;
    width: max-content;
    height: auto;
}
.contact-header li.btn-join a {
    color: #fff;
}
.mPS2id-highlight-last {
    position: relative;
    color: #EB6228 !important
}

#header.fixed-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
    box-shadow: 0 0 13px -6px #828282;
	z-index: 33;
}



/*section_home*/

.section_home {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.section_home:before {
    content: "";
    background: #EDEDF1;
    border-radius: 0 0 120px 0;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.section_home .container {
    position: relative;
    height: 100%;
}

.home_thumb {
    text-align: left;
}

.home_thumb img {
    max-width: 100%;
    margin-right: auto;
    animation-name: animate1;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes animate1 {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}


.home_txt {
    margin-top: 100px;
}

.home_txt > h3 {
    color: #1B1B1B;
    font-size: 50px;
    font-weight: 300;
    font-size: 36px
}

.home_txt > p {
    color: #242529;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.act-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.act-btn li {
    margin-bottom: 20px;
    margin-left: 10px;
}

.act-btn li:last-child {
    margin-left: 0;
}

.act-btn > li > a {
    font-size: 15px;
}
.act-btn > li > a.btn-join {
    width: 160px;
    height: 45px;
    line-height: 45px;
    border-radius: 30px;
    color: #1B1B1B;
    border: 1px solid #404199;
    text-align: center;
    background: transparent;
    display: block;
}
.btn-play {
    border: 1px solid #404199;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.act-btn > li > a:hover,
.act-btn > li > a:focus {
    color: #fff;
    background-color: #404199;
}

.act-btn > li > a > i {
    padding: 10px;
    background: #404199;
    border-radius: 50%;
    color: #fff;
}

/*sec_head*/

.sec_head {
    text-align: center;
    margin-bottom: 40px;
}

.sec_head h2 {
    color: #EB6228;
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 15px
}

.sec_head p {
    font-size: 18px;
}


/*section_services*/

.section_services {
    padding: 60px 0;
    position: relative
}

.service_item {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    background: #fff;
    padding: 40px 20px;
    cursor: pointer;
    transition: 1s
}
.serv_icon {
    position: relative;
    width: 70px;
    margin: auto;
    z-index: 1;
}

.serv_icon:before {
    content: "";
    background: #F2F2F2;
    width: 90px;
    height: 60px;
    border-radius: 15px;
    position: absolute;
    top: 0;
    right: -30px;
    transform: rotate(320deg);
    z-index: -1
}

.serv_icon img {
    width: 70px;
    height: 70px;
}


.service_item:hover img,.list-feat li:hover img {
filter: opacity(60%);

}

.list-feat li img{
 height: 44%;   
}


.img-color {
    display: none;
}
.service_item:hover .img-color {
    display: block;
}
.service_item:hover .img-def {
    display: none;
}

.serv_txt {
    padding: 30px 30px 0;
}

.serv_txt > h4 {
    color: #242529;
    font-weight: 400;
    font-size: 23px;
}

.serv_txt > p {
    color: #797D89;
    font-weight: 400;
    font-size: 14px;
    margin-top: 20px;
    height: 40px;
    overflow: hidden
}

.list-feat {
    display: flex;
    flex-wrap: wrap;
}
.list-feat li {
    width: 48%;
    margin-left: 15px;
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid #E3E3E3;
    margin-bottom: 30px;
    cursor: pointer;
    transition: 1s;
}
.list-feat li:hover {
    border: 1px solid #EB6228
}
.list-feat li:nth-child(even) {
    margin-left: 0
}
.list-feat li figure {
    margin-bottom: 0;
    margin-left: 10px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center
}
.list-feat .sec-title p {
    font-size: 17px
}
.feat-color {
    display: none;
}
.list-feat li:hover .feat-color {
    display: block;
}
.list-feat li:hover .feat-def {
    display: none;
}


/*section_testimonials*/

.section_features {
    padding: 0 0 60px;
    position: relative
}
.section_partners .item {
    padding: 10px;
}
.item-part {
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    padding: 15px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: 1s;
}
.item-part:hover {
    background: #FAFAFA;
    border: 1px solid #EB6228;
}
.item-part figure {
    margin-bottom: 0;
}
.item-part img {
    max-width: 130px;
    max-height: 90px;
}


/*fotter*/

#footer {
    padding: 60px 0 20px;
}
.top-ft {
    padding: 70px 0;
    background: #EDEDF2;
    position: relative;
}
.ph-ft {
    color: #242529;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 60px;
}

.list-contact h3 {
    color: #0088D8;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px
}

.list-contact li {
    margin-bottom: 10px;
}

.list-contact li a {
    color: #000
}
.list-contact li a:hover {
    color: #EB6228
}
.list-contact li i {
    margin-left: 10px;
}
.ps-rela {
    position: relative
}
.box-cont {
    padding: 30px 30px 10px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    position: absolute;
    width: 100%;
}
.box-cont p {
    margin-bottom: 30px;
    font-size: 20px;
    text-align: center;
    color: #1B1B1B
}
.form-cont .form-group {
    margin-bottom: 15px;
}
.form-cont .form-group:last-child {
    margin-bottom: 0
}
.form-cont .form-control {
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    font-size: 14px !important;
    height: 40px;
}
.form-cont textarea.form-control {
    height:90px
}

input::placeholder {
 height: 40px;
}

.bottom-ft {
    padding: 60px 0;
}
.bottom-ft .container{
    display: flex;
    align-items: center;
}
.bottom-ft p {
    width: 50%;
}
.bottom-ft ul {
    width: 50%;
    display: flex;
    align-items: center;
}
.bottom-ft ul li {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #404199;
    background: #404199;
    transition: 1s;
}
.bottom-ft ul li a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.bottom-ft ul li:hover {
    border: 1px solid #404199;
    background: #fff;
}
.bottom-ft ul li a:hover {
    color: #404199;
}

/*About*/

.section_site_page {
    padding: 0 0;
    position: relative;
}
.head-page {
    text-align: center;
    background: #404199;
    padding: 25px 0;
    margin-bottom: 30px;
    border-radius: 20px;
}
.head-page h2 {
    color: #fff;
    font-size: 22px
}
.head-page i {
    margin-left: 10px
}
.content-ph p{
    color: #676869;
    line-height: 2;
    font-size: 16px;
}


/*join*/

.content-join {
    background: #FAFAFA;
    padding: 60px 40px;
    border-radius: 30px;
}
.head-form {
    margin-bottom: 40px;
}
.head-form span {
    color: #33387B;
    font-size: 22px;
    margin-bottom: 5px;
    display: block;
}
.form-join {
    position: relative;
}
.form-join:before {
    content: "";
    background: url(../images/shape-form.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.d-flex {
    margin-bottom: 20px;
    width: 70%;
    justify-content: center;
}
.d-flex .form-group {
    margin-left: 30px;
    width: 50%;
}
.d-flex .form-group:last-child {
    margin-left: 0;
}
.form-join .form-control {
    background: #fff;
    height: 45px;
    border-radius: 10px;
    border: 0;
    text-align: right;
}
.form-join .btn-site {
    width: 200px;
    border-radius: 30px;
    margin: auto;
    height: 60px;
}
.form-join .btn-site i {
    margin-right: 10px
}


select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-position: 15px 50%;
    background-repeat: no-repeat;
    background-image: url(../images/appearance.svg);
    padding: .5em;
    padding-right: 1.5em
}
textarea.form-control {
    height: 130px
}

.btn-site {
    height: 45px;
    font-size: 18px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: #EB6228;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #404199;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span, .btn-site a {
    color: #fff;
    position: relative;
}


/*faq*/

.content-faq {
    background: #FAFAFA;
    padding: 60px 40px;
    border-radius: 30px;
}
.list-faq li {
    padding-bottom: 15px;
}
.list-faq .accordion {
    background: #fff;
    color: #FFF;
    cursor: pointer;
    padding: 18px 18px 18px;
    width: 100%;
    text-align: right;
    border-radius: 30px;
    border: none;
    outline: none;
    display: block;
    position: relative;
}
.list-faq .accordion p {
    display: inline-block;
    color: #000;
    font-size: 15px;
	font-weight: bold;
}
.list-faq .accordion i{
    color: #B8BBBC;
    position: absolute;
    left: 20px;
    width: 25px;
    border: 1px solid #B8BBBC;
    border-radius: 50%;
    top: 20px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    transition: .4s
}
.list-faq .panel{
    padding: 20px 20px;
    display: none;
    line-height: 25px;
    color: #898989
}

.accordion.active {
    background: #F5F4F4;
}
.accordion.active i {
    background: #EB6228;
    border: 1px solid #EB6228;
    color: #fff;
}


