/* Google fonts */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500&display=swap');

/* General */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000105;
    line-height: 1.4;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
}

a,
*::before,
*::after,
img,
span,
input,
button,
.navbar,
.fixedmenu,
.tp-bullet,
.owl-dot,
.owl-prev,
.owl-next {
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
}

::selection {
    background: #333 !important;
    color: #fff;
}

main {
    flex: 1;
}
main.page-content {
    padding-bottom: 60px;
}
body.portal main.page-content {
    padding-bottom: 0;
}
section {
    position: relative;
    overflow: hidden;
}

.section-pad {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-subpad {
    padding-top: 180px;
    padding-bottom: 120px;
}

.section-top-margin {
    margin-top: 7.5rem;
}
.section-dark {
    background-color: #000;
}

a {
    color: inherit;
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

p:last-child {
    margin-bottom: 0 !important;
}

.fa,
.far,
.fas {
    display: inline;
}

.blue p a,
.blue ul a {
    color: #0292e2;
}

.blue a:hover,
.blue a:focus {
    color: #000105;
    border-bottom: 2px solid #0292e2;
}

.yellow p a,
.yellow ul a {
    color: #FFBF00;
}

.yellow a:hover,
.yellow a:focus {
    color: #FFBF00;
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

.no-transition * {
    transition-timing-function: initial;
    -moz-transition-timing-function: initial;
    -webkit-transition-timing-function: initial;
    -o-transition-timing-function: initial;
    -ms-transition-timing-function: initial;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    -ms-transition-duration: 0s;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    width: 12px;
    background: white;
    border-left: 0px solid white;
    border-right: 0px solid white;
}

::-webkit-scrollbar-thumb {
    background: #FFBF00;
    width: 0;
    height: 25%;
}

/* overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* opacity */
.opacity-full {
    opacity: 1;
}

.opacity-3 {
    opacity: .3;
}

.opacity-4 {
    opacity: .4;
}

.opacity-5 {
    opacity: .5;
}

.opacity-6 {
    opacity: .6;
}

.opacity-7 {
    opacity: .7;
}

.opacity-8 {
    opacity: .8;
}

.opacity-9 {
    opacity: .9;
}

/* button */
.btn {
    -webkit-appearance: initial;
    overflow: hidden;
    z-index: 2;
    display: inline-block;
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    border: 2px solid transparent;
    letter-spacing: .5px;
    line-height: inherit;
    border-radius: 0;
    text-transform: uppercase;
    width: auto;
    font-weight: 500;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease !important;
    transition: all .5s ease !important;
}

.btn-long {
    width: 100%;
}

.btn-yellow {
    letter-spacing: 2px;
    padding: 10px 25px;
    color: #fff;
    background-color: #f6b801;
    border: 1px solid transparent;
    border-radius: 0px;
    -webkit-transition: .5s ease !important;
    -o-transition: .5s ease !important;
    transition: .5s ease !important;
}

.btn-yellow:hover {
    color: #FFBF00;
    background-color: #000105;
}

.btn-yellow-blue {
    letter-spacing: 2px;
    padding: 10px 25px;
    color: #fff;
    background-color: #f6b801;
    border: 1px solid transparent;
    border-radius: 0px;
    -webkit-transition: .5s ease !important;
    -o-transition: .5s ease !important;
    transition: .5s ease !important;
}

.btn-yellow-blue:hover {
    color: #fff;
    background-color: #0292e2;
}

.btn-blue,
.btn.btn-primary.rounded-pill.green-btn {
    letter-spacing: 2px;
    padding: 10px 25px;
    color: #fff;
    background-color: #0292e2;
    border: 1px solid transparent;
    border-radius: 0px !important;
    -webkit-transition: .5s ease !important;
    -o-transition: .5s ease !important;
    transition: .5s ease !important;
}

.btn-blue:hover,
.btn.btn-primary.rounded-pill.green-btn:hover {
    color: #68bdff !important;
    background-color: #000105;
    border: 1px solid transparent !important;
    text-decoration: none;
}

/* background color */
.bg-black {
    background: #000000;
}

.bg-yellow {
    background-color: #FFBF00;
}

/* text-color */
.main-color {
    color: #FFBF00;
}

/*Max Width*/
.mx-570 {
    max-width: 570px;
    display: inline-block;
}

.parallax-disable {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* Social Icon Bg */

.social-icon-bg a i.fa-facebook-f {
    background-color: #3B5998;
}

.social-icon-bg a i.fa-twitter {
    background-color: #a07bf7;
}

.social-icon-bg a i.fa-google-plus {
    background-color: #DD4B39;
}

.social-icon-bg a i.fa-linkedin-in {
    background-color: #0976B4;
}

.social-icon-bg a i.fa-instagram {
    background-color: #c13584;
}

.social-icon-bg a i.fa-youtube {
    background-color: #dd4b39;
}

.social-icon-bg a i.fa-pinterest-p {
    background-color: #B7242A;
}

.social-icon-bg a i.fa-instagram {
    background-color: #e8715c;
}

.social-icon-bg a i.fa-vimeo {
    background-color: #1ab7ea;
}

.social-icon-bg a i.fa-vk {
    background-color: #4c75a3;
}

.social-icon-bg a i.fa-youtube {
    background-color: #cd201f;
}

.social-icon-bg a i.fa-pinterest {
    background-color: #bd081c;
}

.social-icon-bg a i.fa-tumblr {
    background-color: #34465d;
}

.social-icon-bg a i.fa-behance {
    background-color: #131418;
}

.social-icon-bg a i.fa-dribbble {
    background-color: #ea4c89;
}

.social-icon-bg a i.fa-google-plus {
    background-color: #dd4b39;
}

.social-icon-bg a i.fa-xing {
    background-color: #026466;
}

.social-icon-bg a i.fa-yelp {
    background-color: #af0606;
}

.social-icon-bg a i.fa-vine {
    background-color: #00b489;
}

/* Social Icon Bg Hover */

.social-icon-bg-hvr a:hover i.fa-facebook-f {
    background-color: #3B5998;
}

.social-icon-bg-hvr a:hover i.fa-twitter {
    background-color: #a07bf7;
}

.social-icon-bg-hvr a:hover i.fa-google-plus {
    background-color: #DD4B39;
}

.social-icon-bg-hvr a:hover i.fa-linkedin-in {
    background-color: #0976B4;
}

.social-icon-bg-hvr a:hover i.fa-instagram {
    background-color: #c13584;
}

.social-icon-bg-hvr a:hover i.fa-youtube {
    background-color: #dd4b39;
}

.social-icon-bg-hvr a:hover i.fa-pinterest-p {
    background-color: #B7242A;
}

.social-icon-bg-hvr a:hover i.fa-instagram {
    background-color: #e8715c;
}

.social-icon-bg-hvr a:hover i.fa-vimeo {
    background-color: #1ab7ea;
}

.social-icon-bg-hvr a:hover i.fa-vk {
    background-color: #4c75a3;
}

.social-icon-bg-hvr a:hover i.fa-youtube {
    background-color: #cd201f;
}

.social-icon-bg-hvr a:hover i.fa-pinterest {
    background-color: #bd081c;
}

.social-icon-bg-hvr a:hover i.fa-tumblr {
    background-color: #34465d;
}

.social-icon-bg-hvr a:hover i.fa-behance {
    background-color: #131418;
}

.social-icon-bg-hvr a:hover i.fa-dribbble {
    background-color: #ea4c89;
}

.social-icon-bg-hvr a:hover i.fa-google-plus {
    background-color: #dd4b39;
}

.social-icon-bg-hvr a:hover i.fa-xing {
    background-color: #026466;
}

.social-icon-bg-hvr a:hover i.fa-yelp {
    background-color: #af0606;
}

.social-icon-bg-hvr a:hover i.fa-vine {
    background-color: #00b489;
}

/* Social Icon Color */

.social-icon-clr a i.fa-facebook-f {
    color: #3B5998;
}

.social-icon-clr a i.fa-twitter {
    color: #0976B4;
}

.social-icon-clr a i.fa-google-plus {
    color: #DD4B39;
}

.social-icon-clr a i.fa-linkedin-in {
    color: #0976B4;
}

.social-icon-clr a i.fa-instagram {
    color: #c13584;
}

.social-icon-clr a i.fa-youtube {
    color: #dd4b39;
}

.social-icon-clr a i.fa-pinterest-p {
    color: #B7242A;
}

.social-icon-clr a i.fa-instagram {
    color: #e8715c;
}

.social-icon-clr a i.fa-vimeo {
    color: #1ab7ea;
}

.social-icon-clr a i.fa-vk {
    color: #4c75a3;
}

.social-icon-clr a i.fa-youtube {
    color: #cd201f;
}

.social-icon-clr a i.fa-pinterest {
    color: #bd081c;
}

.social-icon-clr a i.fa-tumblr {
    color: #34465d;
}

.social-icon-clr a i.fa-behance {
    color: #131418;
}

.social-icon-clr a i.fa-dribbble {
    color: #ea4c89;
}

.social-icon-clr a i.fa-google-plus {
    color: #dd4b39;
}

.social-icon-clr a i.fa-xing {
    color: #026466;
}

.social-icon-clr a i.fa-yelp {
    color: #af0606;
}

.social-icon-clr a i.fa-vine {
    color: #00b489;
}

/* Social Icon Hover */

.social-icon-clr-hvr a i:hover.fa-facebook-f {
    color: #3B5998;
}

.social-icon-clr-hvr a i:hover.fa-twitter {
    color: #0976B4;
}

.social-icon-clr-hvr a i:hover.fa-google-plus {
    color: #DD4B39;
}

.social-icon-clr-hvr a i:hover.fa-linkedin-in {
    color: #0976B4;
}

.social-icon-clr-hvr a i:hover.fa-instagram {
    color: #c13584;
}

.social-icon-clr-hvr a i:hover.fa-youtube {
    color: #dd4b39;
}

.social-icon-clr-hvr a i:hover.fa-pinterest-p {
    color: #B7242A;
}

.social-icon-clr-hvr a i:hover.fa-instagram {
    color: #e8715c;
}

.social-icon-clr-hvr a i:hover.fa-vimeo {
    color: #1ab7ea;
}

.social-icon-clr-hvr a i:hover.fa-vk {
    color: #4c75a3;
}

.social-icon-clr-hvr a i:hover.fa-youtube {
    color: #cd201f;
}

.social-icon-clr-hvr a i:hover.fa-pinterest {
    color: #bd081c;
}

.social-icon-clr-hvr a i:hover.fa-tumblr {
    color: #34465d;
}

.social-icon-clr-hvr a i:hover.fa-behance {
    color: #131418;
}

.social-icon-clr-hvr a i:hover.fa-dribbble {
    color: #ea4c89;
}

.social-icon-clr-hvr a i:hover.fa-google-plus {
    color: #dd4b39;
}

.social-icon-clr-hvr a i:hover.fa-xing {
    color: #026466;
}

.social-icon-clr-hvr a i:hover.fa-yelp {
    color: #af0606;
}

.social-icon-clr-hvr a i:hover.fa-vine {
    color: #00b489;
}

/* Header */
header a.logo {
    display: inline-block;
}

header a.logo img {
    max-width: 200px;
}

.navbar-top-default {
    position: absolute;
    top: 0;
    z-index: 99;
    overflow: hidden;
    height: 80px;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background-color: #000105 !important;
}

.header-appear .navbar-top-default {
    height: 70px;
    position: fixed;
    z-index: 99;
    background: #000105;
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.navbar-top-default #megaone {
    margin-right: -30px;
}

/*Navbar Simple*/
.navbar-simple .navbar-nav .nav-link {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    padding: 10px 25px;
}

.nav-box-round .navbar-nav .nav-link {
    border-radius: 20px;
}

.navbar-simple .navbar-nav .nav-link:hover {
    color: #FFBF00;
}

.navbar-simple .navbar-nav .nav-link.active:hover {
    color: #fff !important;
}

/*nav line*/
.nav-line .navbar-nav .nav-link.active:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

.nav-line .navbar-nav .nav-link:before {
    position: relative;
    content: '';
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: table;
    height: 3px;
    border-radius: 2px;
    bottom: -28px;
    -webkit-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background: #0292e2;
    visibility: hidden;
    opacity: 0;
}

/* Side Menu */
.side-menu {
    width: 40%;
    position: fixed;
    right: 0;
    top: 0;
    background: #000105;
    z-index: 1032;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    overflow: hidden;
}

.side-menu.left {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
    width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
    visibility: visible;
    opacity: 1;
}

.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    display: none;
    z-index: 1031;
    opacity: 0.4;
}

/*side close btn*/
.side-menu .btn-close {
    height: 33px;
    width: 33px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 25px;
    right: 20px;
    cursor: pointer;
}

.side-menu.before-side .btn-close {
    display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 24px;
    width: 2px;
    background: #fff;
    top: 5px;
}

.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*side open btn*/
.sidemenu_btn {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 36px;
    padding: 10px 4px;
    position: absolute;
    top: 28px;
    right: 15px;
    display: inline-block;
}

header.header-appear .sidemenu_btn {
    top: 20px;
}

.sidemenu_btn span {
    height: 2px;
    width: 100%;
    background: #ffffff;
    display: block;
}

.sidemenu_btn span:nth-child(2) {
    margin: 4px 0;
}

.side-menu .inner-wrapper {
    padding: 3.5rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
    padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
    margin-bottom: 30px;
    display: block;
}

.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 10px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #fff;
    padding: 2px 0 3px 0 !important;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: normal;
    position: relative;
    border-radius: 0;
}

.side-nav .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    background: #0292e2;
    display: inline-block;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
    width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
    background: transparent;
}

.side-menu p {
    margin-top: .5rem;
    margin-bottom: 0;
}

.social-icons-simple {
    margin-bottom: 0;
    margin-left: -10px;
}

.social-icons-simple li {
    margin-right: 10px;
    display: inline-block;
}

.social-icons-simple li a {
    display: block;
    font-size: 16px;
    height: 36px;
    width: 36px;
    line-height: 36px;
    border: 1px solid transparent;
    text-align: center;

    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}

.social-icons-simple li a:hover {
    color: #FFF;
    background-color: #FFBF00;
}

.social-icons-simple li.animated-wrap a:hover {
    background-color: transparent;
    color: #ffffff;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Hero area */
#hero {
    display: table;
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000105;
}

#hero .hero-container {
    color: #fff;
    background: rgba(0, 0, 0, 0.0);
    display: table-cell;
    margin: 0;
    padding: 0 10px;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.bg-full {
    position: absolute;
    z-index: 90;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .5;
    filter: blur(35px);
    overflow: hidden;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

#hero h1 {
    font-size: 40px;
}

#hero .hero-container p {
    font-size: 18px;
    font-weight: 400;
}

.display {
    display: flex;
}

#hero .hero-container .display {
    font-size: 15px;
    margin-bottom: 25px;
}

#hero .hero-container .display .date {
    color: #FFBF00;
    margin-top: 0;
}

#hero .hero-container .display .vertical-line {
    height: 22px;
    width: 1px;
    background-color: #aaa;
    margin: 0 20px;
}

#hero .hero-container .display .author {
    color: #68bdff;
}

/* Headings */
.heading-details {
    margin-bottom: 80px;
}

.heading-details .heading {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    display: inline-block;
}

.heading-details .heading:after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 80px;
    margin-bottom: 16px;
    margin-left: 20px;
}

.heading-details .heading.yellow:after {
    background-color: #ffc107;
}

.heading-details .heading.blue:after {
    background-color: #0292e2;
}

.heading-details .heading:before {
    content: "";
    display: inline-block;
    height: 6px;
    width: 80px;
    margin-bottom: 16px;
    margin-right: 20px;
}

.heading-details .heading.yellow:before {
    background-color: #ffc107;
}

.heading-details .heading.blue:before {
    background-color: #0292e2;
}


/* Latest News + Latest Events*/
.news-item {
    background: #fff;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    height: 100% !important;
}

.news-item.shadow {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
}

.shadow-equal {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.item-holder {
    margin-bottom: 20px;
}

.news-desc p {
    margin-bottom: 0;
}

.news-desc ul {
    margin: 0 0 0 20px;
    list-style-position: outside;
    line-height: 1.8;
}

.news-item .news-desc {
    padding: 30px 30px;
}

.news-item:hover .image img {
    transform: scale(1.1);
}

.news-item h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 27px;
}

.news-item .display {
    color: #FFBF00;
    font-size: 13px;
    margin-bottom: 20px;
}

.news-item .display .vertical-line {
    height: 18px;
    width: 1px;
    background-color: #aaa;
    margin: 0 10px;
}

.news-item .display .author {
    color: #0292e2;
}

.news-item p {
    font-size: 15px;
    color: #000000;
}

.latest-news.yellow .news-item:hover h3 a,
.latest-events.yellow .news-item:hover h3 a {
    color: #FFBF00;
}

.latest-news.blue .news-item:hover h3 a,
.latest-events.blue .news-item:hover h3 a {
    color: #0292e2;
    border-bottom: none !important;
}

.latest-events .news-item .date {
    color: #FFBF00;
    font-size: 15px;
    margin-bottom: 5px;
}

.latest-events .news-item h3 {
    margin-bottom: 20px;
}

.news-item .blog-img {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.owl-blog-item .owl-nav {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

#our-blog .owl-blog-item .owl-nav .owl-next,
#our-blog .owl-blog-item .owl-nav .owl-prev {
    font-size: 18px;
    margin: 5px;
    padding: 3px 15px !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    position: unset;
    display: inline-flex;
    justify-content: center;
    -webkit-transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
}

#our-blog .owl-blog-item .owl-nav .owl-next:hover,
#our-blog .owl-blog-item .owl-nav .owl-prev:hover {
    background: #FFBF00 !important;
    border: 2px solid #FFBF00 !important;
}

/* News & Events Detail */
section.sub-title {
    padding: 190px 0 70px;
}
section.sub-title.event {
    padding: 190px 0 0;
}
.post-content .minimal-image {
    margin-bottom: 15px;
}

.post-content .display {
    font-size: 15px;
    margin-bottom: 25px;
}

.post-content .display .date {
    color: #FFBF00;
    margin-top: 0;
}

.post-content .display .verticle_line {
    height: 22px;
    width: 1px;
    background-color: #aaa;
    margin: 0 20px;
}

.post-content .display .blue-color {
    color: #0292e2;
}

.post-content a, 
.pim-text a {
    color: #0292e2;
}

.post-content a:hover,
.pim-text a:hover {
    color: #0292e2;
    text-decoration: underline;
}

.post-content a.btn {
    margin-top: 40px;
}

.post-content hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

.topic-outerbox {
    height: auto;
    width: auto;
    background-color: #f6f6f6;
    padding-bottom: 25px;
    margin-bottom: 50px;
}

.topic-outerbox h2 {
    font-size: 26px;
    padding: 30px 30px 10px;
    margin-bottom: 30px;
}

.inner-box1 {
    padding: 0 30px;
}

.topic-outerbox ul {
    list-style: none;
    padding: 0;
    margin: 0 !important;
    text-indent: 0 !important;
}

.topic-outerbox ul li {
    text-decoration: none;
    padding-top: 7px;
    padding-bottom: 7px;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden !important;
}

.topic-outerbox ul li a {
    text-decoration: none;
    color: #000105;
}

.topic-outerbox ul li a:hover {
    text-decoration: none;
    color: #0292e2;
}

/* project navigation */
.project-navigation {
    padding-top: 0;
    padding-bottom: 60px;
}

.project-navigation .nav-left {
    width: 90%;
    text-align: left;
}

.project-navigation .nav-right {
    width: 90%;
    text-align: right;
}

.project-navigation a.left-row,
.project-navigation a.right-row {
    display: flex;
    align-items: center;
}

.project-navigation .left-row .left-arr-d,
.project-navigation .right-row .right-arr-d {
    transition: .8s ease-in-out;
}

.project-navigation .left-row .left-arr-d {
    padding-left: 15px;
}

.project-navigation .left-row:hover .left-arr-d {
    padding-left: 5px;
}

.project-navigation .right-row .right-arr-d {
    padding-right: 15px
}

.project-navigation .right-row:hover .right-arr-d {
    padding-right: 5px;
}

.project-navigation a {
    color: #000;
}

.project-navigation h5 {
    transition: .3s ease;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.project-navigation a:hover h5 {
    color: #0292e2;
    text-decoration: none;
}

.project-navigation a .links,
.project-navigation a:hover .links {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: normal;
    opacity: .8;
}

.project-navigation a .project-arrow-1 {
    text-align: center;
    transition: .3s ease;
}

.project-navigation a .project-arrow-1 i {
    color: #FFBF00;
    font-size: 42px;
}

.project-navigation a:hover .project-arrow-1 i {
    color: #0292e2;
}

.project-navigation a .project-arrow-2 {
    color: #222;
}

.project-navigation a:hover .project-arrow-2 {
    color: #0292e2;
}

/* Pagination */
.pagination {
    border-radius: 0;
}

.page-link {
    margin-left: -1px;
    color: #0292e2;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    color: #0292e2 !important;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6 !important;
}
.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff !important;
    background-color: #666;
    border-color: #666;
    margin-left: 0;
    margin-right: 1px;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}


/* Photo of the week */
.photo-section {
    padding: 120px 0;
    color: #fff;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.photo-section .container {
    position: relative;
    z-index: 2;
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(35px);
    z-index: 1;
}

.heading-area .title {
    font-size: 40px;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
}

.heading-area .sub-title {
    margin-bottom: 15px;
    color: #FFBF00;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

.photo-section .about {
    font-size: 18px;
    font-weight: 400;
}

.photo-section .author {
    color: #68bdff;
    font-size: 13px;
    margin-bottom: 25px;
}


/* Latest Links */
.link-1 {
    color: #fff;
    background: url(../img/link-1.jpg) center center no-repeat;
    background-size: cover;
    padding: 80px 50px;
}

.link-2 {
    color: #fff;
    background: url(../img/link-6.jpg) center center no-repeat;
    background-size: cover;
    padding: 80px 50px;
}

.link-3 {
    color: #fff;
    padding: 0 50px;
}

.head-details {
    margin-bottom: 80px;
}

.head-details .head {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
    display: inline-block;
}

.head-details .head:after {
    content: "";
    display: inline-block;
    height: 3px;
    width: 40px;
    margin-bottom: 10px;
    margin-left: 20px;
}

.head-details .head.yellow:after {
    background-color: #ffc107;
}

.head-details .head.blue:after {
    background-color: #0292e2;
}

.head-details .head:before {
    content: "";
    display: inline-block;
    height: 3px;
    width: 40px;
    margin-bottom: 10px;
    margin-right: 20px;
}

.head-details .head.yellow:before {
    background-color: #ffc107;
}

.head-details .head.blue:before {
    background-color: #0292e2;
}

.ef-holder {
    display: flex;
    justify-content: center;
}
.efemeride {
    display: flex;
    text-align: left;
    line-height: 2;
}
.ef-ins {
    width: 380px;
}
.efl {
    width: 240px;
}
.efr {
    border-left: 1px solid #aaa;
    padding-left: 40px;
}


/* Text page */
.heading-sub h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 80px;
}

.heading-sub h1:after {
    content: "";
    display: inline-block;
    height: 6px;
    width: 80px;
    background-color: #0292e2;
    margin-bottom: 16px;
    margin-left: 20px;
}
.pim-text {
    margin-bottom: 50px;
}
.text-page h2,
.text-page h3,
.subtit-h2 h2,
.subtit-h3 h3 {
    margin-bottom: 25px;
}
.area-image {
    margin-bottom: 50px;
    text-align: center;
}
.image-caption {
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
}
.textgrey {
    background-color: #eee;
    padding: 30px 30px 5px;
    margin-bottom: 50px;
}
.pim-text {
    margin-bottom: 40px;
}


/* Footer */
footer {
    padding: 30px 0;
    background-color: #000105;
    color: #fff;
}

.footer-social ul {
    margin: 0;
    padding: 0;
}

.footer-social li {
    display: inline-block;
}

.footer-social a {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50px;
    font-size: 17px;
    margin: 0 10px 0 0;
    border: 1px solid transparent;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.footer-social li:nth-last-child(1) a {
    margin-right: 0;
}

.footer-social li a:hover {
    background-color: #f6b801;
    color: #ffffff;
}

.company-about {
    font-size: 14px;
    font-weight: 300;
}

.company-about a:hover {
    color: #f6b801;
}

/* Scroll Top */
.scroll-top-arrow,
.scroll-top-arrow:focus {
    font-size: 18px;
    line-height: 47px;
    color: #fff;
    background-color: #FFBF00;
    display: none;
    height: 45px;
    width: 45px;
    cursor: pointer;
    padding: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
    text-decoration: none;
    z-index: 80;
    border-radius: 50px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.scroll-top-arrow:hover {
    background-color: #FFBF00;
}

/* Side Slide */
#slide-holder {
    position: fixed;
    right: 0;
    top: 160px;
    z-index: 1030;
}

#slide-panel {
    width: 180px;
    height: 60px;
    margin-right: -180px;
    float: right;
    color: #fff;
    background: #000105;
    position: relative;
}

a.opener {
    float: left;
    margin: 0 0 0 -61px;
    display: block;
    color: #fff;
    font-size: 28px;
    background-color: #000105;
    text-transform: uppercase;
    text-align: center;
    line-height: 54px;
    width: 60px;
    height: 60px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition-property: all 0.25s ease-in-out;
    -ms-transition-property: all 0.25s ease-in-out;
}

a.opener:hover {
    color: #fff;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 60px;
}

.slide-text {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-text a {
    color: #fff;
}

.slide-text a:hover,
.slide-text a:focus {
    color: #68bdff;
}

/* Background images */
[class*=bg-img] {
    position: relative;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #000105;
    z-index: 1300;
}

.centrize {
    display: table;
    table-layout: fixed;
    height: 100%;
    position: relative;
}

.full-width {
    max-width: 100%;
    width: 100%;
}

.vertical-center {
    display: table-cell;
    vertical-align: middle;
}

.preloader .spinner {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.preloader .spinner .double-bounce1,
.preloader .spinner .double-bounce2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0292e2;
    opacity: 1;
    -webkit-animation: loader-bounce 2s infinite ease-in-out;
    animation: loader-bounce 2s infinite ease-in-out;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.preloader .spinner .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    opacity: 0.1;
}

@-webkit-keyframes loader-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }

}

@keyframes loader-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

}

/* ===================================
   Other Page
====================================== */
.slider-sec {
    min-height: 500px;
    position: relative;
}

.slider-sec .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(20, 32, 34, 0.60);
}

.slider-sec .overlay h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 38px;
    color: #FFFFFF;
    margin-top: 40%;
    margin-bottom: 10px;
}

.crumbs {
    position: relative;
}

.crumbs .breadcrumb-items {
    display: inline-block;
}

.crumbs .breadcrumb {
    margin-bottom: 0;
    border-radius: 0;
    padding: 15px 50px;
    background-color: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF;
}

.crumbs .breadcrumb li a {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

.crumbs .breadcrumb li a:hover {
    color: #FFBF00;
}

/*crumbs end*/

/* X icon hack */
.fa-twitter::before {
    display: inline-block;
    content: "";
    /* Dimenzije prilagodite po potrebi, običajno 1em */
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    /* Ikona bo iste barve kot besedilo */

    /* Uradna SVG oblika logotipa X */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}