@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body{
    margin:0;
    font-family: "Inter", sans-serif;
    }
    nav {
      background:transparent;
      color: #fff;
    }
    
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
    }
    
    .logo img {
      color: #fff;
      font-size: 24px;
      text-decoration: none;
      height: 70px;
      margin-left: 8px;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin: 20px;
      font-size: larger;
    }
    
    .nav-links a {
      color: red;
      text-decoration: none;
    }
    
    .burger {
      display: none;
      cursor: pointer;
    }
    
    .burger div {
      width: 25px;
      height: 3px;
      background-color:red;
      margin: 5px;
    }
    .responsiveimg{
      width: 100%;
      height:auto;
    }
    
    @media screen and (max-width: 895px) {
      .nav-links {
        display: none;
      }
    
      .burger {
        display: block;
      }
    
      .nav-active {
        display: flex;
        flex-direction: column;
        align-items: left;
        
      }
    }
    

 
    
    .formbold-main-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 48px;
      }
    
      .formbold-form-wrapper {
        margin: 0 auto;
        max-width: 550px;
        width: 100%;
        background: white;
      }

    .formbold-form-wrapper h2{
      text-align: center;
      margin-bottom: 30px;
      font-family: "Inter", sans-serif;
      font-size: xx-large;
      color: orange;
      
    }
      .formbold-input-flex {
        display: flex;
        gap: 20px;
        margin-bottom: 22px;
      }
      .formbold-input-flex > div {
        width: 50%;
        display: flex;
        flex-direction: column-reverse;
      }
      .formbold-textarea {
        display: flex;
        flex-direction: column-reverse;
      }
    
      .formbold-form-input {
        width: 100%;
        padding: 5px;
        border: 2px solid gray;
        background: #FFFFFF;
        font-weight: 500;
        font-size: 16px;
        color: #07074D;
        outline: none;
        resize: none;
        border-radius: 4px;
      }
      .formbold-form-input::placeholder {
        color: #536387;
      }
      .formbold-form-input:focus {
        border-color: black;
      }
      .formbold-form-label {
        color: #07074D;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
        display: block;
        margin-bottom: 18px;
      }
      .formbold-form-input:focus + .formbold-form-label {
        color: black;
      }
    
      .formbold-input-file {
        margin-top: 20px;
        margin-bottom: 20px;
       
      }
      .formbold-input-file input[type="file"] {
        position: absolute;
        top: 6px;
        left: 0;
        
      }
      .formbold-input-file .formbold-input-label {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
      }
    
      .formbold-filename-wrapper {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 22px;
      }
      .formbold-filename {
        /* display: flex; */
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        line-height: 24px;
        color: #536387;
      }
    
      .formbold-btn {
        font-size: 16px;
        border-radius: 5px;
        padding: 12px 25px;
        border: none;
        font-weight: 500;
        background-color:black;
        color: white;
        cursor: pointer;
        margin-top: 25px;
      }
      .formbold-btn:hover {
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
      }














    .footer{
    background:#191919;
    padding:4px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    font-weight: bolder;
    }
    
    .footer .row{
    width:100%;
    margin:0% 0%;
    padding:0.6% 0%;
    color:white;
    font-size:0.8em;
    }
    
    .footer .row a{
    text-decoration:none;
    color:white;
    transition:0.5s;
    }
    
    .footer .row a:hover{
    color:white;
    }
    
    .footer .row ul{
    width:100%;
        }
    
    .footer .row ul li{
    display:inline-block;
    margin:15px 15px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
    
    @media (max-width:720px){
    .footer{
    text-align:center;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    margin:0% 3%;
    text-align:center;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }