body {
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: none;
    color: black;
}

.title {
    text-align: center;
}

.title h1 {
    display: inline-block;
}


/* header */

.header-social-icons,
.phone-number {
    text-align: left;
}

.phone-number {
    padding-top: 30px;
}

.phone-number li {
    display: inline-block;
}

.phone-number a:nth-child(1) {
    color: black;
}

.phone-number li:nth-child(2) {
    width: 30px;
    height: 30px;
    background: #2e4257;
    border-radius: 15px;
}

.phone-number li:nth-child(2) {
    color: white;
    width: 30px;
    padding-left: 0.7em;
    padding-top: 0.5em;
}

.phone-number a:hover {
    color: black;
}

.phone-number p {
    display: inline-block;
}

.header-social-icons li {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #2e4257;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    position: relative;
}

.header-social-icons li:hover {
    background: #f2bd55;
    top: 3px;
}

.header-social-icons a {
    text-align: center;
}

.header-social-icons i {
    color: white;
    line-height: 2em;
    width: 30px;
}

.header-social-icons p {
    display: inline-block;
    font-weight: bold;
}


/* logo */

.logo img {
    width: 200px;
}


/* new training */

.new-training {
    height: 34px;
    line-height: 2em;
    border: 1px solid grey;
    margin-top: 20px;
    clear: both;
    overflow: hidden;
}

.right-part {
    background: #2e4257;
    color: white;
    height: 34px;
    margin-right: -15px;
    text-align: center;
}

.left-part .carousel-text a {
    color: black;
    text-decoration: none;
}


/* 
@media screen and (max-width: 500px) {
    .new-training {
        height: 108px;
    }
    .right-part {
        height: 108px;
    }
    body {
        overflow-x: hidden;
    }
} */


/* navbar */

.navbar-default {
    background: #2e4257;
    margin-top: 30px;
    margin-left: -15px;
    margin-right: -15px;
}

.navbar-default .navbar-nav>li>a {
    color: white;
}

.navbar-nav>li {
    height: 53px;
    /*margin-left: 23px;*/
    margin-left: 11px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border: 1px dashed transparent;
}

.navbar-nav>li:hover {
    background: #f2bd55 !important;
    border: 1px dashed black;
}

.navbar-nav>li>a {
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.navbar-nav>li:hover>a {
    color: black;
}

.navbar-default .navbar-nav>.active>a {
    background: #2e4257;
    color: white;
}

.dropdown-menu {
    background: #f2bd55;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background: #f2bd55;
}


/* news */

.news {
    width: 100%;
}


/* sub header */

.header-container {
    /*background-image: url("../imgs/header.png");*/
    height: 450px;
    width: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: table;
}

.sub-header-content {
    background: rgba(105, 159, 214, 0.2);
    /* display: table-cell;
    vertical-align: middle; */
    line-height: 3em;
    text-shadow: 1px 1px 1px grey;
    box-shadow: 1px 1px 1px #2e4257;
    padding: 10px;
    /*margin-top: 228px;*/
    position:absolute;
    /*bottom: 0;*/
    bottom:17%;
    width: 60%;
    right: 0;
    left: 0;
    margin: auto;
}

.sub-header-content p {
    /*margin: 0 auto;*/
    text-align:center;
    width: 80%;
}

.btn-default {
    background: #E9AB39;
    cursor: pointer;
    border-radius: 0;
}

.btn-default:hover {
    background: rgb(233, 171, 57);
    color: #fff;
}


/* buttons animation */

.btn {
    border: none;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
}

.btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.3s;
}

.btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.3s;
}

.btn:hover span {
    padding-right: 25px;
}

.btn:hover span:after {
    opacity: 1;
    right: 0;
}


/* header foot */

.header-foot {
    background: #ede7e4;
    text-align: center;
}

.header-foot i {
    padding: 20px 0 10px 0;
}

.header-foot .header-foot-text {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 20px;
}


/* training */

.training h1 {
    border-top: 2px solid #f2bd55;
    padding-top: 10px;
    width: 65%;
}

@media screen and (max-width: 500px) {
    .training h1 {
        width: 79%;
    }
}

.training img {
    border-radius: 5px;
    border: 1px dashed black;
}

.training h3,
.training p {
    padding: 10px;
    width: 80%;
}


/* training carousel */

.glyphicon-chevron-left,
.glyphicon-chevron-right {
    transform: rotate(180deg);
    color: black;
}

.carousel-control.left {
    right: -18px;
    width: auto;
}

.carousel-control.right {
    left: -15px;
    width: auto;
}


/* about us */

.about-us {
    text-align: center;
    background: #ede7e4;
}

.about-us h1 {
    border-top: 2px solid #f2bd55;
    padding: 10px 0 20px 0;
    width: 18%;
}

@media screen and (max-width: 500px) {
    .about-us h1 {
        width: 54%;
    }
}

.about-us img {
    border-radius: 5px;
    height: 200px;
    border: 1px dashed black;
}

.about-us .about-us-text {
    line-height: 2em;
    text-align: justify;
}

.about-us .btn {
    float: left;
    margin-bottom: 30px;
}


/* instructors */

.instructors {
    background-image: url("../imgs/who_we_are.png");
    height: 366px;
    /* width: 100%; */
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: table;
    color: white;
}

.instructors .row {
    padding-bottom: 30px;
}


/* subscribe */

.subscribe {
    background: #f2bd55;
    color: white;
    display: table;
    height: 95px;
    width: 100%;
}

.subscribe .row {
    display: table-cell;
    vertical-align: middle;
}

.subscribe p {
    display: inline-block;
    position: absolute;
    right: 5em;
}

.subscribe .btn {
    background: #282425;
    border-radius: 0;
}

.subscribe .btn:hover {
    color: white;
    transform: scale(1.1);
}

.subscribe input,
.subscribe .btn {
    margin: 10px 0 10px 0;
}


/* footer */

.footer {
    background: #ede7e4;
    height: 50px;
    /*! display: table; */
}

.footer .row {
    display: table-cell;
    vertical-align: middle;
}


/* content management page */

.content {
    text-align: center;
}

.content .content-text {
    text-align: justify;
    line-height: 2em;
}


/* about us page */

.about-us-page h1 {
    border-top: 2px solid #f2bd55;
    padding: 10px 0 30px 0;
}

.about-us-page img {
    height: 450px;
    width: 100%;
}

.about-us-page .describtion {
    padding: 20px 0 20px 0;
    text-align: justify;
    line-height: 2em;
}


/* synced training page / async */

.synced-training,
.asynced-training {
    margin-right: 33px;
}

.synced-training h1 {
    border-top: 2px solid #f2bd55;
    padding: 10px 0 30px 0;
    /*! width: 68%; */
}

.asynced-training h1 {
    border-top: 2px solid #f2bd55;
    padding: 10px 0 30px 0;
    width: 84%;
}

.synced-training .one-training,
.asynced-training .one-training {
    box-shadow: 2px 2px 1px #2e4257;
    margin-bottom: 20px;
}

.synced-training img,
.asynced-training img {
    height: 200px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #2e4257;
    margin-bottom: 10px;
}


/* synced training details */

.synced-training-details .training-title {
    text-align: center;
}

.synced-training-details h1 {
    border-top: 2px solid #f2bd55;
    padding: 10px 0 30px 0;
    display: inline-block;
}

.synced-training-details img {
    /*height: unset;*/
    /*width: unset;*/
    /*max-width: auto;*/
}

.synced-training-details .training-details-text {
    margin-top: 20px;
    text-align: justify;
    line-height: 2em;
}

.synced-training-details .row .form-group{
    margin-bottom: 0px;
    margin-top: 4px;
}

.synced-training-details .form-control {
    width: 100%;
}

.synced-training-details form {
    /*! background: rgba(46, 66, 87, 0.9); */
    /*! color: white; */
    padding: 2px 15px;
}

.synced-training-details a,
a:focus,
a:hover {
    color: white;
    /*! margin-top: 13px; */
}


/* hidden form */

.synced-training-details #hidden-form {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
}

.synced-training-details #hidden-form:target {
    outline: none;
    display: block;
}


/* final msg box */

.synced-training-details #final-msg {
    background: black;
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: none;
    z-index: 999;
    text-align: center;
}

.synced-training-details #final-msg:target {
    outline: none;
    display: block;
}


/* async sing up / login page */

.log .form {
    background: rgba(19, 35, 47, 0.9);
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}

.log .tab-group {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.log .tab-group:after {
    content: "";
    display: table;
    clear: both;
}

.log .tab-group li a {
    display: block;
    text-decoration: none;
    padding: 15px;
    background: rgba(160, 179, 176, 0.25);
    color: #a0b3b0;
    font-size: 20px;
    float: left;
    width: 50%;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.log .tab-group li a:hover {
    background: #BC9445;
    color: #ffffff;
}

.log .tab-group .active a {
    background: #F2BD55;
    color: #ffffff;
}

.log .tab-content>div:last-child {
    display: none;
}

.log h1 {
    text-align: center;
    color: #ffffff;
    font-weight: 300;
    margin: 0 0 40px;
}

.log label {
    position: absolute;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    right: 3px;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
    font-size: 22px;
}

.log label .req {
    margin: 2px;
    color: #F2BD55;
}

.log label.active {
    -webkit-transform: translateY(50px);
    transform: translateY(-27px);
    left: 2px;
    font-size: 14px;
}

.log label.active .req {
    opacity: 0;
}

.log label.highlight {
    color: #ffffff;
}

.log input,
.log textarea {
    font-size: 22px;
    display: block;
    width: 100%;
    /* height: 100%; */
    padding: 5px 10px;
    background: none;
    background-image: none;
    border: 1px solid #a0b3b0;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: border-color .25s ease, box-shadow .25s ease;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.log input:focus,
.log textarea:focus {
    outline: 0;
    border-color: #F2BD55;
}

.log textarea {
    border: 2px solid #a0b3b0;
    resize: vertical;
}

.log .field-wrap {
    position: relative;
    margin-bottom: 40px;
}

.log .top-row:after {
    content: "";
    display: table;
    clear: both;
}

.log .top-row>div {
    float: left;
    width: 48%;
    margin-right: 4%;
}

.log .top-row>div:last-child {
    margin: 0;
}

.log .button {
    border: 0;
    outline: none;
    border-radius: 0;
    padding: 15px 0;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    /* letter-spacing: .1em; */
    background: #F2BD55;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-appearance: none;
}

.log .button:hover,
.log .button:focus {
    background: #F2BD55;
}

.log .button-block {
    display: block;
    width: 100%;
}

.log .forgot {
    margin-top: -20px;
    text-align: right;
}

.log .forgot a{
    color: #fff;
}
/* async training details */

.asynced-training-details .training-title {
    text-align: center;
}

.asynced-training-details h1 {
    border-top: 2px solid #f2bd55;
    padding: 10px 0 30px 0;
    display: inline-block;
}

.asynced-training-details .training-details-text {
    margin-top: 20px;
    text-align: justify;
    line-height: 2em;
}

#test .row {
    margin-top: 20px;
}

#test {
    /*! background: rgba(46, 66, 87, 0.9); */
    /*! color: white; */
    /*! padding: 20px; */
    /*! display: none; */
    /*! position: fixed; */
    /*! z-index: 999; */
    /*! width: 100%; */
    /*! height: 100%; */
    /*! top: 0; */
    /*! left: 0; */
}

#test:target {
    outline: none;
    display: block;
}


/* customer service page */

.title h1 {
    border-top: 2px solid #f2bd55;
    padding-top: 10px;
    margin-bottom: 30px;
}


/* cv page / list of instructors */

.instructor-img {
    text-align: center;
}

.instructor-img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 2px 2px 2px #2e4257;
    display: inline-block;
}

.instructor-img img:hover {
    box-shadow: 4px 4px 4px #2e4257;
}

.insctructor-details {
    text-align: center;
}

.insctructor-details h2,
.insctructor-details p {
    display: inline-block;
}


/* cv details / instructor details */

.instructor-details {
    margin-top: 30px;
    text-align: justify;
    line-height: 2em;
}

.instructor-details h2 {
    text-align: center;
}


/* training order page */

.training-order .row {
    margin-top: 20px;
}


/* contact us page */


/*contact us page*/

main .contact-us-page {
    padding: 17px 0;
}

main .contact-us-page div .header {
    background: #E9AB39;
    /*width: 200px;*/
    padding: 10px 12px;
    color: #fff;
}

main .contact-us-page form .form-group {
}

main .contact-us-page form .form-group label {
    margin-bottom: 14px;
    font-size: 16px;
}

main .contact-us-page form .form-group input {
    display: inline-block;
    /*! width: 64%; */
    /*! float: right; */
}

main .contact-us-page form .form-group textarea {
    /*! width: 376px; */
    display: block;
    margin-top: 9px;
    float: right;
}

main .contact-us-page form .btn {
    color: #fff;
    width: 17%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    padding: 12px 0;
    margin-top: 11px;
    border-radius: 0;
    float: left;
    /*! margin-left: 7%; */
}

main .contact-us-page form .btn:hover,
main .contact-us-page form .btn:focus,
main .contact-us-page form .btn:active {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

main .contact-us-page .left {}

main .contact-us-page .left h1 {
    font-size: 18px;
    font-weight: bold;
}

main .contact-us-page .left h2 {
    font-size: 17px;
    width: 28%;
    margin: 10px auto;
    display: inline-block;
}

main .contact-us-page .left .social {
    display: inline-block;
}

main .contact-us-page .left .social a {
    color: #fff;
    font-size: 25px;
    margin-left: 13px;
}

main .contact-us-page .left .social a:hover {
    color: #fff;
}

main .contact-us-page .left .social a li {
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 100%;
    transition: all .5s ease-in-out;
}

main .contact-us-page .left .social a .fa-facebook {
    padding: 5px 10px;
}

main .contact-us-page .left .social a .fa-facebook:hover {
    transition: all .5s ease-in-out;
    background: #3b5998;
    border-radius: 5%;
    border: 0;
}

main .contact-us-page .left .social a .fa-twitter:hover {
    transition: all .5s ease-in-out;
    background: #00aced;
    border-radius: 5%;
    border: 0;
}

main .contact-us-page .left .social a .fa-pinterest:hover {
    transition: all .5s ease-in-out;
    background: #cb2027;
    border-radius: 5%;
    border: 0;
}

main .contact-us-page .left .social a .fa-google-plus {
    padding: 3px 5px;
}

main .contact-us-page .left .social a .fa-google-plus:hover {
    transition: all .5s ease-in-out;
    background: #dd4b39;
    border-radius: 5%;
    border: 0;
}

main .contact-us-page .left .input-group {
    margin-top: 40px;
}

main .contact-us-page .left .input-group input {
    display: inline-block;
    width: 75%;
}

main .contact-us-page .left .input-group span {
    background: #fff;
    font-size: 20px;
}

main .contact-us-page .left .input-group a {
    color: #fff;
    background: #4e070a;
    border-radius: 0;
    border: 0;
    transition: all .3s ease-in-out;
    z-index: 111111;
    padding-bottom: 8px;
}

main .contact-us-page .left .input-group a:hover {
    transition: all .3s ease-in-out;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 111111;
}

main .contact-us-page .left .social a {
    color: #dbc164;
    font-size: 17px;
    margin-left: 13px;
}

main .contact-us-page .left a .social li {
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 100%;
    transition: all .5s ease-in-out;
}

main .contact-us-page .left .social a .fa-facebook {
    padding: 5px 10px;
}

main .contact-us-page .left .social a .fa-facebook:hover {
    transition: all .5s ease-in-out;
    background: #3b5998;
    border-radius: 5%;
    border: 0;
}

main .contact-us-page .left .social a .fa-twitter:hover {
    transition: all .5s ease-in-out;
    background: #00aced;
    border-radius: 5%;
    border: 0;
}

main .contact-us-page .left .social a .fa-pinterest:hover {
    transition: all .5s ease-in-out;
    background: #cb2027;
    border-radius: 5%;
    border: 0;
}

main .contact-us-page .left .social a .fa-google-plus {
    padding: 3px 5px;
}

main .contact-us-page .left .social a .fa-google-plus:hover {
    transition: all .5s ease-in-out;
    background: #dd4b39;
    border-radius: 5%;
    border: 0;
}
.modal .modal-body{
}
.modal .modal-footer{
    clear: both;
}
.list-contact{
    
}
.list-contact li{
    
    margin-bottom: 10px;
}
.list-contact li i{
    
    color: #F2BD55;
    font-size: 19px;
}
.list-contact li span{
    
    font-size: 15px;
}
.footer p{
    text-align: center;
    padding-top: 17px;
}

/*8-11-2017*/

/*#myCarousel .carousel-inner .item{*/
/*    position:relative;*/
/*}*/

#myCarousel .carousel-inner .item img{
    /*height:300px;*/
    width:100%;
}

.sub-header-content h1{
    text-align:center;
}

.new-anchor{
    margin-right: 44%;
}

@media (max-width:767px) {
    .logo a img{
        margin:auto;
    }
    
    .phone-number ul{
        text-align:center;
    }
    
    .header-social-icons ul{
        text-align:center;
    }
    
    .navbar-nav > li.open{
        height:100px;
    }
    
    .sub-header-content{
        width: 100%;
        line-height:0;
        padding:0;
        bottom:0;
    }
    
    .sub-header-content h1{
        font-size: 18px;
    }
    
    .sub-header-content p{
        font-size: 8px;
        width:100%;
        line-height: 1.42857143;
    }
    
    .new-anchor {
        margin-right: 37%;
    }
}









