/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

*, h1, h2, h3, h4, h5, h6, .navbar-main, textarea, .home-shortcuts, .fromer {
    font-family: 'Almarai', sans-serif;
}

 .getready .column-support-subtitle, button, input, select, textarea,
 .footer .footer-menu .menu-item, .footer .heading,
 .tabs.offers-tabs .tabs-content p {
    font-family: 'Almarai', sans-serif !important;
}

.team .heading {
    font: normal 22px "Almarai" !important;
}

.counter {
    font-size: xx-large;
    font-weight: 900;
}

img {
    max-width: 100%;
}

.btn {
    padding: 11px 26px;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.plans.badge.feat {
    z-index: 0 !important;
}

div#accordionExample i {
    color: #FFF;
    font-size: xx-large;
    padding-left: 20px;
}

.main-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    direction: ltr;
}

.main-swiper .swiper-slide {
    background-position: center;
    background-size: contain;
    width: 205px;
    height: 320px;
}

.main-swiper .swiper-container-3d .swiper-slide-shadow-right,
.main-swiper .swiper-container-3d .swiper-slide-shadow-left {
    display: none;
}

    /* ------------------------------------- */
    /* * Features Styles .............. */
    /* ------------------------------------- */
    #features {
    color: #ffffff;
    background: #000428;
    background: -webkit-linear-gradient(135deg, #111A2B, #333D4D);
    background: linear-gradient(240deg, #000000 50%, #3f004a 100%);
    padding-top: 40px;
    }
    #features .overlay {
        opacity: 0.95; }
    #features .container {
        position: relative;
        z-index: 10; }
    #features .single-feature {
        padding: 0.5rem; }
    #features .reflection-text,
    #features h5,
    #features p,
    #features a,
    #features i {
        color: inherit; }
    #features .feature-left a {
        text-align: right; }
    #features .feature-left a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -20%;
        width: 0;
        height: 2px;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: width 0.4s ease-out;
        transition: width 0.4s ease-out; }
    #features .feature-left a::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -21%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-48%);
        transform: translateY(-48%);
        -webkit-transition: opacity 0.4s ease-out;
        transition: opacity 0.4s ease-out; }
    #features .feature-right a {
        text-align: right;
        -webkit-transition: width 0.4s ease-out;
        transition: width 0.4s ease-out; }
    #features .feature-right a::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -20%;
        width: 0;
        height: 2px;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: width 0.4s ease-out;
        transition: width 0.4s ease-out; }
    #features .feature-right a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -21%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-48%);
        transform: translateY(-48%);
        -webkit-transition: opacity 0.4s ease-out;
        transition: opacity 0.4s ease-out; }
    #features .feature-link {
        cursor: pointer;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding: 0 1rem;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border-radius: 10px;
        position: relative;
        z-index: 10;
        overflow: visible; }
    #features .feature-link.active {
        box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
    #features .feature-link.active i::after {
        -webkit-animation: rotateEffect 8s linear infinite;
        animation: rotateEffect 8s linear infinite;
        display: block; }
    #features .feature-link.active::after {
        opacity: 1;
        width: 30%; }
    #features .feature-link.active::before {
        opacity: 1; }
    #features .feature-link h5 {
        text-align: right;
        font-size: 1.2em;
        font-weight: bold;
        line-height: 30px;
    }
    #features .feature-link p {
        padding: 0 0.5rem;
        font-size: 1em;
    }
    #features .feature-link i {
        position: relative;
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        font-size: 2rem;
        line-height: 4rem;
        background: rgba(0, 0, 0, 0.42); }
    #features .feature-link i::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px dashed white;
        top: 0;
        right: 0;
        display: none; }
    @-webkit-keyframes rotateEffect {
        from {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
        to {
            -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }
    @keyframes rotateEffect {
        from {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
        to {
            -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }
    #features .images-slider .owl-features {
        max-width: 300px;
        margin: 0 auto; }
    #features .overlay {
        opacity: 0.9; }
    #features .container {
        position: relative;
        z-index: 10; }
    #features .single-feature {
        padding: 0.5rem; }
    #features .reflection-text,
    #features h5,
    #features p,
    #features a,
    #features i {
        color: inherit; }
    #features .feature-left a {
        text-align: right; }
    #features .feature-left a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -20%;
        width: 0;
        height: 2px;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: width 0.4s ease-out;
        transition: width 0.4s ease-out; }
    #features .feature-left a::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -21%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-48%);
        transform: translateY(-48%);
        -webkit-transition: opacity 0.4s ease-out;
        transition: opacity 0.4s ease-out; }
    #features .feature-right a {
        text-align: left;
        -webkit-transition: width 0.4s ease-out;
        transition: width 0.4s ease-out; }
    #features .feature-right a::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -20%;
        width: 0;
        height: 2px;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: width 0.4s ease-out;
        transition: width 0.4s ease-out; }
    #features .feature-right a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -21%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #0a0e0a;
        opacity: 0;
        -webkit-transform: translateY(-48%);
        transform: translateY(-48%);
        -webkit-transition: opacity 0.4s ease-out;
        transition: opacity 0.4s ease-out; }
    #features .feature-link {
        cursor: pointer;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border-radius: 10px;
        position: relative;
        z-index: 10;
        overflow: visible; }
    #features .feature-link.active {
        box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
    #features .feature-link.active i::after {
        -webkit-animation: rotateEffect 8s linear infinite;
        animation: rotateEffect 8s linear infinite;
        display: block; }
    #features .feature-link.active::after {
        opacity: 1;
        width: 30%; }
    #features .feature-link.active::before {
        opacity: 1; }
    #features .feature-link i {
        position: relative;
        margin: 0 1rem;
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        font-size: 2rem;
        line-height: 4rem;
        background: rgba(0, 0, 0, 0.42); }
    #features .feature-link i::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px dashed white;
        top: 0;
        left: 0;
        display: none; }
    @-webkit-keyframes rotateEffect {
        from {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
        to {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
    @keyframes rotateEffect {
        from {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
        to {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
    #features .images-slider .owl-features {
        max-width: 300px;
        margin: 0 auto; }
    .gradient-color {
        background: #000428;
        background: -webkit-linear-gradient(135deg, #111A2B, #333D4D);
        background: linear-gradient(240deg, #000000 50%, #3f004a 100%) ;
    }
    .overlay-f {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
        z-index: 10;
    }
    h2.reflection-text {
        text-align: center;
        padding-bottom: 50px;
    }
    
    #features .owl-carousel .owl-item img {
    width: 300px;
    height: auto;
}
    #features .owl-carousel.owl-rtl .owl-item {
    height: auto;
}

#features a {
    color: #FFF !important;
}


@media (max-width:767px) {
    #features .feature-right a::after,
    #features .feature-right a::before {
        display: none;
    }        
    #features .owl-carousel .owl-item img {
         width: 250px;
    }
}


/* .team-section */
    #team-section {
        padding: 50px 0 80px 0;
    }
    #team-section .image {
        clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
        height: 200px;
        position: absolute;
        top: 60px;
        width: 64%;
        left: 18%;
        right: 18%;
		z-index: 1;
    }
    #team-section .image img {
        height: 100%;
        width: 100%;
    }
    #team-section .lower-content {
        margin: 190px 0 0 0;
        box-shadow: 0 0 11px 1px #ccc;
        padding: 60px 10px 10px 10px;
        border-radius: 20px;
        text-align: center;
        background-color: white;
    }

    #team-section .lower-content h3 {
        font-size: 20px;
        font-weight: 900;
    }

    #team-section ul.list-unstyled.list-inline {
        margin-top: 10px;
    }
    #team-section ul.list-unstyled.list-inline .fa {
        font-size: 20px;
    }
    #team-section .admin {
        background-color: #FFFFFF;
        padding: 20px 20px 0 20px;
        float: inherit;
        margin: 30px 0;
        border-radius: 20px;
        box-shadow: 0 0 11px 1px #ccc;
    }
    #team-section .admin img {
        width: 150px;
        height: 180px;
        float: right;
    }
    #team-section .admin h3 {
        font-size: 20px;
        font-weight: 900;
    }
    #team-section .admin p {
        font-size: 14px;
    }
    #team-section .admin .data {
        float: right;
        padding-right: 20px;
    }
    #team-section .admin .designation {
        float: right;
        padding-top: 10px;
        font-size: 14px;
    }
    #team-section .admin:hover p, .admin:hover h3, #team-section .lower-content:hover p , #team-section .lower-content:hover h3 {
    color: #FFF;
    }
    #team-section .hvr-shutter-out-vertical:before {
    border-radius: 20px;
    background-color: #111a2b;
    }
	#team-section .hvr-shutter-out-vertical {
    display: block;
	}
	#team-section h4.reflection-text.p-b-2 {
    text-align: center;
    }

    #team-section .lower-content:hover, #team-section .admin:hover {
        background-color: #57c3ea !important;
    }



/* #testimonial */
#testimonial h2 {
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	position: relative;
	margin: 25px 0 50px;
}
#testimonial h2::after {
	content: "";
	width: 50px;
	position: absolute;
	margin: 0 auto;
	height: 3px;
	background: #ffdc12;
	left: 0;
	right: 0;
	bottom: -20px;
}
#testimonial .carousel {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 50px;
}
#testimonial .carousel .item {
	color: #d6d5d5;
	font-size: 14px;
    text-align: center;
	overflow: hidden;
    min-height: 340px;
}
#testimonial .carousel .item a {
	color: #eb7245;
}
#testimonial .carousel .img-box {
	width: 145px;
	height: 145px;
	margin: 0 auto;
	border-radius: 50%;
}
#testimonial .carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
#testimonial .carousel .testimonial {	
	padding: 30px 0 10px;
}
#testimonial .carousel .overview {	
	text-align: center;
	padding-bottom: 5px;
}
#testimonial .carousel .overview b {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	display: block;	
	padding-bottom: 5px;
}
#testimonial .carousel .star-rating i {
	font-size: 18px;
	color: #ffdc12;
}
#testimonial .carousel .carousel-control {
	width: 30px;
	height: 30px;
	border-radius: 50%;
    background: transparent;
    text-shadow: none;
	top: 4px;
}
#testimonial .carousel-control i {
	font-size: 50px;
	margin-right: 2px;
}
#testimonial .carousel-control.left {
	left: auto;
	right: 40px;
}
#testimonial .carousel-control.right i {
	margin-right: -2px;
}
#testimonial .carousel .carousel-indicators {
	bottom: 15px;
}
#testimonial .carousel-indicators li, #testimonial .carousel-indicators li.active {
	width: 11px;
	height: 11px;
	margin: 1px 5px;
	border-radius: 50%;
}
#testimonial .carousel-indicators li {	
	background: #e2e2e2;
	border-color: transparent;
}
#testimonial .carousel-indicators li.active {
	border: none;
	background: #888;		
}
#testimonial .owl-item, #testimonial .item {
min-height: auto !important;
height: auto;
}
p.testimonial {
    min-height: 100px;
}


/* Clients */
.clients .swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    direction: ltr;
}
.clients .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 150px;
}
.clients .swiper-container-3d .swiper-slide-shadow-right,
.clients .swiper-container-3d .swiper-slide-shadow-left {
    display: none;
}

/* talabaty-sw */
.talabaty-sw .swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    direction: ltr;
}
.talabaty-sw .swiper-slide {
    background-position: center;
    background-size: contain;
    width: 205px;
    height: 410px;
}
.talabaty-sw .swiper-container-3d .swiper-slide-shadow-right,
.talabaty-sw .swiper-container-3d .swiper-slide-shadow-left {
    display: none;
}


/* */
.mobileapp {
    background-color: #00042A;
}

.mobileapp .owl-carousel.owl-rtl .owl-item {
    height: 100vh;
}

.mobileapp .custom-element-right {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    left: 0;
}

.faq .swiper-wrapper {
    margin-bottom: 50px;
}

.randomline {
    display: none;
}

#showcase h3 {
    padding-top: 30px;
}

.footer .footer-bottom hr {
    border-top: 1px solid #333;
}

.footer .soc-icons i {
    color: #15212a !important;
    background-color: #808080 !important;
    height: 30px !important;
    line-height: 30px !important;
    border-radius: 5px !important;
    width: 30px !important;
}


.navbar-nav>li>.dropdown-menu {
    padding: 0 0 0 20px;
}

.navbar-nav a.dropdown-toggle:before {
    display: none;
}

.navbar-main .navbar-nav > li {
    padding-bottom: 10px;
}

.blog .wrap-blog .wrapper {
    margin: 20px 0;
}

.pricing .list-info {
    padding: 20px 30px;
}

.pricing .wrapper .top-content {
    padding: 40px 30px;
}

.pricing .wrapper, .sec-main {
    border-radius: 25px;
    box-shadow: 0 0 5px 2px #ddd !important;
}

.pricing .wrapper .title {
    color: #2e9dc7;
}

.md-editor button {
    height: 30px;
    line-height: 30px;
    padding: 0 15px !important;
    background-color: #1697bf !important;
    color: #FFF !important;
    margin: 0 2px !important;
}

.input-group-btn:last-child>.btn {
    height: 35px !important;
    line-height: 35px;
    padding: 0 20px;
}

.btn.btn-default, .btn.btn-success, .btn.btn-danger {
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    padding: 0 10px;
}

#order-standard_cart .input-group-lg>.form-control {
    height: 36px !important;
    line-height: 36px !important;
}

#order-antler .price-table-container .price-table ul {
    padding: 30px;
}

.overlay-video:before {
    background-color: #181b22 !important;
}


.team .team-info {
    background-color: transparent;
    box-shadow: none;
}

.team .team-info .svg {
    border-radius: 0 30% 0 50%;
    box-shadow: 5px 5px 20px 0px #1697bf;
}


#order-standard_cart .btn {
    height: 32px;
    line-height: 32px;
    padding: 0 5px;
    font-size: 12px;
}

#order-standard_cart .btn.btn-link {
    height: 25px;
    line-height: 25px;
}

#order-standard_cart .btn-checkout {
    padding: 0 5px !important;
    font-size: 12px;
}

#order-standard_cart .btn-checkout {
    padding: 0 5px;
    font-size: 12px;
}

#order-standard_cart .view-cart-items .item {
    font-size: 12px;
    height: auto;
    min-height: 50px !important;
}

#order-standard_cart .empty-cart .btn {
    padding: 0 5px;
}

#order-antler .price-table-container .price-table .top-head .price-area .price span {
    font-size: 22px !important;
    font-weight: bold !important;
}

.dropdown-menu>li>a {
    padding: 7px;
}

.dropdown-menu>li img {
    height: 25px;
}

@media (max-width:767px) {
    .menu-wrap {
    display: block;
    }
    
    .owl-theme .owl-nav.disabled + .owl-dots {
        display: none !important;
    }
}