
@font-face {
    font-family: "Source Sans Pro", sans-serif;
    font-display: auto;
}

.light-blue {
    color: #1A72A6 !important;
}

.medium-blue {
    color: #135B8A !important;
}

.dark-blue {
    color: #0D466D !important;
}

a {
    color: #135B8A;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #0D466D;
    text-decoration: underline;
}


#item-1 {
    background-image: url("../img/background-3.jpg");
    background-position: center center;
}

.home-slider .carousel-inner > .item {
    padding: 70px 0 0;
}

.home-slider #item-1 ul {
    margin: 30px 0;
}

.home-slider #item-1 ul > li {
    font-size: 18px;
    padding: 5px 0;
}

.home-slider #item-1 ul > li > i {
    color: #1084b5;
}

.home-slider #item-1 img {
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    /* Adjusting for small devices */
    .home-slider .carousel-inner > .item {
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    /* Adjusting for mobile */
    .home-slider .carousel-inner > .item {
        padding-top: 50px;
        text-align: center;
    }

    .home-slider #item-2 ul > li {
        text-align: left;
    }

    .home-slider #item-2 ul > li > span {
        font-size: 22px;
        margin-bottom: 7px;
    }

    .home-slider #item-1 ul {
        text-align: left;
        margin-left: 50px;
    }
}

.home-services {
    background: #1A72A6;
    margin-bottom: 40px;
}

.home-services .lead {
    line-height: 32px;
    padding: 14px 20px;
}

.main-services {
    border-top: 0;
    border-bottom: 1px solid #ddd;
    padding: 0;
}

.main-services .container {
    margin-bottom: 30px;
}

.main-services#section-clients {
    border-bottom: 0;
    margin-top: 40px;
}

#clients-list {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 28px;
}

.services {
    margin: 30px 0 0 0;
}

.fa.clients {
    color: #1A72A6;
}

span.codedirection {
    unicode-bidi: bidi-override;
    direction: rtl;
}

.service-item > i {
    background: #1A72A6;
}

.navbar-default .navbar-nav > li > a {
    color: #1A72A6;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #135B8A;
}

.navbar-default .navbar-nav > li > a:before {
    border-top-color: #1A72A6;
}

footer {
    margin-top: 0;
}

#topcontrol {
    z-index: 30;
}

/***********************************
    Wave animations
************************************/

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}

.waveWrapperParent {
    position: relative;
    margin-top: 30px;
    height: 120px;
}
.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background-image: linear-gradient(to top, #1A72A6 0%, #FFF 90%);
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
    background-image: url("../img/wave-top.png");
}

.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waveMiddle {
    background-size: 50% 120px;
    background-image: url("../img/wave-mid.png");
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
    background-image: url("../img/wave-bot.png");
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}