
/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  
}

@media (max-width: 480px) {
  
}
/*------------------------------------------------------------------*/

* {
  margin: 0px; 
  padding: 0px; 
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Titillium Web', sans-serif;
  color: #1a1a1a;
}

a {
  color: #2479B3;
  text-decoration: underline;
}

a:hover {
  color: #23527c;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0px;
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0px;
}

p.small {
  font-size: 12px;
  line-height: 1.4;
  margin: 0px;
}

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 100%;
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1; 
}

.wrap-card100 {
  width: 1024px;
  padding: 0 10px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 9px -5px, rgba(0, 0, 0, 0.14) 0px 15px 22px 2px, rgba(0, 0, 0, 0.12) 0px 6px 28px 5px;
}

.card-title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding: 20px 0px;
}

.card-content {
  min-height: 381px;
} 

.fw-600 {
  font-weight: 600;
}











