@import url("https://fonts.googleapis.com/css?family=Inter:400,500,700&display=swap");

* {
  box-sizing: border-box;
}

html {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  width: 100%;
  min-height: 100%;
}

body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Inter", Helvetica, Arial, sans-serif;
}

.vac {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* picsum id, background image for hero
0, 1, 180, 2, 201,
532, 60, 625, 802, 825
9,
*/
.hero {
  background-image: url(https://picsum.photos/id/2/1920/1080/?blur=7);
  background: linear-gradient(rgba(39, 41, 54, 0.65), rgba(31, 44, 108, 0.65)),
    rgba(0, 0, 0, 0.55) url("https://picsum.photos/id/2/1920/1080/?blur=7")
      no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.hero .title {
  /*transform: rotate(-5deg);*/
  font-size: 5rem;
  color: whitesmoke;
}

.hero .subtitle {
  padding: 5px;
  color: whitesmoke;
  padding-top: 50px;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-top: -2.5rem !important;
}

.hero .hero-foot {
  height: 50px;
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.082);
}

@media (max-width: 599px) {
  .hero .hero-foot {
    display: none;
  }
}

.hero .hero-foot .hero-foot--wrapper {
  margin: 7px auto;
  height: 50px;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop {
  line-height: 38px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li {
  display: inline-block;
  padding-right: 15px;
  padding-left: 15px;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li.is-active a {
  border-bottom: 2px solid #1f2c6c;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li a {
  color: #1f2c6c;
}

.hero .hero-foot .hero-foot--wrapper .hero-menu-desktop ul li a:hover {
  color: #1f2c6c;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid #1f2c6c;
}

/* scroller */
#scroll_to_top {
  height: 50px;
  width: 50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: rgba(31, 44, 108, 0.65);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(14, 25, 80, 0.3);
}

#scroll_to_top a {
  color: white;
}

#scroll_to_top:hover {
  background-color: #43485c;
}

.main-content {
  padding-top: 0.5rem;
  color: #3c4172;
}

.content-section {
  padding: 80px 30px 100px 30px;
}

.content-section.is-light {
  background-color: #fff;
}

.content-section.is-dark {
  background-color: #f0f3f5;
}

.content-section.is-color {
  color: white;
  background-color: #43485c;
}

.content-section.is-color,
.content-section.is-color .title,
.content-section.is-color .subtitle {
  color: white;
}

.content-section .section-title {
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 1.2rpx;
  padding-bottom: 30px;
}

.main-content .card .card-content {
  padding: 0;
}

.content-section .content ul {
  list-style: none;
  margin-left: 0;
  margin-top: 0;
  padding: 1rem;
}

.content-section .content ul li {
  border-radius: 2px;
  color: #4a4a4a;
  display: block;
  padding: 0.25rem 0 0 0.5rem;
}

.footer {
  bottom: 0;
  width: 100vw;
  padding: 0;
  height: 80px;
  line-height: 25px;
  text-align: center;
  background: #1f2c6c;
  color: whitesmoke;
  padding-top: 2rem;
}

.footer-spacer {
  margin-left: 1rem;
  margin-right: 1rem;
}

.footer a {
  color: lightgrey;
}

.footer a i {
  padding-right: 0.5rem;
}

.footer a .nav-item {
  color: whitesmoke;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(245, 245, 245, 0);
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #43485c;
}

.columns {
  gap: 2rem;
}

.d-tech .columns {
  margin-bottom: 2rem;
}

.d-tech .columns:last-child {
  margin-bottom: 0;
}
