/*
Typography
=========================== */
body {
   font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
}
#top {
	background-color:#0C1830;	
	padding:10px;	
}
.top {
	font-family: 'Montserrat', sans-serif;
	color:#FFF;		
	font-size:14px;
	padding-top:5px;
}
.h3 {
	font-family: 'Lobster', cursive;
	line-height:30px;
}
/***** BUTTON *****/
.btn.btn-success {
	font-family: 'Montserrat', sans-serif;
	font-size:15px;
    color: #ffffff;
    background-color: #5e2a86;
    background-image: linear-gradient(to bottom, #5e2a86, #5e2a86);
    border-color: #5e2a86 #5e2a86 #5e2a86;
}
.btn.btn-success:hover {
    color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size:15px;
    background-color: #5e2a86;
    background-image: linear-gradient(to bottom, #5e2a86, #5e2a86);
    border-color: #5e2a86 #5e2a86 #5e2a86;
}
/***** HYPERLINK *****/

A.bgwhit {color:#252525;}
A.bgwhit:link {text-decoration: none; color:#252525;}
A.bgwhit:visited {text-decoration: none; color:#252525;}
A.bgwhit:hover {text-decoration: none; color:#252525;}
A.bgwhit:active {text-decoration: none; color:#252525;}


A.bgdark {color:#fff;}
A.bgwhit:link {text-decoration: none; color:#fff;}
A.bgwhit:visited {text-decoration: none; color:#fff;}
A.bgwhit:hover {text-decoration: none; color:#000;}
A.bgwhit:active {text-decoration: none; color:#fff;}


A.bggray {color:#F6F4F4;}
A.bggray:link  {text-decoration: none; color:#F6F4F4;}
A.bggray:visited {text-decoration: none; color:#F6F4F4;}
A.bggray:hover {text-decoration: none; color:#F6F4F4;}
A.bggray:active {text-decoration: none; color:#F6F4F4;}

.panel {
	  margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);

}
.panel-body {
    padding: 20px;
}

.panel-danger > .panel-heading {

    color: #000;
    background-color: #FDA702;
    border-color: #ebccd1;

}

#content {
	background-image:url(../images/bg-content.png);
	background-repeat:repeat;
}

#subtitle {
	background-image:url(../images/bg-subtitle.jpg);
	padding:10px;
	height:400px;
	font-family: 'Montserrat', sans-serif;
	color:#FFF;	
	padding-top:200px;
}
	
/***** tours hover *****/
.box{
    background-color: rgba(4, 20, 82, 0.9);
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}
.box img{
    width: 100%;
    height: auto;
    -webkit-transition: all 0.35s ease 0.2s;
    transition: all 0.35s ease 0.2s;
}
.box:hover img{
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation: loading-1 0.45s linear forwards;
    animation: loading-1 0.45s linear forwards;
}
.box .box-content{
    width: 100%;
    padding: 0 30px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: scale(0.5) translate(0%, -50%);
    transform: scale(0.5) translate(0%, -50%);
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}
.box:hover .box-content{
    opacity: 1;
    -webkit-transform: scale(1) translate(0, -50%);
    transform: scale(1) translate(0, -50%);
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}
.box .title{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px 0;
	color:#F8C847;
	
}
.box .description{
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 15px;
	color:#fff;
}
.box .title,
.box .description{
    line-height: 24px;
}
.box .read-more{
    display: inline-block;
    border: 2px solid #fff;
    padding: 8px 16px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}
.box .read-more:hover{
    background: #fff;
    color: #053a5c;
}
@-webkit-keyframes loading-1{
    50%{
        -webkit-transform: scale(0.8) translateX(0%);
        transform: scale(0.8) translateX(0%);
        opacity: 0.5;
    }
    100%{
        -webkit-transform: scale(0.8) translateX(-150%);
        transform: scale(0.8) translateX(-150%);
        opacity: 0.5;
    }
}
@keyframes loading-1{
    50%{
        -webkit-transform: scale(0.8) translateX(0%);
        transform: scale(0.8) translateX(0%);
        opacity: 0.5;
    }
    100%{
        -webkit-transform: scale(0.8) translateX(-150%);
        transform: scale(0.8) translateX(-150%);
        opacity: 0.5;
    }
}
@media only screen and (max-width: 990px){
    .box{ margin-bottom: 30px; }
}
@media only screen and (max-width: 360px){
    .box .title{ font-size: 18px; }
    .box .read-more{ padding: 3px 16px; }
}
/***** parallax *****/
.parallax {
    /* The image used */
    background-image: url(../images/bg-package.jpg);

    /* Set a specific height */
    min-height: 350px; 
	padding:10px;


    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/***** SLIDER *****/
<!--slider-->
.jk-slider{
    width:100%;
	
}
/*          Hero Headers        */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;   
    text-shadow: 1px 1px 0 rgba(0,0,0,.75);
      -webkit-transform: translate3d(-50%,-50%,0);
         -moz-transform: translate3d(-50%,-50%,0);
          -ms-transform: translate3d(-50%,-50%,0);
           -o-transform: translate3d(-50%,-50%,0);
              transform: translate3d(-50%,-50%,0);
}
.hero h1 {
    font-size: 45px;
	color:#FFF;	  
    font-weight: bold;
    margin: 0;
    padding-bottom: 20px;
}

.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s; 
}
.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out .1s;
       -moz-transition: 2s all ease-in-out .1s; 
        -ms-transition: 2s all ease-in-out .1s; 
         -o-transition: 2s all ease-in-out .1s; 
            transition: 2s all ease-in-out .1s;    
}
/*****************/
.h1 {
	font-family: 'Raleway', sans-serif;
	line-height:32px;
	color:#292828;
	font-weight:800;
	padding:15px;
}

.h2 {
	font-family: 'Raleway', sans-serif;
	line-height:32px;
	color:#212121;
	font-weight:700;
	padding-bottom:10px;
}


.h3 {
	font-family: 'Raleway', sans-serif;
	line-height:32px;
	color:#FFDE01;
	font-weight:600;
	padding-bottom:10px;
}
	
.h3-toursheading {
	font-family: 'Raleway', sans-serif;
	line-height:24px;
	color:#232323;
	font-weight:500;	
}




p{
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	line-height:32px;
	color:#292828;	
}
.p{
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	line-height:32px;
	color:#292828;	
}

.p-panel{
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	line-height:25px;
	color:#292828;	
	padding-top:5px;	
	
}



.welcome{
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	line-height:32px;
	color:#292828;
	width:80%;	
}
.section{
    padding: 70px 0;
    position: relative;
}




#footer {
	background-image:url(../images/bg-footer.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	padding:15px;
	
}
#copyright {	
	background-color:#000103;
	padding:7px;
	font-family: 'Montserrat', sans-serif;
	font-size:13px;
	color:#FFF;	
}


/***** SIDE PART*****/

.box-side {
	background-color:#FFF;
	padding-bottom:10px;
}


/***** SOCIAL *****/
@import "//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css";

.social {
    margin: 0;
    padding: 0;
}

.social ul {
    margin: -15;
    padding: 0px;
}

.social ul li {	
    margin-top:0px;
	margin-left:0px;
    list-style: none outside none;
    display: inline-block;
}

.social i {
    width: 36px;
    height: 36px;
    color: #FFF;
    background-color: #DD221F;
    font-size: 19px;
    text-align:center;
    padding-top: 12px;
    border-radius: 50%;
    -moz-border-radius: 20%;
    -webkit-border-radius: 20%;
    -o-border-radius: 50%;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.social i:hover {
    color: #FFF;
    text-decoration: none;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.social .fa-facebook:hover {
    background: #4060A5;
}


.social .fa-youtube:hover {
    background: #FF1F25;
}

/