﻿.carousel-indicators .active {
    background: #31708f;
}

.content {
    margin-top: 20px;
}

.adjust1 {
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.adjust2 {
    margin: 0;
}

.carousel-indicators li {
    border: 1px solid #ccc;
}

.carousel-control {
    color: #c13437;
    width: 5%;
}

    .carousel-control:hover,
    .carousel-control:focus {
        color: #c13437;
    }

    .carousel-control.left,
    .carousel-control.right {
        background-image: none;
    }

.media-object {
    margin: auto;
    margin-top: 15%;
}

@media screen and (max-width: 768px) {
    .media-object {
        margin-top: 0;
    }
}

.container {
    margin-bottom: 0px;
}

body {
    font-family: 'Bitter', sans-serif;
    /*color: #E54A41;*/
    /*background-image: url('http://static.rtpdesign.co.uk/blog/img/background.html');*/
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 20%;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    /*margin-bottom: 2em;*/
}

h2 {
    margin: 0em 0 0em;
}

.logo {
    margin: 20px auto;
    height: 100px;
}

.title {
    padding: 28px;
    display: table-cell;
    position: relative;
    vertical-align: middle;
    text-align: center;
}

.carousel-control {
    background: #ddd;
    color: #999;
    padding: 4px 0;
    width: 26px;
    top: auto;
    left: auto;
    bottom: 0;
    opacity: 1;
    text-shadow: none;
}

    .carousel-control.right {
        right: 10px;
    }

    .carousel-control.left {
        right: 40px;
    }

/* whatsapp css*/
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 22px;
    right: 95px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.box {
    position: absolute;
    padding: 20px;
}

    .box span {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        box-sizing: border-box;
    }
        /*.box span:nth-child(1)*/
        /*{*/
        /*  transform:rotate(0deg);*/
        /*}*/
        .box span:nth-child(3) {
            transform: rotate(180deg);
        }

        .box span:before {
            position: absolute;
            width: 100%;
            height: 2px;
            background: #ed3f33;
            animation: animate 6s linear infinite;
        }

@keyframes animate {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    50.1% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}


.example1 {
    height: 35px;
    overflow: hidden;
    position: relative;
    background: #c13437;
}

    .example1 h3 {
        font-size: 1.2em;
        color: #ffffff;
        position: absolute;
        width: 100%;
        height: 100%;
        margin: 0;
        line-height: 30px;
        text-align: center;
        /* Starting position */
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        /* Apply animation to this element */
        -moz-animation: example1 35s linear infinite;
        -webkit-animation: example1 35s linear infinite;
        animation: example1 35s linear infinite;
    }
/* Move it (define the animation) */
@-moz-keyframes example1 {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes example1 {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes example1 {
    0% {
        -moz-transform: translateX(100%); /* Firefox bug fix */
        -webkit-transform: translateX(100%); /* Firefox bug fix */
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%); /* Firefox bug fix */
        -webkit-transform: translateX(-100%); /* Firefox bug fix */
        transform: translateX(-100%);
    }
}


h2{margin:20px 0px}
/*loader*/
.loaderbody {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    background-color: rgba(128,128,128,0.2);
    z-index: 2147483647;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 45%;
    left: 45%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none;
}