:root {
  --font-base: 50%;
  --gap: 1.5rem;
  --regular: "Montserrat Regular", sans-serif;
  --medium: "Montserrat Medium", sans-serif;
  --bold: "Montserrat Bold", sans-serif;
  --clr-primary-500: #2BABE2;
  --clr-neutral-500: #666666;
  --clr-white-500: #fff;
  --clr-whatsapp-500: #25D366;
  --clr-light-gray-500: #F5F5F5;
  --clr-blue-500: #005379;
  --clr-dark-blue-500: #042C3A;
  --clr-gray-500: #999;
  --clr-release-500: #ccc;
  --fs-100: 0.8rem;
  --fs-200: 1.6rem;
  --fs-300: 2.4rem;
  --fs-400: 3.2rem;
  --fs-500: 4rem;
  --fs-600: 4.8rem;
  --fs-700: 5.6rem;
  --fs-800: 6.4rem;
  --fs-900: 7.2rem;
  --fs-1000: 8rem;
  --x-small: 576px;
  --sm: 540px;
  --md: 720px;
  --lg: 960px;
  --xl: 1140px;
}
@media only screen and (min-width: 720px) {
  :root {
    --font-base: 62.5%;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

span,
abbr {
  font-family: inherit !important;
}

abbr {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: auto;
}

i {
  color: inherit !important;
}
i::before {
  color: inherit !important;
}

img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 2rem;
  font-family: var(--regular) !important;
  color: var(--clr-gray-500) !important;
  line-height: 1.5;
  border: 2px solid var(--clr-light-gray-500);
  border-radius: 0;
  background: var(--clr-light-gray-500);
  transform: scale(1);
  -webkit-appearance: none !important;
  -webkit-border-radius: 0 !important;
  transition: all 300ms ease-in-out;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  font-size: var(--fs-200) !important;
  color: var(--clr-gray-500);
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  font-size: var(--fs-200) !important;
  color: var(--clr-gray-500);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: var(--fs-200) !important;
  color: var(--clr-gray-500);
}
@media only screen and (max-width: 576px) {
  input::-webkit-input-placeholder, input::-moz-placeholder, input:-ms-input-placeholder, input::-ms-input-placeholder, input::placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea::-ms-input-placeholder,
textarea::placeholder,
select::-webkit-input-placeholder,
select::-moz-placeholder,
select:-ms-input-placeholder,
select::-ms-input-placeholder,
select::placeholder {
    font-size: 1.5rem !important;
  }
}

select {
  padding: 1.2rem 2rem;
  background: #fff;
  -webkit-appearance: auto !important;
  -webkit-border-radius: 2px !important;
}

textarea {
  min-height: 15rem;
  resize: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  font-family: var(--regular) !important;
}

html {
  font-size: var(--font-base) !important;
  color: var(--clr-neutral-500) !important;
}

body {
  font-size: var(--fs-200);
}

h1,
h2,
h3,
h4 {
  font-family: var(--bold) !important;
  font-size: inherit;
  line-height: 1.1;
  color: var(--clr-dark-blue-500);
}

strong,
b {
  font-family: var(--bold) !important;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit !important;
}
a:hover, a:focus {
  text-decoration: none;
}

address {
  font: inherit;
}

body {
  min-height: 100vh;
}
@media only screen and (max-width: 576px) {
  body {
    display: block;
  }
}

.a-rotate {
  -webkit-animation: rotate 2s infinite linear;
          animation: rotate 2s infinite linear;
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bg-none {
  background: none !important;
}

.bg-primary-500 {
  background-color: var(--clr-primary-500) !important;
}

.bg-neutral-500 {
  background-color: var(--clr-neutral-500) !important;
}

.bg-white-500 {
  background-color: var(--clr-white-500) !important;
}

.bg-whatsapp-500 {
  background-color: var(--clr-whatsapp-500) !important;
}

.bg-light-gray-500 {
  background-color: var(--clr-light-gray-500) !important;
}

.bg-blue-500 {
  background-color: var(--clr-blue-500) !important;
}

.bg-dark-blue-500 {
  background-color: var(--clr-dark-blue-500) !important;
}

.bg-gray-500 {
  background-color: var(--clr-gray-500) !important;
}

.bg-release-500 {
  background-color: var(--clr-release-500) !important;
}

.clr-primary-500 {
  color: var(--clr-primary-500) !important;
}

.clr-neutral-500 {
  color: var(--clr-neutral-500) !important;
}

.clr-white-500 {
  color: var(--clr-white-500) !important;
}

.clr-whatsapp-500 {
  color: var(--clr-whatsapp-500) !important;
}

.clr-light-gray-500 {
  color: var(--clr-light-gray-500) !important;
}

.clr-blue-500 {
  color: var(--clr-blue-500) !important;
}

.clr-dark-blue-500 {
  color: var(--clr-dark-blue-500) !important;
}

.clr-gray-500 {
  color: var(--clr-gray-500) !important;
}

.clr-release-500 {
  color: var(--clr-release-500) !important;
}

.container {
  display: block;
  margin: 0 auto;
  padding: 0 calc(var(--gap) * 2);
  width: 100%;
}
@media only screen and (min-width: 540px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--sm);
  }
}
@media only screen and (min-width: 720px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--md);
  }
}
@media only screen and (min-width: 960px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--lg);
  }
}
@media only screen and (min-width: 1140px) {
  .container {
    margin: 0 auto;
    padding: 0 var(--gap);
    max-width: var(--xl);
  }
}

.container-fluid {
  display: block;
  margin: 0 auto;
  padding: 0 calc(var(--gap) * 2);
  width: 100%;
}

.container-lg {
  display: block;
  margin: 0 auto;
  padding: 0 calc(var(--gap) * 2);
  max-width: 172rem;
}

.d-none {
  display: none !important;
}

.d-fixed {
  position: sticky !important;
  top: 0;
  left: 0;
  transition: position 300ms ease-in-out;
}

.d-inline {
  width: 100%;
  display: inline-block;
}

.d-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.jc-between {
  justify-content: space-between;
}

.jc-center {
  justify-content: center;
}

.jc-start {
  justify-content: flex-start !important;
}

.ai-center {
  align-items: center;
}

.ai-stretch {
  align-items: stretch;
}

.f-column {
  flex-direction: column;
}

.f-row {
  flex-direction: row;
}

.f-1 {
  font-size: calc(var(--fs-100) * 1);
}

.f-2 {
  font-size: calc(var(--fs-100) * 2);
}

.f-3 {
  font-size: calc(var(--fs-100) * 3);
}

.f-4 {
  font-size: calc(var(--fs-100) * 4);
}

.f-5 {
  font-size: calc(var(--fs-100) * 5);
}

.f-6 {
  font-size: calc(var(--fs-100) * 6);
}

.f-7 {
  font-size: calc(var(--fs-100) * 7);
}

.f-8 {
  font-size: calc(var(--fs-100) * 8);
}

.f-9 {
  font-size: calc(var(--fs-100) * 9);
}

.f-10 {
  font-size: calc(var(--fs-100) * 10);
}

.l-small {
  line-height: 1.1 !important;
}

.gp-1 {
  gap: calc(var(--gap) * 1);
}

.gp-2 {
  gap: calc(var(--gap) * 2);
}

.gp-3 {
  gap: calc(var(--gap) * 3);
}

.gp-4 {
  gap: calc(var(--gap) * 4);
}

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--gap) * 2);
}

.img-fluid {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.my-1 {
  margin: calc(var(--fs-100) * 1) 0;
}

.mx-1 {
  margin: 0 calc(var(--fs-100) * 1);
}

.mt-1 {
  margin-top: calc(var(--fs-100) * 1);
}

.mb-1 {
  margin-bottom: calc(var(--fs-100) * 1);
}

.ml-1 {
  margin-left: calc(var(--fs-100) * 1);
}

.mr-1 {
  margin-right: calc(var(--fs-100) * 1);
}

.my-2 {
  margin: calc(var(--fs-100) * 2) 0;
}

.mx-2 {
  margin: 0 calc(var(--fs-100) * 2);
}

.mt-2 {
  margin-top: calc(var(--fs-100) * 2);
}

.mb-2 {
  margin-bottom: calc(var(--fs-100) * 2);
}

.ml-2 {
  margin-left: calc(var(--fs-100) * 2);
}

.mr-2 {
  margin-right: calc(var(--fs-100) * 2);
}

.my-3 {
  margin: calc(var(--fs-100) * 3) 0;
}

.mx-3 {
  margin: 0 calc(var(--fs-100) * 3);
}

.mt-3 {
  margin-top: calc(var(--fs-100) * 3);
}

.mb-3 {
  margin-bottom: calc(var(--fs-100) * 3);
}

.ml-3 {
  margin-left: calc(var(--fs-100) * 3);
}

.mr-3 {
  margin-right: calc(var(--fs-100) * 3);
}

.my-4 {
  margin: calc(var(--fs-100) * 4) 0;
}

.mx-4 {
  margin: 0 calc(var(--fs-100) * 4);
}

.mt-4 {
  margin-top: calc(var(--fs-100) * 4);
}

.mb-4 {
  margin-bottom: calc(var(--fs-100) * 4);
}

.ml-4 {
  margin-left: calc(var(--fs-100) * 4);
}

.mr-4 {
  margin-right: calc(var(--fs-100) * 4);
}

.my-5 {
  margin: calc(var(--fs-100) * 5) 0;
}

.mx-5 {
  margin: 0 calc(var(--fs-100) * 5);
}

.mt-5 {
  margin-top: calc(var(--fs-100) * 5);
}

.mb-5 {
  margin-bottom: calc(var(--fs-100) * 5);
}

.ml-5 {
  margin-left: calc(var(--fs-100) * 5);
}

.mr-5 {
  margin-right: calc(var(--fs-100) * 5);
}

.my-6 {
  margin: calc(var(--fs-100) * 6) 0;
}

.mx-6 {
  margin: 0 calc(var(--fs-100) * 6);
}

.mt-6 {
  margin-top: calc(var(--fs-100) * 6);
}

.mb-6 {
  margin-bottom: calc(var(--fs-100) * 6);
}

.ml-6 {
  margin-left: calc(var(--fs-100) * 6);
}

.mr-6 {
  margin-right: calc(var(--fs-100) * 6);
}

.my-7 {
  margin: calc(var(--fs-100) * 7) 0;
}

.mx-7 {
  margin: 0 calc(var(--fs-100) * 7);
}

.mt-7 {
  margin-top: calc(var(--fs-100) * 7);
}

.mb-7 {
  margin-bottom: calc(var(--fs-100) * 7);
}

.ml-7 {
  margin-left: calc(var(--fs-100) * 7);
}

.mr-7 {
  margin-right: calc(var(--fs-100) * 7);
}

.my-8 {
  margin: calc(var(--fs-100) * 8) 0;
}

.mx-8 {
  margin: 0 calc(var(--fs-100) * 8);
}

.mt-8 {
  margin-top: calc(var(--fs-100) * 8);
}

.mb-8 {
  margin-bottom: calc(var(--fs-100) * 8);
}

.ml-8 {
  margin-left: calc(var(--fs-100) * 8);
}

.mr-8 {
  margin-right: calc(var(--fs-100) * 8);
}

.my-9 {
  margin: calc(var(--fs-100) * 9) 0;
}

.mx-9 {
  margin: 0 calc(var(--fs-100) * 9);
}

.mt-9 {
  margin-top: calc(var(--fs-100) * 9);
}

.mb-9 {
  margin-bottom: calc(var(--fs-100) * 9);
}

.ml-9 {
  margin-left: calc(var(--fs-100) * 9);
}

.mr-9 {
  margin-right: calc(var(--fs-100) * 9);
}

.my-10 {
  margin: calc(var(--fs-100) * 10) 0;
}

.mx-10 {
  margin: 0 calc(var(--fs-100) * 10);
}

.mt-10 {
  margin-top: calc(var(--fs-100) * 10);
}

.mb-10 {
  margin-bottom: calc(var(--fs-100) * 10);
}

.ml-10 {
  margin-left: calc(var(--fs-100) * 10);
}

.mr-10 {
  margin-right: calc(var(--fs-100) * 10);
}

.p-1 {
  padding: calc(var(--fs-100) * 1);
}

.py-1 {
  padding: calc(var(--fs-100) * 1) 0;
}

.px-1 {
  padding: 0 calc(var(--fs-100) * 1);
}

.pt-1 {
  padding-top: calc(var(--fs-100) * 1);
}

.pb-1 {
  padding-bottom: calc(var(--fs-100) * 1);
}

.pl-1 {
  padding-left: calc(var(--fs-100) * 1);
}

.pr-1 {
  padding-right: calc(var(--fs-100) * 1);
}

.p-2 {
  padding: calc(var(--fs-100) * 2);
}

.py-2 {
  padding: calc(var(--fs-100) * 2) 0;
}

.px-2 {
  padding: 0 calc(var(--fs-100) * 2);
}

.pt-2 {
  padding-top: calc(var(--fs-100) * 2);
}

.pb-2 {
  padding-bottom: calc(var(--fs-100) * 2);
}

.pl-2 {
  padding-left: calc(var(--fs-100) * 2);
}

.pr-2 {
  padding-right: calc(var(--fs-100) * 2);
}

.p-3 {
  padding: calc(var(--fs-100) * 3);
}

.py-3 {
  padding: calc(var(--fs-100) * 3) 0;
}

.px-3 {
  padding: 0 calc(var(--fs-100) * 3);
}

.pt-3 {
  padding-top: calc(var(--fs-100) * 3);
}

.pb-3 {
  padding-bottom: calc(var(--fs-100) * 3);
}

.pl-3 {
  padding-left: calc(var(--fs-100) * 3);
}

.pr-3 {
  padding-right: calc(var(--fs-100) * 3);
}

.p-4 {
  padding: calc(var(--fs-100) * 4);
}

.py-4 {
  padding: calc(var(--fs-100) * 4) 0;
}

.px-4 {
  padding: 0 calc(var(--fs-100) * 4);
}

.pt-4 {
  padding-top: calc(var(--fs-100) * 4);
}

.pb-4 {
  padding-bottom: calc(var(--fs-100) * 4);
}

.pl-4 {
  padding-left: calc(var(--fs-100) * 4);
}

.pr-4 {
  padding-right: calc(var(--fs-100) * 4);
}

.p-5 {
  padding: calc(var(--fs-100) * 5);
}

.py-5 {
  padding: calc(var(--fs-100) * 5) 0;
}

.px-5 {
  padding: 0 calc(var(--fs-100) * 5);
}

.pt-5 {
  padding-top: calc(var(--fs-100) * 5);
}

.pb-5 {
  padding-bottom: calc(var(--fs-100) * 5);
}

.pl-5 {
  padding-left: calc(var(--fs-100) * 5);
}

.pr-5 {
  padding-right: calc(var(--fs-100) * 5);
}

.p-6 {
  padding: calc(var(--fs-100) * 6);
}

.py-6 {
  padding: calc(var(--fs-100) * 6) 0;
}

.px-6 {
  padding: 0 calc(var(--fs-100) * 6);
}

.pt-6 {
  padding-top: calc(var(--fs-100) * 6);
}

.pb-6 {
  padding-bottom: calc(var(--fs-100) * 6);
}

.pl-6 {
  padding-left: calc(var(--fs-100) * 6);
}

.pr-6 {
  padding-right: calc(var(--fs-100) * 6);
}

.p-7 {
  padding: calc(var(--fs-100) * 7);
}

.py-7 {
  padding: calc(var(--fs-100) * 7) 0;
}

.px-7 {
  padding: 0 calc(var(--fs-100) * 7);
}

.pt-7 {
  padding-top: calc(var(--fs-100) * 7);
}

.pb-7 {
  padding-bottom: calc(var(--fs-100) * 7);
}

.pl-7 {
  padding-left: calc(var(--fs-100) * 7);
}

.pr-7 {
  padding-right: calc(var(--fs-100) * 7);
}

.p-8 {
  padding: calc(var(--fs-100) * 8);
}

.py-8 {
  padding: calc(var(--fs-100) * 8) 0;
}

.px-8 {
  padding: 0 calc(var(--fs-100) * 8);
}

.pt-8 {
  padding-top: calc(var(--fs-100) * 8);
}

.pb-8 {
  padding-bottom: calc(var(--fs-100) * 8);
}

.pl-8 {
  padding-left: calc(var(--fs-100) * 8);
}

.pr-8 {
  padding-right: calc(var(--fs-100) * 8);
}

.p-9 {
  padding: calc(var(--fs-100) * 9);
}

.py-9 {
  padding: calc(var(--fs-100) * 9) 0;
}

.px-9 {
  padding: 0 calc(var(--fs-100) * 9);
}

.pt-9 {
  padding-top: calc(var(--fs-100) * 9);
}

.pb-9 {
  padding-bottom: calc(var(--fs-100) * 9);
}

.pl-9 {
  padding-left: calc(var(--fs-100) * 9);
}

.pr-9 {
  padding-right: calc(var(--fs-100) * 9);
}

.p-10 {
  padding: calc(var(--fs-100) * 10);
}

.py-10 {
  padding: calc(var(--fs-100) * 10) 0;
}

.px-10 {
  padding: 0 calc(var(--fs-100) * 10);
}

.pt-10 {
  padding-top: calc(var(--fs-100) * 10);
}

.pb-10 {
  padding-bottom: calc(var(--fs-100) * 10);
}

.pl-10 {
  padding-left: calc(var(--fs-100) * 10);
}

.pr-10 {
  padding-right: calc(var(--fs-100) * 10);
}

.py-s {
  padding: calc(var(--fs-100) * 17) 0;
}

.pt-s {
  padding-top: calc(var(--fs-100) * 17);
}

.pb-s {
  padding-bottom: calc(var(--fs-100) * 17);
}

.radius {
  border-radius: 5px;
  overflow: hidden;
}

.shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

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

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.t-justify {
  text-align: justify;
}

.t-uppercase {
  text-transform: uppercase;
}

.t-bold {
  font-family: var(--bold) !important;
}

.t-small {
  font-size: 12px;
}

.title {
  margin-bottom: var(--fs-800);
  text-align: center;
}
.title p {
  margin-bottom: var(--fs-100);
  font-family: var(--bold) !important;
  color: var(--clr-primary-500);
  text-transform: uppercase;
}
.title__divider {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.title__divider span {
  display: block;
  background: var(--clr-primary-500);
}
.title__divider span:nth-child(1) {
  width: 40px;
  height: 4px;
}
.title__divider span:nth-child(2) {
  width: 5px;
  height: 4px;
}
@media only screen and (max-width: 576px) {
  .title h2 {
    font-size: var(--fs-600);
  }
}

.btn {
  display: inline-block !important;
  margin: 0;
  padding: var(--fs-200) var(--fs-500);
  cursor: pointer;
  outline: none;
  border: none;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  line-height: 1.1 !important;
  font-family: var(--bold) !important;
  font-size: var(--fs-200);
  text-transform: uppercase;
}
.btn:active {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.btn-block {
  display: block !important;
  width: 100%;
}

.btn-primary-500 {
  background-color: #2BABE2;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-primary-500:hover {
  color: #f8f8f8;
  background-color: #1a8ec0;
  transition: all 300ms ease-in-out;
}

.btn-neutral-500 {
  background-color: #666666;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-neutral-500:hover {
  color: #f8f8f8;
  background-color: #4d4d4d;
  transition: all 300ms ease-in-out;
}

.btn-white-500 {
  background-color: #fff;
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}
.btn-white-500:hover {
  color: var(--clr-white-500);
  background-color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.btn-whatsapp-500 {
  background-color: #25D366;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-whatsapp-500:hover {
  color: #f8f8f8;
  background-color: #1da851;
  transition: all 300ms ease-in-out;
}

.btn-light-gray-500 {
  background-color: #F5F5F5;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-light-gray-500:hover {
  color: #f8f8f8;
  background-color: gainsboro;
  transition: all 300ms ease-in-out;
}

.btn-blue-500 {
  background-color: #005379;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-blue-500:hover {
  color: #f8f8f8;
  background-color: #003046;
  transition: all 300ms ease-in-out;
}

.btn-dark-blue-500 {
  background-color: #042C3A;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-dark-blue-500:hover {
  color: #f8f8f8;
  background-color: #01080a;
  transition: all 300ms ease-in-out;
}

.btn-gray-500 {
  background-color: #999;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-gray-500:hover {
  color: #f8f8f8;
  background-color: gray;
  transition: all 300ms ease-in-out;
}

.btn-release-500 {
  background-color: #ccc;
  color: var(--clr-white-500);
  transition: all 300ms ease-in-out;
}
.btn-release-500:hover {
  color: #f8f8f8;
  background-color: #b3b3b3;
  transition: all 300ms ease-in-out;
}

.link-primary-500 {
  color: #2BABE2;
  transition: all 300ms ease-in-out;
}
.link-primary-500:hover, .link-primary-500:focus {
  color: #1a8ec0;
  transition: all 300ms ease-in-out;
}

.link-neutral-500 {
  color: #666666;
  transition: all 300ms ease-in-out;
}
.link-neutral-500:hover, .link-neutral-500:focus {
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.link-white-500 {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.link-white-500:hover, .link-white-500:focus {
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.link-whatsapp-500 {
  color: #25D366;
  transition: all 300ms ease-in-out;
}
.link-whatsapp-500:hover, .link-whatsapp-500:focus {
  color: #1da851;
  transition: all 300ms ease-in-out;
}

.link-light-gray-500 {
  color: #F5F5F5;
  transition: all 300ms ease-in-out;
}
.link-light-gray-500:hover, .link-light-gray-500:focus {
  color: gainsboro;
  transition: all 300ms ease-in-out;
}

.link-blue-500 {
  color: #005379;
  transition: all 300ms ease-in-out;
}
.link-blue-500:hover, .link-blue-500:focus {
  color: #003046;
  transition: all 300ms ease-in-out;
}

.link-dark-blue-500 {
  color: #042C3A;
  transition: all 300ms ease-in-out;
}
.link-dark-blue-500:hover, .link-dark-blue-500:focus {
  color: var(--clr-primary-500);
  transition: all 300ms ease-in-out;
}

.link-gray-500 {
  color: #999;
  transition: all 300ms ease-in-out;
}
.link-gray-500:hover, .link-gray-500:focus {
  color: gray;
  transition: all 300ms ease-in-out;
}

.link-release-500 {
  color: #ccc;
  transition: all 300ms ease-in-out;
}
.link-release-500:hover, .link-release-500:focus {
  color: #b3b3b3;
  transition: all 300ms ease-in-out;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.pagination .page-item {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-neutral-500);
  background: var(--clr-white-500);
  line-height: 1.1 !important;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  transition: all 300ms ease-in-out;
}
.pagination .page-item:hover {
  color: var(--clr-white-500);
  background: var(--clr-primary-500);
  border-color: var(--clr-primary-500);
}
.pagination .page-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .active {
  color: var(--clr-white-500);
  background: var(--clr-primary-500);
  border-color: var(--clr-primary-500);
}
.pagination .disabled {
  display: none;
}

.info {
  position: relative;
}
.info::before {
  position: absolute;
  top: 0;
  left: -2rem;
  display: block;
  width: 58rem;
  height: 100%;
  content: "";
  background: var(--clr-primary-500);
  transform: skewX(20deg);
  border-right: 5px solid var(--clr-white-500);
  z-index: 0;
}
.info__social {
  position: relative;
  z-index: 10;
}
.info__social ul li {
  color: var(--clr-white-500);
  transition: color 300ms ease-in-out;
}
.info__social ul li:hover {
  color: var(--clr-dark-blue-500);
  transition: color 300ms ease-in-out;
}
@media only screen and (max-width: 1366px) {
  .info::before {
    width: 40rem;
  }
}
@media only screen and (max-width: 1112px) {
  .info::before {
    width: 25rem;
  }
}
@media only screen and (max-width: 768px) {
  .info {
    display: none !important;
  }
}

.header {
  margin: 0;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.header__container {
  padding: 15px 0;
  background: #F9F9F9;
}
.header__container__navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container__navbar__brand img {
  height: var(--fs-1000);
}
.header__container__navbar__section__toggle {
  display: none;
}
.header__container__navbar__section__toggle:hover {
  cursor: pointer;
}
.header__container__navbar__section__toggle span {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--clr-dark-blue-500);
  line-height: 1 !important;
}
.header__container__navbar__section__toggle span:nth-child(1) {
  transform-origin: center;
  transform: translate(0px) rotate(0deg);
  transition: all 300ms ease-in-out;
}
.header__container__navbar__section__toggle span:nth-child(2) {
  opacity: 1;
  transition: all 300ms ease-in-out;
}
.header__container__navbar__section__toggle span:nth-child(3) {
  transform-origin: center;
  transform: translate(0px) rotate(0deg);
  transition: all 300ms ease-in-out;
}
.header__container__navbar__section__toggle span:not(:last-child) {
  margin-bottom: 6px;
}
.header__container__navbar__section__container__nav ul {
  display: flex;
  gap: var(--fs-300);
}
.header__container__navbar__section__container__nav ul li {
  line-height: 1 !important;
  cursor: pointer;
}
.header__container__navbar__section__container__nav ul li a {
  font-family: var(--medium) !important;
  transition: color 300ms ease-in-out;
}
.header__container__navbar__section__container__nav ul li a:hover {
  color: var(--clr-primary-500);
  transition: color 300ms ease-in-out;
}
@media only screen and (max-width: 768px) {
  .header__container__navbar__section__toggle {
    display: block;
  }
  .header__container__navbar__section__container {
    padding: var(--gap);
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white-500);
    background: var(--clr-primary-500);
    transform-origin: right;
    transform: scaleX(0);
    transition: all 300ms ease-in-out;
  }
  .header__container__navbar__section__container__nav ul {
    gap: var(--fs-500);
    flex-direction: column;
    font-size: 2.8rem;
    text-align: center;
  }
  .header__container__navbar__section__container__nav ul a {
    color: var(--clr-dark-blue-500) !important;
  }
}

.header--active .header__container__navbar__section__toggle {
  position: absolute;
  top: 48px;
  right: 3rem;
  z-index: 15;
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span {
  background: var(--clr-dark-blue-500);
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span:nth-child(1) {
  transform: translate(0px, 10px) rotate(45deg);
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span:nth-child(2) {
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__toggle span:nth-child(3) {
  transform: translate(0px, -10px) rotate(-45deg);
  transition: all 300ms ease-in-out;
}
.header--active .header__container__navbar__section__container {
  transform: scaleX(1);
  transition: all 300ms ease-in-out;
}

.whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
}
.whatsapp a {
  margin: 0;
  padding: 0;
  width: var(--fs-900);
  height: var(--fs-900);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-500);
  color: white;
  line-height: 1;
  border-radius: 50%;
  background: var(--clr-whatsapp-500);
  transform: scale(1);
  transition: transform 300ms ease-in-out;
}
.whatsapp a:hover, .whatsapp a:focus {
  transform: scale(0.95);
  transition: transform 300ms ease-in-out;
}
.whatsapp a i {
  line-height: inherit;
}

.footer__cta {
  margin-bottom: -8rem;
}
.footer__cta__row {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}
.footer__cta__row::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 11.6rem;
  content: "";
  background: var(--clr-light-blue-500);
  transform: translateY(-50%);
  z-index: 0;
}
.footer__cta__row__card {
  z-index: 1;
}
.footer__cta__row__card a {
  font-size: 1.5rem;
}
.footer__cta__row__card a:hover {
  color: var(--clr-dark-blue-500);
}
.footer__content {
  padding: 14.8rem 0 8rem 0;
  background-image: url("../images/background-footer.png");
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}
.footer__content__row {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  font-size: 1.4rem;
}
.footer__content__row__card:nth-child(1) img {
  width: 16rem;
}
.footer__content__row__card:nth-child(1) i {
  font-size: 2rem;
}
.footer__content__row__card:nth-child(2) ul {
  display: flex;
  flex-direction: column;
  gap: var(--fs-200);
}
.footer__content__row__card:nth-child(2) ul li a {
  color: var(--clr-white-500);
  transition: color 300ms ease-in-out;
}
.footer__content__row__card:nth-child(2) ul li a:hover {
  color: var(--clr-primary-500);
  transition: color 300ms ease-in-out;
}
.footer__content__row__card:nth-child(3) ul li:nth-child(2) address {
  flex-wrap: nowrap;
}
.footer__copyright {
  font-size: 1.5rem;
}
.footer__copyright p {
  line-height: 1.1 !important;
}
.footer__developer__row {
  font-size: 1.5rem;
  line-height: 1.1 !important;
}
.footer__developer__row a:hover {
  color: #146d93;
}
.footer__developer__row a i {
  margin-right: 4px;
}
@media only screen and (max-width: 576px) {
  .footer__cta {
    display: none;
  }
  .footer__content {
    padding: var(--fs-600) 0;
  }
  .footer__developer__row {
    gap: var(--fs-100);
  }
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../images/background-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__container {
  max-width: 73rem;
}
.hero__container__text {
  max-width: 65.5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .hero {
    background-position: 35% center;
  }
}
@media only screen and (max-width: 576px) {
  .hero {
    background-position: 35% center;
  }
  .hero__container__header h2 {
    font-size: var(--fs-500);
  }
  .hero__container__text p {
    margin-bottom: var(--fs-500);
  }
}

.about__row {
  grid-template-columns: 1fr 1.5fr;
}
.about__row__image {
  position: relative;
  background-image: url("../images/background-secao-quem-somos.jpg");
  background-size: cover;
  background-position: center;
}
.about__row__image::after {
  position: absolute;
  left: -10rem;
  top: -3rem;
  width: 20rem;
  height: 20rem;
  display: block;
  content: "";
  background-image: url("../images/grid.svg");
  background-size: cover;
  background-position: left top;
  z-index: -1;
}
.about__row__image__years {
  padding: 6rem 3rem;
  position: absolute;
  left: 0;
  bottom: var(--fs-600);
  transform: translateX(-40%);
  width: 100%;
  max-width: 25rem;
  outline: 8px solid var(--clr-white-500);
}
.about__row__image__years p:nth-child(1) {
  font-size: var(--fs-1000);
  line-height: 1 !important;
}
.about__row__content__body__cta__phone {
  display: flex;
  gap: var(--gap);
}
.about__row__content__body__cta__phone__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--fs-700);
  height: var(--fs-700);
  border-radius: 50%;
}
.about__row__content__body__cta .btn {
  align-self: center;
}
@media only screen and (max-width: 1280px) {
  .about__row__image__years {
    transform: translateX(-25%);
  }
}
@media only screen and (max-width: 1194px) {
  .about__row__image__years {
    transform: translateX(-10%);
  }
}
@media only screen and (max-width: 1112px) {
  .about__row__image__years {
    transform: translateX(-25%);
  }
}
@media only screen and (max-width: 1024px) {
  .about__row__image__years {
    transform: translateX(-12%);
  }
}
@media only screen and (max-width: 768px) {
  .about__row__image__years {
    width: 21.5rem;
    transform: translateX(-10%);
  }
  .about__row__content__header h2 {
    font-size: var(--fs-600);
  }
}
@media only screen and (max-width: 576px) {
  .about__row {
    grid-template-columns: 1fr;
  }
  .about__row__image {
    margin-left: auto;
    width: 90%;
  }
  .about__row__image__years {
    position: relative;
  }
  .about__row__content__header h2 {
    font-size: var(--fs-500);
  }
}

.products {
  position: relative;
}
.products::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40rem;
  height: 55rem;
  display: block;
  content: "";
  background-image: url("../images/vetor-topo.png");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
}
.products::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14rem;
  height: 75.5rem;
  display: block;
  content: "";
  background-image: url("../images/vetor-baixo.png");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.products__row {
  position: relative;
  z-index: 1;
}
.products__row__card {
  position: relative;
  display: flex;
  flex-flow: column;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.products__row__card__image {
  position: relative;
  padding-top: 1.6rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products__row__card__image img {
  width: auto;
  height: 18rem;
}
.products__row__card__wrapper {
  display: flex;
  padding: 3rem;
  flex-flow: column;
  flex-grow: 1;
}
.products__row__card__wrapper__header h3 {
  font-size: 2rem;
}
.products__row__card__wrapper__body {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  font-size: 1.5rem;
  gap: 2.4rem;
}
.products__row__card__wrapper__body__link {
  margin-top: auto;
}
.products__row__card__wrapper__body__link a {
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .products__row__card__image img {
    height: 28rem;
  }
}

.certification {
  position: relative;
  width: 100%;
}
.certification::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30rem;
  content: "";
  background: var(--clr-light-gray-500);
  z-index: -1;
}
.certification__row {
  width: calc(100% - 10rem);
  display: flex;
  align-items: stretch;
}
.certification__row__content {
  padding: 8rem 10rem;
  flex-basis: 60%;
}
.certification__row__content__view {
  gap: var(--fs-600);
}
.certification__row__content__view a {
  width: 18rem;
  line-height: 1.1 !important;
}
.certification__row__content__view a img {
  margin-bottom: 12px;
}
.certification__row__image {
  flex-basis: 40%;
  width: 100%;
  min-height: 100%;
}
.certification__row__image img {
  -o-object-position: 80% top;
     object-position: 80% top;
}
@media only screen and (max-width: 1440px) {
  .certification__row__content {
    padding: 8rem 6rem;
  }
}
@media only screen and (max-width: 1280px) {
  .certification__row {
    width: calc(100% - 7rem);
  }
}
@media only screen and (max-width: 1024px) {
  .certification__row__content {
    padding: 6rem;
    flex-grow: 1;
  }
  .certification__row__image {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .certification__row {
    width: calc(100% - 4rem);
  }
  .certification__row__content {
    padding: 6rem 4rem;
  }
  .certification__row__content__view a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--gap);
    text-align: left;
  }
  .certification__row__content__view a img {
    margin-bottom: 0;
  }
}

.gallery__row {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.gallery__row__card {
  height: 25rem;
  transform: scale(1);
  transition: all 300ms ease-in-out;
}
.gallery__row__card:hover {
  transform: scale(0.98);
  filter: blur(1px);
  transition: all 300ms ease-in-out;
}
.gallery__row__card:nth-child(1) {
  grid-column: 1/3;
}
.gallery__row__card:nth-child(2) {
  grid-column: 3/5;
  min-height: 100%;
}
.gallery__row__card:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2/4;
  min-height: 100%;
}
.gallery__row__card:nth-child(8) {
  grid-column: 3/5;
}
.gallery__row__card:nth-child(9) {
  grid-column: 1/3;
}
@media only screen and (max-width: 768px) {
  .gallery__row {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__row__card {
    height: 15rem;
  }
  .gallery__row__card:nth-child(1) {
    grid-column: 1/3;
  }
  .gallery__row__card:nth-child(2) {
    grid-column: 3/4;
    grid-row: 1/3;
    min-height: 100%;
  }
  .gallery__row__card:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/4;
    min-height: 100%;
  }
  .gallery__row__card:nth-child(8) {
    grid-column: 2/4;
  }
  .gallery__row__card:nth-child(9) {
    grid-column: initial;
  }
}

.blog {
  background: linear-gradient(#f2f2f2, transparent);
}
.blog__row {
  grid-template-columns: repeat(3, 1fr);
}
.blog__row__card {
  display: flex;
  flex-flow: column;
}
.blog__row__card__header a:hover {
  color: var(--clr-dark-blue-500);
}
.blog__row__card__body {
  padding: calc(var(--gap) * 2) var(--gap);
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  font-size: 1.4rem;
}
.blog__row__card__body a {
  margin-top: auto;
}
.blog__row__card__body a i {
  margin-left: 0.4rem;
}
@media only screen and (max-width: 768px) {
  .blog__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .blog__row {
    grid-template-columns: 1fr;
  }
}
