/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/
* {
  outline: none;
  font-family: "Montserrat", Arial, sans-serif;
  list-style: none;
  text-decoration: none;
}

html, body {
  position: fixed;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  width: 100%;
}

.navbar {
  z-index: 999;
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.2s;
  /*background: rgb(0, 0, 0, .35);*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: block;
  width: 100%;
  height: 78px;
}
.navbar:before {
  position: absolute;
  left: 0;
  top: -100px;
  content: "";
  width: 100%;
  background: transparent;
  height: 100px;
  box-shadow: 0 0 100px 100px rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.navbar .brand {
  position: absolute;
  top: 15px;
  left: 5%;
}
.navbar .nav-links {
  margin-top: -100%;
  opacity: 0;
  position: absolute;
  right: -5%;
  text-align: right;
}
.navbar .nav-links li a {
  transition: ease 0.4s;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0;
}
.navbar .nav-links li .dropdown-menu {
  background: transparent;
  right: 0;
  position: relative;
  border: none;
  padding: 0;
}
.navbar .nav-links li .dropdown-menu a {
  padding: 0;
  text-align: right;
}
.navbar .nav-links li .dropdown-menu a:hover {
  background: transparent;
}
.navbar .nav-links .active-link {
  font-weight: 700;
  color: white;
}
.navbar .button-menu {
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  z-index: 3000;
  top: 25px;
  right: 5%;
  height: 30px;
  width: 50px;
}
.navbar .button-menu:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 4px;
  background: #fff;
  top: 5px;
  right: 0;
  transition: ease 0.2s;
}
.navbar .button-menu:after {
  content: "";
  position: absolute;
  width: 20px;
  right: 0;
  height: 4px;
  background: #fff;
  top: 20px;
  transition: ease 0.2s;
}
.navbar.nav-active {
  height: 100%;
  background: linear-gradient(218.6deg, #002D4D 17.83%, #00202B 85.5%);
  display: flex;
  border: none;
}
.navbar.nav-active .brand img {
  display: block;
  width: 100%;
}
.navbar.nav-active .nav-links {
  margin-top: 0;
  width: max-content;
  height: max-content;
  opacity: 1;
  text-align: right;
  right: 5%;
}
.navbar.nav-active .nav-links li a {
  font-size: 6vmin;
}
.navbar.nav-active .button-menu:before {
  transform: rotate(45deg);
  top: 10px;
}
.navbar.nav-active .button-menu:after {
  transform: rotate(-45deg);
  width: 35px;
  top: 10px;
}

@media (min-width: 1256px) {
  .navbar {
    padding: 25px 5%;
    position: fixed;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    height: max-content;
  }
  .navbar .brand {
    position: static;
    top: 15px;
    left: 5%;
  }
  .navbar .nav-links {
    opacity: 1;
    position: static;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: max-content;
    margin: 0;
  }
  .navbar .nav-links li {
    margin-left: 30px;
  }
  .navbar .nav-links li a {
    font-size: 13px;
    transition: ease 0.4s;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0;
  }
  .navbar .nav-links li .dropdown-menu {
    margin: 30px 0 0 0;
    background: #00599B;
    right: 0;
    position: absolute;
    border: none;
    width: max-content;
    padding: 15px 30px;
    left: -30px;
    box-shadow: 1px 15px 15px rgba(0, 0, 0, 0.1);
  }
  .navbar .nav-links li .dropdown-menu a {
    display: block;
    padding: 0;
    text-align: left;
    margin: 15px 0;
  }
  .navbar .nav-links li .dropdown-menu a:hover {
    background: transparent;
  }
  .navbar .nav-links li .dropdown-menu:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    background: #00599B;
    transform: rotate(45deg);
    top: -15px;
    left: 85px;
  }
  .navbar .nav-links .active-link {
    font-weight: 700;
    color: white;
  }
  .navbar .button-menu {
    display: none;
  }
  .navbar.nav-active {
    height: 100%;
    background: linear-gradient(218.6deg, #002D4D 17.83%, #00202B 85.5%);
    display: flex;
    border: none;
  }
  .navbar.nav-active .brand img {
    display: block;
    width: 100%;
  }
  .navbar.nav-active .nav-links {
    margin-top: 0;
    width: max-content;
    height: max-content;
    opacity: 1;
    text-align: right;
    right: 5%;
  }
  .navbar.nav-active .nav-links li a {
    font-size: 6vmin;
  }
  .navbar.nav-active .button-menu:before {
    transform: rotate(45deg);
    top: 10px;
  }
  .navbar.nav-active .button-menu:after {
    transform: rotate(-45deg);
    width: 35px;
    top: 10px;
  }
}
.sticky-phone,
.sticky-button {
  position: fixed;
  bottom: 25px;
  z-index: 2000;
  padding-right: 0;
  border-radius: 23px;
  display: flex;
  align-items: center;
}
.sticky-phone a,
.sticky-button a {
  display: flex;
  width: max-content;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 46px;
}
.sticky-phone a:before,
.sticky-button a:before {
  transition: all 0.2s;
  content: "";
  position: absolute;
  background: #ffffff;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  z-index: -1;
}
.sticky-phone a:hover,
.sticky-button a:hover {
  text-decoration: none;
}
.sticky-phone a:hover:before,
.sticky-button a:hover:before {
  width: 100%;
}
.sticky-phone a i,
.sticky-button a i {
  border-radius: 23px;
  text-align: center;
  width: 46px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
}
.sticky-phone a span,
.sticky-button a span {
  display: none;
  padding: 0 15px;
}

.sticky-phone {
  left: 5%;
}

.sticky-button {
  right: 5%;
  background: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .sticky-phone,
.sticky-button {
    position: fixed;
    bottom: 25px;
    z-index: 2000;
    padding-right: 0;
    border-radius: 23px;
    display: flex;
    align-items: center;
  }
  .sticky-phone a,
.sticky-button a {
    display: flex;
    width: max-content;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 46px;
  }
  .sticky-phone a:hover,
.sticky-button a:hover {
    text-decoration: none;
  }
  .sticky-phone a i,
.sticky-button a i {
    border-radius: 23px;
    text-align: center;
    width: 46px;
    color: rgba(0, 0, 0, 0.8);
    background: #ffffff;
    font-size: 16px;
  }
  .sticky-phone a span,
.sticky-button a span {
    display: block;
    padding: 0 15px;
  }
}
.section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 8rem;
  /*padding-bottom: 5rem;*/
  overflow-y: auto;
}
.section .container {
  position: relative;
  transition: ease 0.6s;
  opacity: 0;
  margin-top: -200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-bottom: 5rem;
}
.section .container .row ul {
  padding: 0;
  margin: 0;
}
.section .container .row ul li {
  list-style: none;
}
.section .container .row.pillars .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.section .container .row.pillars .col-md-4 img {
  /*width: 56px;*/
  margin: 0 0 15px 0;
  display: inline-block;
  padding: 25px;
  border-radius: 10px;
}
.section .container .row.pillars .col-md-4 .pillar-text {
  font-size: 14px;
  text-align: center;
}
.section .container .row.pillars .col-md-4 .pillar-text p {
  color: #ffffff;
  padding: 5%;
  border-radius: 4px;
}
.section.active {
  background-position: center center;
}
.section.active .container {
  margin-top: 0;
  justify-content: center;
  opacity: 1;
}
.section.active .container .row h1, .section.active .container .row h2 {
  margin: 0;
  padding: 0;
}

#pp-nav.right {
  display: none;
  right: 25px;
}
#pp-nav.right ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#pp-nav.right ul li {
  display: block;
  height: max-content;
  width: max-content;
}
#pp-nav.right ul li a {
  border: none;
  display: block;
  height: 10px;
  width: 5px;
  transition: ease 0.2s;
}
#pp-nav.right ul li a span {
  position: static;
  border: none;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  display: block;
}
#pp-nav.right ul li a.active {
  height: 25px;
}
#pp-nav.right ul li a.active span {
  display: block;
  background: #fff;
}

@media (min-width: 605px) {
  #pp-nav.right {
    display: block;
  }
}
form {
  /*padding: 970px 0 100px 0;*/
}
form .custom-radio {
  display: block;
  line-height: 46px;
  padding: 0 0 0 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: ease-in-out 0.15s;
  background: #fff;
}
form .custom-radio:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
form .custom-radio input[type=radio] {
  margin: 0 5px 0 0;
  cursor: pointer;
  /*&:before {
      content: '';
      display: block;
      height: 48px;
      position: absolute;
      margin: 0 15px;
      left: 0;
      right: 0;
      top: 0;
      border-radius: 4px;
      z-index: -1;
      border: 1px solid transparent;
      transition: ease-in-out .15s;
      background: #ffffff;
  }

  &:checked {
      &:before {
          background: rgba(55, 182, 220, 1);
          border: 1px solid rgba(55, 182, 220, 1);
      }
  }*/
}
form .custom-input {
  line-height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
}
form .custom-input:focus {
  border-color: #0096C2;
}
form .custom-input[value]:valid {
  border: 2px solid #0096C2;
}
form .custom-input.other {
  display: none;
}
form .button-custom-form {
  line-height: 48px;
  padding: 0 30px;
  min-width: 200px;
  border-radius: 4px;
  background: #0096C2;
  border: none;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  form {
    padding: 0;
  }
}
footer {
  /*display: flex;*/
  background: linear-gradient(296.05deg, #FF5D2B 0%, #6C3FCB 63.89%, #047974 101.01%), #C4C4C4;
  /*flex-direction: column;*/
}
footer .container .row .column.md {
  margin: 30px 0;
}
footer .container .row .column div {
  width: max-content;
}
footer .container .row .column div h6 {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 400;
}
footer .container .row .column div a {
  display: flex;
  font-size: 15px;
  color: #ffffff;
  line-height: 22px;
  margin: 0 0 10px 0;
  width: max-content;
  flex-direction: row;
  align-items: center;
}

footer .container .row .column div a.phone-link {
  border: 1px solid rgba(255,255,255,.4);
  padding: 10px 15px;  
  border-radius: 6px;
}

footer .container .row .column div a.phone-link:hover {
  text-decoration: none;
  border: 1px solid rgba(255,255,255,1);
}

footer .container .row .column div a i {
  height: 16px;
  width: 16px;
  margin: -4px 10px 0 0;
}
footer p {
  width: 100%;
  padding: 30px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  /*bottom: 0;*/
  margin-bottom: 0;
  display: none;
}

@media (min-width: 768px) {
  footer .container .row .column div {
    margin: auto;
  }
  footer .container .row .column.md {
    margin: 0;
  }
}
#video-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
  transition: ease 0.3s;
  opacity: 0;
}
#video-popup iframe {
  width: 90vmin;
  height: 55vmin;
}
#video-popup:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 4px;
  background: #fff;
  transition: ease 0.2s;
  transform: rotate(45deg);
  top: 5%;
  right: 5%;
  cursor: pointer;
}
#video-popup:after {
  content: "";
  position: absolute;
  height: 4px;
  background: #fff;
  transition: ease 0.2s;
  transform: rotate(-45deg);
  width: 35px;
  top: 5%;
  right: 5%;
  cursor: pointer;
}
#video-popup.video-active {
  z-index: 5000 !important;
  opacity: 1;
}

#play-video {
  cursor: pointer;
}

.default {
  overflow-y: scroll;
}

.pp-scrollable {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mt-80 {
  margin: 80px 0 0 0;
}

h1 {
  font-size: 7.5vmin;
  line-height: 7.5vmin;
  font-weight: 700;
}

h2 {
  font-size: 6.5vmin;
  line-height: 6.5vmin;
  font-weight: 700;
}

.span-container-links {
  display: block;
}

.button-header {
  display: block;
  width: max-content;
  line-height: 46px;
  margin-bottom: 25px;
  background: #00AFD9;
  padding: 0 30px;
  border-radius: 4px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.07rem;
}
.button-header:hover {
  color: #ffffff;
  text-decoration: none;
  background: #0091b3;
}
.button-header .rounded {
  border-radius: 24px;
}

.cta-product {
  margin: 30px 0 0 0;
  display: block;
  width: max-content;
  background: #00599B;
  line-height: 48px;
  padding: 0 25px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.07em;
}
.cta-product:hover {
  color: #fff;
  text-decoration: none;
}
.cta-product .rounded {
  border-radius: 24px;
}
.cta-product.light-blue {
  background: #0097AB;
}

.cta-product.light-blue-1 {
  background: #00AFD9;
}

.cta-product.orange {
  background: #DF8921;
}



.social-network {
  color: #ffffff;
  font-size: 32px;
  margin: 0 10px 0 0;
  border: 0;
}
.social-network i {
  font-weight: lighter;
}
.social-network:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.list-items {
  display: block;
  flex-wrap: wrap;
}
.list-items li {
  line-height: 20px;
  display: flex;
  width: 90%;
  align-items: center;
  margin: 0 0 15px 0;
}
.list-items li img {
  margin-right: 10px;
  width: 62px;
  height: 62px;
}

@media(max-width: 600px) {
  .list-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .list-links img {
    margin: 0;
    max-width: 325px;
  }
}

.list-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.list-links img {
  margin: 0 15px;
  max-width: 325px;
}

.list-character {
  padding: -20px;
}
.list-character li {
  display: flex;
  margin: 0 15px 0 0;
  padding: 0 0 15px 0;
  width: calc(100% - 15px);
  align-items: center;
}
.list-character li img {
  margin-right: 15px;
  width: 62px;
  height: 62px;
  max-width: 62px;
  max-height: 62px;
}

.product-link {
  height: 50vh;
}

@media (min-width: 530px) {
  .list-items {
    display: flex;
    flex-wrap: wrap;
  }
  .list-items li {
    line-height: 20px;
    display: flex;
    width: 50%;
    align-items: center;
    margin: 0;
  }
  .list-items li img {
    margin: 10px 15px 10px 0;
  }

  .list-character li {
    width: calc(100% / 2 - 15px);
  }
}
.swiper-container {
  width: 100%;
  background: darkslateblue;
}
.swiper-container .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
}

.not-found {
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

label.mw-ui-check {
  background:#ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 16px 0;
  line-height: 60px;
  padding: 0 15px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .list-character li {
    width: calc(100% / 3 - 15px);
  }

  label.mw-ui-check {
    width: calc(96%/2);
    display: inline-block;
    margin: 0 22px 16px 0;
  }

  label.mw-ui-check:nth-child(3),
  label.mw-ui-check:nth-child(5) {
    margin: 0 0 16px 0;
  }
}
@media (min-width: 992px) {

  label.mw-ui-check {
    width: calc(91.5%/4);
    display: inline-block;
    margin: 0 22px 16px 0;
  }

  label.mw-ui-check:nth-child(3)
  {
    margin: 0 22px 16px 0;
  }

  label.mw-ui-check:nth-child(5) {
    margin: 0 0 16px 0;
  }

  .list-character li {
    width: calc(100% / 4 - 15px);
  }
}

@media (min-width: 1200px) {

  label.mw-ui-check {
    width: calc(92.5%/4);
    display: inline-block;
    margin: 0 22px 16px 0;
  }

  label.mw-ui-check:nth-child(3)
  {
    margin: 0 22px 16px 0;
  }

  label.mw-ui-check:nth-child(5) {
    margin: 0 0 16px 0;
  }
}

.pop-downloads {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background: rgba(0,0,0,.85);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: linear .2s;
}

.pop-downloads .close-pop {
  background: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 32px;
  border: none;
  position: absolute;
  right: 30px;
  top: 30px;
  outline: none;
  z-index: 100;
  border-radius: 18px;
}

@media(max-width: 768px) {
  .list-links.downloads {
    flex-direction: column;
  }

  .list-links.downloads li {
    margin-bottom: 30px;
  }
}


/*# sourceMappingURL=theme.css.map */
