/*   
Theme Name: Interiology
Theme URI: https://interiology.com/
Description: Custom WordPress theme for Interiology by Torro Media
Author: Torro Media
Author URI: https://torro.io/
Version: 1.0
*/

@CHARSET "UTF-8";

/* =WordPress Core from http://codex.wordpress.org/CSS#WordPress_Generated_Classes
-------------------------------------------------------------- */

/*Required Styles*/

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 0.5rem 0;
}

/*CUSTOM SCSS
-------------------------------------------------------------- */

:root{

    --font-body:"DM Sans", sans-serif;
    --font-heading:"Montserrat", sans-serif;
    --font-serif:"Gilda Display", serif;

    --color-1:#252627;
    --color-2:#000000;
    --color-3:#988E96;
    --color-4:#BCABA8;
    --color-5:#DDD5D0;
    --color-6:#F2F2F2;

    --color-text:black;

    --container-width:1140px;
    --container-margin:calc((100vw - 1140px) / 2);
}

html, body{
    font-family:var(--font-body);
    overflow-x:hidden;
    scroll-behavior: smooth;
    scroll-padding:150px 0 0;
}
a:hover, a:focus{
    text-decoration: none;
}
main{
    margin-top:100px;
}
main.tm_main_flush{
    margin-top:0;
}
h1, .h1{
    font-family:var(--font-heading);
    font-weight:700;
    font-size:80px;
    line-height:1;
}
h2, .h2{
    font-family:var(--font-heading);
    font-weight:700;
    font-size:48px;
    line-height:1;
}
h3, .h3{
    font-family:var(--font-heading);
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}
h4, .h4{
    font-family:var(--font-heading);
    font-weight:700;
    font-size:24px;
    line-height:1;
}
h5, .h5{
    font-family:var(--font-heading);
    font-weight:700;
    font-size:18px;
    line-height:1;
}
h6, .h6{
    font-family:var(--font-heading);
    font-weight:700;
    font-size:16px;
    line-height:1;
}
p,
.tm_text ul,
.tm_text li,
.tm_text ol{
    font-size:18px;
    line-height:1.5;
    color:var(--color-text);
    font-weight:300;
}
.centered{
    text-align:center;
}
.tm_flex_container{
    height:100%;
    display:flex;
    align-items: center;
}

/*BUTTONS & LINKS*/

.tm_button{
    background:transparent;
    color:var(--color-2);
    display:inline-block;
    padding:0.75rem 3rem;
    border-radius:0;
    border:1px solid var(--color-2);
    font-weight:600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-size:16px;
    text-align:center;
    position: relative;
}
.tm_button::before{
    content:'';
    width:calc(100% + 10px);
    height:calc(100% + 10px);
    top:-5px;
    left:-5px;
    border:1px solid var(--color-2);
    position:absolute;
    transition-duration: 0.5s;
}
.tm_button_inverse{
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(7.5px);
    border-color:white;
    color:white;
    transition-duration: 0.5s;
}
.tm_button_inverse.tm_button_filled,
.tm_button_inverse.tm_button_filled:hover{
    color:var(--color-2);
}
.tm_button_inverse::before,
.tm_button_filled::before{
    border-color:white;
}
.tm_button:hover,
.tm_button_active{
    color:var(--color-2);
}
.tm_button:hover::before,
.tm_button_active::before{
    border-width:5px;
}
.tm_button_inverse:hover{
    color:white;
}
.tm_button_outline{
    background:transparent;
    border:1px solid var(--color-2);
    color:var(--color-2);
}
.tm_button_outline:hover{
    background:var(--color-2);
    color:white;
}
.tm_button_filled{
    background:white;
    border-color:white;
}
.tm_link,
.tm_link a{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size:14px;
    color:var(--color-2);
    font-weight:700;
}
.tm_link i{
    margin-left:0.5rem;
    transition-duration: 0.5s;
}
.tm_link:hover i,
.tm_link a:hover i{
    margin-left:1rem;
}
.tm_link:hover,
.tm_link a:hover{
    color:var(--color-2);
}
.tm_button_small{
    padding:0.5rem 2rem;
    font-size:14px;
}
.tm_pagination a{
    color:var(--color-2);
}


/*HEADER*/

.tm_header,
.tm_header_logo{
    height:120px;
}
.tm_header.scrolled,
.tm_header.scrolled .tm_header_logo{
    height:90px;
}
.tm_header_logo .tm_logo_alt{
    display:none;
}
.tm_header{
    background:white;
    position:fixed;
    z-index:999;
    width:100%;
}
.tm_header.scrolled{
    background:white;
    box-shadow:0 0 5px rgba(0,0,0,0.25);
}
.tm_header.scrolled.tm_header_transparent{
    background:var(--color-1);
}
.tm_header.tm_header_transparent:not(.scrolled){
    background:transparent;
    box-shadow:none;
}
.tm_header.tm_header_transparent.scrolled{
    background:var(--color-1);
}
.tm_header:not(.tm_header_transparent) .tm_header_logo .tm_logo_alt{
    display:block;
}
.tm_header:not(.tm_header_transparent) .tm_header_logo .tm_logo_default{
    display:none;
}

.tm_header_logo a{
    display:block;
    width:100%;
    height:100%;
}
.tm_header_logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position: left;
    padding:0.5rem 0;
}
/*.tm_header.tm_header_transparent:not(.scrolled) .tm_header_logo img{
    filter:brightness(0) invert(1);
}*/
.tm_header_mobile_toggle{
    display:none;
    height:100%;
    width:100%;
    align-items:center;
    justify-content:right;
    font-size:24px;
    color:var(--color-1)
}
.tm_header.tm_header_transparent .tm_header_mobile_toggle{
    color:white;
}
.tm_header_right{
    width:100%;
    display:flex;
    justify-content: right;
    align-items: center;
    gap:2rem;
}
.tm_header_menu{
    list-style:none;
    margin:0;
    padding:0;
    text-transform:uppercase;
    letter-spacing: 1px;
    font-size:16px;
    font-weight:700;
}
.tm_header_menu li{
    display:inline-block;
}
.tm_header_menu li a{
    padding:2.375rem 1rem;
    display:block;
    color:var(--color-1);
    position:relative;
}
.tm_header.scrolled .tm_header_menu li a:not(.tm_header_submenu a){
    padding:2.0625rem 1rem;
}
.tm_header.tm_header_transparent.scrolled .tm_header_menu li a:not(.tm_header_submenu a){
    color:white;
}
.tm_header.tm_header_transparent .tm_header_menu li a:not(.tm_header_submenu a){
    color:white;
}
.tm_header_menu li a:not(.tm_header_submenu a):hover,
.tm_header_menu li:hover a:not(.tm_header_submenu a){
    color:var(--color-1);
}
.tm_header.tm_header_transparent:not(.scrolled) .tm_header_menu li a:hover,
.tm_header.tm_header_transparent:not(.scrolled) .tm_header_menu li:hover a:not(.tm_header_submenu a){
    color:white;
}
.tm_header_menu li a:not(.tm_header_submenu a)::after{
    content:'';
    width:0;
    height:1px;
    background:white;
    bottom:1.5rem;
    left:1rem;
    position: absolute;
    transition-duration: 0.5s;
}
.tm_header_menu li a:not(.tm_header_submenu a):hover::after{
    width:calc(100% - 2rem);
}
.tm_header_submenu{
    display:none;
    margin:0;
    padding:0;
    list-style:none;
    position:absolute;
    background:white;
    box-shadow:0 5px 5px rgba(0,0,0,0.1);
    text-align:left;
    width:250px;
    text-transform:uppercase;
    letter-spacing: auto;
    border:2px solid var(--color-2);
}
.tm_header_menu li:hover .tm_header_submenu{
    display:block;
}
.tm_header_submenu li{
    display:block;
    position: relative;
}
.tm_header_submenu li a{
    display:block;
    padding:0.75rem 1rem;
    color:var(--color-1);
}
.tm_header_submenu li:not(:last-child) a::after{
    content:'';
    width:calc(100% - 2rem);
    background:var(--color-2);
    height:1px;
    left:1rem;
    bottom:0;
    display:block;
    position:absolute;
}
.tm_header_submenu li a:hover{
    background:var(--color-2);
    color:white;
}
.tm_header_submenu_toggle{
    display:none;
    position:absolute;
    top:0;
    right:0;
    padding:1rem 2rem;
    color:var(--color-1);
    font-size:18px;
}

/*HERO & TITLE BAR*/

.tm_hero{
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    width:100%;
    padding-bottom:56.25%;
    position: relative;
    overflow:hidden;
}
.tm_hero_video,
.tm_hero_overlay,
.tm_hero_slider,
.tm_hero_slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}
.tm_hero_slider .slick-list,
.tm_hero_slider .slick-track{
    height:100%;
}
.tm_hero_slide{
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.tm_hero_video video{
    width:100%;
    height:auto;
}
.tm_hero_overlay{
    display:flex;
    align-items: center;
    justify-content: center;
    background:rgba(0,0,0,0.5);
}
.tm_hero h1,
.tm_title_bar h1,
.tm_hero p{
    color:white;
}
.tm_hero h1{
    margin:0 0 1rem;
}
.tm_hero h1.hidden{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}
.tm_hero p{
    font-size:18px;
}
.tm_hero p.justified{
    text-align:right;
    margin-top:-3rem;
    font-size:40px;
    font-family:var(--font-heading);
    font-weight:400;
}
.tm_hero_content{
    width:70%;
    margin:0 auto;
    position:relative;
}
.tm_hero.tm_title_bar .tm_hero_content{
    width:100%;
    padding-top:5rem;
}
.tm_hero .tm_content_button{
    margin:3rem 0 0;
}
.tm_hero_title_image{
    width:100%;
    margin:0;
}
.tm_hero_title_image img{
    width:100%;
    height:auto;
}
.tm_title_bar{
    padding:5rem 0 0;
}
.tm_title_bar .tm_section_title span{
    display:block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.4px;
    color:var(--color-2);
    text-transform: uppercase;
    font-family:var(--font-heading);
    margin:0 0 0.5rem;
}

/*CONTENT*/

.tm_content{
    position:relative;
    padding:5rem 0;
}
.tm_content_top_large{
    padding-top:10rem;
}
.tm_content_top_small{
    padding-top:2.5rem;
}
.tm_content_top_none{
    padding-top:0;
}
.tm_content_bottom_large{
    padding-bottom:10rem;
}
.tm_content_bottom_small{
    padding-bottom:2.5rem;
}
.tm_content_bottom_none{
    padding-bottom:0;
}
.tm_content_grey{
    background:var(--color-1);
}
.tm_content_lightgrey{
    background:rgba(37, 38, 39, 0.05);
}
.tm_content_gradient{
    background: linear-gradient(180deg, rgba(37, 38, 39, 0.00) 0%, rgba(37, 38, 39, 0.05) 100%);
}
.tm_content_pattern{
    background-color:var(--color-1);
    background-repeat:repeat;
    background-size:auto;
    background-position: center center;
    background-blend-mode: overlay;
    position:relative;
}
.tm_content_pattern .tm_content_overlay{
    background: linear-gradient(180deg,rgba(37, 38, 39, 0.5) 0%, rgba(37, 38, 39, 1) 100%);
}
.tm_content_wpattern{
    background-repeat:repeat;
    background-size:400px;
    background-position: center center;
    background-blend-mode: overlay;
    position:relative;
}
.tm_content_wpattern .tm_content_overlay{
    background: linear-gradient(180deg,rgba(255, 255,255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}
.tm_content_button{
    margin:3rem 0 0;
}
.tm_content_image{
    width:100%;
    min-height:100%;
    position:relative;
    padding-bottom:100%;
    overflow:hidden;
}
.tm_content_image.tm_content_image_square,
.tm_content_image.tm_content_image_portrait,
.tm_content_image.tm_content_image_landscape{
    min-height:0;
}
.tm_content_image:not(.slick-slider .tm_content_image)::before{
    content:'';
    width:100%;
    height:100%;
    border:1px solid var(--color-2);
    position: absolute;
    left:0;
    top:0;
    z-index:10;
}
.tm_content_image:not(.slick-slider .tm_content_image, .tm_content_image_square)::after{
    content:'';
    width:calc(100% - 10px);
    height:calc(100% - 10px);
    border:1px solid var(--color-2);
    position: absolute;
    left:5px;
    top:5px;
    z-index:10;
}
.tm_content_grey .tm_content_image:not(.slick-slider .tm_content_image)::before,
.tm_content_pattern .tm_content_image:not(.slick-slider .tm_content_image)::before{
    border-color:white;
}
.tm_content_grey .tm_content_image:not(.slick-slider .tm_content_image)::after,
.tm_content_pattern .tm_content_image:not(.slick-slider .tm_content_image)::after,
.tm_project .tm_content_image:not(.slick-slider .tm_content_image)::after,
.tm_content_image.tm_content_image_bullet::after{
    display:none;
}

.tm_content_image img{
    width: 100%;
    height: 100%;
    position:absolute;
    transition-duration: 0.5s;
}
.tm_content_image_cover img{
    object-fit:cover;
}
.tm_content_image_contain img,
.tm_content_icon img{
    object-fit:contain;
}
.tm_content_icon{
    width:60px;
    height:60px;
    overflow:hidden;
}
.tm_content_icon img{
    width:100%;
    height:100%;
}
.tm_content_image_slider_container,
.tm_testimonial_image_slider_container{
    position:relative;
}
.tm_content_image_slider,
.tm_testimonial_image_slider{
    margin-bottom:0 !important;
}
.order-lg-1 .tm_content_image_slider,
.order-lg-1 .tm_testimonial_image_slider{
    padding-right:75px;
}
.order-lg-1 .tm_content_image_slider .slick-list,
.order-lg-1 .tm_testimonial_image_slider  .slick-list{
    padding-left:25%;
}
.order-lg-2 .tm_content_image_slider,
.order-lg-2 .tm_testimonial_image_slider{
    padding-left:75px;
}
.order-lg-2 .tm_content_image_slider .slick-list,
.order-lg-2 .tm_testimonial_image_slider .slick-list{
    padding-right:25%;
}
.order-lg-1 .tm_content_image_slide{
    margin-left:2rem;
}
.order-lg-2 .tm_content_image_slide{
    margin-right:2rem;
}
.tm_content_image_slide .tm_content_image{
    padding-bottom:100%;
    border:1px solid var(--color-2);
}
.order-lg-1 .tm_content_image_slider_controls,
.order-lg-1 .tm_testimonial_image_slider_controls{
    position:absolute;
    bottom:2rem;
    right:0;
    display:flex;
    margin-right:1px;
}
.order-lg-2 .tm_content_image_slider_controls,
.order-lg-2 .tm_testimonial_image_slider_controls{
    position:absolute;
    bottom:2rem;
    left:0;
    display:flex;
    margin-left:1px;
    flex-direction: row-reverse;
}
.tm_content_image_slider_controls .slick-prev,
.tm_testimonial_image_slider_controls .slick-prev{
    display:none !important;
}
.tm_content_image_slider_controls .count,
.tm_content_image_slider_controls .arrow,
.tm_testimonial_image_slider_controls .count,
.tm_testimonial_image_slider_controls .arrow{
    width:75px;
    height:75px;
    border:1px solid var(--color-2);
    position:relative;
}
.tm_content_image_slider_controls .arrow,
.tm_testimonial_image_slider_controls .arrow{
    background:rgba(0,0,0,0.5);
}
.tm_content_image_slider_controls .arrow:hover,
.tm_testimonial_image_slider_controls .arrow:hover{
    background:rgba(0,0,0,0.75);
}
.tm_content_image_slider_controls .count,
.tm_testimonial_image_slider_controls .count{
    display:flex;
    align-items: center;
    justify-content: center;
    font-family:var(--font-serif);
    font-weight:700;
    font-size:20px;
}
.tm_content_image_slider_controls .slick-next,
.tm_testimonial_image_slider_controls .slick-next{
    width:100%;
    height:100%;
    position: relative;
}
.tm_content_image_slider_controls .slick-next::before,
.tm_testimonial_image_slider_controls .slick-next::before{
    content:'';
    background-image:url(public/img/arrow-left.svg);
    background-size:50%;
    background-position: center center;
    background-repeat:no-repeat;
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:1;
}
.order-lg-1 .tm_content_image_slider_controls .slick-next::before,
.order-lg-1 .tm_testimonial_image_slider_controls .slick-next::before{
    transform:scaleX(-1);
}
.tm_content_testimonial_slider,
.tm_content_testimonial_slider .slick-list,
.tm_content_testimonial_slider .slick-track,
.tm_content_testimonial_slide{
    height:100%;
}
.tm_content_testimonial_slide .tm_text{
    text-align:center;
}
.tm_content_testimonial_slide .tm_text p::before{
    content:'';
    width:40px;
    height:40px;
    background-image: url(public/img/quote.svg);
    background-size:contain;
    background-position:center center;
    background-repeat: no-repeat;
    position: absolute;
    top:0;
    left:0;
}
.tm_content_grey .tm_content_testimonial_slide .tm_text p::before,
.tm_content_pattern .tm_content_testimonial_slide .tm_text p::before{
    background-image: url(public/img/quote-white.svg);
}
.tm_content_testimonial_slide .tm_text p{
    font-size: 28px;
    font-weight: 400;
    font-family:var(--font-serif);
    padding:20px 40px;
    position: relative;
}
.tm_content_testimonial_slide .tm_text span{
    display:block;
    margin:1rem 0 0;
    font-size:18px;
}
.tm_content_image_square{
    padding-bottom:100%;
}
.tm_content_image_landscape{
    padding-bottom:65%;
}
.tm_content_image_portrait{
    padding-bottom:140%;
}
.tm_content_grey .tm_content_image_slider_controls .count,
.tm_content_pattern .tm_content_image_slider_controls .count,
.tm_content_grey .tm_content_testimonial_slide .tm_text span,
.tm_content_pattern .tm_content_testimonial_slide .tm_text span{
    color:white;
}
.tm_content_grey .tm_content_image_slider_controls .count,
.tm_content_grey .tm_content_image_slider_controls .arrow,
.tm_content_pattern .tm_content_image_slider_controls .count,
.tm_content_pattern .tm_content_image_slider_controls .arrow,
.tm_content_grey .tm_content_image_slide .tm_content_image,
.tm_content_pattern .tm_content_image_slide .tm_content_image{
    border-color:white;
}
.tm_testimonial_blocks .tm_col{
    margin:3rem 0 0;
}
.tm_testimonial_blocks .tm_content_testimonial_slide .tm_text p,
.tm_testimonial_blocks .tm_content_testimonial_slide .tm_text span{
    margin:0;
}


/*TEXT STYLES*/

.tm_text_flex{
    height:100%;
    display:flex;
    align-items: center;
    padding:0 10%;
}
.tm_text_padded{
    padding:4rem 0;
}
.tm_text_sidepadded{
    padding:0 3rem;
}
.tm_text_full{
    padding:0 3rem;
    height:100%;
    display:flex;
    align-items: center;
}
.order-lg-1 .tm_text_full{
    padding-left:var(--container-margin);
}
.order-lg-2 .tm_text_full{
    padding-right:var(--container-margin);
}
.tm_text_accent{
    position: relative;
    padding-bottom:2rem;
}
.tm_text_accent::after{
    content:'';
    width:20px;
    height:20px;
    border:1px solid var(--color-2);
    position: absolute;
    bottom:0;
    right:0;
}
.tm_text_accent::before{
    content:'';
    width:14px;
    height:14px;
    background:var(--color-2);
    position: absolute;
    bottom:3px;
    right:3px;
}
.tm_text h1{
    font-size:48px;
    color:var(--color-1);
}
.tm_text h2,
.tm_text h3,
.tm_text h4{
    margin:0 0 1rem;
}
.tm_text h2{
    font-family: var(--font-heading);
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}
.tm_text h5{
    margin:0 0 0.5rem;
    color:var(--color-2);
}
.tm_text h4{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: underline;
}
.tm_text h6{
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    color:var(--color-1);
    margin:0 0 0.5rem;
}
.tm_text p b,
.tm_text p strong{
    font-weight:700;
}
.tm_text p a,
.tm_text li a{
    color:var(--color-2);
}
.tm_text p a:hover,
.tm_text li a:hover{
    color:var(--color-1);
}
.tm_text hr{
    border-color:var(--color-2);
    margin-bottom:1.5rem;
}
.tm_text.centered hr{
    max-width:60%;
}
.tm_text hr::after{
    content:'';
    width:100%;
    height:1px;
    background:black;
    display:block;
    margin:2px 0 0;
}
.tm_section_title{
    text-align:center;
    position:relative;
}
.tm_section_title h1,
.tm_section_title h2{
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 5.1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2rem;
    color:var(--color-2);
}
.tm_section_title h1::before,
.tm_section_title h2::before{
    content:'';
    width: 160px;
    flex:0 0 160px;
    height: 15px;
    background-image:url(public/img/title-left.svg);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
    display:inline-block;
}
.tm_section_title h1::after,
.tm_section_title h2::after{
    content:'';
    width: 160px;
    flex:0 0 160px;
    height: 15px;
    background-image:url(public/img/title-right.svg);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
    display:inline-block;
}
.tm_section_title p:not(.default){
    font-family: var(--font-serif);
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    margin:5rem 0;
    padding:0 10%;
}
.tm_section_title p.default{
    padding:3rem 20% 0;
    font-size:20px;
}
.tm_section_title p.serif{
    font-family:var(--font-serif);
    padding:1rem 25% 0;
}
.tm_section_subtitle h3{
    font-size:20px;
}
.tm_section_subtitle{
    position:relative;
    padding-left:350px;
}
.tm_section_subtitle::before{
    content:'';
    width:330px;
    height:1px;
    background:var(--color-2);
    position: absolute;
    top:50%;
    transform:translate(0,-50%);
    left:0;
}
.tm_section_subtitle::after{
    content:'';
    width:1px;
    height:9px;
    background:var(--color-2);
    position: absolute;
    top:50%;
    transform:translate(0,-50%);
    left:330px;
}
.tm_content_grey .tm_section_title h2,
.tm_content_pattern .tm_section_title h2,
.tm_content_grey .tm_section_title p,
.tm_content_pattern .tm_section_title p{
    color:white;
}
.tm_content_grey .tm_section_title h2::before,
.tm_content_pattern .tm_section_title h2::before,
.tm_content_grey .tm_section_title h2::after,
.tm_content_pattern .tm_section_title h2::after{
    filter:brightness(0) invert(1);
}
.tm_content_grey .tm_text h2,
.tm_content_grey .tm_text h3,
.tm_content_grey .tm_text h4,
.tm_content_grey .tm_text h5,
.tm_content_grey .tm_text h6,
.tm_content_grey .tm_text p,
.tm_content_grey .tm_text ul,
.tm_content_grey .tm_text ol,
.tm_content_grey .tm_text li,
.tm_content_grey .tm_text a:not(.tm_button),
.tm_content_pattern .tm_text h2,
.tm_content_pattern .tm_text h3,
.tm_content_pattern .tm_text h4,
.tm_content_pattern .tm_text h5,
.tm_content_pattern .tm_text h6,
.tm_content_pattern .tm_text p,
.tm_content_pattern .tm_text ul,
.tm_content_pattern .tm_text ol,
.tm_content_pattern .tm_text li,
.tm_content_pattern .tm_text a:not(.tm_button){
    color:white;
}
.tm_content_grey .tm_text hr,
.tm_content_pattern .tm_text hr{
    border-color:white;
}
.tm_content_grey .tm_text hr::after,
.tm_content_pattern .tm_text hr::after{
    background:white;
}
.tm_text_bullets{
    display:flex;
    gap:1.5rem;
    flex-wrap:wrap;
}
.order-lg-1 .tm_text_bullets{
    padding-right:3rem;
}
.order-lg-2 .tm_text_bullets{
    padding-left:3rem;
}
.tm_text_bullet{
    flex:0 0 100%;
    padding:0 0 0 2.25rem;
    position: relative;
}
.tm_text_bullet::before{
    content:'';
    width:23px;
    height:20px;
    background-image:url(public/img/bullet.svg);
    background-position: center center;
    background-size:contain;
    background-repeat: no-repeat;
    position: absolute;
    top:0;
    left:0;
}
.tm_text_bullet h5{
    text-transform:uppercase;
    font-weight:600;
    display:block;
    border-bottom:1px solid var(--color-2);
    padding:0 0 1rem;
}

/*BLOCKS*/

.tm_blocks_up{
    margin-top:-4rem;
}
.tm_blocks .tm_col{
    margin:4rem 0 0;
}
.tm_blocks .tm_col.hidden{
    display:none;
}
.tm_block{
    position: relative;
    height:auto;
}
.tm_block a:not(.tm_button, .tm_link){
    display:block;
}
.tm_block .tm_content_image,
.tm_block .tm_content_icon{
    margin:0 0 1rem;
}
.tm_block .tm_content_image::before,
.tm_block .tm_content_image::after{
    border-color:white;
}
.tm_block h3{
    color:var(--color-1);
}
.tm_image_block h3{
    font-size:20px;
    font-weight:400;
    text-align:center;
    text-transform: none;
}
.col-lg-3 .tm_image_block h3{
    font-family:var(--font-heading);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.tm_block p{
    color:var(--color-text);
    margin:0;
}
.tm_block a.tm_button{
    margin:1rem 0 0;
}
.tm_block a:not(.tm_button, .tm_link):hover .tm_content_image img{
    transform:scale(1.1);
}
.tm_block a:not(.tm_button, .tm_link):hover h3{
    color:var(--color-2);
}
.tm_content_grey .tm_block a:not(.tm_button, .tm_link):hover h3,
.tm_content_pattern .tm_block a:not(.tm_button, .tm_link):hover h3{
    color:white;
}
.tm_block_padded{
    padding:0 0 2.5rem;
}
.tm_block_padded a.tm_link{
    position:absolute;
    bottom:0;
    left:0;
}
.tm_block_bg{
    width:100%;
    padding-bottom:70%;
    min-height:100%;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.tm_block_bg .tm_block_overlay,
.tm_block_bg a:not(.tm_button, .tm_link){
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    background:rgba(0,0,0,0.5);
    display:flex;
    align-items: center;
    justify-content: center;
    padding:3rem 2rem;
    text-align:center;
}
.tm_block.tm_block_bg h3,
.tm_block.tm_block_bg p,
.tm_block.tm_block_bg a:hover h3,
.tm_block.tm_block_bg a:hover p,
.tm_end_block h3,
.tm_end_block p,
.tm_end_block a,
.tm_end_block a.tm_link:hover,
.tm_end_block a:hover h3,
.tm_end_block a:hover p{
    color:white;
}
.tm_block_bg a:not(.tm_button, .tm_link):hover{
    background:rgba(0,0,0,0.8);
}
.tm_end_block:not(.tm_block_bg){
    background:var(--color-3);
    padding:1rem;
}
.tm_end_block.tm_block_padded{
    padding-bottom:2.5rem;
}
.tm_end_block.tm_block_padded a.tm_link{
    position:absolute;
    bottom:1rem;
    left:1rem;
}
.tm_end_block .tm_content_icon img{
    filter:brightness(0) invert(1);
}
.tm_side_blocks .tm_block_bg{
    height:auto;
    padding-bottom:0;
}
.tm_side_blocks .tm_block_bg .tm_block_overlay,
.tm_side_blocks .tm_block_bg a:not(.tm_button, .tm_link){
    position:relative;
    padding:1.5rem;
}
.tm_side_blocks .tm_block_bg h3{
    font-size:22px;
}
.tm_side_blocks .tm_block_bg p{
    font-size:15px;
}
.tm_side_blocks .tm_col{
    margin:0.5rem 0;
}
.tm_end_block.tm_block_bg .tm_block_overlay,
.tm_end_block.tm_block_bg a:not(.tm_button, .tm_link){
    position:absolute;
    background:rgba(0,0,0,0.25);
}
.tm_end_block.tm_block_bg .tm_block_overlay:hover,
.tm_end_block.tm_block_bg a:not(.tm_button, .tm_link):hover{
    background:rgba(0,0,0,0.8);
}
.tm_end_block.tm_block_bg i{
    font-size:24px;
    margin:1rem 0 0;
}
.tm_content_grey .tm_block h3,
.tm_content_pattern .tm_block h3,
.tm_content_grey .tm_block p,
.tm_content_pattern .tm_block p{
    color:white;
}
.tm_block_numbered{
    display:flex;
    gap:1.5rem;
}
.tm_block_number{
    width:38px;
    height:38px;
    flex:0 0 38px;
    border:1px solid var(--color-2);
    color:var(--color-2);
    display:flex;
    align-items: center;
    justify-content: center;
    font-size:20px;
    font-weight:300;
}
.tm_content_grey .tm_block_number,
.tm_content_pattern .tm_block_number{
    border-color:white;
    color:white;
}
.tm_content_grey .tm_block_content hr,
.tm_content_pattern .tm_block_content hr{
    border-color:white;
}
.tm_text_blocks .tm_block{
    height:100%;
}
.tm_text_blocks .tm_block_content.hide_title h3,
.tm_text_blocks .tm_block_content.hide_title hr{
    opacity:0;
}
.tm_block_bordered{
    border:1px solid var(--color-2);
    padding:2rem 1.5rem;
    text-align:center;
}
.tm_content_grey .tm_block_bordered,
.tm_content_pattern .tm_block_bordered{
    border-color:white;
}
.tm_block_bordered h3{
    font-size:24px;
}
.tm_block_bordered p{
    font-size:16px;
    line-height: 1.7;
}
.tm_content_grey .tm_block_bordered{
    display:flex;
    align-items: center;
    justify-content: center;
    height:100%;
    padding:2rem;
}
.tm_content_grey .tm_block_bordered hr{
    display:none;
}


/*FOOTER*/

.tm_footer{
    background:var(--color-1);
    padding:4rem 0 2rem;
}
.tm_footer hr{
    border-color:rgba(255,255,255,0.5);
    margin:1rem 0;
}
.tm_footer h4,
.tm_footer h5,
.tm_footer a,
.tm_footer p{
    color:white;
}
.tm_footer h4{
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}
.tm_footer h5{
    margin:0 0 1rem;
}
.tm_footer a:not(.tm_button):hover{
    color:var(--color-5);
}
.tm_footer_menus{
    display:flex;
    gap:4rem;
}
.tm_footer_list{
    list-style:none;
    margin:0;
    padding:0;
    columns:2;
    column-gap:2rem;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}
.tm_footer_list li{
    margin:0 0 1rem;
    break-inside:avoid;
}
.tm_footer_list li a:hover{
    color:var(--color-5);
}
.tm_footer_contact i{
    width:25px;
    text-align:center;
    padding:3px;
}
.tm_footer_contact{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3px;
}
.tm_footer_button{
    margin:1.5rem 0 0;
    display:block;
}
.tm_footer_logo{
    width:100%;
    max-width:250px;
    text-align:center;
    margin:0 auto 2rem;
}
.tm_footer_logo img{
    max-width:100%;
}
.tm_footer_social{
    list-style:none;
    margin:2rem 0 0;
    padding:0;
    display:flex;
    gap:0.75rem;
    font-size:30px;
    justify-content: center;
}
.tm_footer_social li a{
    color:white;
}
.tm_footer_copy{
    font-size:13px;
    text-align:center;
    margin:3rem 0 0;
}

/*TABS*/

.tm_content .nav-pills{
    gap:1rem;
    margin:0 0 3rem;
}
.tm_content .nav-pills.centered{
    justify-content: center;
}
.tm_content .nav-pills .nav-link{
    border:none;
}
.tm_content .nav-pills .nav-link.active,
.tm_content .nav-pills .show>.nav-link{
    background:var(--color-3);
}


/* BLOG & POSTS*/

.tm_categories{
    list-style:none;
    margin:0 0 3rem;
    padding:0;
    text-align:center;
    font-weight:700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size:14px;
    width:100%;
}
.tm_categories li{
    display:inline-block;
    margin:0 2rem;
}
.tm_categories li a{
    display:block;
    color:var(--color-1);
}
.tm_categories li.active a,
.tm_categories li:hover a,
.tm_categories li a:hover{
    color:var(--color-3);
}

.tm_post a{
    display:block;
}
.tm_post_image{
    width:100%;
    padding-bottom:50%;
    position: relative;
    overflow:hidden;
    margin:0 0 1rem;
    background-color:var(--color-5);
    border:none;
}
.tm_post_image img{
    position:absolute;
    top:auto;
    bottom:auto;
    left:auto;
    right:auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition-duration: 0.5s;
}
.tm_post a:hover .tm_post_image img{
    transform:scale(1.1);
}
.tm_post_cats{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content: right;
    padding:1rem;
    gap:0.5rem;
}
.tm_post_cats span{
    color:white;
    font-size:10px;
    text-transform: uppercase;
    background:var(--color-2);
    padding:0.5rem;
    letter-spacing:1px;
}
.tm_text .tm_post_cats{
    position:relative;
    padding:1rem 0;
    justify-content: left;
}
.tm_post_date{
    text-transform:uppercase;
    margin:0 0 0.75rem;
    font-size:80%;
    color:var(--color-2);
}
.tm_post h4{
    color:var(--color-1);
}
.tm_post a:hover h4{
    color:var(--color-3);
}
.tm_post_info{
    display:flex;
    justify-content: space-between;
    gap:2rem;
    align-items: center;
    margin:0 0 1rem;
}
.tm_post_info .tm_post_date{
    margin:0;
}
.tm_post_info .tm_post_cats{
    width:auto;
    padding:0;
}
.tm_main_post .tm_text h2{
    font-size:36px;
    margin:0 0 1rem;
}
.tm_main_post .tm_text h3{
    font-size:24px;
}
.tm_main_post .tm_text h4{
    font-size:20px;
}
.tm_main_post .tm_text h5{
    font-size:18px;
}
.tm_main_post .tm_text h6{
    font-size:16px;
}

/*PAGINATION & BREADCRUMBS*/

.tm_pagination{
    display:flex;
    width:100%;
    justify-content: space-between;
    margin:3rem 0 0;
}
.tm_breadcrumbs{
    list-style:none;
    margin:0 0 2rem;
    padding:0;
}
.tm_breadcrumbs li{
    display:inline-block;
}
.tm_breadcrumbs li:not(:last-child)::after{
    content:">";
    margin:0 0.75rem;
}
.tm_breadcrumbs li a{
    color:var(--color-2);
}
.tm_breadcrumbs li a:hover{
    color:var(--color-4);
}

/* GRAVITY FORMS*/

.tm_form .gform_required_legend,
.tm_text .gform_required_legend{
    display:none !important;
}
.tm_form .gform_wrapper.gravity-theme .gfield_required,
.tm_text .gform_wrapper.gravity-theme .gfield_required{
    color:var(--color-2) !important;
}
.tm_form .gform_wrapper.gravity-theme .gfield input:not([type="submit"]),
.tm_form .gform_wrapper.gravity-theme .gfield select,
.tm_form .gform_wrapper.gravity-theme .gfield textarea,
.tm_text .gform_wrapper.gravity-theme .gfield input:not([type="submit"]),
.tm_text .gform_wrapper.gravity-theme .gfield select,
.tm_text .gform_wrapper.gravity-theme .gfield textarea{
    border:1px solid var(--color-1) !important;
    border-radius:0 !important;
    padding:0.5rem !important;
}
.tm_form .gform_wrapper.gravity-theme .gform_footer button, 
.tm_form .gform_wrapper.gravity-theme .gform_footer input, 
.tm_form .gform_wrapper.gravity-theme .gform_page_footer button, 
.tm_form .gform_wrapper.gravity-theme .gform_page_footer input,
.tm_text .gform_wrapper.gravity-theme .gform_footer button, 
.tm_text .gform_wrapper.gravity-theme .gform_footer input, 
.tm_text .gform_wrapper.gravity-theme .gform_page_footer button, 
.tm_text .gform_wrapper.gravity-theme .gform_page_footer input{
    background:var(--color-2);
    color:white;
    display:inline-block;
    padding:0.75rem 1.5rem;
    border-radius:0;
    font-weight:600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-size:16px;
    text-align:center;
    position: relative;
    border:none;
    outline:2px solid var(--color-2);
    outline-offset:2px;
    transition-duration: 0.5s;
}
.tm_form .gform_wrapper.gravity-theme .gform_footer button:hover, 
.tm_form .gform_wrapper.gravity-theme .gform_footer input:hover, 
.tm_form .gform_wrapper.gravity-theme .gform_page_footer button:hover, 
.tm_form .gform_wrapper.gravity-theme .gform_page_footer input:hover,
.tm_text .gform_wrapper.gravity-theme .gform_footer button:hover, 
.tm_text .gform_wrapper.gravity-theme .gform_footer input:hover, 
.tm_text .gform_wrapper.gravity-theme .gform_page_footer button:hover, 
.tm_text .gform_wrapper.gravity-theme .gform_page_footer input:hover{
    background:var(--color-2);
    color:white;
    outline-offset:0;
}
.tm_form .gform_wrapper.gravity-theme .ginput_counter,
.tm_text .gform_wrapper.gravity-theme .ginput_counter{
    padding-top:0;
}
.tm_form .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_zip,
.tm_form .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_state,
.tm_form .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_city,
.tm_text .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_zip,
.tm_text .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_state,
.tm_text .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_city{
    flex:0 0 33.33%;
}
.tm_form .gform_wrapper.gravity-theme .gfield_label,
.tm_form .gform_wrapper.gravity-theme .ginput_complex label,
.tm_text .gform_wrapper.gravity-theme .gfield_label,
.tm_text .gform_wrapper.gravity-theme .ginput_complex label{
    font-size:13px;
}
.tm_form_box{
    border:1px solid var(--color-2);
    background:white;
    padding:3rem;
}
.tm_form_box .tm_form .gform_wrapper.gravity-theme .ginput_container_address span.ginput_address_zip{
    flex:0 0 100%;
}
.tm_form .tm_section_title h2{
    color:var(--color-2) !important;
    font-size:22px;
}
.tm_form .tm_section_title h2::before,
.tm_form .tm_section_title h2::after{
    width:106px;
    flex:0 0 100px;
}

/*ACCORDIONS*/

.tm_accordions{
    margin:2rem 0 0;
}
.tm_accordion{
    background:white;
    border:1px solid var(--color-5);
    margin:1rem 0 0;
}
.tm_accordion_title{
    display:block;
    padding:1rem;
    position:relative;
}
.tm_accordion_title span.h5{
    margin:0;
}
.tm_accordion_title span.icon{
    position:absolute;
    top:0;
    right:0;
    font-size:18px;
    padding:1rem;
    display:block;
}
.tm_accordion_content{
    display:none;
    width:100%;
    padding:0 1rem 1rem;
    transition-duration:0.5s;
}
.tm_accordion.opened .tm_accordion_content{
    display:block;
}
.tm_accordion_content p:last-of-type{
    margin-bottom:0;
}

/*BANNER IMAGE*/

.tm_banner_image{
    width:100%;
    position:relative;
    background-size:cover;
    background-position:center center;
    background-repeat: no-repeat;
    overflow:hidden;
    padding-bottom:50%;
}
.tm_banner_image_only{
    padding-bottom:40%;
}
.tm_banner_image_overlay{
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(7.5px);
    padding:1.5rem;
    width:50%;
    position:absolute;
    bottom:2rem;
    left:2rem;
    border:1px solid white;
}
.tm_banner_image_overlay .tm_text h2,
.tm_banner_image_overlay .tm_text h3,
.tm_banner_image_overlay .tm_text h4,
.tm_banner_image_overlay .tm_text h5,
.tm_banner_image_overlay .tm_text h6,
.tm_banner_image_overlay .tm_text p,
.tm_banner_image_overlay .tm_text ul,
.tm_banner_image_overlay .tm_text ol,
.tm_banner_image_overlay .tm_text li{
    color:white;
}
.tm_banner_image_overlay .tm_text a:not(.tm_button){
    color:white;
    text-decoration: underline;
}
.tm_banner_image_overlay .tm_text a:not(.tm_button):hover{
    color:white;
}
.tm_banner_image_overlay .tm_text h3{
    font-family:var(--font-serif);
    text-transform: none;
    font-weight:400;
}
.tm_banner_image_overlay .tm_text h4{
    font-weight:300;
    text-transform:uppercase;
    font-family:var(--font-heading);
    text-decoration: none;
}
.tm_banner_image_overlay .tm_text.centered h4{
    position:relative;
    display:flex;
    align-items:center;
    justify-content: center;
    gap:1rem;
}
.tm_banner_image_overlay .tm_text.centered h4::before,
.tm_banner_image_overlay .tm_text.centered h4::after{
    content:'';
    width:100px;
    height:1px;
    background:white;
}
.tm_banner_image_overlay .tm_content_button{
    margin:1.5rem 0 0;
}
.tm_banner_form{
    padding-bottom:0;
    height:auto;
    padding:5rem 0;
}
.tm_banner_form .tm_banner_image_overlay{
    position:relative;
    bottom:auto;
    left:auto;
    margin:auto;
    width:55%;
    border: 1px solid var(--color-1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}
.tm_banner_form.left .tm_banner_image_overlay{
    float: left;
}
.tm_banner_form.right .tm_banner_image_overlay{
    float: right;
}
.tm_banner_form .tm_banner_image_overlay .tm_form h4,
.tm_banner_form .tm_banner_image_overlay .tm_form p{
    color:var(--color-text);
}
.tm_banner_form .tm_banner_image_overlay .tm_form h4{
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 5.1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2rem;
    color:var(--color-text);
    text-decoration: none;
}
.tm_banner_form .tm_banner_image_overlay .tm_form h4::before{
    content:'';
    width: 100px;
    flex:0 0 100px;
    height: 10px;
    background-image:url(public/img/title-left.svg);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
    display:inline-block;
}
.tm_banner_form .tm_banner_image_overlay .tm_form h4::after{
    content:'';
    width: 100px;
    flex:0 0 100px;
    height: 10px;
    background-image:url(public/img/title-right.svg);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
    display:inline-block;
}

/*LOGO SLIDER*/

.tm_logo_slider .slick-list{
    padding:0 !important;
}
.tm_logo_slide{
    margin:0 1rem;
}
.tm_logo_frame,
.tm_logo_slide a{
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
    display: block;
}

.tm_logo_slide img {
    object-fit: contain;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/*IMAGES & GALLERIES*/

.tm_image_slider{
    border:1px solid var(--color-2);
}
.tm_image_slider .tm_image,
.tm_thumbnail_slider .tm_image{
    width:100%;
    padding-bottom:55%;
    position:relative;
    overflow:hidden;
}
.tm_thumbnail_slider .tm_image{
    padding-bottom:100%;
}
.tm_image_slider .tm_image img,
.tm_thumbnail_slider .tm_image img{
    object-fit:cover;
    width: 100%;
    height: 100%;
    position:absolute;
    z-index:-1;
    transition-duration: 0.5s;
}
.tm_thumbnail_slider .tm_image:hover img{
    transform:scale(1.1);
}
.tm_thumbnail_slider{
    width: calc(100% + 1rem);
    margin: 1rem -0.5rem;
}
.tm_thumbnail_slider .tm_image_slide{
    margin:0 0.5rem;
}
.tm_thumbnail_slider .tm_image_slide.slick-current .tm_image{
    box-shadow: inset 0 0 0 4px var(--color-3); 
}
.tm_image_slider .slick-arrow{
    width:auto;
    height:auto;
    z-index:100;
}
.tm_image_slider .slick-prev:before,
.tm_image_slider .slick-next:before{
    color:white;
    padding:1rem;
}
.slick-dotted.tm_image_slider{
    margin-bottom:0;
}
.tm_image_slider .slick-dots{
    bottom:0;
    padding:1rem;
    text-align:left;
    width:50%;
}
.tm_image_slider .slick-dots li{
    margin:0 5px 0 0;
    width:16px;
    height:16px;
}
.tm_image_slider .slick-dots li button:before{
    content:'';
    width:16px;
    height:16px;
    border:1px solid white;
    border-radius:0;
    background:rgba(255,255,255,0.25);
}
.tm_image_slider .slick-dots li.slick-active button:before{
    background:white;
}
.tm_image{
    position:relative;
}
.tm_image .tm_button{
    position:absolute;
    bottom:1rem;
    right:1rem;
    z-index:100;
}
.tm_image_slider .tm_image{
    padding-bottom:50%;
}

/*FEATURED BLOCK*/

.tm_featured_block_container{
    display:flex;
    justify-content: right;
    align-items: center;
    height:100%;
    padding-left:6rem;
}
.tm_featured_block{
    position:relative;
    background-color:rgba(0,0,0,0.1);
    background-size:300px;
    background-position: center center;
    background-repeat: repeat;
    border:1px solid var(--color-2);
}
.tm_featured_block::before{
    content:'';
    width:calc(100% + 10px);
    height:calc(100% + 10px);
    position: absolute;
    left:-5px;
    top:-5px;
    border:1px solid var(--color-2);
}
.tm_featured_block_overlay{
    padding:3rem 2rem;
    background:rgba(255,255,255,0.8);
    text-align:center;
}
.tm_featured_block .tm_button_filled,
.tm_featured_block .tm_button_filled::before{
    border-color:var(--color-2);
}
.tm_featured_block h5{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin:2rem 0;
}
.tm_featured_block .tm_button{
    margin:2rem auto 0;
}

/*PROJECTS*/

.tm_projects .row{
    row-gap:3rem;
}
.tm_project_content h4{
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    text-align:center;
    color:var(--color-2);
    margin:1rem 0 0;
}
.tm_project .tm_content_image{
    padding-bottom:120%;
}
.tm_project .tm_content_image::before{
    transition-duration: 0.5s;
}
.tm_project:hover .tm_content_image::before{
    border-width:5px;
}
.tm_project_cats{
    list-style:none;
    margin:0 0 3rem;
    padding:0;
    display:flex;
    gap:2rem;
    justify-content: center;
}
.tm_project_cats li:hover{
    cursor:pointer;
}

/*TIMELINE*/

.tm_text_timeline{
    display:block;
    max-height:400px;
    overflow: hidden;
}
.tm_text_timeline.expand{
    max-height:none;
    overflow:visible;
    height:auto;
}
.tm_timeline_title{
    display:flex;
    align-items:center;
    justify-content: left;
    gap:2rem;
    flex:0 0 100%;
}
.tm_timeline_title h5{
    font-weight: 300;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    line-height:1.4;
    margin:0;
}
.tm_timeline_logo{
    width:150px;
    flex:0 0 150px;
    height:90px;
    border:1px solid var(--color-2);
    padding:0.75rem;
    display:flex;
    align-items: center;
    justify-content: center;
}
.tm_timeline_logo img{
    object-fit:contain;
    max-width: 100%;
    max-height: 100%;
}
.tm_timeline_entry{
    margin:2rem 0 0;
}
.tm_timeline_entry h6{
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.tm_timeline_entry_content{
    border-left:1px solid var(--color-2);
    padding-left:1rem;
    margin-left:0.5rem;
}
.tm_timeline_entry_content p{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 2.4px;
    margin:0 0 0.5rem;
}
.tm_content_image_caption{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:0.5rem;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(5px);
    color:white;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    text-align:center;
}
.tm_text_timeline_button,
.tm_more_button,
.tm_pagination_button{
    display:block;
    position:relative;
    margin:2rem auto 0;
    text-align:center;
}
.tm_text_timeline_button:hover,
.tm_more_button:hover{
    cursor:pointer;
}
.tm_text_timeline_button span,
.tm_more_button span,
.tm_pagination_button a{
    display:inline-block;
    background-image:url(public/img/button-bg.svg);
    background-size:100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    padding:1.4rem 3rem 1rem;
    font-size:12px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.tm_content_grey .tm_more_button span,
.tm_content_pattern .tm_more_button span{
    color:white;
    background-image:url(public/img/button-bg-white.svg);
    padding: 1rem 4rem 1.4rem;
}

/*TEAM*/

.tm_team_block{
    text-align:center;
}
.tm_team_block h3{
    font-family:var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tm_team_image img{
    object-position: top;
    left:0;
}
.tm_team_modal .btn-close{
    background:transparent;
    border:none;
    font-size:50px;
    font-family:var(--font-heading);
    font-weight:300;
    position:absolute;
    top:0;
    right:0;
    padding:2rem;
    transform:rotate(45deg);
}
.tm_team_modal .modal-dialog{
    max-width:var(--container-width);
}
.tm_team_modal .modal-content{
    background-image:url(public/img/modal-pattern.png);
    background-repeat: repeat;
    background-size:auto;
    background-position: center center;
}
.tm_modal_overlay{
    padding:5rem;
    background:rgba(244,244,244,0.6);
    width:100%;
    height:100%;
}
.tm_team_modal .tm_text h3{
    margin:0;
}
.tm_team_modal .tm_text h6{
    text-transform:none;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.9px;
    margin:0 0 2rem;
}
.tm_team_modal .tm_text p{
    font-size:16px;
}

/*PROJECT SECTIONS*/

.tm_single_project{
    padding-bottom:5rem;
}
.tm_project_section{
    padding-top:5rem;
}
.tm_project_section_grey{
    border-bottom:1px solid var(--color-2);
    background: linear-gradient(0deg,rgba(37, 38, 39, 0.15) 0%, rgba(37, 38, 39, 0) 400px);
    padding-bottom:5rem;
}
.tm_project_section_bordered{
    border-bottom:1px solid var(--color-2);
    padding-bottom:5rem;
}
.tm_project_section_title{
    margin-bottom:-4rem;
}
.tm_project_section .tm_section_title{
    margin:0 0 4rem;
}
.tm_project_title{
    font-size: 30px;;
    font-weight: 300;
    text-transform: uppercase;
    display:inline-block;
    position:relative;
    padding:0 0 1rem;
    margin:0 0 2rem;
}
.tm_project_title::before{
    content:'';
    width:100%;
    height:1px;
    background:var(--color-2);
    display:block;
    position:absolute;
    bottom:0.25rem;
    left:0;
}
.tm_project_title::after{
    content:'';
    width:100%;
    height:1px;
    background:var(--color-2);
    display:block;
    position:absolute;
    bottom:0;
    left:0;
}
.tm_project_image{
    width:100%;
    padding-bottom:55%;
    position: relative;
    border:1px solid var(--color-2);
    overflow:hidden;
}
.tm_project_image img{
    object-fit:cover;
    width: 100%;
    height: 100%;
    position:absolute;
    z-index:-1;
}
.tm_project_image_grid .tm_col{
    margin:1rem 0;
}
.tm_project_image_landscape{
    padding-bottom:65%;
}
.tm_project_image_portrait{
    padding-bottom:135.5%;
}
.tm_project_section .tm_text p b, 
.tm_project_section .tm_text p strong{
    font-weight:500;
}
.tm_project_content .row{
    margin:0 -2rem;
}
.tm_project_content .col-lg-6{
    padding:0 2rem;
}
.tm_project_modal .modal-dialog{
    max-width:var(--container-width);
    max-height:100%;
}
.tm_project_modal .modal-content{
    height: auto;
    max-height: 85vh;
    padding:0;
    background:transparent;
    border:none;
}
.tm_project_modal_image{
    width:100%;
    height:85vh;
    text-align:center;
}
.tm_project_modal_image img{
    object-fit:contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.tm_project_modal .btn-close {
    background: transparent;
    border: none;
    font-size: 100px;
    font-family: var(--font-heading);
    font-weight: 300;
    position: absolute;
    top: -6rem;
    right: 0;
    padding: 2rem;
    transform: rotate(45deg);
    color: white;
}
.tm_project_section .tm_text_flex{
    padding:4rem 0;
}
.tm_project_section .tm_content_image::after{
    content:none;
    display:none;
}
.tm_single_project .tm_content_grey{
    margin-top:5rem;
    background-image:url(public/img/project-bg-pattern.png);
    background-size:500px;
    background-repeat:repeat;
}
.tm_single_project .tm_content_grey .tm_project_content h4{
    font-family:var(--font-serif);
    text-transform:none;
    color:white;
}
.tm_single_project .tm_content_grey .tm_project .tm_content_image::before{
    border-color:white;
}
.tm_single_project .tm_content_grey .tm_project .tm_content_image::after{
    display:none;
}
.tm_single_project .tm_content_grey .tm_section_title{
    margin:0 0 3rem;
}




