
:root {
    --primary-color: #488db4;
    --secondary-color: #f5f2fe;
    --box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    --default-font-family: "Poppins", sans-serif;
    --heading-font-family: "Playfair Display", serif;
  
  }

  h1,h2,h3,h4{
  color: black;
  font-family: var(--heading-font-family);
  font-weight: bold;
  }
  
  .justify-content-between {
    justify-content: space-between !important;
    
  }
  .d-flex {
    display: flex !important;
  }
  nav{
    margin-top: 10px;
    padding: 10px 0;
    background-color:black;
    border-radius: 35px;
  }
  .logo{
    max-height: 40px;
  }

  nav a {
    text-decoration: none;
    color: white;
    transition: all 100ms ease-in-out;
    
  }

  nav ul {
    padding: 0;
    margin-right: 15px;
  }

  nav li {
    display: inline;
    list-style: none;
    line-height: 42px;
    margin-left: 15px;
  }

  .btn-branding-outline {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;
  }
  footer .contact-box{
    background: var(--secondary-color);
    padding: 30px 120px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-branding {
    background: var(--primary-color);
    border-radius: 4px;
    color: white;
    font-size: 18px;
    line-height: 27px;
    padding: 15px 30px;
  }

  @media (min-width: 1400px){
    .container{
      max-width: 1320px;
    }
  }
 