﻿.bg-blue-light {
  --bg-opacity: 1;
  background-color: #33576c;
  background-color: rgba(51,87,108,var(--bg-opacity));
  font-family: 'Open Sans', sans-serif;
}

.bg-white {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255,255,255,var(--bg-opacity));
}

.bg-blue {
  --bg-opacity: 1;
  background-color: #24475c;
  background-color: rgba(36,71,92,var(--bg-opacity));
  font-family: 'Open Sans', sans-serif;
}

.text-blue-light,
.footer a.text-blue-light i {
  --text-opacity: 1;
  color: #33576c;
  color: rgba(51,87,108,var(--text-opacity));
}

.text-base {
  font-size: 16px;
}

.text-sm {
  font-size: 14px;
}

.text-xl {
  font-size: 20px;
}

.font-bold {
  font-weight: 700;
}

.block {
  display: block;
}

.p-0 {
  padding: 0;
}

.pb-16 {
  padding-bottom: 64px;
}

.pt-24 {
  padding-top: 96px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.m-0 {
  margin: 0;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-12 {
  margin-bottom: 48px;
}

.mb-16 {
  margin-bottom: 64px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-10 {
  margin-top: 40px;
}

.max-w-sm {
  max-width: 384px;
}

.w-full {
  width: 100%;
}

.w-10 {
  width: 40px;
}

.h-10 {
  height: 40px;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.rounded-full {
  border-radius: 9999px;
}

.list-none {
  list-style-type: none;
}

@media (min-width: 768px){
  .md\:max-w-none {
    max-width: none;
  }
}

@media (min-width: 1024px){
  .lg\:mb-0 {
    margin-bottom: 0;
  }
}

.text-white {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255,255,255,var(--text-opacity));
}

@media (min-width: 768px){
  .md\:flex {
    -js-display: flex;
    display: flex;
  }
}

@media (min-width: 1024px){
  .lg\:flex {
    -js-display: flex;
    display: flex;
  }
}

@media (min-width: 768px){
  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px){
  .md\:flex-wrap {
    flex-wrap: wrap;
  }
}

@media (min-width: 768px){
  .md\:justify-start {
    justify-content: flex-start;
  }
}

@media (min-width: 768px){
  .md\:items-center {
    align-items: center;
  }
}

@media (min-width: 768px){
  .md\:justify-between {
    justify-content: space-between;
  }
}

.flex {
  -js-display: flex;
  display: flex;
}

.flex-col {
  flex-direction: column;
}

@media (min-width: 768px){
  .md\:w-1\/2 {
    width: 50%;
  }
}

@media (min-width: 1024px){
  .lg\:flex-1 {
    flex: 1 1 0%;
  }
}

@media (min-width: 1024px){
  .lg\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}

@media (min-width: 1024px){
  .lg\:mt-0 {
    margin-top: 0;
  }
}

@media (min-width: 1024px){
  .lg\:inline-block {
    display: inline-block!important;
  }
}

@media (min-width: 1280px){
  .footer .container {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer a {
  color: inherit;
  text-decoration: inherit;
}

.footer h3 {
  margin-bottom: 0;
  font-weight: 300;
}

.-mx-2 {
  margin-left: -8px;
  margin-right: -8px;
}

@media (min-width: 768px){
  .md\:-mx-6 {
    margin-left: -24px;
    margin-right: -24px;
  }
  .md\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px){
  .lg\:w-3\/4 {
    width: 75%;
  }
  .lg\:w-1\/4 {
    width: 25%;
  }
  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .lg\:block {
    display: block;
  }
}

.footer .btn {
  transition: all .15s ease-in-out;
  box-sizing: border-box;
  -js-display: inline-flex;
  display: inline-flex;
  justify-content: center;
  padding: 12px 48px;
  border: 1px solid transparent;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}

.footer .btn-ghost-white, .footer .btn-ghost:hover {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255,255,255,var(--text-opacity));
  --border-opacity: 1;
  border-color: #fff;
  border-color: rgba(255,255,255,var(--border-opacity));
}