@charset "utf-8";


/*---///---///---///---///---///---///---///---///---///---
    Imported Fonts
---///---///---///---///---///---///---///---///---///---*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700,700i,800,800i');


/*---///---///---///---///---///---///---///---///---///---
    General CSS 
---///---///---///---///---///---///---///---///---///---*/

body {
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    color: #343434;
    direction: rtl;
}

/* Custom Container */
@media (min-width: 1200px){
    .container {
        max-width: 1200px;
    }
}
/* Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    color: #555555;
    line-height: 1.1;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    text-transform: uppercase;
}
p {
    margin: 0;
    padding: 0;
    direction: rtl;
text-align: right;
font-size: 16px;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color:white!important;
}
a:focus,
a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
/*img {
    width: 100%;
    max-width: 100%;
    height: auto;
}*/


/* Form CSS */
.form-control {
    height: 40px;
    margin-bottom: 30px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}
.form-control:focus {
    border-color: #999999;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
::-webkit-input-placeholder {
    color: #676767 !important;
}
::-moz-placeholder {
    color: #676767 !important;
}
::-o-placeholder {
    color: #676767 !important;
}
:-ms-input-placeholder {
    color: #676767 !important;
}
input:-moz-placeholder {
    color: #676767 !important;
}




/* Background Over Layer CSS */
.over-layer-black {
    position: relative;
}
.over-layer-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.9);
}
.over-layer-white {
    position: relative;
}
.over-layer-white:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.85);
}



/* Scroll To Top CSS Start */
#dyscrollup-btn {
    z-index: 999999;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    color: #ffffff;
    text-align: center;
}
#dyscrollup-btn:before {
    content: "\f0aa";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    bottom: 10px;
    color: #92bf20;
    font-size: 45px;
}


.h3, h3 {

    font-size: 1.75rem;
    text-align: center;
    color: red !important;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px !important;

}
/*---///---///---///---///---///---///---///---///---///---
    Header CSS 
---///---///---///---///---///---///---///---///---///---*/
.header-area {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    direction: ltr;
}

/* Nav CSS Start */
.navbar {
    background: transparent;
    padding: 0;
}
.header-area .navbar-brand {
    padding: 0;
    margin-right: 80px;
}
.navigation {
    display: block;
    text-align: left;
}
.navigation ul li{
    display:inline;
    position:relative;
}
.navigation ul li a {
    font-size: 14px;
    color: #373737;
    text-decoration:none;
    display: inline-block;
    padding: 60px 25px;
    text-transform: uppercase;
}
.navigation ul li a:hover{
    color: #1168A9;
    background: transparent;
    text-decoration:none;
}
.navigation ul li.current_page_item a{
    color: #1965bb;
    font-weight: bold;
}
.navbar-collapse {
    padding: 0;
}


/* Dropdown */
.navigation ul li ul{
    width:180px;
    position:absolute;
    top:30px;
    left:0;
    padding:10px;
    background:#2170B5;
    z-index:99999;
    display:none;
    border:1px solid #eeeeee;
}
.navigation ul li ul li {
    float:none;
    width:100%;
    padding:0;
    text-align: right;
}
.navigation ul li:hover > ul{
    display:block;
}
.navigation ul li ul li {
    display: block;
}
.navigation ul li ul li a {
    color: #ffffff;
    padding: 10px 0;
    margin-right: 0;
}
.navigation ul li ul li a:hover {
    color: #dddddd;
}

/* Header Animation CSS */
.my-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.my-header.my-fixed-header {
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.my-header.my-fixed-header .navigation ul li a {
    padding: 30px 25px;
    color: black !important;
}
.my-header.my-fixed-header .my-search-box {
    top: 24px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Join Btn CSS */
.my-join-btn {
    position: absolute;
    right: 370px;
    top: 45px;
    z-index: 0;
}
.my-join-btn .btn {
    font-size: 20px;
    color: #ffffff;
    background: #000000;
    padding: 18px 28px;
    text-transform: uppercase;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.my-join-btn .btn:hover {
    background: #2676C8;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.my-header.my-fixed-header .my-join-btn {
    top: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#floating-buttons {

    position: fixed;
    left: 0px;
    top: 20%;
    width: 130px;
    z-index:99999;

}
.visible-desktop {

    display: inherit !important;

}
.navbar-toggler:not(:disabled):not(.disabled) {display:none!important;}

#callnowbutton {

    display: block;
    position: fixed;
    text-decoration: none;
    z-index: 2147483647;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border-top: 1px solid #e0ff84;
    bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    right: 20px;
    background: url(https://www.taxi4u.co.il/images/phone.png) center/50px 50px no-repeat #004A7F;

}
#whatsappbutton {

    display: block;
    position: fixed;
    text-decoration: none;
    z-index: 2147483647;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border-top: 1px solid #1BD741;
    bottom: 105px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    right: 20px;
    background: url(https://www.taxi4u.co.il/images/whatsapp.png)
    center/50px 50px no-repeat #1BD741;

}
/*---///---///---///---///---///---///---///---///---///---
    Banner CSS 
---///---///---///---///---///---///---///---///---///---*/
.banner-area {
    padding: 180px 0 100px;
    background: url(../images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.banner-col {
    margin-bottom: 30px;
    position: relative;
}
.banner-col.left-space {
    padding-left: 40px;
}
.banner-col h2 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 150px;
       direction:rtl;
       text-align:center;
}
.banner-col h1 {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 50px;
}
.banner-col h1 img {
    margin-right: 10px;
}
.banner-col p {
    color: #ffffff;
    line-height: 30px;
    font-size: 14px;
    direction:rtl;
      text-align:right;
}
.banner-col .my-plane {
    text-align: right;
    display: block;
    margin-bottom: -15px;
}
.down-arrow {
    text-align: center;
    margin-top: 120px;
}



/*---///---///---///---///---///---///---///---///---///---
    Service CSS 
---///---///---///---///---///---///---///---///---///---*/
.service-area {
    padding: 100px 0 70px;
}
.title-col {
    text-align: center;
    margin-bottom: 80px;
}
.title-col h2 {
    font-size: 30px;
    margin-bottom: 0;
}
.service-col {
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 12px 35px rgb(0,0,0,0.35);
    border: 1px solid transparent;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-col:hover {
    border-color: #2676C8;
    margin-top: -20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-col .service-img {
    min-height: 180px;
}
.service-col .service-img img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.service-img.top-space {
    margin-top: 15px;
}
.service-col h4 {
    font-size: 20px;
    font-weight: normal;
    color: #2676c8;
    text-transform: capitalize;
}
.bdr {
    width: 130px;
    height: 1px;
    background: #dddddd;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 15px;
}
.service-content {
    padding: 0 60px 50px;
}



/*---///---///---///---///---///---///---///---///---///---
    Call CSS 
---///---///---///---///---///---///---///---///---///---*/
.call-area {
    padding: 60px 0;
    background: #2676C8;
}
.call-col {
    text-align: center;
    direction:ltr;
}
.call-col ul {
    margin: 0;
    padding: 0;
}
.call-col ul li {
    color: #ffffff;
    font-size: 28px;
    display: inline-block;
    margin: 0 15px;
}
.call-col ul li img {
    margin-right: 15px;
}



/*---///---///---///---///---///---///---///---///---///---
    Testimonial CSS 
---///---///---///---///---///---///---///---///---///---*/
.testimonial-area {
    padding: 100px 0 50px;
}
.testimonial-box {
    margin-bottom: 50px;
    padding: 40px 35px;
    box-shadow: 0 22px 40px rgb(0,0,0,0.35);
    position: relative;
    border: 1px solid #dddddd;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.testimonial-box:hover {
    margin-top: -20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.testimonial-img {
    position: relative;
    text-align: left;
    padding-left: 100px;
    padding-top: 20px;
    margin-bottom: 30px;
}
.testimonial-img img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     border-radius: 50%; 
}
.testimonial-img h6 {
    font-size: 16px;
    line-height: 16px;
    font-weight: normal;
    text-transform: capitalize;
    margin-bottom: 5px;
    text-align:right!important;
}
.testimonial-img p {
    color: #2676c8;
    text-transform: capitalize;
    font-size:25px!important;
}
.my-date {
    margin-top: 50px;
}
.my-date p {
    color: #b7b7b7;
}
.my-date p span {
    color: #2676c8;
    font-weight: 600;
}
.my-arrow {
    border-left: 50px solid transparent; 
    border-bottom: 30px solid transparent; 
    border-right: 50px solid #ffffff;
    position: absolute;
    right: 50px;
    bottom: -30px;
    z-index: 0;
}



/*---///---///---///---///---///---///---///---///---///---
    Footer CSS 
---///---///---///---///---///---///---///---///---///---*/
.footer-area {
    padding: 100px 0 140px;
    background: #E7E7E7;
}
.footer-col {
    margin-bottom: 30px;
}
.footer-col h5 {
    font-size: 18px;
    font-weight: normal;
    color: #000000;
        text-align: center;

    margin-bottom: 25px;
}
.footer-col ul li {
    margin-bottom: 5px;
    font-size: 16px;
    text-align: center;
    line-height: 22px;}
.footer-col ul li a {
    font-size: 12px;
    color: #000!important;
}