/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    padding-top: 71px;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.form-control {
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 13px;
    padding: 9px 15px;
    border-radius: 0;
    border: 1px solid #ccc;
    background-color: transparent;
}

.form-control:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: #F44336;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d2d2d2;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d2d2d2;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #d2d2d2;
}

label {
    font-weight: normal;
    margin: 0 0 5px 0;
}

.Y-Center-outer {
    display: table;
    height: 100%;
}

.Y-Center-inner {
    display: table-cell;
    vertical-align: middle;
}

.Y-Center {
    position: absolute;
    top: 50%;

    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.XY-Center {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;

    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.space {padding: 50px 0;}

/* btn
================================================== */
.btn {
    border-radius: 0;
    padding: 8px 40px;
    font-weight: 300;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn i {
    margin-right: 5px;
}

.btn-primary {
    background-color: #b93a41;
    border-color: #b93a41;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #a23238;
    border-color: #a23238;
}

.btn-primary:focus,
.btn-primary:active {
    background-color: #b93a41 !important;
    border-color: #b93a41 !important;
    box-shadow: none !important;
}

.btn-outline-primary {
    color: #333;
    border: 1px solid #63FE3C;
    font-size: 14px;
}

.btn-outline-primary:hover {
    background-color: #fff;
    border: 1px solid #63FE3C;
    color: #333;
}

.btn-outline-primary:focus {
    box-shadow: 6px 6px 0 rgb(233, 255, 228);
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Open Sans', sans-serif; font-weight: bold; color: #000;}

h1 {font-size: 26px; line-height: 30px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 18px; line-height: 28px;}
h5 {font-size: 16px; line-height: 24px;}
h6 {font-size: 14px; line-height: 20px;}

strong {font-weight: 700;}

a {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #F44336;
    outline: 0;
    text-decoration: none;
}

p {
    color: #000;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
}

.heading {
    color: #000;
    font-size: 34px;
    line-height: 38px;
    font-weight: 900;
    position: relative;
    margin-bottom: 15px;
}

main {
    min-height: 450px;
}

/* header
================================================== */
header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;

    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.15);
    -ms-box-shadow: 0 1px 4px rgba(0,0,0,.15);
    -o-box-shadow: 0 1px 4px rgba(0,0,0,.15);
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

header:before {
    content: "";
    background-color: #B93A41;
    position: absolute;
    top: 0;
    left: 0;
    width: 28%;
    height: 100%;
}

header:after {
    content: "";
    background-color: #B93A41;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 500px;
    transform: rotate(60deg);
    border-top: 10px solid #1f374c;
}

header .logo {
    display: inline-block;
    z-index: 6;
    position: relative;
    margin: 11px 0 0 0;
}

header .logo img {
    max-height: 50px;
}

header nav {
    text-align: right;
}

header nav ul {
    font-size: 0;
}

header nav ul li {
    display: inline-block;
}

header nav ul li:last-of-type a:after {
    display: none;
}

header nav ul li a:hover,
header nav ul li.active a {
    color: #b93a41;
}

header nav ul li a {
    position: relative;
    display: block;
    padding: 25px 25px;
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
}

header nav ul li a:after {
    content: "";
    height: 20px;
    position: absolute;
    top: 26px;
    right: 0;
    border-right: 1px solid #adadad;
}

.intro {
    background-image: -webkit-gradient(linear, left top, left bottom, 
        from(rgba(0, 0, 0, .8)), 
        to(rgba(0, 0, 0, .8))), url('../imgs/intro-bgr-02.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .8), 
        rgba(0, 0, 0, .3)), url('../imgs/intro-bgr-02.jpg');
    background-position: center center;
    background-size: cover;
    height: 600px;
}

.intro h1 {
    color: #fff;
    font-size: 40px;
    line-height: 44px;
    margin: 150px 0 0 0;
    font-weight: 900;
    position: relative;
}

.intro h1:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    background-color: #fff;
    width: 60px;
    height: 5px;
    border-left: 20px solid #b93a41;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.intro h1:hover:before {
    border-left-width: 30px;
}

.recent {
    margin-top: -150px;
}

.recent .recent-video {
    position: relative;
    padding: 60px 40px;
    background: url('../imgs/video-thumb.jpg') top center no-repeat;
    background-size: cover;
}

.recent .recent-video:before {
    content: "";
    background-color: rgba(185, 58, 65, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recent .recent-news {
    position: relative;
    background: url('../imgs/news-thumb.jpg') top center no-repeat;
    padding: 60px 40px;
    background-size: cover;
}

.recent .recent-news:before {
    content: "";
    background-color: rgba(29, 68, 101, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recent h3 {
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 10px 0;
}

.recent p {
    margin: 0;
    color: #d2d2d2;
}

.recent a {
    color: #fff;
    border-bottom: 1px dotted #fff;
    display: inline-block;
    margin: 15px 0 0 0;
}

.recent a:hover {
    border-style: solid;
}

.recent a i {
    margin-right: 7px;
}

.recent img {
    width: 100px;
    margin: 0 auto;
    display: block;
}

.newsletter {    
    padding: 30px 40px;

    background-color: #1f374c;
}

.newsletter h3 {
    color: #fff;
}

.newsletter p {
    margin: 0;
    color: #d8d8d8;
    font-size: 13px;
    line-height: 18px;
}

.newsletter form {
    position: relative;
    margin: 8px 0 0 0;
}

.newsletter form .fa-envelope-o {
    color: #32526d;
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 18px;
}

.newsletter form .form-control {
    padding: 15px 15px;
    border-width: 1px;
    border-color: #32526d;
    background-color: #1b3144;
    padding-left: 45px;
}

.newsletter form button {
    position: absolute;
    top: 6px;
    right: 6px;
}

.articles {
    padding-top: 0;
}

.index-news h3 {
    margin: 0 0 10px 0;
}

.index-news ul li {
    margin: 0 0 20px 0;
    display: table;
    width: 100%;
}

.index-news ul li figure img {
    float: left;
    width: 65px;
    margin-right: 15px;
}

.index-news ul li figure figcaption {
    display: table-cell;
}

.index-news ul li figure figcaption a {
    color: #000;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    display: block;
}

.index-news ul li figure figcaption a:hover {
    color: #B93A41;
}

.index-news ul li figure figcaption .date {
    font-size: 12px;
    font-style: italic;
    margin: 5px 0 0 0;
    color: #a9a9a9;
}

.index-editions h3 {
    margin: 0 0 10px 0;
}

.index-editions li {
    margin-bottom: 20px;
}

.index-editions li a {
    display: block;
    overflow: hidden;
}

.index-editions li a:hover img {

}

.index-editions li a img {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}


.editions  h3 {
    margin: 0 0 10px 0;
}

.editions  li {
    margin-bottom: 30px;
}

.editions li a {
    display: block;
    color: #333;
}

.editions li a:hover {
    color: #b93a41;
}

.editions li h3 {
    margin: 10px 0 0 0;
    font-size: 16px;
    line-height: 22px;
}

.editions .filter {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 3px solid #1f374c;
}

.editions li a img {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.index-videos {
    margin: 30px 0 0 0;
}

.index-videos h3 {
    margin: 0 0 10px 0;
}

.index-videos li {
    margin-bottom: 20px;
}

.index-videos li a {
    position: relative;
    display: block;
}

.index-videos li a:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-videos li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    width: 80px;
    height: 80px;
    background: url('../imgs/icons/video.svg') no-repeat;
    background-size: 80px;
    opacity: .7;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.index-videos li a:hover:after {
    opacity: 1;
}


.blog-view h1 {
    margin: 0 0 15px 0;
    font-size: 22px;
    line-height: 28px;
}

.videos li {
    margin-bottom: 30px;
}

.videos li h3 {
    margin: 10px 0 0 0;
    font-size: 16px;
    line-height: 22px;
}

.videos li h3 a {
    color: #333;
}

.videos li h3 a:hover {
    color: #B93A41;
}

.videos li .media {
    position: relative;
    display: block;
}

.videos li .media:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videos li .media:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    width: 80px;
    height: 80px;
    background: url('../imgs/icons/video.svg') no-repeat;
    background-size: 80px;
    opacity: .7;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.videos li .media:hover:after {
    opacity: 1;
}


.blog-view article {
    padding-right: 30px;
}

.blog-view .blog-media {
    float: right;
    max-height: 550px;
    margin-left: 30px;
    margin-bottom: 20px;
}

.blog-view .blog-metas .meta-item {
    margin: 0 0 10px 0;
    font-style: italic;
    font-size: 12px;
    color: #c3c3c3;
}

.recently-blog .recently-blog-item {
    margin: 0 0 30px 0;
}

.recently-blog .recently-blog-item figure figcaption a {
    color: #333;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    display: block;
}

.recently-blog .recently-blog-item figure figcaption a:hover {
    color: #B93A41;
}

.recently-blog .recently-blog-item figure img {
    margin-bottom: 15px;
}

.recently-blog .recently-blog-item figure .meta-item {
    margin: 0 0 5px 0;
    font-style: italic;
    font-size: 12px;
    color: #c3c3c3;
}


.blog-list .blog-list-item {
    margin: 0 0 50px 0;
}

.blog-list .blog-list-item .blog-metas .meta-item {
    margin: 0 0 10px 0;
    font-style: italic;
    font-size: 12px;
    color: #c3c3c3;
}

.blog-list .blog-list-item h3 a {
    color: #333;
}

.blog-list .blog-list-item h3 a:hover {
    color: #B93A41;
}

.blog-list .blog-list-item.left {
    padding-right: 25px;
}

.blog-list .blog-list-item.right {
    padding-left: 25px;
}

.blog-list .blog-list-item h3 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 15px 0;
}


.edition-view .edition-media {
    margin: 0 0 15px 0;
}

.edition-view h1 {
    margin: 0 0 15px 0;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
}

.edition-view p {
    text-align: center;
}

.edition-view .edition-metas .meta-item {
    margin: 0 0 10px 0;
    font-style: italic;
    font-size: 12px;
    color: #c3c3c3;
    text-align: center;
}


.owl-item > div {
    cursor: pointer;
    margin: 24% 15%;
    transition: margin 0.4s ease;
}

.owl-item.center > div {
    cursor: auto;
    margin: 0;
}

.owl-item:not(.center) > div:hover {
    /*opacity: .75;*/
}


/* contacts */
.contact-info {
    font-size: 14px;
    text-align: right;
    margin: 0 0 40px 0;
}

.contact-info ul li {
    margin: 5px 0;
    text-align: center;
}

.contact-info ul li i {
    font-size: 40px;
    margin: 0 0 15px 0;
    color: #1f374c;
}

.contacts label[for=terms] {
    font-weight: 300;
}

.contacts label[for=terms] a {
    font-weight: normal;
}

.contacts label {
    font-size: 12px;
    margin: 0 0 4px 0;
}

.contacts .checkbox {
    padding-left: 3px;
}

.contacts .btn-primary {
    float: right;
}


.about .about-text {
    background: url('../imgs/about.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 70px 0;
    margin: 0 0 50px 0;
}

.about .about-text p {
    margin: 0;
}

.about .container {
    z-index: 5;
}

.about .about-text:before {
    content: "";

    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    background: linear-gradient(to right,rgba(255,255,255,1) 20%,rgba(250,250,250,.95) 50%,rgba(250,250,250,0.1) 80%,rgba(250,250,250,0) 100%);
}

.about .mission {
    position: relative;
    border: 7px solid #1f374c;
    padding: 28px 35px;
    font-size: 16px;
    font-style: italic;
    letter-spacing: 2px;
    color: #000;
    text-align: center;
}

.about .mission:before {
    content: "";
    height: 20px;
    width: 15px;
    background-color: #fff;
    border-left: 2px solid #1f374c;
    border-right: 2px solid #1f374c;
    transform: rotate(-90deg);
    position: absolute;
    top: 50%;
    left: -10px;
    margin-top: -10px;
}

.about .mission:after {
    content: "";
    height: 20px;
    width: 15px;
    background-color: #fff;
    border-left: 2px solid #1f374c;
    border-right: 2px solid #1f374c;
    transform: rotate(-90deg);
    position: absolute;
    top: 50%;
    right: -10px;
    margin-top: -10px;
}


.text h2, text h3, text h4, text h5 {
    margin-bottom: 10px;
}


.page-header {
    padding: 35px 0 0 0;
    text-align: center;
}

.page-header .page-title {
    font-size: 24px;
    line-height: 30px;
}

.page-header .breadcrumb {
    margin: 0;
    padding: 5px 0;
    background-color: transparent;
}

.page-header .breadcrumb li a {
    color: #B93A41;
}


.video-view article iframe {
    width: 100%;
    height: 467px;
    margin: 0 0 15px 0;
}

.video-view article h1 {
    margin: 0 0 15px 0;
    font-size: 22px;
    line-height: 28px;
}


.recently-videos .recently-video-item {
    margin: 0 0 30px 0;
}

.recently-videos .recently-video-item h3 {
    margin: 10px 0 0 0;
    font-size: 16px;
    line-height: 22px;
}

.recently-videos .recently-video-item h3 a {
    color: #333;
}

.recently-videos .recently-video-item h3 a:hover {
    color: #B93A41;
}

.recently-videos .recently-video-item .media {
    position: relative;
    display: block;
}

.recently-videos .recently-video-item .media:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recently-videos .recently-video-item .media:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    width: 80px;
    height: 80px;
    background: url('../imgs/icons/video.svg') no-repeat;
    background-size: 80px;
    opacity: .7;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.recently-videos .recently-video-item .media:hover:after {
    opacity: 1;
}


footer {
    padding: 30px 0;
    background-color: #1f374c;
}

footer .logo {
    margin: 0 auto 20px;
    display: table;
}

footer .logo img {
    max-height: 50px;
}

footer ul {
    font-size: 0;
    text-align: center;
    display: table;
    margin: 0 auto 0;
}

footer ul li {
    display: inline-block;
}

footer ul li:last-of-type a {
    padding-right: 0;
}

footer ul li:first-of-type a {
    padding-left: 0;
}

footer ul li a:hover,
footer ul li.active a {
    color: #fff;
}

footer ul li a {
    position: relative;
    display: block;
    padding: 0 18px;
    text-transform: uppercase;
    color: #d4d4d4;
    font-size: 13px;
}


.cookies {
    position: fixed;
    bottom: 0;
    z-index: 5;
    background-color: #222;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    display: none;
}

.cookies p {
    color: #c7c7c7;
    margin: 0;
    font-size: 12px;
    display: inline-block;
}

.cookies a {
    text-decoration: underline;
    color: #fff;
}

.cookies a:hover {
    opacity: .8;
}

.cookies .accept {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    color: #fff;
    padding: 3px 15px;
    background-color: #b93a41;
    border-color: #b93a41;
    text-decoration: none;
}

/* scrollTop
================================================== */
.scroll-top {
    font-size: 20px;
    line-height: 35px;
    display: block;
    position: fixed;
    text-align: center;
    right: 25px;
    bottom: 15px;
    color: #06a84e;
    cursor: pointer;
    z-index: 10000;
    height: 40px;
    width: 40px;
    border: 1px solid #06a84e;
    opacity: 0;
    bottom: -32px;

    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;

    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.owl-nav {
    text-align: center;
    position: relative;
    top: -15px;
}

.owl-nav button {
    font-size: 50px !important;
    line-height: 1 !important;
    outline: none;
}

.owl-nav button span {
    padding: 0 15px !important;
}

.page-item.active .page-link {
    background-color: #b93a41;
    border-color: #b93a41;
}

.page-link {
    color: #b93a41;
}

.page-link:hover {
    color: #b93a41;
}

.page-link:focus {
    box-shadow: none;
}