@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
.hover-scale {
  transition: all 0.3s ease-in-out;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.d-none {
  display: none;
}

.read-more-button {
  cursor: pointer;
  color: #fe5c45;
  font-weight: 600;
  font-size: 1.8rem;
  margin-top: 2rem;
  display: inline-block;
  float: right;
}
.read-more-button:hover {
  color: #e7543f;
  text-decoration: underline;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.scroll-up-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: white;
  background-color: #fe5c45;
  font-size: 1.8rem;
  box-shadow: 0 0 0.5rem #fe5c45;
}
@media screen and (max-width: 1000px) {
  .scroll-up-button {
    right: 25%;
    bottom: 3rem;
  }
}

.navbar {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-bottom: 7rem;
}
.navbar .container {
  padding: 1rem 8rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
  z-index: 3;
  background-color: white;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  .navbar .container {
    padding: 1rem 2rem;
  }
}
.navbar .logo {
  display: flex;
  align-items: center;
}
.navbar .logo img {
  height: 3.5rem;
}
.navbar .references {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0c1A40;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 1000px) {
  .navbar .references {
    display: none;
  }
}
.navbar .references .reference {
  cursor: pointer;
  transition: color 0.2s;
}
.navbar .references .reference:hover {
  color: #fe5c45;
}
.navbar .actions {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar .languages-wrapper {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}
.navbar .languages-wrapper .language-icon {
  width: 3.2rem;
  height: 3.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .languages-wrapper .languages {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.navbar .languages-wrapper .languages .language-options-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.navbar .languages-wrapper .languages .language-options-wrapper .language-options {
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
}
.navbar .languages-wrapper .languages .language-options-wrapper .language-options button.language {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .languages-wrapper .languages .language-options-wrapper .language-options button.language:hover {
  transform: scale(1.1);
}
.navbar .languages-wrapper .languages .language-options-wrapper .language-options button.language .language-icon {
  width: 3.2rem;
  height: 3.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .languages-wrapper .languages:hover .language-options-wrapper {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 0.5rem);
}
.navbar .login, .navbar .side-menu .login {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .navbar .login, .navbar .side-menu .login {
    display: none;
  }
}
.navbar .login .login-button, .navbar .side-menu .login .login-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: #fe5c45;
  color: white;
  font-weight: 600;
  border-radius: 2.5rem;
  transition: background-color 0.3s ease-in-out;
}
.navbar .login .login-button:hover {
  background-color: #e7543f;
}
.navbar .side-menu-open-button-wrapper {
  position: relative;
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  padding: 2rem;
}
@media screen and (max-width: 1000px) {
  .navbar .side-menu-open-button-wrapper {
    display: flex;
  }
}
.navbar .side-menu-open-button-wrapper .side-menu-open-button {
  position: absolute;
  height: 80%;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.navbar .side-menu-open-button-wrapper .side-menu-open-button .line {
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background-color: #fe5c45;
  transition: 0.3s ease-in-out;
}
.navbar .side-menu-open-button-wrapper .side-menu-open-button .line:nth-child(1) {
  top: 25%;
  transform-origin: center;
}
.navbar .side-menu-open-button-wrapper .side-menu-open-button .line:nth-child(2) {
  top: 50%;
  transform-origin: center;
}
.navbar .side-menu-open-button-wrapper .side-menu-open-button .line:nth-child(3) {
  top: 75%;
  transform-origin: center;
}
.navbar .side-menu-open-button-wrapper.active .side-menu-open-button .line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.navbar .side-menu-open-button-wrapper.active .side-menu-open-button .line:nth-child(2) {
  opacity: 0;
}
.navbar .side-menu-open-button-wrapper.active .side-menu-open-button .line:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}
.navbar .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.navbar .backdrop.active {
  visibility: visible;
  opacity: 1;
}
.navbar .side-menu {
  position: fixed;
  top: -50%;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  background-color: white;
  width: 100vw;
  transition: top 0.7s ease-in-out;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.navbar .side-menu .side-menu-item {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0c1A40;
  cursor: pointer;
}
.navbar .side-menu .side-menu-item a {
  transition: color 0.3s ease-in-out;
  color: #fe5c45;
}
.navbar .side-menu .side-menu-item a:hover {
  color: black;
}
.navbar .side-menu.active {
  top: 6rem;
  width: 100vw;
}
.navbar .side-menu .login {
  display: flex;
}
.banner {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-top: 12rem;
  margin-bottom: 8rem;
}
.banner .container {
  padding-right: 8rem;
  padding-left: 8rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .banner .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  .banner .container {
    grid-template-columns: 1fr;
  }
}
.banner .container .info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .banner .container .info-col {
    order: 2;
    width: 90%;
    margin: auto;
  }
}
.banner .container .info-col .greetings {
  position: relative;
  margin-bottom: 4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 1200px) {
  .banner .container .info-col .greetings {
    margin-bottom: 1.5rem;
  }
}
.banner .container .info-col .greetings .greetings-wrapper {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .banner .container .info-col .greetings .greetings-wrapper {
    margin: auto;
  }
}
.banner .container .info-col .greetings .greetings-wrapper .greetings-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .banner .container .info-col .greetings .greetings-wrapper .greetings-background {
    width: 100%;
  }
  .banner .container .info-col .greetings .greetings-wrapper .greetings-text {
    font-size: 1.3rem;
    width: 100%;
  }
}
.banner .container .info-col .title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0c1A40;
}
@media screen and (max-width: 1200px) {
  .banner .container .info-col .title {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.banner .container .info-col .text {
  color: #2E3C63;
}
@media screen and (max-width: 1200px) {
  .banner .container .info-col .text {
    text-align: center;
  }
}
.banner .container .image-col {
  display: flex;
  justify-content: end;
  position: relative;
  height: 50rem;
}
@media screen and (max-width: 1200px) {
  .banner .container .image-col {
    order: 1;
    width: 100%;
    justify-content: center;
    height: 50rem;
  }
}
@media screen and (max-width: 700px) {
  .banner .container .image-col {
    height: 40rem;
  }
}
@media screen and (max-width: 500px) {
  .banner .container .image-col {
    height: 30rem;
  }
}
.banner .container .image-col .banner-image {
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: float-animation 0.5s ease-in infinite alternate;
}
@media screen and (max-width: 700px) {
  .banner .container .image-col .banner-image {
    width: 100%;
  }
}
@keyframes float-animation {
  0% {
    top: 45%;
  }
  100% {
    top: 55%;
  }
}

.about {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
}
.about .container {
  position: relative;
}
.about .container .background-image {
  width: 100%;
  position: absolute;
  top: -15rem;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .about .container .background-image {
    top: -10rem;
  }
}
.about .container .content-container {
  padding: 0rem 8rem;
  margin-top: 15rem;
  background-color: #FFF1F1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1000px) {
  .about .container .content-container {
    padding: 0rem 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .about .container .content-container {
    padding-right: 8rem;
    padding-left: 8rem;
    grid-template-columns: 1fr;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .about .container .content-container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.about .container .content-container .image-col {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.about .container .content-container .image-col .image-wrapper {
  position: relative;
}
.about .container .content-container .image-col .image-wrapper .empty-image {
  width: 70rem;
  height: 50rem;
  background-color: white;
  border-radius: 3rem;
  border: 0.3rem dashed #fe5c45;
}
.about .container .content-container .image-col .image-wrapper .about-image {
  position: absolute;
  left: 3.5rem;
  top: 3.5rem;
  width: 70rem;
  height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3rem;
  transition: all 0.3s ease-in-out;
}
.about .container .content-container .image-col .image-wrapper .about-image:hover {
  left: 0;
  top: 0;
}
@media screen and (max-width: 1000px) {
  .about .container .content-container .image-col .image-wrapper .empty-image {
    width: 80vw;
    height: 80vw;
  }
  .about .container .content-container .image-col .image-wrapper .about-image {
    width: 80vw;
    height: 80vw;
  }
}
.about .container .content-container .text-col .title {
  font-size: 4rem;
  font-weight: 700;
  color: #0c1A40;
  margin-bottom: 4rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .about .container .content-container .text-col .title {
    margin: auto;
    margin-bottom: 2.5rem;
  }
}
.about .container .content-container .text-col .title::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(255, 163, 169, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.about .container .content-container .text-col .content {
  font-size: 1.6rem;
  font-weight: 400;
  color: #2E3C63;
  text-align: justify;
}

.sea {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
}
.sea .container {
  position: relative;
  background-color: #daf0ff;
}
.sea .container .background-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .sea .container .background-image {
    width: auto;
    height: 100rem;
    max-width: 100%;
  }
}
.sea .container .general-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .sea .container .general-container {
    height: 80%;
    top: 50%;
    transform: translateY(-45%);
  }
}
.sea .container .general-container .content-container {
  padding-right: 8rem;
  padding-left: 8rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .sea .container .general-container .content-container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .sea .container .general-container .content-container {
    flex-direction: column;
  }
}
.sea .container .general-container .content-container .content {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  width: 10rem;
}
.sea .container .general-container .content-container .content .number {
  font-size: 4.5rem;
  font-weight: 700;
  color: #0c1A40;
}
.sea .container .general-container .content-container .content .text {
  font-size: 2rem;
  font-weight: 700;
  color: #0c1A40;
}
.sea .container .general-container .fish-container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.sea .container .general-container .fish-container .fish {
  position: absolute;
  left: -30%;
  animation: fish-float-animation 3s linear infinite alternate, fish-move-animation 10s linear infinite normal;
}
.sea .container .general-container .fish-container .fish.fish-1 {
  top: 20%;
  animation-delay: 0s;
}
.sea .container .general-container .fish-container .fish.fish-2 {
  top: 50%;
  animation-delay: 4s;
}
.sea .container .general-container .fish-container .fish.fish-3 {
  top: 80%;
  animation-delay: 2s;
}
.sea .container .general-container .fish-container .fish.fish-4 {
  top: 30%;
  animation-delay: 6s;
}
.sea .container .general-container .fish-container .fish.fish-5 {
  top: 60%;
  animation-delay: 8s;
}
.sea .container .general-container .fish-container .fish .bubles {
  position: absolute;
  left: 75%;
  bottom: 40%;
}
.sea .container .general-container .fish-container .fish .bubles .buble {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-color: #5a8dff;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 #3494ff;
  animation: fish-buble-animation 1s linear infinite normal;
}
.sea .container .general-container .fish-container .fish .bubles .buble::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 40%;
  height: 40%;
  background-color: #b0c9ff;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 #5a8dff;
}
.sea .container .general-container .fish-container .fish .bubles .buble-1 {
  animation-delay: 0.33s;
  left: 1rem;
}
.sea .container .general-container .fish-container .fish .bubles .buble-2 {
  animation-delay: 0.66s;
  left: 2rem;
}
.sea .container .general-container .fish-container .fish .bubles .buble-3 {
  animation-delay: 1s;
  left: 0.5rem;
}
@keyframes fish-float-animation {
  0% {
    transform: translateY(0) rotate(20deg);
  }
  25% {
    transform: translateY(1.5rem) rotate(-10deg);
  }
  50% {
    transform: translateY(0rem) rotate(20deg);
  }
  75% {
    transform: translateY(-1.5rem) rotate(-10deg);
  }
  100% {
    transform: translateY(0rem) rotate(20deg);
  }
}
@keyframes fish-move-animation {
  0% {
    left: -30%;
  }
  100% {
    left: 130%;
  }
}
@keyframes fish-buble-animation {
  0% {
    transform: scale(1);
    bottom: 0;
    opacity: 0.9;
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
    bottom: 7rem;
    opacity: 0;
  }
}

.info {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
}
.info .container {
  position: relative;
  padding-right: 8rem;
  padding-left: 8rem;
  padding-top: 10rem;
}
@media screen and (max-width: 1000px) {
  .info .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.info .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #daf0ff;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .info .container {
    padding-right: 8rem;
    padding-left: 8rem;
    background-color: #FFF1F1;
    padding-bottom: 5rem;
    padding-top: 0rem;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .info .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.info .container .background-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 120%;
  z-index: -1;
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .info .container .background-image {
    top: -10rem;
  }
}
.info .container .content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding: 5rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  margin-top: 15rem;
}
@media screen and (max-width: 1000px) {
  .info .container .content-container {
    grid-template-columns: 1fr;
  }
}
.info .container .content-container .image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}
.info .container .content-container .image-col .info-image {
  border-radius: 4rem;
}
@media screen and (max-width: 1000px) {
  .info .container .content-container .image-col .info-image {
    width: 100%;
  }
}
.info .container .content-container .text-col .title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #0c1A40;
}
@media screen and (max-width: 1000px) {
  .info .container .content-container .text-col .title {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.info .container .content-container .text-col .title::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(255, 210, 119, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.info .container .content-container .text-col .content {
  font-size: 1.5rem;
  color: #2E3C63;
  text-align: justify;
}
.info .container .content-container .frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid rgba(255, 163, 169, 0.5);
  border-radius: 5rem;
  pointer-events: none;
}
.info .container .content-container .frame .beads-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info .container .content-container .frame .beads-wrapper .line {
  width: 150%;
  margin-left: -25%;
  height: 0.8rem;
  background-color: #ffa3a9;
  border-radius: 1rem;
}
.info .container .content-container .frame .beads-wrapper .bead-animation-down {
  animation: bead-bottom-move-animation 0.7s ease-in-out infinite alternate;
}
.info .container .content-container .frame .beads-wrapper .bead-animation-up {
  animation: bead-top-move-animation 0.7s ease-in-out infinite alternate;
}
.info .container .content-container .frame .beads-wrapper .bead-animation-delay {
  animation-delay: 1.4s;
}
.info .container .content-container .frame .beads-wrapper-1 {
  top: 10%;
  left: 0;
  transform: translateX(calc(-50% - 2.5px));
}
.info .container .content-container .frame .beads-wrapper-2 {
  bottom: 15%;
  right: 0;
  transform: translateX(calc(50% + 2.5px));
}
@keyframes bead-bottom-move-animation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes bead-top-move-animation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.features {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-bottom: 10rem;
}
.features .container {
  padding-right: 8rem;
  padding-left: 8rem;
  margin-top: 25rem;
}
@media screen and (max-width: 1000px) {
  .features .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .features .container {
    margin-top: 10rem;
  }
}
.features .container .title {
  font-size: 4rem;
  font-weight: 700;
  color: #0c1A40;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 7rem;
}
@media screen and (max-width: 600px) {
  .features .container .title {
    font-size: 2.7rem;
    text-align: center;
  }
}
.features .container .title::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(255, 163, 169, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.features .container .feature-cards {
  display: grid;
  grid-template-columns: repeat(4, auto);
  row-gap: 5rem;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .features .container .feature-cards {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 600px) {
  .features .container .feature-cards {
    grid-template-columns: repeat(1, auto);
    justify-content: center;
  }
}
.features .container .feature-cards .feature-card {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.features .container .feature-cards .feature-card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.features .container .feature-cards .feature-card .content .icon {
  width: 10rem;
  height: 10rem;
}
.features .container .feature-cards .feature-card .content .card-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0c1A40;
}
.features .container .feature-cards .feature-card .content .card-content {
  font-size: 1.6rem;
  color: #2E3C63;
}

.advantages {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-bottom: 8rem;
}
.advantages .container {
  padding-right: 8rem;
  padding-left: 8rem;
}
@media screen and (max-width: 1000px) {
  .advantages .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.advantages .container .title {
  font-size: 4rem;
  font-weight: 700;
  color: #0c1A40;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 6rem;
}
.advantages .container .title::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(255, 210, 119, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.advantages .container .advantage-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  row-gap: 10rem;
}
.advantages .container .advantage-cards .advantage-card {
  display: flex;
  gap: 3rem;
  width: 45rem;
}
.advantages .container .advantage-cards .advantage-card .text-col .card-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0c1A40;
}
.advantages .container .advantage-cards .advantage-card .text-col .card-content {
  font-size: 1.5rem;
  color: #2E3C63;
}
.advantages .container .advantage-cards .advantage-card .image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.olimpics {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-bottom: 8rem;
}
.olimpics .container {
  padding-right: 8rem;
  padding-left: 8rem;
  background-color: #EFFBFE;
  padding-top: 8rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 1000px) {
  .olimpics .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .olimpics .container {
    padding-bottom: 5rem;
  }
}
.olimpics .container .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}
.olimpics .container .title .icon {
  width: 6rem;
}
.olimpics .container .title .text {
  font-size: 4rem;
  font-weight: 700;
}
.olimpics .container .title .text::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(90, 141, 255, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.olimpics .container .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1000px) {
  .olimpics .container .content {
    grid-template-columns: 1fr;
    gap: 12rem;
  }
}
.olimpics .container .content .image-col {
  position: relative;
  height: 30rem;
}
.olimpics .container .content .image-col .olimpics-image {
  width: 30rem;
  position: absolute;
  border-radius: 2rem;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .olimpics .container .content .image-col .olimpics-image {
    width: 25rem;
  }
}
.olimpics .container .content .image-col .olimpics-image.olimpics-image-1 {
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%) rotate(10deg);
}
@media screen and (max-width: 1000px) {
  .olimpics .container .content .image-col .olimpics-image.olimpics-image-1 {
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(-10deg);
  }
}
.olimpics .container .content .image-col .olimpics-image.olimpics-image-2 {
  top: 80%;
  left: 60%;
  transform: translate(-50%, -50%) rotate(5deg);
}
@media screen and (max-width: 1000px) {
  .olimpics .container .content .image-col .olimpics-image.olimpics-image-2 {
    top: 75%;
    left: 65%;
  }
}
.olimpics .container .content .image-col .olimpics-image.olimpics-image-3 {
  top: 90%;
  left: 30%;
  transform: translate(-50%, -50%) rotate(-10deg);
}
@media screen and (max-width: 1000px) {
  .olimpics .container .content .image-col .olimpics-image.olimpics-image-3 {
    left: 35%;
  }
}
.olimpics .container .content .text-col .text {
  color: #2E3C63;
  margin-bottom: 5rem;
  text-align: justify;
}
.olimpics .container .content .text-col .button-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .olimpics .container .content .text-col .button-wrapper {
    justify-content: center;
  }
}
.olimpics .container .content .text-col .button-wrapper .button {
  display: flex;
  gap: 1rem;
  background-color: #fe5c45;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.olimpics .container .content .text-col .button-wrapper .button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  background-color: #e7543f;
}
.olimpics .container .content .text-col .button-wrapper .button .button-text {
  color: white;
}
.olimpics .container .content .text-col .button-wrapper .button .button-icon {
  color: white;
}

.franchising {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-bottom: 10rem;
}
.franchising .container {
  padding-right: 8rem;
  padding-left: 8rem;
}
@media screen and (max-width: 1000px) {
  .franchising .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.franchising .container .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
.franchising .container .title .icon {
  width: 6rem;
}
.franchising .container .title .text {
  font-size: 4rem;
  font-weight: 700;
  color: #0c1A40;
}
.franchising .container .title .text::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(144, 238, 144, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.franchising .container .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1000px) {
  .franchising .container .content {
    grid-template-columns: 1fr;
  }
}
.franchising .container .content .image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.franchising .container .content .image-col .image {
  width: 70%;
  border-radius: 2rem;
}
@media screen and (max-width: 1000px) {
  .franchising .container .content .image-col .image {
    width: 90%;
  }
}
.franchising .container .content .text-col {
  padding-top: 5rem;
  width: 90%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .franchising .container .content .text-col {
    margin: auto;
  }
}
.franchising .container .content .text-col .text-background-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  font-size: 45rem;
  color: #b0c9ff;
  opacity: 0.2;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .franchising .container .content .text-col .text-background-icon {
    font-size: 40rem;
  }
}
.franchising .container .content .text-col .text {
  color: #2E3C63;
  text-align: justify;
}

.gallery {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-bottom: 10rem;
}
.gallery .container {
  padding-right: 8rem;
  padding-left: 8rem;
}
@media screen and (max-width: 1000px) {
  .gallery .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.gallery .container .title {
  font-size: 4rem;
  font-weight: 700;
  color: #0c1A40;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 5rem;
}
.gallery .container .title::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(254, 92, 69, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.gallery .container .gallery-images {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 10rem;
}
@media screen and (max-width: 1000px) {
  .gallery .container .gallery-images {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 700px) {
  .gallery .container .gallery-images {
    grid-template-columns: repeat(1, auto);
    gap: 3rem;
  }
}
.gallery .container .gallery-images .gallery-image {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 3rem;
  cursor: pointer;
}
.gallery .modal {
  display: none;
  position: fixed;
  z-index: 3;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}
.gallery .modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 3rem;
}
.gallery .caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
.gallery .modal-content, .gallery #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.gallery .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.gallery .close:hover, .gallery .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .gallery .modal-content {
    width: 100%;
  }
}

.branches {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
  margin-bottom: 10rem;
}
.branches .container {
  padding-right: 8rem;
  padding-left: 8rem;
  padding: 15rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .branches .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.branches .container .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.branches .container .title {
  font-size: 4rem;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 5rem;
  color: #0c1A40;
}
.branches .container .title::after {
  content: "";
  width: 100%;
  height: 1rem;
  background-color: rgba(255, 146, 130, 0.5);
  display: block;
  margin-top: -1.8rem;
  border-radius: 1rem;
}
.branches .container .cards {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 1000px) {
  .branches .container .cards {
    flex-direction: column;
  }
}
.branches .container .cards .card {
  border: 0.7rem solid white;
  border-radius: 2rem;
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: white;
}
.branches .container .cards .card .row {
  display: grid;
  grid-template-columns: 1fr 9fr;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .branches .container .cards .card .row {
    grid-template-columns: 2fr 9fr;
  }
}
.branches .container .cards .card .row .icon-col {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.branches .container .cards .card .row .icon-col .icon {
  font-size: 3.5rem;
  color: white;
}
.branches .container .cards .card .row .address-col .address-title {
  font-size: 3rem;
  font-weight: 700;
}
.branches .container .cards .card .row .address-col .address-text {
  font-size: 1.6rem;
}
.branches .container .cards .card-green {
  background-color: #ACDC3B;
}
.branches .container .cards .card-orange {
  background-color: #FCB736;
}
.branches .container .cards .card-red {
  background-color: #FE5C45;
}

.footer {
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");
}
.footer .container {
  padding: 3rem;
}
@media screen and (max-width: 1000px) {
  .footer .container {
    padding: 1rem;
  }
}
.footer .container .content {
  padding: 3rem;
  padding-top: 4rem;
  border-radius: 4rem;
  background-color: #fe5c45;
}
.footer .container .content .socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  .footer .container .content .socials {
    flex-wrap: wrap;
  }
}
.footer .container .content .socials .icon-wrapper {
  background-color: #ff7d6d;
  padding: 3rem;
  position: relative;
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}
.footer .container .content .socials .icon-wrapper:hover {
  transform: scale(1.2);
}
.footer .container .content .socials .icon-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  font-size: 3rem;
}
.footer .container .content .email {
  display: flex;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  margin: auto;
  color: white;
  margin-bottom: 5rem;
  height: 5rem;
  transition: all 0.3s;
  font-size: 2rem;
}
.footer .container .content .email:hover {
  color: #eee;
  font-size: 2.2rem;
}
.footer .container .content .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ff7d6d;
  padding: 2rem;
  border-radius: 3rem;
  color: white;
}
.footer .container .content .copyright .text {
  font-size: 1.8rem;
}
.footer .container .content .copyright .references {
  display: flex;
  gap: 2rem;
}
.footer .container .content .copyright .references .reference {
  font-size: 1.8rem;
  transition: all 0.3s;
}
.footer .container .content .copyright .references .reference:hover {
  text-decoration: underline;
  transform: scale(1.1);
}/*# sourceMappingURL=index.css.map */