/* Teaser */

.teaser-content {
    z-index: 9;
    background: #000;
}

.teaser-content .grid {
    background: rgba(255,255,255, .95);
    border-radius: 6px;
    -webkit-box-shadow: 0px 7px 20px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 7px 20px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 7px 20px 0px rgba(0,0,0,0.15);
    padding: 0 30px;
    border-bottom: 4px solid #dc961d;
}

.teaser-content .col {
    padding: 0;
    position: relative;
}

/*
.teaser-content .col:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 40%;
    background: #ddd;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.teaser-content .col:last-child:after {
    content: none;
}
*/

.teaser-content .teaser {
    display: block;
    padding: 30px 30px;
    padding-bottom: 26px;
    text-align: center;
    transition: .2s;
    height: 100%;
    position: relative;
    border-bottom: 4px solid #fff;
}

.teaser-content .teaser .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center !important;
    background-size: cover !important;
    z-index: 0;
    opacity: 0;
}

.teaser-content .teaser.active .img,
.teaser-content .teaser:hover .img {
    opacity: .1;
}

.teaser-content .teaser .icon {
    width: 50px;
    margin: auto;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.teaser-content .teaser .txt {
    position: relative;
    z-index: 2;
}

.teaser-content .teaser h4 {
    color: #dc961d;
    margin-top: 15px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    transition: .2s;
    text-transform: uppercase;
}

.teaser-content .teaser p {
    font-size: 12px;
    color: #7b8fa2;
    transition: .2s;
}

.teaser.active,
.teaser:hover {
    background: #dc961d;
    z-index: 9;
    transform: scale(1.15);
    border-radius: 4px;
    transition: .2s;
    border-bottom: 4px solid #dc961d;
}

.teaser.active rect,
.teaser:hover rect {
    fill: #222 !important;
}

.teaser.active h4,
.teaser.active p,
.teaser:hover h4,
.teaser:hover p {
    color: #222 !important;
    transition: .2s;
}


/* Redirect */

.redirect-content {
    background: #000;
}

.redirect-content .redirect {
    position: relative;
    display: block;
    height: 55vh;
    overflow: hidden;
}

.redirect-content .col {
    transition: .4s;
    float: none;
}

.redirect-content .col.no-zoom {
    transition: transform 0.2s ease-in-out;
    transform: scale(.9);
}

.redirect-content .col.zoom {
    transition: transform 0.2s ease-in-out;
    transform: scale(1.1);
}

.redirect .img {
    position: relative;
    height: 100%;
    line-height: 0;
    transition: .2s;
    overflow: hidden;
}

.redirect:hover .img {
    transition: .2s;
}

.redirect .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition: .4s;
}

.redirect:hover .img img {
    transform: scale(1.05);
    transition: .4s;
}

.redirect .img:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.2);
    opacity: .2;
    transition: .4s;
    z-index: 1;
}

.redirect:hover .img:after {
    background: rgba(0,0,0,.8);
    opacity: .8;
    transition: .4s;
}

.redirect .txt {
    position: absolute;
    width: calc(100% - 40px);
    left: 10px;
    bottom: 20px;
    padding: 20px;
    padding-bottom: 10px;
    background: rgba(255,255,255,.95);
    transition-duration:400ms; 
    transition-delay: 100ms;
    z-index: 9;
    border-radius: 5px;
    border-bottom: 4px solid #dc961d;
}

.redirect:hover .txt {
    width: 100%;
    left: 0;
    bottom: 0;
    transition-duration:400ms; 
    transition-delay: 100ms;
    border-radius: 0;
}

.redirect .txt h4 {
    margin-bottom: 10px;
    color: #dc961d;
}

.redirect .txt p,
.redirect .txt h5 {
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    margin-bottom: 0px;
    transition-duration: 100ms; 
    transition-delay: 100ms;
    text-align: justify;
    color: #333;
}

.redirect .txt h5 {
    font-size: 15px;
    color: #dc961d;
}

.redirect:hover .txt p,
.redirect:hover .txt h5 {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 10px;
    transition-duration: 300ms; 
    transition-delay: 400ms
}

.redirect .txt h5.sepa {
    transition: .2s;
}

.redirect .txt h5.sepa:hover {
    padding-left: 30px;
    transition: .2s;
}

.redirect .txt h5.sepa::after {
    transition: .3s;
}

.redirect .txt h5.sepa:hover::after {
    width: 20px;
    transition: .3s;
}

/* About */

.about-content {
    background: #000;
}

.about-img-content {
    position: relative;
    height: 65vh;
    max-height: 630px;
    padding-bottom: 10px;
}

.about-img-content .about-img-1 {
    width: 50%;
    height: calc(100% - 60px);
    margin-top: 60px;
    margin-right: 5%;
    line-height: 0;
}

.about-img-content .about-img-2 {
    width: 43%;
    height: calc(100% - 165px);
    line-height: 0;
    margin-right: 2%;
}

.about-img-content .about-img-1 img,
.about-img-content .about-img-2 img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-content .about-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 6px;
    padding: 40px;
    border-bottom: 4px solid #dc961d;
}

.about-img-content .about-box .about-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.about-inner ul.check {
    list-style: none;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    padding-left: 0;
    margin-left: 0;
}

.about-inner ul.checki {
    color: #dc961d;
}

/* Aside */

.aside-content {
    overflow: hidden;
    background: #000;
}

.aside-content .background {
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
}

.aside-content .background:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(10,9,10, .8) url(img/bg-grid2.png);
    z-index: 1;
}

.aside-content .fx-scale {
    transform: scale(1.0);
    transition: .3s;
} 

.aside-content:hover .fx-scale {
    transform: scale(1.02);
    transition: .3s;
}

.aside-content .inner {
    background: rgba(17,17,17,.6);
    padding: 50px 30px;
    border-radius: 5px;
}

.aside-content .icon {
    width: 60px;
    height: 60px;
    background: #dc961d;
    padding: 15px;
    top: -30px;
    transform: rotate(45deg);
}

.aside-content .icon i {
    transform: rotate(-45deg);
    font-size: 30px;
}


/* Footer */

.prefooter-content {
    background: #000;
}

footer {
    font-size: 12px;
}


a.top-scroll {
    position: fixed;
    right: -100px;
    bottom: 30px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #dc961d;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    border-radius: 30px;
    z-index: 99;
}

a.top-scroll:hover {
    background: #713d83 !important;
    color: #fff !important;
}

a.top-scroll i {
    line-height: inherit;
}