
/* Buttons */
button {
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 0;

    -webkit-appearance: none;
    -webkit-border-radius: 0;

    user-select: none;
}

button:focus {
    outline: 0 none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
/* Controls
Brand Colors:
Blue: #50D4F2
Sea: #0F97A6
D Blue: #124D61
Orange: #E75125
Yellow: #F3AB2A
---------------------------------------------------------------------- */
#filters-button{
    background: #124D61;
    color: #fff;
    font-size: 18px;
    /* font-weight: bold; */
    margin-bottom: 20px;
    display: flex;
}
.controls {
    padding: 0rem;
    /*background: #fff;*/
    font-size: 0.1px;
    margin: auto;
    height: 0px;
    overflow: hidden;
}
.transform {
    -webkit-transition: all .7s ease;  
    -moz-transition: all .7s ease;  
    -o-transition: all .7s ease;  
    -ms-transition: all .7s ease;  
    transition: all .7s ease;
}
.filters-active{
    height: 240px;
    max-height: max-content;
    padding: 1rem;
}
.controls ul{
    display: flex;
    margin-bottom: 10px;
    padding:0px;
}
.controls li{
    display: inline;
}
.control {
    position: relative;
    display: inline-block;
    color: #124D61;
   /* width: 2.7rem;*/
   padding:5px 15px;    
    height: 2.7rem;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    transition: background 150ms;
    margin: 0px 2px;
}
/*Blue*/
button.blue:hover{
	background: #50D4F2;
	color:#ffffff;
}
.mixitup-control-active.blue {
    background: #50D4F2;
    color:#fff;
}
button.sea:hover{
	background: #0F97A6;
	color:#ffffff;
}
.mixitup-control-active.sea {
    background: #0F97A6;
    color:#fff;
}
/*Orange*/
button.orange:hover {
    background: #E75125;
    color: #fff;
}
.mixitup-control-active.orange {
    background: #E75125;
    color:#fff;
}
/*Yellow*/
button.yellow:hover{
    background: #F3AB2A;
    color: #fff;
}
.mixitup-control-active.yellow {
    background: #F3AB2A;
    color:#fff;
}
/*Dblue*/
button.dblue:hover {
    background: #124D61;
    color: #fff;
}
.mixitup-control-active.dblue {
    background: #124D61;
    color:#fff;
}

.mixitup-control-active[data-toggle]:after {
    background: transparent;
}
/*
.control:first-of-type {
    border-radius: 3px 0 0 3px;
}

.control:last-of-type {
    border-radius: 0 3px 3px 0;
}

.control[data-filter=".green"],
.control[data-toggle=".green"] {
    color: #91e6c7;
}

.control[data-filter=".blue"],
.control[data-toggle=".blue"] {
    color: #5ecdde;
}

.control[data-filter=".pink"],
.control[data-toggle=".pink"] {
    color: #d595aa;
}
*/
/* Container
---------------------------------------------------------------------- */
.container {
    padding: .5rem;
    /*text-align: justify;*/
    font-size: 0.1px;
    margin: auto;
}
.containerpa:after {
    content: '';
    display: block;
    width: 100%;
    margin: auto;
}
/* Target Elements
---------------------------------------------------------------------- */
.mix,
.gap {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.mix {
    /*Turning this on will reinstate the top border color
    background: #fff;
    border-top: .5rem solid currentColor;
    border-radius: 2px;
    margin-bottom: 1rem;*/
    position: relative;
    margin-bottom: 4px;
}
/*
.mix:before {
    content: '';
    display: inline-block;
    padding-top: 56.25%;
    border-top: .5rem solid transparent;
}
*/
/*
.mix.green {
    color: #91e6c7;
}

.mix.pink {
    color: #d595aa;
}

.mix.blue {
    color: #5ecdde;
}
*/
/* Custom CSS */
.mix img {
    max-width:100%;
    position: relative;
    top:0;
    margin: auto;
    -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:         all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);     
}
.mix iframe{
    max-width: 100%;
    margin:auto; 
    overflow: hidden;  
}  
.mix .portfolio-data {
    z-index: 3;
}
/* img movement if required
.mix:hover img {
top:-30px;
}  
*/
.mix .iframeMover{
position: relative;
top:0;
-webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
transition:         all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* Responsive Classes */
@media screen and (min-width: 1200px) {
    .mix .portfolio-data {
        position: absolute;
        bottom:-66px;
        -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition:         all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    .mix:hover .portfolio-data {
        bottom:0;
    }
    .mix .iframeMover{
        position: relative;
        top:0;
        -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition:         all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    .mix:hover .iframeMover{
    top: -66px;
    }
}