
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


.responsive-iframe {
  width: 100%;
  
  border: none;
}

a {
  text-decoration: none;
  outline: none;
}

a img {
  border: none;
  background: #f2f2f2;
}

.caption {
  --webkit-backface-visibility: hidden;
  /* prevent flash when embedding fiddle */
  display: inline-block;
  position: relative;
  margin: 10px;
  overflow: hidden;
  /* background: #000; */
}

.caption img {
  display: block;
  max-width: 100%;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.caption:hover img {
  opacity: 0.5;
}

.caption::after,
.caption::before {
  position: absolute;
  width: 100%;
  height: 50%;
  color: #fff;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.caption::after {

  text-align: center;
  content: attr(data-title);
  top: 0;
  background: #00a479;
  font-size: 20px;
  font-weight: 600;
  padding: 42px;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}

.caption::before {
  content: '...' attr(data-description) '...';
  top: 50%;
  background: #F08535;
  font-size: 12px;
  font-weight: 700;
  padding: 20px;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
}

.caption:hover::after,
.caption:hover::before {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  transform: translateY(0%);
}

/*  */


.container-fluid {
    background-color: #ffffff;

}
.section {
      padding: 20px;
    }



    .site-logo {
      background: none;
      height: 3rem;
      margin-left: 1rem;
      margin-top: 1rem;
    }

    .link-light {
      color : gray;
    }

    /* .card {
      padding: 20px;
      box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
      margin-bottom: 10px;
      border-radius: 10px;
    } */

    .row::after {
      content: "";
      clear: both;
      display: table;
    }

    .col-sm-6 {
      float: left;
      width: 50%;
    }

    img {
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
    }

    h2 {
      margin-top: 0;
    }

    p {
      margin-bottom: 0;
    }

    .nav-item {
      padding: 1rem;
      display: inline;
    }

    .link-light:focus, .link-light:hover {
      color : #0a58ca;
    }

    @media (max-width: 768px) {
      .col-sm-6 {
        width: 100%;
      }
    }


    body {
      margin: 0;
      padding: 0;
      font-family: Poppins;
      background-color: #f2f2f2;
  }
  
  header {
      width: 100%;
      height: 200px;
      overflow: hidden;
  }
  
  header img {
      width: 100%;
      height: auto;
  }
  
  .form-card {
      background-color: #ffffff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      width: 50%;
      margin: 50px auto;
      padding: 20px;
      border-radius: 10px;
      
  }
  
  .card h2 {
      margin-top: 0;
  }
  
  form label {
      display: block;
      margin-bottom: 5px;
  }
  
  form input {
      padding: 10px;
      margin-bottom: 10px;
      width: 100%;
      
  }
  
  button[type="submit"] {
      background-color: #4CAF50;
      color: white;
      padding: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }



  .topnav {
    overflow: hidden;
    background-color: white;
  }
  
  .topnav a {
    float: left;
    color: gray;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }
  
  .topnav-right {
    float: right;
    margin-top: 1rem;
  }


    .card-header {
      background: #F08535;
    }
  
  
    .card-header:first-child {
  
      background: #F08535;
      color: white;
      font-size: 25px;
      padding: 2rem;
  
    }
  
    ul.privacy {
      list-style-type: number;
    }