
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: poppins;
}
.btn_gradiente{
    background: linear-gradient(to right, #4b2e14, #f0c300);
    border: none;
    color: #fff; 
}
.sec-1{
    background:  url('../themes/images/banner.jpg') no-repeat;
    background-size: cover;
    background-position: top;    
    min-height: 900px;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.sec-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}
.sec-1 > * {
    position: relative;
    z-index: 2;
}
.btn_sec1{
    margin-top: 50px;
}
.form-banner{
    width: 100%;
    min-height: 430px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.sec-1_h1{
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.sec-1_p{
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 10px;
}
.sec-2{
    padding-top: 100px;
}
.sec-2_h1{
    color: #013566;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.sec-2_p{
    color: #013566;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}
.sec-3{
    margin-top: 100px;
}

.box-sec-3 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    border-radius: 10px;
    min-height: 420px;
    box-shadow: 0px 2px 37px 15px rgba(0, 0, 0, .05);
    transition: 1s;    
    overflow: hidden;
}

.box-sec-3::before {
    content: '';
    position: absolute;
    background: linear-gradient(to right, #4b2e14, #f0c300);  
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;  
}

.box-sec-3:hover::before {
    opacity: 1;
    transition: 1s;  
}

.box-sec-3:hover img {
    filter: brightness(1000) saturate(0) contrast(1000);
}


.box-sec-3:hover h1, .box-sec-3:hover p{
    color: #fff;
    transition: 1s;
}
.box-sec-3 h1{
    color: #013566;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    transition: 1s;  
}
.box-sec-3 p{
    color: #707070;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    line-height: 27px;
    transition: 1s;  
}
.sec-4{
    margin-top: 100px;
    margin-bottom: 100px;
}
.li-sec-4{
    list-style: none; 
    display: flex;
    align-items: center;
}
.li-sec-4 i{
    color: #013566;
    font-size: 1.2rem;
    margin-right: 10px
}
.img-sec-5 img{
    position: relative;
    width: 100%;
    border-radius: 10px;
}


footer{
    background: #d8d8d8;
    margin-top: -2px;
}
footer .logo{
    width: 200px;
}

footer ul li{
    list-style: none;  
    margin-bottom: 10px;  
}
footer ul li i{
      margin-right: 10px;
      color: #4b2e14;
}
footer a{
     font-size: 2rem;
      color: #4b2e14;
}
footer ul{
    padding: 0;
}

.footer_top svg {
    fill: #d8d8d8;  
    transform: rotate(-180deg);
}
.img-sec-6{
    width: 100%;
    position: relative;
    margin-top: 20px;
    border-radius: 5px;
}