/* use rems for new browsers and px for legacy browsers */
/* load different types of typographies downloaded from Google Fonts and hosted locally in fonts folder */
/* use this with Google fonts NOT variable -review that file names match */
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito/static/Nunito-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito/static/Nunito-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito/static/Nunito-Black.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 900;
}
/* use this with Google fonts NOT variable -review that file names match */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/static/Montserrat-Black.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 900;
}
/* use this with Google fonts NOT variable -review that file names match */
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow/Barlow-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 700;
}
/* use this with Google fonts NOT variable -review that file names match */
@font-face {
  font-family: "BarlowCondensed";
  src: url("../fonts/BarlowCondensed/BarlowCondensed-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
  font-weight: 700;
}
html {
  font-size: 10px;
}

body {
  font-size: 18px;
  font-size: 1.8rem;
}

body, h1, h2, ul, p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", arial, "sans-serif";
  font-weight: 400;
  font-display: optional;
  overflow-x: hidden;
}
body strong {
  font-weight: 800;
}

img {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.d-none {
  display: none !important;
}

.up {
  position: sticky;
  top: 99%;
  z-index: 10;
}
.up img {
  width: unset;
  position: absolute;
  cursor: pointer;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.up img:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

header {
  background: #4B6891;
}
header .bg-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #c00069;
  opacity: 0.7;
}
@media (min-width: 992px) and (max-width: 1549px) {
  header .bg-nav {
    height: 90px;
  }
}
@media (min-width: 1550px) {
  header .bg-nav {
    height: 100px;
  }
}
header > nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 1.5rem;
  z-index: 100;
  position: fixed;
  top: 0;
  height: 32px;
  background: #FFFFFF;
  width: calc(100% - 68px);
  max-width: 100%;
  left: inherit;
  padding: 40px 40px 34px;
  -webkit-transform: inherit;
          transform: inherit;
}
@media (min-width: 992px) {
  header > nav {
    display: none;
  }
}
header > nav .logo img {
  width: 293px;
  height: 32px;
}
@media (max-width: 575px) {
  header > nav .logo img {
    max-width: 240px;
  }
}
header > nav #hamburguesa {
  display: block;
  cursor: pointer;
  z-index: 1;
}
header > nav #hamburguesa .menu-lines .lines {
  width: 37.98px;
  margin-bottom: 6.66px;
  height: 4px;
  background: #2a4373;
  cursor: pointer;
}
header > nav #hamburguesa .menu-lines .lines:nth-last-child(1) {
  margin-bottom: 0;
}
header > nav #hamburguesa.active .menu-lines .lines {
  background: #FFFFFF;
}
header > nav #hamburguesa.active .menu-lines .lines:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header > nav #hamburguesa.active .menu-lines .lines:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: -10px;
}
header > nav #hamburguesa.active .menu-lines .lines:nth-last-child(1) {
  display: none;
}
header > nav .menu {
  display: none;
}
header > nav .menu.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
}
header > nav .menu.active::before {
  content: "";
  background-image: url("../media/rectangulo-menu.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  z-index: 12;
  width: 250%;
  height: 250%;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
}
header > nav .menu.active ul {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  max-width: 286px;
  width: 100%;
}
header > nav .menu.active li {
  text-align: center;
  padding: 35px 0;
  border-bottom: 1px solid #FFFFFF;
  width: 100%;
}
header > nav .menu.active li:nth-last-child(1) {
  border-bottom: 0;
}
header > nav .menu.active li a {
  font: normal normal 700 3.9rem/4rem "BarlowCondensed";
  letter-spacing: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}

.header {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 56.25%;
  top: 0;
  background: url("../media/Irene-paredes-header-desktop.webp") no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .header {
    top: 0;
    margin-top: 106px;
    z-index: 10;
  }
}
.header nav {
  max-width: 1920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 1.5rem;
  width: calc(100% - 272px);
  position: absolute;
  left: 50%;
  top: 21px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 1549px) {
  .header nav {
    max-width: 1024px;
    width: calc(100% - 112px);
  }
}
@media (max-width: 991px) {
  .header nav {
    display: none;
  }
}
.header nav .logo img {
  margin-top: 25px;
  width: 381px;
  height: auto;
  margin-top: 12px;
}
@media (max-width: 1549px) {
  .header nav .logo img {
    width: 296px;
    height: 32px;
  }
}
.header nav .menu {
  list-style: none;
}
.header nav .menu li {
  display: inline-block;
  margin-left: 29px;
}
@media (max-width: 1549px) {
  .header nav .menu li {
    margin-left: 14px;
  }
}
.header nav .menu li a {
  color: #FFFFFF;
  text-align: center;
  font: normal normal 900 1.8rem/1 "Montserrat";
  letter-spacing: 0;
  text-decoration: none;
  position: relative;
  margin-top: 30px;
  display: block;
}
@media (max-width: 1549px) {
  .header nav .menu li a {
    font: normal normal 900 1.2rem/1 "Montserrat";
  }
}
.header nav .menu li a:hover {
  border-bottom: 3px solid #FFFFFF;
  padding-bottom: 7.5px;
}
@media (max-width: 1549px) {
  .header nav .menu li a:hover {
    padding-bottom: 2.93px;
    border-bottom: 2px solid #FFFFFF;
  }
}
.header nav .menu li a:hover::after {
  content: "";
  background-image: url("../media/iconoEscudo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 17px;
  height: 22px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -30px;
}
@media (max-width: 1549px) {
  .header nav .menu li a:hover::after {
    width: 10px;
    height: 12px;
    top: -20px;
  }
}
.header .header-section .wrapper-header {
  position: absolute;
  z-index: 4;
  top: 51%;
  max-width: 1920px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 272px);
}
@media (max-width: 1549px) {
  .header .header-section .wrapper-header {
    max-width: 1024px;
    width: calc(100% - 112px);
    top: inherit;
    bottom: -15px;
  }
}
@media (max-width: 991px) {
  .header .header-section .wrapper-header {
    position: inherit;
    top: inherit;
    left: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    bottom: inherit;
    width: auto;
    max-width: 100%;
  }
}
.header .header-section .wrapper-header .title-header {
  text-align: center;
  font: normal normal 700 8rem/1 "BarlowCondensed", Arial;
  color: #FFFFFF;
  text-shadow: -3px 3px 0px #641c82;
  text-transform: uppercase;
  opacity: 1;
}
.header .header-section .wrapper-header .title-header.none-mobile {
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 992px) and (max-width: 1549px) {
  .header .header-section .wrapper-header .title-header.none-mobile {
    line-height: 10rem;
    max-width: 650px;
  }
}
@media (max-width: 991px) {
  .header .header-section .wrapper-header .title-header.none-mobile {
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .header .header-section .wrapper-header .title-header.none-mobile {
    margin-top: -155px;
  }
}
@media (max-width: 575px) {
  .header .header-section .wrapper-header .title-header.none-mobile {
    margin-top: -90px;
  }
}
@media (max-width: 991px) {
  .header .header-section .wrapper-header .title-header {
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .header .header-section .wrapper-header .title-header {
    margin-top: -155px;
  }
}
@media (max-width: 575px) {
  .header .header-section .wrapper-header .title-header {
    margin-top: -90px;
  }
}
@media (max-width: 1549px) {
  .header .header-section .wrapper-header .title-header {
    font: normal normal bold 6.5rem/7.6rem "BarlowCondensed", Arial;
  }
}
.header .header-section .wrapper-header .title-header h2 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #c00069;
}
.header .header-section .wrapper-header .img-madres-y-defensas {
  text-align: center;
}
.header .header-section .wrapper-header .img-madres-y-defensas img {
  width: 520px;
  height: 496px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -100px;
  margin-bottom: -160px;
}
@media (max-width: 1549px) {
  .header .header-section .wrapper-header .img-madres-y-defensas img {
    -o-object-fit: inherit;
       object-fit: inherit;
    width: 390px;
    height: 376px;
    margin-top: -55px;
    margin-bottom: -118px;
  }
}
@media (max-width: 991px) {
  .header .header-section .wrapper-header .player-header {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.header .header-section .wrapper-header .player-header svg {
  cursor: pointer;
  width: 145px;
  height: 44px;
}
@media (max-width: 1549px) {
  .header .header-section .wrapper-header .player-header svg {
    width: 124px;
    height: 24px;
  }
}
.header .header-section .wrapper-header .player-header svg:nth-last-child(1) {
  display: none;
}
@media (max-width: 991px) {
  .header .header-section .wrapper-header .player-header svg {
    width: 66px;
    height: 66px;
  }
  .header .header-section .wrapper-header .player-header svg:nth-last-child(1) {
    display: block;
  }
  .header .header-section .wrapper-header .player-header svg:nth-child(1) {
    display: none;
  }
}
.header iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
}

.diagonal-producto {
  position: relative;
}
.diagonal-producto::before {
  content: "";
  background-image: url("../media/rectanguloDegradado1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -33vw;
  bottom: 0;
  z-index: 1;
  width: 110vw;
}
@media (max-width: 2100px) {
  .diagonal-producto::before {
    top: -450px;
    width: 100%;
  }
}
@media (max-width: 1549px) {
  .diagonal-producto::before {
    bottom: -60px;
  }
}
@media (max-width: 991px) {
  .diagonal-producto::before {
    bottom: -225px;
  }
}
.diagonal-producto .mobile-title {
  display: none;
  position: relative;
  z-index: 10;
  padding: 0 39px;
}
@media (max-width: 991px) {
  .diagonal-producto .mobile-title {
    display: block;
  }
}
.diagonal-producto .mobile-title .title-header {
  text-align: center;
  font: normal normal 700 4.4rem/1 "BarlowCondensed", Arial;
  color: #FFFFFF;
  text-shadow: -2px 2px 0px #641c82;
  text-transform: uppercase;
  opacity: 1;
  margin-top: -95px;
  z-index: 11;
  position: relative;
}
.diagonal-producto .mobile-title .title-header h2 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #c00069;
}
@media (min-width: 768px) and (max-width: 991px) {
  .diagonal-producto .mobile-title .title-header {
    max-width: 650px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .diagonal-producto .mobile-title .title-header {
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .diagonal-producto .mobile-title .title-header {
    margin-top: -155px;
  }
}
@media (max-width: 575px) {
  .diagonal-producto .mobile-title .title-header {
    margin-top: -90px;
  }
}
.diagonal-producto .producto-section {
  max-width: 998px;
  width: calc(100% - 461px);
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 12;
  padding: 106px 0 51px;
}
@media (max-width: 1549px) {
  .diagonal-producto .producto-section {
    max-width: 582px;
    width: calc(100% - 221px);
    padding: 64px 0 23px;
  }
}
@media (max-width: 991px) {
  .diagonal-producto .producto-section {
    padding: 0;
    width: calc(100% - 76px);
  }
}
.diagonal-producto .producto-section .info-mobile {
  display: none;
}
@media (max-width: 991px) {
  .diagonal-producto .producto-section .info-mobile {
    display: block;
  }
}
.diagonal-producto .producto-section .info-mobile .img-madres-y-defensas {
  margin-top: -75px;
  margin-bottom: -65px;
}
.diagonal-producto .producto-section .info-mobile .img-madres-y-defensas img {
  width: 456px;
  height: 438px;
}
@media (max-width: 699px) {
  .diagonal-producto .producto-section .info-mobile .img-madres-y-defensas img {
    width: 100%;
    max-width: 87vw;
    height: auto;
    padding: 25px 0;
  }
}
.diagonal-producto .producto-section .wrapper-producto .wrapper-text p {
  text-align: center;
  font: normal normal 500 2rem/3.4rem "Montserrat";
  letter-spacing: 0.3px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media (max-width: 1549px) {
  .diagonal-producto .producto-section .wrapper-producto .wrapper-text p {
    font: normal normal 500 1.4rem/2.4rem "Montserrat";
    letter-spacing: 0.21px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .diagonal-producto .producto-section .wrapper-producto .wrapper-text p {
    text-align: left;
    font: normal normal 500 1.8rem/1.4em "Montserrat";
    letter-spacing: 0;
    margin-bottom: 55px;
  }
}
.diagonal-producto .producto-section .wrapper-producto .wrapper-text p:nth-last-child(1) {
  margin-bottom: 83px;
}
@media (max-width: 1549px) {
  .diagonal-producto .producto-section .wrapper-producto .wrapper-text p:nth-last-child(1) {
    margin-bottom: 59px;
  }
}

.diagonal-producto .producto-section .wrapper-producto strong{
  font-weight: 700;
}

.diagonal-producto .producto-section .wrapper-producto .wrapper-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 719px;
}
@media (max-width: 1549px) {
  .diagonal-producto .producto-section .wrapper-producto .wrapper-image img {
    width: 562px;
  }
}
@media (max-width: 991px) {
  .diagonal-producto .producto-section .wrapper-producto .wrapper-image img {
    width: 100%;
    height: auto;
  }
}

.defender-section {
  max-width: 1920px;
  width: calc(100% - 272px);
  margin: 0 auto;
}
@media (max-width: 1549px) {
  .defender-section {
    max-width: 912px;
    width: calc(100% - 112px);
    margin: 22px auto 0;
  }
}
@media (max-width: 991px) {
  .defender-section {
    margin: 55px auto 80px;
    width: calc(100% - 50px);
    max-width: 100%;
    position: relative;
    z-index: 2;
    scroll-margin-top: 100px;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.defender-section .wrapper-defender .wrapper-element-defender:nth-child(1) {
  margin-bottom: 40px;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender:nth-child(1) {
    margin-bottom: 23px;
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender:nth-child(1) {
    margin-bottom: 78px;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender:nth-child(1) .box-defender .title-defender, .defender-section .wrapper-defender .wrapper-element-defender:nth-child(1) .box-defender .name-defender, .defender-section .wrapper-defender .wrapper-element-defender:nth-child(1) .box-defender .text-defender {
  padding-left: 17.5px;
  padding-right: 12.5px;
}
.defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender .box-defender {
  padding: 36px 116px 28px 109px;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender .box-defender {
    padding: 22px 47px 32px 45px;
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender .box-defender {
    padding: 0;
  }
  .defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender .box-defender .title-defender {
    padding-left: 30px;
    padding-right: 6px;
  }
  .defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender .box-defender .name-defender, .defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .wrapper-info-defender .box-defender .text-defender {
    padding-left: 15px;
    padding-right: 12.5px;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender:nth-last-child(1) .image-defender {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender {
  padding: 36px 82px 28px;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender {
    padding: 0;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .title-defender {
  text-align: left;
  font: normal normal 700 5.6rem/9rem "BarlowCondensed";
  letter-spacing: 0;
  color: #FFFFFF;
  text-shadow: -3px 3px 0px #641c82;
  text-transform: uppercase;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .title-defender {
    font: normal normal bold 3.1rem/4.5rem "BarlowCondensed";
    text-shadow: -2px 2px 0px #641C82;
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .title-defender {
    font: normal normal bold 3.6rem/5.1rem "BarlowCondensed";
    position: relative;
    z-index: 2;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .title-defender h2 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #c00069;
  margin-bottom: 11px;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .title-defender h2 {
    margin-bottom: 4px;
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .title-defender h2 {
    margin-bottom: 0;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .name-defender h3 {
  text-align: left;
  font: normal normal 700 5rem/5rem "BarlowCondensed";
  letter-spacing: 0;
  color: #641c82;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2px;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .name-defender h3 {
    font: normal normal 700 3.2rem/5rem "BarlowCondensed";
    margin-bottom: 0;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .text-defender p {
  text-align: left;
  font: normal normal 700 2.4rem/2.9rem "BarlowCondensed";
  letter-spacing: 0;
  color: #641c82;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .wrapper-info-defender .box-defender .text-defender p {
    font: normal normal 700 1.4rem/1.7rem "BarlowCondensed";
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .image-defender {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% + 15px);
            flex: 0 0 calc(50% + 15px);
    max-width: calc(50% + 15px);
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender {
    display: block;
    position: relative;
    top: -20px;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender img {
    width: 100%;
    height: auto;
  }
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender .video-play-icon-sibling svg {
    width: 66px;
    height: 66px;
  }
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender .name-defender h3 {
    text-align: left;
    font: normal normal 700 5rem/5rem "BarlowCondensed";
    letter-spacing: 0;
    color: #641c82;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0px;
    font: normal normal 700 3.9rem/5rem "BarlowCondensed";
  }
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender .text-defender p {
    text-align: left;
    letter-spacing: 0;
    color: #641c82;
    text-transform: uppercase;
    margin-bottom: 0;
    font: normal normal 700 2.2rem/2.6rem "BarlowCondensed";
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .image-defender img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 812px;
  height: 457px;
}
@media (max-width: 1549px) {
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender img {
    width: 468px;
    height: 263px;
    border-radius: 5px;
  }
}
@media (max-width: 991px) {
  .defender-section .wrapper-defender .wrapper-element-defender .image-defender img {
    width: 100%;
    height: 263px;
    display: block;
    margin-bottom: 22px;
  }
}
.defender-section .wrapper-defender .wrapper-element-defender .image-defender .video-play-icon-sibling {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.defender-section .wrapper-defender .wrapper-element-defender .image-defender .video-play-icon-sibling svg {
  cursor: pointer;
  width: 145px;
  height: 44px;
}
.defender-section .wrapper-defender .wrapper-element-defender .image-defender iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.diagonal-nuestros-productos {
  position: relative;
  padding: 130px 0 366px;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos {
    padding: 77px 0 189px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos {
    padding: 0 0 167px;
  }
}
.diagonal-nuestros-productos::before {
  content: "";
  background-image: url("../media/rectanguloDegradado1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  bottom: -80px;
  z-index: 1;
  width: 110vw;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos::before {
    top: -209px;
    bottom: -272px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos::before {
    top: -829px;
    bottom: -854px;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section {
  max-width: 1278px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section {
    max-width: 950px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section {
    max-width: calc(100% - 38px);
    scroll-margin-top: 150px;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .image-defendiendo-nuestros-productos {
  margin-bottom: 77px;
  text-align: center;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .image-defendiendo-nuestros-productos {
    margin-bottom: 33px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .image-defendiendo-nuestros-productos {
    margin-bottom: 35px;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .image-defendiendo-nuestros-productos img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 275px;
  height: 208px;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .image-defendiendo-nuestros-productos img {
    width: 177px;
    height: 134px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .image-defendiendo-nuestros-productos img {
    width: 216px;
    height: 163px;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .title-nuestros-productos h2 {
  text-align: center;
  font: normal normal 700 4rem/5rem "Barlow";
  letter-spacing: 0;
  color: #FFFFFF;
  margin-bottom: 70px;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .title-nuestros-productos h2 {
    font: normal normal 700 2.3rem/5rem "Barlow";
    margin-bottom: 33px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .title-nuestros-productos h2 {
    font: normal normal 700 3.9rem/4.6rem "Barlow";
    margin-bottom: 72px;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 65px;
  padding: 0 75px;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos {
    padding: 0;
    max-width: 629px;
    margin: 0 auto;
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
    row-gap: 70px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos {
    gap: 0;
    padding: 0;
    max-width: 100%;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3% - 44px);
          flex: 0 0 calc(33.3% - 44px);
  max-width: calc(33.3% - 44px);
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 24px);
            flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 80px;
  }
}
.image-producto img{
  display: block;
  margin: 0 auto 1.5rem auto;
}
.producto-nuestros-productos:last-child .title-producto:after{
  display: none;
}
@media (max-width: 1549px){
  .producto-nuestros-productos:nth-child(2) .title-producto:after{
    display: none;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .title-producto{
  position: relative;
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .title-producto::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -32.5px;
  width: 2px;
  background: #FFFFFF;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .title-producto::after {
    right: -10px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .title-producto::after {
    display: none;
  }
  .cookies-message{
    font-size:1.3rem;
    line-height:1.4em;
  }
  .cookies-message a.button--secondary{
    font-size:1.5rem;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .title-producto h3 {
  font: normal normal bold 2.9rem/3rem "Montserrat";
  letter-spacing: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-top: 0;
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos:nth-child(2) .title-producto h3 {
  max-width: 300px;
}

@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .title-producto h3 {
    font: normal normal bold 1.7rem/2.1rem "Montserrat";
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .title-producto h3 {
    font: normal normal bold 3rem/1.2em "Montserrat";
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .description-producto {
  min-height: 220px;
  margin-bottom: 30px;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .description-producto {
    margin-bottom: 27px;
    min-height: 172px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .description-producto {
    margin-bottom: 40px;
    min-height: auto;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .description-producto p {
  font: normal normal 500 1.7rem/2.2rem "Montserrat";
  letter-spacing: 0;
  color: #FFFFFF;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .description-producto p {
    font: normal normal 500 1.4rem/1.9rem "Montserrat";
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .description-producto p {
    font: normal normal 500 1.8rem/1.4em "Montserrat";
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .link-producto a {
  display: block;
  padding: 7.5px;
  background: #FFFFFF;
  color: #c00069;
  font: normal normal 700 1.6rem/3.5rem "Montserrat";
  text-align: center;
  border-radius: 40px;
  min-width: 206px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-decoration: none;
}
@media (max-width: 1549px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .link-producto a {
    padding: 5px;
    min-width: 147px;
    border-radius: 21px;
    font: normal normal 700 1.4rem/3.5rem "Montserrat";
  }
}
@media (max-width: 991px) {
  .diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .link-producto a {
    padding: 14px 60px;
    min-width: inherit;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 40px;
    font: normal normal 700 1.8rem/1.2em "Montserrat";
    margin: 0 auto;
  }
}
.diagonal-nuestros-productos .nuestros-productos-section .wrapper-nuestros-productos .wrapper-productos-nuestros-productos .producto-nuestros-productos .link-producto a:hover {
  background: #641c82;
  color: #FFFFFF;
}

.ordesa-section {
  max-width: 1920px;
  width: calc(100% - 272px);
  margin: -215px auto 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1549px) {
  .ordesa-section {
    margin: -129px auto 0;
    max-width: 1275px;
    width: calc(100% - 57px);
  }
}
@media (max-width: 991px) {
  .ordesa-section {
    margin: -90px auto 0;
    max-width: 100%;
    width: calc(100% - 76px);
  }
}
.ordesa-section .wrapper-ordesa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 1549px) {
  .ordesa-section .wrapper-ordesa {
    gap: 11px;
  }
}
@media (max-width: 991px) {
  .ordesa-section .wrapper-ordesa {
    gap: 25px;
  }
}
.ordesa-section .wrapper-ordesa .item-ordesa {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 12px);
          flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
  position: relative;
  border-radius: 34px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 26px;
  overflow: hidden;
  min-height: 400px;
  background: #98D3D1 url("../media/imagenOrdesaKids.webp") right bottom no-repeat;
  background-size: 64%;
}
@media (max-width: 1549px) {
  .ordesa-section .wrapper-ordesa .item-ordesa {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 6px);
            flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
}
@media (max-width: 991px) {
  .ordesa-section .wrapper-ordesa .item-ordesa {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .ordesa-section .wrapper-ordesa .item-ordesa {
    min-height: 262px;
    background-size: contain;
  }
}
.ordesa-section .wrapper-ordesa .item-ordesa p {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Nunito";
  line-height: 1.2em;
  color: #2a4373;
  margin: 13px 0 9px 0;
  max-width: 250px;
}
.ordesa-section .wrapper-ordesa .item-ordesa .legal-wrapper {
  font-size: 13px;
  padding-top: 60px;
  color: #2a4373;
}
.ordesa-section .wrapper-ordesa .item-ordesa .item-ordesa__cta {
  display: inline-block;
  padding: 5px 40px;
  background: #2a4373;
  color: #FFFFFF;
  font: normal normal 700 1.4rem/3.5rem "Montserrat";
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
}
.ordesa-section .wrapper-ordesa .item-ordesa .item-ordesa__cta:hover {
  background: white;
  color: #2a4373;
}
.ordesa-section .wrapper-ordesa .item-ordesa.plus-item {
  background: #e13452;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e13452), color-stop(20%, #e13452), color-stop(#ec5b78), color-stop(80%, #e13452), to(#e13452));
  background-image: linear-gradient(#e13452, #e13452 20%, #ec5b78, #e13452 80%, #e13452);
}
@media (min-width: 992px) {
  .ordesa-section .wrapper-ordesa .item-ordesa {
    background-size: 49%;
  }
}
@media (min-width: 1550px) {
  .ordesa-section .wrapper-ordesa .item-ordesa {
    padding: 50px;
    min-height: 380px;
  }
  .ordesa-section .wrapper-ordesa .item-ordesa p {
    font-size: 22px;
  }
}
.ordesa-section .logo {
  width: 103px;
}
.ordesa-section .logo-club {
  width: 115px;
}
.ordesa-section .plus-item .logo {
  width: 145px;
  position: absolute;
  left: 0;
  top: 0;
}
.ordesa-section .pack {
  position: absolute;
  right: 30px;
  bottom: 0px;
  max-width: 300px;
}
.ordesa-section .pack .item-ordesa__cta {
  position: absolute;
  bottom: 32px;
  right: 20px;
}
.ordesa-section .bg-picture {
  height: 100%;
  width: 256px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../media/irene-paredes.webp");
  background-size: 100%;
  background-repeat: no-repeat;
}
.ordesa-section .legal-wrapper {
  font-size: 13px;
  padding-top: 60px;
  color: #2a4373;
}
@media (max-width: 444px) {
  .ordesa-section .bg-picture {
    width: 62vw;
  }
}
@media (max-width: 575px) {
  .ordesa-section .wrapper-ordesa .item-ordesa.plus-item {
    padding: 106px 0 30px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, #e13452), color-stop(17%, #ec5b78), color-stop(22%, #E13451), to(#E13453));
    background-image: linear-gradient(#e13452 12%, #ec5b78 17%, #E13451 22%, #E13453);
  }
  .ordesa-section .bg-picture {
    background-image: url("../media/irene-paredes-360.webp");
    width: 57vw;
  }
  .ordesa-section .plus-item .logo {
    max-width: 145px;
    width: 35%;
  }
  .ordesa-section .pack {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin-left: unset;
    margin-right: unset;
    bottom: unset;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ordesa-section .pack .inner-pack {
    position: relative;
    left: 66%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ordesa-section .pack img.desktop {
    display: none;
  }
  .ordesa-section .pack img.mobile {
    width: 70%;
    max-width: 270px;
    margin-left: unset;
    margin-right: unset;
    margin-bottom: 30px;
  }
  .ordesa-section .pack .item-ordesa__cta {
    position: relative;
    bottom: unset;
    right: unset;
    width: 83px;
    margin: unset;
  }
}
@media (min-width: 576px) {
  .ordesa-section .pack img.mobile {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .ordesa-section .wrapper-ordesa .item-ordesa {
    min-height: 400px;
  }
  .ordesa-section .bg-picture {
    width: 100%;
    background-size: contain;
  }
  .ordesa-section .pack {
    max-width: 350px;
    right: unset;
    bottom: unset;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-25%, -50%);
            transform: translate(-25%, -50%);
  }
  .ordesa-section .pack .item-ordesa__cta {
    right: 43px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .ordesa-section .bg-picture {
    background-position: -62px;
  }
}
@media (min-width: 992px) and (max-width: 1549px) {
  .ordesa-section .plus-item .logo {
    width: 120px;
  }
  .ordesa-section .bg-picture {
    width: 47%;
    min-width: 259px;
  }
}
@media (min-width: 1550px) {
  .ordesa-section .logo, .ordesa-section .logo-club {
    width: 150px;
  }
  .ordesa-section .plus-item .logo {
    width: 190px;
  }
  .ordesa-section .bg-picture {
    width: 418px;
    background-position: -78px;
  }
  .ordesa-section .pack {
    right: 65px;
    bottom: 28px;
    max-width: 356px;
  }
  .ordesa-section .pack .item-ordesa__cta {
    bottom: 36px;
    right: 44px;
  }
}
@media (min-width: 1700px) {
  .ordesa-section .bg-picture {
    background-position: 0;
  }
}

@media (max-width: 991px) {
  .none-mobile {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 991px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 991px) {
  .mobile-only {
    display: block;
  }
}

.relative {
  position: relative;
}

.close-video {
  display: none;
  position: absolute;
  z-index: 11;
  top: 100px;
  right: 30px;
  cursor: pointer;
}
.close-video.active {
  display: block;
}
.close-video .line-close {
  width: 37.98px;
  margin-bottom: 6.66px;
  height: 4px;
  background: #FFFFFF;
  cursor: pointer;
}
.close-video .line-close:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.close-video .line-close:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: -10px;
}

.scroll-to-top {
  visibility: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .scroll-to-top {
    display: none;
  }
}
.scroll-to-top img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 20;
  background: #FFFFFF;
  border-radius: 60px;
  cursor: pointer;
}

.c-footer__container {
  margin: auto;
  padding: 6rem 20px 0;
}

@media (min-width: 576px) {
  .c-footer__container {
    max-width: 575px;
  }
}
@media (min-width: 768px) {
  .c-footer__container {
    max-width: 767px;
    padding: 6rem 40px 0;
  }
}
@media (min-width: 992px) {
  .c-footer__container {
    max-width: 991px;
  }
}
@media (min-width: 1200px) {
  .c-footer__container {
    max-width: 1199px;
  }
}
@media (min-width: 1400px) {
  .c-footer__container {
    max-width: 1275px;
  }
}
@media (min-width: 992px) {
  .c-footer__logos {
    margin-bottom: 5rem;
  }
}
.c-footer__logo1 {
  max-width: 100px;
}

.c-footer__logo2 {
  max-width: 100px;
  margin-left: 18px;
}

@media (min-width: 992px) {
  .c-footer__logo2 {
    max-width: 141px;
    margin-left: 25px;
  }
}
.c-footer__display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6rem;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

@media (max-width: 991px) {
  .c-footer__display {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .c-footer__display {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .c-footer__column:not(:first-child) {
    margin-top: 20px;
  }
}
.c-footer__ul-title {
  font-size: 18px;
  line-height: 3rem;
  font-weight: 900;
  color: #191919;
  margin-bottom: 3.2rem;
  display: block;
}

@media (max-width: 991px) {
  .c-footer__ul-title {
    line-height: 1.5rem;
    margin-bottom: 1.6rem;
  }
}
.c-footer__ul {
  list-style: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

.c-footer__li {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .c-footer__li {
    margin-bottom: 22px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .c-footer__li {
    margin-bottom: 24px;
    line-height: 21px;
  }
}
.c-footer__link, .c-footer__legal-link {
  text-decoration: none;
  color: #191919;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#191919), to(#191919));
  background-image: linear-gradient(#191919, #191919);
  background-size: 0 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 4.5px;
}

.c-footer__link:hover, .c-footer__legal-link:hover {
  background-size: 100% 1px;
  text-decoration: none;
}

.c-footer__update {
  max-width: 800px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .c-footer__update {
    text-align: center;
    margin-bottom: 45px;
  }
}
.c-footer__update-1 {
  font-size: 17px;
  line-height: 24px;
}

.c-footer__update-2 {
  font-size: 14px;
  line-height: 24px;
}

.c-footer__legal {
  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;
}

@media (max-width: 767px) {
  .c-footer__legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.c-footer__legal-ul {
  list-style: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

@media (max-width: 767px) {
  .c-footer__legal-ul {
    margin-bottom: 10px;
  }
}
@media (min-width: 576px) {
  .c-footer__legal-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-left: 20px;
  }
}
.c-footer__legal-link {
  font-size: 17px;
  padding-bottom: 7.5px;
  display: block;
}

@media (min-width: 576px) {
  .c-footer__legal-link {
    margin-left: 20px;
  }
}
.c-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-footer__cright-text {
  font-size: 17px;
}

.c-footer__cright-logo {
  max-width: 100px;
  margin-left: 20px;
  margin-top: 2em;
  margin-bottom: 2em;
}

@media (min-width: 768px) {
  .o-order__md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .o-order__md-2 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 2;
    order: 2;
  }
}
.cookies-message {
  max-width: 100vw;
  bottom: 0 !important;
}

.mt-lot {
  padding-top: 300px;
}