/* Generated from tbuilder_layout_part: footerdecktop */
.themify_builder_content-2529 .tb_stbh233.module_row{padding:2em; background-color:rgba(252, 252, 242, 1); border-top:5px solid rgba(205, 223, 188, 1); border-bottom:5px solid rgba(205, 223, 188, 1);}
.themify_builder_content-2529 .tb_stbh233.module_row,.themify_builder_content-2529 .tb_stbh233.module_row p,.themify_builder_content-2529 .tb_stbh233.module_row h1,.themify_builder_content-2529 .tb_stbh233.module_row h2,.themify_builder_content-2529 .tb_stbh233.module_row h3:not(.module-title),.themify_builder_content-2529 .tb_stbh233.module_row h4,.themify_builder_content-2529 .tb_stbh233.module_row h5,.themify_builder_content-2529 .tb_stbh233.module_row h6{color:rgba(121, 88, 61, 1); font-family:'Times New Roman', "Times", serif;}
.themify_builder_content-2529 .tb_stbh233.module_row a:hover{color:rgba(251, 154, 41, 1);}
.themify_builder_content-2529 .tb_stbh233.module_row a{text-decoration:none; color:rgba(121, 88, 61, 1);}
.themify_builder_content-2529 .tb_gy2s233.module_column{padding-bottom:0px;}
.themify_builder_content-2529 .tb_kzkl281.module_row{padding:2em; background-color:rgba(252, 252, 242, 1); border-top:5px solid rgba(205, 223, 188, 1); border-bottom:1px solid rgba(205, 223, 188, 1);}
.themify_builder_content-2529 .tb_kzkl281.module_row,.themify_builder_content-2529 .tb_kzkl281.module_row p,.themify_builder_content-2529 .tb_kzkl281.module_row h1,.themify_builder_content-2529 .tb_kzkl281.module_row h2,.themify_builder_content-2529 .tb_kzkl281.module_row h3:not(.module-title),.themify_builder_content-2529 .tb_kzkl281.module_row h4,.themify_builder_content-2529 .tb_kzkl281.module_row h5,.themify_builder_content-2529 .tb_kzkl281.module_row h6{color:rgba(121, 88, 61, 1); font-family:'Times New Roman', "Times", serif;}
.themify_builder_content-2529 .tb_kzkl281.module_row a:hover{color:rgba(251, 154, 41, 1);}
.themify_builder_content-2529 .tb_kzkl281.module_row a{text-decoration:none; color:rgba(121, 88, 61, 1);}
.themify_builder_content-2529 .tb_k71a281.module_column{padding-bottom:0px;}
.themify_builder_content-2529 .tb_bxxg283.module-text{padding-top:20px;}
.themify_builder_content-2529 .tb_blw5211.module-text{text-align:center;}
/* Builder Custom CSS START */
.container {
    position: relative;
    width: auto;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.text-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
    transition: opacity 0.3s ease;
}

.image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.container:hover .text-content {
    opacity: 0;
}

.container:hover .image-content {
    opacity: 1;
}

.zoom-image {
    width: 100%; /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s ease; /* Smooth transition */
}

.zoom-image:hover {
    transform: scale(1.05); /* Increase size by 5% */
}
/* Builder Custom CSS END */