:root {
  --radius: 10px;
  --primary: #031F61;
  --background: #fff;
  --gray-600: #666;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  background-color: var(--background);
}

a {
  text-decoration: none;
  display: inline-block;
}

.swiper-pagination-bullet {
  width: 1.6rem !important;
  height: 1.6rem !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}

.container {
  width: 100%;
  max-width: 131rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-primary {
  padding: 2rem 4.2rem;
  background-color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #031F61;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.btn-primary:hover {
  opacity: 0.6;
}

.btn-secondary {
  padding: 2rem 4.2rem;
  background-color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  color: #031F61;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.btn-secondary:hover {
  opacity: 0.6;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 9rem;
}
.header .logo img {
  max-width: 22rem;
  width: 100%;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .container nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6rem;
}
.header .container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 11.3rem;
}
.header .container nav ul li,
.header .container nav ul a {
  color: #031F61;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
}
.header .container nav ul a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .container nav ul a:hover {
  opacity: 0.6;
}
.header .open {
  display: none;
}
@media (max-width: 1024px) {
  .header .open {
    display: block;
  }
  .header .container {
    position: relative;
  }
  .header .container nav {
    display: none;
  }
  .header .container .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.menu-mobile .overlay {
  position: fixed;
  z-index: 2023;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.menu-mobile .content {
  position: fixed;
  left: -50rem;
  top: 0;
  z-index: 2024;
  border-radius: var(--radius);
  background: #FFF;
  -webkit-box-shadow: 5px 10px 50px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 10px 50px 0px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  max-width: 36.4rem;
  padding: 2rem;
  height: 80vh;
  gap: 2rem;
}
.menu-mobile .content .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu-mobile .content .logo img {
  max-width: 6.8rem;
  width: 100%;
}
.menu-mobile .content nav {
  margin-top: 5.6rem;
}
.menu-mobile .content nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu-mobile .content nav ul li {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #C4C4C4;
}
.menu-mobile .content nav ul li,
.menu-mobile .content nav ul li a {
  color: #031F61;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
}
.menu-mobile .content .btn-primary {
  margin-top: auto;
}
.menu-mobile.active .overlay {
  opacity: 1;
  pointer-events: all;
}
.menu-mobile.active .content {
  left: 0;
  opacity: 1;
  pointer-events: all;
}

.fixed-whats {
  background-color: #fff;
  padding: 1rem;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 50%;
  position: fixed;
  z-index: 2024;
  right: 4rem;
  bottom: 4rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fixed-whats svg {
  width: 100%;
  height: auto;
}
.fixed-whats:hover {
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .fixed-whats {
    width: 5rem;
    height: 5rem;
    right: 2rem;
    bottom: 2rem;
  }
}

.footer {
  padding: 2rem 0rem;
  background: #fff;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .container div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.footer .container div:first-of-type span {
  color: #061163;
  font-weight: 400;
  font-size: 1.4rem;
}
.footer .container div:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5.5rem;
}

@media (max-width: 1024px) {
  .footer .container {
    text-align: center;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer .container div {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.home .s-hero img:last-of-type {
  display: none;
}
.home .s-hero img {
  width: 100%;
}
.home .s-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.home .s-two .container {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.home .s-two .container h2 {
  color: #031F61;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-two .container p {
  margin-top: 1rem;
  color: #031F61;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
}
.home .s-tree {
  background-color: #031F61;
  padding: 10rem 0rem;
}
.home .s-tree .container {
  display: grid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.home .s-tree .container .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 51rem;
}
.home .s-tree .container .text h2 {
  color: #FFF;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 58px;
}
.home .s-tree .container .text p {
  color: #FFF;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 1rem;
}
.home .s-tree .container .text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  margin-top: 5rem;
}
.home .s-tree .container .text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.home .s-tree .container .text ul li span {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 400;
}
.home .s-tree .container .text .btn-primary {
  margin-top: 5rem;
  background-color: #008CFF;
  padding: 1.6rem;
  width: 100%;
}
.home .s-tree .container img {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 70rem;
}
.home .s-four {
  padding: 10rem 0rem;
  background: #F0F3F9;
}
.home .s-four .container {
  text-align: center;
}
.home .s-four .container h2 {
  color: #031F61;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-four .container span {
  margin-top: 1rem;
  color: #031F61;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
}
.home .s-four .container .items {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.home .s-four .container .items .item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .s-four .container .items .item:hover {
  opacity: 0.8;
}
.home .s-five {
  background: url("../assets/bg-footer.png") no-repeat center center;
  background-size: cover;
  padding: 9rem 0rem;
}
.home .s-five .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.home .s-five .container .social {
  width: 100%;
  max-width: 41.7rem;
}
.home .s-five .container .social h2 {
  color: #fff;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-five .container .social span {
  margin-top: 1rem;
  color: #fff;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
}
.home .s-five .container .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  margin-top: 5rem;
}
.home .s-five .container .social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 1rem;
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-five .container .social ul li a.btn-secondary {
  color: #061163;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.home .s-five .container .form {
  background-color: #fff;
  padding: 3rem;
  border-radius: var(--radius);
  width: 100%;
  max-width: 70rem;
}
.home .s-five .container .form label {
  color: #00192D;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
}
.home .s-five .container .form input, .home .s-five .container .form textarea {
  border: none;
  border-radius: var(--radius);
  background-color: #F0F0F0;
  padding-left: 2rem;
  width: 100%;
  margin-top: 1rem;
}
.home .s-five .container .form input {
  height: 4.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home .s-five .container .form input[type=submit] {
  color: #FFF;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  background: #008CFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.home .s-five .container .form input[type=submit]:hover {
  opacity: 0.6;
}
.home .s-five .container .form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.home .s-five .container .form form label:not(:first-of-type) {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .home .s-hero img:first-of-type {
    display: none;
  }
  .home .s-hero img:last-of-type {
    display: block;
  }
  .home .s-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home .s-two .container {
    padding-bottom: 10rem;
    position: initial;
    left: initial;
    top: initial;
    -webkit-transform: initial;
    transform: initial;
    display: initial;
    text-align: center;
  }
  .home .s-two .container h2 {
    font-size: 3rem;
  }
  .home .s-two .container p {
    font-size: 1.4rem;
  }
  .home .s-tree {
    padding: 5rem 0rem;
  }
  .home .s-tree .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4rem;
  }
  .home .s-tree .container .text h2 {
    font-size: 3rem;
    text-align: center;
    line-height: 35px;
  }
  .home .s-tree .container .text p {
    font-size: 1.4rem;
    text-align: center;
    display: block;
  }
  .home .s-tree .container .text ul li span {
    font-size: 1.4rem;
  }
  .home .s-tree .container img {
    max-width: 100%;
  }
  .home .s-four .container h2 {
    font-size: 3rem;
  }
  .home .s-four .container p {
    font-size: 1.4rem;
  }
  .home .s-four .container .items {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home .s-five {
    padding: 15rem 0rem;
  }
  .home .s-five .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
  }
  .home .s-five .container .social {
    text-align: center;
  }
  .home .s-five .container .social h2 {
    font-size: 3rem;
  }
  .home .s-five .container .social p {
    font-size: 1.4rem;
  }
  .home .s-five .container .social ul li a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .home .s-five .container .social ul li a.btn-secondary {
    margin: 0 auto;
  }
}