/*start my style */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Cairo', sans-serif;
}

/*start header*/

.navbar-default {
    background-color: #344d54;
    color: #fff;
    border-radius: 0;
    margin-bottom: 0;
    border: none
}
.navbar-default .navbar-nav>li>a {
    color: #fff;
    transition: all 0.2s ease-in-out
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    background-color: #1e3035;
    color: #fff;
    border-bottom: 4px solid #6fb2c4;
}
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #6fb2c4;
    font-weight: 600;
    /*
    background-color: #1e3035;
    color: #fff;
    border-bottom: 4px solid #6fb2c4
    
    */
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background: transparent;
    color: #6fb2c4
}

/*end header*/


/*start logo*/

.logo {
    position: absolute;
    top: 80px;
    z-index: 5;
    right: 0;
    left: 0
}
@media(max-width:767px) {
    .logo {
        position: absolute;
    }
}
.logo button {
    border-radius: 50px;
    border: none;
    padding: 6px 2px;
    margin-bottom: 10px;
    background: #fff;
    font-size: 16px;
    color: #222;
}
.logo button.red {
    border-radius: 50px;
    border: none;
    padding: 6px 2px;
    margin-bottom: 10px;
    background: #fa5555;
    font-size: 16px;
    color: #fff;
}

/*end logo*/


/*start top-slider*/

.top-slider {
    position: relative;
}
.top-slider .carousel-inner>.item>a>img,
.top-slider .carousel-inner>.item>img {
    width: 100%;
    height: 601px;
}
@media(max-width:767px) {
    .top-slider .carousel-inner>.item>a>img,
    .top-slider .carousel-inner>.item>img {
        width: 100%;
        height: 500px
    }
}
.top-slider .carousel-caption {
    left: 40px;
    right: 120px;
    width: 38%;
    top: 280px;
    text-align: right;
}
@media(max-width:767px) {
    .top-slider .carousel-caption {
        left: unset;
        right: unset;
        width: 100%;
        top: 50px;
        text-align: center;
    }
}
.top-slider .carousel-caption h2 {
    line-height: 1.5
}
.carousel-caption .brown {
    border-radius: 50px;
    border: none;
    padding: 12px 60px;
    margin-bottom: 10px;
    background: #e6a146;
    font-size: 16px;
    color: #fff;
    margin-top: 40px;
    border: 2px solid #e6a146;
    transition: all 0.3s ease-in-out
}
.carousel-caption .brown:hover {
    background-color: transparent;
    color: #e6a146;
    border-color: #e6a146
}

/*end slider*/


/*start news*/

.news {
    padding: 40px 0;
}
.news .carousel-indicators {
    top: 25px;
    height: 20px;
}
.news .carousel-indicators li {
    height: 5px;
    width: 50px;
    border-radius: 0;
    border: none;
    background: #344D54;
    border-radius: 5px;
    margin: 0
}
.news .carousel-indicators li.active {
    background-color: transparent;
    border: 1px solid #344D54;
}
.news h2 {
    line-height: 1.6;
    color: #222;
    ;
}
.news p {
    color: #888;
    font-size: 17px;
    margin-top: 30px
}
.news .new {
    margin-top: 80px;
    padding-bottom: 20px;
    cursor: pointer
}
.news .new img {
    width: 100%;
    height: 205px
}
.news .new a {
    text-decoration: none;
    color: #222
}
.news .new p {
    font-size: 16px;
    line-height: 1.6
}
.news .new a>h4 {
    font-weight: 600;
    font-size: 22px
}
.news .date {
    text-align: left;
    margin-top: 5px;
    margin-bottom: 10px
}
.news button.more {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid #344D54;
    color: #222;
    padding: 8px 10px;
    font-size: 16px;
    margin-top: 20px;
}

/*end news*/


/*start gallery*/

.gallery {
    padding-top: 60px;
}
.gallery .gallery-container {
    padding: 0;
    height: 231px;
    overflow:hidden;
    transition: all 500ms;
}
.gallery img {
    width: 100%;
    height: 100%;
    transition:all 500ms;
}
.gallery-container:hover img{
    transform: scale(1.2) rotate(360deg);
    transition:all 500ms;
}
.gallery .diffrent-size .gallery-container{
    height: 380px;;
    overflow: hidden;
}
.gallery .diffrent-size img {
    width: 100%;
    height: 100%;
}
.gallery .over {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 240px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    background-color: rgba(225, 105, 109, 0.5);
    opacity: 0;
    transition: all 0.6s ease-in-out;
    z-index: 44;
}
.gallery .diffrent-size .over {
    line-height: 400px
}
.gallery a:hover .over {
    opacity: 1
}

/*end gallery*/


/*start social*/

.social {}
.social .col-md-4 {
    padding: 0
}
.social img {
    width: 100%;
    height: 160px
}

/*end social*/


/*start video*/

.video iframe {
    width: 100%;
    height: 600px
}

/*end video*/


/*start map*/

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    margin-top: -5px
}

/*end map*/


/*start footer*/

.pre-footer {
    background-color: #1b1b1b;
    padding-top: 80px;
    padding-bottom: 30px;
    margin-top: -5px
}
.pre-footer img {
    margin-bottom: 20px;
}
.pre-footer .paragraph {
    color: #f9f9f9;
    /*! font-family: "Cairo-Light"; */
    width: 80%;
    margin: auto;
    margin-top: 18px;
    line-height: 25px;
}
.footer-head {
    margin-bottom: 25px;
}
.footer-head h4 {
    color: #fff;
    /*! font-family: "Cairo-SemiBold"; */
    font-size: 20px;
}
.pre-footer .lis-footer-menu li {
    margin-bottom: 20px;
}
.pre-footer .lis-footer-menu li a {
    color: #fff;
    /*! font-family: "Cairo-Light"; */
    transition: all 600ms;
    text-decoration: none
}
.pre-footer .lis-footer-menu li a:before {
    content: '\f104';
    font-family: FontAwesome;
    margin-left: 5px;
    color: #6fb2c4;
    float: right;
    font-weight: 800;
}
.pre-footer .lis-footer-menu li a:hover {
    transition: all 600ms;
    margin-right: 8px;
}
.pre-footer .list-contact {}
.list-contact li {
    margin-bottom: 10px;
}
.list-contact li i {
    color: #6fb2c4;
}
.pre-footer .list-contact li span {
    color: #f9f9f9;
}

/**Footer**/

footer {
    background: #000;
    min-height: 97px;
}
footer h4 {
    color: #fff;
    font-size: 14px;
    text-align: left;
    padding-top: 33px;
}
footer h4 a {
    color: #fff;
    margin-left: 19px;
}
#scroll-btn {
    /*position: fixed;*/
    z-index: 10101010;
    background: #6fb2c4;
    color: #fff;
    border: 0;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 19px;
    margin-top: -26px;
    margin-right: 65px;
    outline: 0;
}

/*end footer*/


/*start my framework*/

.navbar-default .navbar-nav>li>a.fa-facebook:hover {
    color: #3b5998;
    background: transparent;
    border: none
}
.navbar-default .navbar-nav>li>a.fa-twitter:hover {
    color: #1da1f2;
    background: transparent;
    border: none
}
.navbar-default .navbar-nav>li>a.fa-instagram:hover {
    color: #c13584;
    background: transparent;
    border: none
}
.navbar-default .navbar-nav>li>a.fa-google-plus:hover {
    color: #dd4b39;
    background: transparent;
    border: none
}
.navbar-default .navbar-nav>li>a.fa-youtube:hover {
    color: #cd201f;
    background: transparent;
    border: none
}

/* Bounce To Left */

.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #AECAD1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: white;
}
.hvr-bounce-to-left:hover:before,
.hvr-bounce-to-left:focus:before,
.hvr-bounce-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.about-page{
    padding-bottom: 25px;
}
/*.about-page .paragraph{
    padding: 0 55px;
}*/
.head{
    text-align: center;
    background: url(../images/slider/head.jpg) no-repeat;
    background-size: cover;
    height: 100px;
    background-attachment: fixed;
    padding-top: 15px;
    margin-bottom: 20px;
}
.head h4{
    color: #fff;
    background: #344D54;
    display: inline-block;
    padding: 15px;
    font-size: 20px;
    border-radius: 20px;
}
.news-page .new{
    padding: 0;
    margin-top: 20px;
}
.news-details-page{
    padding-bottom: 15px;
}
.news-head{
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 15px;
}
.news-details-page .img-news img{
    width: 100%;
    height: 410px;
    margin-bottom: 12px;
}
.news-details-page .img-news .date{
    color: #6fb2c4;
}
.news-details-page .img-news .date i{
    margin-left: 5px;
}
.news-details-page .paragraph{

    margin-top: 14px;
}
.news-details-page .border{

    background: #d1d1d1;
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0px;
    top: 45px;
}
.news-details-page .new{
    padding: 0;
    margin-top: 46px;
}
.gallery-page,.video-page{
    padding-bottom: 15px;
    padding-top: 0;
}
.video-page .embed-responsive-item{
    padding-bottom: 15px;
}
/*end my framework*/
.news-horozontal{
    clear: both;
    padding-top: 15px;
}
.horizontal-element{
    border: 1px solid #ddd;
    padding: 15px;
    transition: all 500ms;
    margin-bottom: 21px;
}
.horizontal-element .img-news{
    float: right;
}
.horizontal-element .img-news img{
    height: 130px;
    /*! clear: both; */
    margin-left: 15px;
    width: 190px;
    margin-top: 6px;
}
.horizontal-element .date{
    color: #344D54;
    /*! float: left; */
    transition: all 500ms;
}
.horizontal-element .date i{
    margin-left: 5px;
}
.horizontal-element h4{
    color: #333;
    transition: all 500ms;
}
.horizontal-element .paragraph{
    color: #888;
    transition: all 500ms;
}
.news-horozontal .embed-responsive-item{
    padding-bottom: 15px;
}
body a:hover{
    text-decoration: none;
}
.horizontal-element:hover{
    background: #344D54;
    transition: all 500ms;
}
.horizontal-element:hover .date{
    color: #ccc;
    transition: all 500ms;
}
.horizontal-element:hover .paragraph,.horizontal-element:hover h4{
    color: #fff;
    transition: all 500ms;
}
.title h4{
    border-bottom: 3px solid #6fb2c4;
    padding-bottom: 15px;
    font-size: 20px;
    display: inline-block;
}
.comments{
    margin-top: 37px;
    /*! border-top: 1px solid #ddd; */
    /*! padding-top: 19px; */
}
.comments .title{
    border-bottom: 1px solid #ddd;
    /*! padding-top: 19px; */
}
.comments .title h4{

}
.comments .media-object{
    height: 100px;
}
.comments .media-body .date{
    display: block;
    text-align: right;
    color: #6fb2c4;
}
.comments .media-body .date i{
    margin-left: 4px;
}
.comments .media{
    background: #f9f9f9;
    padding: 15px;
}
.leave-reply{

    margin-top: 15px;
}
.leave-reply .title{

    border-bottom: 1px solid #ddd;
}
.leave-reply .title h4{

}
.leave-reply .form-group .form-control{
    margin-top: 15px;
}
.form-control{
    border-radius: 15px;
}
textarea.form-control{
    height: 150px;
}
.btn[type="submit"]{
    background: #6fb2c4;
    color: #fff;
    margin-top: 15px;
    border-radius: 15px;
    font-size: 15px;
}
.contact-page{
    padding-bottom: 15px;
}
.contact-page h1{
    text-align: center;
    font-size: 26px;
    color: #555;
    margin-bottom: 9%;
}
.contact-element{
    text-align: center;
    border: 1px solid #ddd;
    padding-bottom: 15px;
}
.contact-element i{
    color: #fff;
    background: #6FB2C4;
    width: 85px;
    height: 85px;
    font-size: 38px;
    border-radius: 100%;
    padding-top: 21px;
    margin-top: -46px;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
}
.contact-element h5{
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 19px;
    margin-top: 35px;
}
.contact-element h6{
    font-size: 16px;
}
.contact-element:hover{
    background: #6FB2C4;
}
.contact-element:hover h5,.contact-element:hover h6{
    color: #fff;
}
.newsteller{
    text-align: center;
    background: url(../images/slider/head.jpg) no-repeat;
    background-size: cover;
    padding: 30px 0;
    background-attachment: fixed;
}
.newsteller h4{
    color: #fff;
    font-size: 21px;
    margin-bottom: 25px;
}
.newsteller .form-group{
    position: relative;
    width: 50%;
    margin: auto;
}

.newsteller .form-control{
    
    height: 46px;
    background: transparent;
    color: #fff;
}
.newsteller .btn{
    
    position: absolute;
    left: 0px;
    top: 1px;
    margin: 0;
    border: 0;
    font-size: 23px;
}