@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,700&display=swap");

/* Main */

:root {
  --primary: #2d73b4;
  --secondary: #6199c8;
  --color-1: #1f140f;
  --color-2: #002b56;
}

html,
body {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

/* Text */

h1 {
  font-size: 28px;
  font-weight: 900;
}
h2 {
  font-size: 20px;
  font-weight: 700;
}
h3 {
  font-size: 30px;
  font-weight: 700;
}
h4 {
  font-weight: 900;
  font-size: 35px;
}
.text-big {
  font-size: 20px;
}
.text-medium {
  font-size: 16px;
}
p {
  line-height: 28px;
  text-align: justify;
}
strong {
  font-weight: normal;
  font-family: "Gotham Rounded Bold";
}

small {
  font-size: 0.8rem;
}
hr {
  width: 148px;
  border-bottom: 1px solid #c2bfbd;
  display: inline-block;
  margin: 0;
}

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

/* Links */

a {
  color: white;
  transition: all 0.2s ease;
}
a:hover {
  transition: all 0.2s ease;
  color: var(--secondary);
}

/* Colors */

.text-white {
  color: white;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.color-1 {
  color: var(--color-1);
}
.color-2 {
  color: var(--color-2);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-black {
  background-color: black;
}
.bg-white {
  background-color: white;
}

/* Spacing */

.p-1 {
  padding: 60px 30px;
}
.p-2 {
  padding: 40px 30px;
}
.p-20 {
  padding: 20px;
}
.p-40 {
  padding: 40px;
}
.mb-0 {
  margin-bottom: 15px;
}
.mb-1 {
  margin-bottom: 40px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mr-1 {
  margin-right: 15px;
}
.mt-1 {
  margin-top: 100px;
}
.w-100 {
  width: 100%;
}
.w-70 {
  width: 70%;
}
.w-50 {
  width: 50%;
}
.w-33 {
  width: 33.33%;
}
.w-30 {
  width: 30%;
}
.h-100 {
  height: 100vh;
}
.h-1 {
  height: 30vw;
}
.h-2 {
  height: 50vh;
}
.h-3 {
  height: 50vh;
}

/* Container */

section {
  position: relative;
}
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.col {
  display: inline-block;
}
.row {
  display: inline-block;
}
/* Flex */

.flex {
  display: flex;
}
.flex-cc {
  align-items: center;
  justify-content: center;
}
.flex-list {
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-center {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

/* Decoration */

.shadow {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.letter-spacing {
  letter-spacing: 2px;
}
.letter-spacing-2 {
  letter-spacing: 4px;
}
.hide {
  display: none;
}
.bg-center {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nomobile {
  display: block;
}

@media (max-width: 980px) {
  .nomobile {
    display: none !important;
  }
}
