/* Template 1 */

.tx-mtm-slider{
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

#mtm_slider_container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto
}

#mtm_slider_content {
    width: 100%;
    height: 640px;
    float: left;
    z-index: 1;
    margin-bottom: -20px;
    overflow: hidden;
}

.mtm_slider_element {
    width: 100%;
    height: 100%;
    position: absolute;
}

.mtm_slider_btn {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    background-color: #FFFFFF;
    border-radius: 20px;
    outline: 0;
    cursor: pointer;
    z-index: 1003;
}

.mtm_slider_btn .nav_arrow i{
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 24px;
    font-weight: 700;
}

#mtm_slider_btn_right {
    right: 50px;
}
#mtm_slider_btn_left {
    left: 50px;
}

.slide_headline{
    display: none;
}

.slide_image{
    position: absolute;
    width: 100%;
}
.slide_image img {
    width: 100%;
    height: 640px;
    object-position: 60% 0;
    object-fit: cover;
}

.slide_text .slide_subtitle{
    font-family: Roboto Slab;
    color: #3a3a3a;
    font-size: 15px;
    font-weight: 800;
}

.slide_text{
    display: block;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px 50px;
    margin: auto 0;

    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 0px 6px #00000029;
    z-index: 5;
}


.slide_text.left {
    margin: auto 0 auto 15%;
}

.slide_text.center {
    margin: auto;
}

.slide_text.right {
    margin: auto 0 auto 50%;
}

.slide_text .slide_button {
    color: #3a3a3a;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-position: under;
    font-weight: 700;
}

/*RESPONSIVE*/
@media all and (max-width: 768px){

    .mtm_slider_btn {
       display: none;
    }

    .slide_text.left,
    .slide_text.center,
    .slide_text.right{
        margin: auto !important;
    }

    #mtm_slider_content,
    .slide_image img {
        height: 400px;
    }

}

@media all and (max-width: 575px){
    .slide_text.left {
        top: 220px;
        bottom: unset !important;
    }
    .slide_text{
        padding: 20px 30px;
    }
}

/* Template 2 */

#mtm_cycle_container {
    max-width: 1355px;
    width: 100%;
    margin: 0 auto
}

#mtm_cycle_content {
    width: 100%;
    height: auto;
    float: left;
    z-index: 1;
    margin-bottom: -20px;
}

.mtm_cycle_element {
    width: 100%;
    height: 440px;
    position: absolute;
}

#mtm_cycle_nav_outer {
    width: 100%;
    position: absolute;
    z-index: 100;
    margin-top: 34%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
#mtm_cycle_nav{
    width: 405px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

#mtm_cycle_nav #mtm_cycle_nav_content{
    display: none;
}

#mtm_cycle_nav:before, #mtm_cycle_nav:after {
    content: "";
    display: block;
    clear: both;
}

#mtm_cycle_nav strong a,
#mtm_cycle_nav strong a:active,
#mtm_cycle_nav strong a:link,
#mtm_cycle_nav strong a:visited {
    width: 28px;
    height: 28px;
    margin: 0 0 0 8px;
    font-size: 1.5em;
    text-decoration: none;
    float: left;
    display: block;
    background: #A72222;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
}

#mtm_cycle_nav strong a:hover {
    text-decoration: none;
    background: #343434;
}

#mtm_cycle_nav strong.cycle-pager-active a {
    text-decoration: none;
    background: #343434;
}

.mtm_cycle_btn {
    width: 17px;
    height: 30px;
    cursor: pointer;
    display: block;
    top: 180px;
    position: absolute;
    outline: 0;
}

.cycle_headline{
    display: none;
}

.cycle_image{
    position: absolute;
}
.cycle_image img {
    width: 100%;
}

.cycle_text .cycle_subtitle{
    font-family: Roboto Slab;
    color: #3a3a3a;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cycle_text{
    display: block;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1175px;
    margin: 80px auto;
}

.cycle_text.left,
.cycle_text.center,
.cycle_text.right {
    width: 50%;
    float: right;
    margin-top: 50px;
}

.cycle_text .cycle_button {
    color: #3a3a3a;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-position: under;
    font-weight: 700;
}

/*RESPONSIVE*/

@media all and (max-width: 980px){

    .tx-mtm-slider #mtm_cycle_container #mtm_cycle_content .mtm_cycle_element .cycle_image {
        position: relative;
    }

    #mtm_cycle_nav_outer {
        position: relative;
        margin-top: 0px;
    }

}

@media all and (max-width: 786px){

    .cycle_image img{
        width: 100%;
        height: 100%;
    }

}