/*GENERAL STYLES*/
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #FFFFFF;
  color: rgba(0,49,79,1);
  font-family: 'Roboto';
  font-weight: 300;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
}

/*WRAPPERS*/

.row {
	width: 100%;
  position: relative;
}
.row::after {
  content: '';
	clear: both;
	display: table;
}
[class*="col-"] {
	position: relative;
  float: left;
}
.col-1 {
	width: 8.33%;
}
.col-2 {
	width: 16.66%;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.33%;
}
.col-5 {
	width: 41.66%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.33%;
}
.col-8 {
	width: 66.66%;
}
.col-9 {
	width: 75%;
}
.col-10 {
	width: 83.33%;
}
.col-11 {
	width: 91.66%;
}
.col-12 {
	width: 100%;
}
.main-wrapper {
  width: 100%;
  position: relative;
}
.section {
  padding: 100px 0;
}
.content {
}
.content-limit {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.flex-h-centered {
  display: flex !important;
  justify-content: space-around !important;
  flex-wrap: wrap !important;
}
.row.flex-h-centered::after, .row.flex-v-centered::after {
  content: none !important;
}
.flex-v-centered {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-left {
  align-items: flex-start !important;
}
.mtb-5 {
  margin: 5px 0 !important;
}
.mtb-10 {
  margin: 10px 0 !important;
}
.mtb-15 {
  margin: 15px 0 !important;
}
.mtb-20 {
  margin: 20px 0 !important;
}
.mtb-25 {
  margin: 25px 0 !important;
}
.mtb-30 {
  margin: 30px 0 !important;
}
.mb-5 {
  margin: 0 0 5px 0 !important;
}
.mb-10 {
  margin: 0 0 10px 0 !important;
}
.mb-15 {
  margin: 0 0 15px 0 !important;
}
.mb-20 {
  margin: 0 0 20px 0 !important;
}
.mb-25 {
  margin: 0 0 25px 0 !important;
}
.mb-30 {
  margin: 0 0 30px 0 !important;
}
.mt-5 {
  margin: 5px 0 0 0 !important;
}
.mt-10 {
  margin: 10px 0 0 0 !important;
}
.mt-15 {
  margin: 15px 0 0 0 !important;
}
.mt-20 {
  margin: 20px 0 0 0 !important;
}
.mt-25 {
  margin: 25px 0 0 0 !important;
}
.mt-30 {
  margin: 30px 0 0 0 !important;
}
.m-0 {
  margin: 0 !important;
}
.p-5 {
  padding: 5px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-15 {
  padding: 15px !important;
}
.p-20 {
  padding: 20px !important;
}
.p-25 {
  padding: 25px !important;
}
.p-30 {
  padding: 30px !important;
}
.ptb-5 {
  padding: 5px 0 !important;
}
.ptb-10 {
  padding: 10px 0 !important;
}
.ptb-15 {
  padding: 15px 0 !important;
}
.ptb-20 {
  padding: 20px 0 !important;
}
.ptb-25 {
  padding: 25px 0 !important;
}
.ptb-30 {
  padding: 30px 0 !important;
}
.pr-5 {
  padding: 0 5px 0 0 !important;
}
.pr-10 {
  padding: 0 10px 0 0 !important;
}
.pr-15 {
  padding: 0 15px 0 0 !important;
}
.pr-20 {
  padding: 0 20px 0 0 !important;
}
.pr-25 {
  padding: 0 25px 0 0 !important;
}
.pr-30 {
  padding: 0 30px 0 0 !important;
}
.pl-5 {
  padding: 0 0 0 5px !important;
}
.pl-10 {
  padding: 0 0 0 10px !important;
}
.pl-15 {
  padding: 0 0 0 15px !important;
}
.pl-20 {
  padding: 0 0 0 20px !important;
}
.pl-25 {
  padding: 0 0 0 25px !important;
}
.pl-30 {
  padding: 0 0 0 30px !important;
}
.p-0 {
  padding: 0 !important;
}

/*MENU*/

.navigation {
  height: 70px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1000;
}
.brand {
  background-image: url('../img/logo-dark-h.svg');
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: relative;
  width: 100px;
  height: 70px;
  float: left;
  margin-right: 40px;
}
.brand img {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.brand a, .brand a:visited {
  color: #ffffff;
  text-decoration: none;
  display: block;
  height: 100%;
}
.nav-container {
  margin: 0 auto;
}
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a, nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  color: #ffffff;
  text-decoration: none;
}
nav ul li a:hover, nav ul li a:visited:hover {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}
nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}
.menu-download-app {
  display: flex;
  align-items: center;
  height: 70px;
}
.menu-download-app a {
  line-height: normal;
  padding: 5px 20px;
  margin: 0 10px;
  border-radius: 3px;
  border: 1px solid #FFFFFF;
}
nav ul li.menu-download-app a:hover, nav ul li.menu-download-app a:focus {
  background-color: rgba(255,255,255,0.2);
}
.nav-dropdown {
  background-color: rgba(255,255,255,0.2);
  position: absolute;
  right: 0;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: 70px;
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 24px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  border-radius: 10px;
  height: 3px;
  width: 35px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
/*sticky*/

.navigation.sticky {
  background-color: rgba(255,255,255,1) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 1s ease;
  animation: slideDown 0.4s forwards;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.navigation.sticky .brand {
  background-image: url('../img/logo-light-h.svg');
}
.navigation.sticky nav ul li a, .navigation.sticky nav ul li a:visited {
  color: rgba(0,49,79,1);
}
.navigation.sticky nav ul li a:hover, .navigation.sticky nav ul li a:visited:hover {
  background: rgba(0,49,79,1);
  color: #ffffff;
}
.navigation.sticky .nav-dropdown {
  background-color: #ffffff;
}
.navigation.sticky nav ul li.menu-download-app a {
  border: 1px solid rgba(0,49,79,1);
}
.navigation.sticky nav ul li.menu-download-app a:hover, .navigation.sticky nav ul li.menu-download-app a:focus {
  background-color: rgba(0,49,79,1);
  color: #FFFFFF;
}
@keyframes slideDown {
  from {
    top: -70px;
  }
  to {
    top: 0;
  }
}

/*HOME*/

#bgVideo, #bgVideo video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
#bgVideo::after {
  background-color: rgba(0,49,79,0.7);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#home {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  font-size: 20px;
}
#home p {
  width: 65%;
  margin: auto;
}
.logo-animation {
  width: 400px;
  height: 400px;
  position: relative;
  margin: 0 auto 40px auto;
}
.earth {
  background-image: url('../img/world-map.webp');
  background-size: auto 100%;
  background-position: left center;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  animation: 10s earth-bg infinite linear;
}
@keyframes earth-bg {
  0% {background-position: left center;}
  100% {background-position: 66.75% center;}
}
.earth .logo {
  width: 30%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.circle-icons {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: circle-rotating 60s linear infinite;
}
.circle-icons i {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.circle-icons i:nth-child(2) {
  bottom: 0;
  left: auto;
  right: 0;
  transform: rotate(90deg);
}
.circle-icons i:nth-child(3) {
  bottom: 0;
  top: auto;
  transform: rotate(180deg);
}
.circle-icons i:nth-child(4) {
  bottom: 0;
  left: 0;
  right: auto;
  transform: rotate(270deg);
}
.circle-signal-dashed {
  display: block;
  content: '';
  width: 75%;
  height: 75%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: circle-rotating 60s linear reverse infinite;
}
@keyframes circle-rotating {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
.circle-signal-1, .circle-signal-2, .circle-signal-3 {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255,255,255,0);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  transform-origin: center;
  animation: circle-signal 3s linear infinite;
}
.circle-signal-2 {
  animation-delay: 1s;
}
.circle-signal-3 {
  animation-delay: 2s;
}
@keyframes circle-signal {
  0% {
    width: 80%;
    height: 80%;
    border: 2px solid rgba(255,255,255,0);
  }
  50% {
    width: 90%;
    height: 90%;
    border: 2px solid rgba(255,255,255,1);
  }
  100% {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,255,255,0);
  }
}
.app-download {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  transition: 0.3s;
}
.app-download a:hover, .app-download a:focus {
  transform: scale(1.05);
  transition: 0.3s;
}
.app-download a img {
  width: auto;
  height: 60px;
  margin: 0 20px;
}

/*SECTION 2*/

#traveling-esim {
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%);
}
#traveling-esim .section {
  background-image: url('../img/bg-lines-2.svg');
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: left bottom;
}
#traveling-esim .content:nth-child(1) {
  background-image: url('../img/bg-traveling.webp');
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: right 25%;
}
/* #traveling-esim .content:nth-child(2) {
  background-image: url('../img/lines-2.svg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
} */
.traveling-esim-img {
  width: 120%;
  height: auto;
  position: relative;
  margin: -50% 0 0 20%;
}
i.cicle-icon {
  background-color: #00314F;
  color: #FFFFFF;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 50%;
  margin: 20px 0;
  text-align: center;
  font-size: 40px;
}

/*SECTION 3*/

.services-banner {
  width: 100%;
  position: relative;
  margin-bottom: 150px;
}
.front-banner {
  width: 50%;
  position: relative;
  margin: 0 auto -40% auto;
  z-index: 1;
}
.back-banner {
  width: 100%;
  max-height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.services-banner img {
  width: 100%;
  height: auto;
}
.installing {
  position: relative;
  margin: 50px 0 0 0;
}
.dot-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.dot {
  background-color: #00314F;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
}
.dot-line::after {
  background-color: #00314F;
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*SECTION 4*/

.accordion {
  border-radius: 20px;
  overflow: hidden;
}
.accordion .accordion-item {
  background-color: #FCFCFC;
  border-bottom: 1px solid #EEEEEE;
}
.accordion .accordion-item button[aria-expanded=true] {
  background-color: #00314F;
  color: #FFFFFF;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 30px 20px;
  color: rgba(0,49,79,1);
  font-size: 1.15rem;
  font-weight: 500;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  background-color: rgba(190,215,48,0.1);
  cursor: pointer;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #03b5d2;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 10em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  background-color: rgba(0,49,79,0.05);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  padding: 40px 20px;
}

/*SECTION 5*/

.contact-box {
  background: linear-gradient(to right,  rgba(173,233,255,1) 0%,rgba(238,255,141,1) 100%);
  border-radius: 150px 20px 150px 20px;
  padding: 0 160px 0 0;
  font-size: 20px;
  position: relative;
}
.contact-box .row {
  background-image: url('../img/bg-contact.webp');
  background-position: left bottom;
  background-size: 60% auto;
  background-repeat: no-repeat;
  border-radius: 150px 20px 0 0;
}
.image-contact {
  width: 80%;
  height: auto;
  margin-top: -13%;
  margin-bottom: -5px;
}
.paper-plane {
  width: 50%;
  height: auto;
  position: absolute;
  top: -25%;
  left: 40%;
  margin: auto;
}

/*INNER PAGES*/

.main-banner {
  background: linear-gradient(to top left,  rgba(0,175,238,1) 0%,rgba(0,49,79,1) 100%);
  color: #FFFFFF;
  margin-top: -70px;
}
.main-banner .content {
  padding: 100px 0 0 0;
}
.main-banner img {
  display: flex;
  width: 100%;
  height: auto;
  margin: 0 auto 40px auto;
}

/*DOWNLOAD PAGE*/

#download {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  padding: 100px 0;
  font-size: 20px;
}
#download p {
  width: 65%;
  margin: auto;
}

/*FOOTER*/

.footer {
  padding: 50px 0;
}
.footer h5 {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer p {
  padding: 10px 0;
}
.footer a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
}
.footer a:hover {
  color: rgba(255,255,255,0.8);
}
.copy {
  font-size: 14px;
}
.copy img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}
.download-footer a:hover, .download-footer a:focus {
  transform: scale(1.05);
  transition: 0.3s;
}
.download-footer a img {
  width: 100%;
  height: auto;
}
.social-media {
  display: flex;
  width: 100%;
}
.social-media .button-social {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #00314F;
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-right: 20px;
  border-radius: 50%;
}
.social-media .button-social:hover {
  background-color: #FFC107;
  color: #00314F
}

/*FORMS*/

label {
  display: block;
  color: #00314F;
  font-weight: 400;
  margin: 10px 0;
  padding: 10px 0;
  font-size: 20px;
  letter-spacing: 2px;
}
input::placeholder, textarea::placeholder {
  color: rgba(0,0,0,0.4);
}
input[type=text], input[type=phone], input[type=number], input[type=email], input[type=password], textarea {
  font-family: 'Roboto';
  font-weight: 300;
  line-height: 1.5em;
  background-color: #FCFCFC;
  color: rgba(0,49,79,1);
  width: 100%;
  padding: 10px;
  border: 1px solid #DDDDDD;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}
input[type=text]:focus, input[type=phone]:focus, input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
  border: 1px solid #00314F;
}
textarea {
  min-height: 100px;
  max-height: 200px;
}
.button {
  background-color: #FFFFFF;
  color: #00314F;
  padding: 15px 40px;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  margin: 20px 0;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
.button:hover, .button:focus {
  transform: scale(1.05);
}

/*COUNTRY CODE*/

.pn-select input[type=search],
.pn-select input[type=tel],
.pn-select input[type=text] {
  font-size: 16px;
  border: 0;
  outline: none;
  color: inherit;
  margin: 0;
  padding: 0;
  width: auto;
  max-width: 100%;
  line-height: 1.5em;
}
.pn-select input[type=search]::-webkit-input-placeholder,
.pn-select input[type=tel]::-webkit-input-placeholder,
.pn-select input[type=text]::-webkit-input-placeholder {
  font-weight: 300;
  color: #6b7280;
}
.pn-select input[type=search]::-moz-placeholder,
.pn-select input[type=tel]::-moz-placeholder,
.pn-select input[type=text]::-moz-placeholder {
  font-weight: 300;
  color: #6b7280;
}
.pn-select input[type=search]:-ms-input-placeholder,
.pn-select input[type=tel]:-ms-input-placeholder,
.pn-select input[type=text]:-ms-input-placeholder {
  font-weight: 300;
  color: #6b7280;
}
.pn-select input[type=search]:-moz-placeholder,
.pn-select input[type=tel]:-moz-placeholder,
.pn-select input[type=text]:-moz-placeholder {
  font-weight: 300;
  color: #6b7280;
}
.pn-select {
  position: relative;
  background-color: #FCFCFC;
  border-width: 1px;
  border-style: solid;
  border-color: #DDDDDD;
  display: grid;
  grid-template-columns: 4.5em 1fr;
  border-radius: 5px;
  transition: all 0.2s ease-out;
  width: 100%;
  margin: 20px 0 10px 0;
  z-index: 1;
}
.pn-select:focus, .pn-select:focus-within {
  border-color: var(--border-color-active);
  box-shadow: 0 0 2px 0 var(--border-color-active);
}
.pn-dropdown {
  background-color: #FFFFFF;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #DDDDDD;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.135);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: 140%;
  transform-origin: left top;
  transition: all 0.15s ease-out;
  width: 100%;
  visibility: hidden;
}
.pn-select--open .pn-dropdown {
  pointer-events: all;
  transform: none;
  opacity: 1;
  top: 120%;
  visibility: visible;
}
.pn-search {
  position: relative;
  display: flex;
  border-bottom-width: 1px;
  border-style: solid;
  border-color: #DDDDDD;
  margin-bottom: 0.5em;
}
.pn-search svg {
  display: block;
  height: 1.25rem;
  left: 0.5em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}
.pn-search input[type=search] {
  padding-left: 2.5rem;
  height: 3rem;
  width: 100%;
}
.pn-search input[type=search]::-webkit-search-decoration, .pn-search input[type=search]::-webkit-search-cancel-button, .pn-search input[type=search]::-webkit-search-results-button, .pn-search input[type=search]::-webkit-search-results-decoration {
  display: none;
}
.pn-list {
  margin-right: -0.5em;
  max-height: 10.5em;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffffff #ffffff;
  position: relative;
}
.pn-list::-webkit-scrollbar {
  width: 10px;
}
.pn-list:hover {
  --scrollbar-background: #ffffff;
  --thumb-background: #c0c4ca;
  scrollbar-color: var(--thumb-background) var(--scrollbar-background);
}
.pn-list:hover::-webkit-scrollbar-track {
  background: var(--scrollbar-background);
}
.pn-list:hover::-webkit-scrollbar-thumb {
  background-color: var(--thumb-background);
  border-radius: 6px;
  border: 3px solid var(--scrollbar-background);
}
.pn-list--no-scroll {
  margin-right: 0;
}

.pn-selected-prefix {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--dropdown-trigger-background-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 0;
  outline: none;
  padding: 0;
  transition: background 0.2s ease-out;
}
.pn-selected-prefix:hover, .pn-selected-prefix:focus {
  background: var(--dropdown-trigger-hover-background-color);
}
.pn-selected-prefix__flag {
  height: auto;
  width: 1.25rem;
}
.pn-selected-prefix__icon {
  display: block;
  height: 1.25rem;
  margin-left: 0.5em;
  margin-right: -0.25em;
  transition: all 0.15s ease-out;
  width: 1.25rem;
}
.pn-select--open .pn-selected-prefix__icon {
  transform: rotate(180deg);
}

.pn-input {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  line-height: 1;
  overflow: hidden;
  padding: 10px;
}
.pn-input__container {
  display: flex;
  flex-direction: row;
}
.pn-input__label {
  color: var(--input-label-color);
  font-size: 0.7rem;
  position: relative;
  top: -0.25em;
}
.pn-input__error {
  bottom: 0;
  color: var(--input-error-color);
  font-size: 0.785rem;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: all 0.2s ease-out;
  z-index: -1;
}
.pn-input input[type=text] {
  background: transparent;
  position: absolute;
  max-width: 100%;
  pointer-events: none;
}
.pn-input input[type=tel] {
  color: var(--input-phonenumber-color);
  padding-left: calc(calc(var(--prefix-length) * 1ch) + 1.5ch);
}
.pn-input input[type=tel]:not(:-moz-placeholder-shown):invalid + .pn-input__error {
  opacity: 1;
  transform: translateY(175%);
}
.pn-input input[type=tel]:not(:-ms-input-placeholder):invalid + .pn-input__error {
  opacity: 1;
  transform: translateY(175%);
}
.pn-input input[type=tel]:not(:placeholder-shown):invalid + .pn-input__error {
  opacity: 1;
  transform: translateY(175%);
}

.pn-list-item {
  align-items: center;
  border-radius: 0.5em;
  display: flex;
  font-weight: 400;
  padding: 0.6em 0.75em;
  transition: background-color 0.2s ease-out;
  cursor: pointer;
  outline: none;
}
.pn-list-item__flag {
  width: 1.25em;
  height: auto;
  margin-right: 1em;
  display: block;
}
.pn-list-item__country {
  margin-right: 0.25em;
}
.pn-list-item:hover, .pn-list-item:focus {
  background-color: var(--list-item-hover-background);
}
.pn-list-item--selected {
  pointer-events: none;
  font-weight: 500;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23103155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: right 0.75em top 50%;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: right 0.75em top 50%;
}
.pn-list-item--no-results {
  pointer-events: none;
}

/*COLORS*/

.bg-dark-blue {
  background-color: #00314F !important;
  color: #FFFFFF !important;
}
.bg-green-light {
  background-color: #EEFF8D !important;
}
.bg-green {
  background-color: #BED730 !important;
  color: #FFFFFF !important;
}
.bg-green-light {
  background-color: #EEFF8D !important;
}
.bg-cyan {
  background-color: #00AFEF !important;
  color: #FFFFFF !important;
}
.bg-cyan-light {
  background-color: #ADE9FF !important;
}
.bg-yellow {
  background-color: #FFC107 !important;
  color: #FFFFFF !important;
}
.bg-yellow-light {
  background-color: #FFE69B !important;
}
.bg-white {
  background-color: #FFFFFF !important;
  color: #00314F !important;
}
.color-dark-blue {
  color: #00314F;
}
.color-green-light {
  color: #EEFF8D;
}
.color-green {
  color: #BED730;
}
.color-green-light {
  color: #EEFF8D;
}
.color-cyan {
  color: #00AFEF;
}
.color-cyan-light {
  color: #ADE9FF;
}
.color-yellow {
  color: #FFC107;
}
.color-yellow-light {
  color: #FFE69B;
}
.color-white {
  color: #FFFFFF;
}

/*TEXTS*/

h1,h2,h3,h4,h5 {
  margin: 0.5em 0;
  padding: 0.2em 0;
  line-height: normal;
  line-height: 1em;
}
h4 {
  font-size: 25px;
}
p {
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.5em;
}
b {
  font-weight: bold;
}
.title-xl {
  font-size: 130px;
}
.title-l {
  font-size: 80px;
}
.title-m {
  font-size: 50px;
}
.title-s {
  font-size: 30px;
}
.subtitle {
  width: auto;
  padding: 10px 20px;
  font-size: 40px;
  border-bottom: 1px solid #00314F;
  margin-bottom: 40px;
}
.title-spaced {
  font-size: 25px;
  letter-spacing: 5px;
  font-weight: normal;
  margin-bottom: 20px;
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-light {
  font-weight: 300;
}
.text-bold {
  font-weight: bold;
}
