/* reset.scss */
* {
  margin: 0;
  padding: 0;
  padding-right: 0;
  padding-left: 0;
  box-sizing: border-box;
}

.row > * {
  margin: 0;
  padding: 0;
  padding-right: 0;
  padding-left: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Rubik", sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  cursor: pointer;
  text-decoration: none !important;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

#header.scrolled {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1019607843);
}
#header .header-grid {
  padding: 32px 0px;
}
#header .header-grid .navbar {
  padding: 0;
}
#header .header-grid .navbar .logo {
  display: grid;
  place-items: center;
}
#header .header-grid .navbar .logo img {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 992px) {
  #header .header-grid .navbar .logo img {
    width: 70px;
    height: 70px;
  }
}
#header .header-grid .navbar .navbar-nav {
  gap: 46px;
}
#header .header-grid .navbar .navbar-nav .nav-link {
  justify-self: end;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.2s;
  color: #fff;
  padding: 0px;
}
#header .header-grid .navbar .navbar-nav .nav-link:hover {
  border-bottom: 1px solid currentColor;
}
#header .header-grid .navbar .navbar-nav .nav-link.active {
  border-bottom: 1px solid currentColor;
}
@media (max-width: 992px) {
  #header .header-grid .navbar .navbar-nav {
    gap: 20px;
  }
  #header .header-grid .navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
#header .header-grid .navbar-toggler {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: none;
}
#header .header-grid .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  #header .header-grid .navbar-toggler {
    display: none;
  }
}
#header .header-grid .navbar-toggler span {
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  color: #FFF;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#header .header-grid .navbar-toggler[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}
#header .header-grid .navbar-toggler[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
#header .header-grid .navbar-toggler[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}
@media (max-width: 992px) {
  #header .header-grid .navbar-collapse {
    position: absolute;
    top: 60px;
    z-index: 9999;
    right: 12px;
    background-color: #0D1B2B;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
  }
  #header .header-grid .navbar-collapse .navbar-nav {
    padding: 12px 12px 6px;
  }
}

#footer {
  padding: 65px 0;
}
#footer h3 {
  font-size: 24px !important;
  line-height: 1.3;
  color: #0D131A;
  letter-spacing: -0.6px;
}

#intro {
  padding-top: 80px;
  padding-bottom: 60px;
}
#intro * {
  color: #ffffff;
  margin-bottom: 0 !important;
}
#intro .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
#intro .container h1 {
  line-height: 1.3;
  letter-spacing: -1.6px;
}
#intro .container p {
  font-size: 20px;
}
@media (max-width: 992px) {
  #intro .container p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  #intro {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section * {
  color: #0d131a;
}
.section .section-grid {
  display: grid;
  gap: 100px;
  align-items: center;
}
@media (max-width: 992px) {
  .section .section-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .section .section-grid .section-text {
    order: 2;
  }
  .section .section-grid .section-image {
    order: 1;
  }
  .section .section-grid form {
    order: 2;
  }
}
.section .section-grid .section-image img {
  width: 100%;
}
.section .section-grid .section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .section .section-grid .section-text {
    gap: 14px;
  }
}
.section .section-grid .section-text .title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.section .section-grid .section-text .title.narrow {
  max-width: 400px;
}
@media (max-width: 992px) {
  .section .section-grid .section-text .title {
    gap: 8px;
  }
}
.section .section-grid__image-right {
  grid-template-columns: 6fr 7.3fr;
}
.section .section-grid__image-left {
  grid-template-columns: 7.3fr 6fr;
}

#about .section-grid {
  grid-template-columns: 1fr !important;
}
#about .section-grid p {
  max-width: 812px;
}

#contactSection {
  padding-bottom: 48px;
}
#contactSection .section-grid {
  grid-template-columns: 1fr !important;
  gap: 40px;
}
#contactSection .section-grid .section-text {
  text-align: center;
  max-width: 606px;
  margin: auto;
}
#contactSection .section-grid form {
  max-width: 400px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
#contactSection .section-grid form .input {
  display: grid;
  grid-template-columns: 1fr;
}
#contactSection .section-grid form .input input,
#contactSection .section-grid form .input textarea {
  padding: 16px;
  border-radius: 4px;
  outline: none;
  border: 1px solid #0d131a;
  color: #808a99;
}
#contactSection .section-grid form .input input::-moz-placeholder, #contactSection .section-grid form .input textarea::-moz-placeholder {
  color: #808a99;
}
#contactSection .section-grid form .input input::placeholder,
#contactSection .section-grid form .input textarea::placeholder {
  color: #808a99;
}
#contactSection .section-grid form .input input:focus, #contactSection .section-grid form .input input:hover,
#contactSection .section-grid form .input textarea:focus,
#contactSection .section-grid form .input textarea:hover {
  border-color: #808a99;
}
#contactSection .section-grid form button {
  background-color: #176BE0;
  padding: 16px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
}

#about-intro {
  padding-top: 80px;
  padding-bottom: 60px;
}
#about-intro * {
  color: #ffffff;
}
#about-intro .container {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 700px);
  justify-content: center;
  gap: 30px;
}
@media (max-width: 992px) {
  #about-intro .container {
    grid-template-columns: 1fr;
  }
}
#about-intro .container .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 65px;
}
#about-intro .container p {
  margin-bottom: 0;
}
#about-intro .container a {
  border-radius: 4px;
  background-color: #176BE0;
  padding: 16px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  margin-left: 0;
}



@media (max-width: 992px) {
  #about-intro {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}




#about-intro2 {
  padding-top: 80px;
  padding-bottom: 60px;
}
#about-intro2 * {
  color: #ffffff;
}
#about-intro2 .container {
  display: grid;
  
  justify-content: center;
  gap: 30px;
}
@media (max-width: 992px) {
  #about-intro2 .container {
    grid-template-columns: 1fr;
  }
}
#about-intro2 .container .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 65px;
}
#about-intro2 .container p {
  margin-bottom: 0;
}
#about-intro2 .container a {
  border-radius: 4px;
  background-color: #176BE0;
  padding: 16px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  margin-left: 0;
}



@media (max-width: 992px) {
  #about-intro2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}



#principles {
  padding-bottom: 48px;
}
#principles .section-grid {
  grid-template-columns: 1fr !important;
  gap: 40px;
}
#principles .section-grid .section-text {
  text-align: center;
  max-width: 606px;
  margin: auto;
}
#principles .section-grid .principles-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
#principles .section-grid .principles-cards .principle-card {
  background-color: #ECEFF3;
  padding: 66px;
  text-align: center;
}
#principles .section-grid .principles-cards .principle-card .section-description {
  text-align: center;
}
@media (max-width: 992px) {
  #principles .section-grid .principles-cards .principle-card {
    padding: 10vw;
  }
}
@media (max-width: 992px) {
  #principles .section-grid .principles-cards {
    grid-template-columns: 1fr;
  }
}

#contact {
  padding: 90px 0 60px;
}
#contact * {
  color: #ffffff;
}
#contact .section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 503px));
  grid-template-rows: auto auto;
  justify-content: center;
  gap: 20px;
  row-gap: 60px;
}
#contact .section-grid .section-text {
  grid-column: 1;
  grid-row: 1;
  padding: 20px 0 60px;
  height: 100%;
}
#contact .section-grid .section-text .title {
  gap: 12px;
}
#contact .section-grid .section-text .title .section-title {
  font-size: 60px !important;
  letter-spacing: -1.5px;
}
@media (max-width: 992px) {
  #contact .section-grid .section-text .title .section-title {
    font-size: 38px !important;
  }
}
#contact .section-grid form {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
#contact .section-grid form .input {
  display: grid;
}
#contact .section-grid form .input input,
#contact .section-grid form .input textarea {
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #0d131a;
  outline: none;
  color: #808a99;
}
#contact .section-grid form .input input::-moz-placeholder, #contact .section-grid form .input textarea::-moz-placeholder {
  color: #808a99;
}
#contact .section-grid form .input input::placeholder,
#contact .section-grid form .input textarea::placeholder {
  color: #808a99;
}
#contact .section-grid form .input input:focus, #contact .section-grid form .input input:hover,
#contact .section-grid form .input textarea:focus,
#contact .section-grid form .input textarea:hover {
  border-color: #808a99;
}
#contact .section-grid form button {
  background-color: #176BE0;
  padding: 16px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
}
#contact .section-grid .section-image {
  grid-column: 1/-1;
  grid-row: 2;
}
#contact .section-grid .section-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 992px) {
  #contact .section-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  #contact .section-grid .section-text {
    grid-column: auto;
    grid-row: 1;
    padding: 20px 0 0;
  }
  #contact .section-grid form {
    grid-column: auto;
    grid-row: 2;
  }
  #contact .section-grid .section-image {
    grid-column: auto;
    grid-row: 3;
    margin-top: 60px;
  }
}
@media (max-width: 992px) {
  #contact {
    padding: 28px 40px 60px;
  }
}

:root {
  --font-primary: Inter, sans-serif;
}

body {
  font-family: var(--font-primary) !important;
}

main {
  margin-top: -4px;
}

.background-primary {
  background-color: #0D1B2B;
}

.background-white {
  background-color: #ffffff;
}

.background-light {
  background-color: #ECEFF3;
}

.section {
  padding: 100px 0 60px;
}

.rounded-image {
  border-radius: 5%;
}

.section-title {
  line-height: 1.235;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.section-description {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: normal;
  text-align: justify;
}

em {
  font-size: 14px;
  font-weight: 300;
}

.d-flex {
  flex-wrap: wrap;
}

h1 {
  font-size: 64px !important;
  font-weight: 700;
}

h2 {
  font-size: 48px !important;
  font-weight: 700;
}

h3 {
  font-size: 36px !important;
  font-weight: 700 !important;
}

h4 {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  line-height: 1.5 !important;
}

h6 {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

img {
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
}

.fade-up, .fade-down {
  opacity: 0;
  transform: translateY(0);
}

.animate.fade-up {
  animation: fadeUp 1s ease-out forwards;
}

img.animate.fade-up {
  animation: fadeUp 0.5s ease-out forwards;
}

.animate.fade-down {
  animation: fadeDown 1s ease-out forwards;
}

img.animate.fade-down {
  animation: fadeUp 0.5s ease-out forwards;
}

.animate.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.section-image.animate.fade-in {
  animation: fadeUp 0.5s ease-out forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
}

.animate.zoom-in {
  animation: zoomIn 0.6s ease-out forwards;
}

.delay-01 {
  animation-delay: 0.1s !important;
}

.delay-02 {
  animation-delay: 0.2s !important;
}

.delay-03 {
  animation-delay: 0.3s !important;
}

.delay-04 {
  animation-delay: 0.4s !important;
}

.delay-05 {
  animation-delay: 0.5s !important;
}

.delay-06 {
  animation-delay: 0.6s !important;
}

.delay-07 {
  animation-delay: 0.7s !important;
}

.delay-08 {
  animation-delay: 0.8s !important;
}

.delay-09 {
  animation-delay: 0.9s !important;
}

.delay-10 {
  animation-delay: 1s !important;
}

.delay-11 {
  animation-delay: 1.1s !important;
}

.delay-12 {
  animation-delay: 1.2s !important;
}

.delay-13 {
  animation-delay: 1.3s !important;
}

.delay-14 {
  animation-delay: 1.4s !important;
}

.delay-15 {
  animation-delay: 1.5s !important;
}

.delay-16 {
  animation-delay: 1.6s !important;
}

.delay-17 {
  animation-delay: 1.7s !important;
}

.delay-18 {
  animation-delay: 1.8s !important;
}

.delay-19 {
  animation-delay: 1.9s !important;
}

.delay-20 {
  animation-delay: 2s !important;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1224px !important;
    padding: 0 !important;
  }
}
@media (max-width: 992px) {
  .container {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .section-title {
    font-size: 36px;
  }
  .section-description {
    font-size: 14px;
  }
  h1 {
    font-size: 38px !important;
  }
  h2 {
    font-size: 34px !important;
  }
  h3 {
    font-size: 32px !important;
  }
  h4 {
    font-size: 14px !important;
  }
  .section {
    padding: 24px 0 8px;
  }
}/*# sourceMappingURL=style.css.map */