@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

*,
*: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: 'Tajawal', 'Roboto', sans-serif;
    background-color: #fff;
    font-size: 17px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    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%;
    overflow: hidden;
}



.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;
    right: 10px;
    top: 15px;
    -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: absolute;
    width: 100%;
    top: 0;
    overflow: hidden;
    left: 0;
    padding: 20px 0;
    z-index: 2;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 150px;
}

.main_menu > li {
    float: left;
    margin-right: 25px;
}

.main_menu > li:last-child {
    margin-right: 0;
}

.main_menu > li > a {
    display: block;
    color: #fff;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 400;
}

.main_menu > li:hover a {
    color: #4f4f4f
}

#header.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--main-color);
    box-shadow: 0 0 13px -6px #828282;
    z-index: 33;
}


/*section_home*/

.section_home {
    position: relative;
    z-index: 1;
    background: var(--main-color);
    padding: 100px 0 50px;
}
.shape-home {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1
}

.section_home .row {
    align-items: center;
}
.home_thumb {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
}
.home_thumb img {
    max-width: 100%;
    height: auto;
}

.home_txt h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 60px;
    font-weight: 800;
}

.home_txt p {
    color: #fff;
    margin-bottom: 40px;
}

.option-site {
    display: flex;
    align-items: center;
}

.option-site li:first-child {
    margin-right: 25px;
}

.option-site .btn-site {
    padding: 0 40px;
    border-radius: 35px;
    font-size: 15px;
    background: #fff;
    height: 60px;
    width: max-content;
}
.option-site .btn-site:before {
    background: #000000;
}
.option-site .btn-site a {
    color: var(--main-color);
     display: flex;
    align-items: center;
}
.option-site .btn-site:hover a {
    color: #fff
}
.option-site .btn-site figure {
    margin-bottom: 0;
    margin-right: 10px;
}
.option-site .btn-site figure i {
    font-size: 30px;
}
.option-site .btn-site span {
    color: var(--main-color)
}
.txt-down span {
    font-size: 10px;
}
.txt-down p {
    font-size: 15px;
}

/*section_about*/

.section_about {
    padding: 40px 0 80px;
    position: relative;
}

.section_about .row {
    align-items: center;
}

.txt-about h4 {
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 30px;
}

.txt-about h4 strong {
    font-size: 60px;
}

.txt-about p {
    color: #5B6670;
    margin-bottom: 30px;
    font-size: 18px;
}

.txt-about span {
    color: #5B6670;
    font-size: 18px;
}
.about_thumb {
    text-align: center;
}

/*sec_head*/

.sec_head {
    text-align: center;
    margin-bottom: 40px;
    position: relative
}

.sec_head h2 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
}

.sec_head p {
    font-size: 15px;
    color: #5B6670
}


/**/
.btn-site {
    height: 45px;
    font-size: 18px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: var(--main-color);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #5B6670;
    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;
}

/*Features*/

.section_features {
    padding: 80px 0 0;
    position: relative;
}
.section_features .row {
    align-items: center;
}
.item-feat {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.item-feat figure {
    margin-bottom: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8;
    border-radius: 20px;
    padding: 17px;
}

.item-feat:hover figure {
    border: 1px dashed var(--main-color);
    -webkit-animation-name: swing;
    animation-name: swing;
    animation-duration: 500ms;
}

.item-feat .txt-feat {
    width: calc(100% - 80px);
    margin-left: 10px;
}

.item-feat .txt-feat p {
    color: #5B6670;
    font-size: 16px;
}

.item-feat:hover .txt-feat p {
    color: var(--main-color)
}
.section_features  .col-md-4:first-child .item-feat {
    flex-direction: row-reverse;
    text-align: right;
}
.section_features  .col-md-4:first-child .item-feat .txt-feat {
    width: calc(100% - 80px);
    margin-left: 0;
    margin-right: 10px;
}


/*section_services*/


.section_services {
    padding: 80px 0 0;
    position: relative;
}

.item-serv {
    margin-bottom: 30px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    padding: 50px 20px 20px;
    border-radius: 10px;
    height: 100%
}

.item-serv figure {
    position: relative;
    margin: 15px auto;
    text-align: center
}
.item-serv figure:before {
    content: "";
    background: #f8f8f8;
    width: 90px;
    height: 60px;
    border-radius: 15px;
    position: absolute;
    top: 0;
    right: 100px;
    transform: rotate(320deg);
    z-index: -1;
}
.item-serv figure img {
    max-width: 90px;
}
.item-serv .txt-serv {
    text-align: center;
}
.item-serv .txt-serv h4 {
    margin-bottom: 10px;
    color: #5B6670;
    font-weight: 600;
    font-size: 19px;
}

.item-serv .txt-serv p {
    color: #5B6670;
    height: 80px;
    overflow: hidden;
}

/*screenshoot*/

.section_screenshoot {
    padding: 80px 0 0;
    position: relative
}
.screenshoot-slider .owl-item.active.center img {
    -webkit-transform: scale(1);
    transform: scale(1)
}
.screenshoot-slider {
    position: relative;
}
.screenshoot-slider img {
    height: 530px;
    -webkit-transform: scale(.75);
    transform: scale(.75);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #eee;
}
.screenshoot-slider .owl-item.active.center img {
    border-radius: 30px
}
.screenshoot-slider:before {
    content: "";
    background: url(../images/mocup-slider.png);
    width: 275px;
    height: 540px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

/*section_customer*/

.section_customer {
    position: relative;
    padding: 80px 0;
}

#testi-slider .item {
    padding: 10px 5px;
}

.item-testi {
    padding: 15px;
    box-shadow: 0 1px 7px rgb(0 0 0/ 16%);
    background: #fff
}

.item-testi .data-testi {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.item-testi figure {
    width: 80px;
    align-items: center;
    margin-bottom: 0;
    margin-right: 15px;
}

.item-testi figure img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
}

.item-testi .txt-test {
    width: calc(100% - 100px);
}

.item-testi > p {
    color: #5B6670;
    font-size: 15px;
    font-weight: 300;
}

.txt-test h5 {
    font-weight: 500;
    color: #5B6670;
    font-size: 16px;
}

.txt-test p {
    color: #5B6670;
    font-size: 14px
}

/*Contact*/

.sec-contact {
    display: flex;
}
.sec-contact .se-cr {
    width: 35%;
    margin-right: 30px;
}
.sec-contact .se-cr > p {
    margin-bottom: 40px;
}
.sec-contact .list-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.list-contact li i {
    color: var(--main-color);
    margin-right: 10px;
}
.sec-contact .form-contact {
    width: 65%;
}
.form-contact .form-group {
    margin-bottom: 20px;
}
.form-contact .form-group .form-control {
    border: 1px solid #eae4e4;
    height: 45px;
    border-radius: 0;
}
.form-control:focus {
    box-shadow: 0 0 0 0.25rem var(--main-color);
}
.form-contact .form-group textarea.form-control {
    height: 120px
}
    
/*fotter*/
footer {
    position: relative;
    background-color: #3a3838;
    padding: 15px 0;
}
footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mmenu li {
    display: inline-block;
    margin-right: 15px;
}
.mmenu li a {
    color: #fff;
}
.mmenu li a:hover {
    color: var(--main-color)
}
.copyRight {
    text-align: center;
    color: #fff;
}
.copyRight a {
    color: var(--main-color)
}
.social-media li {
    display: inline-block;
    margin-left: 15px;
}
.social-media li a {
    color: #fff;
}
.social-media li a:hover {
    color: var(--main-color)
}

/*section_page_site*/

.section_page_site {
    padding: 40px 0;
    position: relative;
}
