.column, .column-md, #header-home .header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.container-showcase, .container-short, .container-long {
  margin: auto;
  padding: 1% 0; }

.container-showcase {
  width: 100vw; }
  @media screen and (max-width: 1024px) {
    .container-showcase {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; } }

.container-short {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  height: 45vh; }
  @media screen and (max-width: 1024px) {
    .container-short {
      height: auto;
      overflow: unset;
      max-width: 100%; } }

.container-long {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  max-width: 100%; }
  @media screen and (max-width: 1024px) {
    .container-long {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; } }

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 2rem;
  max-width: 70%; }
  .row img {
    width: 650px;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }
  @media screen and (max-width: 1024px) {
    .row {
      flex-direction: column;
      max-width: 90%; }
      .row img {
        width: 350px; } }

.column, .column-md {
  margin: 2rem;
  padding: 3rem;
  border-radius: 5px;
  color: #333; }
  .column h1, .column-md h1,
  .column h2,
  .column-md h2 {
    width: 80%;
    border: none;
    color: #507dbc;
    margin: 4% 0;
    padding: 1%; }
  .column h1, .column-md h1,
  .column h2,
  .column-md h2,
  .column h3,
  .column-md h3 {
    text-align: center;
    margin-bottom: 3px; }
  .column p, .column-md p {
    text-align: center;
    margin: 4% 0; }
  @media screen and (max-width: 1024px) {
    .column, .column-md {
      padding: 1rem;
      margin: 1rem; } }

.column-md {
  max-width: 40%; }
  .column-md p,
  .column-md span {
    text-align: left; }
    .column-md p a,
    .column-md span a {
      color: #e58f65; }
  .column-md h1,
  .column-md h2,
  .column-md h3 {
    margin: 2% 0; }
  .column-md pre {
    background-color: #f4f4f7;
    margin: 3% 0;
    padding: 3%;
    border-radius: 5px;
    width: 100%; }
  .column-md a {
    border-bottom: 3px solid #33333300;
    transition: border-color 0.3s; }
    .column-md a h1,
    .column-md a h2,
    .column-md a h3 {
      color: #507dbc; }
    .column-md a i {
      color: #3333337a;
      transition: color 0.3s; }
    .column-md a:hover {
      border-bottom: 3px solid #e58f65; }
      .column-md a:hover i {
        color: #e58f65; }
  .column-md img {
    width: 100%; }
  @media screen and (max-width: 1024px) {
    .column-md {
      max-width: 80%; } }

.btn-main, .btn-light, .btn-dark {
  display: inline-block;
  padding: 0.8rem 2rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  border-radius: 5px; }

.btn-main {
  color: #fff;
  background-color: #507dbc; }
  .btn-main:hover {
    color: #fff;
    background-color: #e58f65; }

.btn-light {
  color: #333;
  background-color: #f4f4f7; }

.btn-dark {
  color: #f4f4f7;
  background-color: #01172f; }

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem; }

.text-center {
  text-align: center; }

* {
  margin: 0;
  padding: 0; }

body {
  font-family: "Poppins", sans-serif;
  background: #fff; }

a {
  text-decoration: none;
  color: #fff; }

ul {
  list-style: none; }

h1,
h2,
h3,
h4 {
  text-transform: capitalize; }

img {
  width: 100%; }

html {
  scroll-behavior: smooth; }

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  justify-content: space-around;
  padding: 0 1rem;
  width: 100%;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px); }
  #main-nav ul {
    display: flex; }
  #main-nav li {
    padding: 1rem 1.5rem; }
  #main-nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    border: 3px none #01172f;
    background-color: #507dbc;
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    transition: background-color 0.3s; }
    #main-nav a:hover {
      background-color: #e58f65; }
    #main-nav a.current {
      border-color: #507dbc; }

#header-home {
  background: url("../img/startup_page.gif") no-repeat center right/cover;
  height: 70vh;
  color: #000; }
  @media screen and (max-width: 1024px) {
    #header-home {
      background: no-repeat left url("../img/startup_page.gif"); } }
  #header-home .header-content {
    padding-top: 14%;
    padding-right: 25%;
    text-align: center; }
    #header-home .header-content h1 {
      font-size: 3rem;
      line-height: 1.2; }
    @media screen and (max-width: 1024px) {
      #header-home .header-content {
        padding: 1%; }
        #header-home .header-content p {
          font-size: 1.25rem; } }

#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #507dbc;
  color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; }

#logo {
  background: transparent !important; }
  #logo span {
    font-family: "Comfortaa", sans-serif;
    color: #507dbc;
    letter-spacing: -0.15rem;
    font-weight: 700;
    font-size: 40px;
    text-transform: none;
    transition: color 0.3s; }
  #logo:hover {
    background: none; }
    #logo:hover span {
      color: #e58f65; }
