/* Start Main Rules */

::-moz-selection {
    background-color: #25b6bc;
    color: #FFF
}

::selection {
    background-color: #25b6bc;
    color: #FFF
}

html {
    font-size: 62.5%
}

body {
    font-family: 'Droid Arabic Kufi', sans-serif;
    color: #555;
    min-height: 100vh;
    position: relative
}

h2, .h2 {
    font-size: 2.4rem;
    margin-bottom: 5rem
}

p {
    font-family: 'Droid Arabic Naskh', serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #888
}

.custom-h span {
    position: relative
}

.custom-h span:before {
    content: "";
    display: block;
    width: 33px;
    height: 4px;
    background-color: #25b6bc;
    position: absolute;
    bottom: 0;
    right: 0
}

.custom-btn {
    display: block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    background-color: #25b6bc;
    color: #FFF;
    font-weight: bold;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.custom-btn:before {
    content: "";
    display: block;
    border: 2px solid #25b6bc;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .3s .1s;
    transition: all .3s .1s
}

.custom-btn:hover, a:focus {
    text-decoration: none;
    color: #FFF
}

.custom-btn:hover:before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px
}

.custom-btn2 {
    display: block;
    color: white;
    width: 160px;
    height: 55px;
    background-color: #25b6bc;
    line-height: 55px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s
}

.custom-btn2:hover {
    background-color: #26cbd2;
    color: #FFF;
    text-decoration: none
}

.text-center {
    text-align: center
}

header.mini {
    padding-top: 120px;
    padding-bottom: 30px
}

header.mini .intro h1.h2 {
    margin: 0
}

header.mini .intro.sub-services h1.h2 {
    font-size: 2rem
}

/* End Main Rules */

/*** Start Animate.css Library ***/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* BounceIn */

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

/* FadeInUp */

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*** Start Animate.css Library ***/

/* Start Header */

header {
    background-color: #25b6bc;
    color: #FFF;
    padding-bottom: 45px;
    padding-top: 110px
}

header nav {
    padding: 5px 0;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    border-bottom: 1px solid #DDD
}

header .logo {
    display: block;
    width: 120px;
    float: right;
    margin-bottom: 15px
}

header .nav-toggle {
    display: block;
    float: left;
    color: #555;
    margin-top: 26px
}

header .links {
    text-align: center;
    background-color: #FFF;
    display: none
}

header .links a {
    color: #555;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s
}

header .links a:last-of-type {
    border-bottom: none
}

header .links a:hover, header .links a.active {
    background-color: #f3f3f3
}

header .intro .content {
    margin-bottom: 50px;
    text-align: center
}

header .intro .content .h2 {
    margin-bottom: 1.2rem
}

header .intro .content p {
    color: #cae5e4
}

header .intro .content .scroll-down {
    display: none
}

.header-end {
    background: #25b6bc url(../images/header-end.svg) no-repeat;
    background-size: 100%
}

/* End Header */

/* Start About Us */

.about {
    padding: 2rem 0 5rem
}

.about h2 {
    text-align: center
}

.about .pic {
    margin-bottom: 3rem
}

.about .pic img {
    width: 80%;
    margin: 0 auto
}

.about .content {
    text-align: center
}

/* End About Us */

/* Start Our Services */

.services {
    padding: 5rem 0 8rem
}

.services h2 {
    text-align: center;
    margin-top: 0
}

.services .box {
    text-align: center;
    margin-bottom: 60px
}

.services .box .icon {
    margin-bottom: 30px
}

.services .box .icon img {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    box-shadow: 0 0 40px #ececec;
    border: 1px solid #EEE
}

.services .box h3 {
    font-size: 1.6rem
}

.services .box a {
    text-decoration: underline;
    color: #25b6bc
}

/* End Our Services */

/* Start Our Clients */

.clients {
    padding: 40px 0;
    background-color: #F6F6F6
}

.clients .brand {
    margin-bottom: 30px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.clients .brand:hover {
    transform: scale(1.1)
}

/* End Our Clients */

/* Start Footer */

.footer-margin {
    padding-top: 156px
}

footer {
    padding: 4rem 0;
    background-color: #afabaf;
    color: #FFF;
    border-top: 6px solid #a29ca2;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

footer .social {
    margin-bottom: 10px
}

footer .social a {
    display: inline-block;
    color: #FFF;
    width: 40px;
    height: 40px;
    line-height: 42px;
    border: 1px solid #FFF;
    border-radius: 50%;
    -webkit-transition: all .2s;
    transition: all .2s
}

footer .social a:first-of-type {
    margin-left: 5px
}

footer .social a:hover {
    background-color: #FFF;
    color: #afabaf
}

footer .copyright a {
    color: #FFF;
    text-decoration: underline
}

/* End Footer */

/*** Start About Page ***/

.about-page {
    padding: 6rem 0 0
}

.about-info {
    padding: 4rem 0 6rem
}

.about-info .box {
    padding-right: 40px;
    margin-bottom: 30px
}

.about-info .box h3 {
    position: relative;
    margin-top: 0;
    margin-bottom: 0
}

.about-info .box h3:before {
    content: "\f00c";
    font-size: 1.2em !important;
    vertical-align: -15%;
    display: inline-block;
    font: normal normal normal 14px/1 'icomoon';
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: -40px;
    bottom: 50%;
    transform: translateY(50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #DDD;
    text-align: center;
    -webkit-transition: all .2s;
    transition: all .2s
}

.about-info .box:hover h3:before {
    background-color: #25b6bc;
    border-color: #25b6bc;
    color: #FFF
}

.about-info .box ul {
    padding-right: 20px;
    font-family: 'Droid Arabic Naskh', serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #888
}

/*** End About Page ***/

/*** Start Services Page ***/

.services-page {
    background-color: #FFF;
    padding: 6rem 0
}

/*** End Services Page ***/

/*** Start Gallery Page ***/
                
.gallery-page {
    padding: 6rem 0 4rem
}

.gallery-page a {
    display: block;
    margin-bottom: 30px
}

.gallery-page a img {
    backface-visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden
}

.gallery-page a:hover img {
    transform: translateZ(0)scale(1.1) rotate(0)
}

.fancybox-overlay {
    background: rgba(37,182,188,0.9)
}

.fancybox-opened .fancybox-skin {
    box-shadow: none;
    -webki-box-shadow: none
}

.fancybox-lock .fancybox-overlay {
    overflow: hidden !important;
}

/*** End Gallery Page ***/

/*** Start Contact Page ***/

.contact-page {
    padding: 6rem 0
}

.contact-page .contact-info {
    margin-bottom: 2rem;
    padding-bottom: 1rem
}

.contact-page .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.contact-page .contact-info ul li {
    margin-bottom: .8rem
}

.contact-page .contact-info ul li i {
    color: #25b6bc
}

.contact-page .contact-info ul li span {
    color: #888
}

.contact-page form label,
.contact-page form input:not(:last-of-type),
.contact-page form textarea {
    display: block;
    width: 100%
}

.contact-page form label {
    margin-bottom: 6px;
    margin-top: 20px
}

.contact-page form label:first-of-type {
    margin-top: 0
}

.contact-page form label .required {
    color: #F00
}

.contact-page form input:not(:last-of-type) {
    padding: 15px 8px;
    border: 1px solid #DDD;
    outline: none
}

.contact-page form input:not(:last-of-type):focus,
.contact-page form textarea:focus {
    border-color: #25b6bc
}

.contact-page form textarea {
    height: 250px;
    padding: 15px 8px;
    border: 1px solid #DDD;
    outline: none
}

.contact-page form input[type="submit"] {
    display: inline-block;
    background: #25b6bc;
    color: #FFF;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    margin-top: 20px;
    -webkit-transition: all .2s;
    transition: all .2s
}

.contact-page form input[type="submit"]:hover {
    background-color: #2ccbd2
}

.contact-page .alert {
    margin-top: 40px;
    padding: 20px
}

.contact-page .alert--loading {
    background-color: #F9EEB7;
    color: #9A7E2B;
}

.contact-page .alert--success {
    background-color: #C8F1C8;
    color: #378837;
}

.contact-page .alert--error {
    background-color: #F79D9D;
    color: #962F2F;
}

.contact-page .alert--error a {
    color: #962F2F;
    text-decoration: underline
}

/*** End Contact Page ***/

/*** Start Sub Services Pages Page ***/

.sub-services-pages {
    padding: 8rem 0
}

.sub-services-pages .big-img {
    overflow: hidden
}

.sub-services-pages .big-img img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .2s;
    transition: all .2s
}

.sub-services-pages .big-img:hover img {
    -webkit-transform: scale(1.1) rotate(-2deg);
    -ms-transform: scale(1.1) rotate(-2deg);
    transform: scale(1.1) rotate(-2deg)
}

.sub-services-pages h2 {
    margin: 3rem 0 2rem
}

.sub-services-pages .btns a.custom-btn2:last-of-type {
    background-color: #222;
    margin-top: 10px
}

.sub-services-pages .btns a.custom-btn2:last-of-type:hover {
    background-color: #444
}

/*** End Sub Services Pages ***/

/* Start Media Queries */

@media (min-width: 768px) {
    h2, .h2 {
        font-size: 3.4rem
    }
    
    p, .about-info .box ul {
        font-size: 1.4rem
    }
    
    .custom-h span:before {
        width: 42px
    }
    
    header.mini {
        padding-top: 160px;
        padding-bottom: 20px
    }
    
    /* Start Header */
    
    header {
        padding-bottom: 60px;
        padding-top: 175px
    }
    
    header nav {
        padding: 0
    }

    header .logo {
        width: 130px;
        margin-bottom: 15px;
        padding: 10px 0
    }

    header .nav-toggle {
        display: none
    }
    
    header .clearfix:first-of-type {
        display: none !important
    }

    header .links {
        display: block !important;
        float: left;
    }

    header .links a {
        float: right;
        border-bottom: none;
        padding: 38px 20px
    }
    
    header .links a:hover, header .links a.active {
        box-shadow: inset 0 2px 0 #25b6bc
    }


    header .intro .content {
        margin-bottom: 0;
        text-align: right
    }
    
    header .intro .content .scroll-down {
        display: block;
        color: #555;
        width: 70px;
        height: 70px;
        text-align: center;
        line-height: 70px;
        border-radius: 50%;
        background-color: #FFF;
        margin: 30px 70px 0 0;
        position: relative
    }
    
    header .intro .content .scroll-down:before {
        content: "";
        display: block;
        border: 2px solid #FFF;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: all .3s .1s;
        transition: all .3s .1s
    }
    
    header .intro .content .scroll-down i {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    
    header .intro .content .scroll-down:hover:before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px
    }
    
    header .intro .content .scroll-down:hover i {
        -webkit-animation: scroll-down 2s infinite;
        animation: scroll-down 2s infinite
    }
    
    
    @keyframes scroll-down {
        33.3% {
            -ms-transform: translateY(10px);
            transform: translateY(10px)
        }
        
        100% {
            -ms-transform: translateY(0);
            transform: translateY(0)
        }
    }
    
    @-webkit-keyframes scroll-down {
        33.3% {
            -webkit-transform: translateY(10px);
            transform: translateY(10px)
        }
        
        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0)
        }
    }
    
    /* End Header */
    
    /* Start About Us */
    
    .about .content {
        text-align: right;
        margin-top: 25px
    }
    
    /* End About Us */
    
    /* Start Our Services */

    .services .box {
        margin-bottom: 0
    }
    
    /* Start Our Services */

    
    /* Start Our Clients */

    .clients .brand {
        margin-bottom: 0
    }

    /* End Our Clients */
    
    /*** Start About Page ***/
    
    
    header.mini .intro.sub-services h1.h2 {
        font-size: 3rem
    }
    
    .about-info .box {
        margin-bottom: 0
    }
    
    /*** End About Page ***/
    
    /*** Start Services Page ***/

    .services-page .box {
        margin-bottom: 60px
    }

    /*** End Services Page ***/
    
    /*** Start Contact Page ***/
    
    .contact-page .col-sm-5,
    .contact-page .col-sm-7 {
        float: left
    }
    
    .contact-page .contact-info {
        margin-top: 24px
    }
    
    /*** End Contact Page ***/
    
    /*** Start Brand Register Page ***/
    
    .sub-services-pages .btns a.custom-btn2 {
        display: inline-block
    }
    
    .sub-services-pages a.custom-btn2:last-of-type {
        margin-right: 10px
    }
    
    /*** End Brand Register Page ***/
}

@media (min-width: 992px) {
    
    header.mini {
        padding-top: 150px;
        padding-bottom: 0
    }
    
    /* Start Header */
    
    header {
        padding-bottom: 38px;
        padding-top: 175px
    }
    
    header .links a {
        padding: 38px 30px
    }
    
    header .intro .content {
        margin-top: 60px
    }
    
    header .intro .content .scroll-down {
        width: 90px;
        height: 90px;
        line-height: 95px
    }
    
    header .intro .content .scroll-down i {
        font-size: 2.5rem
    }
    
    /* End Header */
    
    /* Start About Us */
    
    .about .pic img {
        width: 70%
    }
    
    .about .content {
        margin-top: 50px
    }
    
    .about a.main {
        margin-top: 0
    }
    
    /* End About Us */
    
    /*** Start About Page ***/
    
    header.mini h1.h2 {
        font-size: 6rem
    }
    
    header.mini .intro.sub-services h1.h2 {
        font-size: 4rem
    }

    /*** End About Page ***/
    
}

@media (min-width: 1200px) {
    
    header.mini {
        padding-top: 160px;
        padding-bottom: 0px
    }
    
    /* Start Header */
    
    header .intro .content {
        margin-top: 100px
    }
    
    /* End Header */
    
    /* Start About Us */
    
    .about h2.custom-h {
        margin-bottom: 2rem
    }
    
    .about .pic img {
        width: 60%
    }
    
    /* End About Us */
    
    /* Start Our Clients */

    .clients .brand img {
        width: 90%;
        margin: 0 auto
    }

    /* End Our Clients */
}

/* End Media Queries */