/*--------------------------------------------------------------
01 preloader
-------------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    overflow: hidden;
    z-index: 999;
}

.preloader .pre-container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center
}

.preloader .logo-circle {
    position: relative;
    width: 60px;
    height: 60px;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    background: #f08300;
    border-radius: 30px;
    margin-bottom: 2.2em;
    -webkit-animation: white-shadow 1s infinite;
    -moz-animation: white-shadow 1s infinite;
    -ms-animation: white-shadow 1s infinite;
    animation: white-shadow 1s infinite;
    line-height: 36px;
}

.preloader .logo-circle img {
    padding-top: 6px;
    width: 30px;
}

.preloader .loading-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 1px 1px 0 0 #000;
    margin-left: 10px
}

@-webkit-keyframes white-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 3, 3, 0.5);
        -webkit-transition: box-shadow .3s ease-in-out
    }

    100% {
        box-shadow: 0 0 0 30px transparent;
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-transition: box-shadow .4s ease-in-out
    }
}

@-moz-keyframes white-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 3, 3, 0.0);
        -moz-transition: box-shadow .3s ease-in-out
    }

    100% {
        box-shadow: 0 0 0 30px transparent;
        -moz-transform: translate3d(0, 0, 0);
        -moz-transition: box-shadow .4s ease-in-out
    }
}

@keyframes white-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 3, 3, 0.3);
        -webkit-transition: box-shadow .3s ease-in-out;
        -moz-transition: box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out
    }

    100% {
        box-shadow: 0 0 0 30px transparent;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: box-shadow .4s ease-in-out;
        -moz-transition: box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out
    }
}




/*--------------------------------------------------------------
02 General
--------------------------------------------------------------*/

body {
    font-family: 'Tajawal', sans-serif;
    color: #444444;
    text-align: right;
}

a {
    color: #F08300;
}

a:hover {
    color: #F08300;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Tajawal', sans-serif;
}

.h4,
h4 {
    font-size: 1.2rem;
}

.h5,
h5 {
    font-size: 0.8rem;
    color: #5e5e5e;
}

.light-bg {
    background-color: #ffffff;
}

.red-bg {
    background-color: #F08300;
}

.btn-secondary {
    color: #fff;
    background-color: #F08300;
    border-color: #F08300;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #F08300;
    border-color: #F08300;
}

.bg-primary {
    background-color: #1BB54E !important;
}

.bg-secondary {
    background-color: #F08300 !important;
}
.bg-red {
    background-color: #F25249 !important;
}

.bg-primary a {
    color: #fff;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 998;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #F08300;
    color: #fff;
    transition: all 0.4s;
    opacity: 0.7;
}

.back-to-top i:hover {
    background: #F08300;
    color: #fff;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
-- ------------------------------------------------------------*/

#header {
    z-index: 99;
    transition: all 0.5s;
    background-color: #ffffff;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    background: #fff;
}

#header .logo h1 {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #222222;
    text-decoration: none;
}

.bg-primary {
    background-color: #f08300 !important;
}

.dw-pdf img {
    width: 100px;
}


/* only newsletter */

.modal-newsletter {
    color: #999;
    font-size: 15px;
    min-width: 500px;
}

.modal-newsletter .icon-box {
    color: #FF2B06;
    display: inline-block;
    z-index: 9;
    text-align: center;
    position: relative;
    margin-bottom: 0;
}

.modal-newsletter .icon-box i {
    font-size: 110px;
}

.subscribeInput .form-control,
.subscribeInput .btn {
    min-height: 52px;
    border-radius: 3px;
}

.subscribeInput .form-control,
footer .subscribeInput .form-control {
    box-shadow: none;
    border-color: #dbdbdb;
    border-radius: 4rem;
    padding: 4px 2rem;
    padding-left: 4rem;
}

.subscribeInput.input-group>.form-control:not(:last-child) {
    border-radius: 4rem;
}

.subscribeInput .form-control:focus {
    border-color: rgba(255, 43, 6, 0.1);
    box-shadow: 0 0 8px rgba(114, 101, 234, 0.5);
}

.subscribeInput .btn {
    color: #F08300;
    border-radius: 4rem;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    padding: 6px 20px;
    min-width: 60px;
    border: none;
}

.subscribeInput .btn:hover,
.subscribeInput .btn:focus {
    color: #F08300;
    outline: none;
}

footer .subscribeInput .btn {
    color: #1bb54e;
}

footer .subscribeInput .form-control {
    border: none;
}

footer .footer-logo img {
    width: 200px;
}

footer .text-link {
    color: white ;
}
footer .text-link:hover{
    color:#000  ;
}


.subscribeInput .input-group {
    margin: 10px 0 10px;
}

.subscribeInput .btn i {
    font-size: 2.3rem;
}

.subscribeInput .btn {
    padding: 0;
    position: absolute;
    left: 0px;
    transform: rotate(0deg);
    z-index: 98;
}


.contact .info {
    color: #ffffff;
}

.contact .info i {
    font-size: 20px;
    color: #ffffff;
    float: right;
    line-height: 1;
}

.contact .info p {
    padding: 0 30px 0 0;
    line-height: normal;
    font-size: 14px;
}

.card .card-body span {
    display: inline-flex;

}

.card .card-body ul {
    margin: auto;
    padding: 4px;
    border-top: 1px solid #dfdfdf;
    width: 100%;
}

.card .card-body ul li {
    list-style: none;
    float: left;
}

.card .card-body ul li i {
    color: #000;
}

.card .card-body ul li a {
    display: block;
    color: #aaa;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
}

.card .card-body ul li:hover a {
    color: #e91e63;
    transform: rotateY(360deg);
}



.card.card-cascade.narrower {
    transition: all 0.4s;
}

.card.card-cascade.narrower:hover {
    transform: scale3d(1.006, 1.006, 1);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .1), 0 6px 10px 0 rgba(0, 0, 0, .10);
    transition: all 0.4s;
}



.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
}

.brand {
    position: relative;
    width: 480px;
}

.logo {
    position: absolute;
    left: 0%;
    top: -83px;
    z-index: 99;
    padding: 20px;
    background-color: #ffffff;
    height: 130px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.26);
    padding-top: 10px;
}

.logo::after {
    content: "";
    position: absolute;
    left: 0%;
    top: 130px;

    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 96px solid transparent;
    border-top: 50px solid white;
}

.logo img {
    width: 220px;
    margin-top: 0px;
}


.top-bar {
    height: 74px;
}

.heroHeader {
    width: 100%;
    height: auto;
    /* 60vh */
    overflow: hidden;
}

.heroHeader {
    position: relative;
}

.carousel {
    height: 100%;
}

.overlayBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%; 
    /* 60vh; */
    background-color: black;
    opacity: 0.6;
    z-index: 1;
    transition: all 0.4s;
}

.carousel-caption {
    top: 30%;
    transition: all 0.5s;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight:800;
}

.carousel-caption p {
    font-size: 1rem;
    font-weight: 500;

}

/*--------------------------------------------------------------
# InnerPage
--------------------------------------------------------------*/

.z-index-20 {
    z-index: 20;
}

.innerPage {
    margin-top: 100px;
}

.innerPageSlider {
    border-radius: 0.5rem;
    overflow: hidden;
}

.sub-cont-bar {
    border-radius: 20px;
    background-color: #F25249;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
    top: -14px;
    color: #ffffff;
    overflow: hidden;
}

.sub-cont-bar h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0;
    ;
}

.sub-cont-bar h2 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 2rem
}

.sub-cont-bar h2 span {
    font-weight: 500;
    font-size: 1.5rem
}

.sub-cont-bar .incredient img {
    width: 60px;
    margin: 5px 0;
}

.sub-cont-bar .incredient::after {
    width: 12px;
    position: absolute;
    background-color: #B8342E;
    height: 132%;
    content: "";
    left: 10px;
    top: -16px;

}
 


/* Accordion detail */

.component-accordion {
    margin: 30px 0;
}

.component-accordion .panel-group:last-child {
    margin-bottom: 15px;
}

.component-accordion .panel-group .panel {
    border: 0 none;
    margin-bottom: 12px;
    border-bottom: 1px solid #E28123;
}

.component-accordion .panel-group .panel-heading {
    background-color: #fff;
    border-radius: 5px 5px 0 0;
    color: #444;
    padding: 0;
}

.component-accordion .panel-group .panel-heading h4 {
    margin: 0;
    text-align: right;
}

.component-accordion .panel-group .panel-heading a {
    background: #fff;
}

.component-accordion .panel-group .panel-heading a.collapsed {
    background: #fff;
}

.component-accordion .panel-group .panel-heading a:hover.active,
.component-accordion .panel-group .panel-heading a.active {
    color: #E28123;
}

.component-accordion .panel-group .panel-title a {
    border-radius: 5px 5px 0 0;
    color: #888;
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    padding:6px;
    transition: color .2s ease-in-out;
}

.component-accordion .panel-group .panel-title a:hover {
    color: #444;
    text-decoration: none;
}

.component-accordion .panel-group .panel-title a.collapsed::after,
.component-accordion .panel-group .panel-title a::after {
    content: "\f067";
    font-family: FontAwesome;
    font-size: 28px;
    line-height: 44px;
    padding-right: 20px;
    position: absolute;
    left: 19px;
    top: 0;
    font-size: 18px;
}

.component-accordion .panel-group .panel-title a:after {
    content: "\f068";
}

.component-accordion .panel-body {
    background: #fff;
    color: #888;
    padding:10px 0;
}

.component-accordion .panel-group .panel-heading+.panel-collapse>.panel-body,
.component-accordion .panel-group .panel-heading+.panel-collapse>.list-group {
      border-top: 1px solid #eee; 
}

.card.sideBar-curve {
    border-radius: 20px;
}
.list-details {
    padding: 0;
    margin: 0;
}
.list-details li {
    background-color: #FFFFFF;
    padding: 14px ;
    border-radius: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #4E4E4E;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: none;
}
.list-details li:hover{
    background-color: #dbdbdb;
    transition: all 0.4s;
    box-shadow: 0 2px 6px 0px rgba(39, 40, 41, 0.15);
}
.list-details li span { 
    float: left;
}
.list-details li span i {
    font-size: 2rem;
    vertical-align: middle;
    position: relative;
    top: -3px;
    color: #EFEFEF;
}
.list-details li.checked span i {
    color: #57DF6A;
}
.list-details li.checked {
    background-color: #e1ebde;
}
.accordion-icon {
    width: 30px;
    margin-left: 12px;
}
.list-group-time li {
    background-color: transparent;
    color: #FFF;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
}
span.btn.btn-rounded{
    border-radius: 30px !important;
    border-width: 2px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center !important;
}
.card .card-body ul.list-group-time {
    border: none;
}
.card-title.pricing-card-title img {
    width: 140px;
}
ul.process-time-line {
    margin: 0;
    padding: 0;
    margin-top: 3rem;
}
ul.process-time-line li { 
    margin: 15px 0;
    font-weight: 500;
    font-size: 1rem;
}
ul.process-time-line li span {
    background-color: #f25249;
    color: #FFF;
    width: 43px;
    height: 43px;
    border-radius: 50%; 
    text-align: center;
    line-height: 50px;
    vertical-align: middle;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 20px;
    display: inline-table;
	min-width:43px;
}
.owl-vertical-slider .owl-carousel .item {
    overflow: hidden;
    border-radius: 24px;
}



/* # Footer  */

#footer {
    background-color: #ffffff;
    background-image: url(../img/footerBG.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 30px 0;
    color: #FFF;
    font-size: 14px;
    margin-top: 2rem;
}

#footer .credits {
    font-size: 13px;
    padding-top: 5px;
    color: #ffffff;
}

#footer .footer-links a {
    color: #ffffff;
    padding-left: 6px;
}

#footer .footer-links a:first-child {
    padding-left: 0;
}

#footer .footer-links a:hover {
    color: #ffffff;
}

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

#footer .footer-links ul i {
    padding-left: 4px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-links ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

#footer .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-links ul a:hover {
    color: #022bb4;
}

#footer .footer-links ul a:hover {
    color: #022bb4;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .content {
    height: 100px;
    width: 45%;
    color: #fff;
    font-size: 24px;
    line-height: 100px; /* centering text just for view */
    text-align: center;
    background-color: grey;
    margin: 5px;
    border: 1px solid lightgrey;
    display: none;
  }
  #loadMore {
    width: 200px;
    color: #fff;
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px; 
    transition: .3s;
  }
  #loadMore:hover {
    color: blue;
    background-color: #fff;
    border: 1px solid blue;
    text-decoration: none;
  }
  .noContent {
    color: #000 !important;
    background-color: transparent !important;
    pointer-events: none;
  }
  
.btn-link {
    color: #f08300 !important;
    border:1px solid #f08300;
    font-weight: 600;
    margin-top: 10px;
    font-size: 12px;
    text-decoration:none !important;
}
.btn-link:hover {
    color: #ffffff !important;
    border:1px solid transparent;
    background-color: #f08300; 
    text-decoration: none !important;
}
.navbar-dark .navbar-nav .nav-link { 
    border-right: 1px solid rgb(255 255 255 / 30%);
}


.video-box {
    position: relative;
    border-radius:16px;
    overflow: hidden;
  }
  
  .video-box .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#f08300  50%, rgba(255, 255, 255, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }
  
  .video-box .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .video-box .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(242, 82, 73, 0.7); 
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  
  .video-box .play-btn:hover::after {
    border-left: 15px solid #f08300;
    transform: scale(20);
  }
  
  .video-box .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }
  
  @-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }


  iframe.venoframe.vbvid.vbox-figlio {
    background-color: transparent !important;
}

a.navbar-toggler.btn-switch {
    background-color: transparent;
    color: #f08300;
    border-radius: 3px;
    border: 1px solid #f08300;
    padding: 8px;
    font-size: 14px;
  }