/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

html {
    font-size: 14px;
}
body {
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}


/* -----  Links ------- */
#main a, #footer a {
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden
}
#main a:before, #footer a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #F8A523;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
#main a:hover:before, #main a:focus:before, #main a:active:before,
#footer a:hover:before, #footer a:focus:before, #footer a:active:before {
    left: 0;
    right: 0
}


#footer-bottom #footer-bottom-menu li:after {
    content: " ";
    margin-left: 9px;
    margin-right: 9px;
}







@media (min-width: 960px) {
    #site-navigation {
        width: 1020px;
        background-color: #d5cccf;
    }
    #site-navigation .sf-menu {
        display: inline-block;
        position: relative;
        top: -12px;
        background-color: #ffffff;
        padding: 0 80px;
    }
    #site-navigation .sf-menu >li {
        padding-top: 22px;
        padding-bottom: 22px;
    }
    #site-navigation .sf-menu >li a {
        line-height: 19px !important;
    }
    #site-navigation .sf-menu >li:not(:last-child) a {
        border-right: 1px solid #010101;
    }
}


.inner_banner {
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 15px;
    background-color: rgba(213,204,207,0.5);
    color: #000000;
}
.inner_banner h3 {
    line-height: 1.375em;
}




.event_link {
    overflow: hidden;
}
.event_link figcaption {
    position: absolute;
    right: 10px;
    bottom: 45px;
    background-color: rgba(255,255,255,0.3);
    font-size: 28px;
    font-weight: 600;
    color: #010101;
    text-transform: uppercase;
    padding: 0 10px 0 30px;
    animation-name: fadeInRight;
    animation-duration: 1s;
    animation-fill-mode: both;
}
.event_link .wp-caption img[class*=wp-image-] {
    margin-bottom: 0;
}
body:not(.elementor-editor-active) .event_link .event_info {
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
}
.event_link:hover figcaption {
    display: none;
}
body:not(.elementor-editor-active) .event_link:hover .event_info {
    display: block;
}













#filters {
    margin: 1% 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
#filters li {
    display: inline-block;
    background: rgba(213,204,207,0.5);
}
#filters li span {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
}
@media (min-width: 640px) {
    #filters li.filter-all {
        float: left;
    }
    #filters li:not(.filter-all) {
        float: right;
    }
}
#filters li span.mixitup-control-active {
    background: rgba(0,0,0,0.8);
    color: #fff
}

#portfoliolist {
    background-color: #000000CC;
    padding: 35px;
}
#portfoliolist .portfolio-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
}
#portfoliolist .portfolio-wrapper img {
    display: block;
    position: relative;
    width: 100%;
    top: 0;
    transition: top 0.6s;
}
#portfoliolist .portfolio-wrapper:hover img {
    top: -50px;
}
#portfoliolist .portfolio-wrapper .label {
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: -25px;
    background-color: #232223;
    transition: bottom 0.3s;
    color: #ffffff;
    text-align: center;
    font-style: italic;
    text-transform: uppercase;
    padding-top: 5px;
}
#portfoliolist .portfolio-wrapper:hover .label {
    bottom: 0;
}

body.single-portfolio {
    background-color: #000000CC;
}
body.single-portfolio #content-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

body.single-portfolio #content-wrap a:hover:before, body.single-portfolio #content-wrap a:focus:before, body.single-portfolio #content-wrap a:active:before {
    content: "";
    left: 50%;
    right: 50%;
}