@font-face {
    font-family: 'Janna-LT-Regular';
    src: url('../fonts/Janna-LT-Regular.ttf');
}
@font-face {
    font-family: 'Janna-LT-Bold';
    src: url('../fonts/Janna-LT-Bold.ttf');
}
html {
    scroll-behavior: smooth;
}
body{
    position: relative;
    padding: 0px;
    margin: 0px;
    direction: rtl;
    text-align: right;
    font-family: 'Janna-LT-Regular';
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Janna-LT-Bold';
    margin: 0px;
}
p, label{
    margin: 0px;
}
button:focus, .btn.focus, .btn:focus{
    outline: none;
    box-shadow: none;
}
a:hover{
    text-decoration: none;
}
section{
    margin-top: 30px;
}
.btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    height: 45px;
    width: 155px;
    max-width: 46%;
    border: none;
    border-radius: 0px;
}
.btn:hover{
    color: #fff;
}
.btn.primary{
    background-color: #0071ce;
}
.btn.danger{
    background-color: #f53535;
}
.title{
    position: relative;
    color: #f5b335;
    font-size: 34px;
    padding-right: 18px;
    margin-bottom: 44px;
    z-index: 0;
}
.title::before{
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 5px;
    right: 0px;
    z-index: -1;
    background-color: #bfdbf3;
    border-radius: 50%;
}
.mb-44{
    margin-bottom: 44px;
}
/* navbar */
.navbar{
    padding: 10px;
}
.navbar .navbar-nav{
    position: relative;
    height: 60px;
    align-items: center;
}
.navbar .navbar-nav:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    /* width: calc(100% + calc(calc(100vw - 1173px) / 2)); */
    width: 100vw;
    z-index: -1;
    background-color: #f4b334;
}
.navbar .nav-item .nav-link{
    position: relative;
    padding: 10px 0px;
    margin: 0px 13px;
    font-size: 18px;
    color: #292929;
}
.navbar .nav-item:last-of-type .nav-link{
    margin-left: 0px;
}
.navbar .nav-item:hover .nav-link,
.navbar .nav-item.active .nav-link{
    color: #fff;
    font-weight: bold;
}
.navbar .nav-item:hover .nav-link::before,
.navbar .nav-item.active .nav-link::before{
    content: '';
    position: absolute;
    bottom: 0px;
    right: calc(50% - 2px);
    height: 4px;
    width: 4px;
    z-index: -1;
    background-color: #0071ce;
    border-radius: 50%;
}
.hero-bg{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1170px;
    z-index: -2;
}
.navbar .nav-item.second-level{}
.navbar .nav-item.second-level:hover .second-level-menu{
    display: block;
}
.second-level-menu{
    display: none;
    position: absolute;
    top: 45px;
    right: 0px;
    z-index: 5;
    padding-top: 15px;
    animation-duration: 1s;
    animation-name: navFadeInUp;
}
@keyframes navFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 15%, 0);
        transform: translate3d(0, 15%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.second-level-content{
    background-color: #f7f7f7;
    padding: 30px;
    padding-bottom: 20px;
    box-shadow: 0px 0px 20px 0px rgba(22, 22, 22, 0.2);
}
.second-level-menu a{
    color: #292929;
    font-size: 16px;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-right: 15px;
}
.second-level-menu a:before{
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    top: 10px;
    right: 0px;
    border-radius: 50%;
    background-color: #0071ce;
}
.second-level-menu a:hover{
    color: #f4b334;
    text-decoration: underline;
}
/* hero */
.hero{
    position: relative;
    padding-bottom: 70px;
}
.hero-dots{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 600px;
    z-index: 2;
}
.hero-carousel::after{
    content: '';
    position: absolute;
    top: 150px;
    left: -69px;
    width: 138px;
    height: 75px;
    z-index: -1;
    background-image: url(../images/waves.png);
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-carousel .item{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 90px;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 600px;
}
.hero-carousel .item::before{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(2, 2, 2, 0.7);
}
.hero-carousel .item h1{
    color: rgb(245, 179, 53, 0.15);
    font-size: 75px;
    padding-bottom: 60px;
    -webkit-text-stroke: 2px #fff;
}
.hero-carousel .item p{
    color: #fff;
    font-size: 20px;
    width: 85%;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 75px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.hero .index{
    position: absolute;
    left: 90px;
    height: 50px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .index span{
    font-size: 18px;
    color: #fff;
}
.hero .index span.active{
    color: #f5b335;
    font-size: 24px;
    font-weight: bold;
}
/* about us */
.about-us{}
.about-us p{
    color: #171717;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
}
.about-us .mt-44{
    margin-top: 44px !important;
}
/* our-value */
.our-value{}
.our-value .mb-20{
    margin-bottom: 20px;
}
.our-value .value{
    background-color: #f7f7f7;
    align-items: center;
    display: flex;
    padding: 20px 25px;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgb(0 113 206 / 0.2);
    height: 100%;
    transition: 0.3s;
}
.our-value .value:hover{
    transform: scale(1.1);
}
.our-value .value img{
    width: 34px;
    height: 34px;
}
.our-value .value h3{
    font-size: 20px;
    color: #171717;
    padding-right: 20px;
}
/* our services */
.our-services{
    background-image: url(../images/service-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.our-services .box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 345px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    z-index: 0;
    margin-bottom: 77px;
}
.our-services .box img{
    display: none;
    width: 50px;
    height: 50px;
}
.our-services .box .inner-box{
    background-color: #fff;
    height: 70px;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 60px);
    position: absolute;
    bottom: calc(-75px / 2);
    right: 30px;
    box-shadow:  0 8px 12px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}
.our-services .box .inner-box a{
    color: #0071ce;
    font-size: 20px;
    font-weight: bold;
}
.our-services .box:hover{
    box-shadow:  0 15px 20px 0px rgba(0, 0, 0, 0.3);
}
.our-services .box:hover::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    background-color: rgba(4, 4, 4, 0.7);
}
.our-services .box:hover img{
    display: block;
}
.our-services .box:hover .inner-box{
    background-color: #0071ce;
    transform: scale(1.1);
}
.our-services .box:hover .inner-box a{
    color: #fff;
}
/* our customers */
.our-customers{
    background-color: #f7f7f7;
    padding: 40px 0px;
}
.our-customers p{
    color: #171717;
    font-size: 14px;
    text-align: justify;
}
.our-customers img{
    margin: 15px auto;
    max-height: 164px;
    max-width: 100%;
}
/* footer */
footer{
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    padding: 44px 0px;
}
footer .who{
    background-color: #f5b335;
    padding: 25px;
}
footer .logo{
    margin-bottom: 30px;
}
footer span{
    display: block;
    color: #1b1b1b;
    font-size: 14px;
}
footer span.main{
    font-size: 16px;
    font-weight: bold;
}
footer span.pb-15{
    padding-bottom: 15px;
}
footer h2{
    color: #f5b335;
    font-size: 20px;
    padding-bottom: 30px;
}
footer ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
footer ul li{
    padding-bottom: 20px;
}
footer ul li:last-of-type{
    padding-bottom: 0px;
}
footer ul li a{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
footer ul li a:hover{
    color: #f5b335;
}
footer .social a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #0071ce;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 17px;
}
footer .social{
    margin-top: 89px;
}
footer .social li{
    padding-bottom: 0px;
}
footer .social a:hover{
    background-color: #f5b335;
    color: #fff;
}
footer .form-control{
    height: 45px;
    border-radius: 22.5px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-right: 20px;
    border: 0px;
}
footer .form-control::placeholder{
    color: #9a9898;
    font-size: 14px;
}
footer .btn{
    background-color: #f5b335;
    color: #fff;
    height: 45px;
    border-radius: 22.5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 12px;
    font-weight: bold;
}
/* online-marketing */
.online-marketing{
    position: relative;
    margin-bottom: 44px;
}
.online-marketing p{
    color: #171717;
    font-size: 18px;
    text-align: justify;
    padding-bottom: 20px;
}
.online-marketing p:last-of-type{
    padding-bottom: 0px;
}
.online-marketing-dots{
    position: absolute;
    top: calc(50% - 200px);
    left: 0px;
    height: 400px;
    z-index: -1;
}
/* innar page hero */
.page-hero{}
.page-hero .innar{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 390px;
    padding: 40px 50px;
    position: relative;
    z-index: 1;
}
.page-hero .innar::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    z-index: -1;
    background-color: rgba(19, 19, 19, 0.55);
}
.page-hero .innar h1{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
}
.breadcrumb{
    margin-top: 44px;
    margin-bottom: 0px;
    background-color: transparent;
}
.breadcrumb .breadcrumb-item{
    color: #fff;
    font-size: 20px;
}
.breadcrumb .breadcrumb-item a{
    color: #fff;
}
.breadcrumb .breadcrumb-item a:hover{
    color: #0071ce;
}
.breadcrumb-item+.breadcrumb-item::before{
    padding-right: 10px;
    padding-left: 10px;
    color: #fff;
    content: '\f100';
    font-family: "Font Awesome 5 Free";
    font-weight: 600; 
}
/* innar page main */
.page-bg{
    background-color: #f7f7f7;
    padding: 35px;
}
.desc{
    font-size: 18px;
    text-align: justify;
}
.slider{
    margin-top: 44px;   
}
.faq{
    padding: 0px;
}
.tap-nav{
    padding: 30px 0px;
    margin: 0px 25px;
    border-bottom: 1px solid #e3e3e3;
}
.tap-nav:last-of-type{
    border-bottom: none;
}
.tap-nav .tap-nav-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.tap-nav .tap-nav-head h4{
    color: #363636;
    font-size: 18px;
}
.tap-nav .tap-nav-head span{
    display: flex;
    align-items: center;
    font-size: 20px;
    border-right: 2px solid #e3e3e3;
}
.tap-nav .tap-nav-head span i{
    color: #f5b335;
    transition: 1s;
    margin-right: 20px;
}
.rotate{
    transform: rotate(-180deg);
}
.tap-nav:hover .tap-nav-head h4,
.tap-nav.active .tap-nav-head h4{
    color: #0971ce;
}
.tap-nav .tap-nav-desc{
    display: none;
}
.tap-nav .tap-nav-desc ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.tap-nav .tap-nav-desc ul li{
    padding-top: 15px;
}
.tap-nav .tap-nav-desc ul li a{
    color: #787979;
    font-size: 16px;
}
.tap-nav .tap-nav-desc ul li a:hover{
    color: #f4b334;
} 
.download{
    margin-top: 44px;
}
.download .btn{
    display: flex;
    width: 100%;
    max-width: 100%;
}
.big-img{
    width: 100% !important;
    height: 425px !important;
}
.category-carousel{
    margin-top: 24px;
}
.category-carousel img{
    height: 140px;
}
.category-carousel .owl-nav [class*=owl-]{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #0971ce !important;
    background-color: #dddddd !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 15px);
}
.category-carousel .owl-nav .owl-prev{
    right: -40px;
}
.category-carousel .owl-nav .owl-next{
    left: -40px;
}
.slider{
    padding: 15px;
}
.slider .nav{
    padding: 0px;
    margin: 0px;
}
.slider .nav-item{
    padding-left: 10px;
}
.slider .nav-item:last-of-type{
    padding-left: 0px;
}
.slider .nav-item .nav-link{
    background-color: #d0d0d0;
    color: #363636;
    font-size: 18px;
    height: 30px;
    border-radius: 14.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 7px;
    margin-bottom: 25px;
}
.slider .nav-item .nav-link.active,
.slider .nav-item .nav-link:hover{
    background-color: #0971ce;
    color: #fffefe;
    font-weight: bold;
}
.slider.slider-for img{
    width: 100%;
    height: 425px;
}
.slider.slider-nav img{
    height: 140px;
    margin: 10px;
}
.slick-prev, .slick-next{
    width: 30px;
    height: 30px;
}
.slick-prev:before, .slick-next:before{
    content: '\f054' !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #0971ce !important;
    background-color: #dddddd;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.slick-next:before{
    content: '\f053' !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 600;
    color: #0971ce !important;
    background-color: #dddddd;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}