/****************************************************************************************************/
/** WordDive website stylesheet
/**
/** README: This stylesheet is desktop-first (lg)!
/** For xxs, xs, sm and md: use media-query blocks at the end of the document.
/**
/** README: Here is the base font-size for rem units!
/** Only use rem-units in this document (no pixels anymore)!
/** Other relative units like % or vw are still ok.
/** 1 rem = "base-font-size" px
/** 2 rem = 40px, .5 rem = 10px etc.
/****************************************************************************************************/
html {
  font-size: 20px;
}

/****************************************************************************************************/
/** Custom fonts
/****************************************************************************************************/
@font-face {
  font-family: "VAGRundschriftD-Lig";
  src: url("fonts/VAGRundschriftD-Lig/36B550_0_0.eot");
  src: url("fonts/VAGRundschriftD-Lig/36B550_0_0.eot?#iefix") format("embedded-opentype"),
    url("fonts/VAGRundschriftD-Lig/36B550_0_0.woff2") format("woff2"),
    url("fonts/VAGRundschriftD-Lig/36B550_0_0.woff") format("woff"),
    url("fonts/VAGRundschriftD-Lig/36B550_0_0.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Black";
  src: url("fonts/Lato/Lato-Black.ttf");
  src: url("fonts/Lato/Lato-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Bold";
  src: url("fonts/Lato/Lato-Bold.ttf");
  src: url("fonts/Lato/Lato-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Hairline";
  src: url("fonts/Lato/Lato-Hairline.ttf");
  src: url("fonts/Lato/Lato-Hairline.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Heavy";
  src: url("fonts/Lato/Lato-Heavy.ttf");
  src: url("fonts/Lato/Lato-Heavy.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Italic";
  src: url("fonts/Lato/Lato-Italic.ttf");
  src: url("fonts/Lato/Lato-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-LightItalic";
  src: url("fonts/Lato/Lato-LightItalic.ttf");
  src: url("fonts/Lato/Lato-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-MediumItalic";
  src: url("fonts/Lato/Lato-MediumItalic.ttf");
  src: url("fonts/Lato/Lato-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Semibold";
  src: url("fonts/Lato/Lato-Semibold.ttf");
  src: url("fonts/Lato/Lato-Semibold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Thin";
  src: url("fonts/Lato/Lato-Thin.ttf");
  src: url("fonts/Lato/Lato-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-BlackItalic";
  src: url("fonts/Lato/Lato-BlackItalic.ttf");
  src: url("fonts/Lato/Lato-BlackItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-BoldItalic";
  src: url("fonts/Lato/Lato-BoldItalic.ttf");
  src: url("fonts/Lato/Lato-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-HairlineItalic";
  src: url("fonts/Lato/Lato-HairlineItalic.ttf");
  src: url("fonts/Lato/Lato-HairlineItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-HeavyItalic";
  src: url("fonts/Lato/Lato-HeavyItalic.ttf");
  src: url("fonts/Lato/Lato-HeavyItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato", sans-serif;
  font-weight: lighter;
  src: url("fonts/Lato/Lato-Light.ttf");
  src: url("fonts/Lato/Lato-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Medium";
  src: url("fonts/Lato/Lato-Medium.ttf");
  src: url("fonts/Lato/Lato-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-Regular", sans-serif;
  src: url("fonts/Lato/Lato-Regular.ttf");
  src: url("fonts/Lato/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato/Lato-Regular.ttf");
  src: url("fonts/Lato/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-SemiboldItalic";
  src: url("fonts/Lato/Lato-SemiboldItalic.ttf");
  src: url("fonts/Lato/Lato-SemiboldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato-ThinItalic";
  src: url("fonts/Lato/Lato-ThinItalic.ttf");
  src: url("fonts/Lato/Lato-ThinItalic.ttf") format("truetype");
}

/****************************************************************************************************/
/** Fixing padding-right issue
/****************************************************************************************************/
body.wd {
  padding-right: 0 !important;
  width: 100vw;
  overflow-x: hidden;
}

/****************************************************************************************************/
/** Animation duration helpers
/****************************************************************************************************/
.superfast {
  -webkit-animation-duration: .5s !important;
  -webkit-animation-delay: 0s !important;
  animation-duration: .5s !important;
  animation-delay: 0s !important;
}

.fast {
  -webkit-animation-duration: 1s !important;
  -webkit-animation-delay: 0s !important;
  animation-duration: 1s !important;
  animation-delay: 0s !important;
}

.slow {
  -webkit-animation-duration: 3s !important;
  -webkit-animation-delay: 1s !important;
  animation-duration: 3s !important;
  animation-delay: 0s !important;
}

.superslow {
  -webkit-animation-duration: 6s !important;
  -webkit-animation-delay: 3s !important;
  animation-duration: 6s !important;
  animation-delay: 3s !important;
}

/****************************************************************************************************/
/** Bootstrap extras
/****************************************************************************************************/
.col-md-6-left {
  padding-right: 2rem;
}

.col-md-6-right {
  padding-left: 2rem;
}

/****************************************************************************************************/
/** Typography
/****************************************************************************************************/
body.wd h1,
body.wd .main-title {
  font-size: 3rem;
  font-family: "Lato-Bold", sans-serif;
  text-shadow: none;
}
body.wd .main-title.long-words {
  font-size: 2.6rem;
}
body.wd h2,
body.wd .secondary-title {
  font-size: 2rem;
  font-family: "VAGRundschriftD-Lig", sans-serif;
  text-shadow: none;
}
body.wd h3 {
  font-size: 1.7rem;
  font-family: "VAGRundschriftD-Lig", sans-serif;
  text-shadow: none;
}
body.wd h4 {
  font-size: 1.5rem;
  font-family: "VAGRundschriftD-Lig", sans-serif;
  text-shadow: none;
}
body.wd h5 {
  font-size: 1.3rem;
  font-family: "Lato-Bold", sans-serif;
  text-shadow: none;
}
body.wd h6 {
  font-size: 1.1rem;
  font-family: "Lato-Bold", sans-serif;
  text-shadow: none;
}
body.wd p, body.wd {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  text-shadow: none;
}
body.wd p.small {
  font-size: .9rem;
  font-family: "Lato", sans-serif;
  text-shadow: none;
}
body.wd p.bigger {
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
  text-shadow: none;
}

/****************************************************************************************************/
/** Typography: privacy and terms
/****************************************************************************************************/
body.wd #privacyModal h1,
body.wd #termsModal h1 {
  font-size: 1.5rem;
  font-family: "Lato-Bold", sans-serif;
  text-shadow: none;
}
body.wd #privacyModal h2,
body.wd #termsModal h2 {
  font-size: 1.25rem;
  font-family: "VAGRundschriftD-Lig", sans-serif;
  text-shadow: none;
}
body.wd #privacyModal h3,
body.wd #termsModal h3 {
  font-size: 1rem;
  font-family: "VAGRundschriftD-Lig", sans-serif;
  text-shadow: none;
}
body.wd #privacyModal h4,
body.wd #termsModal h4 {
  font-size: .75rem;
  font-family: "VAGRundschriftD-Lig", sans-serif;
  text-shadow: none;
}
body.wd #privacyModal h5,
body.wd #termsModal h5 {
  font-size: .75rem;
  font-family: "Lato-Bold", sans-serif;
  text-shadow: none;
}
body.wd #privacyModal h6,
body.wd #termsModal h6 {
  font-size: .75rem;
  font-family: "Lato-Bold", sans-serif;
  text-shadow: none;
}
body.wd #privacyModal,
body.wd #privacyModal p,
body.wd #termsModal,
body.wd #termsModal p {
  font-size: .75rem;
  font-family: "Lato", sans-serif;
  text-shadow: none;
}

/****************************************************************************************************/
/** General popup styles
/****************************************************************************************************/
body.wd .modal-content .modal-header button.close {
  background-image: url("//d25ykh1g2lqhbg.cloudfront.net/img/dashboard/closeButton.png");
  background-size: 2.05rem 2.15rem;
  width: 2.05rem;
  height: 2.15rem;
  top: .75rem;
  right: .75rem;
}

body.wd .modal-content hr {
  border-top: .05rem solid #eeeeee;
  background: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 0;
}

body.wd #privacyModal .modal-content .close > span,
body.wd #termsModal .modal-content .close > span {
  display: none;
}

/****************************************************************************************************/
/** General full-width sections
/****************************************************************************************************/
body.wd .container-fluid.wd-page-content {
  padding-right: 0;
  padding-left: 0;
}

body.wd .wd-section {
  padding: 1.5rem 0;
  position: relative;
  background: rgb(13, 158, 149);
  background: -moz-linear-gradient(top, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%);
  background: linear-gradient(to bottom, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr="#0d9e95", endColorstr="#002d2b", GradientType=0);
}

body.wd:not(.wd-home) .wd-page-content .wd-section:last-child {
  padding-bottom: 3rem;
}

body.wd .wd-section .main-title {
  padding-top: 4rem;
  padding-bottom: .5rem;
  margin: 0;
}

body.wd .wd-section .secondary-title {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

body.wd .wd-section p {
  padding-top: 1rem;
  padding-bottom: .5rem;
  margin: 0;
}

body.wd .wd-section p.no-secondary-title {
  padding-top: 2.5rem;
}

body.wd .wd-section#wd-section-1 {
  padding-top: 0;
}

body.wd .wd-section.bg-white {
  background: #ffffff;
  color: #313940;
  text-shadow: none;
}

body.wd .wd-section.bg-white h1,
body.wd .wd-section.bg-white h2,
body.wd .wd-section.bg-white h3,
body.wd .wd-section.bg-white h4,
body.wd .wd-section.bg-white h5,
body.wd .wd-section.bg-white h6 {
  color: #313940;
  text-shadow: none;
}

body.wd .wd-section.bg-white a {
  color: #00dcc6;
}

body.wd .wd-section.bg-white,
body.wd .wd-section.bg-with-gradient {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 85%, rgba(241, 241, 241, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 85%, rgba(241, 241, 241, 1) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 85%, rgba(241, 241, 241, 1) 100%);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr="#ffffff", endColorstr="#f1f1f1", GradientType=0);
}

body.wd .wd-section .av-container .section-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: top right !important;
  mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
  mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
}

body.wd .wd-section .av-container .section-background-wall-break {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: bottom right !important;
  background-size: 40% !important;
}

body.wd .wd-section-divider {
  position: relative;
  top: 0;
  left: 50%;
}

body.wd .wd-section-divider .triangle {
  position: absolute;
  top: -.05rem;
  left: -1rem;
  width: 0;
  height: 0;
  z-index: 1;
  border-top: 1rem dashed #002d2b;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
}

body.wd hr.content-divider {
  border: 0;
  border-bottom: .05rem dotted #dfdfdf;
  background: none;
  height: 0;
  margin: 1rem 0 1rem 0;
}

body.wd .wd-section#wd-section-1 .av-container .section-background {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/backgrounds/WordDivePatentedMethod.jpg");
}

body.wd-home .wd-section#wd-section-1,
body.wd .wd-section#wd-section-2,
body.wd .wd-section#wd-section-3 {
  min-height: 54rem;
}

body.wd:not(.wd-home) .wd-section#wd-section-1 {
  min-height: 48.3rem;
}

body.wd .wd-section#wd-section-2 {
  z-index: 2;
}

body.wd-home .wd-section#wd-section-1 .wd-section-content {
  margin-top: 5.8rem;
}

body.wd .wd-section#wd-section-1 .scroller {
  width: 8.5rem;
  height: 3.5rem;
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/home/scroller.gif");
  background-color: transparent;
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-size: 1.5rem 2.5rem;
  text-transform: uppercase;
  font-size: .7rem;
  color: #c5c5c5;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-position: 50% 0;
  font-weight: bold;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  body.wd .wd-section#wd-section-1 .scroller.business {
    left: 45%;
  }
}

/****************************************************************************************************/
/** Popup: Offer language selection popup
/****************************************************************************************************/
body.wd .wd-popup#offer-language-popup h2#offer-language-selection-subtitle {
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
}

body.wd .wd-popup#offer-language-popup .select-language-list .select-language-link {
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  text-decoration: none !important;
}

body.wd .wd-popup#offer-language-popup .select-language-list .select-language-flag-img {
  transform: scale(.902) translateX(-0.2rem);
}

body.wd .wd-popup#offer-language-popup .select-language-list .select-language-flag-title {
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  text-transform: capitalize;
  font-size: .8rem;
}

/****************************************************************************************************/
/** HomePage
/****************************************************************************************************/
body.wd-home h1.submerged_heading,
body.wd-home h2.submerged_heading {
  font-size: 3rem !important;
  font-family: "Lato-SemiBold", sans-serif !important;
  text-shadow: 0 .15rem rgba(0, 0, 0, .5) !important;
}

body.wd-home .wd-section-heading {
  word-wrap: break-word;
}

body.wd-home p.submerged_paragraph {
  font-size: 1.3rem !important;
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
}

body.wd-home p.submerged_paragraph a {
  color: #14e1cc;
}

body.wd-home select#buy-course-select {
  width: 26.5rem;
  max-width: 100%;
}

body.wd-home .wd-section#wd-section-1 .av-container .section-background {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/backgrounds/WordDiveGirlInPark.jpg");
}

body.wd-home .wd-section#wd-section-1 .section-background-wall-break {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/backgrounds/WordDiveBreakLanguageBarriers.png");
}

body.wd-home .wd-section#wd-section-1 .wall-break .break-headline {
  font-weight: 700;
  font-style: normal;
  font-size: 5rem;
  padding-top: 8rem;
}

body.wd-home .wd-section#wd-section-1 .wall-break p {
  font-weight: 300;
  font-size: 1.2rem;
}

body.wd-home .wd-section#wd-section-1 .wall-break .w-button {
  margin-top: 2.4rem;
}

body.wd-home .wd-section#wd-section-1 .wall-break .alternative-link {
  display: inline-block;
  margin: 2.4rem 2.5rem 1rem;
}

body.wd-home .wd-section#wd-section-1.wall {
  background-image: linear-gradient(#00afa7, #00706b);
}

body.wd-home .wd-section#wd-section-1 .wd-section-content a.select-language-link {
  color: #ffffff;
  text-shadow: 0 .1rem rgba(0, 0, 0, .5) !important;
}

body.wd-home .wd-section#wd-section-1 .wd-section-content a.select-language-link:hover,
body.wd-home .wd-section#wd-section-1 .wd-section-content a.select-language-link:focus {
  text-decoration: none;
}

body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item {
  width: 17%;
  text-align: center;
  margin: .25rem;
  display: inline-block;
  margin-bottom: 2rem;
}

body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-link {
  text-decoration: none !important;
}

body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-img {
  height: auto;
  width: 5.3rem;
}

body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-title {
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  font-size: 1.3rem;
  margin-top: .5rem;
  font-family: "Lato", sans-serif;
  font-weight: lighter;
}

body.wd-home .wd-section#wd-section-1 #purchase-flag-select .select-language-flag-item {
  width: 6%;
  text-align: center;
  margin: .25rem;
  display: inline-block;
  margin-bottom: 2rem;
}

body.wd-home .wd-section#wd-section-1 #purchase-flag-select .select-language-flag-item .select-language-flag-img {
  height: auto;
  width: 2.5rem;
}

body.wd-home .wd-section#wd-section-1 .wd-section-content h1.first-heading {
  margin-top: 2rem;
  margin-bottom: 0;
}

body.wd-home .wd-section#wd-section-1 .wd-section-content #free-sample-select {
  margin: 3.6rem -.25rem 1.75rem -.25rem;
}

body.wd-home .wd-section#wd-section-1 .wd-section-content #purchase-flag-select {
  margin: 3.6rem -.25rem 1.75rem -.25rem;
}

body.wd-home .wd-section#wd-section-1 .select-language-list {
  margin-top: 3rem;
}

body.wd-home .wd-section#wd-section-1 .b-button.open-popup-link {
  margin-top: 6.5rem;
}

body.wd-home .wd-section#wd-section-2 #illustrationsWrapper {
  height: 100%;
  width: .05rem;
  position: absolute;
  left: 50%;
}

body.wd-home .wd-section#wd-section-2 #illustrationsWrapper .av-container {
  position: absolute;
  bottom: 0;
  left: 0;
}

body.wd-home .wd-section#wd-section-2 #illustrationsWrapper .av-container .section-sliding-element#illustrationDesktop {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/home/illustrationLaptop.png");
  background-size: auto 29.75rem;
  background-repeat: no-repeat;
  width: 45rem;
  height: 31.25rem;
  position: absolute;
  bottom: 0;
  left: 13.75rem;
}

body.wd-home .wd-section#wd-section-2 #illustrationsWrapper .av-container .section-sliding-element#illustrationMobile {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/home/illustrationMobile.png");
  width: 12.5rem;
  height: 22.75rem;
  position: absolute;
  bottom: 0;
  left: 7rem;
  background-size: auto 21.25rem;
  background-repeat: no-repeat;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select {
  width: 26.5rem;
  height: 3rem;
  max-width: 100%;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-toggle {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: .3rem;
  background: #ffffff;
  border-radius: .2rem;
  box-shadow: none;
  border: 0;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-menu {
  width: 100%;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-toggle a.buy-course-select-item,
body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-menu li a.buy-course-select-item {
  width: 100%;
  display: inline-block;
  color: #383838 !important;
  text-decoration: none !important;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-toggle a.buy-course-select-item {
  padding: .15rem 1rem;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-menu li a.buy-course-select-item {
  padding: .5rem 1rem;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item {
  text-align: center;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item .buy-course-select-item-img {
  float: left;
  height: auto;
  width: 2.2rem;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item .buy-course-select-item-title {
  font-size: .9rem;
  margin-left: -1.5rem;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item .buy-course-select-item-caret {
  float: right;
  margin-top: .5rem;
  margin-right: .25rem;
  border-top-width: .4rem;
  border-right-width: .4rem;
  border-left-width: .4rem;
}

body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-menu li a.buy-course-select-item .buy-course-select-item-caret {
  visibility: hidden;
}

body.wd-home .wd-section#wd-section-2 #norwegian-banner {
  margin-top: 1rem;
}

body.wd-home .wd-section#wd-section-2 #norwegian-banner .vcenter-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 6.5rem;
}

body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-title {
  font-size: 2.1rem !important;
  text-shadow: 0 .1rem rgba(0, 0, 0, .5) !important;
  font-family: "VAGRundschriftD-Lig", sans-serif;
}

body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-logo {
  margin-left: 0;
}

body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-link {
  font-size: 1.3rem !important;
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  color: #14e1cc;
  line-height: 1.2;
  font-weight: 300;
  margin: .75rem 0;
}

body.wd-home .wd-section#wd-section-2 .wd-section-content #buy-course-select {
  margin-top: .75rem;
  height: 3.25rem;
  text-align: center;
  font-size: 1.2rem;
}

body.wd-home .wd-section#wd-section-2 .wd-section-content #buy-course-link {
  margin-top: 5.4rem;
}

body.wd-home .wd-section#wd-section-2 .w-button.buy-course-link {
  margin-top: 2.25rem;
}

body.wd-home .wd-section#wd-section-2 .wd-section-content h2.first-heading {
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}

body.wd-home .wd-section#wd-section-2 .wd-section-content h2.spaced {
  margin-top: 3.3rem;
}

body.wd-home .wd-section#wd-section-2 .wd-section-content #pick-language-title {
  font-size: 2.1rem !important;
  text-shadow: 0 .1rem rgba(0, 0, 0, .5) !important;
}

body.wd-home .wd-section#wd-section-3 .row.testimonial-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

body.wd-home .wd-section#wd-section-3 .row.testimonial-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

body.wd-home .wd-section#wd-section-3 .wd-section-content h2.first-heading {
  margin-top: 2.8rem;
}

body.wd-home .wd-section#wd-section-3 .wd-section-content .stars-wrapper > p {
  margin-top: 2rem;
}

body.wd-home .wd-section#wd-section-3 p.submerged_paragraph {
  font-size: 2.1rem !important;
  max-width: 25rem;
  display: inline-block;
}

body.wd-home .wd-section#wd-section-3 .stars-wrapper .stars > img {
  max-width: 19%;
}

body.wd-home .wd-section p#pick-language-title,
body.wd-home .wd-section p.stars-subtitle {
  font-family: "VAGRundschriftD-Lig", sans-serif;
  text-shadow: 0 .1rem rgba(0, 0, 0, .5) !important;
}

body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-header .testimonial-title,
body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-content .testimonial-text {
  text-align: left;
}

body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-header .testimonial-title {
  font-family: "Lato", sans-serif;
  font-weight: lighter;
  font-size: 1.3rem;
  padding: 0 .2rem;
}

body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-content .testimonial-text {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

body.wd-home .wd-section#wd-section-3 .row.testimonial-row {
  margin-top: 2.2rem;
  margin-bottom: 5rem;
}

body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-content {
  padding: 1rem;
  margin-top: 0;
}

body.wd-home .wd-section#wd-section-4.wd-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

body.wd-home .wd-section#wd-section-4.bg-white .awards-row,
body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-item .awards-item__text-title {
  color: #383838;
  font-size: 1.3rem;
}

body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-media-object-row {
  display: flex;
  align-items: center;
}

body.wd-home .wd-section#wd-section-4 .awards-row .awards-item {
  margin-top: .5rem;
  padding-top: .5rem;
  text-align: left;
}

body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-item .awards-item__text-sub-title {
  color: #858ca8;
  font-size: 1.1rem;
}

body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-item .media-object {
  width: 6.25rem;
  height: auto;
  max-width: 100%;
  margin-top: 1.25;
}

body.wd-home .wd-section#wd-section-4 .awards-row .awards-item .awards-item__text-title {
  font-size: 1.3rem;
}

body.wd-home .wd-section#wd-section-4 .awards-row .awards-item .awards-item__text-title.smaller {
  font-size: 1.1rem !important;
}

/****************************************************************************************************/
/** Static Pages: mobile-app
/****************************************************************************************************/
body.wd-mobile-app .wd-section#wd-section-1 .av-container .section-background {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/backgrounds/WordDiveMobileApp.jpg");
}

body.wd-mobile-app .wd-section#wd-section-1 .wd-section-content .wd-section-content-inner {
  width: 38.5rem;
  max-width: 100%;
}

body.wd-mobile-app .wd-section#wd-section-2 .wd-section-content .wd-section-content-inner#wd-section-try-for-free {
  width: 28.75rem;
  max-width: 100%;
  margin: 0 auto 0 auto;
  padding-top: 2rem;
}

body.wd-mobile-app .wd-section#wd-section-2 .wd-section-content .wd-section-content-inner#wd-section-try-for-free h2.secondary-title {
  padding-bottom: 1.5rem;
}

body.wd-mobile-app .wd-section#wd-section-2 {
  min-height: 67rem;
}

body.wd-mobile-app .wd-section#wd-section-2 .carousel[id^="screenshot-carousel"] {
  margin-top: 4rem;
  margin-bottom: 1rem;
  height: 20rem;
}

body.wd-mobile-app .wd-section#wd-section-2 .carousel[id^="screenshot-carousel"] .carousel-inner {
  height: 100%;
}

body.wd-mobile-app .wd-section#wd-section-2 .carousel[id^="screenshot-carousel"] .carousel-control {
  background: none !important;
  width: 10%;
  color: #707070;
  font-size: 60px;
  opacity: 1;
  text-shadow: none;
}

body.wd-mobile-app .wd-section#wd-section-2 .carousel[id^="screenshot-carousel"] .carousel-control:hover,
body.wd-mobile-app .wd-section#wd-section-2 .carousel[id^="screenshot-carousel"] .carousel-control:active,
body.wd-mobile-app .wd-section#wd-section-2 .carousel[id^="screenshot-carousel"] .carousel-control:focus {
  opacity: .8;
}

body.wd-mobile-app .wd-section#wd-section-2 .carousel[id^="screenshot-carousel"] .carousel-control > .fa {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-desktop .carousel-inner {
  width: 49rem;
  max-width: 80%;
  margin: 0 auto 0 auto;
}

body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-desktop .item .row [class^="col-"] {
  padding: 0 .2rem 0 .2rem;
}

/****************************************************************************************************/
/** Static Pages: about-us
/****************************************************************************************************/
body.wd-about-us .wd-section#wd-section-1 .av-container .section-background {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/backgrounds/WordDiveAboutUs.jpg");
}

body.wd-about-us .wd-section#wd-section-1 .wd-section-content .wd-section-content-inner {
  width: 36.5rem;
  max-width: 100%;
}

body.wd-about-us .wd-section#wd-section-2 hr.content-divider#learn-as-you-go-divider {
  margin-top: 3rem;
}

body.wd-about-us .wd-section#wd-section-3 .testimonial-row {
  width: 40.1rem;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 4rem;
}

body.wd-about-us .wd-section#wd-section-3 .testimonial-row .testimonial-header {
  -webkit-box-shadow: 0 2px 10px 0 rgba(112, 112, 112, .8);
  -moz-box-shadow: 0 2px 10px 0 rgba(112, 112, 112, .8);
  box-shadow: 0 10px 10px 0 rgba(112, 112, 112, .8);
}

body.wd-about-us .wd-section#wd-section-3 .testimonial-row .testimonial-content {
  margin-top: 0;
  -webkit-box-shadow: 0 2px 10px 0 rgba(112, 112, 112, .8);
  -moz-box-shadow: 0 2px 10px 0 rgba(112, 112, 112, .8);
  box-shadow: 0 2px 10px 0 rgba(112, 112, 112, .8);
}


body.wd-about-us .wd-section#wd-section-3 .team {
  padding-top: 4rem;
  text-align: center !important;
}

body.wd-about-us .wd-section#wd-section-3 .team .team-picture {
  display: inline-block;
}

body.wd-about-us .wd-section#wd-section-3 .team .team-info-name {
  font-weight: bold;
  text-align: center !important;
  font-size: 1.1rem;
}

body.wd-about-us .wd-section#wd-section-3 .team .team-info-title {
  font-weight: regular;
  padding-top: 0;
  font-size: 1.1rem;
  text-align: center !important;
}

body.wd-about-us .wd-section#wd-section-3 p#want-to-join-us {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center !important;
  font-size: 1.1rem;
}

/****************************************************************************************************/
/** Static Pages: read-more-entry
/****************************************************************************************************/
body.wd-read-more-entry .wd-section#wd-section-1 .av-container .section-background {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/backgrounds/WordDiveReadMore.jpg");
}

body.wd-read-more-entry .wd-section#wd-section-1 .wd-section-content .wd-section-content-inner {
  width: 38.5rem;
  max-width: 100%;
}

/****************************************************************************************************/
/** Static Pages: open-positions
/****************************************************************************************************/
body.wd-open-positions .wd-section#wd-section-1 .av-container .section-background {
  background: url("/img/backgrounds/WordDiveAtteJuhaHeidi.png");
}

body.wd-open-positions .wd-section#wd-section-2 {
  height: 38rem;
  min-height: auto !important;
}

body.wd-open-positions .wd-section#wd-section-3 {
  height: 37rem;
  min-height: auto !important;
}

body.wd-open-positions .wd-section#wd-section-4 .open-positions-image {
  width: 100%;
  height: auto;
}

body.wd-open-positions .wd-section p.open-positions-links {
  line-height: 2rem;
}

body.wd-open-position .wd-section#wd-section-4 p.open-positions-center-text {
  font-size: 1.2rem;
}

body.wd-open-positions .wd-section#wd-section-5 div#wd-growth-company {
  display: flex;
  justify-content: space-between;
}

/****************************************************************************************************/
/** Static Pages: business
/****************************************************************************************************/
body.wd-business .wd-section#wd-section-1 .av-container .section-background {
  background: url("//d25ykh1g2lqhbg.cloudfront.net/img/business/business_1.jpg");
  mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
  mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
  background-size: auto 100%;
}

body.wd-business .wd-section#wd-section-1 .wd-section-content .wd-section-content-inner {
  width: 36.5rem;
  max-width: 100%;
}

body.wd-business #wd-section-3 {
  min-height: auto !important;
}

body.wd-business ol#business-options-list {
  text-align: left;
  list-style-position: inside;
}

body.wd-business ol#business-options-list li {
  text-indent: -1.25rem;
}

body.wd-business ol#business-options-list .lead {
  margin-bottom: 0;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.235rem;
}

body.wd-business ol#business-options-list .extra {
  display: inline-block;
  padding-top: .5rem;
  padding-bottom: 1rem;
  text-indent: 0;
}

body.wd-business .wd-section#wd-section-2 hr.content-divider#tracking-of-progress-divider {
  margin-top: 3rem;
}

/****************************************************************************************************/
/** Static Pages: open-position entry pages
/****************************************************************************************************/
body.wd-open-position .wd-section#wd-section-1 .av-container .section-background {
  background: url("/img/backgrounds/WordDiveOpenPositionsAll.png");
  mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
  mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
}

body.wd-open-position .wd-section#wd-section-1 .p-no-secondary-title {
  padding-top: 3rem;
}

body.wd-open-position .wd-section#wd-section-2 {
  height: auto !important;
  min-height: auto !important;
  padding-bottom: 6rem;
}

body.wd-open-position .wd-section#wd-section-3 {
  height: auto !important;
  min-height: auto !important;
  padding-bottom: 6rem;
}

body.wd-open-position .wd-section#wd-section-4 {
  padding-bottom: 4rem;
  padding-top: 3rem;
}
/****************************************************************************************************/
/** Wizard Pages: consumer wizard
/****************************************************************************************************/
body.wd-abi-wizard .wd-section #wizard-view-3 .radio,
body.wd-consumer-wizard .wd-section #wizard-questions-view .radio {
  margin-left: 1rem;
}

body.wd-abi-wizard .wd-section #wizard-view-3 hr,
body.wd-consumer-wizard .wd-section #wizard-questions-view hr {
  background: none;
  height: .05rem;
  margin: 1rem 0;
}

body.wd-consumer-wizard .wd-section #wizard-goal-view .bought-language-flag-img {
  height: 3rem;
  margin-right: 1rem;
}

body.wd-consumer-wizard .wd-section #wizard-goal-view #goal-continue-button,
body.wd-consumer-wizard .wd-section #wizard-questions-view #questionnaire-continue-button,
body.wd-consumer-wizard .wd-section #wizard-finished-view #wizard-complete-button {
  margin-top: 1.5rem !important;
}

body.wd-consumer-wizard .wd-section #wizard-goal-view .goal-selection-wrapper {
  padding: 1rem 0 .5rem 0;
}

body.wd-consumer-wizard .wd-section #wizard-goal-view .goal-selection-subtitle {
  padding-top: 0 !important;
}

body.wd-consumer-wizard .wd-section #wizard-questions-view .questionnaire-subtitle {
  padding-bottom: 1.5rem;
}

body.wd-abi-wizard .wd-section #wizard-view-3 #translation-select-box-wrapper,
body.wd-consumer-wizard .wd-section #wizard-questions-view #translation-select-box-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

body.wd-abi-wizard .wd-section #wizard-view-3 #translation-select-box-wrapper .wd-circle-tip,
body.wd-consumer-wizard .wd-section #wizard-questions-view #translation-select-box-wrapper .wd-circle-tip {
  width: 2rem;
}

body.wd-abi-wizard .wd-section #wizard-view-3 #translation-select-box-wrapper .tooltip,
body.wd-consumer-wizard .wd-section #wizard-questions-view #translation-select-box-wrapper .tooltip {
  min-width: 10rem;
}

body.wd-consumer-wizard .wd-section #wizard-finished-view .finished-subtitle {
  padding-bottom: 1.5rem;
}

body.wd-consumer-wizard .wd-section #wizard-finished-view .wizard-complete-text {
  padding-top: 1.5rem;
}

body.wd-consumer-wizard .wd-section #wizard-finished-view .appstore-links .appstore-link a {
  text-decoration: none;
}

body.wd-consumer-wizard .wd-section #wizard-finished-view .appstore-links .appstore-link:first-child {
  margin-right: .5rem;
}

/****************************************************************************************************/
/** Wizard Pages: prep wizard
/****************************************************************************************************/
body.wd-abi-wizard .wd-section #wizard-view-2 .goals-item-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .info-view .secondary-title {
  padding-bottom: 1rem !important;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  border: 2px solid #07b9b0;
  margin-bottom: 1rem;
  cursor: pointer;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item.selected {
  background: #07b9b0;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .goal-icon {
  width: 20%;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .goal-icon .goal-icon-img {
  width: 3.75rem;
  height: 3.75rem;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .goal-icon .goal-icon-img img {
  height: 100%;
  width: 100%;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .goal-icon .goal-time-container {
  font-size: .8rem !important;
  width: 3.75rem;
  text-align: center;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .goal-description {
  width: 80%;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .goal-description .goal-description-title {
  color: #28414f !important;
  font-size: 1rem !important;
  margin-top: .5rem;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item.selected .goal-description .goal-description-title {
  color: #ffffff !important;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .goal-description .goal-description-paragraph {
  color: #28414f !important;
  font-size: .8rem !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item.selected .goal-description .goal-description-paragraph {
  color: #ffffff !important;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .goal-item .recommended-goal-ribbon {
  background: #f36c20;
  color: #ffffff;
  text-transform: uppercase;
  font-size: .6rem;
  font-weight: normal;
  padding: .15rem 0 .2rem .5rem;
  display: inline-block;
  position: absolute;
  top: -.65rem;
  left: 5.5rem;
  height: 1.1rem;
  width: auto;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .recommended-goal-ribbon::before {
  content: "";
  background-image: url(//d25ykh1g2lqhbg.cloudfront.net/images/sprite.png);
  background-position: -.8rem -2.05rem;
  width: 1rem;
  height: 1.1rem;
  display: block;
  position: absolute;
  left: -1rem;
  top: .25rem;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .recommended-goal-ribbon::after {
  content: "";
  background-image: url(//d25ykh1g2lqhbg.cloudfront.net/images/sprite.png);
  background-position: -1.8rem -2.05rem;
  width: .8rem;
  height: 1.1rem;
  display: block;
  position: absolute;
  right: -.8rem;
  top: 0;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .wd-checkbox#abiConditionsInput-checkbox .checkmark {
  margin-top: .3rem;
  border: 1px solid #139a92 !important;
}

body.wd-abi-wizard .wd-section #wizard-view-2 .wd-checkbox#abiConditionsInput-checkbox .checkbox-label-text {
  font-size: .85rem;
  display: inline-block;
}

/****************************************************************************************************/
/** Sitemap page
/****************************************************************************************************/
body.wd-sitemap ul.sitemap-list li {
  margin-bottom: 1rem;
}

/****************************************************************************************************/
/** Purchase page
/****************************************************************************************************/
/* @media only screen and (max-height: 1396px) {
  body.wd-purchase .wizard-footer {
    background: rgb(33, 168, 158);
    background: -moz-linear-gradient(top, rgba(33, 168, 158, 1) 0%, rgba(31, 160, 151, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(33, 168, 158, 1) 0%, rgba(31, 160, 151, 1) 100%);
    background: linear-gradient(to bottom, rgba(33, 168, 158, 1) 0%, rgba(31, 160, 151, 1) 100%);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#21a89e", endColorstr="#1fa097", GradientType=0);
    position: fixed;
    bottom: 0;
    width: 100vw;
    left: 0;
    z-index: 999;
  }

  body.wd-purchase .wizard-footer .wizard-footer-content {
    width: 1170px;
    margin: auto;
  }

  body.wd-purchase .wizard-footer .wizard-footer-content .row.wizard-footer-actions {
    width: 33rem;
    margin: 0 .75rem;
    max-width: calc(100vw - .75rem);
  }

  body.wd-purchase p.wizard-footer-copyright {
    font-size: .7rem !important;
  }

  body.wd-purchase .wizard-content {
    margin-bottom: 10rem;
  }

  body.wd-purchase .wd-footer {
    display: none !important;
  }
}

body.wd-purchase {
  height: 100vh;
  background: rgb(31, 160, 151);
}

body.wd-purchase .navbar.wd-header .header-logo {
  margin-top: .5rem;
}

body.wd-purchase .navbar.wd-header {
  padding: 1rem;
  background: rgb(33, 168, 158);
  background: -moz-linear-gradient(top, rgba(33, 168, 158, 1) 0%, rgba(31, 160, 151, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(33, 168, 158, 1) 0%,rgba(31, 160, 151, 1) 100%);
  background: linear-gradient(to bottom, rgba(33, 168, 158, 1) 0%, rgba(31, 160, 151, 1) 100%);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr="#21a89e", endColorstr="#1fa097", GradientType=0);
}

body.wd-purchase .wizard-footer {
  padding: 1rem 0;
}

body.wd-purchase .wizard-footer .w-button.disabled {
  background-color: #cccccc !important;
  cursor: default !important;
}

body.wd-purchase .wd-section {
  min-height: 4.65rem !important;
}

body.wd-purchase .wd-section .wd-section-content-inner {
  max-width: 33rem;
}

body.wd-purchase .wd-section .wizard-step-wrapper .wizard-footer-content .row.wizard-footer-actions {
  display: flex;
  align-items: center;
}

body.wd-purchase .wd-section .wizard-step-wrapper .wizard-footer-content .row.wizard-footer-actions .home-link {
  font-size: .9rem;
  margin-top: .5rem;
  font-weight: normal;
  cursor: pointer;
}

body.wd-purchase .wd-section .wizard-step-with-sticky-footer .wizard-content {
  margin-bottom: 5.5rem;
}

body.wd-purchase .wd-section.purchase .wizard-form .form-control-feedback {
  top: 1.85rem;
}

body.wd-purchase .wd-section .wizard-step-with-sticky-footer .wizard-footer {
  position: fixed;
  bottom: 0;
  max-width: 100vw;
  width: 33rem;
  max-height: 5.5rem;
  height: 5.5rem;
  margin-left: -.75rem;
  margin-right: -.75rem;
  padding-left: .75rem;
  padding-right: .75rem;
}

body.wd-purchase .wd-section .wizard-step-with-sticky-footer .wizard-footer .wizard-footer-actions {
  padding: 1rem 0;
}

body.wd-purchase .wd-section#wd-section-1.cart-wrapper {
  background: #1db5ab;
  padding: 1rem 0;
  min-height: 4.65rem !important;
}

body.wd-purchase .wd-section#wd-section-1.cart-wrapper .cart {
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

body.wd-purchase #wd-section-2-3-wrapper {
  position: relative;
  min-height: 59.25rem;
  background: rgb(13, 158, 149);
  background: -moz-linear-gradient(top, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%);
  background: linear-gradient(to bottom, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr="#0d9e95", endColorstr="#002d2b", GradientType=0);
}

body.wd-purchase #wd-section-2-3-wrapper .section-background {
  background-image: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-position: top right !important;
  background-size: auto 100% !important;
  mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
  mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 1) 100%);
}

body.wd-purchase .wd-section#wd-section-2,
body.wd-purchase .wd-section#wd-section-3 {
  background: none !important;
}

body.wd-purchase .wd-section#wd-section-2.wizard-steps {
  background: none !important;
  padding: 2rem 0 0 0;
  margin-bottom: 0;
  filter: none !important;
}

body.wd-purchase .wd-section#wd-section-2.wizard-steps .wizard-step {
  margin-right: 1rem;
}

body.wd-purchase .wd-section#wd-section-2.wizard-steps .wizard-step.selected::after {
  width: 0;
  height: 0;
  border-left: .5rem solid transparent;
  border-right: .5rem solid transparent;
  border-top: .5rem solid #1db5ab;
  content: "";
  position: absolute;
  top: -2.05rem;
  bottom: auto;
  left: .5rem;
}

body.wd-purchase .wd-section#wd-section-2.wizard-steps .wizard-step.disabled {
  filter: brightness(0);
  opacity: .5;
}

body.wd-purchase .wd-section#wd-section-3.purchase {
  padding-top: 0;
  padding-bottom: 0;
}

body.wd-purchase .wd-section#wd-section-3.purchase .main-title {
  font-size: 2rem !important;
  text-shadow: 0 .1rem rgba(0, 0, 0, .5) !important;
  margin-bottom: 1.8rem;
  margin-top: .25rem;
  padding: 0;
}

body.wd-purchase .wd-section#wd-section-3.purchase .secondary-title {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  text-shadow: none;
  padding-top: 1rem;
  padding-bottom: .5rem;
  margin: 0;
}

body.wd-purchase .wd-section#wd-section-3.separator {
  color: #067d76;
  margin: 0 .5rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase .reward-link-area {
  display: block;
  float: none;
  text-align: left;
}

body.wd-purchase .wd-section#wd-section-3.purchase .reward-link-area .reward-link {
  font-size: 1rem;
  text-decoration: none;
  font-weight: 300;
  border-bottom: .05rem solid #ffffff;
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase .reward-link-area .reward-link:hover {
  text-decoration: none;
  border-color: transparent;
}

body.wd-purchase .wd-section#wd-section-3.purchase .info-link {
  font-size: 1rem;
  font-weight: 300;
  text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #giftTemplateAccordion .panel {
  border-radius: 4px;
}

body.wd-purchase .wd-section#wd-section-3.purchase #giftTemplateAccordion .panel-body {
  background-color: #ffffff;
}

body.wd-purchase .wd-section#wd-section-3.purchase #examPeriod .exam-period-listing-button {
  border-left-width: 1rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #examPeriod .exam-period-listing-button:first-child {
  border-top-right-radius: 4px !important;
  border-top-left-radius: 4px !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #examPeriod .exam-period-listing-button:last-child {
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 .norwegian-reward-wrapper .reward-box {
  margin-top: 0;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 .norwegian-reward-wrapper .reward-activated#norwegian-activated {
  font-size: .8rem;
  line-height: 1.15rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 label[for="giftTemplateAccordion"],
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 label[for="examPeriod"] {
  margin-bottom: 1rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 label[for="coursePricing"] {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences {
  margin-bottom: .75rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item {
  border-left-color: transparent;
  border-left-width: 1rem;
  padding: .5rem 0 !important;
  min-height: 6.6rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item [class^="col-"]:first-child {
  padding-left: .25rem !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item [class^="col-"]:last-child {
  padding-right: 1.25rem !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item.first,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item:first-child {
  border-top-left-radius: .2rem !important;
  border-top-right-radius: .2rem !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item.last,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item:last-child {
  border-bottom-left-radius: .2rem !important;
  border-bottom-right-radius: .2rem !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item.selected,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item:hover {
  border-color: #07cabf;
  background-color: #eafffe;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item-heading {
  font-family: "Lato", sans-serif !important;
  font-weight: bold;
  font-size: 1.4rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .priceValueMonthly,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .priceValue {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .price-full {
  font-size: .75rem !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .price-full .priceValue {
  font-size: .75rem !important;
  color: #f0481d;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .subscription-type {
  font-size: .85rem;
  font-weight: 300;
  color: #848484;
  display: block;
  margin-top: .9rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item.sub .price .subscription-type,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item.exam .price .subscription-type {
  margin-top: 2.6rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-2 #loggedIn label.control-label,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-2 #loggedIn p.form-control-static,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-2 #registeredIn label.control-label,
body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-2 #registeredIn p.form-control-static {
  padding-top: 1rem;
  padding-bottom: .5rem;
  margin: 0;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-3 .wd-panel-group .wd-panel .panel-link.selected .wd-panel-item .wd-panel-item__container {
  box-shadow: 0 0 0 .25rem #07cabf inset !important;
  outline: .05rem solid #07cabf !important;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-3 .wd-panel-group .wd-panel:first-child {
  border-top-left-radius: .2rem;
  border-top-right-radius: .2rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-3 .wd-panel-group .wd-panel:last-child {
  border-bottom-left-radius: .2rem;
  border-bottom-right-radius: .2rem;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-3 .wd-panel-group .panel-heading {
  background: #ffffff;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-3 .wd-panel-group .panel-title {
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-3 .wd-panel-group .panel-description {
  font-size: .8rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  padding-top: .2rem;
} */

/****************************************************************************************************/
/** Responsive styles specifically for XLG
/****************************************************************************************************/
@media only screen and (min-width: 2600px) {
  body.wd .wd-section .av-container .section-background,
  body.wd .wd-section .av-container .section-background-wall-break{
    mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
    mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
  }

  /* body.wd-purchase #wd-section-2-3-wrapper .section-background {
    mask-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
    mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 1) 100%);
  } */
}

@media only screen and (max-width: 1900px) {
  body.wd .wd-section .av-container .section-background-wall-break {
    background-size: 45% !important;
  }
}

@media only screen and (max-width: 1500px) {
  body.wd .wd-section .av-container .section-background-wall-break {
    background-size: 50% !important;
  }
}

/****************************************************************************************************/
/** Responsive styles specifically for XS, SM and MD resolutions
/****************************************************************************************************/
@media only screen and (max-width: 1201px) {
  body.wd .main-title.long-words {
    font-size: 2.2rem;
  }
}

/****************************************************************************************************/
/** Responsive styles specifically for XS and SM resolutions
/****************************************************************************************************/
@media only screen and (max-width: 993px) {
  body.wd h1,
  body.wd .main-title {
    font-size: 2.5rem;
    font-family: "Lato-Bold", sans-serif;
    text-shadow: none;
  }
  body.wd-home .wd-section#wd-section-1 .wall-break .break-headline {
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    padding-top: 1.5rem;
  }

  .col-md-6-left {
    padding-right: .75rem; /* BS DEFAULT PIXELS! */
  }

  .col-md-6-right {
    padding-left: .75rem; /* BS DEFAULT PIXELS! */
  }

  body.wd:not(.wd-open-positions):not(.wd-404):not(.wd-cancel):not(.wd-confirm) .wd-section {
    text-align: center !important;
  }

  body.wd-open-positions .wd-section#wd-section-2,
  body.wd-open-positions .wd-section#wd-section-3 {
    height: auto !important;
  }

  body.wd .wd-section .main-title {
    padding-top: 2rem;
  }

  body.wd .wd-section p {
    text-align: left !important;
  }

  body.wd-home #wd-section-1-2-wrapper {
    background: rgb(13, 158, 149) !important;
    background: -moz-linear-gradient(top, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%) !important;
    background: -webkit-linear-gradient(top, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%) !important;
    background: linear-gradient(to bottom, rgba(13, 158, 149, 1) 0%, rgba(0, 45, 43, 1) 100%) !important;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#0d9e95", endColorstr="#002d2b", GradientType=0) !important;
    margin: auto -.75rem !important;
    padding: .75rem !important;
  }

  body.wd-home #wd-section-1-2-wrapper #wd-section-1,
  body.wd-home #wd-section-1-2-wrapper #wd-section-2 {
    background: transparent !important;
  }

  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-title {
    font-weight: normal;
  }

  body.wd-home .wd-section p#pick-language-title,
  body.wd-home .wd-section p.stars-subtitle {
    text-align: center !important;
  }

  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-img {
    width: 100% !important;
    max-width: 4rem !important;
  }

  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-title {
    font-size: .9rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-toggle a.buy-course-select-item {
    margin-top: .05rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item .buy-course-select-item-img {
    margin-top: .05rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item .buy-course-select-item-caret {
    margin-top: .55rem !important;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row {
    display: table;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row > [class*="col-"] {
    display: block !important;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-header .testimonial-title {
    font-weight: normal;
  }

  body.wd-home .wd-section#wd-section-4 .awards-row {
    margin-top: 0 !important;
  }

  body.wd-home .wd-section#wd-section-4 {
    height: auto !important;
  }

  body.wd-home .wd-section#wd-section-4 .wd-section-content {
    position: initial !important;
    top: initial !important;
    transform: initial !important;
  }

  body.wd-home .wd-section#wd-section-1 .wd-section-content h1.first-heading {
    font-size: 2.5rem !important;
    text-shadow: 0 .1rem rgba(0, 0, 0, .5) !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-title {
    font-size: 1.1rem !important;
  }

  body.wd-home h1.submerged_heading,
  body.wd-home h2.submerged_heading {
    font-size: 2.25rem !important;
    text-shadow: 0 .1rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-home p.submerged_paragraph {
    font-size: 1.1rem !important;
  }

  body.wd-home .wd-section#wd-section-2 .wd-section-content #pick-language-title {
    font-size: 1.7rem !important;
  }

  body.wd-home .wd-section#wd-section-3 p.submerged_paragraph {
    font-size: 1.7rem !important;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-content .testimonial-text {
    font-size: .9rem !important;
  }

  body.wd-home .wd-section#wd-section-4.bg-white .awards-row,
  body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-item .awards-item__text-title {
    font-size: 1.1rem !important;
  }

  body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-item .awards-item__text-sub-title {
    font-size: 1rem !important;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-desktop {
    height: 13rem;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-desktop .carousel-inner {
    width: 80%;
    margin: 0 auto;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-desktop .carousel-control {
    font-size: 2rem;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-desktop .carousel-control.left {
    margin-left: -.75rem;
  }

  body.wd-mobile-app .wd-section#wd-section-2 #wd-section-try-for-free p {
    text-align: center !important;
  }

  body.wd-sitemap h1,
  body.wd-sitemap h2,
  body.wd ul.sitemap-list {
    text-align: left !important;
  }

  body.wd-open-position .wd-section#wd-section-1,
  body.wd-open-position .wd-section#wd-section-2,
  body.wd-open-position .wd-section#wd-section-3 {
    padding-bottom: 3rem !important;
  }

  /* body.wd-purchase .wd-section .wd-section-content-inner {
    max-width: 100%;
  }

  body.wd-purchase .wd-section#wd-section-2 .wd-section-content-inner .wizard-step:last-child {
    margin-right: 0;
  }

  body.wd-purchase .wd-section#wd-section-3.purchase .main-title {
    font-size: 1.5rem !important;
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-purchase .wd-section#wd-section-3 #wizard-step-1 .pricing-table-wrapper label{
    font-size: .9rem !important;
  }

  body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item-heading {
    font-size: .9rem !important;
  }

  body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price,
  body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .priceValueMonthly,
  body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .priceValue {
    font-size: .9rem !important;
  }

  body.wd-purchase .wd-section#wd-section-3.purchase #wizard-step-1 #coursePricing .list-group-licences .list-group-item .price .subscription-type {
    font-size: .7rem !important;
  }

  body.wd-purchase .wd-section#wd-section-3 .wizard-footer .w-button {
    min-width: auto !important;
    font-size: .75rem;
    padding: .25rem 1rem;
    line-height: 1.4rem;
    height: 2.25rem;
  } */
}

/****************************************************************************************************/
/** Responsive styles specifically for XS resolution
/****************************************************************************************************/
@media only screen and (max-width: 769px) {
  body.wd h1,
  body.wd .main-title {
    font-size: 1.5rem !important;
  }
  body.wd-home .wd-section#wd-section-1 .wall-break .break-headline {
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    padding-top: 1rem;
  }
  body.wd h2,
  body.wd .secondary-title {
    font-size: 1.5rem !important;
  }
  body.wd h3 {
    font-size: 1.5rem;
  }
  body.wd h4 {
    font-size: 1.5rem;
  }
  body.wd h5 {
    font-size: 1.5rem;
  }
  body.wd h6 {
    font-size: 1.5rem;
  }
  body.wd p, body.wd {
    font-size: .9rem !important;
  }
  body.wd p.small {
    font-size: .8rem !important;
  }
  body.wd p.bigger {
    font-size: 1rem !important;
  }

  body.wd .wd-section .secondary-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  body.wd .wd-section p.no-secondary-title {
    padding-top: 1rem;
  }

  body.wd-home .wd-section#wd-section-1 .wd-section-content {
    margin-top: 0 !important;
  }

  body.wd-home select#buy-course-select {
    width: 100% !important;
  }

  body.wd .wd-section#wd-section-1 .scroller {
    display: none !important;
  }

  body.wd .wd-section {
    min-height: auto !important;
  }

  body.wd-home .wd-section#wd-section-1 .wd-section-content h1.first-heading {
    margin-top: 3.75rem !important;
    font-size: 1.5rem !important;
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-home .wd-section#wd-section-1 .wd-section-content #free-sample-select {
    margin: 1.5rem 0 1rem 0 !important;
  }

  body.wd-home .wd-section#wd-section-1 .wd-section-content #purchase-flag-select {
    margin: 1.5rem 0 1rem 0 !important;
  }

  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item {
    margin-bottom: .25rem !important;
  }

  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-title {
    margin-top: .25rem !important;
    font-size: 4vw !important;
  }

  body.wd-home .wd-section#wd-section-1 .w-button.open-popup-link {
    margin: .5rem 0 0 0 !important;
  }

  body.wd-home .wd-section#wd-section-2 .wd-section-content h2.first-heading {
    margin-top: 0 !important;
    margin-bottom: 1.8rem !important;
  }

  body.wd-home h1.submerged_heading, body.wd h2.submerged_heading {
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
    font-size: 1.5rem !important;
  }

  body.wd-home p.submerged_paragraph {
    font-size: .9rem !important;
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-home .wd-section#wd-section-2 .wd-section-content h2.spaced {
    margin-top: 2.6rem !important;
  }

  body.wd-home .wd-section#wd-section-2 .wd-section-content #pick-language-title {
    font-size: 1.3rem !important;
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-home .wd-section#wd-section-2 #norwegian-banner {
    margin-bottom: 1.8rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #norwegian-banner .vcenter-col {
    height: 5rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-title {
    font-size: 1.3rem !important;
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-link {
    font-size: .9rem !important;
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-title,
  body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-logo,
  body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-link {
    text-align: center !important;
  }

  body.wd-home .wd-section#wd-section-2 #norwegian-banner #norwegian-banner-logo.center-block {
    margin-left: auto !important;
  }

  body.wd-home .wd-section#wd-section-2 .wd-section-content #buy-course-select {
    margin-top: 0 !important;
    height: 2.3rem !important;
    font-size: .9rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item .buy-course-select-item-img {
    width: 2.2rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #buy-course-select .buy-course-select-item .buy-course-select-item-title {
    font-size: 1rem !important;
  }

  body.wd-home .wd-section#wd-section-2 #buy-course-select .dropdown-menu li a.buy-course-select-item {
    padding: .5rem 1rem !important;
  }

  body.wd-home .wd-section#wd-section-2 .wd-section-content #buy-course-link {
    margin-top: 2.25rem !important;
  }

  body.wd-home .wd-section#wd-section-3 .wd-section-content h2.first-heading {
    margin-top: 1.6rem !important;
  }

  body.wd-home .wd-section#wd-section-3 .stars-wrapper .stars > img {
    max-width: 13% !important;
  }

  body.wd-home .wd-section#wd-section-3 .wd-section-content .stars-wrapper > p {
    margin-top: 2.5rem !important;
  }

  body.wd-home .wd-section#wd-section-3 p.submerged_paragraph {
    font-size: 1.3rem !important;
  }

  body.wd-home .wd-section p#pick-language-title,
  body.wd-home .wd-section p.stars-subtitle {
    text-shadow: 0 .05rem rgba(0, 0, 0, .5) !important;
  }

  body.wd-home .wd-section#wd-section-3 .wd-section-content .stars-wrapper > p {
    margin-top: 1.5rem !important;
  }

  body.wd-about-us .wd-section#wd-section-3 .testimonial-row {
    padding-bottom: 2rem;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row {
    margin-top: 0 !important;
    margin-bottom: 2.25rem !important;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-content {
    padding: .75rem !important;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-header .testimonial-title {
    padding: 0 !important;
  }

  body.wd-home .wd-section#wd-section-3 .row.testimonial-row .testimonial-content .testimonial-text {
    font-size: .8rem !important;
  }

  body.wd-home .wd-section#wd-section-3 .open-popup-link.w-button {
    margin-top: 0 !important;
    margin-bottom: .75rem !important;
  }

  body.wd-home .wd-section#wd-section-4.bg-white .awards-row,
  body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-item .awards-item__text-title {
    font-size: .9rem !important;
  }

  body.wd-home .wd-section#wd-section-4 .awards-row .awards-item {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  body.wd-home .wd-section#wd-section-4 {
    padding-bottom: .75rem !important;
  }

  body.wd-home .wd-section#wd-section-4.bg-white .awards-row .awards-item .awards-item__text-sub-title {
    font-size: .9rem !important;
  }

  body.wd-about-us .wd-section#wd-section-3 .team {
    padding-top: 2rem;
  }

  body.wd-about-us .wd-section#wd-section-3 p#want-to-join-us {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  body.wd-mobile-app .wd-section#wd-section-2 #wd-section-try-for-free {
    max-width: 100% !important;
    width: 22rem !important;
  }

  body.wd-mobile-app .wd-section#wd-section-1 h2.secondary-title {
    display: none;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-mobile {
    height: auto;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-mobile .carousel-inner {
    width: 80%;
    margin: 0 auto;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-mobile .carousel-control {
    font-size: 1.5rem;
  }

  body.wd-mobile-app .wd-section#wd-section-2 .carousel#screenshot-carousel-mobile .carousel-control.left {
    margin-left: -.75rem;
  }

  body.wd-home .wd-section#wd-section-1 #purchase-flag-select .select-language-flag-item {
    margin: .25rem;
  }

  body.wd-home .wd-section#wd-section-1 #purchase-flag-select .select-language-flag-item .select-language-flag-img {
    width: 2rem;
  }
}

@media only screen and (max-width: 500px) {
  body.wd-home .wd-section#wd-section-1 #purchase-flag-select .select-language-flag-item .select-language-flag-img {
    width: 1.5rem;
  }
  body.wd-home .wd-section#wd-section-1 #purchase-flag-select .select-language-flag-item {
    margin: .15rem;
  }
}

/****************************************************************************************************/
/** Responsive styles specifically for XXS resolution
/****************************************************************************************************/
@media only screen and (max-width: 320px) {
  body.wd-home .wd-section#wd-section-1 .wall-break .break-headline {
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    padding-top: 1rem;
  }

  /* Adjusting (iPhone 5, SE etc) awards-section margins */
  body.wd-home .wd-section#wd-section-4 .awards-row .awards-item {
    margin-top: .5rem !important;
  }

  /* Adjusting (iPhone 5, SE etc) font-size in section-1 language-icon titles */
  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item {
    overflow: hidden !important;
  }

  /* Adjusting (iPhone 5, SE etc) font-size in section-1 language-icon titles */
  body.wd-home .wd-section#wd-section-1 #free-sample-select .select-language-flag-item .select-language-flag-title {
    font-size: 4vw !important;
  }

  body.wd-home .wd-section#wd-section-1 #purchase-flag-select .select-language-flag-item .select-language-flag-img {
    width: 1rem;
  }
}
