/*
    Custom CSS
*/

html,
body {
    height: 100%;
}


/*body{
    -webkit-animation: color_change 1s infinite alternate;
    -moz-animation: color_change 1s infinite alternate;
    -ms-animation: color_change 1s infinite alternate;
    -o-animation: color_change 1s infinite alternate;
    animation: color_change 1s infinite alternate;
}

@-webkit-keyframes color_change {
    from { background-color: white; }
    to { background-color: black; }
}
@-moz-keyframes color_change {
    from { background-color: blue; }
    to { background-color: red; }
}
@-ms-keyframes color_change {
    from { background-color: blue; }
    to { background-color: red; }
}
@-o-keyframes color_change {
    from { background-color: blue; }
    to { background-color: red; }
}
@keyframes color_change {
    from { background-color: maroon; }
    to { background-color: orange; }
}*/

.floating {
    /*float: left;*/
    -webkit-animation-name: Floatingx;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: Floating;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@-webkit-keyframes Floatingx {
    from {
        -webkit-transform: translate(0, 0px);
    }
    65% {
        -webkit-transform: translate(0, 15px);
    }
    to {
        -webkit-transform: translate(0, -0px);
    }
}

@-moz-keyframes Floating {
    from {
        -moz-transform: translate(0, 0px);
    }
    65% {
        -moz-transform: translate(0, 15px);
    }
    to {
        -moz-transform: translate(0, -0px);
    }
}

.shadow {
    -webkit-filter: drop-shadow(5px 5px 10px #777);
    -moz-filter: drop-shadow(5px 5px 10px #777);
    -o-filter: drop-shadow(5px 5px 10px #777);
    -ms-filter: drop-shadow(5px 5px 10px #777);
    filter: drop-shadow(5px 5px 10px #777);
}

.section {
    margin-top: 15px !important;
}

.section:first-child {
    margin-top: 0px !important;
}

.carousel-control {
    background: transparent !important;
}

.header {
    background: #00A651 url(../images/top-bg.png);
}


/* .navbar-brand{
    padding: 8px 15px !important;
} */

.navbar {
    margin-bottom: 0px !important;
}

.navbar a {
    color: #fff !important;
}

.navbar li a:hover,
.navbar li a:active,
.navbar li a:focus {
    background: #1A1A1A !important;
}


/*
    SEARCH BUTTON START
*/

.search-form {
    padding: 8px 15px;
}

.search-form label {
    float: left;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.search-field:focus {
    background-color: #00a550;
    border: 2px solid #c3c0ab;
    cursor: text;
    outline: 0;
    width: 180px;
    color: #000 !important
}

.search-field {
    background-color: transparent;
    background-image: url(../images/search-icon.png);
    background-position: 5px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: none;
    cursor: pointer;
    height: 37px;
    margin: 3px 0;
    padding: 0 0 0 34px;
    position: relative;
    -webkit-transition: width 400ms ease, background 400ms ease;
    transition: width 400ms ease, background 400ms ease;
    width: 0;
    float: right;
}

.search-submit {
    display: none;
}


/*
    SEARCH BUTTON END
*/

.img-responsive,
.thumbnail>img,
.thumbnail a>img,
.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

#technologies {
    min-height: 230px;
    background: url(../images/tech-bg.jpg);
    margin: 10px auto;
    padding-top: 50px;
}

#technologies ul li {
    list-style-type: none;
    display: block;
    float: left;
    width: 140px;
    height: 140px;
    text-wrap: yes;
    margin: 10px;
    padding: 10px;
    text-align: center;
}

#technologies img {
    max-width: 72px;
    width: 100%;
}

textarea {
    resize: none !important;
}

footer {
    position: relative;
    background: #11733A;
    padding-top: 15px;
}

footer a {
    color: #fff;
}

footer .monster-logo {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

footer section {
    background: #00994C;
    margin-top: 10px;
    padding: 5px 0px;
}

.gplus:hover {
    color: #DD4B39;
}

.twitter:hover {
    color: #55ACEE;
}

.facebook:hover {
    color: #4F6EB2;
}

.youtube:hover {
    color: #CC181E;
}

@media (min-width: 992px) {
    .container {
        width: 80% !important;
    }
}