@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Outfit:100,200,300,400,800");

.screen a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* buttons */
.primary-button {
  align-items: center;
  border-radius: 50px;
  display: flex;
  gap: 55px;
  height: 60px;
  justify-content: space-between;
  padding: 17px 10px;
  text-decoration: none;
  white-space: nowrap
}

.gradient-blue-button {
  align-items: center;
  background: linear-gradient(92deg, rgba(190, 216, 255, 1) 0%, rgba(0, 102, 255, 1) 100%);
  border-radius: 50px;
  display: flex;
  gap: 8px;
  height: 40px;
  justify-content: center;
  color: #ffffff;
  white-space: nowrap
}


.blue-button {
  align-items: center;
  background-color: var(--blue);
  border-radius: 50px;
  display: flex;
  gap: 8px;
  height: 50px;
  justify-content: space-between;
  color: #ffffff;
  width: fit-content;
  padding: 0 50px;
  white-space: nowrap
}

.primary-button.bg-white {
  background-color: #ffffff;
}

.primary-button.bordered {
  border: 1px solid;
  border-color: var(--quick-silver);
}

.with-circle {
  padding: 14px 7px 14px 24px !important;
}

.primary-button.with-circle {
  width: fit-content !important;
  padding: 17px 10px 17px 32px;
}

.secondary-button {
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  gap: 8px;
  height: 40px;
  padding: 14px 24px;
  white-space: nowrap
}

.caribbean-green {
  border: none;
  background-color: var(--caribbean-green);
  color: #ffffff;
}

.electric-violet {
  border: none;
  background-color: var(--electric-violet);
  color: #ffffff;
}

.bitter-sweet {
  border: none;
  background-color: var(--bittersweet);
  color: #ffffff;
}

.neon-carrot {
  border: none;
  background-color: var(--neon-carrot);
  color: #ffffff;
}

.light-blue {
  border: none;
  background-color: #4ebbff;
  color: #ffffff;
}

.caribbean-green.bordered {
  border: 1px solid;
  border-color: var(--caribbean-green);
  background-color: initial;
  color: var(--granite-gray);
}

.electric-violet.bordered {
  border: 1px solid;
  border-color: var(--electric-violet);
  background-color: initial;
  color: var(--granite-gray);
}

.bitter-sweet.bordered {
  border: 1px solid;
  border-color: var(--bittersweet);
  background-color: initial;
  color: var(--granite-gray);
}

.neon-carrot.bordered {
  border: 1px solid;
  border-color: var(--neon-carrot);
  background-color: initial;
  color: var(--granite-gray);
}

.light-blue.bordered {
  border: 1px solid;
  border-color: #4ebbff;
  background-color: initial;
  color: var(--granite-gray);
}

.button-circle-arrow {
  display: none !important;
}

.active-button>.button-circle-arrow {
  display: flex !important;
}

.quick-silver {
  border: 1px solid;
  border-color: var(--quick-silver);
  gap: 53px;
  height: 60px;
  position: relative;
  width: 260px;
}

.gradient-circle {
  background: linear-gradient(92deg, rgba(190, 216, 255, 1) 0%, rgba(0, 102, 255, 1) 100%);
  text-align: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-circle-arrow {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  height: 29px;
  width: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.right-button-circle {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.green-button.small,
.gradient-blue-button.small,
.primary-button.small {
  width: fit-content;
  white-space: nowrap;
  height: 40px;
  padding: 14px 24px;
}

/* buttons */

.my-150 {
  margin-top: 150px;
  margin-bottom: 150px;
}

/* flex */
.flex-column,
.flex-row {
  display: flex;
  width: fit-content;
  height: fit-content;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-space-between {
  justify-content: space-between;
}

/*  */
.screen {
  align-items: center;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


/* dual-cards-container */
.dual-cards-container {
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  width: 100%;
}

.dual-cards-container .flex-row {
  margin-bottom: 15px;
}

.right-card-frame,
.left-card-frame {
  align-items: center;
  justify-content: start;
  background-color: var(--white);
  border: 1px solid;
  border-color: var(--gallery);
  border-radius: 60px;
  box-shadow: 0px 10px 50px #00000026;
  display: flex;
  flex-direction: column;
  gap: 65px;
  min-height: 620px;
  padding: 70px 75px;
  position: relative;
  max-width: 40%;
}


.right-card-frame .inner-text,
.left-card-frame .inner-text {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
}

.inner-text>.dual-cards-text:first-of-type {
  margin-bottom: 20px;
}

.dual-cards-text,
.header-line {
  max-width: 565px;
}

.right-card-frame .inner-text>.outfit-light-blue-ribbon-m,
.left-card-frame .inner-text>.outfit-light-blue-ribbon-m {
  margin-bottom: 20px;
}

.header-line {
  background: #D7D7D7;
  height: 1px;
  width: 100%;
  margin: 50px 0;
}

/* dual-cards-container */
.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-240 {
  margin-top: 240px !important;
}

.mb-240 {
  margin-bottom: 240px !important;
}

.no-margins {
  margin: 0 !important;
}

.frame-85 {
  align-items: center;
  display: flex;
  gap: 70px;
  justify-content: flex-end;
  position: relative;
  width: 1264.62px;
}

.frame-42 {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 54px;
  position: relative;
}

.group-52 {
  height: 20px;
  position: relative;
  width: 119.75px;
}

.group-53 {
  height: 20px;
  position: relative;
  width: 87px;
}

.global-contacts {
  letter-spacing: 0;
  line-height: normal;
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
}

.group-49 {
  height: 18px;
  position: relative;
  width: 64.12px;
}

.image-6 {
  height: 17.37px;
  object-fit: cover;
  position: relative;
  width: 17.37px;
}

.frame-104 {
  align-items: flex-start;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
  position: relative;
}



.e-mail {
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: -4.00px;
  margin-top: -6.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.submenu-footer {
  align-items: flex-start;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 51px;
  position: relative;
}

.submenu-footer-column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 135px;
}

.menu-container-2 {
  height: 18px;
  position: relative;
  width: 57px;
}


.global-contacts-1 {
  letter-spacing: 0;
  line-height: normal;
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
}

.e-mail-1 {
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: -4.00px;
  margin-top: -6.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.message {
  letter-spacing: 0;
  line-height: 32px;
  margin-top: -1.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.blueoffices {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  text-align: center;
  width: fit-content;
}

.bluebrand {
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  text-align: center;
  width: fit-content;
}

.place {
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: -4.00px;
  margin-top: -6.00px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.our-purpose {
  letter-spacing: 0;
  line-height: normal;
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
}

.going-together {
  letter-spacing: 0;
  line-height: normal;
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
}

.frame-66-1 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 50px;
  position: relative;
  width: 100%;
}

.frame-102 {
  align-items: center;
  background-color: #00000080;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 816px;
  justify-content: center;
  padding: 130px 609px;
  position: relative;
  width: 1920px;
}

.why-us-more-about-us {
  left: 0;
  letter-spacing: 0;
  line-height: 50px;
  position: absolute;
  top: 0;
}

/* efeito scroll stick */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow: hidden;
}

.index.screen {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.panel {
  min-height: 100vh;
  height: 100vh;
  scroll-snap-align: start;
}

.with-margin-top {
  padding-top: 80px;
}