/* General style  */
.blue {
    color: #005cae;
}
.bg-white {
    background-color: #fff;
}
.bg-blue {
    background-color:#005cae;
}

.dark-blue {
    color:#003766;
}

.white-blue {
    color :#0670C8
}
.bg-lignt-blue{
    background-color: #1177cb;
}

.lignt-blue{
    color: #1177cb;
}

.bg-grey{
    background-color: #232428;
}
.grey {
    color: #B2B2B2;
}
.dark-grey { 
    color: #444444
}
.bg-dark-grey { 
    background-color: #444444
}
.light-grey{
    color :#777777
}
.bg-ligt-grey{
    background-color :#777777
}
.px-2-1{
    padding-left: .7em;
    padding-right: .7em;
}
.font-size-22 {
    font-size:22px
}
.radius-12 {
    border-radius: 12px;
}
.radius-pillow{
    border-radius: 22px;
}
.border-blue {
    border:1px solid #005bad 
}
.white,
.white:hover{
    color:#fff
}
.font-14{
    font-size: 14px;
}
.font-16{
    font-size: 16px;
}
.w-10 {
    width:10%
}
.w-30{
    width: 30px;
}

.w-70{
    width: 70%;
}
.w-90{
    width:90%
}
.w-80 {
    width:80%
}
.object-fit {
    object-fit: contain;
}
.height-450-p {
    height: 450px;
}
.height-230-p{
    height: 230px;
}
.height-100-p{
    height: 100px;
}

.max-h-350-p{
    max-height: 350px;
}

.max-h-250-p{
    max-height: 300px;
    min-height: 250px;
}

.max-h-100-p{
    max-height: 100px;
    min-height: 100px;
}

.max-h-150-p{
    max-height: 150px;
    min-height: 150px;
}

.object-fill {
    object-fit: fill;
    width: 100%;
}

.height-55-p {
    height: 55px;
}

.right-0 {
    right: 0px;
}
.pointer {
    cursor: pointer;
}
.z-index-0{
    z-index: 0;
}

@media(max-width: 767px){
    .max-h-250-p{
        max-height: 460px;
        min-height: 400px;
    }

    button#loginFormModal{
        padding-right:2rem !important;
        padding-left:2rem !important;
    }

    button#signUpButton{
        padding-right:2rem !important;
        padding-left:2rem !important;
    }
}

@media(min-width: 768px) AND (max-width: 992px){
    .max-h-250-p{
        max-height: 340px;
        min-height: 300px;
    }
}
/*****************************************Home page****************************************** */

/* Start Header  */
    /* Top bar */
.top-bar-icons a i  {
    transition:all .3s ease-in-out;
}
.top-bar-icons a:hover{
    text-decoration: none;
}
.top-bar-icons a:hover i {
    color: #005cae;
}

    /*navbar  */
.nav-text-grey {
    color: #838383;
    transition: all .3s ease-in-out;
}
.nav-text-grey:hover {
    color: #0670C8;
}
.navbar-nav {
    transition: all .3s ease-in-out;
}
.nav-item {
    display: block;
    padding:35.5px 0px 32.5px;
    font-weight: 500;

}
.nav-item:hover,
.nav-item.active {
    border-top:3px solid #005bad;
    padding:32.5px 0px 32.5px;
}
.nav-item:hover a{
    color: #005bad ;

}
.nav-item.active .nav-text-grey{
    color: #005bad;
}
@media(max-width:992px){
    .nav-item:hover,
    .nav-item.active {
        border-top:none;
        padding:0;
    }
    .nav-item{
        padding:0
    }
}
/* Carousel */
.owl-carousel .owl-inner{
    height:80vh
}
.owl-carousel,
.our-services{
    position: relative;
    text-align: center;
}

.owl-carousel .owl-inner,
.our-services-carousel .owl-inner{
    position: relative;
}
.owl-dots{
    position: relative;
    bottom: 50px;
}
.owl-dots .owl-dot{
    margin: 0 5px;
    width:50px;
    height:7px;
    border-radius:7px;
    background-color: #b1b1b1 !important;
    display: inline-block;
}
.owl-dots .owl-dot.active{
    background-color: #fff !important;
}
.owl-carousel .carousel-object-fit {
    object-fit: cover;
    width: 100%;
    height: 80vh;
}
.owl-carousel .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background-color: rgba(35, 68, 111, .9);
}

.owl-carousel .overlay .content{
    background-color: rgb(0, 0, 0, .5);
    color:#fff;
    margin: 0;
    width: 40%;
    height: auto;
    position: absolute;
    top:22%
}
.draw-line::before{
    content: "";
    display: inline-block;
    height: 1px;
    width: 140px;
    z-index: 999;
    border: 1px solid #369df9;
    margin-bottom: 8px;
}

.draw-line::after{
    content: "";
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 100px;
    z-index: 999;
    margin-top: -4px;
    border: 2px solid #369df9;
    cursor: pointer;
    margin-bottom: 3px;

}

.height-100-p {
    height: 100px
}
/* media querries */
@media(max-width:767px){
    .owl-carousel .overlay .content{
        width: 93%;
        top:6%
    }
    .draw-line::before{
        width: 90%;
    }
}
@media(min-width:768px) AND (max-width:991px){
    .owl-carousel .overlay .content{
        width: 60%;
    }
    .draw-line::before{
        width: 90%;
    }
}
@media(min-width:992px) AND (max-width:1199px){
    .owl-carousel .overlay .content{
        width: 60%;
    }
    .draw-line::before{
        width: 90%;
    }
    .top-5{
        top: 5% !important;
    }
}
@media(min-width:1500px){
    .owl-carousel .overlay .content{
        width: 30%;
    }
    .top-5{
        top: 5% !important;
    }
    .owl-carousel .owl-inner{
        height:50vh
    }
    .owl-carousel .carousel-object-fit {
        height: 50vh;
    }
}
/* media querries */
/* End Header  */
/* Start About us */
.lines-container {
    position: relative;
}
.draw-right-line{
    bottom: 5px;
    position: absolute;
    left: 13px;
}

.draw-right-line::before{
    content: "";
    display: inline-block;
    height: 1px;
    width: 100px;
    z-index: 999;
    border: 1px solid #616161;
    margin-bottom: 8px;
}
.draw-right-line::after{
    content: "";
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 100px;
    z-index: 999;
    margin-top: -4px;
    border: 2px solid #616161;
    cursor: pointer;
    margin-bottom: 3px;
}
.draw-left-line::after{
    content: "";
    display: inline-block;
    height: 1px;
    width: 100px;
    z-index: 999;
    border: 1px solid #616161;
    margin-bottom: 8px;
}
.draw-left-line::before{
    content: "";
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 100px;
    z-index: 999;
    margin-top: -4px;
    border: 2px solid #616161;
    cursor: pointer;
    margin-bottom: 3px;
}
/* Start Media queries */
@media(max-width:992px){
    .draw-right-line{
        left: 44%;
    }
    .font-xs-13{
        font-size: 12px;
    }
}
@media(max-width:768px){
    .draw-right-line{
        left: 44%;
    }
    .font-xs-13{
        font-size: 12px;
    }
}
@media(max-width:530px){
    .draw-right-line{
        left: 39%;
    }
}
/* End Media queries */
/* End About us */
/* Start Our services */
.draw-right-line.white::after,
.draw-right-line.white::before,
.draw-left-line.white::before,
.draw-left-line.white::after{
    color:#fff;
    border-color: #fff;
}
#our-services.owl-carousel .owl-inner{
    height: auto;
}
#our-services.owl-carousel .owl-dots{
    bottom:-17px;
}
.bg-pattern {
    background-image: url(../images/Home-img04.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    background-attachment: unset;
}
/* End Our services */
/* Start latest egypt legal updates */
#our-clients .owl-dots .owl-dot{
    background-color: #B2B2B2;
    height:5px
}
#our-clients .owl-dots .owl-dot.active{
    background-color:  rgba(35, 68, 111);
}
#our-clients.owl-carousel .owl-inner{
    height: auto;
}
#our-clients.owl-carousel .owl-dots{
    bottom:-17px;
}
#our-clients.owl-carousel img{
    width: 200px;
    height: 120px;
    object-fit: contain;
}
.owl-carousel .owl-item img{
    width:40%
}
/* end latest egypt legal updates */

/* start login form */
.custom-form-control{
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 15px;
    height: 39px;
}
.border-width-2 {
    border-width:2px
}
/* end login form */
.border-custom {
    border : 1px solid #ffe8e8
}

 
.clients .owl-dots .owl-dot{
    background-color: #005cae !important;
}

.clients .owl-dots .owl-dot.active{
    background-color: #b1b1b1 !important;
}

/**************************************************** Start blog posts* ***********************************************************/
.search button,
.search input {
    height: 40px;
}
.search button{
    border-radius: 0 7px 7px 0;
    border: 0;
}
.vertical-sub {
    vertical-align: sub;
}
.padding-2 {
    padding:0 2px
}
/************************************************************ End blog posts ************************************************************/
/************************************************************ Start ELU ************************************************************/
@media (min-width:1200px) {
    .legal-updates{
        position: absolute;
        top:20px;
        left: 35px;
        background: rgba(0, 0, 0 , .6);
        width: 80%  ;
    }
}

@media (max-width:1200px) {
    .legal-updates{
        background: rgba(0, 0, 0 , .6);
        width: 100%  ;
    }
}

@media (min-width:1200px) {
    .legal-updates-custom{
        top:20px;
        left: 35px;
        background: rgba(0, 0, 0 , .6);
        width: 80%  ;
    }
}

@media (max-width:1200px) {
    .legal-updates-custom{
        background: rgba(0, 0, 0 , .6);
        width: 100%  ;
    }
}


/************************************************************ End ELU ************************************************************/
/************************************************************ Start Pricing ************************************************************/

.height-lg {
    height:60px;
    max-height: 60px;
    margin-bottom: 1em;
    position:relative;
  }
  .height-lg i {
    position: absolute;
    top:40%;
    left:45%
  }

  .bg-pattern-right {
    background-image: url(../images/Home-img04.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    background-attachment: unset;
}
/************************************************************ End Pricing ************************************************************/
  footer .w-90 {
      width: 80%;
  }

.btn-facebook {
    color: #fff !important;
    background-color: #3b5998;
    border-color: rgba(0,0,0,0.2);
}

.btn-google {
    color: #fff !important;
    background-color: #dd4b39;
    border-color: rgba(0,0,0,0.2);
}

.btn-social {
    position: relative;
    border-radius: 22px;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-social:hover {
    color: #eee;
}

.btn-social :first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    padding: 7px;
    font-size: 1.6em;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.2);
}

.content h2 {
    font-size: 1.4em;
}


.popular
{
  height: 800px;
  overflow: auto;
}

.select2-selection.select2-selection--multiple{
    border-radius: 18px !important/*  */;
  }