* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-300: #5277f7;
  --blue-400: #35479f;

  --blue-subtitle: #223796;
  --blue-title: #263a97;

  --text-color: #6f6f71;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}

body {
  overflow-x: hidden;
  background: linear-gradient(110deg, #d5d8f5, 10%, #f9faff);
}

body,
input,
textarea,
select,
button {
  font: 400 1rem 'Inter', sans-serif;
}

button {
  cursor: pointer;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

strong {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
ul {
  margin: 0;
}

p + p {
  margin-top: 1.5rem;
}

.main-container {
    height: 100% !important;
    width: 100% !important;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.header-content img {
  width: 250px;
}

.header-content nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  padding: 0;
}

.navbar-nav {
    background-color: #dbdff3;
    border-radius: 10px;
    margin-top: 10px;
}

.header-content li a {
  display: inline-block;
  padding: 15px 20px;
  color: var(--blue-400);
  font-size: 1.5rem;
  transition: 0.2s opacity;
}

.header-content li a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.header-content .navbar-light .navbar-toggler {
  color: var(--blue-400);
  fill: var(--blue-400);
  border-color: var(--blue-400);
}

.container-custom {
  width: 100%;
  height: 100%;
  padding: 0 6%;
}

@media screen and (max-width: 992px) {
  .header-content li a {
    padding: 10px 15px;
    font-size: 1rem;
  }

  .header-content img {
    width: 180px;
  }
}
