.Button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: solid red 1px; */
    padding: auto;
    height: 100%;

}

.Button img {
    width: 100%;
    height: 100%;
}

.Button .Btn_Defualt {
    opacity: 1;
}

.Button .Btn_Press {
    position: absolute;
    opacity: 0;

}

.Button .Btn_Hover {
    position: absolute;
    opacity: 0;
}

.Button:hover .Btn_Defualt {
    opacity: 0;
}


.Button:hover .Btn_Hover {
    opacity: 1;
}

.Button:active .Btn_Press {
    opacity: 1;
}

.Button:active .Btn_Hover {
    opacity: 0;
}

.Button h3 {
    position: absolute;
    color: #284000;
    font-family: "Geologica", sans-serif;
    z-index: 2;
    font-size: 1.5em;

}

/* 
.Button h3:nth-child(2) {
    position: absolute;
    color: #284000;
    font-family: 'Times New Roman', Times, serif;
    z-index: 2;
    transform: translateY(100%);
    font-size: 1.5em;

} */



.Button.SideBarOpen {
    opacity: 0;
}









.Service_Button_In {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center center;

    padding: auto;
    height: 100%;

    width: 100%;
}

.Service_Button_In .Text {
    position: absolute;
    z-index: 1;
    color: #284000;
    font-family: "Geologica", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    top: 50%;
    transform: translateY(-55%);
    height: 100%;
}

.Service_Button_In .Text h3:nth-child(1) {
    margin-bottom: 0;
    position: relative;
    left: 50%;
    transform: translateX(-30%);
    font-size: 1.3em;

}

.Service_Button_In .Text h3:nth-child(2) {
    margin-top: 0;

    font-size: 1.3em;
}



.Service_Button_In img {
    width: 100%;
    height: 100%;
}

.Service_Button .Btn_Defualt {
    opacity: 1;
    position: relative;
    left: 0;
    top: 0;
}

.Service_Button .Btn_Press {
    position: absolute;
    opacity: 0;

}

.Service_Button .Btn_Hover {
    position: absolute;
    opacity: 0;
}

.Service_Button:hover .Btn_Defualt {
    opacity: 0;
}


.Service_Button:hover .Btn_Hover {
    opacity: 1;
}

.Service_Button_In.SideBarOpen {
    opacity: 0;
}