
/**
Create By
Name : Ahmed Elgendy
Phone : 01025105048
Mail : develgendy@gmail.com
--**/




.spinner {
    position: relative;
    border-radius: 50%;

   background:transparent  ;
    animation: spinner .5s linear infinite;
    background: none;
}
@keyframes spinner {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}
.spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: transparent;
    background-size: 100% 80%;



}
.spinner::after .spinner-ball

{
    content: ''
;
    position: absolute
;

    border-radius: 50%
;


}

/* other */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
.spinner-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999;
    background-color: #4b2544;
}

/*****************************************************************/
/**
 * Variables
 */
/**
 * Wrapper
 */
.combo-select {
    position: relative;
    border-bottom: solid 1px #d2d2d2;
    /* max-width: 400px; */
    font: 100% Helvetica, Arial, Sans-serif;
    font-size: 14px;
    /* width: 111%; */
    background: #f0f0f0;
    border-radius: 27px;
    padding-left: 40px;
}
.combo-select .combo-input {
    margin-bottom: 0;
}
/**
 * Input field
 */
.combo-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: none;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    height: 34px;
    line-height: 34px;
    padding-right: 34px;
    border-radius: 0px;
    font-size: 14px;
}
.combo-input:focus {
    outline: none;
}
/**
 * Arrow
 */
.combo-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    width: 40px;
    color: #999999;
}
.combo-arrow:before {
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 22px;
    top: -25px;
    display: block;
    width: 0;
    height: 0;
    right: 25px;
    bottom: 0;
    position: absolute;
    margin: auto 0;
}
/**
 * When opened
 */
.combo-open .combo-arrow {
    border-color: #51A7E8;
}
.combo-open .combo-arrow:before {
    content: "\f106";
}
/**
 * When focused
 */
.combo-focus {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    border-color: #51A7E8;
}
.combo-focus input {
    border-color: #51A7E8;
}

/**
 * Hide native select
 */
.combo-select select {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    opacity: 0;
}

@media only screen and (min-width: 960px) {
    .combo-select select {
        left: -1px;
        top: -1px;
        width: 0;
        height: 0;
        margin: 0;
    }
}
/**
 * Selected option
 */
.option-selected {
    background-color: #eee;
}
/**
 * Hovered option
 */
.option-hover {
    background-color: #dfdfdf;
    color: #454545;
}
/**
 * Option item
 */
.option-item {
    cursor: pointer;
    /*border-bottom: 1px #e3e3e3 solid;*/ }
.option-item:hover {
    background-color: #efefef;
    color: #454545;
}
.option-item:last-child {
    border-bottom: none;
}
/**
 * Disabled and optgroups
 */
/*.option-group {
  cursor: text;
  font-weight: 600;
  background: #e1e1e1;
  border: 1px #ccc solid;
  border-width: 1px 0; }*/

/**
 * Disabled
 */
.option-disabled {
    opacity: 0.5;
}
/**
 * Dropdown
 */
.combo-dropdown {
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    min-width: 100%;
    max-width: 300px;
    max-height: 270px;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    /*display: none;*/
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 6px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 0;
    box-sizing: border-box;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.combo-dropdown li {
    list-style: none;
    padding: 10px 15px;
    margin: 0 !important;
}
/**
 * On Active
 */
.combo-open .combo-dropdown {
    display: grid;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
/**
 * Search marker
 */

/**
Create By
Name : Ahmed Elgendy
Phone : 01025105048
Mail : develgendy@gmail.com
--**/



.combo-marker {
    text-decoration: underline;
}
input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 15px 0;
    padding: 0;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    transition: all .3s;
}
/****************  start Home *******************/
:root {
    --bg1: #4B2544;
    --bg2: #4B2544;
}

/**************** start navgation *******************/
body{
    font-family: 'Roboto', sans-serif;
    background-color: #E4E4E4;
}


nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i{
    height: 64px;
    line-height: 64px;
    margin-left: 0;
}

nav {
    color: #fff;
    background-color: #fff;
    width: 100%;
    height: 56px;
    line-height: 56px;
}
nav .nav-wrapper {
    height: 135%;
    padding: 0;
}
@media (max-width: 490px) {
    nav .nav-wrapper {
        height: 135%;
        width: 100%;
    }
    .dropdown-content{
        background-color: #FFFFFF;
        margin: 0;
       
        display: none;
        min-width: 233px;
        white-space: nowrap;
        z-index: 1;
        will-change: width, height;
        margin-top: -200px;
        height: 396px;
    }
   
}
.dropdown-content {
    background-color: #FFFFFF;
    margin: 0;
    display: none;
    min-width: 250px; /* Changed this to accomodate content width */
    margin-left: -1px; /* Add this to keep dropdown in line with edge of navbar */
    overflow: auto; /* Changed this from overflow-y:auto; to overflow:hidden; */
    opacity: 0;
    position: absolute;
    white-space: nowrap;
    z-index: 99;
    will-change: width, height;
}
.dropdown1-content {
    background-color: #FFFFFF;
    display: none;
    min-width: 300px; /* Changed this to accomodate content width */
    /* Add this to keep dropdown in line with edge of navbar */
    margin: 0 0 0 -1px;
    overflow: hidden; /* Changed this from overflow-y:auto; to overflow:hidden; */
    opacity: 0;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
    will-change: width, height;
}


.dropdown-content li>a, .dropdown-content li>span {
    font-size: 16px;
    color: #710c99;
    display: block;
    line-height: 22px;
    padding: 14px 16px;
}

.alink {
    text-decoration: underline;
    font-weight: bold;
    font-size: 15px;
}

.alink a {
    color: #fff;
}
.home {
    background: var(--bg1);
    height: 130%;
    padding: 8PX;
}
.home img {
    border: 0;
    margin-right: 20px;
    margin-left: 15%;

}
.home .list {
    margin-left: 33%;
}

.hvr-underline-from-center:before {
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background:#E77E23;
    height: 4px;
}
section {
    position: relative;
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    box-sizing: border-box;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    background-blend-mode: screen;
    border-radius: 0 0 97% 0;
    margin-top: -10px;

}
.side-nav a{
    color: #444;
    display: block;
    font-size: 1rem;
    margin-top: -49px;
    /* height: 64px; */
    font-weight: bold;
}

.side-nav li{
    float: none;
    padding: -1px 15px;
}


section .contact {
    max-width: 700px;
}
section .contact h2 {
    font-size: 2em;
    color: #E77E23;
    font-weight: bold;
    margin-left: -47%;
    margin-top: 23%;
}
section .contact p{
    font-size: 1.3em;
    color: #FFF;
    margin-left: -166px;
}
section img{
    position: relative;
    margin-left: -277px;
    width: 620px;
}
section .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 140px;
    text-transform: none;
}
section .waves-effect:hover{ 
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    text-transform: none;

}



/*****************************************************/
select {
    background-color: rgba(255,255,255,0.9);
    width: 35%;
    padding: 5px;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    height: 3rem;
    display: inline;
    margin: 7px;
    border-radius: 20px;
    outline: none;
    color: #e77e23;
}


/********* start service**************/
.homes {
    color: var(--bg2);
    font-weight: bold;
    margin-bottom: 50px;
    font-family: 'Oswald', sans-serif;
}
.card {
    transition: 0.5s;
    background: var(--bg2);
    border-radius: 30px;
    height: 400px;
}

.card h5 {
    padding: 10px 0px;
    color: #fff;
    font-weight: bold;
}
.card:hover h5{
    padding: 10px 0px;
    color: var(--bg2);
    font-weight: bold;
}
.card i,
h5 {
    color: #fff;
}
.card .card-content p {
    color: #fff;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
}
.card .card-content{
    padding: 20px;
}
/********* start serves***************/
.card:hover {
    color: var(--bg2);
}
.card:hover i,
h5 {
    color: var(--bg2);
}
.card:hover
p {
    color: var(--bg2);
}

.service .card:hover {
    transform: scale(1.03);
    background: #fff;
}

.Home.card:hover a {
    color: #fff;
}



.service .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 169px;
    /* margin-bottom: 14px; */
    margin-top: 69px;
    text-transform: none;

}
.service .waves-effect:hover{ 
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
}
/*********end service*******************/
/********* start Vendors***************/
.Vendors {
    background-color:var(--bg1);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    height: 700px;
}
.Vendors .card{
    transition: 0.5s;
    background: #fff;
    border-radius: 30px;
    height: 400px;
}
.Vendors .card h5{
    padding: 10px 0px;
    color: var(--bg2);
    font-weight: bold;
}
.Vendors .card:hover h5{
    padding: 10px 0px;
    color:var(--bg1);
    font-weight: bold;
}

.Vendors .card i,
h5 {
    color:var(--bg1);
}
.Vendors .card img {
    margin-top: 10px;
}
.Vendors .card-content p {
    color:var(--bg1);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
}

.Vendors .card:hover p{
    padding: 10px 0px;
    color: var(--bg1);
    font-weight: bold;
}



.Vendors .card:hover {
    transform: scale(1.03);
    background:var(--bg1);
}


.Vendors .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 169px;
    /* margin-bottom: 14px; */
    margin-top: 69px;
    text-transform: none;

}

/**
Create By
Name : Ahmed Elgendy
Phone : 01025105048
Mail : develgendy@gmail.com
--**/



.Vendors .waves-effect:hover{ 
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
}

.Vendors .card-content img{
    
    margin-top: 10px;

}
.Vendors .card:hover{
    background: #fff;
}

/*********end Vendors*******************/

/***************start section job***********************/
.job h2{

    font-size:40px;
    color:var(--bg1);
    margin-left: 100px;
}
.job p{

    font-size: 18px;
    /* font-weight: bold; */
    margin-left: 99px;
    color: #4b2544;
}

.job img{
  margin-bottom: 89px;
}
.job .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 185px;
    /* margin-bottom: 14px; */
    margin-top: 69px;
    left: 100px;
    text-transform: none;
    top: -45px;

}
/*************** end  section job***********************/
/***************  strat interesting  you *******************************************/
.mash h2{
    color: #fff;
    font-size: 3.56rem;
    line-height: 110%;
    margin: 0.78rem 0 1.424rem 0;
    /* font-weight: bold; */
    text-align: center;
    padding-bottom: 30px;
}
.mash h5{
    text-align: center;
    font-weight: bold;
    color: #fff;
}
.mash p{

    color:#fff;
    padding: 10px 105px;
}

.mash .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 169px;
    /* margin-bottom: 14px; */
    /* margin-top: 69px; */
    left: 130px;
    text-transform: none;
}
.mash .waves-effect:hover{
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
}

/************ start  news ***************/
.news{

    margin-bottom: 0px;
}
.news .card{
    transition: 0.5s;
    background: var(--bg2);
    border-radius: 30px;
    height: 530px;
}
.news .card p {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 14px;
}
.news .card h6 {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 17px;
}

.news .card:hover p{
    color: #FFFFFF;
    font-weight: normal;
    font-size: 14px;
}
.news .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    height: 56px;
    text-transform: none;
    text-align: center;
    top: 25px;
    left: 99px;
    width: 40%;
}
.news .waves-effect:hover{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 40%;
    height: 56px;
    text-transform: none;
}


.news .card .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    border-radius: 25px 25px 0 0;
}

.pagination li.active {
    background-color: #e77e23;
}
/*************end news ******************/
/************* start footer*********************/
footer.page-footer {
    margin-top: 20px;
    padding-top: 20px;
    background-color: var(--bg2);
}
footer.page-footer h5 {
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
}
.footer1 {
    font-weight: bold;
}
.footer1 img{
    padding: 19px;
    width: 260px;
}
.homei {
    margin: 10px;
    background: #fff;
    width: 25px;
    height: 25px;
    padding: 7px;
    border-radius: 0 9px 12px 9px;
    color: #710c99;
}
.ico {
    margin: 10px;
    /* background: #fff; */
    width: 50px;
    height: 48px;
    padding: 10px;
}
/******* start contact us *******/
.ico1 {
    margin: 10px;
    background: #4b2544;
    width: 50px;
    height: 48px;
    padding: 10px;
    border-radius: 50%;
    padding: 16px;
    color: #fff;
    /* margin-top: 1%; */
    margin-left: 20%;
}
footer.page-footer .footer-copyright{
        overflow: hidden;
    height: 50px;
    line-height: 50px;
    color: rgba(255,255,255,0.8);
    background-color: rgb(0 0 0 /29%);
}

.footer-copyright {

    background: var(--bg1);
}

/************* start footer*********************/
.fixed-action-btn > .btn-floating > .material-icons {
    transition: transform 0.3s;
}

.fixed-action-btn.active > .btn-floating > .material-icons {
    transform: rotate(135deg);
}

/****************end float *********************/


ul li {
    list-style-type: none;
    display: inline
}



.Bg-color{
    background: #00aaa9;
    width: 100%;
    color: #ffffff;
    border-radius: 0px 5px 5px 0px;
    height: 650px;
}

.Bg-color input{
    border-bottom:1px solid #ffffff!important;
}
.Bg-color .input-field{
    width: 90%;
    margin-right: 5%;
}
.Bg-color label{
    color: #ffffff;
    font-size: 15px;

}
.Bg-color .check{
    border: #ffffff!important;
}


.h1-input{
    text-align: center;
    font-size: 25px;

}
.btnRegister{
    width: 90%;
    height: 60px;
    text-align: center;
    margin-left: 5%;
    background: #ffffff!important;
    color: #000000;
    font-size: 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;

}
.btnRegister:hover{
    transition: .5s;
    width: 90%;
    height: 60px;
    text-align: center;
    margin-right: 5%;
    background: #000000!important;
    color: #ffffff;
    font-size: 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;

}
/* End  backgroundBody register style*/
/* start  backgroundBody login style*/
.Login{
    color: #ffffff!important;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;

}
.accepted{
    margin-left: 5%;
}
.Bg-color input{
    border-bottom:1px solid #ffffff!important;
}
.Bg-color .input-field{
    width: 90%;
    margin-left: 5%;
}

/************ start sign in & sign up  ***********/
.formm {
    position: relative;
    width: 100%;
    background-color: #fff;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 35px;
    height: 850px;
}
.forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.signin-signup {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 75%;
    width: 50%;
    transition: 1s 0.7s ease-in-out;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0rem 5rem;
    transition: all 0.2s 0.7s;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

form.sign-up-form {
    opacity: 0;
    z-index: 1;
}

form.sign-in-form {
    z-index: 2;
}
/**
Create By
Name : Ahmed Elgendy
Phone : 01025105048
Mail : develgendy@gmail.com
--**/

.title {
    font-size: 2.2rem;
    color: #b45e14;
    margin-bottom: 10px;
    font-weight: bold;
}

.input-field {
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    height: 55px;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    position: relative;
}

.input-field i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
}

.input-field input {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;

}

.input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.social-text {
    padding: 0.7rem 0;
    font-size: 1rem;
}

.social-media {
    display: flex;
    justify-content: center;
}

.social-icon {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.45rem;
    color: #333;
    border-radius: 50%;
    border: 1px solid #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-icon:hover {
    color: var(--bg1);
    border-color: var(--bg1);
}
.btn {
    width: 150px;
    background-color: var(--bg1);
    border: none;
    outline: none;
    height: 49px;
    border-radius: 49px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
    text-transform: none;
}

.btn:hover {
    background-color: var(--bg1);
}
.panels-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.formm:before {
    content: "";
    position: absolute;
    height: 2000px;
    width: 2000px;
    top: -10%;
    right: 48%;
    transform: translateY(-50%);
    background-image: linear-gradient(-45deg, #4b2544 0%, #4b2544 100%);
    transition: 1.8s ease-in-out;
    border-radius: 50%;
    z-index: 6;
}

.image {
    width: 100%;
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
}
.panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    text-align: center;
    z-index: 6;
}

.left-panel {
    pointer-events: all;
    padding: 4rem 42% 2rem 12%;
}

.right-panel {
    pointer-events: none;
    padding: 3rem 12% 2rem 17%;
}

.panel .content {
    color: #fff;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
}

.panel h3 {
    font-weight: 600;
    line-height: 1;
    font-size: 1.5rem;
}

.panel p {
    font-size: 0.95rem;
    padding: 0.7rem 0;
}

.btn.transparent {
    margin: 0;
    background: none;
    border: 2px solid #fff;
    width: 130px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

.right-panel .image,
.right-panel .content {
    transform: translateX(800px);
}

/* ANIMATION */

.formm.sign-up-mode:before {
    transform: translate(100%, -50%);
    right: 52%;
}

.formm.sign-up-mode .left-panel .image,
.formm.sign-up-mode .left-panel .content {
    transform: translateX(-800px);
}

.formm.sign-up-mode .signin-signup {
    left: 25%;
}

.formm.sign-up-mode form.sign-up-form {
    opacity: 1;
    z-index: 2;
}

.formm.sign-up-mode form.sign-in-form {
    opacity: 0;
    z-index: 1;
}

.formm.sign-up-mode .right-panel .image,
.formm.sign-up-mode .right-panel .content {transform: translateX(0%);
}
.formm.sign-up-mode .left-panel {
    pointer-events: none;
}

.formm.sign-up-mode .right-panel {
    pointer-events: all;
}

@media (max-width: 870px) {
    .formm {
        min-height: 800px;
        height: 100vh;
    }
    .signin-signup {
        width: 100%;
        top: 95%;
        transform: translate(-50%, -100%);
        transition: 1s 0.8s ease-in-out;
    }

    .signin-signup,
    .container.sign-up-mode .signin-signup {
        left: 50%;
    }

    .panels-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
    }

    .panel {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 2.5rem 8%;
        grid-column: 1 / 2;
    }

    .right-panel {
        grid-row: 3 / 4;
    }

    .left-panel {
        grid-row: 1 / 2;
    }

    .image {
        width: 200px;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.6s;
    }

    .panel .content {
        padding-right: 15%;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.8s;
    }

    .panel h3 {
        font-size: 1.2rem;
    }

    .panel p {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }

    .btn.transparent {
        width: 110px;
        height: 35px;
        font-size: 0.7rem;
    }

    .formm:before {
        width: 1500px;
        height: 1500px;
        transform: translateX(-50%);
        left: 30%;
        bottom: 68%;
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }

    .formm.sign-up-mode:before {
        transform: translate(-50%, 100%);
        bottom: 32%;
        right: initial;
    }

    .formm.sign-up-mode .left-panel .image,
    .formm.sign-up-mode .left-panel .content {
        transform: translateY(-300px);
    }

    .formm.sign-up-mode .right-panel .image,
    .formm.sign-up-mode .right-panel .content {
        transform: translateY(0px);
    }

    .right-panel .image,
    .right-panel .content {
        transform: translateY(300px);
    }

    .formm.sign-up-mode .signin-signup {
        top: 5%;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 570px) {
    form {
        padding: 0 1.5rem;
    }

    .image {
        display: none;
    }
    .panel .content {
        padding: 0.5rem 1rem;
    }
    .container {
        padding: 1.5rem;
    }

    .formm:before {
        bottom: 72%;
        left: 50%;
    }

    .formm.sign-up-mode:before {
        bottom: 28%;
        left: 50%;
    }
}


/*   start   check input  ***********/
[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    left:0;
    visibility: visible;.
     margin-top: 2px;
    position: relative;
}


[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
}


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



.stepwizard-step p {
    margin-top: 10px;
text-align: center;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;

}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle{
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    margin-top: 0;
    background-color: #b45e14;
}


.btn-circle a:focus {
    outline: 0;
    background: #4b2544;
}
.btn-circle:active {
    outline: none;
    background-color: #4b2544;
}

button:focus {
    outline: none;
    background-color: #d67425;
}

/****** this is the delet    < >   in ******/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-wrapper #submit::-moz-focus-inner {
    border: 0;
}

/********************** start news  *****************************************/
.newspage {
    background: #E4E4E4;
    height: 600px;
}
.newspage img{

    width: 90%;
    margin-left: -100px;
    margin-top: 75px;
}
.newspage h3{
    text-align: center;
}
/** searsh **/
/*Clearing Floats*/
.cf:before, .cf:after{
    content:"";
    display:table;
}

.cf:after{
    clear:both;
}

.cf{
    zoom:1;
}
/* Form wrapper styling */

.search-wrapper {
    width: 450px;
    margin: 150px auto 50px auto;
    border-radius: 40px;
    background: transparent;
    box-shadow: 0 4px 20px -2px #e9e9e9;
    display:initial;
}
/* Form text input */

.search-wrapper input {

    padding-left: 40px;
    /* width: 330px; */
    /* height: 20px; */
    padding: 10px 5px;
    float: right;
    font: bold 13px 'lucida sans', 'trebuchet MS', 'Tahoma';
    border: 0;
    background: #fff;
    border-radius: 40px;
    border-top-style: none;
    padding-left: 13px;
    margin-right: -66px;
}
.search-wrapper input:focus {
    outline: 0;
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,0.8) inset;
}

.search-wrapper input::-webkit-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
    padding-left: 20px;
}

.search-wrapper input:-moz-placeholder {

    color: #999;
    font-weight: normal;
    font-style: italic;
}

.search-wrapper input:-ms-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
    border-style: none;
}
/* Form submit button */
.search-wrapper button {
    overflow: visible;
    position: relative;
    float: right;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 65px;
    width: 119px;
    font: 13px/40px 'lucida sans', 'trebuchet MS', 'Tahoma';
    color: #fff;
    text-transform: uppercase;
    background: #e77e23;
    border-radius: 40px;
    text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
    /* left: -120px; */
    top: -80px;
    font-size: 17px;
    font-weight: bold;
    text-transform: capitalize;
    right: -132px;
}

.search-wrapper button:hover{
    /*     background: #e54040; */
}

.search-wrapper button:active,
.search-wrapper button:focus{
    background: #b45e14;
    outline: 0;
}

.search-wrapper button:focus:before,
.search-wrapper button:active:before{
    border-right-color: #c42f2f;
}

.search-wrapper button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */
    border: 0;
    padding: 0;
}






.search-wrapper button:active, .search-wrapper button:focus {
    background: #e77e23;
    outline: 0;
}

input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 0 0 #fff;
}


/*********  pagenat ************************/
#flip-container{

    /* perspective: 999px; */
    padding: 0;
    position: relative;
    margin: 0px auto;
    /* width: 500px; */
    display: inline-block;
    width: 377px;
    margin-left: 35px;

}
.new {
    position: relative;
    /* width: 500px; */
    transition: 0.6s;
    transform-style: preserve-3d;
    transform-origin: 100% 25px;
    /* width: 458px; */
    height: 550px;
    margin-bottom: 28px;
    border-radius: 50px;
}
.neww{
    text-align: center;
}
.new img{
    width: 100%;
    border-radius: 50px 50px 0 0;
}
.new h5{
     color: #FFF;
    padding: 17px;
    font-size: 22px;

}
.new p{
    color: #FFF;
    padding: 17px;
}

/**
Create By
Name : Ahmed Elgendy
Phone : 01025105048
Mail : develgendy@gmail.com
--**/

.new:hover h5{
    color: #FFF;
    padding: 17px;
}
.new:hover p{

    color: #FFFFFF;

}



.new a{
    color: #e77e23;
    padding-left: 20px;
}
.new.flip{
    transform: rotateX(180deg);
}
.front, .back{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
}
.front{
    transform: rotateX(0deg);
    z-index: 2;
    background-color: #e93e29;
    color: #FFF;
    font: 1em/1.8em Arial;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back{
    transform: rotateX(180deg);
    background: repeating-linear-gradient(
            -45deg,
            #ececec,
            #ececec 10px,
            #dedede 10px,
            #dedede 20px
    );
}
#controls{
    position: relative;
    margin: 10px auto;
    text-align: center;
}
.disabled {
    color: #ccc;
}
button{
    width: 25px;
    height: 25px;
}
.pag{
    font: 0.8em/1.2em Arial;
    padding-top: 10px;
}



.neww .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 139px;
    height: 56px;
    text-transform: none;
}
.neww .waves-effect:hover{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 139px;
    height: 56px;
    text-transform: none;
}








/******************  start vendorpage *****************************/

.vendorpage {
    background: #E4E4E4;
    height: 280px;
}
.vendorpage img{

    width: 100%;
    margin-left: -150px;
    margin-top: 56px;
}

.vendorpage h3{
    text-align: center;

}
/** searsh **/
/*Clearing Floats*/
.cf:before, .cf:after{
    content:"";
    display:table;
}

.cf:after{
    clear:both;
}

.cf{
    zoom:1;
}
/* Form wrapper styling */

.search-wrapper {
    width: 450px;
    margin: 150px auto 50px auto;
    border-radius: 40px;
    background: transparent;
    box-shadow: 0 4px 20px -2px #e9e9e9;
    display:initial;
}
/* Form text input */

.vendorpage  .search-wrapper input {
    padding-left: 20px;
    width: 500px;
    height: 47px;
    padding: 10px 5px;
    float: left;
    font: bold 13px 'lucida sans', 'trebuchet MS', 'Tahoma';
    border: 0;
    background: #fff;
    border-radius: 40px;
    border-top-style: none;
    padding-left: 15px;
    margin-left: 130px;
}

.search-wrapper input:focus {
    outline: 0;
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,0.8) inset;
}

.search-wrapper input::-webkit-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
    padding-left: 20px;
}

.search-wrapper input:-moz-placeholder {

    color: #999;
    font-weight: normal;
    font-style: italic;
}

.search-wrapper input:-ms-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
    border-style: none;
}
/* Form submit button */
.vendorpage .search-wrapper button {
    overflow: visible;
    position: relative;
    float: right;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 68px;
    /* width: 110px; */
    font: 13px/40px 'lucida sans', 'trebuchet MS', 'Tahoma';
    color: #fff;
    text-transform: uppercase;
    background: #e77e23;
    border-radius: 40px;
    text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
    left: -50px;
    top:0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: bold;


}


.search-wrapper button:hover{
    /*     background: #e54040; */
}
.search-wrapper button:active,
.search-wrapper button:focus{
    background: #b45e14;
    outline: 0;
}
.search-wrapper button:focus:before,
.search-wrapper button:active:before{
    border-right-color: #b45e14;
}
.search-wrapper button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */
    border: 0;
    padding: 0;
}
.search-wrapper button:active, .search-wrapper button:focus {
    background: #e77e23;
    outline: 0;
}

input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
}

/********* start Vendorpage***************/
.Vendorpage {
    background-color: #FFFFFF;
    font-weight: bold;
    margin-bottom: -20px;
    font-family: 'Oswald', sans-serif;
    margin-top: 180px;
}
.Vendorpage .card{
    transition: 0.5s;
    background: #fff;
    border-radius: 30px;
    height: 300px;
    margin-bottom: 45px;
}
.Vendorpage .card h5{
    padding: 10px 0px;
    color: var(--bg2);
    font-weight: bold;
}
.Vendorpage .card:hover h5{
    padding: 10px 0px;
    color:var(--bg1);
    font-weight: bold;
}

.Vendorpage .card i,
h5 {
    color:var(--bg1);
}
.Vendorpage .card img {
    margin-top: 10px;
}
.Vendorpage .card-content p {
    color:var(--bg1);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
}
.Vendorpage .card:hover p{
    padding: 10px 0px;
    color: var(--bg1);
    font-weight: bold;
}
.Vendorpage .card:hover {
    transform: scale(1.03);
    background:var(--bg1);
}

.Vendorpage .waves-effect{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 169px;
    /* margin-bottom: 14px; */
    text-transform: none;

}
.Vendorpage .waves-effect:hover{
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
}

.Vendorpage .card-content img{

    margin-top: 10px;
    margin-left: -17px;

}
.Vendorpage .card:hover{
    background: #fff;
}


.test {
    display: inline-block;
}

.Rating{
    margin: 20px;
}

.Rating .checked{
    color:#d67425;
}

/*********end Vendors*******************/
.red:checked + label:before {
    top: -4px;
    left: -3px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #b45e14; /* You need to change the colour here */
    border-bottom: 2px solid #b45e14; /* And here */
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%; }

/******************  end vendorpage *****************************/

/******************** chekbox *****************************************/
[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    display: none;
}

/**********************************************************/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


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

input[type="text"]:focus:not([readonly]), input[type="password"]:focus:not([readonly]), input[type="email"]:focus:not([readonly]), input[type="url"]:focus:not([readonly]), input[type="time"]:focus:not([readonly]), input[type="date"]:focus:not([readonly]), input[type="datetime-local"]:focus:not([readonly]), input[type="tel"]:focus:not([readonly]), input[type="number"]:focus:not([readonly]), input[type="search"]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly])
{
    border-bottom:none;
    box-shadow: none;
}
/***************** ***********************/
.carleft h2{
    color: #b45e14;
                                          }
.icon{
    padding-left: 10px;
    font-weight: bold;
    color: #4b2544;
}

/******************start import places*******************************/
/*********************** Demo - 16 *******************/
.box16 {
    text-align: center;
    color: #fff;
    position: relative;
}
.box16 .box-content,
.box16:after {
    width: 100%;
    position: absolute;
    left: 0;
}
.box16:after {
    content: "";
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0.08) 69%,
            rgba(0, 0, 0, 0.76) 100%
    );
    top: 0;
    transition: all 0.5s ease 0s;
}
.box16 .post,
.box16 .title {
    transform: translateY(145px);
    transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}
.box16:hover:after {
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.01) 0,
            rgba(0, 0, 0, 0.09) 11%,
            rgba(0, 0, 0, 0.12) 13%,
            rgba(0, 0, 0, 0.19) 20%,
            rgba(0, 0, 0, 0.29) 28%,
            rgba(0, 0, 0, 0.29) 29%,
            rgba(0, 0, 0, 0.42) 38%,
            rgba(0, 0, 0, 0.46) 43%,
            rgba(0, 0, 0, 0.53) 47%,
            rgba(0, 0, 0, 0.75) 69%,
            rgba(0, 0, 0, 0.87) 84%,
            rgba(0, 0, 0, 0.98) 99%,
            rgba(0, 0, 0, 0.94) 100%
    );
}
.box16 img {
    width: 100%;
    height: 350px;
}
.box16 .box-content {
    padding: 20px;
    margin-bottom: 20px;
    bottom: 0;
    z-index: 1;
}
.box16 .title {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.box16 .post {
    display: block;
    padding: 8px 0;
    font-size: 15px;
}
.box16 .social li a,
.box17 .icon li a {
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
}
.box16:hover .post,
.box16:hover .title {
    transform: translateY(0);
}
.box16 .social {
    list-style: none;
    padding: 0 0 5px;
    margin: 40px 0 25px;
    opacity: 0;
    position: relative;
    transform: perspective(500px) rotateX(-90deg) rotateY(0) rotateZ(0);
    transition: all 0.6s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.box16:hover .social {
    opacity: 1;
    transform: perspective(500px) rotateX(0) rotateY(0) rotateZ(0);
}
.box16 .social:before {
    content: "";
    width: 50px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
}
.box16 .social li {
    display: inline-block;
}
.box16 .social li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #6d3795;
    margin-right: 10px;
    transition: all 0.3s ease 0s;
}
.box17 .icon li,
.box17 .icon li a {
    display: inline-block;
}
.box16 .social li a:hover {
    background: #d67425;
}
.box16 .social li:last-child a {
    margin-right: 0;
}
@media only screen and (max-width: 990px) {
    .box16 {
        margin-bottom: 30px;
    }
}


/**********end import places**************/
/***********question page *********************/
.par {
    list-style: none;
    font-size: 18px;

}
.par li {
    display: inline-block;
    margin: 0 10px;
}
/************** start taps*******************/
.righttab{
    padding:20px;
}
/*slanted tabs code*/
.nav-tabs > ul {
    list-style: none;
    margin: 3em 0 0;
    padding: 0;
    text-align: center;
}

.nav-tabs > li {
    display: inline-block;
    margin: 0 0.1em;
}
.nav-tabs .nav-link{
    border:0.5px solid #03a0ed !important;
    border-radius: 0px !important;
}
.nav-tabs > li a {
    background: #fff;
    color: #03a0ed;
    display: block;
    line-height: 1;
    padding: .5em 1.5em;
    position: relative;
    text-decoration: none;
}
.nav-tabs > li a:before, li a:after {
    /*border-width: 1em;
    border-style: solid;
    border-color: #fff;*/
    content: '';
    height: 0;
    position: absolute;
    right: 100%;
    top: 0;
    width: 0;
}
.nav-tabs > li a:before {
    border-top-color: transparent ;
    border-left-color: transparent ;
}
.nav-tabs > li a:after {
    border-right-color: transparent ;
    border-bottom-color: transparent ;
    left: 100%;
    right: auto;
}

/**
Create By
Name : Ahmed Elgendy
Phone : 01025105048
Mail : develgendy@gmail.com
--**/


.
.nav-tabs > li a{
    transform: skewX(-25deg);
    display: inline-block;
}
.slanted-text{
    transform: skewX(27deg);
    display: inline-block;
}
/*end slanted tab code*/

.user-profile{
    text-align: center;
}
.avatar-img{
    height:75px;
}

/* pricing planing */
.pricingp{
    background: #e4e4e4;
}
.pricing{
    color: #4B2544;
    margin-top: -20px;
}
.pricing img{
    width: 108% ;
    margin-left: -10px
}
.primg{
    background-image: url(../img/pr1.png);
    background-repeat: no-repeat;
    /* background-position: center; */
    width: 100%;
    height: 300px;
    /* margin-left: -5px; */
    margin-bottom: 20px;
    margin-top: 0px;
    background-size: contain;
}
.primg0{
    background-image: url(../img/pr.png);
    background-repeat: no-repeat;
    /* background-position: center; */
    width: 100%;
    height: 300px;
    /* margin-left: -5px; */
    margin-bottom: 20px;
    margin-top: 0px;
    background-size: contain;
}
.pricinb{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 180px;
    text-transform: none;
    margin-top: 45px;
    margin-left: 66px;
}


.pricinb:hover{
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    text-transform: none;
    margin-top: 45px;
    margin-left: 66px;
}
/* order details*/

.order{
    color: #4B2544;
}
.pricingo {
    background: #e4e4e4;
    border-radius: 25px;
    margin-top: 10px;
    height: 59px;
    text-align: left;
    padding: 20px;
    color: #4B2544;
}
.pricing2{
    color: #4B2544;
    margin-top: 30px;
}
.pricingo .s{
    float: right;
    color: #b45e14;
    font-weight: bold;
}
.pricinor{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 180px;
    text-transform: none;
    margin-left: 66px;
}


.pricinor:hover{
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    text-transform: none;
    margin-left: 66px;
}



/*********/



.profile-pic {
    display: block;
    margin-left: 26%;
    margin-top: 11px;
}

.file-upload {
    display: none;
}
.cir {
    border-radius: 50%;
    overflow: hidden;
    width: 157px;
    height: 142px;
    border: 8px solid rgba(255, 255, 255, 0.7);
    position: absolute;
    top: -85px;
    padding: 35px;
    right: 90px;
}
.circle img {
    max-width: 100%;
    height: auto;
}
.p-image {
    position: absolute;
    top: 15px;
    right: 146px;
    color: #666666;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.p-image:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
    font-size: 1.2em;
}

.upload-button:hover {
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    color: #999;
}


.fafor{
    text-decoration: none;
    color: #fff;
    background-color: #e77e23;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
    width: 140px;
    left: -30px;
    /* margin-bottom: 14px; */
    /* margin: 27px; */
    text-transform: none;
}

.fafor.btn-large:hover {
    background-color: #b45e14;
}

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






#popup {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(50, 50, 50, 0.9);
    z-index: 9999;
}
#form2 {
    position: absolute;
    background-color: #f5f5f5;
    border: 1px solid #212121;
    border-radius: 20px;
    padding: 20px;
    width: 500px;
    left: 50%;
    top: 10%;
    height: 500px;
    margin-left: -150px;
}
#form2 input {
    width: 402px;


    /* margin-bottom: 20px; */
    border-radius: 24px;
    background: #ddd;
    /* padding: 2px; */
    padding-left: 10px;

}
#close{
    ont-weight: bold;
    margin-left: 139px;
    margin-top: -55px;
    width: 130px;
    height: 51px;
    border-radius: 37px;
    padding: -10px;
    background: #4B2544;
}
p1 {
    float: left;
    font-weight: bold;
    color: #4b2544;
    margin-left: -269px;
}

.cont {
    background-color: #e3f2fd;
    border-radius: 2px;
    padding: 20px 50px;
    width: 350px;
    margin: 10px auto 10px auto;
    text-align: left;
    overflow: auto;
}
#add {
    margin: 10px;
}







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

#popupp {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(50, 50, 50, 0.9);
    z-index: 9999;
}
#form22 {
    position: absolute;
    background-color: #f5f5f5;
    border: 1px solid #212121;
    border-radius: 20px;
    padding: 20px;
    width: 500px;
    left: 50%;
    top: 10%;
    height: 500px;
    margin-left: -150px;
}
#form22 input {
    width: 402px;


    /* margin-bottom: 20px; */
    border-radius: 24px;
    background: #ddd;
    /* padding: 2px; */
    padding-left: 10px;

}
#closee{
    ont-weight: bold;
    margin-left: 139px;
    margin-top: -55px;
    width: 130px;
    height: 51px;
    border-radius: 37px;
    padding: -10px;
    background: #4B2544;
}
p1 {
    float: left;
    font-weight: bold;
    color: #4b2544;
    margin-left: -269px;
}

.cont {
    background-color: #e3f2fd;
    border-radius: 2px;
    padding: 20px 50px;
    width: 350px;
    margin: 10px auto 10px auto;
    text-align: left;
    overflow: auto;
}
#add {
    margin: 10px;
}





/************************************************/
.newspage1{
    margin-bottom: 5%;
    height: 600px;
    width: 100%;
    background-size: cover;
    background-image: url("../img/show.jpg");
}
.show{
    text-align: center;
}
 .waves-effectsh{

     text-decoration: none;
     color: #fff;
     background-color: #e77e23;
     text-align: center;
     letter-spacing: .5px;
     border-radius: 47px;
     width: 140px;
     text-transform: none;
 }
.waves-effectsh:hover{
    text-decoration: none;
    color: #fff;
    background-color: #b45e14;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 47px;
}


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

/* Style the tab */
.tabb {
    float: left;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 20%;
    height: 300px;
    background: #ddd;
    margin-left: 57px;
    border-radius: 20px;
}

/* Style the buttons inside the tab */
.tabb button {
    /* display: block; */
    background-color: inherit;
    color: #4b2544;
    padding: 22px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: center;
    cursor: alias;
    transition: 0.3s;
    cursor: pointer;
    /* font-size: 21px; */
    /* font-weight: bold; */
    /* height: 27px; */
    font-weight: bold;
    padding: 47px;
    padding-top: 24px;
}

/* Change background color of buttons on hover */
.tabb button:hover {
    background-color: #4b2544;
    border-radius: 20px;
    margin: 0;
    padding-top: 24px;
    color: #fff;
}

/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #4b2544;
    border-radius: 20px;
    margin: 0;
    padding-top: 24px;
    color: #fff;
}
/* Style the tab content */
.tabcontent {
    float: left;
    padding: 0px 12px;
    width: 66%;
    border-left: none;
    height: 570px;
    background: #ddd;
    margin-left: 21px;
    border-radius: 20px;
}






/*************** start my-office ***************************/

/* Style the tab */
.tabbb {
    float: left;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 20%;
    height: 550px;
    background: #ddd;
    margin-left: 57px;
    border-radius: 20px;
}

/* Style the buttons inside the tab */
.tabbb button {
    /* display: block; */
    background-color: inherit;
    color: #4b2544;
    padding: 22px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: center;
    cursor: alias;
    transition: 0.3s;
    cursor: pointer;
    /* font-size: 21px; */
    /* font-weight: bold; */
    /* height: 27px; */
    font-weight: bold;
    padding: 47px;
    padding-top: 24px;
}

/* Change background color of buttons on hover */
.tabbb button:hover {
    background-color: #4b2544;
    border-radius: 20px;
    margin: 0;
    padding-top: 24px;
    color: #fff;
}

/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #4b2544;
    border-radius: 20px;
    margin: 0;
    padding-top: 24px;
    color: #fff;
}

/* Style the tab content */


.tabcontent {
    float: left;
    padding: 0px 12px;
    width: 66%;
    border-left: none;
    height: 560px;
    background: #ddd;
    margin-left: 21px;
    border-radius: 20px;
}
.ttabbb{

    height: 48px;
    background-color: #fff;
    margin: 0 auto;
    width: 30%;
    white-space: nowrap;


}

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





.box{
    padding: 20px 10px;
    max-width: 1000px;
    margin: 0 auto;
}


/*****************/
.carousel .carousel-item{
    width: 70%;
    left: -106px;
    top: -28px;
    background: #ddd;
    font-weight: bold;
    color: #e77e23;
}
.offic{
    width: 70%;
    left:0px;
    top: -28px;
    background: #ddd;
    font-weight: bold;
    color: #e77e23;

}

/************* data tabal****************/

/*

input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea {
    background-color: #f5f5f5;
    border: none;
    !* border-bottom: 1px solid #ffffff; *!
    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 35%;
    font-size: 1rem;
    margin: 0 0 15px 0;
    padding: 0;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding-left: 20px;
    transition: all .3s;
    margin-left: 0;
    border-radius: 15px;
    display: inline-flex;
}
*/






div.material-table {
    padding: 0;
}

div.material-table .hiddensearch {
    padding: 0 14px 0 24px;
    border-bottom: solid 1px #DDDDDD;
    display: none;
}

div.material-table .hiddensearch input {
    margin: 0;
    border: transparent 0 !important;
    height: 48px;
    color: rgba(0, 0, 0, .84);
}

div.material-table .hiddensearch input:active {
    border: transparent 0 !important;
}

div.material-table table {
    table-layout: fixed;
}

div.material-table .table-header {
    height: 64px;
    padding-left: 24px;
    padding-right: 14px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    -webkit-display: flex;
    border-bottom: solid 1px #DDDDDD;
}

div.material-table .table-header .actions {
    display: -webkit-flex;
    margin-left: auto;
}

div.material-table .table-header .btn-flat {
    min-width: 36px;
    padding: 0 8px;
}

div.material-table .table-header input {
    margin: 0;
    height: auto;
}

div.material-table .table-header i {
    color: rgba(0, 0, 0, 0.54);
    font-size: 24px;
}

div.material-table .table-footer {
    height: 56px;
    padding-left: 24px;
    padding-right: 14px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    font-size: 12px !important;
    color: rgba(0, 0, 0, 0.54);
}

div.material-table .table-footer .dataTables_length {
    display: -webkit-flex;
    display: flex;
}

div.material-table .table-footer label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.54);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    /* works with row or column */

    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

div.material-table .table-footer .select-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    /* works with row or column */

    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

div.material-table .table-footer .dataTables_info,
div.material-table .table-footer .dataTables_length {
    margin-right: 32px;
}

div.material-table .table-footer .material-pagination {
    display: flex;
    -webkit-display: flex;
    margin: 0;
}

div.material-table .table-footer .material-pagination li:first-child {
    margin-right: 24px;
}

div.material-table .table-footer .material-pagination li a {
    color: rgba(0, 0, 0, 0.54);
}

div.material-table .table-footer .select-wrapper input.select-dropdown {
    margin: 0;
    border-bottom: none;
    height: auto;
    line-height: normal;
    font-size: 12px;
    width: 40px;
    text-align: right;
}

div.material-table .table-footer select {
    background-color: transparent;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    height: auto;
    margin-left: 20px;
}

div.material-table .table-title {
    font-size: 20px;
    color: #000;
}

div.material-table table tr td {
    padding: 0 0 0 56px;
    height: 48px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.87);
    border-bottom: solid 1px #DDDDDD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.material-table table tr td a {
    color: inherit;
}

div.material-table table tr td a i {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.54);
}

div.material-table table tr {
    font-size: 12px;
}

div.material-table table th {
    font-size: 12px;
    font-weight: 500;
    color: #757575;
    cursor: pointer;
    white-space: nowrap;
    padding: 0;
    height: 56px;
    padding-left: 56px;
    vertical-align: middle;
    outline: none !important;
}

div.material-table table th.sorting_asc,
div.material-table table th.sorting_desc {
    color: rgba(0, 0, 0, 0.87);
}

div.material-table table th.sorting:after,
div.material-table table th.sorting_asc:after,
div.material-table table th.sorting_desc:after {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    word-wrap: normal;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    content: "arrow_back";
    -webkit-transform: rotate(90deg);
    display: none;
    vertical-align: middle;
}

div.material-table table th.sorting:hover:after,
div.material-table table th.sorting_asc:after,
div.material-table table th.sorting_desc:after {
    display: inline-block;
}

div.material-table table th.sorting_desc:after {
    content: "arrow_forward";
}

div.material-table table tbody tr:hover {
    background-color: #EEE;
}

div.material-table table th:first-child,
div.material-table table td:first-child {
    padding: 0 0 0 24px;
}

div.material-table table th:last-child,
div.material-table table td:last-child {
    padding: 0 14px 0 0;
}
/**
Create By
Name : Ahmed Elgendy
Phone : 01025105048
Mail : develgendy@gmail.com
--**/
