*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
.v-snap {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-image: url(https://images.pexels.com/photos/1652353/pexels-photo-1652353.jpeg?cs=srgb&dl=pexels-rahul-pandit-1652353.jpg&fm=jpg&w=5184&h=3456);
  background-position: center;
  background-size: cover;
  margin: 0;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.v-snap {
  overflow: auto;
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.main-section {
  scroll-snap-align: start;
  width: 100%;
  min-height: 100%;
  height: fit-content;
  float: left;
}

h1 {
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: -0.5rem;
}

h2 {
  font-weight: 200;
  font-size: x-large;
}

.v-spacer {
  margin: 4rem 0;
}

#section-1 {
  backdrop-filter: blur(10px) brightness(70%);
}
#section-1 .section-content {
  text-align: center;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#section-2 {
  backdrop-filter: blur(20px) brightness(90%);
  background-color: rgba(28, 25, 23, 0.5);
  min-height: fit-content;
}

*::-webkit-scrollbar {
  height: 10px;
  width: 5px;
}

*::-webkit-scrollbar-track {
  background-color: #1e1e1e;
  width: 1px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #444;
}

.navbar {
  z-index: 1;
  position: sticky;
  top: 1rem;
  background-color: rgba(28, 25, 23, 0.3);
  height: 3rem;
  display: flex;
  align-items: center;
  width: 98%;
  left: 1%;
  border-radius: 3px;
}
.navbar ul {
  width: 100%;
  height: 100%;
}
.navbar ul li {
  align-items: center;
  display: inline-flex;
  padding: 0rem 2rem;
  list-style-type: none;
  float: left;
  height: 100%;
}
.navbar ul li a {
  padding: 2rem;
  margin: -2rem;
}
.navbar ul li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.navbar ul .right {
  float: right;
}

.button-container {
  display: flex;
  justify-content: center;
}
.button-container .action-button {
  margin: 0.5rem;
  border: solid;
  border-color: rgba(255, 255, 255, 0.5);
  width: fit-content;
  height: fit-content;
  border-width: thin;
  border-radius: 50px;
}
.button-container .action-button a {
  display: flex;
  align-items: center;
  margin: 5px 30px;
}

input[type=text] {
  color: white;
  border: solid;
  border-color: rgba(255, 255, 255, 0.5);
  width: fit-content;
  height: fit-content;
  border-width: thin;
  border-radius: 50px;
  background-color: transparent;
  padding: 5px 10px;
  margin: 0.2rem 0.4rem;
}

a:-webkit-any-link {
  color: white;
  text-decoration: none;
}

.row {
  padding: 2rem;
  width: 100%;
}

.column {
  padding: 0 2rem;
  float: left;
  width: 33.33%;
}
.column h2 {
  padding-bottom: 0.5rem;
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-color: rgba(255, 255, 255, 0.5);
}
.column p {
  font-size: 1.2rem;
}

@media screen and (max-width: 800px) {
  .column {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) and (min-width: 800px) {
  .column {
    width: 50%;
  }
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

p {
  font-weight: 200;
}

.svg-icon {
  margin-right: 0.5rem;
}

.email-form {
  padding-top: 1rem;
  display: grid;
  grid-template-columns: max-content max-content;
  grid-gap: 2px;
  align-items: center;
  justify-content: center;
}
.email-form label {
  text-align: right;
}
.email-form label:after {
  content: ":";
}