body, html {
  margin: 0;
  padding: 0;
  text-align: center;
  min-width: 350px;
  font-family: 'Open Sans', 'Roboto';
  font-size: 12pt;
  color: rgba(0,0,0,0.8);
  line-height: 1.6em;
}
div {
  box-sizing: border-box;
}
a {
  color: #00657b;
}
a:hover {
  color: #8ec045;
  text-decoration: underline;
}
img {
  max-width: 100%;
}
main {
  min-height: 50vh;
  position: relative;
}
main>section:first-child {
  padding-top: 100px !important;
}
section {
  display: block;
  width: 100%;
  max-width: 1920px;
  text-align: center;
  margin: auto;
  padding: 1em 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
section>div {
  margin: auto;
  text-align: left;
  width: 90%;
  max-width: 1400px;
}
@media only screen and (min-width:768px) {
  section>div.narrow {
    width: 60%;
    max-width: 900px;
  }
}
section.cover {
  position: relative;
  min-height: 60vh;
  padding: 5vh 0;
}
section.cover.medium {
  min-height: 50vh;
  padding: 2.5vh 0;
}
section.cover.small {
  min-height: 30vh;
  padding: 1vh 0;
}
section.cover .grid.bottom {
  min-height: 60vh;
}
section.cover.medium .grid.bottom {
  min-height: 45vh;
}
section.cover.small .grid.bottom {
  min-height: 28vh;
}
section.cover>img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 50% 50%;
}
section.cover>img.left {
  object-position: 25% 50%;
}
section.cover>img.right {
  object-position: 75% 50%;
}
section.cover>img.top {
  object-position: 50% 25%;
}
section.cover>img.top-left {
  object-position: 25% 25%;
}
section.cover>img.top-right {
  object-position: 75% 25%;
}
section.cover>img.bottom {
  object-position: 50% 75%;
}
section.cover>img.bottom-left {
  object-position: 25% 75%;
}
section.cover>img.bottom-right {
  object-position: 75% 75%;
}
section.cover>div {
  position: relative;
  z-index: 2;
}
h1 {
  font-size: 2em;
  font-family: 'Montserrat', 'Roboto';
  line-height: 1em;
  color: #00657b;
}
h2 {
  font-size: 1.75em;
  font-family: 'Montserrat', 'Roboto';
  line-height: 1em;
  color: #00657b;
}
h3 {
  font-size: 1.5em;
  font-family: 'Montserrat', 'Roboto';
  line-height: 1em;
  color: #00657b;
}
h4 {
  font-size: 1.25em;
  font-family: 'Montserrat', 'Roboto';
  line-height: 1em;
  color: #00657b;
}
h5 {
  font-size: 1.1em;
  font-family: 'Montserrat', 'Roboto';
  line-height: 1em;
  color: #00657b;
}
.cover-title {
  font-family: 'Montserrat', 'Roboto';
  line-height: 1em;
  font-size: 3em;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  h1 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.4em;
  }
  h3 {
    font-size: 1.3em;
  }
  h4 {
    font-size: 1.2em;
  }
  h5 {
    font-size: 1.1em;
  }
  h1.cover-title {
    font-size: 2em;
  }
}
section.cover .cover-title {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.75);
}
section.intro {
  text-align: center;
  padding: 2em 0;
}
section.intro>div {
  text-align: center;
}
section.full-width>div.grid>div {
  background: rgba(255, 255, 255, 0.8);
  overflow: auto;
}
section.full-width>div.grid>div.dark {
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}
section.full-width>div.grid>div.dark h1, section.full-width>div.grid>div.dark h2, section.full-width>div.grid>div.dark h3 {
  color: var(--accentColor);
}
@media only screen and (min-width:768px) {
  section.full-width {
    background: rgba(0, 0, 0, 0.2);
  }
  section.full-width>div {
    width: 100%;
    max-width: 1920px;
  }
  section.full-width>div.grid.n2>div.grid-right {
    grid-column: 2;
    padding-right: 6vw;
    margin-left: -1vw;
  }
  section.full-width>div.grid.n2>div.grid-left {
    grid-column: 1;
    padding-left: 6vw;
    margin-right: -1vw;
  }
}
@media only screen and (min-width:1540px) {
  section.full-width>div.grid.n2>div.grid-right {
    padding-right: calc(50vw - (1400px/2));
    margin-left: 0;
  }
  section.full-width>div.grid.n2>div.grid-left {
    grid-column: 1;
    padding-left: calc(50vw - (1400px/2));
    margin-right: 0;
  }
}
@media only screen and (min-width:1920px) {
  section.full-width>div.grid.n2>div.grid-right {
    padding-right: calc((1920px - 1400px)/2);
    margin-left: 0;
  }
  section.full-width>div.grid.n2>div.grid-left {
    grid-column: 1;
    padding-left: calc((1920px - 1400px)/2);
    margin-right: 0;
  }
}
.bg-accent {
  background-color: rgba(0,101,123,0.1);
}
.bg-white {
  background-color: #ffffff;
}
section.bg-gradient, .tabs>ul>li.active {
  background-color: #00657b;
  background: linear-gradient(45deg, #00657b 0, #00657b 50%, #8ec045 100%);
  color: #ffffff;
}
section.bg-gradient2 {
  background-color: #FF9738;
  background: linear-gradient(45deg, #FF9738 0, #FF9738 50%, #FFBD39 100%);
}
footer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1920px;
  text-align: center;
  margin: auto;
  padding: 1em 0;
  box-sizing: border-box;
  background-color: #00657b;
  background: linear-gradient(45deg, #00657b 0, #00657b 50%, #8ec045 100%);
  color: #ffffff;
}
@media only screen and (min-width:768px) {
  footer {
    font-size: 80%;
  }
}
@media (min-width: 900px) {
  section.bg-gradient:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(/assets/dimmed.svg) no-repeat 120% center;
    background-size: contain;
    
  
  filter: blur(8px);
  -webkit-filter: blur(8px);
  }
  footer:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(/assets/dimmed.svg) no-repeat -10% center;
    background-size: contain;
    
  
  filter: blur(8px);
  -webkit-filter: blur(8px);
  }
}
section.bg-gradient>div {
  position: relative;
  z-index: 2;
}
footer>div {
  position: relative;
  margin: auto;
  text-align: left;
  width: 90%;
  max-width: 1400px;
  z-index: 2;
}
footer h1, footer h2, footer h3, footer h4, footer h5 {
  color: #ffffff;
}
footer ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
footer ul>li {
  margin: 0;
  padding: 0;
}
footer a {
  color: #ffffff;
  text-decoration: underline;
}
@media only screen and (max-width:767px) {
  footer a {
    display: block;
    padding: 0.25rem;
  }
}
.dotted:after {
  content: "•••••";
  letter-spacing: 0.1em;
  display: block;
  width: 100%;
  color: #FF9738;
  font-size: 1.2em;
}
span.accent {
  color: #FF9738;
  font-family: 'Montserrat', 'Roboto';
  font-weight: bold;
}
span.accent-light {
  color: var(#ffffff);
  font-weight: bold;
}
span.accent-dark {
  color: #00657b;
  font-weight: bold;
}
section.bg-gradient h1, section.bg-gradient h2, section.bg-gradient h3, section.bg-gradient h4, section.bg-gradient h5, section.bg-gradient2 h1, section.bg-gradient2 h2, section.bg-gradient2 h3, section.bg-gradient2 h4, section.bg-gradient2 h5 {
  color: #fff;
}
.pad, .pad1 {
  padding: 1rem;
}
.pad2 {
  padding: 2rem;
}
.pad3 {
  padding: 3rem;
}
.pad4 {
  padding: 4rem;
}
.wpad, .wpad1 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.wpad2 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.wpad3 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.wpad4 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.hpad, .hpad1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.hpad2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hpad3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hpad4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.shaded {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
}
.icon {
  width: 2em;
  height: auto;
  vertical-align: middle;
  margin-bottom: 0.25em;
}
.icon.small {
  width: 1em;
}
.icon.medium {
  width: 4em;
  height: auto;
}
.icon.large {
  width: 8em;
  height: auto;
  display: block;
  clear: both;
  margin: 0 auto;
}
@media only screen and (min-width:768px) {
  .tabs .icon.large {
    float: left;
    clear: left;
    margin-right: 1em;
  }
}
.bubble {
  background: url(/assets/mark-2.svg) no-repeat center center;
  background-size: contain;
  max-width: 10em;
  margin: 0 auto 1em auto;
  padding: 1em;
  display: block;
  clear: both;
}
.bubble>img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
/* PINCODE BLOCK */
.pincode-wrapper {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
  border: 3px solid #fff;
  color: #fff;
  padding: 1rem;
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 1em;
  max-width: 1000px;
  margin: 0 auto;
}
.pincode-wrapper.step1 {
  background: #00657b linear-gradient(45deg, #00657b 0, #00657b 50%, #8ec045 100%);
}
.pincode-wrapper.step2 {
  background: #00657b linear-gradient(45deg, #00657b 0, #00657b 50%, #8ec045 100%);
  align-items: end;
}
.pincode-wrapper.step3 {
  background: #00657b linear-gradient(45deg, #FF9738 0, #FF9738 50%, #FFBD39 100%);
}
.pincode-wrapper label {
  display: block;
  cursor: pointer;
  padding-left: 30px;
  margin: 0.5em auto;
}
.pincode-wrapper label>input[type=checkbox] {
  float: left;
  margin-left: -30px;
  margin-right: 5px;
  width: 25px;
}
.pincode-wrapper .button, .pincode-wrapper .button2 {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .pincode-wrapper.step3>div:nth-child(1) {
    text-align: center;
  }
  .pincode-wrapper.step3>div:nth-child(2) {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', 'Roboto';
  }
}
@media only screen and (min-width:768px) {
  .pincode-wrapper.step1>div:nth-child(1) {
    text-align: right;
    -ms-grid-column:1;
  }
  .pincode-wrapper.step1>div:nth-child(2) {
    -ms-grid-column:3;
  }
  .pincode-wrapper.step1>div:nth-child(3) {
    -ms-grid-column:5;
  }
  
  .pincode-wrapper.step2>div:nth-child(1) {
    grid-column: span 2;
    -ms-grid-column:1;
    -ms-grid-column-span:3;
  }
  .pincode-wrapper.step2>div:nth-child(2) {
    -ms-grid-column:5;
  }
  
  
  .pincode-wrapper.step3>div:nth-child(1) {
    -ms-grid-column:1;
    text-align: right;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'Montserrat', 'Roboto';
  }
  .pincode-wrapper.step3>div:nth-child(2) {
    -ms-grid-column:3;
    position: relative;
    text-align: center;
  }
  .pincode-wrapper.step3>div:nth-child(2)>div {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -70px;
    margin-left: -70px;
    width: 140px;
    height: 140px;
    text-align: left;
    background: url(/assets/mark.svg) no-repeat center center;
    background-size: contain;
  }
  .pincode-wrapper.step3>div:nth-child(2)>div>span {
    display: block;
    position: absolute;
    top: 56px;
    height: 40px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Montserrat', 'Roboto';
    font-weight: bold;
    font-size: 1.25rem;
    color: #00657b;
  }
  .pincode-wrapper.step3>div:nth-child(3) {
    -ms-grid-column:5;
  }
  .pincode-wrapper.step3>div:nth-child(4) {
  }
}
@media only screen and (max-width:767px) {
  .pincode-wrapper.step1, .pincode-wrapper.step2, .pincode-wrapper.step3 {
    grid-template-columns: 1fr;
  }
}
.pincode-wrapper input[type=text], .pincode-wrapper input[type=email] {
  display: block;
  height: 50px;
  width: 100%;
  padding: 5px 5px 5px 40px;
  line-height: 30px;
  border: 0;
  background: #ffffff url(/assets/icons/icon_email.svg) no-repeat 8px 12px;
  border-radius: 10px;
}
.pincode-wrapper button, .pincode-wrapper .button {
  width: 100%;
  display: block;
}
/* /PINCODE BLOCK */
/*
.button, .button2, input[type=button], input[type=submit] {
box-sizing: border-box;
transition: all .3s ease-in-out;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
}
*/
input, button, textarea, select, option {
  font-family: 'Montserrat', 'Roboto';
  font-size: 12pt;;
  line-height: 1.6em;
  box-sizing: border-box;
}
input[type=button], input[type=submit], button, .button {
  display: inline-block;
  min-width: 100px;
  background: #00657b;
  color: #fff;
  border-radius: 5px;
  line-height: 1em;
  text-align: center;
  width: auto;
  border: 0;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  box-sizing: border-box;
  cursor: pointer;
  padding: 1em;
  text-decoration: none;
}
input[type=button]:before, input[type=submit]:before, button:before, .button:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  background-color: #00657b;
  background: -webkit-gradient(linear, left top, right top, from(#00657b), to(#8ec045));
  background: linear-gradient(90deg, #00657b, #8ec045 100%);
}
.button2 {
  display: inline-block;
  min-width: 100px;
  background: #FF9738;
  color: #fff;
  border-radius: 5px;
  line-height: 1em;
  text-align: center;
  width: auto;
  border: 0;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  box-sizing: border-box;
  cursor: pointer;
  padding: 1em;
  text-decoration: none;
}
.button2:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  background-color: #FF9738;
  background: -webkit-gradient(linear, left top, right top, from(#FF9738), to(#FFBD39));
  background: linear-gradient(90deg, #FF9738, #FFBD39 100%);
}
button:hover, input[type=button]:hover, input[type=submit]:hover, .button:hover, .button2:hover {
  color: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .4)
}
button:hover:before, input[type=button]:hover:before, input[type=submit]:hover:before, .button:hover:before, .button2:hover:before {
  -webkit-transform: translateX(0);
  transform: translateX(0)
}
button span, input[type=button] span, input[type=submit] span, .button>span {
  font-family: 'Montserrat', 'Roboto';
  position: relative;
  z-index: 1;
  display: inline-block;
  text-shadow: 0 1px 3px #00657b;
  font-weight: 600;
}
.button2 span {
  font-family: 'Montserrat', 'Roboto';
  position: relative;
  z-index: 1;
  display: inline-block;
  text-shadow: 0 1px 3px #FF9738;
  font-weight: 600;
}
button.small, .button.small, .button2.small {
  min-width: 0;
  padding: 0.5em;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
}
img.t360 {
  max-width: 280px;
  height: auto;
}
/* overrulers, !important */
.mb0 {
  margin-bottom: 0 !important;
}
.mb1 {
  margin-bottom: 1rem !important;
}
.mb2 {
  margin-bottom: 2rem !important;
}
.mb3 {
  margin-bottom: 3rem !important;
}
.mb4 {
  margin-bottom: 4rem !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mt1 {
  margin-top: 1rem !important;
}
.mt2 {
  margin-top: 2rem !important;
}
.mt3 {
  margin-top: 3rem !important;
}
.mt4 {
  margin-top: 4rem !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pb1 {
  padding-bottom: 1rem !important;
}
.pb2 {
  padding-bottom: 2rem !important;
}
.pb3 {
  padding-bottom: 3rem !important;
}
.pb4 {
  padding-bottom: 4rem !important;
}
.pt0 {
  padding-top: 0 !important;
}
.pt1 {
  padding-top: 1rem !important;
}
.pt2 {
  padding-top: 2rem !important;
}
.pt3 {
  padding-top: 3rem !important;
}
.pt4 {
  padding-top: 4rem !important;
}
.no-bg {
  background: none !important;
}
header {
  transition: all 0.2s ease-in-out;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .25);
  position: fixed;
  z-index: 1030;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  box-sizing: border-box;
}
  header.nav-up {
    top: 0;
    padding: 0 0;
  }
@media only screen and (max-height:900px) and (orientation: portrait) {
  header.nav-up {
    top: -100px;
    padding: 0 0;
  }
}
@media only screen and (max-height:640px) {
  header.nav-up {
    top: -100px;
    padding: 0 0;
  }
}
.menu-opened header.nav-up {
  top: 0;
}
/*
@media only screen and (max-height:767px) {
.nav-up {
top: -100px;
}
}
@media only screen and (min-height:768px) {
.nav-up {
padding: 0.5em 0;
}
}
*/
/* modal */
.modal-opened, .modal-opened body {
  overflow: hidden;
}
.overlay {
  display: none;
}
.modal-opened .overlay {
}
.modal {
  display: none;
}
.modal-opened .modal {
}
/* /modal */
header>nav {
  margin: auto;
  text-align: left;
  width: 90%;
  max-width: 1400px;
  line-height: 1;
  position: relative;
}
header>nav>#logo {
  width: auto;
  display: block;
  float: left;
  margin: 0.1em auto;
  background: url(/assets/logo.svg) no-repeat left center;
  background-size: contain;
  padding: 0.5rem 0 0.5rem 3rem;
  font-size: 1.5rem;
  color: #00657b;
  text-decoration: none;
}
header>nav>#logo>span {
  display: block;
  font-size: 0.75rem;
}
header nav ul.menu {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
header nav ul.menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
header nav ul.menu li a {
  display: block;
  padding: 1rem;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #00657b;
  font-family: 'Montserrat', 'Roboto';
}
@media only screen and (min-width:1301px) {
  header nav {
  	width: 96%;
  }
  header nav #nav-toggle {
    display: none;
  }
  header nav ul.menu>li>a:after {
    display: block;
    width: 0;
    content: '';
    height: 3px;
    background: #FF9738;
    -webkit-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out;
    margin-top: 2px;
  }
  header nav ul.menu>li.selected>a:after, header nav ul.menu>li:hover>a:after {
    width: 100%;
  }
  header nav ul.menu {
    margin-left: 2rem;
    margin-right: 50px;
  }
  header nav ul.menu>li.nav-extra {
    display: none;
  }
}
@media only screen and (max-width:1300px) {
  header nav #nav-toggle {
    display: block;
    float: left;
    margin: 0 20px 0 0;
    cursor: pointer;
    width: 20px;
    height: 46px;
    position: relative;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out
  }
  header nav #nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #00657b;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out
  }
  header nav #nav-toggle span:nth-child(1) {
    top: 19px;
  }
  header nav #nav-toggle span:nth-child(2) {
    top: 24px;
  }
  header nav #nav-toggle span:nth-child(3) {
    top: 29px;
  }
  header nav ul.menu {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    display: none;
    clear: both;
    padding: 2em 0;
    width: 100%;
  }
  header nav ul.menu li {
    display: block;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    padding: 1px 0 1px 0;
  }
  .menu-opened, .menu-opened body {
    overflow: hidden;
  }
  .menu-opened header {
    height: 100vh;
    padding: 1.5rem 0 0 0;
    overflow: auto;
    background: #00657b;
    color: #ffffff;
  }
  .menu-opened header nav #logo {
    color: #ffffff;
  }
  .menu-opened header nav #nav-toggle span {
    border-radius: 1px;
    background: #ffffff;
  }
  .menu-opened header nav #nav-toggle span:nth-child(1) {
    top: 22px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
  }
  .menu-opened header nav #nav-toggle span:nth-child(2) {
    top: 22px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
  .menu-opened header nav #nav-toggle span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }
  .menu-opened header nav ul.menu {
    display: block;
    padding: 2em 0;
    margin: 0;
  }
  .menu-opened header nav ul.menu li a {
    padding: 1rem 0.5rem;
    color: #ffffff;
  }
  .menu-opened header nav ul.menu li a:hover {
    background: rgba(255, 255, 255, .1);
  }
  .menu-opened header nav ul.menu li.nav-extra {
    display: block;
    color: #ffffff;
  }
  .menu-opened header nav ul.menu li.nav-extra span {
    display: block;
    padding: 1rem 0.5rem;
    color: #ffffff;
  }
}
/* TABS */
.tabs {
  display: block;
  position: relative;
  text-align: left;
}
.tabs>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs>ul>li {
  margin: 0 2px 0 0;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.1);
  list-style: none;
  display: inline-block;
  transition: background 0.2s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width:900px) {
  .tabs>ul>li {
    display: block;
    clear: both;
    margin: 0 0 1px 0;
  }
}
.tabs>.tab-content {
  padding: 2rem;
  border: 1px solid #00657b;
}
.tabs .tab-content div {
}
.tabs .tab-content div:not(.active) {
  height: 0;
  overflow: hidden;
  display: none;
}
.tabs>ul>li.active {
}
.tabs>.tab-content>div.active {
  display: block;
}
/* /TABS */
.function-key {
  box-sizing: border-box;
  display: inline-block;
  width: 3em;
  height: 3em;
  margin: auto 2px;
  font-size: 200%;
  font-weight: bold;
  line-height: 0.1em;
  border: 2px solid #00657b;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #00657b;
  text-align: center;
  position: relative;
}
.function-key>span {
  position: absolute;
  width: 100%;
  height: 0;
  text-align: center;
  left: 0;
  top: 50%;
}
.bg-gradient .function-key {
  color: #ffffff;
  border-color: #ffffff;
}
td, th {
  padding: 15px 5px;
  text-align: left;
  vertical-align: middle;
}
#dialin-numbers tbody>tr>td {
}
#dialin-numbers tbody>tr:nth-child(odd)>td {
  background: rgba(0,101,123,0.1);
}
#dialin-numbers tbody>tr>td:nth-child(3) {
  font-weight: bold;
}
#dialin-numbers img {
  max-height: 25px;
  max-width: 32px;
}
@media only screen and (max-width:767px) {
  #dialin-numbers td:last-child, #dialin-numbers th:last-child {
    display: none;
  }
}
#dialin-numbers sup {
  display: inline-block;
  padding: 2px 5px;
  font-size: 0.75rem;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  background-color: #FF9738;
  background: -webkit-gradient(linear, left top, right top, from(#FF9738), to(#FFBD39));
  background: linear-gradient(90deg, #FF9738, #FFBD39 100%);
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
@media only screen and (max-width:767px) {
  .hide-on-mobile, .show-on-large {
    display: none !important;
  }
}
@media only screen and (min-width:768px) {
  .show-on-mobile, .hide-on-large {
    display: none !important;
  }
}
dl.faq {
  margin: 1em;
  padding: 0;
  text-align: left;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  background: rgb(255,255,255);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
dl.faq>dt {
  font-weight: bold;
  display: block;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}
dl.faq>dd {
  padding: 0 0;
  margin: 0 0;
  display: block;
  height: 0;
  overflow: hidden;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}
dl.faq.open {
  background-color: rgba(0,101,123,0.1);
  margin: 5px 0 10px 0;
  padding: 1em;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
}
dl.faq.open > dt {
  color: #00657b;
}
dl.faq.open > dd {
  height: auto;
  padding: 0.5em 0;
  color: rgba(0,0,0,0.8);;
}
.rounded {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.phonenumber {
  font-weight: bold;
  white-space: nowrap;
}
textarea {
  font-family: 'Montserrat', 'Roboto';
  font-size: 12pt;;
  color: rgba(0,0,0,0.8);;
  line-height: 1.6em;
  box-sizing: border-box;
}
label.fw {
  display: block;
  float: left;
  clear: left;
  width: 30%;
  margin-right: 1em;
  text-align: right;
}
@media only screen and (max-width:767px) {
  label.fw {
    display: block;
    float: none;
    width: auto;
    margin-right: 0;
    text-align: left;
    clear: both;
  }
}
pre {
  max-width: 100%;
  overflow: scroll;
  font-family: 'Montserrat', 'Roboto';
  font-size: 12pt;;
  color: rgba(0,0,0,0.8);;
  line-height: 1.6em;
  box-sizing: border-box;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
@media only screen and (max-width:399px) {
  body, html, input, textarea, pre {
    font-size: 11pt;
  }
  .pad1 {
    padding: 10px;
  }
  .pad2 {
    padding: 15px;
  }
  .pad3 {
    padding: 20px;
  }
  .pad4 {
    padding: 25px;
  }
  header>nav>#logo {
    font-size: 1.25rem;
    padding: 0.1rem 0 0.1rem 2rem;
    margin-top: 0.75rem;
  }
}
ul.grid {
  list-style: none;
  grid-auto-rows: auto;
  padding: 0;
}
ul.grid>li {
  list-style: none;
}
.errorbox {
  padding: 0.5em;
  background-color: rgba(255, 0, 0, 0.1);
  color: rgb(255, 0, 0);
}
form .error {
  border: 1px solid rgb(255, 0, 0);
}
ul.inline {
  padding: 0;
}
ul.inline>li {
  display: inline-block;
  margin: auto 0.5em;
}
/* country nav */
header nav #countrynav {
  position: absolute;
  right: 0;
  top: 0;
}
header nav #countrynav>div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1041;
  height: 53px;
  padding: 1rem;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  text-align: right;
  color: #00657b;
  font-family: 'Montserrat', 'Roboto';
  white-space: nowrap;
}
header nav #countrynav>ul {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  padding: 60px 60px 20px 0;
  list-style: none;
  margin: 0;
  width: auto;
  max-height: 60vh;
  overflow: auto;
  background: none;
  box-shadow: 0;
  z-index: 1040;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
header nav #countrynav>ul>li {
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}
header nav #countrynav>ul>li a {
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  text-decoration: none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
header nav #countrynav>ul>li a>img {
  margin-right: 0.5em;
}
header nav #countrynav:hover>ul {
  display: block;
  height: auto;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .25);
}
@media only screen and (max-width:1300px) {
  header {
    max-width: 500px;
  }
  header nav #countrynav>ul {
    max-height: 50vh;
  }
  header nav #countrynav>ul>li a {
    padding: 1rem;
  }
  .menu-opened header nav #countrynav>div {
    color: #ffffff;
  }
  .menu-opened header nav #countrynav:hover>div {
    color: #00657b;
  }
  /*
  .menu-opened header nav #countrynav>ul {
    background: #00657b;
  }
  .menu-opened header nav #countrynav>ul>li a {
    color: #ffffff;
  }
  */
}
.no-overflow {
  overflow: hidden;
}


section.alert {
    background: rgba(255,0,0,0.75);
    color: #ffffff;
  font-weight: bold;
}
section.alert h3 {
    color: #ffffff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
section.notify {
    background: #00657b;
    color: #ffffff;
  font-weight: bold;
}
section.notify h3 {
    color: #ffffff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}