.duxmenu{
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 3rem;
}
@media screen and (max-width: 767px){
    .duxmenu{
        grid-template-columns: 1fr;
    }
    .absolute {
    -webkit-clip-path: none;
    clip-path: none; 
    min-height: 80rem;    
        
    }
}
.duxmenu ul{
    background-color: white;
    list-style: none; 
}
.duxmenu ul li{
    border: 0.1rem solid #112255;
}
.duxmenu ul li a{
    font-family: "OS_B";
    font-size: 1.4rem;
    color: #2a2a2a;
    position: relative;
    display: block;
    padding: 1rem;
}
.duxmenu ul li:hover a{
    color: #FFC424;
}

button {
  background: none;
  border: 0.3rem solid #112255;
  border-radius: 0.3rem;
  color: #112255;
  display: block;
  font-size: 1.6em;
  font-weight: bold;
  margin: 0.5em auto;
  padding: 0.8rem 4rem;
  position: relative;
  text-transform: uppercase;
  min-width: 30rem;
  transition: 0.1s linear; 
}
button:hover{
    background-color: #112255;
    color: white;
    
}
.uslugap{
    color: #2a2a2a;
    font-family: "OS_R";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2rem;
    text-align: center;
    margin: 1rem;
}