a {
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

a:hover {
    color: #007bb6;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

ul,
li {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.btn, input[type='submit'] {
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 0px;
    letter-spacing: 0px;
    background: #063952;
    font-family: 'Roboto';
    display: inline-block;
    transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.btn:hover, input[type="submit"]:hover {
    color: #063952;
    background: #fff;
    border: 1px solid #063952;
}

.btn-white {
    color: #063952;
    background: #fff;
}

.btn-white:hover {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}

.btn-trnsp {
    color: #333333;
    background: transparent;
    border: 1px solid #333333;
} 

.btn-trnsp:hover {
    background: #fff;
    border: 1px solid #007bb6;
}

.btn-black {
    color: #fff;
    background: #222;
    border: 1px solid #222;
}

.btn-black:hover {
    color: #007bb6;
    background: #fff;
    border: 1px solid #007bb6;
}









.table {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.table-cell {
    display: table-cell;
  /*  text-align: center; */
    vertical-align: middle;
}










/* -----------------------------------------------------------------------------------
*                               03. Slider area css
* ----------------------------------------------------------------------------------- */

#slider {
    height: 100%;
    max-height: 550px;
}

#slider .carousel,
#slider .carousel .carousel-inner,
#slider .carousel .carousel-inner .item {
    height: 100%;
    min-height: 400px;
}

#slider .main-container {
  padding: 0;
}

#slider .carousel-indicators li {
    width: 15px;
    height: 10px;
    margin: 2px;
    border-radius: 5px;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    background-color: #fff;
    border: none;
}

#slider .carousel-indicators li.active {
    background-color: #007bb6;
    width: 30px;
    opacity: 1;
}

#slider .carousel-control.right,
#slider .carousel-control.left {
    background-image: none;
}

#slider .carousel .item {
    min-height: 425px;
    height: 100%;
    width:100%;
}

#slider .carousel .item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
}

#slider .carousel-control {
    width: 6%;
    text-shadow: none;
}

.right.carousel-control img,
.left.carousel-control img {
    position: absolute;
    top: 25%;
    z-index: 5;
    display: inline-block;
    margin-top: -26px;
}

.carousel-control img:hover  {
    background: #007bb6;
}

.left.carousel-control img {
    left: 10px;
}

.right.carousel-control img {
    right: 10px;
}

.carousel-control {
    opacity: 1;
    filter: alpha(opacity=100);
}

#slider .item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	
}



/* Slide Background Image */
#slider .slide1 {
    background-image: url(../img/slider/01.jpg);
} 

#slider .slide2 {
    background-image: url(../img/slider/02.jpg);
}

#slider .slide3 {
    background-image: url(../img/slider/03.jpg);
}

.intro-text {
    /*text-align: center;*/
    max-width: 800px;
   margin: auto;
}

.intro-text h2 {
    color: #383838;
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
}

.intro-text p {
    color: #000;
   /* margin: auto;*/
    font-size: 22px;
    max-width: 500px;
    margin-bottom: 25px;
	/*font-weight: bolder; */
}

.intro-text .btn {
    margin: 0 10px;
}




/* Slider text animation */

.intro-text h2 {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 0.9s ease .1s;
    -moz-transition: all 0.9s ease .1s;
    -ms-transition: all 0.9s ease .1s;
    -o-transition: all 0.9s ease .1s;
    transition: all 0.9s ease .1s;
    opacity: 0;
}
.item.active .intro-text h2 {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}
.intro-text .btn {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.9s ease .1s;
    -moz-transition: all 0.9s ease .1s;
    -ms-transition: all 0.9s ease .1s;
    -o-transition: all 0.9s ease .1s;
    transition: all 0.9s ease .1s;
    opacity: 0;
}
.item.active .intro-text .btn {
    -webkit-transform: translateY(-0px);
    -moz-transform: translateY(-0px);
    -ms-transform: translateY(-0px);
    -o-transform: translateY(-0px);
    transform: translateY(-0px);
    opacity: 1;
}
.intro-text p {
    transform: scale(0.5);
    -webkit-transition: all 0.9s ease .1s;
    -moz-transition: all 0.9s ease .1s;
    -ms-transition: all 0.9s ease .1s;
    -o-transition: all 0.9s ease .1s;
    transition: all 0.9s ease .1s;
    opacity: 0;
}
.item.active .intro-text p {
    transform: scale(1);
    opacity: 1;
}

.intro-text .btn:hover {
    -webkit-transition: all 0.3s ease .1s;
    -moz-transition: all 0.3s ease .1s;
    -ms-transition: all 0.3s ease .1s;
    -o-transition: all 0.3s ease .1s;
    transition: all 0.3s ease .1s;
}






/* ----------------------------------------------------------------------------------------
*                                   13. Fun Facts area css
* --------------------------------------------------------------------------------------- */
.fun-facts-area {
    background-color: #f7f7f7;
}

.fun-fact i.fa {
    display: none;
}

.fun-fact i.fa,
.fun-fact img {
    color: #007bb6;
    float: left;
    width: 68px;
    margin-right: 20px;
    font-size: 45px;
    overflow: hidden;
    line-height: 70px;
    margin-top: 5px;
}

.fun-fact p {
    font-size: 18px;
}

.fun-fact h3 {
    margin: 0px;
    color: #007bb6;
    font-size: 36px;
}








