 
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
 

body {
   
    /*   font-weight: 300;
    font-size: 20px; */
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
}
.section-header {
    background-image: url(images/Web-Page-2.jpg);
    background-size: 100% 100%;
    background-position: bottom;
    height: 100vh;
    background-repeat: no-repeat;

}


.section-header h2 {
    margin-top: 50px;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #555;
    font-weight: bolder;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
}

.section-header {
    position: relative;
}
.bottom_text {
    position: absolute;
    bottom: 0px; /* Adjust as needed to move it away from the bottom */
    left: 50%;
    transform: translateX(-50%); /* Centers horizontally */
    padding: 10px; /* Optional: Add padding if needed */
  
}

.bottom_text h2{
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
}

 
@media (max-width: 768px) {
    .section-header {
        background-image: url(images/Portrait.jpg);
        background-size: 100% 100%;
        background-position: bottom;
        height: 100vh;
        background-repeat: no-repeat;
    
    }
    .bottom_text h2{
        display: none;
    }
    .bottom_text{
        bottom: 45px; /* Adjust as needed to move it away from the bottom */
    }
    .button-71 {
        padding: 16px 48px;
      }


}


/* CSS */
.button-71 {
    background-color: #FE7903;
    border: 0;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto Condensed, sans-serif;
    font-size: 18px;
    font-weight: 600;
    outline: 0;
    padding: 16px 41px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-71:before {
    background-color: initial;
    border-radius: 30px;
    content: "";
    height: 50%;
    left: 4%;
    opacity: .5;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 100%;
  }
  
  .button-71:hover {
    box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
    transform: scale(1.05);
  }
  
  .button-71::-moz-focus-outer{
border: none !important;
  }
  