@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 1.1111111111vw;
}

.container {
  padding: 0 3.75rem;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

main {
  padding-top: 6.25rem;
}

@media (max-width: 992px) {
  .container {
    padding: 0 2.5rem;
  }
  * {
    font-size: 2.0833333333vw;
  }
  main {
    padding-top: 4.0625rem;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 0.9375rem;
  }
  * {
    font-size: 5vw;
  }
  main {
    padding-top: 3rem;
  }
}
body {
  background: #e4e8f0;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer,
header {
  flex: 0 1 auto;
}

main {
  flex: 1 1 auto;
}

.block-blur {
  background: rgba(250, 250, 250, 0.2432745098) !important;
  box-shadow: -3px 3px 30px 0 rgba(58, 84, 153, 0.134901961) !important;
  border-radius: 2.5rem !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

@media (max-width: 992px) {
  .block-blur {
    background: rgba(250, 250, 250, 0.545098) !important;
    border-radius: 1.25rem !important;
  }
}
@media (max-width: 767px) {
  .block-blur {
    box-shadow: -3px 4px 15px 0 rgba(58, 84, 153, 0.1054901961) !important;
    border-radius: 0.625rem !important;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

.header.hide {
  top: -100%;
}

.header__body {
  margin: 0 3.75rem;
  border-radius: 0 0 2.5rem 2.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.header__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.32745098) !important;
  box-shadow: 13px 6px 60px 0 rgba(58, 84, 153, 0.1254901961);
  border-radius: 0 0 2.5rem 2.5rem;
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  z-index: 11;
}

.header__logo {
  z-index: 5;
  display: flex;
  align-items: center;
  z-index: 12;
}

.header__logo a {
  font-size: 2rem;
  color: #2A4280;
}

.header nav {
  z-index: 12;
}

.header__burger {
  display: none;
}

.header ul {
  display: flex;
  text-decoration: none;
}

.header li {
  padding: 1.875rem 0;
  text-decoration: none;
}

.header li:not(:last-child) {
  margin-right: 2.1875rem;
}

.header li a {
  font-size: 1.5rem;
  color: #2A4280;
}

@media (max-width: 992px) {
  .header__body {
    padding: 1.25rem;
    margin: 0 2.5rem;
  }
  .header__body::before {
    border-radius: 0 0 1.25rem 1.25rem;
  }
  .header__logo a {
    font-size: 1.25rem;
  }
  .header li a {
    font-size: 1.5rem;
  }
  .header nav {
    position: fixed;
    top: -120vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #E2E7F3;
    z-index: 10;
    padding-left: 3.75rem;
    padding-top: 5rem;
    transition: all 0.3s;
  }
  .header li {
    padding: 0;
  }
  .header li:not(:last-child) {
    margin: 0 0 1rem 0;
  }
  .header nav.active {
    top: 0;
  }
  .header ul {
    flex-direction: column;
  }
  .header__burger {
    z-index: 99;
    display: block;
    position: relative;
    width: 3.125rem;
    height: 1.5625rem;
    margin-left: 3.125rem;
  }
  .header__burger span {
    position: absolute;
    right: 0;
    top: 0.6rem;
    width: 80%;
    height: 0.125rem;
    background: #0168AA;
  }
  .header__burger::before,
  .header__burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: #0168AA;
  }
  .header__burger::before {
    top: 0;
  }
  .header__burger::after {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .header__body {
    padding: 0.9375rem;
    margin: 0 0.9375rem;
  }
  .header__logo a {
    font-size: 1rem;
  }
  .header li a {
    font-size: 1rem;
  }
  .header__burger {
    width: 1.875rem;
    height: 1.25rem;
    overflow: visible;
    margin-left: 1.5rem;
  }
  .header__body::before {
    border-radius: 0 0 0.625rem 0.625rem;
  }
  .header nav {
    padding-top: 4.4rem;
    padding-left: 1.875rem;
  }
}
/*---------------------- HERO ---------------------------------*/
.hero {
  margin-top: 1.875rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: 0;
  height: 20.3125rem;
  width: 20.3125rem;
  border-radius: 50%;
  background: #3B559A;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 3rem;
  left: 50%;
  height: 9rem;
  width: 9rem;
  border-radius: 50%;
  background: #3B559A;
}

.hero__body {
  position: relative;
  z-index: 9;
  padding: 3.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
}

.hero__content {
  max-width: 40rem;
}

.hero__content h1 {
  color: #2A4280;
  font-size: 3rem;
  font-weight: 700;
}

.hero__content p {
  margin-top: 1.875rem;
  color: #2A4280;
  font-size: 1.5rem;
}

.hero__content a {
  display: inline-block;
  padding: 1rem 3.75rem;
  border: solid 1px #2A4280;
  border-radius: 3.75rem;
  margin-top: 3.75rem;
  color: #2A4280;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .hero__content a:hover {
    color: #fff;
    background: #2A4280;
  }
}
.hero__img img {
  height: 25.9375rem !important;
}

@media (max-width: 992px) {
  .hero {
    margin-top: 1rem;
  }
  .hero__body {
    padding: 1.875rem 1.25rem;
  }
  .hero::before {
    display: none;
  }
  .hero::after {
    bottom: -2rem;
    left: 75%;
    height: 7.25rem;
    width: 7.25rem;
  }
  .hero__content h1 {
    font-size: 2rem;
  }
  .hero__content p {
    margin-top: 1rem;
    font-size: 1.126rem;
  }
  .hero__content a {
    margin-top: 1.875rem;
    font-size: 1.25rem;
    padding: 0.625rem 1.25rem;
  }
  .hero__img {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero__body {
    padding: 1rem 1rem;
  }
  .hero__content h1 {
    line-height: 110%;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .hero__content a {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 1rem;
    padding: 0.425rem 1.25rem;
    width: 100%;
    font-weight: 500;
  }
  .hero__content p {
    font-size: 0.875rem;
  }
  .hero::after {
    top: 4rem;
    left: 81%;
    height: 3.75rem;
    width: 3.75rem;
  }
}
/*------------------------ Carousel ------------------------------*/
.carousel {
  padding-top: 6.25rem;
}

.carousel__body {
  position: relative;
}

.carousel__body::before {
  content: "";
  position: absolute;
  left: 30%;
  top: -2.5rem;
  height: 4.375rem;
  width: 4.375rem;
  border-radius: 50%;
  background: #3B559A;
}

.carousel__content {
  position: relative;
  padding: 1.875rem 2.5rem;
  margin: 0 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carousel__content h2 {
  color: #2A4280;
  font-size: 2.5rem;
  font-weight: 500;
}

.carousel__content p {
  color: #2A4280;
  font-size: 1.25rem;
  max-width: 37.5rem;
}

.carousel__images {
  margin: 2.5rem 0 2.5rem 0;
  overflow: hidden;
}

.images-carousel__body {
  display: flex;
  margin-left: 3.75rem;
  transition: all 0.3s;
}

.images-carousel__body img {
  max-width: none !important;
  height: 21.875rem !important;
  border-radius: 1.25rem !important;
  margin-right: 1.875rem !important;
}

.carousel__control {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  margin: 0 3.75rem;
}

.carousel__dots {
  line-height: 0;
  display: flex;
  align-items: center;
}

.carousel__dots span {
  line-height: 0;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #3B559A;
}

.carousel__dots span:not(:first-child) {
  margin-left: 1.25rem;
}

.carousel__dots span.active {
  background: #6E7381;
}

.carousel__arrows img {
  width: 1.25rem;
  height: 1.75rem;
}

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

.carousel__arrows button:nth-child(1) {
  margin-right: 1.875rem;
}

@media (max-width: 992px) {
  .carousel {
    padding-top: 3.765rem;
  }
  .carousel__content {
    margin: 0 2.5rem;
    flex-direction: column;
    padding: 1.875rem 1.25rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .carousel__content h2 {
    font-size: 1.75rem;
    text-align: left;
  }
  .carousel__content p {
    margin-top: 1rem;
    font-size: 1.126rem;
    width: 100%;
    text-align: left;
  }
  .carousel__images {
    margin: 1.875rem 0;
  }
  .images-carousel__body img {
    height: 15.625rem !important;
    border-radius: 1.25rem !important;
  }
  .images-carousel__body {
    margin-left: 2.5rem;
  }
  .carousel__control {
    padding: 1.25rem 1.25rem;
    margin: 0 2.5rem;
  }
}
@media (max-width: 767px) {
  .carousel__arrows button:nth-child(1) {
    margin-right: 1rem;
  }
  .carousel {
    padding-top: 3.125rem;
  }
  .carousel#AboutUs {
    padding-top: 1.875rem;
  }
  .carousel__body::before {
    top: -1.125rem;
    height: 2.5rem;
    width: 2.5rem;
  }
  .carousel__content {
    margin: 0 1rem;
    flex-direction: column;
    padding: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .carousel__content h2 {
    font-size: 1.25rem;
    text-align: left;
  }
  .carousel__content p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
  .carousel__images {
    margin: 1rem 0 0.725rem 0;
  }
  .images-carousel__body img {
    height: 15.625rem !important;
  }
  .images-carousel__body {
    margin-left: 1rem;
    align-items: center;
  }
  .images-carousel__body img {
    height: auto !important;
    width: calc(100vw - 2rem) !important;
    border-radius: 0.625rem !important;
  }
  .carousel__control {
    padding: 0.625rem 1rem;
    margin: 0 1rem;
  }
  .carousel__dots span {
    width: 0.75rem;
    height: 0.75rem;
  }
  .carousel__dots span:not(:first-child) {
    margin-left: 0.625rem;
  }
  .carousel__arrows img {
    width: 0.625rem;
    height: 1.125rem;
  }
}
/*------------------------------ Serveces -------------------------------*/
.services {
  padding-top: 6.25rem;
}

.services__body h2 {
  font-size: 4rem;
  text-align: center;
  color: #2A4280;
  margin-bottom: 3.75rem;
  font-weight: 500;
}

.services__content {
  display: flex;
}

.services__lists:nth-child(1) {
  margin-right: 1.875rem;
}

.lists-services__title {
  padding: 1.25rem 2.5rem;
  margin-bottom: 1.875rem;
}

.lists-services__title h3 {
  color: #2A4280;
  font-size: 1.75rem;
  font-weight: 500;
}

.lists-services__list {
  flex: 0 1 calc(50% - 0.9375rem);
  padding: 2.5rem;
  color: #ffffff;
  background: #3B559A;
  border-radius: 2.5rem;
  font-weight: 500;
}

.lists-services__list > ul > li {
  font-size: 1.25rem;
  padding-left: 2.5rem;
  position: relative;
}

.lists-services__list > ul > li:not(:last-child) {
  margin: 0 0 1rem 0;
}

.lists-services__list > ul > li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(70%);
  border-radius: 50%;
}

.lists-services__list > ul > li ul:not(:last-child) {
  margin-bottom: 1rem;
}

.lists-services__list > ul > li li {
  font-size: 1.125rem;
  position: relative;
  padding-left: 1.5625rem;
}

.lists-services__list > ul > li li {
  margin-top: 0.625rem;
}

.lists-services__list > ul > li li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border: #fff solid 1px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(70%);
  border-radius: 50%;
}

@media (min-width: 992px) {
  .services__lists {
    flex: 1 0 calc(50% - 0.975rem);
    display: flex;
    flex-direction: column;
  }
  .lists-services__list {
    flex: 1 1 auto;
  }
}
@media (max-width: 992px) {
  .services {
    padding-top: 3.765rem;
  }
  .services__body h2 {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
  .lists-services__title {
    margin-bottom: 1.25rem;
  }
  .services__content {
    flex-direction: column;
  }
  .services__lists:nth-child(1) {
    margin: 0 0 1.875rem 0;
  }
  .lists-services__title {
    padding: 1.25rem;
  }
  .lists-services__title h3 {
    font-size: 1.25rem;
  }
  .lists-services__list {
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
  .lists-services__list > ul > li {
    font-size: 1.125rem;
    padding-left: 1.5rem;
  }
  .lists-services__list > ul > li:not(:last-child) {
    margin: 0 0 0.875rem 0;
  }
  .lists-services__list > ul > li::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    transform: translateY(70%);
  }
  .lists-services__list > ul > li ul:not(:last-child) {
    margin-bottom: 1rem;
  }
  .lists-services__list > ul > li li {
    font-size: 1rem;
    position: relative;
    padding-left: 1.5625rem;
  }
  .lists-services__list > ul > li li:not(:last-child) {
    margin-top: 0.625rem;
  }
  .lists-services__list > ul > li li::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media (max-width: 767px) {
  .services {
    padding-top: 3.125rem;
  }
  .services__body h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .lists-services__title {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .lists-services__title h3 {
    font-size: 1.125rem;
  }
  .lists-services__list {
    border-radius: 0.625rem;
    padding: 1rem;
  }
  .lists-services__list > ul > li {
    font-size: 0.85rem;
  }
  .lists-services__list > ul > li li {
    font-size: 0.875rem;
    padding-left: 1.125rem;
  }
  .lists-services__list > ul > li li:not(:last-child) {
    margin-top: 0.5rem;
  }
  .lists-services__list > ul > li:not(:last-child) {
    margin: 0 0 0.625rem 0;
  }
  .lists-services__list > ul > li li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
  }
  .lists-services__list > ul > li::before {
    transform: translateY(50%);
  }
}
/*-------------------- Transparency ------------------------*/
.transparency {
  padding-top: 2.5rem;
}

.transparency h2 {
  font-size: 4rem;
  font-weight: 500;
  width: 100%;
  color: #2A4280;
  text-align: center;
  margin-bottom: 3.75rem;
}

.transparency h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #2A4280;
}

.transparency p {
  font-size: 1.25rem;
  color: #2A4280;
}

.transparency__text {
  margin-top: 1.875rem;
  display: flex;
}

.transparency__text-left {
  flex: 0 1 calc(50% - 0.9375rem);
  margin-right: 1.875rem;
}

.transparency__text-right {
  flex: 0 1 calc(50% - 0.9375rem);
}

.transparency__button {
  display: inline-block;
  text-align: center;
  font-size: 1.625rem;
  color: #2A4280;
  width: 100%;
  margin-top: 3.875rem;
  padding: 1.25rem !important;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .transparency__button:hover {
    background: #2A4280 !important;
    color: #fff;
  }
}
@media (max-width: 992px) {
  
  .transparency h2 {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
  .transparency h3 {
    font-size: 1.25rem;
  }
  .transparency p {
    font-size: 1rem;
  }
  .transparency__button {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
  .transparency__text {
    margin-top: 1.25rem;
  }
}
@media (max-width: 767px) {
  .transparency__text {
    margin-top: 1rem;
    flex-direction: column;
  }
  .transparency {
    padding-top: 2rem;
  }
  .transparency h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .transparency h3 {
    font-size: 1.125rem;
  }
  .transparency p {
    font-size: 0.875rem;
  }
  .transparency__button {
    font-size: 0.985rem;
    margin-top: 1.15rem;
    padding: 1rem !important;
  }
  .transparency__text-left {
    margin: 0 0 1rem;
  }
}
/*----------------- CONTACT ---------------------------*/
.contact {
  padding-top: 6.25rem;
}

.contact h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #2A4280;
  margin-bottom: 3.75rem;
}

.contact__content h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #2A4280;
}

.contact__content p {
  font-size: 1.25rem;
  color: #2A4280;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  max-width: 36.25rem;
}

.contact__content span {
  font-size: 1.5rem;
  color: #2A4280;
  display: block;
}

.contact__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact h2 {
  flex: 0 1 100%;
}

.contact__content {
  flex: 0 1 calc(50% - 0.975rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__form {
  flex: 0 1 calc(50% - 0.975rem);
}

.form-contact__body {
  position: relative;
  z-index: 8;
  padding: 2.5rem;
}

.contact__form form {
  width: 100%;
}

.contact__form input {
  padding: 1rem;
  border: none;
  border-bottom: 1px solid #2A4280;
  color: #2A4280;
  background: none;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  outline: none;
}

.contact__form input::-moz-placeholder {
  color: #2A4280;
  font-size: 1.25rem;
}

.contact__form input::placeholder {
  color: #2A4280;
  font-size: 1.25rem;
}

.contact__form span {
  display: block;
  width: 100%;
}

.contact__form input {
  width: 100%;
}

.contact__form input[type=submit] {
  float: right;
  margin-bottom: 0;
  border: none;
  font-size: 1.5rem;
  padding: 0;
  color: #2A4280;
  width: auto;
}

.contact__form {
  position: relative;
}

.contact__form::after,
.contact__form::before {
  content: "";
  position: absolute;
  width: 6.25rem;
  height: 6.25rem;
  background: #3B559A;
  border-radius: 50%;
}

.contact__form::after {
  top: -2.5rem;
  left: 75%;
}

.contact__form::before {
  bottom: -2.5rem;
  left: 15%;
}

.wpcf7-not-valid-tip {
  margin-top: -1.25rem;
  margin-bottom: 1rem;
}

span.wpcf7-spinner {
  width: 24px;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  padding: 0;
  color: #3B559A;
}

@media (min-width: 992px) {
  .contact__form input[type=submit] {
    cursor: pointer;
    transition: all 0.3s;
  }
  .contact__form input[type=submit]:hover {
    color: #49acea;
    transform: scale(1.05);
  }
}
@media (max-width: 992px) {
  .contact {
    padding-top: 3.75rem;
  }
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
  .contact__content h3 {
    font-size: 1.25rem;
  }
  .contact__content p {
    font-size: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .contact__content span {
    font-size: 1.125rem;
  }
  .form-contact__body {
    padding: 1.25rem;
  }
  .contact__form input {
    padding: 0.925rem;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: #3B559A;
  }
  .contact__form input {
    outline: none;
  }
  .contact__form input::-moz-placeholder {
    color: #3B559A;
    font-size: 1rem;
  }
  .contact__form input::placeholder {
    color: #3B559A;
    font-size: 1rem;
  }
  .contact__form input[type=submit] {
    font-size: 1.25rem;
  }
  .contact__form::after, .contact__form::before {
    content: "";
    width: 3.75rem;
    height: 3.75rem;
  }
  .contact__form::after {
    top: -1.5rem;
    left: 75%;
  }
  .contact__form::before {
    bottom: -1.5rem;
    left: 15%;
  }
  .wpcf7-not-valid-tip {
    margin-top: -1.25rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-top: 3.125rem;
  }
  .contact__content,
  .contact__form {
    flex: 0 1 100%;
  }
  .contact__form {
    margin-top: 1.25rem;
  }
  .form-contact__body {
    padding: 1rem;
  }
  .contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .contact__content h3 {
    font-size: 1.125rem;
  }
  .contact__content p {
    font-size: 0.875rem;
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }
  .contact__content span {
    font-size: 1rem;
  }
  .contact__form input {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
  .contact__form input::-moz-placeholder {
    font-size: 0.875rem;
  }
  .contact__form input::placeholder {
    font-size: 0.875rem;
  }
  .contact__form input[type=submit] {
    font-size: 0.975rem;
  }
  .wpcf7-not-valid-tip {
    margin-top: -0.625rem;
    margin-bottom: 1rem;
  }
}
/*--------------------- Footer --------------------*/
.footer {
  padding-top: 6.25rem;
}

.footer__body {
  display: flex;
  justify-content: space-between;
  padding: 1.875rem 2.5rem;
  border-radius: 2.5rem 2.5rem 0 0 !important;
}

.footer__body span {
  font-size: 1.75rem;
  color: #2A4280;
}

.footer__body span:nth-child(2) {
  transform: translateX(75%);
}

@media (max-width: 992px) {
  .footer {
    padding-top: 3.25rem;
  }
  .footer__body {
    padding: 1.25rem;
  }
  .footer__body span {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 2.5rem;
  }
  .footer__body {
    border-radius: 0.625rem 0.625rem 0 0 !important;
    padding: 1rem;
  }
  .footer__body span {
    font-size: 0.975rem;
  }
  .footer__body span:nth-child(2) {
    transform: translateX(0);
  }
  .footer__body span:nth-child(3) {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */