@import 'keyframes.css';
html {
  margin-top: 0;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100vh;
}

body {
  margin: 0;
  margin-bottom: 100px;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  width: 100vw;
}

.content {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  width: 100%;
}

.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  box-shadow: 0 3px 6px #00000080;
  width: 100vw;
  height: 80px;
  position: sticky;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  background-color: white;
}
.navbar .spacer {
  height: 8vh;
}
.navbar .logo {
  width: 20vw;
  float: left;
  position: relative;
  display: flex;
  justify-content: center;
}
.navbar .logo .logo_rsbw {
  height: 60px;
}
.navbar .caption {
  position: relative;
  text-align: center;
}
.navbar .caption .title {
  color: white;
}
.navbar .menu-wrapper {
  position: relative;
  left: 0;
  top: 0;
  float: right;
  width: 80%;
  height: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.navbar .menu-wrapper .menu-item a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}
.navbar .menu-wrapper .menu-item a:hover {
  color: #550E54;
  text-decoration: underline;
  text-decoration-color: #550E54;
}
.navbar .socials {
  display: none;
  width: 100%;
  position: absolute;
  justify-content: space-evenly;
  align-items: center;
  bottom: 20px;
}
.navbar .socials .icon {
  color: white;
  font-size: 20px;
}
.navbar .socials .icon:hover {
  color: #550E54;
}

.content {
  scroll-behavior: smooth;
}
.content_home {
  position: relative;
  min-height: 80vh;
}
.content_home .contact_btn {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.heading_title {
  color: #550E54;
  text-shadow: 0 2px 4px #00000080;
}
.heading_title.is-size-xl {
  font-size: 38px;
}

.learn_more {
  text-decoration: none;
  color: #550E54;
  font-size: 16px;
  margin-top: 20px;
  padding: 10px 30px;
  border: 2px solid #550E54;
  border-radius: 20px;
  font-weight: 700;
  transition: 0.5s;
  background: transparent;
}
.learn_more:hover {
  color: white;
  background: #550E54;
  transition: 0.5s;
  border: 2px solid #550E54;
}

/* Elements */
ul li a {
  text-decoration: none;
  color: black;
}
ul li a:hover {
  text-decoration: underline;
}

/* Content parts */
.section:not(.is-fullwidth) {
  position: relative;
  margin: 0 15vw;
}

.columns, .columns-left {
  display: grid;
  margin-top: 40px;
  margin-bottom: 40px;
}
.columns .column, .columns-left .column {
  position: relative;
}
.columns .column.left-1, .columns .column.left-2, .columns-left .column.left-1, .columns-left .column.left-2 {
  padding-right: 20px;
}
.columns .column.right-1, .columns .column.right-2, .columns-left .column.right-1, .columns-left .column.right-2 {
  padding-left: 20px;
}

.columns-left {
  grid-template-columns: 2fr 1fr;
}

.columns {
  grid-template-columns: auto auto;
}

.shadow {
  padding: 10px;
  box-shadow: 0 2px 4px #00000080;
  border-radius: 10px;
}

.table {
  border-collapse: collapse;
  cursor: default;
}
.table thead th:first-child {
  border-right: 10px solid transparent;
}
.table thead th {
  text-align: left;
}
.table tbody tr:not(.no-hover):hover {
  background: #00000020;
}
.table tbody td:first-child {
  border-right: 10px solid transparent;
}
.table td {
  min-width: 150px;
}

form {
  display: inline-grid;
}
form .btn_wrapper {
  position: relative;
}
form .btn_wrapper .submit-btn {
  width: 100px;
  height: 30px;
  margin-top: 20px;
  position: absolute;
  right: 0;
}

.spacer {
  height: 50px;
}

footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  box-shadow: 0 -2px 4px #00000080;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_wrapper {
  margin: 0 15vw;
  width: 100%;
}
footer .footer_wrapper .content-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  place-items: center;
}
footer .footer_wrapper .content-footer a {
  margin-right: 10px;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
