/* Colors */
/* Fonts */
.solid-heading, h3.list-title {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}

.standout, a.feature, .feature, .solution h3 {
  font-size: 1.125em;
  font-weight: 700;
}

.text-secondary {
  color: #6AACEA !important;
}

.bg-primary-subtle {
  background-color: #F0F7FD !important;
}

.bg-gradient-primary {
  background: linear-gradient(to right, #002F5B, #004F98);
}

.fill-primary {
  fill: #004F98;
}

.fill-white {
  fill: white;
}

.fill-light {
  fill: #ABB5BF;
}

.text-primary {
  color: #004F98 !important;
}

.text-info {
  color: hsl(202, 100%, 70%) !important;
}

.text-light {
  color: #D9DEE3 !important;
}

.text-dark {
  color: #172431 !important;
}

.text-success {
  color: hsl(166, 49%, 44%) !important;
}

.text-id-cyan {
  color: hsl(202, 100%, 70%);
}

.text-id-teal {
  color: hsl(177, 46%, 48%);
}

.text-blue {
  color: #3382C2 !important;
}

.text-green {
  color: hsl(166, 49%, 44%) !important;
}

.text-orange {
  color: #FF8E09 !important;
}

.text-id-yellow {
  color: hsl(45, 100%, 60%);
}

.border-primary {
  border-color: #004F98 !important;
}

.border-id-cyan {
  border-color: hsl(202, 100%, 70%) !important;
}

.border-id-orange {
  border-color: hsl(37, 100%, 56%) !important;
}

.border-id-yellow {
  border-color: hsl(45, 100%, 60%) !important;
}

.border-id-teal {
  border-color: hsl(177, 46%, 48%) !important;
}

.border-success {
  border-color: hsl(166, 49%, 44%);
}

.border-warning {
  border-color: #FF8E09;
}

.border-blue {
  border-color: #3382C2;
}

.rounded {
  border-radius: 0.5rem !important;
}

.circle {
  border-radius: 50%;
}

.custom-txt {
  text-transform: uppercase;
  font-weight: 600;
}

.bg-primary {
  background: #004F98 !important;
}

.bg-secondary {
  color: white;
  background: #303D4A !important;
}

.bg-info {
  color: #F2F4F6;
}

.bg-light {
  background-color: #F2F4F6 !important;
}

.bg-light-blue {
  background-color: #B4D5F4 !important;
}

.bg-dark {
  background-color: #172431 !important;
}

.bg-cerulean-subtle {
  background: #DDEEF7;
}

.bg-success-subtle {
  background: #D7EDE8;
}

.alert-success {
  color: #168751;
  background-color: #d2f0e2;
  border-color: #a5e1c4;
}

.letter-spacing-0 {
  letter-spacing: 0;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.p-6 {
  padding: 5rem;
}

.pt-6 {
  padding-top: 5rem;
}

.pb-6 {
  padding-bottom: 5rem;
}

.pl-6 {
  padding-left: 5rem;
}

.pr-6 {
  padding-right: 5rem;
}

.px-6 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.brand {
  background-color: white;
  display: block;
  position: fixed;
  padding: 1em 2em 1.25em;
  border-bottom-right-radius: 2em;
  z-index: 2;
}
.brand .logo {
  height: 4em;
}

.navbar-toggler {
  width: 4em;
  height: 4em;
  background: white;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 1em;
  right: 0.75rem;
  transition: all 0.15s ease-in-out;
  z-index: 5;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  width: 2.5em;
  height: 1.5rem;
  cursor: pointer;
  position: relative;
}
.navbar-toggler .navbar-toggler-icon .icon-bar {
  width: 100%;
  height: 2px;
  background-color: #303D4A;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
.navbar-toggler .navbar-toggler-icon .bar-1 {
  top: 0;
}
.navbar-toggler .navbar-toggler-icon .bar-2, .navbar-toggler .navbar-toggler-icon .bar-3 {
  top: 0.6875rem;
}
.navbar-toggler .navbar-toggler-icon .bar-4 {
  top: 1.375rem;
}
.navbar-toggler.toggled {
  background-color: transparent;
}
.navbar-toggler.toggled .icon-bar {
  background-color: #F2F4F6;
}
.navbar-toggler.toggled .bar-1, .navbar-toggler.toggled .bar-4 {
  width: 0%;
  top: 0.78125rem;
  left: 50%;
}
.navbar-toggler.toggled .bar-2 {
  transform: rotate(45deg);
}
.navbar-toggler.toggled .bar-3 {
  transform: rotate(-45deg);
}

#navbarContent {
  width: 18em;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  position: fixed;
  top: 1em;
  right: -18em;
  background-color: #3382C2;
  padding: 4em 1em 1em;
  border-radius: 1em 0 0 1em;
  transition: right 0.15s ease-in-out;
  z-index: 4;
}
#navbarContent.show {
  right: 0;
}
#navbarContent .navbar-nav {
  width: 100%;
}
#navbarContent .navbar-nav .nav-item .nav-link {
  font: 500 1.25rem/1.5 "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F2F4F6;
  padding: 0.4em 0.7em;
  border-radius: 0.2em;
  transition: all 0s, padding-left 0.3s;
}
#navbarContent .navbar-nav .nav-item .nav-link:hover {
  padding-left: 1em;
  background-color: hsla(209, 100%, 18%, 0.3);
}

.nav-icon-home {
  width: 4em;
  height: 4em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 1em;
}
.nav-icon-home img {
  height: 1.5rem;
}

.overlay-effect {
  width: 100%;
  height: 100%;
  background-color: #172431;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  transition: all 0.15s ease-in-out;
  z-index: 3;
}
.overlay-effect.open {
  opacity: 0.7;
  visibility: visible;
}

html {
  font-size: 16px;
}

body {
  color: #667482;
  font: 450 0.875rem/1.5 "Montserrat", sans-serif;
}

.container {
  position: relative;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  display: inline-block;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}
.h1 b, .h2 b, .h3 b, .h4 b, .h5 b, .h6 b, h1 b, h2 b, h3 b, h4 b, h5 b, h6 b {
  font-weight: 700;
}

.h1, h1 {
  font-size: 3em;
}

.h2, h2 {
  font-size: 2.5em;
}

h3.list-title {
  font-size: 1.25em;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid white;
}

.title {
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.title::before, .accented::before {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin: 0 auto 0.5rem;
  background: linear-gradient(to right, #FFCB25, #FF8E09);
}

.lead {
  font-weight: 500;
  font-size: round(down, 1.125em, 1px);
}

.em {
  font-weight: 600;
  text-transform: none;
  font-style: normal;
}

p, ol, ul, dl {
  margin-bottom: 0.5em;
}
p:last-child, ol:last-child, ul:last-child, dl:last-child {
  margin-bottom: 0;
}

ol, ul {
  padding-inline-start: 1rem;
}
ol.custom, ul.custom {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

section.highlights .icon {
  width: 5rem;
  height: 5rem;
  padding: 1.25rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #002F5B, #6AACEA);
  overflow: visible;
}

.timeline {
  width: 100%;
  height: 100%;
}
.timeline:before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: hsl(211, 80%, 92%);
  margin: 0 auto;
}
.timeline.last:before {
  background: linear-gradient(to bottom, hsl(211, 80%, 92%), hsla(211, 80%, 92%, 0));
}
.timeline.indicator:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 0.5rem solid #004F98;
  background: white;
  margin: 0 auto;
  position: relative;
  top: -100%;
}
.timeline.indicator.blue:after {
  border-color: #3382C2;
}
.timeline.indicator.orange:after {
  border-color: #FF8E09;
}
.timeline.indicator.green:after {
  border-color: hsl(166, 49%, 44%);
}
.timeline.indicator.primary:after {
  border-color: #004F98;
}

.timeline-info {
  margin-bottom: 2rem;
}

.timeline-date {
  display: inline-block;
  font: 400 1.25rem/1.2 "Poppins", sans-serif;
  padding: 0.2rem 1.5rem 0;
  margin-bottom: 0.5rem;
  border-radius: 10rem;
  position: relative;
  top: -0.1rem;
}
.timeline-date.blue {
  color: #3382C2;
  background: hsl(211, 80%, 92%);
}
.timeline-date.green {
  color: hsl(166, 49%, 44%);
  background: #D3F0E9;
}
.timeline-date.orange {
  color: #FF8E09;
  background: #FFE8CE;
}
.timeline-date.primary {
  color: #004F98;
  background: #6AACEA;
}

ol.custom {
  list-style: none;
  counter-reset: item;
  padding-inline-start: 2.5em;
}
ol.custom li {
  counter-increment: item;
  margin-bottom: 0.75em;
}
ol.custom li:before {
  content: counter(item);
  width: 1.5em;
  color: white;
  background: #3382C2;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  position: absolute;
  left: 1em;
}

.organogram {
  font-size: 12px;
}
.organogram .row {
  justify-content: center;
}
.organogram .label {
  padding: 0.5em 1em;
  border-radius: 888rem;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
}
.organogram .label.commissioner {
  color: #004F98;
  background-color: white;
  border: 2px solid #004F98;
}
.organogram .label.director {
  color: white;
  background-color: #004F98;
}
.organogram .label.manager-1 {
  color: white;
  background-color: #FF8E09;
}
.organogram .label.manager-2 {
  color: white;
  background-color: hsl(166, 49%, 44%);
}
.organogram .label.site {
  color: white;
  background-color: #6AACEA;
}
.organogram .line {
  min-height: 3rem;
  position: relative;
}
.organogram .line:before, .organogram .line:after {
  content: "";
  display: block;
  position: absolute;
}
.organogram .line.hr-straight:before {
  width: 100%;
  height: 50%;
  bottom: 0;
  border-top: 2px solid #004F98;
}
.organogram .line.vr-straight:before {
  width: 50%;
  height: 100%;
  border-right: 2px solid #004F98;
}
.organogram .line.left-end:before {
  width: 50%;
  height: 50%;
  bottom: 0;
  right: 0;
  border-top: 2px solid #004F98;
  border-left: 2px solid #004F98;
}
.organogram .line.right-end:before {
  width: 50%;
  height: 50%;
  bottom: 0;
  left: 0;
  border-top: 2px solid #004F98;
  border-right: 2px solid #004F98;
}
.organogram .line.cross:before {
  width: 100%;
  height: 50%;
  bottom: 0;
  border-top: 2px solid #004F98;
}
.organogram .line.cross:after {
  width: 50%;
  height: 100%;
  left: 0;
  border-right: 2px solid #004F98;
}
.organogram .line.t-left::before {
  width: 50%;
  height: 50%;
  bottom: 0;
  border-top: 2px solid #004F98;
}
.organogram .line.t-left:after {
  width: 50%;
  height: 100%;
  left: 0;
  border-right: 2px solid #004F98;
}
.organogram .name {
  font-weight: bold;
  font-size: 1em;
}
.organogram .position {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.management dt {
  font-weight: bold;
}

.general-icon {
  max-width: 6rem;
}

.accent {
  color: #FF8E09;
}

.bg-info .lead {
  color: #ABB5BF;
}

.cover {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(to bottom, #ABB5BF, #212E3B);
  padding: 10em 0;
  text-align: center;
  text-shadow: 1px 2px 4px hsla(210, 36%, 14%, 0.75);
}
.cover .cover-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.cover .h1, .cover h1 {
  display: block;
  text-transform: uppercase;
}

table {
  font-size: 0.875rem;
}

.table td, .table th {
  padding: 0.5rem 0.75rem;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #F2F4F6;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: #e5f6f1;
}

.spec {
  font-size: 0.875rem;
}

section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.figure-caption {
  font-size: 0.875rem;
  color: #889baa;
}

.figure-caption-inside {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0.5rem 1rem;
  text-shadow: -1px 2px 4px rgba(62, 62, 62, 0.75);
}

.figure-caption-block {
  padding: 0.5rem 1rem;
  background-color: #D9DEE3;
  color: #004F98;
}

.feature, .solution h3 {
  margin-bottom: 0.25rem;
  color: #004F98;
}

a.feature {
  color: #667482;
  text-decoration: none;
  transition: color 0.25s;
}
a.feature .img-container {
  max-width: 13.5rem;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.5rem;
  background: #B4D5F4;
}
a.feature .img-container img {
  max-width: 100%;
  height: auto;
  transition: transform 0.5s, background 0.5s;
  background: #F2F4F6;
}
a.feature:hover {
  color: #3382C2;
}
a.feature:hover img {
  transform: scale(1.15);
  background: none;
}

.section-bgimg {
  position: relative;
  background: linear-gradient(to bottom, #3382C2, #004F98);
}
.section-bgimg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
}

.section-bgimg-solusikonstruksi::before {
  background-image: url("/images/bg-construction.jpg");
  background-position: 50%;
  background-attachment: fixed;
}

.icon-top {
  width: 2rem;
  height: 2rem;
}

.bg-primary {
  color: white;
}

.bg-gradient-light {
  color: black !important;
  background: #F2F4F6;
  background: linear-gradient(#F2F4F6, #D9DEE3);
}

.bg-gradient-dark {
  color: white !important;
  background: #303D4A;
  background: linear-gradient(#ABB5BF, #303D4A);
}

.bg-dark {
  color: #ABB5BF;
}
.bg-dark .h1, .bg-dark h1, .bg-dark .h2, .bg-dark h2, .bg-dark .h3, .bg-dark h3, .bg-dark .h4, .bg-dark h4, .bg-dark .h5, .bg-dark h5, .bg-dark .h6, .bg-dark h6 {
  color: white;
}

.card.product {
  line-height: 1.5;
  margin-bottom: 1.5rem;
  border: 0;
  border-radius: 0;
  text-align: center;
}
.card.product .card-img {
  padding: 0;
  border-radius: 0;
  border: 1px solid #D9DEE3;
  border-bottom: 0;
}
.card.product .card-body {
  padding: 0;
}
.card.product .card-title {
  color: white;
  background-color: #002F5B;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  margin: 0;
}
.card.product .card-subtitle {
  color: #303D4A;
  background-color: #F2F4F6;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  margin: 0;
  border: 1px solid #D9DEE3;
  border-top: 0;
}
.custom-txt {
  letter-spacing: 2px;
  font-weight: bold;
  padding: 0.75rem;
}

.title-wip {
  text-transform: uppercase;
  display: inline-block;
  color: #004F98;
}

.text-larger {
  font-size: 1.2em;
}

@media (min-width: 992px) {
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 1rem;
  }
  section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .organogram {
    font-size: 0.875rem;
  }
  a.feature .img-container {
    max-width: 19.125rem;
    height: auto;
  }
}
.solution h3 {
  font-family: "Montserrat", sans-serif;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
  text-shadow: 1px 2px 4px hsla(210, 36%, 14%, 0.75);
  padding: 1rem 0;
  bottom: 2.5em;
}
.carousel .carousel-inner .carousel-item .carousel-caption h1 {
  text-transform: uppercase;
}
.carousel .carousel-inner .carousel-item .carousel-caption h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent 5%, hsla(0, 0%, 100%, 0.8) 40%, hsla(0, 0%, 100%, 0.8) 60%, transparent 95%);
  margin-top: 0.25rem;
}
.carousel .carousel-inner .carousel-item .carousel-caption h1 b {
  font-weight: 600;
}
.carousel .carousel-inner .carousel-item .carousel-caption p {
  font-size: round(up, 1.125em, 1px);
  font-weight: 500;
}

#carousel-home .carousel-item {
  background: linear-gradient(to bottom, #D9DEE3, #BEC7CF, rgba(0, 14, 27, 0.9));
}
#carousel-home .carousel-item img {
  min-height: 75vh;
  max-height: 100vh;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}

.carousel-control-prev:focus, .carousel-control-next:focus {
  opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  opacity: 0.9;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 25%;
  min-width: 1.25rem;
  max-width: 2rem;
  height: auto;
  background-image: none;
}

.carousel-indicators [data-bs-target] {
  width: 2.5rem;
  height: 0.125rem;
  margin: 0 0.25rem;
  border-top: 0.625rem solid transparent;
  border-bottom: 0.625rem solid transparent;
  z-index: auto;
}

a {
  transition: all 0.15s ease-in-out;
}

.dropdown-toggle:focus {
  outline-style: initial !important;
}

a {
  color: #6AACEA;
}
a:hover {
  color: #004F98;
  text-decoration: none;
}
a.text-primary {
  color: #002F5B !important;
}
a.text-secondary:hover, a.text-secondary:focus {
  color: #172431 !important;
}

.bg-primary a, .bg-primary .btn-link {
  color: white;
  opacity: 0.8;
  border-radius: 0;
  border: none;
}
.bg-primary a:hover, .bg-primary .btn-link:hover {
  color: white;
  opacity: 1;
  text-decoration: none;
}

.bg-dark a {
  color: #004F98;
}
.bg-dark a:hover {
  color: #F2F4F6;
}

.btn-more:after {
  content: "Baca selengkapnya";
  height: 100px;
  width: 500px;
}

.btn-primary {
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 0.2em;
  padding: 0.25rem 1rem;
  font: 500 1rem/1.5 "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-primary:hover, .btn-primary:active {
  color: rgb(255, 255, 255);
  background-color: #008282 !important;
  border-color: #008282 !important;
}

.arrow-after {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.15s ease-in-out;
}
.arrow-after:after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  border-left: 0.4rem solid #004F98;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  margin-left: 0.6rem;
  position: relative;
  left: 0;
  bottom: 1px;
  transition: all 0.3s ease-in-out;
}
.arrow-after:focus:after, .arrow-after:hover:after, .arrow-after.active:after {
  left: 0.5rem;
}

.btn-info {
  background-color: #002F5B;
}

.btn-outline-primary {
  color: #004F98;
  border-color: #004F98;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  background-color: #004F98;
  border-color: #004F98;
}

.btn-outline-info {
  color: hsl(202, 100%, 70%);
  border-color: hsl(202, 100%, 70%);
}
.btn-outline-info:hover, .btn-outline-info:active {
  background-color: hsl(202, 100%, 70%) !important;
  border-color: hsl(202, 100%, 70%) !important;
}

footer .btn-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
footer .btn-link:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

form .form-group {
  margin-bottom: 1.5rem;
}
form label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 0.125rem;
}
form label.asterisk:after {
  content: "*";
  color: #CF0032;
}
form input, form textarea {
  font-weight: 400;
}
form #name-error.error, form #email-error.error, form #phone-error.error, form #message-error.error {
  text-transform: none;
  font-size: 0.75rem;
}
form .form-control {
  color: #172431;
  background-color: #F2F4F6;
  padding: 1rem;
  border: 1px solid #D9DEE3;
  height: auto;
  border-radius: 0;
}
form .form-control::-webkit-input-placeholder {
  color: #ABB5BF;
}
form .form-control::-moz-placeholder {
  color: #ABB5BF;
}
form .form-control:-ms-input-placeholder {
  color: #ABB5BF;
}
form .form-control:-moz-placeholder {
  color: #ABB5BF;
}
form .form-control:focus {
  color: #172431;
  background-color: white;
  border-bottom-color: hsl(202, 100%, 70%) !important;
  box-shadow: none !important;
}
form .required, form .error {
  color: #CF0032;
}
form input, form textarea {
  outline: none;
}

footer {
  color: #ABB5BF;
  background-color: #002F5B;
  font-size: 0.875rem;
}
footer .logo {
  height: 5em;
}
footer .lead {
  font-size: round(down, 1.125em, 1px);
}
footer .h3, footer h3 {
  display: block;
  color: #D9DEE3;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: round(down, 0.5em, 0.5rem);
}
footer a {
  color: #D9DEE3;
  text-decoration: none;
}
footer a:hover {
  color: #FFCB25;
}
footer .nav a {
  display: inline-block;
  padding: 0.5rem 0.5rem 0.5rem 0;
}
footer .nav a i {
  color: #002F5B;
  background-color: #D9DEE3;
  border-radius: 50%;
  padding: 0.5em;
  margin-right: 0.75em;
  vertical-align: middle;
  display: inline-block;
  transition: all 0.15s ease-in-out;
}
footer .nav a:hover i {
  background-color: #FFCB25;
}
footer .disclaimer {
  font-size: 0.75rem;
  border-top: 1px solid #667482;
}/*# sourceMappingURL=main.css.map */