
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://use.fontawesome.com/releases/v5.0.8/css/all.css');


html, body{
	font-family: Montserrat, Helvetica, Arial, Lucida, sans-serif;
	font-size:14px;
	    text-align: justify;
}


body{
	background: #222222;
}



h1, h2, h3{
	color:#000000;
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
	text-transform: uppercase;
}

h2{
    margin-bottom:15px;
}


.h4, h4 {
    font-size: 1.2rem;
	font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
}

a{
	color:#F6594D;
}

a:hover,
a.active{
	text-decoration:none;
    color:#ab453d;
}

/** *****************************************
 ** BOOTSTRAP
 ** *****************************************/


.btn-primary{
    background: #F6594D;
    border-color: #F6594D;
}

.btn-primary:hover {
    background-color: #ab453d;
    border-color: #ab453d;
}

.btn-secondary{
    background: #5a5a5a;
   /* border-color: #344A62;*/
}

.btn-secondary:hover {
    color: #fff;
    background-color: #dc251c;
    border-color: #545b62;
}



.btn-outline-primary {
    color: #F6594D;
    border-color: #F6594D;
}

.btn-outline-primary:hover {
    color: #FFFFFF;
    background: #F6594D;
    border-color: #F6594D;
}

.page-link {
    padding:10px;
}

.page-item.active .page-link {
    background: #F6594D;
    border-color: #F6594D;
    color:#FFFFFF;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background: #F6594D;
    border-color: #F6594D;
}

kbd{
    background:#F6594D;
    color:#FFFFFF;
}

/***********************************************
 ** HEADER
 ***********************************************/

header{
    z-index: 900;
    box-shadow: 0px 2px 4px #333333;
}



@media (max-width: 991px){
    body{
        padding-top:0px;
    }
    header{
        position:static;
    }
}

/***********************************************
 ** HEADER - NAVBAR
 ***********************************************/
header .navbar{
    padding-top:0;
    padding-bottom:0;
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
    background:#FFF;
}

/***********************************************
 ** HEADER - LOGO
 ***********************************************/
 header .navbar-brand{
    padding-top:0px;
    padding-bottom:0px;
 }

header .navbar-brand .logo{
    height: 120px;
   /* margin: 10px 0px;*/
}

@media (max-width: 1199px){
    header .navbar-brand .logo{
        height:50px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 1199px){
    header .navbar-brand .logo{
        height:50px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
@media (max-width: 450px){
    header .navbar-brand .logo{
        height:75px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

/***********************************************
 ** HEADER - TOGGLER (MOBILE)
 ***********************************************/
header .navbar-toggler{
    padding: 12px 12px;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    color: #000;
    font-size:28px;
}
header .navbar-toggler .fas{
    width:28px;
    height:28px;
}


/***********************************************
 ** HEADER - NAVIGATION
 ***********************************************/
header .navbar-collapse{
    align-self: flex-end;
}

header .navbar-nav .nav-item .nav-link {
    padding: 0px 12px;
    color: #000000;
    text-transform: uppercase;
    font-size: 19px;
    transition: all 0.5s;
    line-height: 127px;
}

header .navbar-nav .nav-item:hover>.nav-link{
    color: #F6594D;
    transition: all 0.5s;
}



header .navbar-nav .dropdown-menu{
    border-radius: 0px;
    background: rgba(255,255,255,0.9);
    margin:0px;
}

header .navbar-nav .dropdown-item{
    font-size:20px;
}

header .navbar-nav .dropdown-item:hover{
    color:#F6594D;
    transition: all 0.5s;
}

/*@media (min-width: 992px){
    header .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
    }
}*/

@media (max-width: 1199px){
    header .navbar-nav .nav-item .nav-link{
        font-size: 17px;
    }
    header .navbar-nav .dropdown-item{
        font-size:17px;
    }
}

@media (max-width: 991px){
    header .navbar-nav .dropdown-menu{
        background: rgba(255,255,255,0.1);
    }
    header .navbar-nav .dropdown-menu a{
        color:#FFFFFF;
    }
}

header .navbar-toggler .header-mobile{
    padding-bottom:20px;
}



/***********************************************
 ** HEADER - NAVIGATION MOBILE
 ***********************************************/

header .header-mobile{
    padding-bottom:20px;
}


@media (max-width: 991px) {
     header .navbar-collapse {
        opacity: 0;
        position: fixed;
        z-index: 200;
        background-color: #FFFFFF;
        width: 250px;
        transform: translateX(-250px);
        height: 100%;
        overflow-y: auto;
        top: 0;
        left: 0;
        padding:20px;
    }

    header .navbar-collapse.toggling {
        transition: transform 0.35s, opacity 0.35s;
    }

    header .navbar-nav .nav-item .nav-link{
        padding:10px 0px;
        line-height:inherit;
    }
}

.nav-mask {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.25s, width 0s 0.25s, height 0s 0.25s;
}

.has-active-menu {
    overflow: hidden;
    }

.has-active-menu .nav-mask {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.25s;
}

.has-active-menu .navbar-collapse {
    opacity: 1;
    transform: translateX(0);
}


/** *****************************************
 ** FOOTER
 ** *****************************************/

footer{
    background-color: #ffffff;
    border-top: 2px solid #ff0000;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000000;
    font-size: 13px;
}

footer h3{
    font-size: 22px;
    text-transform: uppercase;
    color: #3e3d3d;
    margin-bottom:20px;
}


footer .presentation{
    color:#000;
}

footer .presentation .logo{
    text-align:center;
    margin-bottom: 20px;
}

footer .presentation .logo img{
    width:100%;
}

footer .presentation .text{
    text-align:justify;
    margin-top:20px;
    font-size:12px;
}

footer .navigation li a{
    color: #000;
    font-size:13px;
    display:block;
    margin-bottom:5px;
}

footer .navigation li a:hover{
    color: #FF0000;
}

footer .contactus .icon{
    width:30px;
    font-size: 20px;
}

footer .contactus .icon i{
    margin-right:9px;
}

footer .contactus li{
    margin-bottom:5px;
    color:#999999;
}


/***********************************************
 ** SIGNATURE
 ***********************************************/

.signature{
    border-top: 1px solid #666666;
    padding-top:15px;
    padding-bottom:15px;
    color: #999999;
}

.signature a{
    color: #999999;
}
.signature a:hover{
    color: #FFFFFF;
}

.signature .social a{
    font-size:32px;
    margin-left:8px;
}


.signature .languages .dropdown-menu {
    background: rgba(255,255,255,0.9);
}

.signature .languages button{
    font-size:12px;

}

.signature .languages .dropdown-item{
    color: #333333;
    font-size:14px;
}

.signature .languages .dropdown-item .icon{
    width:25px;
    display: inline-block;
}

.signature .languages .dropdown-item:hover {
    background: #999999;
    color: #FFFFFF;
}


.signature .copyright{
    line-height:28px;
    font-size:12px;
}


/***********************************************
 ** BLOCKS
 ***********************************************/

.block-primary,
.block-secondary,
.block-gray,
.block-lightgray{
	background: #ffffff;
    padding: 20px;
    color: #000000;
    border-radius: 5px;
    border: 1px solid #DDD;
}

.block-secondary{
    background: #FFF;
}

.block-gray{
    background: #DDDDDD;
    color:#222222;
}

.block-lightgray{
    background: #EEEEEE;
    color:#222222;
}

.block-primary h2,
.block-secondary h2{
    color:#3c3a3a;
}

.block-primary .header,
.block-secondary .header{
    
}

a.block-lightgray:hover{
    background: #344A62;
    color:#FFFFFF;
}
a.block-lightgray:hover h2{
    background: #344A62;
    color:#FFFFFF;
}

.block-sample{
    border-left: 5px solid #F6594D;
    margin: 10px 0px 10px 50px;
    padding: 15px 0px 5px 20px;
    background: #EEEEEE;
}


/***********************************************
 ** MAIN
 ***********************************************/

.main{
    padding:20px 0px;
    background: #FFFFFF;
}

/***********************************************
 ** MAIN HEADER
 ***********************************************/
.mainHeader{
    background-repeat: no-repeat;
    background-size: cover;
    /*background-color: #344A62;*/
    position: relative;
    background-position: center;
    background-attachment: fixed;
	min-height: 200px;
    background: url(../images/bg-header.jpg);
}

.mainHeader .in{
    padding: 60px 0px;
}

.mainHeader h1{
    color:#FFFFFF;
    text-shadow: 0px 0px 10px #000000;
	text-transform: uppercase;
    font-size: 50px;
}

.mainHeader h2{
    color:#FFFFFF;
    text-shadow: 0px 0px 10px #000000;
	text-transform: uppercase;
    font-size: 26px;
}

/*@media (max-width: 1199px) {
    .mainHeader .in{
        padding: 100px 0px;
    }
}

@media (max-width: 991px) {
    .mainHeader .in{
        padding: 70px 0px;
    }
}

@media (max-width: 767px) {
    .mainHeader {
        background-image: none!important;

    }
    .mainHeader .in{
        padding: 10px 0px;
    }
    .mainHeader h1{
        font-size:24px;
    }
    .mainHeader h2{
        font-size:18px;
    }
}*/

/***********************************************
 ** CONTACT
 ***********************************************/
.contact-form form{
    margin-top: 20px;
}

.contact-form .submit{
    margin-top:20px;
    text-align: center;
}

.contact .container>.row>div{
    margin:10px 0px;
}

.contact-form .has-warning .form-control{
    background-color: #f9deb8;
}

#map{
    width:100%;
    height:400px;
}

/***********************************************
 ** NEWSLETTER
 ***********************************************/

.newsletter-form form{
    margin-top: 20px;
}

.newsletter-form .submit{
    margin-top:20px;
    text-align: center;
}

.newsletter-form .has-warning .form-control{
    background-color: #f9deb8;
}

/***********************************************
 ** NAV DEFAULT
 ***********************************************/
.nav-default{
    font-size:18px;
    text-transform: uppercase;
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
}

/***********************************************
 ** LIST
 ***********************************************/
.list-cards{
    margin-bottom: -3rem;
}

.list-cards .card-img-top:hover{
    opacity: 0.85;
    transition: all 0.5s;
}

.list-cards .card-info{
    color:#999999;
    font-size:12px;
    padding:0px 0px 10px 0px;
    border-bottom: #999999 solid 1px;
    margin-bottom:10px;
    margin-right:10px;
}

.list-cards .card-title{
    font-size:20px;
}

.list-cards .card-title a{
    color:#333333;
}

.list-cards .card-title a:hover{
    color:#ab453d;
}

.list-cards .card-text{
    font-size:13px;
    margin-bottom:10px;

}

.list-cards .card-link{
    font-size:16px;
    text-transform: uppercase;
    font-family: Oswald, Helvetica, Arial, Lucida, sans-serif;
    margin-top:auto;
    text-align: center;
}

.list-cards .pagination{
    margin-top:1rem;
}



/***********************************************
 ** NEWS DETAIL
 ***********************************************/
.newsDetail .info{
    color:#999999;
    padding:0px 0px 10px 0px;
    border-bottom: #999999 solid 1px;
    margin-bottom:10px;
}

.newsDetail .text{
    text-align: justify;
    margin-bottom:20px;
}

.newsDetail .photos>div:nth-child(2){
    margin-top:15px;
}



/***********************************************
 ** BOOK DETAIL
 ***********************************************/
.bookDetail{

}


.bookDetail .text{
    text-align: justify;
    margin-bottom:20px;
}

.bookDetail .photos>div:nth-child(2){
    margin-top:15px;
}


/***********************************************
 ** MODAL
 ***********************************************/

/** CENTER VERTICAL **/
.modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
 /* @media(max-width: 768px) {
    min-height: calc(100vh - 20px);
  }*/
}

.modal .modal-content{
    background:#344A62;
    color:#FFFFFF;
    border-radius: 10px;
}

.modal .modal-title{
    background: url("../images/logo-small.png");
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 30px;
    font-size: 16px;
}

.modal .modal-footer{
    border-top:0px;
}
.modal .modal-header{
    border-bottom:0px;
    background:#344A62;
}

.modal-header .close{
    color:#FFFFFF;
}

.modal .modal-body{
    text-align:center;
}

.modal .modal-footer .fab{
    color:#CCCCCC;
    font-size: 29px;
    margin-right:5px;
}

.modal .modal-footer .fab:hover{
    color:#F6594D;
    transition: all 0.5s;
}


/*************************************
 ** BREADCRUMB
 *************************************/
.breadcrumb {
    padding: 0rem 0rem;
    margin-bottom: 0rem;
    list-style: none;
    background-color: transparent;
    color: #000000;
    display:none;
}

/***********************************************
 ** TINYMCE
 ***********************************************/
.tinymce > h2:first-child{
    margin-top:0px;
}
.block .tinymce > :last-child{
    margin-bottom:0px;
}
.tinymce .responsive{
    max-width:100%;
}


.mce-content-body{
    padding:15px;
    background: #FFFFFF;
}

.mce-content-body shortcode{
    border:dashed 2px  #999999;
    background:#EEEEEE;
    text-align: center;
    padding: 40px;
    margin:15px 0px;
    font-size: 18px;
    width:100%;
    display: block;
}

body.tinymce{
    background: #FFFFFF;
}

/*************************************
 ** DEBUG
 *************************************/
.debug{
    display:none;
    color:#FFFFFF;
}

/*************************************
 ** HOME - SLIDER
 *************************************/


.homeSlider .tp-caption.tp-title,
.homeSlider .tp-caption.tp-subtitle,
.homeSlider .tp-caption.tp-link{
    z-index: 7;
    white-space: nowrap;
    text-transform:left;
    font-family:'Oswald';
    color:white;
    text-shadow: 2px 2px 3px #000;
    text-transform: uppercase;
}

.homeSlider .tp-caption.tp-link{
    background-color: rgba(0,0,0,0);
    border-color: #CCCCCC;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
    text-decoration: none;
    background:rgba(0,0,0,0.5);
    color:#CCCCCC;
}

.homeSlider .tp-caption.tp-link:hover{
    border-color: #FFFFFF;
    color:#FFFFFF;

}

@media (max-width: 767px) {
    .homeSlider .tp-bullets{
        display:none;
    }
}
/*************************************
 ** HOME - WELCOME
 *************************************/

.homeWelcome{
    background:#000000;

}
.homeWelcome h2{
    text-align:center;
    color:#FFFFFF;
    padding:10px;
    cursor:pointer;
    margin:0px;
}
.homeWelcome h2 > span{
    font-weight: bold;
    text-transform: uppercase;

}

/*************************************
 ** HOME - Article
 *************************************/

.homeArticle{
	padding: 40px 0px 40px 0px;
    background: #333;
    color:#FFFFFF;
}

.homeArticle h1 {
    color: #FFFFFF;
}

.homeArticle h2 {
    margin-bottom: 15px;
    font-size: 19px;
    color: #ffffff;
    text-transform: uppercase;
}

.homeArticle .text {
    margin: 20px 0px;
    text-align: justify;
    line-height: 24px;
}

/*************************************
 ** HOME - Partner
 *************************************/

.homePartner{
    padding:30px 0px 20px 0px;
    background:#FFFFFF;
}

.homePartner h1{
    text-align: center;
}


/*************************************
 ** IMAGES - EFFECT
 *************************************/
img.effect-bw{
    /* filter: url(filters.svg#grayscale); Firefox 3.5+ */
    filter: gray; /* IE5+ */
    -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
    -webkit-transition: all .5s ease-in-out;
}

img.effect-bw:hover {
    filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.1);
}

/***********************************************
 ** FANCYBOX
 ***********************************************/
.fancybox-container{
	margin-left:-5px;
	margin-right:-5px;
	margin-bottom:15px;
}

.fancybox-container .fancybox-box:first-child{
    width: 100%;
}

.fancybox-container .fancybox-box{
	width:20%;
	float:left;
	padding: 5px;
}

.fancybox-container .fancybox-box a{
	border: 3px solid #FFFFFF;
	display: block;

}

/*************************************
 ** ROYAL SLIDER
 *************************************/
.royalSlider .rsThumbsHor{
    bottom: 0px;
    position: absolute;
    background: rgba(20,20,20,0.5);
    padding: 5px;
    height:auto;
 }

.royalSlider .rsThumb {
    width: 80px;
    height: 60px;
}
.royalSlider .rsThumb.rsNavSelected{
    background:#000000;
}








