:root {
    --cor-1: #211F20;
    --cor-2: #BCA66F;
    --cor-3: #FEFEFE;
}

/*TRANSITION HOVER*/
.btn,
a{
    transition-duration: 0.4s !important;
    -moz-transition-duration: 0.4s !important;
    -webkit-transition-duration: 0.4s !important;
}

body{
    background-color: var(--cor-1);
    color: var(--cor-2);
}

.TopoSlide{
    overflow: hidden;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 50%);
    margin: 1.5rem auto;
    height: 520px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.TopoSlide .j_slide{
    display: flex;
    justify-content: center;
    align-items: center;
}

.TopoSlide .j_slide_item {
    background: center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 520px;

}

.TopoSlide .j_slide_item_txt {
    position: absolute;
    top: 0;
    left: 0;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;

}

.TopoSlide .j_slide_item h2{
    color: #FFF;
    text-shadow: 1px 1px #000;
    font-weight: 600;
    padding: 10px 0 0 20px;
    text-transform: uppercase;
    font-size: 1.2em;
}

.TopoSlide .j_slide_item p{
    color: #FFF;
    text-shadow: 1px 1px #000;
    font-weight: 400;
    padding: 0 20px;
    font-size: 1em;
}

.Geral{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.Geral .GeralCentral{
    width: 750px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.Geral .GeralCentral span{
    text-align: center;
    background-color: var(--cor-3);
    margin: 10px;
    border-radius: 5px;
    width: 230px;
    padding: 10px;
    color: var(--cor-1);
}

.Geral .GeralCentral span a{
    width: 210px;
    height: 210px;
    display: block;
    background-position: center;
    background-size: 200px;
    border-radius: 50%;
    border: 2px solid var(--cor-2);
    margin-bottom: 1rem;
}

.Geral .GeralCentral span h2{
    font-size: 1em;
    font-weight: 600;
}

@media (max-width: 1024px){
    .TopoSlide, .TopoSlide .j_slide_item{
        height: 385px;
    }
}

@media (max-width: 768px){
    body{
        background-color: var(--cor-3);
    }

    .TopoSlide, .TopoSlide .j_slide_item{
        height: 288px;
    }

    .Geral .GeralCentral{
        flex-wrap: wrap;
    }

    .Geral .GeralCentral span{
        border-bottom: 1px dashed var(--cor-1);
        border-radius: none;
    }
}

@media (max-width: 640px){
    .TopoSlide, .TopoSlide .j_slide_item{
        height: 240px;
    }
}