/* fonts */
.noto {
  font-family: 'Noto Sans', sans-serif;
}
.merr {
  font-family: 'Merriweather', serif;
}
.ivy {
  font-family: ivypresto-display, serif;
  font-weight: 600;
}
/* body */
html,
body {
  margin: 0;
  background: #F7FBFE;
  font-size: 62.5% !important;
  color: #141F4E;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-family: 'Noto Sans', sans-serif;
}
#page {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 11rem;
}
body p {
  color: #292929;
}
table,
tr,
td {
  font-size: 20px;
}
a {
  outline: none;
  text-decoration: none;
}
.row {
  max-width: 130rem;
  height: inherit;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 5;
}
* {
  box-sizing: border-box;
}
/* header */
header#head {
  background: #fff;
  padding: 2.5rem 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50;
  transition: all .3s;
}
header#head.sticky {
  padding: 1rem 0;
}
header#head .row {
  max-width: 139rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header#head #logo {
  display: block;
  width: 15.8rem;
  height: 5.7rem;
}
header#head #logo a {
  display: block;
  width: inherit;
  height: inherit;
  text-indent: -999rem;
  background: url('../img/hope-trust-logo.png') no-repeat center;
  background-size: contain;
}
header#head #mainMenu {
  flex: 1;
}
header#head #mainMenu .scroll .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#head #mainMenu .scroll .content ul.menu {
  margin: 0 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header#head #mainMenu .scroll .content ul.menu > li {
  margin: 0 0 0 3rem;
  padding: 0;
  position: relative;
}
header#head #mainMenu .scroll .content ul.menu > li a {
  color: #141F4E;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
  position: relative;
  padding: 0 0 2rem 0;
}
header#head #mainMenu .scroll .content ul.menu > li a:hover:before {
  left: 0rem;
  right: 50%;
}
header#head #mainMenu .scroll .content ul.menu > li a:hover:after {
  right: 0rem;
  left: 50%;
}
header#head #mainMenu .scroll .content ul.menu > li a:before,
header#head #mainMenu .scroll .content ul.menu > li a:after {
  content: '';
  display: block;
  height: 0;
  border-bottom: 1px solid #639543;
  position: absolute;
  top: 2.5rem;
  transition: all .3s;
}
header#head #mainMenu .scroll .content ul.menu > li a:before {
  left: -50%;
  right: 150%;
}
header#head #mainMenu .scroll .content ul.menu > li a:after {
  right: -50%;
  left: 150%;
}
header#head #mainMenu .scroll .content ul.menu > li > .sub-menu {
  position: absolute;
  left: -1.5rem;
  top: 2.4rem;
  padding: 0.5rem 1.5rem;
  background: #fff;
  display: none;
  list-style: none;
  margin: 0;
  min-width: 14rem;
  border-radius: .5rem;
  flex-direction: column;
}
header#head #mainMenu .scroll .content ul.menu > li > .sub-menu li {
  padding: 0;
  margin: 0.5rem 0;
}
header#head #mainMenu .scroll .content ul.menu > li > .sub-menu li a {
  color: #141F4E;
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 500;
  transition: all .3s;
}
header#head #mainMenu .scroll .content ul.menu > li > .sub-menu li a:hover {
  color: #639543;
}
header#head #mainMenu .scroll .content ul.menu > li > .sub-menu li a:before,
header#head #mainMenu .scroll .content ul.menu > li > .sub-menu li a:after {
  display: none;
}
header#head #mainMenu .scroll .content ul.menu > li:hover .sub-menu {
  display: block;
}
header#head #mainMenu .scroll .content ul.menu > li.menu-item-has-children > a {
  padding-right: 2rem;
  background: url('../img/ico-submenu.svg') no-repeat right 0.8rem;
  background-size: 1rem auto;
}
header#head #mainMenu .scroll .content ul.menu > li.menu-item-has-children > a:before,
header#head #mainMenu .scroll .content ul.menu > li.menu-item-has-children > a:after {
  display: none;
}
header#head #mainMenu .scroll .menu-main-menu-container + ul.menu li:last-child a {
  color: #fff;
  background: #69C0C1;
  border: 1px solid #69C0C1;
  padding: 1.2rem 2rem;
  border-radius: .5rem;
  transition: all .3s;
}
header#head #mainMenu .scroll .menu-main-menu-container + ul.menu li:last-child a:before,
header#head #mainMenu .scroll .menu-main-menu-container + ul.menu li:last-child a:after {
  display: none;
}
header#head #mainMenu .scroll .menu-main-menu-container + ul.menu li:last-child a:hover {
  color: #69C0C1;
  background: #fff;
}
#mobileTrigger {
  display: none;
  height: 3.7rem;
  width: 4.5rem;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 1rem;
  top: 1.9rem;
  z-index: 60;
  transition: all .3s;
}
#mobileTrigger div {
  width: 2.5rem;
  height: 2px;
  background: #000;
  margin: .8rem 1rem;
  transition: all .3s;
}
#mobileTrigger:hover div {
  background-color: #C51C1C;
}
#mobileTrigger.opened {
  position: fixed;
  top: 3rem;
}
#mobileTrigger.opened div {
  position: absolute;
  top: 2.1rem;
  left: 0;
  background: #000;
  border: none;
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobileTrigger.opened div + div {
  display: none;
}
#mobileTrigger.opened div + div + div {
  display: block;
  position: absolute;
  top: 2.1rem;
  left: 0;
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* register div */
#registerdiv,
.registerdiv {
  padding: 2rem 0;
}
#registerdiv .lightboxcontainer,
.registerdiv .lightboxcontainer {
  text-align: center;
}
#registerdiv p,
.registerdiv p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.7rem;
  line-height: 2.7rem;
  text-align: center;
  margin: 0 0 0 0;
  color: #2E395A;
}
#registerdiv a,
.registerdiv a {
  color: #fff;
  display: inline-block;
  margin: 1.5rem 0 0 0;
  background: #69C0C1;
  border: 1px solid #69C0C1;
  padding: 1.2rem 2rem;
  border-radius: .5rem;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
  width: 10rem;
  transition: all .3s;
}
#registerdiv a:hover,
.registerdiv a:hover {
  color: #69C0C1;
  background: #fff;
}
#html5-lightbox-box {
  max-width: 40rem;
}
#html5-lightbox-box .html5-elem-wrap {
  max-width: 40rem;
}
/* video marketing landing*/
.page-template-page-videomarketing #html5-lightbox-box {
  max-width: 100%;
}
.page-template-page-videomarketing #html5-lightbox-box .html5-elem-wrap {
  max-width: 100%;
}
.page-template-page-videomarketing #hero {
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
.page-template-page-videomarketing #hero .row {
  max-width: 124rem;
}
.page-template-page-videomarketing #hero .row .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21rem 0 ;
  margin: 0 -8rem;
}
.page-template-page-videomarketing #hero .row .flex .left {
  flex: 1;
  max-width: 70rem;
  padding: 0 8rem;
}
.page-template-page-videomarketing #hero .row .flex .left h1 {
  font-family: ivypresto-display, serif;
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0 auto 2rem auto;
  font-size: 8rem;
  line-height: 7.4rem;
  font-weight: 600;
}
.page-template-page-videomarketing #hero .row .flex .left p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.9rem;
  line-height: 4rem;
  letter-spacing: 0.2px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 45rem;
}
.page-template-page-videomarketing #hero .row .flex .right {
  flex: 1;
  max-width: 54rem;
  padding: 0 8rem 0 0;
}
.page-template-page-videomarketing #hero .row .flex .right a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 28rem;
  border: 1px solid #fff;
  border-radius: 1rem;
  transition: all .3s;
}
.page-template-page-videomarketing #hero .row .flex .right a .play {
  display: block;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.33);
  background-image: url('../img/triangle.svg');
  background-repeat: no-repeat;
  background-size: 4.0rem;
  background-position: center left 3.3rem;
  transition: all .3s;
}
.page-template-page-videomarketing #hero .row .flex .right a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.page-template-page-videomarketing #hero .row .flex .right a:hover .play {
  transform: scale(1.1);
}
.page-template-page-videomarketing #lead {
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 10.5rem 0 28rem 0;
  position: relative;
}
.page-template-page-videomarketing #lead .mask {
  position: absolute;
  height: 32rem;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  clip-path: polygon(50% 100%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.page-template-page-videomarketing #lead .round {
  width: 10rem;
  height: 10rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -5rem;
  background: url('../img/mask.svg') no-repeat;
  background-size: 40rem auto;
  background-position: 10rem 10rem;
  display: none;
}
.page-template-page-videomarketing #lead .row {
  max-width: 102rem;
  position: relative;
}
.page-template-page-videomarketing #lead .row h2 {
  font-family: ivypresto-display, serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 4.7rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 67rem;
}
.page-template-page-videomarketing #lead .row .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 6rem -4rem 0 -4rem;
}
.page-template-page-videomarketing #lead .row .flex .box {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 4rem;
  position: relative;
}
.page-template-page-videomarketing #lead .row .flex .box h3 {
  font-family: 'Merriweather', serif;
  font-size: 7rem;
  line-height: 6rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-align: center;
  color: #7BCACB;
  margin: 0 auto 2.3rem auto;
}
.page-template-page-videomarketing #lead .row .flex .box p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 2.4rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 25rem;
}
.page-template-page-videomarketing #lead .row .flex .box:after {
  content: '';
  width: 2px;
  height: 8.5rem;
  background: #000;
  position: absolute;
  right: 0;
  top: 2rem;
  bottom: 3.5rem;
}
.page-template-page-videomarketing #lead .row .flex .box:last-of-type:after {
  display: none;
}
.page-template-page-videomarketing #solutions {
  padding: 10rem 0 0 0;
  background-color: #fff;
}
.page-template-page-videomarketing #solutions .row {
  max-width: 102rem;
  position: relative;
}
.page-template-page-videomarketing #solutions .row h2 {
  font-family: ivypresto-display, serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 4.6rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  color: #2E395A;
  margin: 0 auto;
  max-width: 54rem;
}
.page-template-page-videomarketing #solutions .row .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 6rem -4rem 0 -4rem;
}
.page-template-page-videomarketing #solutions .row .flex .box {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.page-template-page-videomarketing #solutions .row .flex .box .ico {
  width: 4rem;
  height: 4.4rem;
  margin: 0 auto;
}
.page-template-page-videomarketing #solutions .row .flex .box .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-videomarketing #solutions .row .flex .box p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.1rem;
  line-height: 2.8rem;
  text-align: center;
  color: #2e395a;
  margin: 2rem auto 0 auto;
  max-width: 19rem;
}
.page-template-page-videomarketing #solutions .row .flex .box:after {
  content: '';
  width: 1px;
  height: 5.3rem;
  background: #68bfc0;
  position: absolute;
  right: 0;
  top: 5rem;
}
.page-template-page-videomarketing #solutions .row .flex .box:last-of-type:after {
  display: none;
}
.page-template-page-videomarketing #assets {
  background-color: #f7fbfe;
  padding: 17rem 0 0 0;
  margin-top: -7rem;
  position: relative;
}
.page-template-page-videomarketing #assets .mask {
  position: absolute;
  height: 35rem;
  left: -55rem;
  top: 0;
  right: 0;
  background: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.page-template-page-videomarketing #assets .row {
  max-width: 136rem;
  position: relative;
}
.page-template-page-videomarketing #assets .row .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-videomarketing #assets .row .flex .pic {
  flex: 1 0 65%;
  max-width: 65%;
}
.page-template-page-videomarketing #assets .row .flex .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-videomarketing #assets .row .flex .pic img.des {
  display: block;
}
.page-template-page-videomarketing #assets .row .flex .pic img.mob {
  display: none;
}
.page-template-page-videomarketing #assets .row .flex .txt {
  flex: 1 0 35%;
  max-width: 35%;
  margin-left: -2%;
  padding-top: 6rem;
}
.page-template-page-videomarketing #assets .row .flex .txt h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.4rem;
  line-height: 3.2rem;
  text-align: left;
  color: #2e395a;
  margin: 0 0 2rem 0;
  max-width: 32rem;
  font-weight: 700;
}
.page-template-page-videomarketing #assets .row .flex .txt ul {
  padding: 0;
  margin: 0 0 3.5rem 0;
  list-style: none;
}
.page-template-page-videomarketing #assets .row .flex .txt ul li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 2.4rem;
  text-align: left;
  color: #2e395a;
  margin: 0 ;
  max-width: 40rem;
  font-weight: 400;
  padding: 0 0 1.5rem 4rem;
  background-image: url('../img/ico-check-circle.png');
  background-size: 2.5rem;
  background-repeat: no-repeat;
  background-position: top left;
}
.page-template-page-videomarketing #summary {
  padding: 37rem 0 14rem 0;
  background-color: #26446D;
  margin: -9rem 0 0 0;
  position: relative;
}
.page-template-page-videomarketing #summary .mask {
  position: absolute;
  height: 32rem;
  left: 0;
  top: -2px;
  right: 0;
  background: #F7FBFE;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.page-template-page-videomarketing #summary .row {
  max-width: 126rem;
  position: relative;
}
.page-template-page-videomarketing #summary .row .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-videomarketing #summary .row .flex .pic {
  flex: 1;
  max-width: 100%;
}
.page-template-page-videomarketing #summary .row .flex .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-videomarketing #summary .row .flex .txt {
  flex: 1 0 34rem;
  max-width: 34rem;
}
.page-template-page-videomarketing #summary .row .flex .txt h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  line-height: 3.6rem;
  text-align: center;
  color: #fff;
  margin: 0 auto 2rem auto;
  max-width: 32rem;
  font-weight: 700;
}
.page-template-page-videomarketing #summary .row .flex .txt p {
  text-align: center;
}
.page-template-page-videomarketing #summary .row .flex .txt p a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 2.4rem;
  text-align: center;
  color: #2e395a;
  margin: 0 auto;
  font-weight: 700;
  padding: 1.6rem 3.8rem;
  border-radius: 9px;
  background-color: #68BFC0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-videomarketing #summary .row .flex .txt p a:hover {
  color: #68BFC0;
  background-color: #2e395a;
}
.page-template-page-videomarketing #summary .row .flex .txt p a:last-of-type {
  color: #fff;
  background-color: transparent ;
  padding: 1.5rem 3.7rem;
  border: 1px solid #fff;
  border-radius: 9px;
  transition: all .3s;
  margin-top: 2rem ;
}
.page-template-page-videomarketing #summary .row .flex .txt p a:last-of-type:hover {
  color: #2e395a;
  background-color: #fff;
}
.page-template-page-videomarketing #notificationb {
  display: none;
}
/* home */
.page-template-page-home #notification {
  margin: 4rem 3rem -2rem 3rem;
  border-radius: 1.7rem;
  padding-bottom: 3rem;
}
.page-template-page-home #slider {
  min-height: 75rem;
}
.page-template-page-home #slider .row {
  max-width: 146rem;
}
.page-template-page-home #slider .row .slide {
  height: 75rem;
  overflow: hidden;
  position: relative;
  padding: 5rem 7rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-template-page-home #slider .row .slide .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-template-page-home #slider .row .slide .bg.des {
  border-radius: 1.5rem 1.5rem 1.5rem 15rem;
  background-position: right center;
}
.page-template-page-home #slider .row .slide .bg.mob {
  display: none;
  border-radius: 1.4rem 1.4rem 1.4rem 10rem;
  background-position: center top;
}
.page-template-page-home #slider .row .slide .txt {
  max-width: 71rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-template-page-home #slider .row .slide .txt blockquote {
  font-family: ivypresto-display, serif;
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0 0 2rem 0;
}
.page-template-page-home #slider .row .slide .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.7rem;
  line-height: 2.7rem;
  text-align: center;
  padding: 2rem auto 3rem auto;
  color: #fff;
}
.page-template-page-home #slider .row .slide .txt ul {
  padding: 0;
  margin: 3rem 0 2rem 0;
  display: flex;
  background: #fff;
  border-radius: 0.8rem;
  padding: 1.2rem;
  list-style: none;
  align-items: stretch;
}
.page-template-page-home #slider .row .slide .txt ul li {
  font-size: 1.6rem;
  padding: 0 1.6rem;
  text-align: center;
  color: #141F4E;
  font-weight: 700;
  flex: 1 0 33.33%;
  max-width: 33.33%;
  position: relative;
  display: flex;
  align-items: center;
}
.page-template-page-home #slider .row .slide .txt ul li:after {
  content: '';
  width: 1px;
  background: #979797;
  position: absolute;
  right: 0;
  top: 0.5rem;
  bottom: 0.5rem;
}
.page-template-page-home #slider .row .slide .txt ul li a {
  color: inherit;
  text-decoration: underline;
}
.page-template-page-home #slider .row .slide .txt ul li a:hover {
  text-decoration: none;
}
.page-template-page-home #slider .row .slide .txt ul li:last-of-type {
  padding-right: 0;
}
.page-template-page-home #slider .row .slide .txt ul li:last-of-type a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: #69C0C1;
  border: 1px solid #69C0C1;
  border-radius: 0.5rem;
  line-height: 2rem;
  padding: 1.7rem 2rem;
  width: 100%;
  transition: all .3s;
}
.page-template-page-home #slider .row .slide .txt ul li:last-of-type a:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-home #slider .row .slide .txt ul li:last-of-type:after {
  display: none;
}
.page-template-page-home #slider .row .slide .txt ul + p {
  font-size: 1.4rem;
  line-height: 2rem;
  color: rgba(255, 255, 255, 0.7);
}
.page-template-page-home #slider .row .slide .txt ul + p a {
  color: inherit;
  text-decoration: underline;
}
.page-template-page-home #slider .row .slide .txt ul + p a:hover {
  text-decoration: none;
}
.page-template-page-home #slider .row .slide .txt nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-page-home #slider .row .slide .txt nav a {
  margin: 1rem;
  padding: 1.7rem 2rem;
  white-space: nowrap;
}
.page-template-page-home #slider .row .slide .txt a {
  font-family: 'Noto Sans', sans-serif;
  display: inline-block;
  color: #2E395A;
  text-decoration: none;
  font-weight: 700;
  background: #C0E9D2;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 1.7rem 4rem;
  margin: 2rem 0 0 0;
  transition: all .3s;
}
.page-template-page-home #slider .row .slide .txt a:hover {
  background: #fff;
}
.page-template-page-home #slider .row .slide.font60 .txt blockquote {
  font-size: 6rem;
  line-height: 6.8rem;
}
.page-template-page-home #slider .row .slide.font66 .txt blockquote {
  font-size: 6.6rem;
  line-height: 7.2rem;
}
.page-template-page-home #slider .row .slide.font72 .txt blockquote {
  font-size: 7.2rem;
  line-height: 8rem;
}
.page-template-page-home #careplan {
  padding: 14rem 0 0 0;
}
.page-template-page-home #careplan .row {
  max-width: 130rem;
}
.page-template-page-home #careplan .row .flex {
  display: flex;
  justify-content: space-between;
  margin: 0 -4rem;
}
.page-template-page-home #careplan .row .flex .post {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 4rem;
}
.page-template-page-home #careplan .row .flex .post img {
  width: 100%;
  height: auto;
  margin-top: -10rem;
}
.page-template-page-home #careplan .row .flex .post h2 {
  font-family: 'Noto Sans', sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 2.9rem;
  margin: 0 0 2rem 0;
  font-weight: 700;
  color: #2E395A;
  padding: 0 0 0 5rem;
  background: url('../img/ico-check-circle.png') no-repeat left top;
  background-size: 2.9rem auto;
}
.page-template-page-home #careplan .row .flex .post p {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 3.1rem;
  margin: 0;
  color: #2E395A;
}
.page-template-page-home #careplan .row .flex .post a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527E;
  margin-top: 3rem ;
  background-color: #6DBCDB;
  display: inline-block;
  border-radius: 4px;
  padding: 1rem 3.5rem;
  transition: all .3s;
}
.page-template-page-home #careplan .row .flex .post a:hover {
  color: #6DBCDB;
  background-color: #31527E;
}
.page-template-page-home #careplan .row .flex .post:nth-of-type(1) {
  padding-left: 0;
}
.page-template-page-home #hero {
  width: 100%;
  height: 75.6rem;
  border-radius: 1.5rem;
  position: relative;
}
.page-template-page-home #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
}
.page-template-page-home #hero .row .content {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-radius: 1.5rem;
}
.page-template-page-home #hero .row .bg {
  display: none;
}
.page-template-page-home #hero .row .left {
  padding: 0 0 0 9rem;
  flex: 1 0 44%;
  max-width: 44%;
  margin: 0 0 9rem 0;
}
.page-template-page-home #hero .row .left h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 7.7rem;
  line-height: 7.7rem;
  text-align: left;
  color: #fff;
  margin: 0;
}
.page-template-page-home #hero .row .left p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.1rem;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  margin: 3rem 3rem 2rem 0;
}
.page-template-page-home #hero .row .left a {
  font-family: 'Noto Sans', sans-serif;
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #31527e;
  margin: 0;
  background-color: #7bcacb;
  border-radius: 5px;
  padding: 0.9rem 2.5rem ;
  transition: all .3s;
}
.page-template-page-home #hero .row .left a:hover {
  color: #7bcacb;
  background-color: #31527e;
}
.page-template-page-home #hero .row .extras {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-template-page-home #hero .row .extras .apps {
  display: flex;
  align-items: center;
  margin: 1.5rem -0.5rem 0 -0.5rem;
}
.page-template-page-home #hero .row .extras .apps a {
  display: none;
  margin: 0 0.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: .5rem;
  height: 5rem;
}
.page-template-page-home #hero .row .extras .apps a.ios {
  background-image: url('../img/ios.jpg');
  width: 16rem;
}
.page-template-page-home #hero .row .extras .apps a.android {
  background-image: url('../img/googleplay.jpg');
  width: 16rem;
}
.page-template-page-home #hero .row .boxes {
  display: flex;
  justify-content: flex-end;
  margin-top: -10rem;
}
.page-template-page-home #hero .row .right {
  flex: 1;
  max-width: 76rem;
  height: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  right: -1.1rem;
  border-top-right-radius: 0;
}
.page-template-page-home #hero .row .right .container {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 1rem;
}
.page-template-page-home #hero .row .right .container .body {
  padding: 4rem 3rem ;
  height: 100%;
  background: #fff;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
}
.page-template-page-home #hero .row .right .container h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 2.5rem;
  text-align: left;
  color: #141f4e;
  margin: 0 0 2rem 0;
}
.page-template-page-home #hero .row .right .container hr {
  border-bottom: none;
  width: 5.8rem;
  border-top: 1px solid #d8d8d8;
  margin: 0;
}
.page-template-page-home #hero .row .right .container p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.2rem;
  text-align: left;
  color: #696f85;
  margin: 2.5rem 0 3rem 0;
}
.page-template-page-home #hero .row .right .container a {
  font-family: 'Noto Sans', sans-serif;
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.7rem;
  height: 2.7rem;
  text-align: center;
  color: #31527e;
  margin: 0 ;
  background-color: #6dbcdb;
  border-radius: 4px;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  padding: 0 3.5rem;
  transition: all .3s;
  text-indent: -999rem;
  background: #e5f2f7 url('../img/ico-arrow-blue.svg') no-repeat center;
  background-size: 1.7rem auto;
}
.page-template-page-home #hero .row .right .container a:hover {
  background-color: #6DBCDB;
}
.page-template-page-home #plan {
  padding: 20rem 0 14rem 0;
}
.page-template-page-home #plan .row {
  display: flex;
  justify-content: center;
  max-width: 120rem;
  align-items: flex-start;
}
.page-template-page-home #plan .row .video {
  flex: 1 0 52%;
  max-width: 52%;
  background-color: #dee6ed;
  border-radius: 1.5rem;
  height: 38rem;
  position: relative;
}
.page-template-page-home #plan .row .video a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 1.5rem;
}
.page-template-page-home #plan .row .video a .play {
  width: 7rem;
  height: 7rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3.7rem 0 0 -3.7rem;
  background-image: url("../img/ico-play-blue.png");
  background-repeat: no-repeat;
  background-size: 2.8rem 2.8rem;
  background-position: center left 2.2rem;
  transition: all .3s;
}
.page-template-page-home #plan .row .video a:hover .play {
  transform: scale(1.1);
}
.page-template-page-home #plan .row .text {
  flex: 1 0 48%;
  max-width: 48%;
  padding: 0 3.5rem 0 6rem;
}
.page-template-page-home #plan .row .text h2 {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 3.9rem;
  letter-spacing: 0.26px;
  text-align: center;
  color: #2e395a;
  margin: 2.5rem auto 2rem auto;
}
.page-template-page-home #plan .row .text h2 strong {
  font-weight: 700;
}
.page-template-page-home #plan .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: center;
  color: #2e395a;
  margin: 0 auto;
}
.page-template-page-home #getstarted .row {
  display: flex;
  justify-content: flex-start;
  max-width: 130rem;
}
.page-template-page-home #getstarted .row .text {
  flex: 1 0 36%;
  max-width: 36%;
  margin-top: 4rem;
}
.page-template-page-home #getstarted .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: left;
  color: #2e395a;
  margin: 3rem auto;
}
.page-template-page-home #getstarted .row .text h3 {
  font-family: 'Merriweather', serif;
  font-size: 4.3rem;
  line-height: 5.4rem;
  text-align: left;
  color: #2e395a;
  margin: 2rem auto 2.5rem auto;
}
.page-template-page-home #getstarted .row .text a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527E;
  margin-top: 0;
  background-color: #6DBCDB;
  display: inline-block;
  border-radius: 4px;
  padding: 1rem 3.5rem;
  transition: all .3s;
}
.page-template-page-home #getstarted .row .text a:hover {
  color: #6DBCDB;
  background-color: #31527E;
}
.page-template-page-home #getstarted .row .photo {
  flex: 1 0 64%;
  max-width: 64%;
  margin: 0 -10rem 0 0;
}
.page-template-page-home #getstarted .row .photo img {
  width: 100rem;
  height: auto;
  position: relative;
  right: -10rem;
}
.page-template-page-home #solution {
  padding-bottom: 14rem;
}
.page-template-page-home #solution .row {
  max-width: 132rem;
}
.page-template-page-home #solution .row:nth-of-type(1) .flex {
  display: flex;
  justify-content: space-between;
}
.page-template-page-home #solution .row:nth-of-type(1) .flex .img {
  flex: 1 0 44%;
  max-width: 44%;
  padding-right: 3.5rem;
}
.page-template-page-home #solution .row:nth-of-type(1) .flex .img img {
  width: 100%;
  height: auto;
}
.page-template-page-home #solution .row:nth-of-type(1) .flex .text {
  flex: 1 0 56%;
  max-width: 56%;
}
.page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 3.2rem;
  letter-spacing: 0.32px;
  line-height: 4.7rem;
  text-align: left;
  margin-top: 28rem;
  padding-left: 3.5rem;
}
.page-template-page-home #solution .row:nth-of-type(1) .flex .text strong {
  font-style: italic;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-left: 16%;
  margin-top: -27rem;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 3.5rem 4rem;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) {
  flex: 1 0 66.67%;
  max-width: 66.67%;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) p {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 3.2rem;
  letter-spacing: 0.32px;
  line-height: 4.7rem;
  text-align: left;
  margin-top: 5rem;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) strong {
  font-style: italic;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527E;
  margin-top: 3rem ;
  background-color: #6DBCDB;
  display: inline-block;
  border-radius: 4px;
  padding: 1rem 3.5rem;
  transition: all .3s;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) a:hover {
  color: #6DBCDB;
  background-color: #31527E;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.5rem;
  text-align: left;
  color: #056b9d;
  margin: 2rem 0 1.5rem 0;
}
.page-template-page-home #solution .row:nth-of-type(2) .flex .post p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: left;
  color: #2e395a;
  margin: 0;
}
.page-template-page-home #tiers {
  margin-bottom: -9rem;
}
.page-template-page-home #tiers .row {
  max-width: 98rem;
  z-index: 6;
}
.page-template-page-home #tiers .row h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.2rem;
  letter-spacing: 1.78px;
  text-align: center;
  color: #056b9d;
  margin: 0 auto 1.5rem auto;
  text-transform: uppercase;
  padding-top: 7rem;
}
.page-template-page-home #tiers .row p {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 2.6rem;
  letter-spacing: 0.4px;
  line-height: 4rem;
  text-align: center;
  color: #2E395A;
  margin: 0 auto;
  max-width: 76rem;
}
.page-template-page-home #tiers .row .table {
  margin: 7rem 0 -19rem 0;
}
.page-template-page-home #tiers .row .table .header {
  display: none;
}
.page-template-page-home #tiers .row .table .header table {
  width: 100%;
}
.page-template-page-home #tiers .row .table .header table tbody {
  display: none;
}
.page-template-page-home #tiers .row .table .header table tfoot {
  display: none;
}
.page-template-page-home #tiers .row .table.fixed .header {
  display: block;
  position: fixed;
  top: 7.7rem;
  left: 0;
  right: 0;
  z-index: 3;
}
.page-template-page-home #tiers .row .table table {
  border: none;
  background: #fff;
  border-radius: .7rem;
  overflow: hidden;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
}
.page-template-page-home #tiers .row .table table thead tr th {
  padding: 1.2rem 3.2rem 1.2rem 3.2rem;
}
.page-template-page-home #tiers .row .table table thead tr th h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #6DBCDB;
  font-weight: 700;
  margin: 0;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(1) {
  background: #2E395A;
  vertical-align: bottom;
  text-align: left;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
.page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
  width: 24rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.3rem;
  font-weight: 400;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) strong,
.page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) strong {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  line-height: 3.6rem;
  font-weight: 700;
  display: block;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) {
  background: #7a8a97;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
  background: #71c3c3;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(2) th {
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #2E395A;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(2) th strong {
  font-size: 6rem;
  line-height: 6rem;
  font-weight: 400;
  display: inline-flex;
  align-items: flex-end;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(2) th strong small {
  font-size: 1.6rem;
  line-height: 1.8rem;
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(2) th:nth-child(1) {
  background: linear-gradient(90deg, #ffffff 0%, #f8f8fb 100%);
}
.page-template-page-home #tiers .row .table table thead tr:nth-child(2) th:nth-child(2) {
  background: #fdfdfe;
}
.page-template-page-home #tiers .row .table table tbody tr td {
  text-align: center;
  padding: 1.2rem 3.5rem;
}
.page-template-page-home #tiers .row .table table tbody tr td img {
  height: 2.2rem;
  width: auto;
}
.page-template-page-home #tiers .row .table table tbody tr td h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #6DBCDB;
  font-weight: 700;
  margin: 0 0 0 0;
}
.page-template-page-home #tiers .row .table table tbody tr td {
  color: #2E395A;
  font-size: 1.6rem;
  line-height: 2rem;
}
.page-template-page-home #tiers .row .table table tbody tr td a {
  color: inherit;
}
.page-template-page-home #tiers .row .table table tbody tr td a img {
  border-radius: 50%;
  transition: all .3s;
}
.page-template-page-home #tiers .row .table table tbody tr td a:hover img {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3);
}
.page-template-page-home #tiers .row .table table tbody tr td:nth-child(1) {
  color: #fff;
  text-align: left;
}
.page-template-page-home #tiers .row .table table tbody tr td:nth-child(1) h3 a {
  display: none;
  padding: 0;
  color: #2E395A;
  background: none;
  border: none;
  margin: 0.8rem 0 0 0;
  text-decoration: underline;
  font-size: 1.4rem;
}
.page-template-page-home #tiers .row .table table tbody tr td:nth-child(1) h3 a:hover {
  text-decoration: none;
}
.page-template-page-home #tiers .row .table table tbody tr td:nth-child(1) a {
  color: inherit;
}
.page-template-page-home #tiers .row .table table tbody tr td:nth-child(1) a:hover {
  text-decoration: underline;
}
.page-template-page-home #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(1) {
  background: #243051;
}
.page-template-page-home #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(2) {
  background: linear-gradient(90deg, #f9f6f6 0%, #f2f0f2 100%);
}
.page-template-page-home #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(3) {
  background: #f9f6f6;
}
.page-template-page-home #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(1) {
  background: #2E395A;
}
.page-template-page-home #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(2) {
  background: linear-gradient(90deg, #ffffff 0%, #f8f8fb 100%);
}
.page-template-page-home #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(3) {
  background: #fdfdfe;
}
.page-template-page-home #tiers .row .table table tbody tr:last-of-type td {
  padding: 3rem 3.5rem;
}
.page-template-page-home #tiers .row .table table tbody tr:last-of-type td a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527e;
  margin: 0 0;
  background-color: #6dbcdb;
  border-radius: 4px;
  padding: 1.1rem 3.5rem;
  transition: all .3s;
}
.page-template-page-home #tiers .row .table table tbody tr:last-of-type td a:hover {
  color: #6dbcdb;
  background-color: #31527e;
}
.page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-child(1) a {
  display: inline-block;
  text-align: left;
  background: transparent url('../img/ico-arrow.svg') no-repeat;
  background-position: right 1.3rem center;
  background-size: 1.8rem auto;
  border: 1px solid #6dbcdb;
  padding: 1.1rem 4.8rem 1.1rem 1.8rem;
  color: #6dbcdb;
}
.page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-child(1) a:hover {
  background-color: #6dbcdb;
  color: #31527e;
}
.page-template-page-home #tiers .row .table table tfoot {
  display: none;
}
.page-template-page-home #tiers .row .table table tfoot tr td {
  padding: 1.2rem 3.5rem;
  text-align: center;
}
.page-template-page-home #tiers .row .table table tfoot tr td a {
  display: inline-block;
  text-align: left;
  background: transparent url('../img/ico-arrow-lblue.svg') no-repeat;
  background-position: right 1.3rem top 2rem;
  background-size: 1.8rem auto;
  border: 1px solid #6dbcdb;
  padding: 1.1rem 5.5rem 1.1rem 1.8rem;
  color: #6dbcdb;
}
.page-template-page-home #tiers .row .table table tfoot tr td a span {
  display: block;
}
.page-template-page-home #tiers .row .flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 5rem auto 0 auto;
  max-width: 101rem;
}
.page-template-page-home #tiers .row .flex .container {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 2.7rem;
}
.page-template-page-home #tiers .row .flex .container:nth-of-type(1) .content {
  background-color: #7bcacb;
  margin-top: 4rem;
}
.page-template-page-home #tiers .row .flex .container:nth-of-type(2) .content {
  background-color: #6dbcdb;
}
.page-template-page-home #tiers .row .flex .container:nth-of-type(3) .content {
  background-color: #ff9178;
  margin-top: 4rem;
}
.page-template-page-home #tiers .row .flex .container:nth-of-type(3) .content h2 {
  color: #884d40;
}
.page-template-page-home #tiers .row .flex .container .content {
  padding: 2.5rem 3rem 7rem 3rem;
  height: 100%;
  border-radius: 5px;
  position: relative;
}
.page-template-page-home #tiers .row .flex .container .content .img img {
  display: block;
  margin: 1rem auto 2rem auto;
}
.page-template-page-home #tiers .row .flex .container .content h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 3.9rem;
  letter-spacing: 0.31px;
  text-align: center;
  color: #455171;
  margin: 0 auto 2.5rem auto;
}
.page-template-page-home #tiers .row .flex .container .content p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  color: #fff;
  margin: 0 auto ;
}
.page-template-page-home #tiers .row .flex .container .content ul {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto 0 auto;
  max-width: 18rem;
}
.page-template-page-home #tiers .row .flex .container .content ul li {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  color: #fff;
  text-align: left;
  padding-left: 4rem;
  background-image: url("../img/ico-check.png");
  background-repeat: no-repeat;
  background-size: 1.7rem 1.7rem;
  background-position: left 0.3rem;
  margin: 1rem 0;
}
.page-template-page-home #tiers .row .flex .container .content a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  width: 16rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #fff;
  background-color: #2e395a;
  padding: 0.9rem 1rem;
  border-radius: 5px;
  border: 1px solid #2e395a;
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  margin-left: -8rem;
  transition: all .3s;
}
.page-template-page-home #tiers .row .flex .container .content a:hover {
  color: #2e395a;
  background-color: #fff;
}
.page-template-page-home #howitworks {
  background-color: #31527e;
  padding: 20rem 0 6rem 0;
}
.page-template-page-home #howitworks .row {
  max-width: 105rem;
}
.page-template-page-home #howitworks .row .lead h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.2rem;
  letter-spacing: 1.78px;
  text-align: center;
  color: #fff;
  margin: 0 auto 1.5rem auto;
  text-transform: uppercase;
  padding-top: 7rem;
}
.page-template-page-home #howitworks .row .lead h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 4rem;
  letter-spacing: 0.4px;
  line-height: 5rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 61rem;
}
.page-template-page-home #howitworks .row .flex {
  margin: 8rem -3rem 0 -3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-template-page-home #howitworks .row .flex .container {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 0 3rem 5rem 3rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-home #howitworks .row .flex .container .img {
  width: 10.4rem;
  height: 10.4rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-home #howitworks .row .flex .container .text {
  flex: 1 0 75%;
  max-width: 75%;
  padding-left: 1.2rem;
}
.page-template-page-home #howitworks .row .flex .container .text h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
  text-align: left;
  color: #fff;
  margin: 2rem 0 0 0;
}
.page-template-page-home #howitworks .row .flex .container .text h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
  text-align: left;
  color: #7bcacb;
  margin: 0 0 1.5rem 0;
}
.page-template-page-home #howitworks .row .flex .container .text p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: left;
  color: #fff;
  margin: 0;
}
.page-template-page-home #howitworks .row .flex .container .text a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: center;
  color: #fff;
  margin: 1.5rem auto 0 auto;
  padding: 0.9rem 1.5rem;
  background-color: #2e395a;
  border-radius: 5px;
  transition: all .3s;
  display: inline-block;
}
.page-template-page-home #howitworks .row .flex .container .text a:hover {
  color: #2e395a;
  background-color: #fff;
}
.page-template-page-home #partners {
  padding: 18rem 0 17rem 0;
  background: #fff;
}
.page-template-page-home #partners .row {
  text-align: center;
}
.page-template-page-home #partners .row .text h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: 0.4px;
  color: #141f4e;
}
.page-template-page-home #partners .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: center;
  color: #141f4e;
  margin: 3.5rem auto;
  max-width: 56rem;
}
.page-template-page-home #partners .row a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #fff;
  background-color: #2e395a;
  border-radius: 5px;
  margin: 3.5rem auto 0 auto;
  padding: 0.9rem 2.7rem;
  border: 1px solid #2e395a;
  transition: all .3s;
  display: inline-block;
}
.page-template-page-home #partners .row a:hover {
  color: #2e395a;
  background-color: #fff;
}
.page-template-page-home #webinars {
  background-color: #f7fbfe;
  border-top-right-radius: 2.3rem;
  padding: 12rem 0 8rem 0;
}
.page-template-page-home #webinars .row {
  max-width: 132rem;
}
.page-template-page-home #webinars .row h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: 0.4px;
  color: #141f4e;
}
.page-template-page-home #webinars .row .flex .group {
  display: flex;
  justify-content: space-between;
  padding: 7rem 0;
}
.page-template-page-home #webinars .row .flex .group .txt {
  flex: 1 0 55%;
  max-width: 55%;
}
.page-template-page-home #webinars .row .flex .group .img {
  flex: 1 0 45%;
  max-width: 45%;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1) {
  flex: 1 0 56%;
  max-width: 56%;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) {
  flex: 1 0 44%;
  max-width: 44%;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(3) {
  width: 6.6rem;
  height: 6.6rem;
  background: #f7fbfe;
  border-radius: 50%;
  position: absolute;
  left: 56%;
  top: 50%;
  margin: 0 0 0 -3.3rem;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(4) {
  width: 3rem;
  background: #f7fbfe;
  position: absolute;
  left: 56%;
  top: -0.5rem;
  bottom: -0.5rem;
  margin: 0 0 0 -1.5rem;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1),
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) {
  overflow: hidden;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1) > div.pic,
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) > div.pic {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1) > div.corners div,
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) > div.corners div {
  width: 2.2rem;
  height: 2.2rem;
  background-repeat: no-repeat;
  background-size: 2.2rem auto;
  position: absolute;
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1) > div.corners .lt,
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) > div.corners .lt {
  background-image: url('../img/c-lt.png');
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1) > div.corners .rt,
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) > div.corners .rt {
  background-image: url('../img/c-rt.png');
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1) > div.corners .lb,
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) > div.corners .lb {
  background-image: url('../img/c-lb.png');
}
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(1) > div.corners .rb,
.page-template-page-home #webinars .row .flex .group .img > div:nth-of-type(2) > div.corners .rb {
  background-image: url('../img/c-rb.png');
}
.page-template-page-home #webinars .row .flex .group.b2c .txt {
  order: 2;
  padding-left: 8rem;
}
.page-template-page-home #webinars .row .flex .group.b2c .img {
  order: 1;
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(1) {
  clip-path: polygon(0 13%, 100% 13%, 100% 100%, 0% 100%);
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(1) > div.corners .lt {
  left: -0.1rem;
  top: calc(13% - 0.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(1) > div.corners .rt {
  left: calc(56% - 3.6rem);
  top: calc(13% - 0.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(1) > div.corners .lb {
  left: -0.1rem;
  bottom: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(1) > div.corners .rb {
  left: calc(56% - 3.6rem);
  bottom: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(2) {
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0% 72%);
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(2) > div.corners .lt {
  left: calc(56% + 1.4rem);
  top: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(2) > div.corners .rt {
  right: -0.1rem;
  top: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(2) > div.corners .lb {
  left: calc(56% + 1.4rem);
  top: calc(72% - 2.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(2) > div.corners .rb {
  right: -0.1rem;
  top: calc(72% - 2.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(1) > div.pic,
.page-template-page-home #webinars .row .flex .group.b2c .img > div:nth-of-type(2) > div.pic {
  background-image: url('../img/bg-b2c.jpg');
}
.page-template-page-home #webinars .row .flex .group.b2b .txt {
  order: 1;
  padding-right: 8rem;
}
.page-template-page-home #webinars .row .flex .group.b2b .img {
  order: 2;
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(1) {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 80%);
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(1) > div.corners .lt {
  left: -0.1rem;
  top: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(1) > div.corners .rt {
  left: calc(56% - 3.6rem);
  top: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(1) > div.corners .lb {
  left: -0.1rem;
  bottom: calc(20% - 0.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(1) > div.corners .rb {
  left: calc(56% - 3.6rem);
  bottom: calc(20% - 0.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(2) {
  clip-path: polygon(0 34%, 100% 34%, 100% 100%, 0% 100%);
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(2) > div.corners .lt {
  left: calc(56% + 1.4rem);
  top: calc(34% - 0.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(2) > div.corners .rt {
  right: -0.1rem;
  top: calc(34% - 0.1rem);
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(2) > div.corners .lb {
  left: calc(56% + 1.4rem);
  bottom: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(2) > div.corners .rb {
  right: -0.1rem;
  bottom: -0.1rem;
}
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(1) > div.pic,
.page-template-page-home #webinars .row .flex .group.b2b .img > div:nth-of-type(2) > div.pic {
  background-image: url('../img/bg-b2b.jpg');
}
.page-template-page-home #webinars .row .flex .group h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.4rem;
  color: #141F4E;
  margin: 0 0 3rem 0;
}
.page-template-page-home #webinars .row .flex .group h4 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #056B9D;
  margin: 0 0 2rem 0;
}
.page-template-page-home #webinars .row .flex .group p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #141F4E;
  margin: 2rem 0 0 0;
}
.page-template-page-home #webinars .row .flex .group .flex {
  margin: 3rem -1rem 0 -1rem;
  display: flex;
  flex-wrap: wrap;
}
.page-template-page-home #webinars .row .flex .group .webinar {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 1rem;
}
.page-template-page-home #webinars .row .flex .group .webinar a {
  background-color: #141F4E;
  background-image: url('../img/ico-calendar.svg');
  background-repeat: no-repeat;
  background-position: 2.0rem 2.8rem;
  background-size: 2.1rem auto;
  border-radius: .5rem;
  height: 100%;
  display: block;
  padding: 2.5rem 5.5rem;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #fff;
  border: 1px solid #141F4E;
  position: relative;
  transition: all .3s;
}
.page-template-page-home #webinars .row .flex .group .webinar a:hover {
  background-color: #fff;
  color: #141F4E;
}
.page-template-page-home #webinars .row .flex .group .webinar a:hover:after {
  filter: invert(100%);
}
.page-template-page-home #webinars .row .flex .group .webinar a:after {
  content: '';
  width: 1.4rem;
  height: 2rem;
  background: url('../img/ico-follow.svg') no-repeat;
  background-size: contain;
  position: absolute;
  right: 2rem;
  top: 50%;
  margin-top: -1rem;
  transition: all .3s;
}
.page-template-page-home #events {
  background-color: #f7fbfe;
  border-top-right-radius: 2.3rem;
  padding: 12rem 0 6rem 0;
}
.page-template-page-home #events .row {
  max-width: 117rem;
}
.page-template-page-home #events .row h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: 0.4px;
  color: #141f4e;
}
.page-template-page-home #events .row .flex {
  display: flex;
  justify-content: space-between;
  margin: 6.5rem -2.7rem 0 -2.7rem;
}
.page-template-page-home #events .row .flex .box {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 2.7rem;
}
.page-template-page-home #events .row .flex .box .img {
  width: 100%;
  height: 27rem;
  background-color: #fff;
  border-radius: 1.3rem;
}
.page-template-page-home #events .row .flex .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.3rem;
}
.page-template-page-home #events .row .flex .box h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: left;
  letter-spacing: 1.78px;
  color: #7bcacb;
  text-transform: uppercase;
  margin: 4.5rem 0 0 0;
}
.page-template-page-home #events .row .flex .box h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.6rem;
  text-align: left;
  color: #2e395a;
  margin: 0;
}
.page-template-page-home #events .row .flex .box p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: left;
  color: #2e395a;
  margin: 2rem 0 ;
}
.page-template-page-home #events .row .flex .box a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: left;
  color: #2e395a;
  text-transform: uppercase;
  text-decoration: underline;
  transition: all .3s;
}
.page-template-page-home #events .row .flex .box a:hover {
  text-decoration: none;
}
.page-template-page-home #events .row .center {
  text-align: center;
}
.page-template-page-home #events .row .center a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #fff;
  background-color: #2e395a;
  transition: all .3s;
  border-radius: 5px;
  border: 1px solid #2e395a;
  padding: 0.9rem 4rem;
  margin: 4.5rem auto 4rem auto;
  display: inline-block;
}
.page-template-page-home #events .row .center a:hover {
  color: #2e395a;
  background-color: #fff;
}
.page-template-page-home #testimonial .slide {
  width: 100%;
  height: 100rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center ;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-template-page-home #testimonial .slide .row {
  max-width: 110rem;
  height: auto;
  background-color: #fff;
  border-radius: 2.5rem;
  margin: 0 auto 12rem auto;
  padding: 8rem 18rem 7.5rem 18rem;
}
.page-template-page-home #testimonial .slide .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3.6rem;
  text-align: center;
  margin: 0 auto 2rem auto;
  color: #141f4e;
}
.page-template-page-home #testimonial .slide .row .text h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
  margin: 0 auto;
  color: #141f4e;
}
.page-template-page-home #testimonial .owl-dots {
  display: flex;
  justify-content: center;
  padding: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 3rem;
}
.page-template-page-home #testimonial .owl-dots .owl-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.8rem 0 0;
  transition: all .3s;
}
.page-template-page-home #testimonial .owl-dots .owl-dot.active,
.page-template-page-home #testimonial .owl-dots .owl-dot:hover {
  background: #fff;
}
.page-template-page-home #news {
  background: #fff;
  padding: 7rem 0 12rem 0;
}
.page-template-page-home #news .row {
  max-width: 112rem;
}
.page-template-page-home #news h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: 0.4px;
  color: #141f4e;
}
.page-template-page-home #news .flex {
  display: flex;
  justify-content: space-between;
  margin: 0 -2.5rem;
}
.page-template-page-home #news .flex .post {
  margin: 4rem 0;
  padding: 0 0;
  flex: 1 0 33.33%;
  max-width: 33.33%;
}
.page-template-page-home #news .flex .post a {
  display: block;
  background: #fff;
  padding: 2.5rem 2.5rem 5.5rem 2.5rem;
  border-radius: 1.9rem;
  height: 100%;
  position: relative;
  transition: all .3s;
}
.page-template-page-home #news .flex .post a:hover {
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
}
.page-template-page-home #news .flex .post a:hover span {
  text-decoration: underline;
}
.page-template-page-home #news .flex .post a .pic {
  width: 100%;
  position: relative;
  padding-top: 60%;
  border-radius: 1.4rem;
  overflow: hidden;
  margin: 0 0 5rem 0;
}
.page-template-page-home #news .flex .post a .pic img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-home #news .flex .post a p.cat {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 2px;
  color: #7BCACB;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.page-template-page-home #news .flex .post a h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  line-height: 3.3rem;
  font-weight: 700;
  color: #2E395A;
  margin: 0;
}
.page-template-page-home #news .flex .post a h3 + p {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 1.5rem 0;
  font-weight: 700;
}
.page-template-page-home #news .flex .post a span {
  color: #056B9D;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 700;
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
}
.page-template-page-home .html5-image {
  padding: 0 !important;
}
.page-template-page-home .html5-image .ebook {
  padding: 5rem 0;
}
.page-template-page-home .html5-image .ebook .content {
  display: flex;
  background: #fff;
}
.page-template-page-home .html5-image .ebook .content .txt {
  flex: 1 0 45%;
  max-width: 45%;
  padding: 4rem 4rem 4rem 6rem;
  background: #F7FBFE;
  text-align: left;
}
.page-template-page-home .html5-image .ebook .content .txt img {
  width: 80%;
  height: auto;
  border-radius: .8rem;
  margin-top: -9rem;
}
.page-template-page-home .html5-image .ebook .content .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 3rem 0;
}
.page-template-page-home .html5-image .ebook .content .txt p:nth-of-type(1) {
  font-size: 3rem;
  line-height: 3.4rem;
  color: #31527E;
  font-weight: 700;
}
.page-template-page-home .html5-image .ebook .content .form {
  flex: 1 0 55%;
  max-width: 55%;
  padding: 4rem;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper {
  margin: 0 0 0 0;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_heading {
  display: none;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body .nf-field-label,
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer .nf-field-label {
  margin: 0;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body label,
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer label {
  display: none;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body input[type="text"],
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer input[type="text"],
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body input[type="tel"],
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer input[type="tel"],
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body input[type="email"],
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer input[type="email"] {
  background: #fff;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin: 0;
  padding: 1.5rem 3.5rem;
  color: #2E395A;
  height: 5.8rem;
  border-radius: .5rem;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body textarea,
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer textarea {
  background: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin: 0;
  padding: 1.5rem 3.5rem;
  color: #2E395A;
  height: 14rem;
  border-radius: .5rem;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body input[type="submit"],
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer input[type="submit"] {
  border: 1px solid #7BCACB;
  font-size: 1.8rem;
  height: 6.8rem;
  line-height: 2.8rem;
  text-align: center;
  width: 100%;
  color: #fff;
  margin: 0 auto;
  display: inline-block;
  padding: 2rem 3.5rem;
  background-color: #7BCACB;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 1rem 0 0 0;
  transition: all 0.3s;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body input[type="submit"]:hover,
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: #fff;
  color: #7BCACB;
}
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_body .validation_message,
.page-template-page-home .html5-image .ebook .content .form .gform_wrapper .gform_footer .validation_message {
  font-size: 1.4rem;
  color: #c00;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
}
.page-template-page-home .html5-image .ebook .content .form .gform_confirmation_wrapper {
  margin: 8rem 0 0 0;
}
.page-template-page-home .html5-image .ebook .content .form .gform_confirmation_wrapper div {
  font-family: 'Noto Sans', sans-serif;
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 400;
  color: #2E395A;
  margin: 3rem 0;
  text-align: left;
}
.page-template-page-home .html5-image .ebook .content .form .gform_validation_errors {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  margin: 0 0 4rem 0;
}
.page-template-page-home .html5-image .ebook .content .form .gform_validation_errors h2 {
  color: #c00;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
}
.page-template-page-home .html5-image .ebook .content .form .gform_validation_errors h2 span {
  display: none;
}
/* downloadable */
/* downloadable materials */
.page-template-page-downloadable-materials #hero {
  width: 100%;
  position: relative;
}
.page-template-page-downloadable-materials #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
}
.page-template-page-downloadable-materials .row h1 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  line-height: 5rem;
  color: #2E395A;
  margin: 5rem 0 5rem 0;
  text-align: center;
  font-weight: 700;
}
.page-template-page-downloadable-materials .row #materials-feed {
  margin: 0 0 20px 0;
}
.shared-files-main-elements {
  background: #FFF !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex !important;
  align-items: center;
}
.shared-files-main-elements-right {
  padding-left: 30px !important;
}
.shared-files-file-title {
  font-size: 16px;
  margin-left: 3px;
  margin-bottom: 5px;
  display: block !important;
  color: #2E395A;
}
ul.shared-files-ajax-list {
  list-style: none;
}
.shared-file-size {
  margin-bottom: 10px;
}
.shared-files-download-button {
  display: table-cell !important;
  right: -5px;
  position: relative;
  text-transform: capitalize !important;
  font-weight: 300 !important;
}
.shared-files-preview-button {
  margin: 8px 5px 0 0 !important;
  font-size: 14px !important;
  display: table-cell !important;
  text-transform: capitalize !important;
  font-weight: 300 !important;
}
.shared-files-download-button:hover {
  text-decoration: none !important;
  background: #4682b4 !important;
  color: #FFF !important;
  border-color: #FFF !important;
}
.shared-files-preview-button:hover {
  text-decoration: none !important;
  background: #4682b4 !important;
  color: #FFF !important;
  border-color: #FFF !important;
}
/* landing page - younger */
.page-template-page-young {
  background: #F7FBFE;
}
.page-template-page-young #page {
  padding-top: 0;
}
.page-template-page-young #page.scrolled {
  padding-top: 11rem;
}
.page-template-page-young header#head {
  position: static;
}
.page-template-page-young header#head.sticky {
  position: fixed;
}
.page-template-page-young #hero {
  height: 60rem;
}
.page-template-page-young #hero .row {
  padding: 0 2rem;
}
.page-template-page-young #hero .row .content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page-template-page-young #hero .row .content .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}
.page-template-page-young #hero .row .content .bg.des {
  border-radius: 1.5rem 1.5rem 1.5rem 15rem;
}
.page-template-page-young #hero .row .content .bg.mob {
  display: none;
}
.page-template-page-young #hero .row .content .app {
  width: 44rem;
  height: 58rem;
  position: absolute;
  right: 0;
  bottom: -5rem;
}
.page-template-page-young #hero .row .content .app img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-young #hero .row .content .txt {
  max-width: 59rem;
  position: relative;
  z-index: 2;
  padding-left: 7rem;
}
.page-template-page-young #hero .row .content .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #fff;
  margin: 1.5rem 0;
  text-align: center;
}
.page-template-page-young #hero .row .content .txt p:first-of-type {
  font-family: ivypresto-display, serif;
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 6.5rem;
  letter-spacing: 1px;
  margin-top: 0;
}
.page-template-page-young #hero .row .content .txt p:last-of-type {
  margin: 4rem 0 0 0;
}
.page-template-page-young #hero .row .content .txt a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: #69C0C1;
  border-radius: 0.5rem;
  line-height: 2rem;
  padding: 1.7rem 3rem;
  margin: 0 1rem;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-young #hero .row .content .txt a:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-young #hero .row .content .txt a + a {
  background: #fff;
  color: #2E395A;
}
.page-template-page-young #hero .row .content .txt a + a:hover {
  background: #2E395A;
  color: #fff;
}
.page-template-page-young #more {
  padding: 7rem 0 3rem 0;
  text-align: center;
}
.page-template-page-young #more .row {
  max-width: 64rem;
}
.page-template-page-young #more p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 2rem 0;
  text-align: center;
  font-weight: 500;
}
.page-template-page-young #more p:first-of-type {
  font-family: 'Merriweather', serif;
  font-size: 3.4rem;
  line-height: 4.4rem;
  letter-spacing: 0.4px;
  font-weight: 300;
}
.page-template-page-young #more p:first-of-type em {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.page-template-page-young #more p:last-of-type {
  margin: 3rem 0 0 0;
}
.page-template-page-young #more a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: #056B9D;
  border: 1px solid #056B9D;
  border-radius: 0.5rem;
  line-height: 2rem;
  padding: 1.7rem 4rem;
  margin: 0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-young #more a:hover {
  background: #fff;
  color: #056B9D;
}
.page-template-page-young #quotes {
  padding: 3rem 0 6rem 0;
}
.page-template-page-young #quotes .flex {
  display: flex;
  justify-content: space-between;
  margin: 0 -2rem;
}
.page-template-page-young #quotes .flex .post {
  padding: 0 2rem;
  flex: 1 0 33.33%;
  max-width: 33.33%;
}
.page-template-page-young #quotes .flex .post .content {
  height: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 3.8rem 3.8rem 12rem 3.8rem;
  position: relative;
}
.page-template-page-young #quotes .flex .post .content blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #31527E;
  font-weight: 300;
  margin: 0;
  padding: 0 0 0 3.2rem;
  position: relative;
  font-style: italic;
}
.page-template-page-young #quotes .flex .post .content blockquote:before {
  content: '';
  width: 0.3rem;
  height: 7.2rem;
  background: #6B8AA3;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.page-template-page-young #quotes .flex .post .content .person {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 11rem;
  padding: 0 3.8rem 3.8rem 3.8rem;
  display: flex;
  align-items: center;
}
.page-template-page-young #quotes .flex .post .content .person .img {
  flex: 1 0 5.4rem;
  max-width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  overflow: hidden;
  display: none;
}
.page-template-page-young #quotes .flex .post .content .person .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-young #quotes .flex .post .content .person .meta {
  padding-left: 1.8rem;
  flex: 1;
  padding-left: 3.2rem;
}
.page-template-page-young #quotes .flex .post .content .person .meta p:first-of-type {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 2.3rem;
  color: #31527E;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  margin: 0;
}
.page-template-page-young #quotes .flex .post .content .person .meta p + p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #6B8AA3;
  font-weight: 400;
  margin: 0.8rem 0 0 0;
  display: none;
}
.page-template-page-young #everything {
  padding: 6rem 0 5rem 0;
  text-align: center;
}
.page-template-page-young #everything .row {
  max-width: 70rem;
}
.page-template-page-young #everything p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 2rem auto;
  text-align: center;
  font-weight: 500;
  max-width: 52rem;
}
.page-template-page-young #everything p:first-of-type {
  font-family: 'Merriweather', serif;
  font-size: 3.4rem;
  line-height: 4.4rem;
  letter-spacing: 0.4px;
  font-weight: 300;
  max-width: 100%;
}
.page-template-page-young #everything p:first-of-type em {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.page-template-page-young #features {
  padding: 9rem 0 4rem 0;
}
.page-template-page-young #features .row {
  max-width: 138rem;
}
.page-template-page-young #features .post {
  display: flex;
}
.page-template-page-young #features .post .img {
  flex: 1 0 50%;
  max-width: 50%;
}
.page-template-page-young #features .post .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-young #features .post .txt {
  flex: 1 0 50%;
  max-width: 50%;
}
.page-template-page-young #features .post .txt h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  line-height: 2.5rem;
  color: #056B9D;
  font-weight: 700;
  margin: 0;
  max-width: 41rem;
}
.page-template-page-young #features .post .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin: 1.5rem 0;
  color: #056B9D;
  max-width: 37rem;
}
.page-template-page-young #features .post .txt h3 + p {
  color: #000;
}
.page-template-page-young #features .post .txt a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: #056B9D;
  border: 1px solid #056B9D;
  border-radius: 0.5rem;
  line-height: 2rem;
  padding: 1.7rem 4rem;
  margin: 0;
  display: inline-block;
  margin-top: 2rem;
  transition: all .3s;
}
.page-template-page-young #features .post .txt a:hover {
  background: #fff;
  color: #056B9D;
}
.page-template-page-young #features .post:nth-of-type(odd) .img {
  padding-right: 2rem;
}
.page-template-page-young #features .post:nth-of-type(odd) .txt {
  padding-left: 9rem;
}
.page-template-page-young #features .post:nth-of-type(even) .img {
  padding-left: 2rem;
  order: 2;
  margin-bottom: -3rem;
}
.page-template-page-young #features .post:nth-of-type(even) .txt {
  padding-left: 9rem;
  order: 1;
}
.page-template-page-young #features .post:nth-of-type(1) {
  margin-bottom: 2.5rem;
}
.page-template-page-young #features .post:nth-of-type(2) {
  margin-bottom: 2.5rem;
}
.page-template-page-young #works {
  background: #2E395A;
  padding: 10rem 0 9rem 0;
}
.page-template-page-young #works .row:nth-of-type(1) {
  max-width: 76rem;
}
.page-template-page-young #works .row:nth-of-type(1) h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #6DBCDB;
  margin: 0;
}
.page-template-page-young #works .row:nth-of-type(1) p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #fff;
  margin: 3rem 0;
  text-align: center;
  font-weight: 500;
}
.page-template-page-young #works .row:nth-of-type(1) p:first-of-type {
  font-family: 'Merriweather', serif;
  font-size: 3.4rem;
  line-height: 4.4rem;
  letter-spacing: 0.4px;
  font-weight: 300;
}
.page-template-page-young #works .row:nth-of-type(1) p:first-of-type em {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.page-template-page-young #works .row:nth-of-type(1) a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: #056B9D;
  border: 1px solid #056B9D;
  border-radius: 0.5rem;
  line-height: 2rem;
  padding: 1.7rem 4rem;
  margin: 0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-young #works .row:nth-of-type(1) a:hover {
  background: #fff;
  color: #056B9D;
}
.page-template-page-young #works .row:nth-of-type(2) {
  max-width: 128rem;
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-young #works .row:nth-of-type(2) .txt {
  flex: 1 0 50%;
  max-width: 58rem;
  padding-right: 3rem;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post {
  padding: 2rem 0 3.5rem 0;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .ico {
  flex: 1 0 10rem;
  max-width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #6DBCDB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .ico img {
  width: 4rem;
  height: auto;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .content {
  padding-left: 4rem;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .content h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .content h3 + p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  color: #6DBCDB;
  font-weight: 700;
  margin: 0;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .content p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #fff;
  font-weight: 700;
  margin: 1rem 0;
  max-width: 40rem;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .content a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: #31527E;
  border-radius: 0.5rem;
  line-height: 2rem;
  padding: 1.3rem 2rem;
  margin: 0;
  display: inline-block;
  margin-top: 2rem;
  transition: all .3s;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post .content a:hover {
  background: #fff;
  color: #31527E;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post:before {
  content: '';
  width: 0.2rem;
  background: #fff;
  position: absolute;
  left: 5rem;
  top: 15rem;
  border-radius: 0.2rem;
  bottom: 0;
}
.page-template-page-young #works .row:nth-of-type(2) .txt .post:last-of-type:before {
  display: none;
}
.page-template-page-young #works .row:nth-of-type(2) .img {
  flex: 1 0 50%;
  max-width: 58rem;
  padding-left: 3rem;
}
.page-template-page-young #works .row:nth-of-type(2) .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-young #know {
  padding: 5rem 0 10rem 0;
  background: #EFFBFF;
}
.page-template-page-young #know .row {
  max-width: 82rem;
}
.page-template-page-young #know .row h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #31527E;
  margin: 0 0 4rem 0;
}
.page-template-page-young #know .row p {
  margin: 0;
}
.page-template-page-young #know .row a {
  display: block;
  position: relative;
}
.page-template-page-young #know .row a img {
  width: 100%;
  height: auto;
  border-radius: 1.3rem;
}
.page-template-page-young #know .row a .play {
  width: 7.4rem;
  height: 7.4rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3.7rem 0 0 -3.7rem;
  background-image: url("../img/ico-play-blue.png");
  background-repeat: no-repeat;
  background-position: 2.6rem center;
  background-size: 2.6rem auto;
  transition: all .3s;
}
.page-template-page-young #know .row a:hover .play {
  transform: scale(1.1);
}
.page-template-page-young #know .row .flex {
  display: flex;
  justify-content: space-between;
  max-width: 75rem;
  margin: 5rem auto 0 auto;
}
.page-template-page-young #know .row .flex a {
  display: block;
  border-radius: 1.2rem;
  flex: 1 0 24rem;
  max-width: 24rem;
  height: 20rem;
  padding: 3.5rem 1rem 1rem 1rem;
  transition: all .3s;
}
.page-template-page-young #know .row .flex a:hover {
  background: #fff;
}
.page-template-page-young #know .row .flex a:hover .icon {
  background: rgba(109, 188, 219, 0.1);
}
.page-template-page-young #know .row .flex a .icon {
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 50%;
  transition: all .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-young #know .row .flex a .icon img {
  width: 3.6rem;
  height: auto;
  border-radius: 0;
}
.page-template-page-young #know .row .flex a h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #31527E;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-align: center;
}
.page-template-page-young #know .row .flex a p {
  font-family: 'Merriweather', serif;
  font-size: 2.0rem;
  line-height: 2.4rem;
  color: #31527E;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
/* about */
.page-template-page-about #hero {
  width: 100%;
  height: 61.8rem;
  border-radius: 1.5rem;
  position: relative;
  z-index: 2;
}
.page-template-page-about #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
}
.page-template-page-about #hero .row .content {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center ;
  position: relative;
  padding: 0 8rem;
  border-radius: 1.5rem;
  height: 100%;
}
.page-template-page-about #hero .row .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  max-width: 63rem;
  height: 100%;
}
.page-template-page-about #hero .row .text h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 6.4rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 100%;
}
.page-template-page-about #hero .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3rem;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  margin: 2.5rem auto ;
  max-width: 44rem;
}
.page-template-page-about #hero .row .text a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #484848;
  margin: 0 auto 0 auto;
  background-color: #fff;
  display: inline-block;
  padding: 0.9rem 3rem;
  border-radius: 1.8rem;
  transition: all .3s;
}
.page-template-page-about #hero .row .text a:hover {
  color: #fff;
  background-color: #484848;
}
.page-template-page-about #assets {
  margin-top: -1.8rem;
  position: relative;
  z-index: 1;
}
.page-template-page-about #assets .row {
  max-width: 140rem;
  padding: 0 2rem;
}
.page-template-page-about #assets .row .content {
  background: #fff;
  padding: 6.5rem 4rem 5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  box-shadow: 1.4rem 3rem 4rem rgba(92, 111, 172, 0.12);
}
.page-template-page-about #assets .row .content .left {
  padding-right: 4rem;
  flex: 1 0 48%;
  max-width: 48%;
}
.page-template-page-about #assets .row .content .left p {
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 3.6rem;
  letter-spacing: 0.21px;
  text-align: center;
  color: #2e395a;
  margin: 0 auto ;
  max-width: 58rem;
}
.page-template-page-about #assets .row .content .left p strong {
  font-family: 'Merriweather', serif;
  font-style: italic;
}
.page-template-page-about #assets .row .content hr {
  border-top: none;
  width: 0.75px;
  height: 7.4rem;
  color: #d8d8d8;
}
.page-template-page-about #assets .row .content .right {
  padding-left: 2.5rem;
  flex: 1 0 52%;
  max-width: 52%;
  display: flex;
  justify-content: space-between;
}
.page-template-page-about #assets .row .content .right .container {
  padding: 0 1.2rem;
  flex: 1 0 33.33%;
  max-width: 33.33%;
}
.page-template-page-about #assets .row .content .right .container .ico {
  margin: 0 auto 2.5rem auto;
}
.page-template-page-about #assets .row .content .right .container .ico img {
  display: block;
  margin: 0 auto 2.5rem auto;
}
.page-template-page-about #assets .row .content .right .container p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
  color: #2e395a;
  margin: 0 auto ;
}
.page-template-page-about #story {
  padding: 14.5rem 0 0 0;
}
.page-template-page-about #story .row h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 5.2rem;
  text-align: center;
  color: #056b9d;
  margin: 0 auto ;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.page-template-page-about #story .row h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 6rem;
  text-align: center;
  color: #2e395a;
  margin: 0 auto ;
  letter-spacing: 0.4px;
  max-width: 64rem;
}
.page-template-page-about #story .row h2 strong {
  font-style: italic;
  font-weight: 700;
}
.page-template-page-about #story .row .flex {
  display: flex;
  justify-content: space-between;
  padding-top: 10rem;
}
.page-template-page-about #story .row .flex .left {
  flex: 1 0 50%;
  max-width: 50%;
  position: relative;
}
.page-template-page-about #story .row .flex .left img {
  width: 76rem;
  height: auto;
  position: absolute;
  right: 0;
  filter: drop-shadow(0 2rem 4.4rem rgba(0, 0, 0, 0.07));
}
.page-template-page-about #story .row .flex .right {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 13rem 6rem 7rem 10rem;
}
.page-template-page-about #story .row .flex .right p {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: left;
  color: #2e395a;
  margin: 0 0 2rem 0;
}
.page-template-page-about #alternative {
  padding: 5rem 0 6rem 0;
  background-color: #f2f5f7;
}
.page-template-page-about #alternative .row {
  display: flex;
  justify-content: flex-end;
}
.page-template-page-about #alternative .row .text {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 3rem 6rem 0 10rem;
}
.page-template-page-about #alternative .row .text h3 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 4rem;
  letter-spacing: 0.28px;
  text-align: left;
  color: #2e395a;
}
.page-template-page-about #alternative .row .text h3 strong {
  font-style: italic;
}
.page-template-page-about #alternative .row .text p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: left;
  color: #2e395a;
}
.page-template-page-about #mission {
  padding: 8rem 0;
  background-color: #f2f5f7;
}
.page-template-page-about #mission .row h3 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.2rem;
  letter-spacing: 1.78px;
  text-align: center;
  color: #056b9d;
  margin: 0 auto;
  text-transform: uppercase;
}
.page-template-page-about #mission .row h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 6rem;
  letter-spacing: 0.4px;
  text-align: center;
  color: #2e395a;
  max-width: 67.5rem;
  margin: 0 auto;
}
.page-template-page-about #mission .row h2 strong {
  font-style: italic;
}
.page-template-page-about #mission .row p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #2e395a;
  margin: 5.5rem auto;
  max-width: 67rem;
}
.page-template-page-about #mission .row .flex {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-template-page-about #mission .row .flex .box {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 10rem 0 3rem;
  position: relative;
}
.page-template-page-about #mission .row .flex .box h4 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 4rem;
  letter-spacing: 0.28px;
  text-align: left;
  color: #2e395a;
  padding-top: 1rem;
  margin-left: -3rem;
}
.page-template-page-about #mission .row .flex .box h4 strong {
  font-style: italic;
}
.page-template-page-about #mission .row .flex .box p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
  color: #2e395a;
}
.page-template-page-about #mission .row .flex .box hr {
  border-top: none;
  height: 12rem;
  border: 3px solid #7bcacb;
  position: absolute;
  top: 5rem;
  left: 0rem;
}
.page-template-page-about #mission .row .flex .box:first-of-type hr {
  display: none;
}
.page-template-page-about #team,
.page-template-page-about #founders {
  padding: 8.5rem 0 8rem 0;
}
.page-template-page-about #team .row h2,
.page-template-page-about #founders .row h2 {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.2rem;
  letter-spacing: 1.78px;
  text-align: center;
  color: #056b9d;
  margin: 0 auto;
  text-transform: uppercase;
}
.page-template-page-about #team .row h3,
.page-template-page-about #founders .row h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 11rem;
  text-align: center;
  color: #2e395a;
  margin: 0 auto 2rem auto;
}
.page-template-page-about #team .row .lead,
.page-template-page-about #founders .row .lead {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 4.7rem;
  letter-spacing: 0.28px;
  text-align: center;
  color: #2e395a;
  margin: 2.5rem auto 8rem auto;
  max-width: 66.4rem;
}
.page-template-page-about #team .row .lead strong,
.page-template-page-about #founders .row .lead strong {
  font-weight: 700;
  font-style: italic;
}
.page-template-page-about #team .row .flex,
.page-template-page-about #founders .row .flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -4.5rem;
}
.page-template-page-about #team .row .flex .box,
.page-template-page-about #founders .row .flex .box {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 4.5rem 7rem 4.5rem;
}
.page-template-page-about #team .row .flex .box .pic,
.page-template-page-about #founders .row .flex .box .pic {
  width: 18rem;
  height: 18rem;
  margin: 0 auto 2.5rem auto;
}
.page-template-page-about #team .row .flex .box .pic img,
.page-template-page-about #founders .row .flex .box .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.page-template-page-about #team .row .flex .box h2,
.page-template-page-about #founders .row .flex .box h2 {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.4rem;
  text-align: center;
  color: #056b9d;
  margin: 0 auto;
}
.page-template-page-about #team .row .flex .box h4,
.page-template-page-about #founders .row .flex .box h4 {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 1.21px;
  text-align: center;
  color: #056b9d;
  margin: 1.5rem auto 5rem auto;
  text-transform: uppercase;
}
.page-template-page-about #team .row .flex .box hr,
.page-template-page-about #founders .row .flex .box hr {
  border-top: none;
  border: 1px solid #979797;
  width: 100%;
}
.page-template-page-about #team .row .flex .box p,
.page-template-page-about #founders .row .flex .box p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
  color: #2e395a;
  margin: 2rem 0 0 0 ;
  padding: 0 1.5rem;
}
.page-template-page-about #directors .row h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 11rem;
  text-align: center;
  color: #2e395a;
  margin: 0 auto 2rem auto;
}
.page-template-page-about #directors .row .flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 3rem -4.5rem 0 -4.5rem;
}
.page-template-page-about #directors .row .flex .box {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 4.5rem 7rem 4.5rem;
}
.page-template-page-about #directors .row .flex .box .pic {
  width: 18rem;
  height: 18rem;
  margin: 0 auto 2.5rem auto;
}
.page-template-page-about #directors .row .flex .box .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.page-template-page-about #directors .row .flex .box h2 {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2.4rem;
  text-align: center;
  color: #056b9d;
  margin: 0 auto;
}
.page-template-page-about #directors .row .flex .box h4 {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 1.21px;
  text-align: center;
  color: #056b9d;
  margin: 1.5rem auto 5rem auto;
  text-transform: uppercase;
}
.page-template-page-about #directors .row .flex .box hr {
  border-top: none;
  border: 1px solid #979797;
  width: 100%;
}
.page-template-page-about #directors .row .flex .box p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
  color: #2e395a;
  margin: 2rem 0 0 0 ;
  padding: 0 1.5rem;
}
/* services */
.page-template-page-services #hero {
  width: 100%;
  height: 68.7rem;
  border-radius: 1.5rem;
  position: relative;
  z-index: 2;
}
.page-template-page-services #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
}
.page-template-page-services #hero .row .content {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center ;
  position: relative;
  padding: 0 8rem;
  border-radius: 1.5rem;
  height: 100%;
}
.page-template-page-services #hero .row .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  max-width: 63rem;
  height: 100%;
}
.page-template-page-services #hero .row .text h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 5.1rem;
  line-height: 6.4rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 100%;
}
.page-template-page-services #hero .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3rem;
  letter-spacing: 0.18px;
  text-align: center;
  color: #fff;
  margin: 2.5rem auto ;
  max-width: 44rem;
}
.page-template-page-services #solutions {
  padding-top: 10rem;
}
.page-template-page-services #solutions .post {
  max-width: 100%;
  padding: 7rem 0;
}
.page-template-page-services #solutions .post .row {
  max-width: 123rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-services #solutions .post .row .ico {
  flex: 1 0 7rem;
  max-width: 7rem;
}
.page-template-page-services #solutions .post .row .txt {
  margin: 0;
  flex: 1;
}
.page-template-page-services #solutions .post .row .txt h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 3rem;
  text-align: left;
  letter-spacing: 2px;
  color: #056b9d;
  margin: 0;
  text-transform: uppercase;
  padding: 2rem 0;
}
.page-template-page-services #solutions .post .row .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: left;
  color: #2e395a;
  margin: 0.5rem 0 0 0;
  max-width: 48rem;
}
.page-template-page-services #solutions .post .row .animation {
  flex: 1;
}
.page-template-page-services #solutions .post .row .animation .thumb {
  position: relative;
  max-width: 100%;
  height: auto;
}
.page-template-page-services #solutions .post .row .animation .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-services #solutions .post .row .animation .thumb .play {
  width: 7.4rem;
  height: 7.4rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3.7rem 0 0 -3.7rem;
  background-image: url("../img/ico-play-blue.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.2rem 1.2rem;
  transition: all .3s;
}
.page-template-page-services #solutions .post .row .animation .thumb .play:hover .play {
  transform: scale(1.1);
}
.page-template-page-services #solutions .post .row .hr {
  display: none;
  position: absolute;
  z-index: -1;
}
.page-template-page-services #solutions .post .row .hr:after {
  content: '';
  height: 1rem;
  background: #F7FBFE;
  position: absolute;
}
.page-template-page-services #solutions .post:nth-of-type(1) .row {
  z-index: 7;
}
.page-template-page-services #solutions .post:nth-of-type(1) .row .txt {
  padding-left: 3.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(1) .row .txt h2 {
  color: #54aeaf;
}
.page-template-page-services #solutions .post:nth-of-type(1) .row .animation {
  padding-left: 3.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(1) .row .hr {
  display: block;
  left: 6.5rem;
  top: 3.5rem;
  right: 9rem;
  bottom: -7rem;
  border-left: 1px dashed #979797;
  border-bottom: 1px dashed #979797;
  border-bottom-left-radius: 2.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(2) .row {
  z-index: 6;
}
.page-template-page-services #solutions .post:nth-of-type(2) .row .ico {
  order: 3;
  margin-top: 4rem;
}
.page-template-page-services #solutions .post:nth-of-type(2) .row .txt {
  order: 2;
  padding-right: 3.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(2) .row .txt h2 {
  color: #54aeaf;
  margin-top: 4rem;
}
.page-template-page-services #solutions .post:nth-of-type(2) .row .animation {
  order: 1;
  padding-right: 3.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(2) .row .hr {
  display: block;
  left: 9rem;
  top: -7.1rem;
  right: 6.5rem;
  bottom: -7rem;
  border-right: 1px dashed #979797;
  border-bottom: 1px dashed #979797;
  border-top: 1px dashed #979797;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(2) .row .hr:after {
  right: 2.5rem;
  left: 0;
  top: -0.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(3) .row .ico {
  margin-top: 4rem;
}
.page-template-page-services #solutions .post:nth-of-type(3) .row .txt {
  padding-left: 3.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(3) .row .txt h2 {
  color: #eb6f53;
  margin-top: 4rem;
}
.page-template-page-services #solutions .post:nth-of-type(3) .row .animation {
  padding-left: 3.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(3) .row .hr {
  display: block;
  left: 6.5rem;
  top: -7.1rem;
  width: 4rem;
  height: 14rem;
  border-left: 1px dashed #979797;
  border-top: 1px dashed #979797;
  border-top-left-radius: 2.5rem;
}
.page-template-page-services #solutions .post:nth-of-type(3) .row .hr:after {
  left: 2.3rem;
  right: 0;
  top: -0.5rem;
}
.page-template-page-services #plans {
  background: #f3fbff;
  padding-bottom: 5rem;
}
.page-template-page-services #plans .row {
  max-width: 123rem;
}
.page-template-page-services #plans .row h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.2rem;
  letter-spacing: 1.78px;
  text-align: center;
  color: #417391;
  margin: 0 auto 1.5rem auto;
  text-transform: uppercase;
  padding-top: 7rem;
}
.page-template-page-services #plans .row h2 {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 2.6rem;
  letter-spacing: 0.26px;
  line-height: 4.3rem;
  text-align: center;
  color: #2e395a;
  margin: 1rem auto 0 auto;
  max-width: 73.5rem;
}
.page-template-page-services #plans .row p {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-align: center;
  color: #2e395a;
  margin: 2rem auto 0 auto;
  max-width: 61rem;
}
.page-template-page-services #tiers {
  padding: 6rem 0 12rem 0;
}
.page-template-page-services #tiers .row {
  max-width: 98rem;
  z-index: 6;
}
.page-template-page-services #tiers .row h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.2rem;
  letter-spacing: 1.78px;
  text-align: center;
  color: #056b9d;
  margin: 0 auto 1.5rem auto;
  text-transform: uppercase;
  padding-top: 7rem;
}
.page-template-page-services #tiers .row p {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 2.6rem;
  letter-spacing: 0.4px;
  line-height: 4rem;
  text-align: center;
  color: #2E395A;
  margin: 0 auto;
  max-width: 76rem;
}
.page-template-page-services #tiers .row .table {
  margin: 10rem 0 0 0;
}
.page-template-page-services #tiers .row .table .header {
  display: none;
}
.page-template-page-services #tiers .row .table .header table {
  width: 100%;
}
.page-template-page-services #tiers .row .table .header table tbody {
  display: none;
}
.page-template-page-services #tiers .row .table .header table tfoot {
  display: none;
}
.page-template-page-services #tiers .row .table.fixed .header {
  display: block;
  position: fixed;
  top: 7.7rem;
  left: 0;
  right: 0;
  z-index: 3;
}
.page-template-page-services #tiers .row .table table {
  border: none;
  background: #fff;
  border-radius: .7rem;
  overflow: hidden;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
}
.page-template-page-services #tiers .row .table table thead tr th {
  padding: 1.2rem 3.2rem 1.2rem 3.2rem;
}
.page-template-page-services #tiers .row .table table thead tr th h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #6DBCDB;
  font-weight: 700;
  margin: 0;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(1) {
  background: #2E395A;
  vertical-align: bottom;
  text-align: left;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
.page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
  width: 24rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.3rem;
  font-weight: 400;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) strong,
.page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) strong {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  line-height: 3.6rem;
  font-weight: 700;
  display: block;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) {
  background: #7a8a97;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
  background: #71c3c3;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(2) th {
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #2E395A;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(2) th strong {
  font-size: 6rem;
  line-height: 6rem;
  font-weight: 400;
  display: inline-flex;
  align-items: flex-end;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(2) th strong small {
  font-size: 1.6rem;
  line-height: 1.8rem;
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(2) th:nth-child(1) {
  background: linear-gradient(90deg, #ffffff 0%, #f8f8fb 100%);
}
.page-template-page-services #tiers .row .table table thead tr:nth-child(2) th:nth-child(2) {
  background: #fdfdfe;
}
.page-template-page-services #tiers .row .table table tbody tr td {
  text-align: center;
  padding: 1.2rem 3.5rem;
}
.page-template-page-services #tiers .row .table table tbody tr td img {
  height: 2.2rem;
  width: auto;
}
.page-template-page-services #tiers .row .table table tbody tr td h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #6DBCDB;
  font-weight: 700;
  margin: 0 0 0 0;
}
.page-template-page-services #tiers .row .table table tbody tr td {
  color: #2E395A;
  font-size: 1.6rem;
  line-height: 2rem;
}
.page-template-page-services #tiers .row .table table tbody tr td a {
  color: inherit;
}
.page-template-page-services #tiers .row .table table tbody tr td a img {
  border-radius: 50%;
  transition: all .3s;
}
.page-template-page-services #tiers .row .table table tbody tr td a:hover img {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3);
}
.page-template-page-services #tiers .row .table table tbody tr td:nth-child(1) {
  color: #fff;
  text-align: left;
}
.page-template-page-services #tiers .row .table table tbody tr td:nth-child(1) h3 a {
  display: none;
  padding: 0;
  color: #2E395A;
  background: none;
  border: none;
  margin: 0.8rem 0 0 0;
  text-decoration: underline;
  font-size: 1.4rem;
}
.page-template-page-services #tiers .row .table table tbody tr td:nth-child(1) h3 a:hover {
  text-decoration: none;
}
.page-template-page-services #tiers .row .table table tbody tr td:nth-child(1) a {
  color: inherit;
}
.page-template-page-services #tiers .row .table table tbody tr td:nth-child(1) a:hover {
  text-decoration: underline;
}
.page-template-page-services #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(1) {
  background: #243051;
}
.page-template-page-services #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(2) {
  background: linear-gradient(90deg, #f9f6f6 0%, #f2f0f2 100%);
}
.page-template-page-services #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(3) {
  background: #f9f6f6;
}
.page-template-page-services #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(1) {
  background: #2E395A;
}
.page-template-page-services #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(2) {
  background: linear-gradient(90deg, #ffffff 0%, #f8f8fb 100%);
}
.page-template-page-services #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(3) {
  background: #fdfdfe;
}
.page-template-page-services #tiers .row .table table tbody tr:last-of-type td {
  padding: 3rem 3.5rem;
}
.page-template-page-services #tiers .row .table table tbody tr:last-of-type td a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527e;
  margin: 0 0;
  background-color: #6dbcdb;
  border-radius: 4px;
  padding: 1.1rem 3.5rem;
  transition: all .3s;
}
.page-template-page-services #tiers .row .table table tbody tr:last-of-type td a:hover {
  color: #6dbcdb;
  background-color: #31527e;
}
.page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-child(1) a {
  display: inline-block;
  text-align: left;
  background: transparent url('../img/ico-arrow.svg') no-repeat;
  background-position: right 1.3rem center;
  background-size: 1.8rem auto;
  border: 1px solid #6dbcdb;
  padding: 1.1rem 4.8rem 1.1rem 1.8rem;
  color: #6dbcdb;
}
.page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-child(1) a:hover {
  background-color: #6dbcdb;
  color: #31527e;
}
.page-template-page-services #tiers .row .table table tfoot {
  display: none;
}
.page-template-page-services #tiers .row .table table tfoot tr td {
  padding: 1.2rem 3.5rem;
}
.page-template-page-services #tiers .row .table table tfoot tr td a {
  display: inline-block;
  text-align: left;
  background: transparent url('../img/ico-arrow-lblue.svg') no-repeat;
  background-position: right 1.3rem top 2rem;
  background-size: 1.8rem auto;
  border: 1px solid #6dbcdb;
  padding: 1.1rem 5.5rem 1.1rem 1.8rem;
  color: #6dbcdb;
}
.page-template-page-services #tiers .row .table table tfoot tr td a span {
  display: block;
}
.page-template-page-services #features {
  padding: 8.5rem 0;
  background: #fff;
}
.page-template-page-services #features .row h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 2.1rem;
  color: #2E395A;
  text-align: left;
  margin: 0;
  position: relative;
}
.page-template-page-services #features .row h2 hr {
  border-top: none;
  border-bottom: 1px solid #bbb;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 15rem;
  margin: 0;
}
.page-template-page-services #features .row .flex {
  margin: 5rem -1.7rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.page-template-page-services #features .row .flex .item {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 1.3rem 1.7rem;
}
.page-template-page-services #features .row .flex .item .content {
  height: 100%;
  min-height: 38rem;
  padding: 2.5rem 3rem;
  background: #fff;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
  border-radius: 6px;
}
.page-template-page-services #features .row .flex .item .content h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.5rem;
  color: #056b9d;
  text-align: left;
  margin: 1.5rem 0;
}
.page-template-page-services #features .row .flex .item .content p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #417391;
  text-align: left;
  margin: 0 0 1rem 0;
}
.page-template-page-services #features .row .flex .item:nth-of-type(5) {
  flex: 1 0 66.67%;
  max-width: 66.67%;
}
.page-template-page-services #features .row .flex .item:nth-of-type(5) .content {
  width: calc(50% - 1.7rem);
}
.page-template-page-services #features .row .flex .item:nth-of-type(3) {
  position: relative;
}
.page-template-page-services #features .row .flex .item:nth-of-type(3) img {
  height: 97rem;
  width: auto;
  position: absolute;
  top: -11rem;
}
.page-template-page-services #onboard {
  background: #fff;
  padding-top: 4rem;
}
.page-template-page-services #onboard .row .flex {
  display: flex;
  justify-content: space-between;
}
.page-template-page-services #onboard .row .flex .left {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  position: relative;
}
.page-template-page-services #onboard .row .flex .left .photo {
  width: 100%;
}
.page-template-page-services #onboard .row .flex .left .photo img {
  width: auto;
  height: 77rem;
  position: absolute;
  top: 0;
  right: 0;
}
.page-template-page-services #onboard .row .flex .right {
  flex: 1 0 66.66%;
  max-width: 66.66%;
}
.page-template-page-services #onboard .row .flex .right h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 2.1rem;
  color: #2E395A;
  text-align: left;
  margin: 0 0 0 1.2rem;
  position: relative;
}
.page-template-page-services #onboard .row .flex .right h2 hr {
  border-top: none;
  border-bottom: 1px solid #bbb;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 33rem;
  margin: 0;
}
.page-template-page-services #onboard .row .flex .right .container {
  display: flex;
  justify-content: space-between;
  margin: 4rem -1.7rem 4rem -0.5rem;
}
.page-template-page-services #onboard .row .flex .right .container .item {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 1.3rem 1.7rem;
}
.page-template-page-services #onboard .row .flex .right .container .item .content {
  height: 100%;
  min-height: 38rem;
  padding: 2.5rem 3rem;
  background: #fff;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
  border-radius: 6px;
}
.page-template-page-services #onboard .row .flex .right .container .item .content h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.5rem;
  color: #54aeaf;
  text-align: left;
  margin: 1.5rem 0;
}
.page-template-page-services #onboard .row .flex .right .container .item .content p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #54aeaf;
  text-align: left;
  margin: 0 0 1rem 0;
}
.page-template-page-services #additional {
  background: #fff;
  padding-top: 7rem;
}
.page-template-page-services #additional .row h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 2.1rem;
  color: #2E395A;
  text-align: left;
  margin: 0 0 0 33.33%;
  padding-left: 1.2rem;
  position: relative;
}
.page-template-page-services #additional .row h2 hr {
  border-top: none;
  border-bottom: 1px solid #bbb;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 33rem;
  margin: 0;
}
.page-template-page-services #additional .row .container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 4rem -1.7rem 0 -1.7rem;
  padding-bottom: 12rem;
}
.page-template-page-services #additional .row .container .item {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 1.3rem 1.7rem;
}
.page-template-page-services #additional .row .container .item:nth-of-type(1) .content {
  box-shadow: none;
  background: none;
}
.page-template-page-services #additional .row .container .item .content {
  height: 100%;
  min-height: 38rem;
  padding: 2.5rem 3rem;
  background: #fff;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
  border-radius: 6px;
}
.page-template-page-services #additional .row .container .item .content .ico {
  padding-top: 4rem;
}
.page-template-page-services #additional .row .container .item .content h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.5rem;
  color: #eb6f53;
  text-align: left;
  margin: 1.5rem 0;
}
.page-template-page-services #additional .row .container .item .content p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #eb6f53;
  text-align: left;
  margin: 0 0 1rem 0;
}
.page-template-page-services #optional {
  padding: 12rem 0 12rem 0;
  background: #F7FBFE;
}
.page-template-page-services #optional h2 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  line-height: 5.8rem;
  text-align: center;
  font-weight: 300;
  color: #141F4E;
  margin: 0 0 8rem 0;
}
.page-template-page-services #optional h2 strong {
  font-weight: 700;
}
.page-template-page-services #optional h3 {
  font-family: 'Noto Sans', sans-serif;
  color: #056B9D;
  font-size: 2.5rem;
  line-height: 3rem;
  margin: 9rem 0 3rem 0;
  text-align: center;
  font-weight: 700;
}
.page-template-page-services #optional .flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.page-template-page-services #optional .flex .post {
  padding: 1.5rem;
  flex: 1 0 50%;
  max-width: 50%;
}
.page-template-page-services #optional .flex .post .body {
  height: 100%;
  background: #fff;
  border-radius: .6rem;
  padding: 3.5rem 4rem;
  text-align: center;
}
.page-template-page-services #optional .flex .post .body h4 {
  font-family: 'Noto Sans', sans-serif;
  color: #31527E;
  font-size: 1.7rem;
  line-height: 2.2rem;
  margin: 0 0 3rem 0;
  text-align: center;
  font-weight: 700;
}
.page-template-page-services #optional .flex .post .body p.price {
  font-size: 6rem;
  line-height: 6rem;
  margin: 3rem 0;
  font-weight: 700;
}
.page-template-page-services #optional .flex .post .body p.price sup {
  font-size: 2.6rem;
  top: -1em;
  margin-right: 1rem;
}
.page-template-page-services #optional .flex .post .body p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin: 0;
  text-align: center;
  font-weight: 400;
  color: #2E395A;
}
.page-template-page-services #optional .flex .post .body a {
  font-family: 'Noto Sans', sans-serif;
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527e;
  margin: 0 0;
  background-color: #6dbcdb;
  border-radius: 4px;
  padding: 1.1rem 3.5rem;
  transition: all .3s;
  margin: 3.5rem 0 0 0;
}
.page-template-page-services #optional .flex .post .body a:hover {
  color: #6dbcdb;
  background-color: #31527e;
}
.page-template-page-services #optional .flex:last-child .post .body p.price {
  font-size: 4rem;
}
.page-template-page-services #optional .flex:last-child .post .body p.price sup {
  display: none;
}
.page-template-page-services #faq {
  background: #F7FBFE;
  padding: 11rem 0 16rem 0;
}
.page-template-page-services #faq .row {
  max-width: 128rem;
}
.page-template-page-services #faq h2 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  line-height: 5rem;
  text-align: center;
  font-weight: 300;
  color: #141F4E;
  margin: 0 0 8rem 0;
}
.page-template-page-services #faq .flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4rem;
}
.page-template-page-services #faq .flex .left,
.page-template-page-services #faq .flex .right {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 0 4rem;
}
.page-template-page-services #faq .flex .post .content {
  border-bottom: 1px solid #979797;
  padding: 2.5rem 0;
}
.page-template-page-services #faq .flex .post .q {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  line-height: 3.3rem;
  color: #6B8AA3;
  font-weight: 700;
  padding: 0 0 0 4.5rem;
  background: url('../img/ico-faq.svg') left 0.6rem;
  background-size: 2.1rem auto;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all .3s;
}
.page-template-page-services #faq .flex .post .q:hover,
.page-template-page-services #faq .flex .post .q.active {
  color: #2E395A;
}
.page-template-page-services #faq .flex .post .a {
  display: none;
  padding: 0 0 0 4.5rem;
}
.page-template-page-services #faq .flex .post .a p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #2E395A;
  margin: 1.5rem 0;
}
.page-template-page-services #faq .flex .post .a p a {
  color: inherit;
  text-decoration: underline;
}
.page-template-page-services #faq .flex .post .a p a:hover {
  text-decoration: none;
}
.page-template-page-services #testimonial .slide {
  width: 100%;
  height: 100rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center ;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-template-page-services #testimonial .slide .row {
  max-width: 110rem;
  height: auto;
  background-color: #fff;
  border-radius: 2.5rem;
  margin: 0 auto 12rem auto;
  padding: 8rem 18rem 7.5rem 18rem;
}
.page-template-page-services #testimonial .slide .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3.6rem;
  text-align: center;
  margin: 0 auto 2rem auto;
  color: #141f4e;
}
.page-template-page-services #testimonial .slide .row .text h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
  margin: 0 auto;
  color: #141f4e;
}
.page-template-page-services #testimonial .owl-dots {
  display: flex;
  justify-content: center;
  padding: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 3rem;
}
.page-template-page-services #testimonial .owl-dots .owl-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.8rem 0 0;
  transition: all .3s;
}
.page-template-page-services #testimonial .owl-dots .owl-dot.active,
.page-template-page-services #testimonial .owl-dots .owl-dot:hover {
  background: #fff;
}
/* blog */
.page-template-page-blog #hero {
  padding: 10rem 0 10rem 0;
}
.page-template-page-blog #hero .row {
  max-width: 88rem;
}
.page-template-page-blog #hero h1 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #056B9D;
  font-weight: 700;
  margin: 0 0 0 0;
  text-align: center;
}
.page-template-page-blog #hero p {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  line-height: 3.7rem;
  text-align: center;
  font-weight: 300;
  color: #2E395A;
}
.page-template-page-blog #search {
  margin: 0 0 6rem 0;
}
.page-template-page-blog #search #searchform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 40rem;
  margin: 0 auto;
}
.page-template-page-blog #search input {
  padding: 1rem 2rem;
  height: 4.4rem;
  line-height: 1.8rem;
  font-size: 1.6rem;
  color: #2E395A;
  border-radius: .5rem;
  border: none;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.page-template-page-blog #search button {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0 0.8rem;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-blog #search button:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-blog #blog {
  padding: 0 0 24rem 0;
}
.page-template-page-blog #blog .row {
  max-width: 136rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-blog #blog .row .blog {
  flex: 1;
}
.page-template-page-blog #blog .row .blog .posts {
  margin: 0 0 0 -2.5rem;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -1rem;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 1rem;
  margin: 0 0 1rem 0;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a {
  display: block;
  padding: 2.5rem 2.5rem 5rem 2.5rem;
  border-radius: 1.9rem;
  height: 100%;
  position: relative;
  transition: all .3s;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a:hover {
  background: #F2F5F7;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a:hover span {
  text-decoration: underline;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a .img {
  width: 100%;
  position: relative;
  padding-top: 60%;
  border-radius: 1.8rem;
  overflow: hidden;
  margin: 0 0 4rem 0;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a .img img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a p.cat {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 2px;
  color: #7BCACB;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  line-height: 3.3rem;
  font-weight: 700;
  color: #2E395A;
  margin: 0;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a h2 + p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 1.5rem 0;
}
.page-template-page-blog #blog .row .blog .posts .alm-reveal .post a span {
  color: #056B9D;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 700;
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
}
.page-template-page-blog #blog .row .blog .alm-btn-wrap {
  text-align: center;
}
.page-template-page-blog #blog .row .blog .alm-btn-wrap .alm-load-more-btn.more {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 4rem 0 0 0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-blog #blog .row .blog .alm-btn-wrap .alm-load-more-btn.more:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-blog #blog .row .blog .alm-btn-wrap .alm-load-more-btn.more.done {
  display: none;
}
.page-template-page-blog #blog .row .aside {
  flex: 1 0 35rem;
  max-width: 35rem;
  padding-left: 3rem;
  margin-top: 2.5rem;
}
.page-template-page-blog #blog .row .aside h2 {
  font-size: 2rem;
  line-height: 3rem;
  color: #2E395A;
  margin: 0 0 2rem 0;
  font-weight: 700;
}
.page-template-page-blog #blog .row .aside #searchform {
  margin: 0 0 6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-template-page-blog #blog .row .aside #searchform input {
  padding: 1rem 2rem;
  height: 4.4rem;
  line-height: 1.8rem;
  font-size: 1.6rem;
  color: #2E395A;
  border-radius: .5rem;
  border: none;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.page-template-page-blog #blog .row .aside #searchform button {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0 0.8rem;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-blog #blog .row .aside #searchform button:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-blog #blog .row .aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-template-page-blog #blog .row .aside ul li {
  margin: 2.5rem 0;
  padding: 0;
}
.page-template-page-blog #blog .row .aside ul li a {
  color: #2E395A;
  font-size: 1.4rem;
  line-height: 2rem;
}
.page-template-page-blog #blog .row .aside ul li a:hover {
  text-decoration: underline;
}
.single-post #breadcrumbs {
  padding: 3rem 0 5rem 0;
}
.single-post #breadcrumbs .row {
  max-width: 136rem;
}
.single-post #breadcrumbs .row ul {
  margin: 0;
  padding: 2.5rem 3.5rem;
  list-style: none;
  border-radius: 1.6rem;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 1rem 1rem 4rem rgba(92, 111, 172, 0.09);
  flex-wrap: wrap;
}
.single-post #breadcrumbs .row ul li {
  font-size: 1.6rem;
  line-height: 2.5rem;
  letter-spacing: 1px;
  color: rgba(46, 57, 90, 0.4);
  margin: 0;
  padding: 0 3.5rem 0 0;
  position: relative;
}
.single-post #breadcrumbs .row ul li a {
  color: #2E395A;
}
.single-post #breadcrumbs .row ul li a:hover {
  text-decoration: underline;
}
.single-post #breadcrumbs .row ul li:after {
  content: '/';
  position: absolute;
  right: 1.2rem;
}
.single-post #breadcrumbs .row ul li:nth-of-type(1):after {
  color: #2E395A;
}
.single-post #breadcrumbs .row ul li:nth-of-type(3) {
  padding-right: 0;
}
.single-post #breadcrumbs .row ul li:nth-of-type(3):after {
  display: none;
}
.single-post #post {
  padding: 4rem 0 10rem 0;
}
.single-post #post .row {
  max-width: 85rem;
}
.single-post #post .row h1 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  line-height: 5rem;
  color: #2E395A;
  margin: 0 0 9rem 0;
  text-align: center;
  font-weight: 700;
}
.single-post #post .row .thumbnail {
  margin: 0 0 7rem 0;
}
.single-post #post .row .thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.single-post #post .row .content {
  padding-left: 11rem;
  position: relative;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #2E395A;
}
.single-post #post .row .content a {
  color: inherit;
  text-decoration: underline;
}
.single-post #post .row .content a:hover {
  text-decoration: none;
}
.single-post #post .row .content p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 2rem 0;
}
.single-post #post .row .content li {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 1rem 0;
}
.single-post #post .row .content ul,
.single-post #post .row .content ol {
  margin: 4rem 0;
}
.single-post #post .row .content ul ul,
.single-post #post .row .content ol ul,
.single-post #post .row .content ul ol,
.single-post #post .row .content ol ol {
  margin: 0;
}
.single-post #post .row .content p a,
.single-post #post .row .content li a {
  color: inherit;
  text-decoration: underline;
}
.single-post #post .row .content p a:hover,
.single-post #post .row .content li a:hover {
  text-decoration: none;
}
.single-post #post .row .content h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.2rem;
  line-height: 4.2rem;
  color: #2E395A;
  margin: 4rem 0;
  font-weight: 700;
}
.single-post #post .row .content h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.single-post #post .row .content h4 {
  font-family: 'Merriweather', serif;
  font-size: 2.0rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.single-post #post .row .content h5 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.single-post #post .row .content img {
  max-width: 100%;
  height: auto;
}
.single-post #post .row .content aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
}
.single-post #post .row .content aside ul li {
  margin: 0 0 2rem 0;
  padding: 0;
}
.single-post #post .row .content aside ul li a {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid #7BCACB;
  border-radius: 50%;
  background-color: #7BCACB;
  background-repeat: no-repeat;
  text-indent: -999rem;
  transition: all .3s;
}
.single-post #post .row .content aside ul li a:hover {
  background-color: #fff;
}
.single-post #post .row .content aside ul li a[href*='twitter'] {
  background-image: url('../img/share-twitter.svg');
  background-position: 1.4rem center;
  background-size: 1.4rem auto;
}
.single-post #post .row .content aside ul li a[href*='facebook'] {
  background-image: url('../img/share-facebook.svg');
  background-position: center;
  background-size: auto 1.4rem;
}
.single-post #post .row .content aside ul li a[href*='pinterest'] {
  background-image: url('../img/share-pinterest.svg');
  background-position: center;
  background-size: auto 1.7rem;
}
.single-post #post .row .content aside ul li a[href*='mail'] {
  background-image: url('../img/share-mail.svg');
  background-position: center;
  background-size: 1.7rem auto;
}
.single-post #post .row .content aside .fixed {
  position: fixed;
  top: 9rem;
  width: auto;
  left: auto;
  margin-left: -11rem;
}
.single-post #post .row .content aside .fixedBottom {
  position: absolute;
  bottom: 0;
  top: unset;
  width: auto;
  left: auto;
  margin-left: -11rem;
}
.single-post #other {
  background: #F2F5F7;
  padding: 10rem 0;
}
.single-post #other .row {
  max-width: 112rem;
}
.single-post #other h2 {
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  color: #2E395A;
  text-align: center;
  letter-spacing: 2px;
}
.single-post #other .flex {
  display: flex;
  justify-content: space-between;
}
.single-post #other .flex .post {
  margin: 4rem 0;
  padding: 0 0;
  flex: 1 0 33.33%;
  max-width: 33.33%;
}
.single-post #other .flex .post a {
  display: block;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 1.9rem;
  height: 100%;
  position: relative;
  transition: all .3s;
}
.single-post #other .flex .post a:hover {
  background: rgba(0, 0, 0, 0.04);
}
.single-post #other .flex .post a:hover span {
  text-decoration: underline;
}
.single-post #other .flex .post a .pic {
  width: 100%;
  position: relative;
  padding-top: 60%;
  border-radius: 1.4rem;
  overflow: hidden;
  margin: 0 0 2rem 0;
}
.single-post #other .flex .post a .pic img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post #other .flex .post a h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  line-height: 2.3rem;
  font-weight: 700;
  color: #2E395A;
  margin: 0;
}
/* news */
.page-template-page-news #hero {
  padding: 10rem 0 10rem 0;
}
.page-template-page-news #hero .row {
  max-width: 88rem;
}
.page-template-page-news #hero h1 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #056B9D;
  font-weight: 700;
  margin: 0 0 0 0;
  text-align: center;
}
.page-template-page-news #hero p {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  line-height: 3.7rem;
  text-align: center;
  font-weight: 300;
  color: #2E395A;
}
.page-template-page-news #search {
  margin: 0 0 6rem 0;
}
.page-template-page-news #search #searchform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 40rem;
  margin: 0 auto;
}
.page-template-page-news #search input {
  padding: 1rem 2rem;
  height: 4.4rem;
  line-height: 1.8rem;
  font-size: 1.6rem;
  color: #2E395A;
  border-radius: .5rem;
  border: none;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.page-template-page-news #search button {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0 0.8rem;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-news #search button:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-news #blog {
  padding: 0 0 24rem 0;
}
.page-template-page-news #blog .row {
  max-width: 136rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-news #blog .row .blog {
  flex: 1;
}
.page-template-page-news #blog .row .blog .posts {
  margin: 0 0 0 -2.5rem;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -1rem;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 1rem;
  margin: 0 0 1rem 0;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a {
  display: block;
  padding: 2.5rem 2.5rem 5rem 2.5rem;
  border-radius: 1.9rem;
  height: 100%;
  position: relative;
  transition: all .3s;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a:hover {
  background: #F2F5F7;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a:hover span {
  text-decoration: underline;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a .img {
  width: 100%;
  position: relative;
  padding-top: 60%;
  border-radius: 1.8rem;
  overflow: hidden;
  margin: 0 0 4rem 0;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a .img img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a p.cat {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 2px;
  color: #7BCACB;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  line-height: 3.3rem;
  font-weight: 700;
  color: #2E395A;
  margin: 0;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a h2 + p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 1.5rem 0;
}
.page-template-page-news #blog .row .blog .posts .alm-reveal .post a span {
  color: #056B9D;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 700;
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
}
.page-template-page-news #blog .row .blog .alm-btn-wrap {
  text-align: center;
}
.page-template-page-news #blog .row .blog .alm-btn-wrap .alm-load-more-btn.more {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 4rem 0 0 0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-news #blog .row .blog .alm-btn-wrap .alm-load-more-btn.more:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-news #blog .row .blog .alm-btn-wrap .alm-load-more-btn.more.done {
  display: none;
}
.page-template-page-news #blog .row .aside {
  flex: 1 0 35rem;
  max-width: 35rem;
  padding-left: 3rem;
  margin-top: 2.5rem;
}
.page-template-page-news #blog .row .aside h2 {
  font-size: 2rem;
  line-height: 3rem;
  color: #2E395A;
  margin: 0 0 2rem 0;
  font-weight: 700;
}
.page-template-page-news #blog .row .aside #searchform {
  margin: 0 0 6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-template-page-news #blog .row .aside #searchform input {
  padding: 1rem 2rem;
  height: 4.4rem;
  line-height: 1.8rem;
  font-size: 1.6rem;
  color: #2E395A;
  border-radius: .5rem;
  border: none;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.page-template-page-news #blog .row .aside #searchform button {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0 0.8rem;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-news #blog .row .aside #searchform button:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-news #blog .row .aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-template-page-news #blog .row .aside ul li {
  margin: 2.5rem 0;
  padding: 0;
}
.page-template-page-news #blog .row .aside ul li a {
  color: #2E395A;
  font-size: 1.4rem;
  line-height: 2rem;
}
.page-template-page-news #blog .row .aside ul li a:hover {
  text-decoration: underline;
}
.single-news #breadcrumbs {
  padding: 3rem 0 5rem 0;
}
.single-news #breadcrumbs .row {
  max-width: 136rem;
}
.single-news #breadcrumbs .row ul {
  margin: 0;
  padding: 2.5rem 3.5rem;
  list-style: none;
  border-radius: 1.6rem;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 1rem 1rem 4rem rgba(92, 111, 172, 0.09);
  flex-wrap: wrap;
}
.single-news #breadcrumbs .row ul li {
  font-size: 1.6rem;
  line-height: 2.5rem;
  letter-spacing: 1px;
  color: rgba(46, 57, 90, 0.4);
  margin: 0;
  padding: 0 3.5rem 0 0;
  position: relative;
}
.single-news #breadcrumbs .row ul li a {
  color: #2E395A;
}
.single-news #breadcrumbs .row ul li a:hover {
  text-decoration: underline;
}
.single-news #breadcrumbs .row ul li:after {
  content: '/';
  position: absolute;
  right: 1.2rem;
}
.single-news #breadcrumbs .row ul li:nth-of-type(1):after {
  color: #2E395A;
}
.single-news #breadcrumbs .row ul li:nth-of-type(3) {
  padding-right: 0;
}
.single-news #breadcrumbs .row ul li:nth-of-type(3):after {
  display: none;
}
.single-news #post {
  padding: 4rem 0 10rem 0;
}
.single-news #post .row {
  max-width: 85rem;
}
.single-news #post .row h1 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  line-height: 5rem;
  color: #2E395A;
  margin: 0 0 9rem 0;
  text-align: center;
  font-weight: 700;
}
.single-news #post .row .thumbnail {
  margin: 0 0 7rem 0;
}
.single-news #post .row .thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.single-news #post .row .content {
  padding-left: 11rem;
  position: relative;
}
.single-news #post .row .content p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 2rem 0;
}
.single-news #post .row .content li {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 1rem 0;
}
.single-news #post .row .content ul,
.single-news #post .row .content ol {
  margin: 4rem 0;
}
.single-news #post .row .content ul ul,
.single-news #post .row .content ol ul,
.single-news #post .row .content ul ol,
.single-news #post .row .content ol ol {
  margin: 0;
}
.single-news #post .row .content p a,
.single-news #post .row .content li a {
  color: inherit;
  text-decoration: underline;
}
.single-news #post .row .content p a:hover,
.single-news #post .row .content li a:hover {
  text-decoration: none;
}
.single-news #post .row .content h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.2rem;
  line-height: 4.2rem;
  color: #2E395A;
  margin: 4rem 0;
  font-weight: 700;
}
.single-news #post .row .content h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.single-news #post .row .content h4 {
  font-family: 'Merriweather', serif;
  font-size: 2.0rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.single-news #post .row .content h5 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.single-news #post .row .content img {
  max-width: 100%;
  height: auto;
}
.single-news #post .row .content aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
}
.single-news #post .row .content aside ul li {
  margin: 0 0 2rem 0;
  padding: 0;
}
.single-news #post .row .content aside ul li a {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid #7BCACB;
  border-radius: 50%;
  background-color: #7BCACB;
  background-repeat: no-repeat;
  text-indent: -999rem;
  transition: all .3s;
}
.single-news #post .row .content aside ul li a:hover {
  background-color: #fff;
}
.single-news #post .row .content aside ul li a[href*='twitter'] {
  background-image: url('../img/share-twitter.svg');
  background-position: 1.4rem center;
  background-size: 1.4rem auto;
}
.single-news #post .row .content aside ul li a[href*='facebook'] {
  background-image: url('../img/share-facebook.svg');
  background-position: center;
  background-size: auto 1.4rem;
}
.single-news #post .row .content aside ul li a[href*='pinterest'] {
  background-image: url('../img/share-pinterest.svg');
  background-position: center;
  background-size: auto 1.7rem;
}
.single-news #post .row .content aside ul li a[href*='mail'] {
  background-image: url('../img/share-mail.svg');
  background-position: center;
  background-size: 1.7rem auto;
}
.single-news #post .row .content aside .fixed {
  position: fixed;
  top: 5rem;
  width: auto;
  left: auto;
  margin-left: -11rem;
}
.single-news #post .row .content aside .fixedBottom {
  position: absolute;
  bottom: 0;
  top: unset;
  width: auto;
  left: auto;
  margin-left: -11rem;
}
.single-news #other {
  background: #F2F5F7;
  padding: 10rem 0;
}
.single-news #other .row {
  max-width: 112rem;
}
.single-news #other h2 {
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  color: #2E395A;
  text-align: center;
  letter-spacing: 2px;
}
.single-news #other .flex {
  display: flex;
  justify-content: space-between;
}
.single-news #other .flex .post {
  margin: 4rem 0;
  padding: 0 0;
  flex: 1 0 33.33%;
  max-width: 33.33%;
}
.single-news #other .flex .post a {
  display: block;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 1.9rem;
  height: 100%;
  position: relative;
  transition: all .3s;
}
.single-news #other .flex .post a:hover {
  background: rgba(0, 0, 0, 0.04);
}
.single-news #other .flex .post a:hover span {
  text-decoration: underline;
}
.single-news #other .flex .post a .pic {
  width: 100%;
  position: relative;
  padding-top: 60%;
  border-radius: 1.4rem;
  overflow: hidden;
  margin: 0 0 2rem 0;
}
.single-news #other .flex .post a .pic img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-news #other .flex .post a h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  line-height: 2.3rem;
  font-weight: 700;
  color: #2E395A;
  margin: 0;
}
/* page */
.page #post {
  padding: 4rem 0 10rem 0;
}
.page #post .row {
  max-width: 85rem;
}
.page #post .row h1 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  line-height: 5rem;
  color: #2E395A;
  margin: 0 0 9rem 0;
  text-align: center;
  font-weight: 700;
}
.page #post .row .content {
  position: relative;
}
.page #post .row .content p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 2rem 0;
}
.page #post .row .content li {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 1rem 0;
}
.page #post .row .content ul,
.page #post .row .content ol {
  margin: 4rem 0;
}
.page #post .row .content ul ul,
.page #post .row .content ol ul,
.page #post .row .content ul ol,
.page #post .row .content ol ol {
  margin: 0;
}
.page #post .row .content p a,
.page #post .row .content li a {
  color: inherit;
  text-decoration: underline;
}
.page #post .row .content p a:hover,
.page #post .row .content li a:hover {
  text-decoration: none;
}
.page #post .row .content h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.2rem;
  line-height: 4.2rem;
  color: #2E395A;
  margin: 4rem 0;
  font-weight: 700;
}
.page #post .row .content h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.page #post .row .content h4 {
  font-family: 'Merriweather', serif;
  font-size: 2.0rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.page #post .row .content h5 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #2E395A;
  margin: 3rem 0;
  font-weight: 700;
}
.page #post .row .content img {
  max-width: 100%;
  height: auto;
}
/* trial */
.page-template-page-trial #hero {
  width: 100%;
  height: 60rem;
  border-radius: 1.5rem;
  position: relative;
}
.page-template-page-trial #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
  z-index: 4;
}
.page-template-page-trial #hero .row .content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 4rem 6rem;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  background-position: center center;
}
.page-template-page-trial #hero .row .txt {
  flex: 1;
  padding-right: 8rem;
}
.page-template-page-trial #hero .row .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 3.1rem;
  color: #fff;
  margin: 3rem 0 0 0;
}
.page-template-page-trial #hero .row .txt p:nth-of-type(1) {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 3.9rem;
  line-height: 5.3rem;
}
.page-template-page-trial #hero .row .form {
  flex: 1 0 49rem;
  max-width: 49rem;
}
.page-template-page-trial #hero .row .form .body {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 2rem;
  padding: 4rem 2.5rem;
}
.page-template-page-trial #hero .row .form .body h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.4rem;
  line-height: 3.6rem;
  color: #2E395A;
  font-weight: 700;
  margin: 0 0 2.5rem 0;
}
.page-template-page-trial #video {
  padding: 12rem 0 17rem 0;
}
.page-template-page-trial #video .row {
  max-width: 134rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-page-trial #video .row .txt {
  flex: 1 0 42%;
  max-width: 42%;
  padding: 0 2.5rem 0 0;
}
.page-template-page-trial #video .row .txt h2 {
  font-family: 'Noto Sans', sans-serif;
  color: #2E395A;
  font-size: 1.8rem;
  line-height: 3.4rem;
  margin: 0 0 2.5rem 0;
  font-weight: 700;
}
.page-template-page-trial #video .row .txt ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-template-page-trial #video .row .txt ul li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #2E395A;
  font-weight: 400;
  padding: .1rem 0 .1rem 4rem;
  margin: 2rem 0;
  background: url('../img/ico-check-circle.png') no-repeat left top;
  background-size: 2.6rem auto;
}
.page-template-page-trial #video .row .txt ul li strong {
  font-weight: 700;
}
.page-template-page-trial #video .row .txt a {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 5rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 2rem 0 0 0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-trial #video .row .txt a:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-trial #video .row .vid {
  flex: 1 0 58%;
  max-width: 58%;
  padding: 0 0 0 2.5rem;
}
.page-template-page-trial #video .row .vid .container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
.page-template-page-trial #video .row .vid .container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.page-template-page-trial #more {
  padding: 10rem 0 6rem 0;
  background: #F2F5F7;
}
.page-template-page-trial #more .row {
  max-width: 114rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-page-trial #more .row .img {
  flex: 1 0 55%;
  max-width: 55%;
  padding: 0 5rem 0 0;
}
.page-template-page-trial #more .row .img img {
  width: 100%;
  height: auto;
  margin: -21rem 0 0 0;
}
.page-template-page-trial #more .row .txt {
  flex: 1 0 45%;
  max-width: 45%;
  padding: 0 0 0 5rem;
}
.page-template-page-trial #more .row .txt h2 {
  font-family: 'Noto Sans', sans-serif;
  color: #2E395A;
  font-size: 2.4rem;
  line-height: 4rem;
  margin: 0 0 2.5rem 0;
  font-weight: 700;
}
.page-template-page-trial #more .row .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #2E395A;
  font-weight: 400;
}
.page-template-page-trial #more .row .txt p strong {
  font-weight: 700;
}
.page-template-page-trial #more .row .txt a {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 5rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 2rem 0 0 0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-trial #more .row .txt a:hover {
  background: #fff;
  color: #69C0C1;
}
.page-template-page-trial #more .row .txt p:last-of-type {
  margin: 0;
}
.page-template-page-trial #more .row .txt p:last-of-type a {
  background: #6DBCDB;
  color: #31527E;
  border-color: #6DBCDB;
  margin: 0;
}
.page-template-page-trial #more .row .txt p:last-of-type a:hover {
  background: #fff;
  color: #6DBCDB;
}
/* webinars */
.page-template-page-webinars #hero {
  width: 100%;
  height: 60rem;
  border-radius: 1.5rem;
  position: relative;
}
.page-template-page-webinars #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
  z-index: 4;
}
.page-template-page-webinars #hero .row .content {
  height: 100%;
  padding: 6rem 9rem 6rem 9rem;
  background-image: url('../img/bg-webinar.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 1.5rem;
}
.page-template-page-webinars #hero .row .txt {
  flex: 1 0 40rem;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-template-page-webinars #hero .row .txt h1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 2.4rem;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-template-page-webinars #hero .row .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 4.2rem;
  color: #fff;
  margin: 0;
}
.page-template-page-webinars #hero .row img {
  position: absolute;
  bottom: -20rem;
  width: 40rem;
  height: auto;
  right: 15rem;
}
.page-template-page-webinars #webinars {
  padding: 8rem 0 12rem 0;
}
.page-template-page-webinars #webinars .row {
  max-width: 125rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-webinars #webinars .webinars {
  flex: 1;
  max-width: 80rem;
  padding-right: 6rem;
}
.page-template-page-webinars #webinars .webinars h2 {
  font-size: 3.4rem;
  line-height: 4rem;
  font-weight: 400;
  color: #2E395A;
  margin: 0 0 1rem 0;
}
.page-template-page-webinars #webinars .webinars h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.4rem;
  color: #141F4E;
  margin: 3rem 0 0 0;
}
.page-template-page-webinars #webinars .webinars h2 + p {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 700;
  color: #2E395A;
  margin: 1rem 0 5rem 0;
}
.page-template-page-webinars #webinars .webinars p {
  font-size: 1.8rem;
  line-height: 3.4rem;
  font-weight: 400;
  color: #2E395A;
  margin: 2rem 0;
}
.page-template-page-webinars #webinars .webinars .flex {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem -1.5rem 4rem -1.5rem;
}
.page-template-page-webinars #webinars .webinars .flex .webinar {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 1.5rem;
}
.page-template-page-webinars #webinars .webinars .flex .webinar a {
  background-color: #141F4E;
  background-image: url('../img/ico-calendar.svg');
  background-repeat: no-repeat;
  background-position: 3.0rem 2.8rem;
  background-size: 2.1rem auto;
  border-radius: .5rem;
  height: 100%;
  display: block;
  padding: 2.5rem 6.5rem;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #fff;
  border: 1px solid #141F4E;
  position: relative;
  transition: all .3s;
}
.page-template-page-webinars #webinars .webinars .flex .webinar a:hover {
  background-color: #fff;
  color: #141F4E;
}
.page-template-page-webinars #webinars .webinars .flex .webinar a:hover:after {
  filter: invert(100%);
}
.page-template-page-webinars #webinars .webinars .flex .webinar a:after {
  content: '';
  width: 1.4rem;
  height: 2rem;
  background: url('../img/ico-follow.svg') no-repeat;
  background-size: contain;
  position: absolute;
  right: 3rem;
  top: 50%;
  margin-top: -1rem;
  transition: all .3s;
}
.page-template-page-webinars #webinars .aside {
  flex: 1 0 38rem;
  max-width: 38rem;
  margin-top: 17rem;
}
.page-template-page-webinars #webinars .aside header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 4.5rem 0;
}
.page-template-page-webinars #webinars .aside header img {
  flex: 1 0 15rem;
  max-width: 15rem;
  height: auto;
  margin-right: 3rem;
  border-radius: .5rem;
}
.page-template-page-webinars #webinars .aside header .txt {
  flex: 1;
}
.page-template-page-webinars #webinars .aside header .txt h3 {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #056B9D;
}
.page-template-page-webinars #webinars .aside header .txt p {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #2E395A;
  margin: .5rem 0;
}
.page-template-page-webinars #webinars .aside header .txt h3 + p {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 700;
}
.page-template-page-webinars #webinars .aside p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #2E395A;
  margin: 0;
}
.page-template-page-webinars #webinars .aside a {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 3rem 0 0 0;
  display: inline-block;
  transition: all .3s;
}
.page-template-page-webinars #webinars .aside a:hover {
  background: #fff;
  color: #69C0C1;
}
.single-webinar #hero {
  width: 100%;
  height: 60rem;
  border-radius: 1.5rem;
  position: relative;
}
.single-webinar #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
  z-index: 10;
}
.single-webinar #hero .row .content {
  height: 100%;
  padding: 6rem 9rem 6rem 9rem;
  background-image: url('../img/bg-webinar.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 1.5rem;
}
.single-webinar #hero .row .txt {
  flex: 1;
  max-width: calc(100% - 50rem);
  display: flex;
  flex-direction: column;
}
.single-webinar #hero .row .txt p.lead {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fff;
  margin: 0;
  max-width: 47rem;
}
.single-webinar #hero .row .txt p.date {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fff;
  margin: 0;
  max-width: 24rem;
}
.single-webinar #hero .row .txt h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 2.4rem;
  color: #fff;
  margin: auto 0 0 .2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.single-webinar #hero .row .txt h1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 4rem;
  line-height: 5.2rem;
  color: #fff;
  margin: 1.5rem 0 2.5rem 0;
  max-width: 60rem;
}
.single-webinar #hero .row .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.1rem;
  letter-spacing: 0.18px;
  text-align: left;
  color: #fff;
  margin: 3rem 3rem 2rem 0;
}
.single-webinar #webinar {
  padding: 8rem 0 10rem 0;
}
.single-webinar #webinar .row {
  max-width: 125rem;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
.single-webinar #webinar .txt {
  flex: 1;
  max-width: 68rem;
  padding-right: 8rem;
}
.single-webinar #webinar .txt p {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #2E395A;
  margin: 3.5rem 0;
  max-width: 50rem;
}
.single-webinar #webinar .txt p:first-of-type {
  margin-top: 0;
  font-size: 2.4rem;
  line-height: 4rem;
}
.single-webinar #webinar .txt p:last-of-type {
  margin-bottom: 0;
}
.single-webinar #webinar .txt ul,
.single-webinar #webinar .txt ol {
  margin: 0;
  padding: 0;
  max-width: 42rem;
}
.single-webinar #webinar .txt ul li,
.single-webinar #webinar .txt ol li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin: 1.5rem 0;
}
.single-webinar #webinar .txt ul {
  list-style: none;
}
.single-webinar #webinar .txt ul li {
  padding: .2rem 0 .2rem 4rem;
  background: url('../img/ico-li.svg') no-repeat left top;
  background-size: 2.6rem auto;
}
.single-webinar #webinar .aside {
  flex: 1 0 42rem;
  max-width: 42rem;
}
.single-webinar #webinar .aside .form {
  margin: -52rem 0 8rem -7rem;
  position: relative;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 5rem 2.5rem 2.5rem 2.5rem;
}
.single-webinar #webinar .aside .form form h2 {
  font-size: 2.4rem;
  line-height: 3rem;
  color: #2E395A;
  margin: 0 0 3rem 0;
}
.single-webinar #webinar .aside .form form .formrow {
  margin: 1.6rem 0;
}
.single-webinar #webinar .aside .form form input {
  padding: 1.5rem 1.5rem;
  height: 5.8rem;
  line-height: 2.8rem;
  font-size: 1.4rem;
  color: #2E395A;
  border-radius: .5rem;
  border: none;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.single-webinar #webinar .aside .form form input[type="submit"] {
  height: 6.8rem;
  padding: 2rem 2rem;
  line-height: 2.8rem;
  font-size: 1.8rem;
  text-align: center;
  background: #141F4E;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #141F4E;
  width: 100%;
  border-radius: .5rem;
  margin: 1rem 0 0 0;
  transition: all .3s;
}
.single-webinar #webinar .aside .form form input[type="submit"]:hover {
  background: #fff;
  color: #141F4E;
}
.single-webinar #webinar .aside .form p {
  font-size: 1.2rem;
  color: #2E395A;
}
.single-webinar #webinar .aside .form p a {
  color: #3D4EFB;
  text-decoration: none;
}
.single-webinar #webinar .aside .form p a:hover {
  text-decoration: underline;
}
.single-webinar #webinar .aside .form .errorResponse,
.single-webinar #webinar .aside .form .successResponse {
  display: none;
  margin: 4rem 2.5rem 0 2.5rem;
}
.single-webinar #webinar .aside .form .errorResponse {
  padding: 0 3rem;
}
.single-webinar #webinar .aside .form .errorResponse p {
  margin: 0 auto;
  max-width: 30rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #c00;
  text-align: center;
  font-weight: 600;
}
.single-webinar #webinar .aside .form .errorResponse p a {
  color: inherit;
  text-decoration: underline;
}
.single-webinar #webinar .aside .form .errorResponse p a:hover {
  text-decoration: none;
}
.single-webinar #webinar .aside .form .successResponse {
  padding: 0 3rem;
}
.single-webinar #webinar .aside .form .successResponse p {
  margin: 0 auto;
  max-width: 30rem;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #2E395A;
  text-align: center;
  font-weight: 600;
}
.single-webinar #webinar .aside .form .successResponse p a {
  color: inherit;
  text-decoration: underline;
}
.single-webinar #webinar .aside .form .successResponse p a:hover {
  text-decoration: none;
}
.single-webinar #webinar .aside header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 4.5rem 0;
}
.single-webinar #webinar .aside header img {
  flex: 1 0 15rem;
  max-width: 15rem;
  height: auto;
  margin-right: 3rem;
  border-radius: .5rem;
}
.single-webinar #webinar .aside header .txt {
  flex: 1;
}
.single-webinar #webinar .aside header .txt h3 {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #056B9D;
}
.single-webinar #webinar .aside header .txt p {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #2E395A;
  margin: .5rem 0;
}
.single-webinar #webinar .aside header .txt h3 + p {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 700;
}
.single-webinar #webinar .aside .bio p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #2E395A;
  margin: 0;
}
.single-webinar #webinar .aside .bio a {
  background: #69C0C1;
  color: #fff;
  height: 4.4rem;
  border-radius: .5rem;
  padding: 1rem 2.2rem;
  line-height: 2.2rem;
  border: 1px solid #69C0C1;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 3rem 0 0 0;
  display: inline-block;
  transition: all .3s;
}
.single-webinar #webinar .aside .bio a:hover {
  background: #fff;
  color: #69C0C1;
}
/* partners */
.page-template-page-partners #hero {
  width: 100%;
  height: 29.8rem;
  position: relative;
  z-index: 2;
}
.page-template-page-partners #hero .row {
  max-width: 140rem;
  padding: 0 2rem;
}
.page-template-page-partners #hero .row .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center ;
  position: relative;
  padding: 0 8rem;
  border-radius: 1.5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-partners #hero .row h1 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 6.4rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 100%;
}
.page-template-page-partners #filters .content {
  background: #fff;
  max-width: 136rem;
  margin: -2rem auto 0 auto;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
  padding: 5rem 0 5rem 0;
}
.page-template-page-partners #filters .row {
  max-width: 83rem;
}
.page-template-page-partners #filters .row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.page-template-page-partners #filters .row ul li {
  margin: .9rem 1rem;
  background: #f2f5f7;
  border-radius: .5rem;
  color: #6B8AA3;
  font-size: 1.4rem;
  white-space: nowrap;
  line-height: 1.8rem;
  padding: 1rem 2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  border: 1px solid transparent;
}
.page-template-page-partners #filters .row ul li.active {
  background: #fff;
  border: 1px solid #DEE6EB;
  box-shadow: 0.3rem 0.7rem 2rem rgba(92, 111, 172, 0.12);
}
.page-template-page-partners #filters .row ul li:hover {
  box-shadow: 0.3rem 0.7rem 2rem rgba(92, 111, 172, 0.12);
}
.page-template-page-partners #filters .row .search {
  display: flex;
  justify-content: center;
  max-width: 62rem;
  margin: 2.5rem auto 0 auto;
}
.page-template-page-partners #filters .row .search .input {
  display: flex;
  flex: 1;
  padding-right: 3rem;
}
.page-template-page-partners #filters .row .search .input input {
  flex: 1;
  border: 1px solid #6B8AA3;
  font-size: 1.4rem;
  height: 4.6rem;
  line-height: 2rem;
  color: #6B8AA3;
  padding: 1.2rem 1.8rem;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}
.page-template-page-partners #filters .row .search .input button {
  font-size: 1.6rem;
  height: 4.6rem;
  border: none;
  background: #6DBCDB;
  line-height: 2.2rem;
  padding: 1.2rem 3.5rem;
  color: #31527E;
  font-weight: 700;
  transition: all .3s;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
}
.page-template-page-partners #filters .row .search .input button:hover {
  color: #fff;
  background: #31527E;
}
.page-template-page-partners #filters .row .search .select {
  flex: 1 0 12rem;
  max-width: 12rem;
  position: relative;
  background: #fff;
}
.page-template-page-partners #filters .row .search .select:after {
  content: '';
  display: block;
  width: 1.1rem;
  height: 0.8rem;
  background: url('../img/ico-dropdown.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  right: 1.1rem;
  top: 1.9rem;
}
.page-template-page-partners #filters .row .search .select select {
  height: 4.6rem;
  width: 100%;
  border: 1px solid #6B8AA3;
  background: transparent;
  font-size: 1.6rem;
  padding: 0.7rem 3rem 0.7rem 1.6rem;
  line-height: 2rem;
  color: #6B8AA3;
  border-radius: .5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 2;
}
.page-template-page-partners #partners {
  padding: 3rem 0 15rem 0;
}
.page-template-page-partners #partners .empty {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #2e395a;
  text-align: center;
  display: none;
}
.page-template-page-partners #partners .loading {
  display: none;
  background: url('../img/spinner.gif') no-repeat center top;
  background-size: auto 16rem;
  padding: 14rem 0 0 0;
  text-align: center;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 5rem;
  color: #2e395a;
}
.page-template-page-partners #partners .row #results .partner {
  padding: 3rem 0 5rem 0;
}
.page-template-page-partners #partners .row #results .partner header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-template-page-partners #partners .row #results .partner header .logo {
  flex: 1 0 15.5rem;
  max-width: 15.5rem;
  height: 15.5rem;
  background: #d8d8d8;
  border-radius: 50%;
}
.page-template-page-partners #partners .row #results .partner header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.page-template-page-partners #partners .row #results .partner header h2 {
  font-family: 'Merriweather', serif;
  flex: 1;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4rem;
  color: #31527E;
  margin: 0 0 0 3.5rem;
  text-align: left;
  border-bottom: 1px solid #979797;
  padding-bottom: 3.5rem;
}
.page-template-page-partners #partners .row #results .partner .people {
  padding-top: 6rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -3rem;
}
.page-template-page-partners #partners .row #results .partner .people .person {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 3rem 5rem 3rem;
}
.page-template-page-partners #partners .row #results .partner .people .person .pic {
  flex: 1 0 11rem;
  max-width: 11rem;
  height: 11rem;
  background: #d8d8d8;
  border-radius: 50%;
}
.page-template-page-partners #partners .row #results .partner .people .person .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.page-template-page-partners #partners .row #results .partner .people .person .txt {
  padding-left: 3rem;
  max-width: 20rem;
}
.page-template-page-partners #partners .row #results .partner .people .person .txt h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 2.2rem;
  color: #31527E;
  text-align: left;
  margin: 0;
}
.page-template-page-partners #partners .row #results .partner .people .person .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2rem;
  color: #6B8AA3;
  text-align: left;
  margin: 1rem 0 0 0;
  text-transform: uppercase;
}
/* contact */
.page-template-page-contact #page {
  background: #31527E;
}
.page-template-page-contact header#head {
  background: #31527E;
}
.page-template-page-contact header#head #logo a {
  background-image: url('../img/hope-trust-logo-white.png');
}
.page-template-page-contact header#head #mainMenu .scroll .content ul.menu > li a {
  color: #fff;
}
.page-template-page-contact header#head #mainMenu .scroll .content ul.menu > li.menu-item-has-children > a {
  background-image: url('../img/ico-submenu-white.svg');
}
.page-template-page-contact header#head #mainMenu .scroll .content ul.menu > li:last-child a {
  border: none;
}
.page-template-page-contact #mobileTrigger div {
  background: #fff;
}
.page-template-page-contact #mobileTrigger.opened div {
  background: #000;
}
.page-template-page-contact #hero {
  padding: 12rem 0 12rem 0;
}
.page-template-page-contact #hero .row {
  max-width: 128rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-contact #hero .row .txt {
  flex: 1;
  max-width: 68rem;
  padding-right: 8rem;
}
.page-template-page-contact #hero .row .txt h1 {
  font-size: 1.9rem;
  line-height: 2.6rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #6DBCDB;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.page-template-page-contact #hero .row .txt p {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 4.6rem;
  line-height: 6rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}
.page-template-page-contact #hero .row .txt p strong {
  font-style: italic;
}
.page-template-page-contact #hero .row .txt p + p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.9rem;
  color: #fff;
  margin: 2rem 0;
  line-height: 2.6rem;
  font-weight: 600;
}
.page-template-page-contact #hero .row .txt .gform_wrapper {
  margin: 4rem 0 0 0;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_heading {
  display: none;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body .nf-field-label,
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer .nf-field-label {
  margin: 0;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body label,
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer label {
  display: none;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="text"],
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer input[type="text"],
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="tel"],
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer input[type="tel"],
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="email"],
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer input[type="email"] {
  background: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin: 0;
  padding: 1.5rem 3.5rem;
  color: #2E395A;
  height: 5.8rem;
  border-radius: .5rem;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body textarea,
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer textarea {
  background: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin: 0;
  padding: 1.5rem 3.5rem;
  color: #2E395A;
  height: 14rem;
  border-radius: .5rem;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="submit"],
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer input[type="submit"] {
  border: none;
  font-size: 1.8rem;
  height: 6.8rem;
  line-height: 2.8rem;
  text-align: center;
  width: 100%;
  color: #fff;
  margin: 0 auto;
  display: inline-block;
  padding: 2rem 3.5rem;
  background-color: #7BCACB;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 1rem 0 0 0;
  transition: all 0.3s;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="submit"]:hover,
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: #fff;
  color: #7BCACB;
}
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_body .validation_message,
.page-template-page-contact #hero .row .txt .gform_wrapper .gform_footer .validation_message {
  font-size: 1.4rem;
  color: #fff;
  background: transparent;
  border: none;
  padding: 0;
}
.page-template-page-contact #hero .row .txt .gform_confirmation_wrapper {
  margin: 8rem 0 0 0;
}
.page-template-page-contact #hero .row .txt .gform_confirmation_wrapper div {
  font-family: 'Noto Sans', sans-serif;
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 400;
  color: #fff;
  margin: 3rem 0;
}
.page-template-page-contact #hero .row .txt .gform_validation_errors {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  margin: 0 0 4rem 0;
}
.page-template-page-contact #hero .row .txt .gform_validation_errors h2 {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.page-template-page-contact #hero .row .txt .gform_validation_errors h2 span {
  display: none;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-response-msg {
  margin-top: 5rem;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-response-msg p {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  line-height: 3.4rem;
  color: #fff;
  font-weight: 500;
  text-align: left;
  margin: 1rem 0;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-title {
  display: none;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-before-form-content .nf-form-fields-required {
  display: none;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field {
  flex: 1 0 100%;
  max-width: 100%;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-label label {
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-weight: 700;
  color: #141F4E;
  text-align: left;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-label label .ninja-forms-req-symbol {
  display: none;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container {
  margin: 0 0 2rem 0;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type="text"],
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type="tel"],
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type="email"] {
  background: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin: 0;
  padding: 1.5rem 3.5rem;
  color: #2E395A;
  height: 5.8rem;
  border-radius: .5rem;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container textarea {
  background: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin: 0;
  padding: 1.5rem 3.5rem;
  color: #2E395A;
  height: 14rem;
  border-radius: .5rem;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type="button"] {
  border: none;
  font-size: 1.8rem;
  height: 6.8rem;
  line-height: 2.8rem;
  text-align: center;
  width: 100%;
  color: #fff;
  margin: 0 auto;
  display: inline-block;
  padding: 2rem 3.5rem;
  background-color: #7BCACB;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 1rem 0 0 0;
  transition: all 0.3s;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type="button"]:hover {
  background-color: #fff;
  color: #7BCACB;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-form-content nf-fields-wrap nf-field .nf-field-container .nf-error-msg.nf-error-required-error {
  font-size: 1.4rem;
  color: #fff;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-after-form-content {
  margin-top: 3rem;
}
.page-template-page-contact #hero .row .txt .nf-form-cont .nf-after-form-content .nf-error-msg {
  font-size: 1.6rem;
  color: #fff;
}
.page-template-page-contact #hero .row .contact {
  flex: 1 0 51rem;
  max-width: 51rem;
}
.page-template-page-contact #hero .row .contact .content {
  margin-top: 3rem;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.page-template-page-contact #hero .row .contact .content iframe {
  width: 100%;
  height: 28rem;
  margin: 0 0 1rem 0;
}
.page-template-page-contact #hero .row .contact .content ul {
  display: flex;
  justify-content: space-between;
  margin: 0 0 2rem 0;
  padding: 0 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.page-template-page-contact #hero .row .contact .content ul li {
  margin: 2.5rem 0;
  padding: 0 1.5rem;
  flex: 1 0 50%;
  max-width: 50%;
}
.page-template-page-contact #hero .row .contact .content ul li h3 {
  padding-top: 4.5rem;
  margin: 0 0 1.5rem 0;
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: #2E395A;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center top;
}
.page-template-page-contact #hero .row .contact .content ul li p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.8px;
  margin: 0;
  color: #2E395A;
  text-align: center;
}
.page-template-page-contact #hero .row .contact .content ul li p a {
  color: inherit;
}
.page-template-page-contact #hero .row .contact .content ul li p a:hover {
  text-decoration: underline;
}
.page-template-page-contact #hero .row .contact .content ul li:nth-of-type(1) h3 {
  background-image: url('../img/ico-map.svg');
  background-size: auto 2.7rem;
}
.page-template-page-contact #hero .row .contact .content ul li:nth-of-type(2) h3 {
  background-image: url('../img/ico-phone.svg');
  background-size: auto 2.7rem;
}
.page-template-page-contact #hero .row .contact .content ul li:nth-of-type(3) h3 {
  background-image: url('../img/ico-fax.svg');
  background-size: auto 2.5rem;
}
.page-template-page-contact #hero .row .contact .content ul li:nth-of-type(4) h3 {
  background-image: url('../img/ico-mail.svg');
  background-size: auto 1.7rem;
  background-position: center .5rem;
}
/* search results */
.search #search {
  padding: 10rem 0 15rem 0;
}
.search #search h1 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 4rem;
  letter-spacing: 0.32px;
  line-height: 5rem;
  text-align: left;
  margin-top: 0;
}
.search #search h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: 0.32px;
  line-height: 3.2rem;
  text-align: left;
  margin-top: 28rem;
}
.search #search ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 88rem;
}
.search #search ul li {
  padding: 3rem 0;
  margin: 3rem 0;
}
.search #search ul li h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  color: #000000;
  margin: 0 0 3rem 0;
  text-transform: uppercase;
  font-weight: 300;
}
.search #search ul li .meta {
  display: flex;
  align-items: flex-start;
}
.search #search ul li .meta img {
  max-width: 20rem;
  height: auto;
  padding: .4rem;
  border: 1px solid #ddd;
}
.search #search ul li .meta img + .txt {
  padding-left: 2rem;
}
.search #search ul li .meta .txt {
  flex: 1;
}
.search #search ul li .meta p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin: 0;
  font-weight: 400;
}
.search #search ul li p.more {
  color: #056b9d;
  font-size: 1.2rem;
  background-size: .8rem auto;
  text-transform: uppercase;
  margin: 3rem 0 0 0;
}
.search #search ul li a:hover h3 {
  text-decoration: underline;
}
.search #search ul li a:hover p.more {
  text-decoration: underline;
}
/* B2B */
.page-template-page-b2b {
  background: #fff;
}
.page-template-page-b2b #hero {
  padding: 0 2rem;
  height: 60.5rem;
}
.page-template-page-b2b #hero .content {
  padding: 5rem 2rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.page-template-page-b2b #hero .content .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.page-template-page-b2b #hero .content .bg.mob {
  display: none;
}
.page-template-page-b2b #hero .content .row {
  max-width: 144rem;
  padding: 0 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.page-template-page-b2b #hero .content .row .txt h1 {
  font-family: 'Merriweather', serif;
  font-size: 6.6rem;
  font-weight: 600;
  line-height: 7.1rem;
  letter-spacing: 1.07px;
  color: #fff;
  text-align: left;
  max-width: 72rem;
  margin: 0 0 5rem 0;
}
.page-template-page-b2b #hero .content .row .txt a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 1.6rem 4.4rem;
  border: 1px solid #69C0C1;
  background: #69C0C1;
  border-radius: 5px;
  transition: all .3s;
}
.page-template-page-b2b #hero .content .row .txt a:hover {
  color: #69C0C1;
  background: #fff;
}
.page-template-page-b2b #census {
  padding: 7.5rem 0;
}
.page-template-page-b2b #census .row {
  max-width: 122rem;
}
.page-template-page-b2b #census .row h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #056B9D;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
}
.page-template-page-b2b #census .row .flex {
  margin: 3.5rem -1.5rem 0 -1.5rem;
  display: flex;
  justify-content: space-between;
}
.page-template-page-b2b #census .row .flex .post {
  flex: 1 0 25%;
  padding: 0 1.5rem;
  max-width: 25%;
  background: #F7FBFE;
  max-width: 28rem;
}
.page-template-page-b2b #census .row .flex .post .txt {
  padding: 3.5rem 0.8rem;
}
.page-template-page-b2b #census .row .flex .post .txt h2 {
  font-family: 'Merriweather', serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 5.1rem;
  letter-spacing: 0.17px;
  color: #31527E ;
  text-align: center;
  margin: 0 auto;
}
.page-template-page-b2b #census .row .flex .post .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #2e395a ;
  text-align: center;
  margin: 0 auto;
}
.page-template-page-b2b #census .row .flex .post .txt h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 3.6rem;
  letter-spacing: 0.1px;
  color: #31527E ;
  text-align: center;
  margin: 0 auto;
}
.page-template-page-b2b #plan {
  padding-bottom: 12rem;
}
.page-template-page-b2b #plan .row {
  max-width: 122rem;
  background-image: url("../img/tree.png");
  background-repeat: no-repeat;
  background-size: 71rem 71rem;
  background-position: center top;
}
.page-template-page-b2b #plan .row .flex {
  display: flex;
  justify-content: space-between;
}
.page-template-page-b2b #plan .row .flex .post {
  flex: 1 0 29rem;
  max-width: 29rem;
}
.page-template-page-b2b #plan .row .flex .post:first-of-type {
  padding-top: 18.5rem;
}
.page-template-page-b2b #plan .row .flex .post:first-of-type .txt {
  padding-right: 2.5rem;
}
.page-template-page-b2b #plan .row .flex .post:first-of-type .txt h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 4.5rem;
  letter-spacing: 0.4px;
  color: #7BCACB ;
  text-align: left;
  margin: 0 auto 3rem auto;
}
.page-template-page-b2b #plan .row .flex .post:first-of-type .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.7rem;
  color: #2e395a ;
  text-align: left;
  margin: 0;
}
.page-template-page-b2b #plan .row .flex .post:last-of-type {
  padding-top: 33rem;
}
.page-template-page-b2b #plan .row .flex .post:last-of-type .txt {
  padding-left: 1.5rem;
}
.page-template-page-b2b #plan .row .flex .post:last-of-type .txt h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 4.5rem;
  letter-spacing: 0.4px;
  color: #056B9D ;
  text-align: left;
  margin: 0 auto 3rem auto;
}
.page-template-page-b2b #plan .row .flex .post:last-of-type .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.7rem;
  color: #2e395a ;
  text-align: left;
  margin: 0;
}
.page-template-page-b2b #movie {
  display: none;
}
.page-template-page-b2b #movie .row .rectangle {
  margin: 0 auto -13.5rem auto;
  max-width: 89rem;
  height: 49.5rem;
  background-color: #DEE6ED;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.page-template-page-b2b #movie .row .rectangle .file {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-template-page-b2b #movie .row .rectangle .file a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.page-template-page-b2b #movie .row .rectangle .file a .play {
  background-color: #fff;
  width: 10.4rem;
  height: 10.4rem ;
  border-radius: 50%;
  background-image: url("../img/ico-play-blue.png");
  background-size: 4.2rem;
  background-repeat: no-repeat;
  background-position: center right 2.8rem;
  transition: all .3s;
}
.page-template-page-b2b #movie .row .rectangle .file a:hover .play {
  transform: scale(1.1);
}
.page-template-page-b2b #landscape {
  padding: 15rem 0 9rem 0;
  background: #f7fbfe;
}
.page-template-page-b2b #landscape .row {
  max-width: 124rem;
}
.page-template-page-b2b #landscape .row .flex {
  display: flex;
  justify-content: space-between;
}
.page-template-page-b2b #landscape .row .flex .left {
  flex: 1 0 50%;
  max-width: 50%;
  padding-right: 5rem;
}
.page-template-page-b2b #landscape .row .flex .left h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #056b9d ;
  text-align: left;
  margin: 2.5rem 0 0 0;
  text-transform: uppercase;
}
.page-template-page-b2b #landscape .row .flex .left img.mob {
  display: none;
}
.page-template-page-b2b #landscape .row .flex .left .title {
  font-family: 'Merriweather', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.9rem;
  color: #141f4e ;
  text-align: left;
  margin: 2rem 0 5rem 0;
}
.page-template-page-b2b #landscape .row .flex .left .problems {
  display: flex;
  justify-content: space-between;
  margin: 0 -3.5rem;
}
.page-template-page-b2b #landscape .row .flex .left .problems .post {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 0 3.5rem;
}
.page-template-page-b2b #landscape .row .flex .left .problems .post h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 3rem;
  color: #ff9178 ;
  text-align: left;
  margin: 0 0 1rem 0 ;
  text-transform: uppercase;
}
.page-template-page-b2b #landscape .row .flex .left .problems .post h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #31527e ;
  text-align: left;
  margin: 0;
  max-width: 20rem;
}
.page-template-page-b2b #landscape .row .flex .left .problems .post p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #31527e ;
  text-align: left;
  margin: 2.5rem 0 0 0;
  max-width: 20rem;
}
.page-template-page-b2b #landscape .row .flex .right {
  flex: 1 0 50%;
  max-width: 50%;
  padding-left: 5rem;
  margin-right: -3rem;
}
.page-template-page-b2b #landscape .row .flex .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-b2b #landscape .row .flex2 {
  display: flex;
  justify-content: space-between;
  margin: 6rem -3.5rem 0 -3.5rem;
}
.page-template-page-b2b #landscape .row .flex2 .post {
  flex: 1 0 25%;
  max-width: 25%;
  padding: 0 3.5rem;
}
.page-template-page-b2b #landscape .row .flex2 .post h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 3rem;
  color: #ff9178 ;
  text-align: left;
  margin: 0 0 1rem 0 ;
  text-transform: uppercase;
}
.page-template-page-b2b #landscape .row .flex2 .post h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #31527e ;
  text-align: left;
  margin: 0;
  max-width: 20rem;
}
.page-template-page-b2b #landscape .row .flex2 .post p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #31527e ;
  text-align: left;
  margin: 2.5rem 0 0 0;
  max-width: 20rem;
}
.page-template-page-b2b #assets {
  background: #f7fbfe;
  padding: 10rem 0 11rem 0;
}
.page-template-page-b2b #assets .row {
  display: flex;
  justify-content: space-between;
  max-width: 122rem;
}
.page-template-page-b2b #assets .row .right {
  flex: 1 0 50%;
  max-width: 50%;
  margin: -20rem -9rem 0 0;
}
.page-template-page-b2b #assets .row .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-b2b #assets .row .left {
  flex: 1 0 65%;
  max-width: 65%;
}
.page-template-page-b2b #assets .row .left .group h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #056b9d ;
  text-align: left;
  margin: 0 0 1rem 0;
  padding: 1.5rem 4rem 1.5rem 7.5rem ;
  background-color: #fff;
  border-radius: 2.8rem;
  display: inline-block;
  text-transform: uppercase;
  background-image: url('../img/tree.svg');
  background-repeat: no-repeat;
  background-size: 4rem;
  background-position: center left 1.5rem;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
}
.page-template-page-b2b #assets .row .left .group .flex {
  margin: 4rem 0 6rem 0;
  display: flex;
  justify-content: space-between;
}
.page-template-page-b2b #assets .row .left .group .flex .post {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding-right: 6rem;
}
.page-template-page-b2b #assets .row .left .group .flex .post h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #056b9d ;
  text-align: left;
  margin: 0 0 1.5rem 0;
}
.page-template-page-b2b #assets .row .left .group .flex .post p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #31527e ;
  text-align: left;
  margin: 0;
}
.page-template-page-b2b #assets .row .left .group:last-of-type h3 {
  background-image: url('../img/hexa.svg');
  background-size: 4.5rem;
  color: #31527e;
  padding: 1.5rem 2.5rem 1.5rem 7.5rem ;
}
.page-template-page-b2b #assets .row .left .group:last-of-type .flex .post h2 {
  color: #31527e;
}
.page-template-page-b2b #assets .row .left .group:last-of-type .flex .post:last-of-type {
  padding-right: 4rem;
}
.page-template-page-b2b #tech {
  padding: 14.5rem 0 5rem 0;
}
.page-template-page-b2b #tech .row {
  max-width: 124rem;
}
.page-template-page-b2b #tech .row h2 {
  font-family: 'Merriweather', serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.9rem;
  letter-spacing: 0.45px;
  color: #2e395a ;
  text-align: left;
  margin: 0;
  max-width: 81rem;
}
.page-template-page-b2b #tech .row img.mob {
  display: none;
}
.page-template-page-b2b #tech .row .flex {
  display: flex;
  justify-content: space-between;
  margin: 6.5rem 0 0 0 ;
  position: relative;
}
.page-template-page-b2b #tech .row .flex .left {
  flex: 1 0 66%;
  max-width: 66%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-template-page-b2b #tech .row .flex .left .post {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 5rem 5rem 0;
}
.page-template-page-b2b #tech .row .flex .left .post .pic {
  margin-bottom: -1.5rem;
}
.page-template-page-b2b #tech .row .flex .left .post .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #31527e ;
  text-align: left;
  margin: 2.5rem 0 0 0;
  max-width: 20rem;
}
.page-template-page-b2b #tech .row .flex .left .post:nth-of-type(2) {
  flex: 1 0 66.66%;
  max-width: 66.66%;
}
.page-template-page-b2b #tech .row .flex .left .post:nth-of-type(2) .txt {
  max-width: 50%;
}
.page-template-page-b2b #tech .row .flex .left .post:nth-of-type(4) {
  flex: 1 0 66.66%;
  max-width: 66.66%;
}
.page-template-page-b2b #tech .row .flex .left .post:nth-of-type(4) .txt {
  max-width: 50%;
}
.page-template-page-b2b #tech .row .flex .right {
  width: 107rem;
  height: 73rem;
  position: absolute;
  top: -12rem;
  left: 56rem;
  z-index: -1;
}
.page-template-page-b2b #tech .row .flex .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-b2b #offer {
  padding-bottom: 12rem;
}
.page-template-page-b2b #offer .row {
  max-width: 124rem;
}
.page-template-page-b2b #offer .row .flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 -1rem;
}
.page-template-page-b2b #offer .row .flex .post {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 1rem;
  min-height: 50.5rem;
}
.page-template-page-b2b #offer .row .flex .post .txt {
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
  border-radius: 5px;
  height: 100%;
}
.page-template-page-b2b #offer .row .flex .post .txt h2 {
  background-color: #056B9D;
  padding: 1.5rem 0 1.5rem 10.5rem ;
  background-image: url("../img/tree-white.svg");
  background-repeat: no-repeat;
  background-size: 5.7rem;
  background-position: center left 3rem;
  font-family: 'Noto Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
  color: #fff ;
  text-align: left;
  margin: 0 ;
  display: block;
  border-radius: 5px;
}
.page-template-page-b2b #offer .row .flex .post .txt ul {
  list-style: none;
  padding: 1.5rem 0 3.5rem 0;
  margin: 0;
}
.page-template-page-b2b #offer .row .flex .post .txt ul li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  padding: 1rem 1rem 1rem 3rem;
  font-weight: 400;
  line-height: 2.4rem;
  color: #056b9d ;
  text-align: left;
  margin: 0;
  border-bottom: 1px solid rgba(49, 82, 126, 0.2);
}
.page-template-page-b2b #offer .row .flex .post .txt ul li:last-of-type {
  border-bottom: none;
}
.page-template-page-b2b #offer .row .flex .post:nth-of-type(2) .txt h2 {
  background-color: #EB6F53;
}
.page-template-page-b2b #offer .row .flex .post:nth-of-type(2) .txt ul li {
  color: #EB6F53;
}
.page-template-page-b2b #offer .row .flex .post:nth-of-type(3) .txt h2 {
  background-color: #31527E;
  background-image: url("../img/hexa-white.svg");
}
.page-template-page-b2b #offer .row .flex .post:nth-of-type(3) .txt ul li {
  color: #2e395a;
}
.page-template-page-b2b #tiers {
  background: #31527E;
  padding: 10rem 0 13.5rem 0;
}
.page-template-page-b2b #tiers .row {
  max-width: 98rem;
  z-index: 6;
}
.page-template-page-b2b #tiers .row h2 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.2rem;
  letter-spacing: 1.78px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  text-transform: uppercase;
  padding-top: 7rem;
}
.page-template-page-b2b #tiers .row p {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: 0.45px;
  line-height: 5.9rem;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  max-width: 44rem;
}
.page-template-page-b2b #tiers .row .table {
  margin: 3.5rem 0 0 0;
}
.page-template-page-b2b #tiers .row .table .header {
  display: none;
}
.page-template-page-b2b #tiers .row .table .header table {
  width: 100%;
}
.page-template-page-b2b #tiers .row .table .header table tbody {
  display: none;
}
.page-template-page-b2b #tiers .row .table .header table tfoot {
  display: none;
}
.page-template-page-b2b #tiers .row .table.fixed .header {
  display: block;
  position: fixed;
  top: 7.7rem;
  left: 0;
  right: 0;
  z-index: 3;
}
.page-template-page-b2b #tiers .row .table table {
  border: none;
  background: #fff;
  border-radius: .7rem;
  overflow: hidden;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
}
.page-template-page-b2b #tiers .row .table table thead tr th {
  padding: 1.2rem 3.2rem 1.2rem 3.2rem;
}
.page-template-page-b2b #tiers .row .table table thead tr th h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #6DBCDB;
  font-weight: 700;
  margin: 0;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(1) {
  background: #2E395A;
  vertical-align: bottom;
  text-align: left;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
  width: 24rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.3rem;
  font-weight: 400;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) strong,
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) strong {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  line-height: 3.6rem;
  font-weight: 700;
  display: block;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) {
  background: #7a8a97;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
  background: #71c3c3;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th {
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #2E395A;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th strong {
  font-size: 6rem;
  line-height: 6rem;
  font-weight: 400;
  display: inline-flex;
  align-items: flex-end;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th strong small {
  font-size: 1.6rem;
  line-height: 1.8rem;
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th:nth-child(1) {
  background: linear-gradient(90deg, #ffffff 0%, #f8f8fb 100%);
}
.page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th:nth-child(2) {
  background: #fdfdfe;
}
.page-template-page-b2b #tiers .row .table table tbody tr td {
  text-align: center;
  padding: 1.2rem 3.5rem;
}
.page-template-page-b2b #tiers .row .table table tbody tr td img {
  height: 2.2rem;
  width: auto;
}
.page-template-page-b2b #tiers .row .table table tbody tr td h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #6DBCDB;
  font-weight: 700;
  margin: 0 0 0 0;
}
.page-template-page-b2b #tiers .row .table table tbody tr td {
  color: #2E395A;
  font-size: 1.6rem;
  line-height: 2rem;
}
.page-template-page-b2b #tiers .row .table table tbody tr td a {
  color: inherit;
}
.page-template-page-b2b #tiers .row .table table tbody tr td a img {
  border-radius: 50%;
  transition: all .3s;
}
.page-template-page-b2b #tiers .row .table table tbody tr td a:hover img {
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3);
}
.page-template-page-b2b #tiers .row .table table tbody tr td:nth-child(1) {
  color: #fff;
  text-align: left;
}
.page-template-page-b2b #tiers .row .table table tbody tr td:nth-child(1) h3 a {
  display: none;
  padding: 0;
  color: #2E395A;
  background: none;
  border: none;
  margin: 0.8rem 0 0 0;
  text-decoration: underline;
  font-size: 1.4rem;
}
.page-template-page-b2b #tiers .row .table table tbody tr td:nth-child(1) h3 a:hover {
  text-decoration: none;
}
.page-template-page-b2b #tiers .row .table table tbody tr td:nth-child(1) a {
  color: inherit;
}
.page-template-page-b2b #tiers .row .table table tbody tr td:nth-child(1) a:hover {
  text-decoration: underline;
}
.page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(1) {
  background: #2E395A;
}
.page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(2) {
  background: linear-gradient(90deg, #ffffff 0%, #f8f8fb 100%);
}
.page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(3) {
  background: #fdfdfe;
}
.page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(1) {
  background: #243051;
}
.page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(2) {
  background: linear-gradient(90deg, #f9f6f6 0%, #f2f0f2 100%);
}
.page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(3) {
  background: #f9f6f6;
}
.page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td {
  padding: 3rem 3.5rem;
}
.page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527e;
  margin: 0 0;
  background-color: #6dbcdb;
  border-radius: 4px;
  padding: 1.1rem 3.5rem;
  transition: all .3s;
}
.page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td a:hover {
  color: #6dbcdb;
  background-color: #31527e;
}
.page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-child(1) a {
  display: inline-block;
  text-align: left;
  background: transparent url('../img/ico-arrow.svg') no-repeat;
  background-position: right 1.3rem center;
  background-size: 1.8rem auto;
  border: 1px solid #6dbcdb;
  padding: 1.1rem 4.8rem 1.1rem 1.8rem;
  color: #6dbcdb;
}
.page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-child(1) a:hover {
  background-color: #6dbcdb;
  color: #31527e;
}
.page-template-page-b2b #tiers .row .table table tfoot {
  display: none;
}
.page-template-page-b2b #tiers .row .table table tfoot tr td {
  padding: 1.2rem 3.5rem;
  text-align: center;
}
.page-template-page-b2b #tiers .row .table table tfoot tr td a {
  display: inline-block;
  text-align: left;
  background: transparent url('../img/ico-arrow-lblue.svg') no-repeat;
  background-position: right 1.3rem top 2rem;
  background-size: 1.8rem auto;
  border: 1px solid #6dbcdb;
  padding: 1.1rem 5.5rem 1.1rem 1.8rem;
  color: #6dbcdb;
}
.page-template-page-b2b #tiers .row .table table tfoot tr td a span {
  display: block;
}
.page-template-page-b2b #tiers .row .flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 5rem auto 0 auto;
  max-width: 101rem;
}
.page-template-page-b2b #tiers .row .flex .container {
  flex: 1 0 33.33%;
  max-width: 33.33%;
  padding: 0 2.7rem;
}
.page-template-page-b2b #tiers .row .flex .container:nth-of-type(1) .content {
  background-color: #7bcacb;
  margin-top: 4rem;
}
.page-template-page-b2b #tiers .row .flex .container:nth-of-type(2) .content {
  background-color: #6dbcdb;
}
.page-template-page-b2b #tiers .row .flex .container:nth-of-type(3) .content {
  background-color: #ff9178;
  margin-top: 4rem;
}
.page-template-page-b2b #tiers .row .flex .container:nth-of-type(3) .content h2 {
  color: #884d40;
}
.page-template-page-b2b #tiers .row .flex .container .content {
  padding: 2.5rem 3rem 7rem 3rem;
  height: 100%;
  border-radius: 5px;
  position: relative;
}
.page-template-page-b2b #tiers .row .flex .container .content .img img {
  display: block;
  margin: 1rem auto 2rem auto;
}
.page-template-page-b2b #tiers .row .flex .container .content h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 3.9rem;
  letter-spacing: 0.31px;
  text-align: center;
  color: #455171;
  margin: 0 auto 2.5rem auto;
}
.page-template-page-b2b #tiers .row .flex .container .content p {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  color: #fff;
  margin: 0 auto ;
}
.page-template-page-b2b #tiers .row .flex .container .content ul {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto 0 auto;
  max-width: 18rem;
}
.page-template-page-b2b #tiers .row .flex .container .content ul li {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  color: #fff;
  text-align: left;
  padding-left: 4rem;
  background-image: url("../img/ico-check.png");
  background-repeat: no-repeat;
  background-size: 1.7rem 1.7rem;
  background-position: left 0.3rem;
  margin: 1rem 0;
}
.page-template-page-b2b #tiers .row .flex .container .content a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  width: 16rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
  color: #fff;
  background-color: #2e395a;
  padding: 0.9rem 1rem;
  border-radius: 5px;
  border: 1px solid #2e395a;
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  margin-left: -8rem;
  transition: all .3s;
}
.page-template-page-b2b #tiers .row .flex .container .content a:hover {
  color: #2e395a;
  background-color: #fff;
}
/* SNAP */
.page-template-page-snap {
  background: #fff;
}
.page-template-page-snap #hero {
  margin: 0 auto;
  height: 61rem;
}
.page-template-page-snap #hero .row {
  max-width: 144rem;
  padding: 0 2rem;
}
.page-template-page-snap #hero .row .content {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.page-template-page-snap #hero .row .content .bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.page-template-page-snap #hero .row .content .bg.des {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  border-radius: 1.5rem;
}
.page-template-page-snap #hero .row .content .bg.mob {
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  border-radius: 1.4rem 1.4rem 1.4rem 10rem;
}
.page-template-page-snap #hero .row .txt {
  padding-left: 8rem;
  position: relative;
  z-index: 3;
}
.page-template-page-snap #hero .row .txt h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 5.3rem;
  color: #141f4e;
  text-align: left;
  max-width: 65rem;
  margin: 0 0 2.5rem 0;
}
.page-template-page-snap #hero .row .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.8rem;
  color: #141f4e;
  text-align: left;
  margin: 0 0 3.5rem 0;
  max-width: 62.5rem;
}
.page-template-page-snap #hero .row .txt p a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  color: #31527e;
  text-align: center;
  margin: 0 2rem 0 0;
  padding: 1.3rem 2.2rem;
  border: 1px solid #6DBCDB;
  background: #6DBCDB;
  border-radius: 5px;
  transition: all .3s;
  display: inline-block;
}
.page-template-page-snap #hero .row .txt p a:hover {
  background: #fff;
}
.page-template-page-snap #hero .row .txt p:last-of-type {
  margin-bottom: 0;
}
.page-template-page-snap #hero .row .txt a:last-of-type {
  color: #fff;
  border: 1px solid #FF9178;
  background: #FF9178;
  padding: 1.3rem 2.5rem;
}
.page-template-page-snap #hero .row .txt a:last-of-type:hover {
  background: #fff;
  color: #FF9178;
}
.page-template-page-snap #form {
  padding: 6rem 0 15rem 0;
}
.page-template-page-snap #form .nf-form-cont .nf-response-msg {
  margin-top: 8rem;
}
.page-template-page-snap #form .nf-form-cont .nf-response-msg p {
  font-family: 'Merriweather', serif;
  font-size: 3.9rem;
  line-height: 5.3rem;
  color: #141f4e;
  font-weight: 700;
  text-align: center;
}
.page-template-page-snap #form .nf-form-cont .nf-form-title {
  display: none;
}
.page-template-page-snap #form .nf-form-cont .nf-before-form-content .nf-form-fields-required {
  display: none;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header {
  flex: 1 0 21rem;
  max-width: 21rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header .nf-breadcrumbs {
  margin: 0 !important;
  padding: 1.5rem 1.5rem !important;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header .nf-breadcrumbs li {
  font-size: 1.7rem;
  line-height: 2.4rem;
  margin: 1.2rem 0 !important;
  width: 100%;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header .nf-breadcrumbs li a {
  color: #6B8AA3;
  width: 100%;
  padding: 0.2rem 4rem 0.2rem 0;
  margin: 0;
  display: block;
  background-image: url('../img/ico-progressInactive.png');
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
  background-position: right top;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header .nf-breadcrumbs li a:hover {
  text-decoration: underline;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header .nf-breadcrumbs li.active a {
  color: #6DBCDB;
  font-weight: 700;
  background-image: url('../img/ico-progressActive.png');
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header .nf-breadcrumbs li:last-of-type {
  display: none;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header h3 {
  display: none;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body {
  flex: 1;
  max-width: 100%;
  padding-left: 8rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body h3 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 700;
  margin: 0 0 4rem 0;
  color: #2E395A;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 4rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body #nf-field-42-container h3 {
  padding-left: 6rem;
  background-image: url('../img/step1.svg');
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body #nf-field-41-container h3 {
  padding-left: 6rem;
  background-image: url('../img/step2.svg');
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body #nf-field-40-container h3 {
  padding-left: 6rem;
  background-image: url('../img/step3.svg');
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body #nf-field-39-container h3 {
  padding-left: 6rem;
  background-image: url('../img/step4.svg');
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap {
  display: flex;
  flex-wrap: wrap;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field {
  flex: 1 0 100%;
  max-width: 100%;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-label label {
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-weight: 700;
  color: #141F4E;
  text-align: left;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-label label .ninja-forms-req-symbol {
  display: none;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container {
  margin: 0 0 2rem 0;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="text"],
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="mail"],
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="number"],
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="email"] {
  height: 5rem;
  background: #F9F9F9;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1.5rem;
  line-height: 2rem;
  font-size: 1.4rem;
  color: #2E395A;
  border-radius: 0.5rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="button"] {
  height: 5.8rem;
  background: #141F4E;
  border-radius: .5rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 1.7rem 4.5rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  transition: all .3s;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="button"]:hover {
  background-color: #7BCACB;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input#nf-field-20 {
  max-width: 23rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input#nf-field-23 {
  max-width: 23rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container .nf-error-msg.nf-error-required-error {
  font-size: 1.4rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container#nf-field-19-container,
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container#nf-field-20-container,
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container#nf-field-21-container,
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container#nf-field-22-container {
  margin: 0 0 4rem 0;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container.html-container p {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  line-height: 3rem;
  color: #141F4E;
  font-weight: 700;
  margin: -2rem 0 0 0;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li {
  display: flex;
  align-items: center;
  margin: 0 2.5rem 0 1.5rem !important;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li input {
  display: none;
  order: 2;
  margin: 0;
  width: 3.2rem !important;
  height: 3.2rem !important;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li label {
  font-family: 'Noto Sans', sans-serif;
  order: 1;
  font-size: 1.7rem;
  color: #141F4E;
  font-weight: 400;
  margin: 0 0 0 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li label:after {
  content: '';
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  background: #F5F5F5;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-left: 1rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li input:checked + label:after {
  background: #f5f5f5 url('../img/ico-radioCheck.svg') no-repeat center;
  background-size: auto 1.6rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .fa-info-circle.nf-help {
  width: 1.8rem;
  height: 1.8rem;
  background: #c8e5e5 url('../img/ico-help.svg') no-repeat center;
  background-size: auto 1.2rem;
  border-radius: 50%;
  position: relative;
  top: 0.2rem;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: all .3s;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .fa-info-circle.nf-help:hover {
  background-color: #98cecf;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-37-wrap .nf-field-label label {
  font-weight: 400;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-38-wrap {
  margin-top: 10rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-38-wrap .nf-field-label {
  display: none;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer {
  flex: 1 0 100%;
  max-width: 100%;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous {
  margin: 7rem 0 0 0 !important;
  display: flex;
  justify-content: flex-end;
  max-width: 48rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous input {
  border: none;
  height: 5.4rem;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-previous-item {
  flex: 1;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-previous-item input {
  background: transparent url('../img/ico-progressBack.svg') no-repeat;
  background-position: left center;
  background-size: auto 1rem;
  font-size: 1.6rem;
  line-height: 2rem;
  display: inline-block;
  align-items: center;
  justify-content: flex-start;
  color: #6B8AA3;
  padding: 0 0 0 1.8rem;
  transition: all .3s;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-previous-item input:hover {
  text-decoration: underline;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-next-item {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-next-item input {
  width: 100%;
  max-width: 19rem;
  text-align: left;
  background: #69c0c1 url('../img/ico-progressNext.svg') no-repeat;
  background-position: right 2rem center;
  background-size: auto 1.8rem;
  border-radius: .5rem;
  font-size: 1.8rem;
  line-height: 2rem;
  color: #fff;
  font-weight: 700;
  padding: 1.7rem 4rem 1.7rem 2rem;
  transition: all .3s;
}
.page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-next-item input:hover {
  background-color: #31527e;
}
.page-template-page-snap #form .nf-form-cont .nf-after-form-content {
  margin-top: 4rem;
}
.page-template-page-snap #form .nf-form-cont .nf-after-form-content .nf-error-msg {
  padding-left: 29rem;
  font-size: 1.6rem;
}
.page-template-page-snap .jBox-wrapper {
  max-width: 50rem;
}
.page-template-page-snap .jBox-wrapper .jBox-content {
  padding: 1rem 2rem;
}
.page-template-page-snap .jBox-wrapper p {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: #54AEAF;
  font-weight: 700;
  margin: 0;
}
/* 404 */
#p404 {
  padding: 30rem 0 30rem 0;
}
#p404 p {
  margin: 0;
  text-align: center;
}
#p404 p:nth-of-type(1) {
  font-size: 12rem;
  line-height: 12rem;
}
#p404 p:nth-of-type(2) {
  font-size: 4rem;
  line-height: 5rem;
}
/* SNAP */
.page-template-page-snap-results {
  background: #fff;
}
.page-template-page-snap-results #hero {
  padding: 10rem 0 22rem 0;
}
.page-template-page-snap-results #hero .row {
  max-width: 130rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-template-page-snap-results #hero .row .result {
  flex: 1 0 58rem;
  max-width: 58rem;
  border-radius: 1.6rem;
  box-shadow: 1.4rem 3rem 7rem rgba(92, 111, 172, 0.12);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 4.5rem 3.5rem;
}
.page-template-page-snap-results #hero .row .result #chart {
  flex: 1 0 60%;
  max-width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-template-page-snap-results #hero .row .result #chart svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-snap-results #hero .row .result #chart span {
  font-family: 'Merriweather', serif;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7rem;
  line-height: 5.4rem;
  color: #31527E;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}
.page-template-page-snap-results #hero .row .result .details {
  flex: 1 0 40%;
  max-width: 40%;
  padding-left: 3rem;
}
.page-template-page-snap-results #hero .row .result .details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-template-page-snap-results #hero .row .result .details ul li {
  margin: 2rem 0;
  padding: 0 0 0 3rem;
  position: relative;
  line-height: 2.5rem;
  font-size: 1.8rem;
  color: #141F4E;
}
.page-template-page-snap-results #hero .row .result .details ul li strong {
  font-weight: 700;
  display: block;
}
.page-template-page-snap-results #hero .row .result .details ul li span {
  text-transform: uppercase;
}
.page-template-page-snap-results #hero .row .result .details ul li:before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.page-template-page-snap-results #hero .row .result .details ul li:nth-of-type(1):before {
  background: #056B9D;
}
.page-template-page-snap-results #hero .row .result .details ul li:nth-of-type(2):before {
  background: #7BCACB;
}
.page-template-page-snap-results #hero .row .result .details ul li:nth-of-type(3):before {
  background: #6C9F43;
}
.page-template-page-snap-results #hero .row .result .details ul li:first-of-type {
  margin-top: 0;
}
.page-template-page-snap-results #hero .row .result .details ul li:last-of-type {
  margin-bottom: 0;
}
.page-template-page-snap-results #hero .row .txt {
  flex: 1;
  padding-right: 7rem;
}
.page-template-page-snap-results #hero .row .txt h1 {
  font-family: 'Merriweather', serif;
  font-size: 4.2rem;
  line-height: 5.3rem;
  color: #141F4E;
  margin: 0 0 1rem 0;
}
.page-template-page-snap-results #hero .row .txt h1 span {
  font-weight: 700;
  text-transform: uppercase;
}
.page-template-page-snap-results #hero .row .txt h1 + p {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #141F4E;
  margin: 1rem 0 3rem 0;
  font-style: italic;
}
.page-template-page-snap-results #hero .row .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #141F4E;
  margin: 2rem 0;
}
.page-template-page-snap-results #hero .row .txt a {
  font-family: 'Noto Sans', sans-serif;
  margin-top: 3rem;
  display: inline-block;
  height: 5.2rem;
  padding: 1.5rem 4.5rem;
  line-height: 2.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: #31527E;
  border-radius: 0.5rem;
  transition: all .3s;
}
.page-template-page-snap-results #hero .row .txt a:hover {
  background: #6DBCDB;
  color: #31527E;
}
.page-template-page-snap-results #solution .row {
  max-width: 130rem;
}
.page-template-page-snap-results #solution .row .content {
  background: #F7FBFE;
  padding: 0 2rem 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-page-snap-results #solution .row .content .img {
  flex: 1 0 45%;
  max-width: 45%;
}
.page-template-page-snap-results #solution .row .content .img .body {
  margin-top: -11.5rem;
}
.page-template-page-snap-results #solution .row .content .img .body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-snap-results #solution .row .content .txt {
  flex: 1 0 55%;
  max-width: 55%;
  padding-left: 7rem;
}
.page-template-page-snap-results #solution .row .content .txt p {
  font-family: 'Merriweather', serif;
  font-size: 3.2rem;
  line-height: 4.7rem;
  color: #2E395A;
  margin: 3rem 0;
  max-width: 52rem;
}
.page-template-page-snap-results #solution .row .content .txt a {
  font-family: 'Noto Sans', sans-serif;
  width: 29rem;
  max-width: 100%;
  text-align: center;
  display: inline-block;
  height: 5.2rem;
  padding: 1.5rem 4.5rem;
  line-height: 2.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #31527E;
  background: #6DBCDB;
  border-radius: 0.5rem;
  transition: all .3s;
}
.page-template-page-snap-results #solution .row .content .txt a:hover {
  background: #31527E;
  color: #fff;
}
.page-template-page-snap-results #details {
  padding: 10rem 0 12rem 0;
}
.page-template-page-snap-results #details .row {
  max-width: 130rem;
}
.page-template-page-snap-results #details h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 3rem;
  color: #056B9D;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6rem 0;
}
.page-template-page-snap-results #details .flex {
  display: flex;
  justify-content: space-between;
}
.page-template-page-snap-results #details .flex .col {
  flex: 1 0 50%;
  max-width: 50%;
}
.page-template-page-snap-results #details .flex .col:nth-of-type(1) {
  padding-right: 7rem;
  border-right: 1px solid #ddd;
}
.page-template-page-snap-results #details .flex .col:nth-of-type(2) {
  padding-left: 7rem;
}
.page-template-page-snap-results #details .flex .post {
  margin: 5rem 0 0 0;
  padding: 0 0 3rem 0;
  border-bottom: 1px solid #ddd;
}
.page-template-page-snap-results #details .flex .post h3 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  line-height: 4rem;
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  margin: 0 0 0 0;
}
.page-template-page-snap-results #details .flex .post h3 img {
  width: auto;
  height: 4rem;
  margin: 0 2rem 0 0;
}
.page-template-page-snap-results #details .flex .post p {
  font-family: 'Noto Sans', sans-serif;
  margin: 2rem 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #2E395A;
}
.page-template-page-snap-results #details .flex .post:first-of-type {
  margin: 0;
}
.page-template-page-snap-results #details .flex .post:last-of-type {
  padding: 0;
  border-bottom: none;
}
.page-template-page-snap-results #questions {
  padding: ;
  background: #F7FBFE;
  padding: 10rem 0 11rem 0;
  text-align: center;
}
.page-template-page-snap-results #questions .row {
  max-width: 66rem;
}
.page-template-page-snap-results #questions h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.8rem;
  line-height: 5.4rem;
  font-weight: 700;
  color: #056B9D;
  margin: 0 0 2rem 0;
}
.page-template-page-snap-results #questions p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 400;
  color: #141F4E;
  margin: 0 0 2.5rem 0;
}
.page-template-page-snap-results #questions a {
  font-family: 'Noto Sans', sans-serif;
  text-align: center;
  display: inline-block;
  height: 5.2rem;
  padding: 1.5rem 4rem;
  line-height: 2.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #54AEAF;
  border-radius: 0.5rem;
  transition: all .3s;
}
.page-template-page-snap-results #questions a:hover {
  background: #31527E;
}
/* Older Demographic */
.page-template-page-older-demographic {
  background: #F7FBFE;
}
.page-template-page-older-demographic #page {
  padding-top: 0;
}
.page-template-page-older-demographic #page.scrolled {
  padding-top: 11rem;
}
.page-template-page-older-demographic #page.scrolled #green {
  opacity: 0;
}
.page-template-page-older-demographic header#head {
  position: static;
}
.page-template-page-older-demographic header#head.sticky {
  position: fixed;
}
.page-template-page-older-demographic #hero {
  max-width: 100%;
}
.page-template-page-older-demographic #hero .row {
  max-width: 144rem;
}
.page-template-page-older-demographic #hero .bg {
  max-width: 144rem;
  height: 67rem;
  margin: 0 auto;
  border-radius: 1.5rem 1.5rem 1.5rem 15rem;
  position: relative;
  overflow: hidden;
}
.page-template-page-older-demographic #hero .bg .backg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-template-page-older-demographic #hero .bg .backg.mob {
  display: none;
}
.page-template-page-older-demographic #hero .bg .gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.66;
}
.page-template-page-older-demographic #hero .bg .row {
  max-width: 120rem;
}
.page-template-page-older-demographic #hero .bg .row .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.page-template-page-older-demographic #hero .bg .row .text h1 {
  font-family: ivypresto-display, serif;
  font-size: 8rem;
  font-weight: 600;
  line-height: 7.5rem;
  letter-spacing: 1px;
  color: #fff;
  max-width: 50rem;
  text-align: center;
  margin: 0 auto 2rem auto;
}
.page-template-page-older-demographic #hero .bg .row .text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.8rem;
  text-align: center;
  margin: 1rem auto 0 auto;
  color: #fff;
  max-width: 48rem;
}
.page-template-page-older-demographic #hero .bg .row .text p + p {
  margin: 4rem auto 9rem auto;
  max-width: 100%;
}
.page-template-page-older-demographic #hero .bg .row .text ul {
  margin: 4rem auto 12rem auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.page-template-page-older-demographic #hero .bg .row .text ul li {
  margin: 0 0 0 0;
}
.page-template-page-older-demographic #hero .bg .row .text ul li:nth-of-type(1) a div {
  background-image: url('/wp-content/uploads/2021/12/ico-chat-1.png');
  background-size: auto 2.6rem;
}
.page-template-page-older-demographic #hero .bg .row .text ul li:nth-of-type(2) a div {
  background-image: url('/wp-content/uploads/2021/12/ico-phone-1.png');
  background-size: auto 2.6rem;
}
.page-template-page-older-demographic #hero .bg .row .text ul li:nth-of-type(3) a div {
  background-image: url('/wp-content/uploads/2021/12/ico-mail-1.png');
  background-size: auto 2.1rem;
}
.page-template-page-older-demographic #hero .bg .row .text ul li a {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  height: 6rem;
  border-radius: 3rem;
  color: #fff;
  background: #54AEAF;
  padding: 1.5rem 11rem 1.5rem 6rem;
  position: relative;
  transition: all .3s;
}
.page-template-page-older-demographic #hero .bg .row .text ul li a:hover {
  color: #54AEAF;
  background-color: #fff;
}
.page-template-page-older-demographic #hero .bg .row .text ul li a:hover:after {
  filter: invert(30%) sepia(30%) saturate(611%) hue-rotate(132deg) brightness(88%) contrast(86%);
}
.page-template-page-older-demographic #hero .bg .row .text ul li a:after {
  content: '';
  width: 4rem;
  height: 3.6rem;
  position: absolute;
  right: 2.8rem;
  top: 50%;
  margin-top: -1.6rem;
  background: url('../img/ico-chat.svg') no-repeat center;
  background-size: contain;
}
.page-template-page-older-demographic #green {
  width: 100%;
  height: 5rem;
  background-color: #C0E9D2;
}
.page-template-page-older-demographic #green .row {
  display: flex;
  justify-content: center;
}
.page-template-page-older-demographic #green .row .post {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 3rem;
}
.page-template-page-older-demographic #green .row .post .ico {
  width: auto;
  height: 2.4rem ;
  padding: 0 1rem;
}
.page-template-page-older-demographic #green .row .post .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-older-demographic #green .row .post .txt p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  text-align: left;
  color: #2E395A;
}
.page-template-page-older-demographic #green .row .post .txt p a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  text-align: left;
  color: #2E395A;
  transition: all .3s;
}
.page-template-page-older-demographic #green .row .post .txt p a:hover {
  text-decoration: underline;
}
.page-template-page-older-demographic #next {
  padding: 8.5rem 0 ;
}
.page-template-page-older-demographic #next .row h2 {
  margin: 0 auto 8rem auto;
  font-family: 'Merriweather', serif;
  font-size: 3.3rem ;
  line-height: 5rem;
  font-weight: 300;
  letter-spacing: .33px;
  color: #2E395A;
  text-align: center;
  max-width: 74rem;
}
.page-template-page-older-demographic #next .row h2 strong {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 600;
}
.page-template-page-older-demographic #next .row .container .post {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 8rem 0;
  align-items: center;
}
.page-template-page-older-demographic #next .row .container .post .txt {
  flex: 1 0 42%;
  max-width: 42%;
  padding: 0 2rem 0 0;
}
.page-template-page-older-demographic #next .row .container .post .txt h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  line-height: 3.9rem;
  letter-spacing: 0.28px;
  font-weight: 300;
  color: #2E395A;
  text-align: left;
  margin: 0 0 4rem 0;
}
.page-template-page-older-demographic #next .row .container .post .txt h3 em {
  font-weight: 600;
  font-style: italic;
  font-family: 'Merriweather', serif;
}
.page-template-page-older-demographic #next .row .container .post .txt .child {
  display: flex;
  justify-content: space-between;
  margin: 0 0 7rem 0;
}
.page-template-page-older-demographic #next .row .container .post .txt .child .ico {
  width: 5.5rem;
  max-height: 6.3rem;
}
.page-template-page-older-demographic #next .row .container .post .txt .child .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-older-demographic #next .row .container .post .txt .child .info {
  flex: 1;
  padding-left: 3rem;
}
.page-template-page-older-demographic #next .row .container .post .txt .child .info h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #056B9D;
  line-height: 3rem;
  text-align: left;
  margin: 0 0 1rem 0;
}
.page-template-page-older-demographic #next .row .container .post .txt .child .info p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2rem ;
  line-height: 3rem;
  font-weight: 400;
  color: #2E395A;
  text-align: left;
  margin: 0 0 0 0;
}
.page-template-page-older-demographic #next .row .container .post .txt .child:last-of-type {
  margin-bottom: 0;
}
.page-template-page-older-demographic #next .row .container .post .pic {
  flex: 1 0 58%;
  max-width: 58%;
  border-radius: 1.2rem;
  overflow: hidden;
}
.page-template-page-older-demographic #next .row .container .post .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-older-demographic #next .row .container .post .chat {
  order: 3;
  flex: 1 0 100%;
  max-width: 100%;
  padding: 4rem 0;
  text-align: center;
}
.page-template-page-older-demographic #next .row .container .post .chat a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #31527E;
  margin-top: 3rem ;
  background-color: #6DBCDB;
  display: inline-block;
  border-radius: 4px;
  padding: 1rem 3.5rem;
  transition: all .3s;
}
.page-template-page-older-demographic #next .row .container .post .chat a:hover {
  color: #6DBCDB;
  background-color: #31527E;
}
.page-template-page-older-demographic #next .row .container .post:nth-of-type(odd) .txt {
  padding-right: 6rem;
}
.page-template-page-older-demographic #next .row .container .post:nth-of-type(even) .pic {
  order: 1;
}
.page-template-page-older-demographic #next .row .container .post:nth-of-type(even) .txt {
  order: 2;
  padding-left: 6rem;
}
.page-template-page-older-demographic #offer {
  padding: 10rem 0 7rem 0;
}
.page-template-page-older-demographic #offer .row {
  max-width: 120rem;
}
.page-template-page-older-demographic #offer h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.4rem;
  line-height: 4.4rem;
  margin: 0 0 1rem 0;
  color: #056B9D;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.page-template-page-older-demographic #offer p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #2E395A;
  margin: 0;
}
.page-template-page-older-demographic #offer .flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -4rem;
}
.page-template-page-older-demographic #offer .flex .post {
  flex: 1 0 50%;
  max-width: 50%;
  margin: 8rem 0 0 0;
  padding: 0 4rem;
}
.page-template-page-older-demographic #offer .flex .post .ico {
  height: 5.8rem;
  width: 5.2rem;
  display: flex;
  align-items: center;
  margin: 0 0 2.5rem 0;
}
.page-template-page-older-demographic #offer .flex .post .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-older-demographic #offer .flex .post h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.6rem;
  line-height: 3.2rem;
  margin: 0 0 1rem 0;
  color: #056B9D;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.page-template-page-older-demographic #offer .flex .post p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #2E395A;
  margin: 0;
  max-width: 44rem;
}
.page-template-page-older-demographic #offer a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #fff;
  margin-top: 6rem ;
  background-color: #54AEAF;
  display: inline-block;
  border-radius: 5px;
  padding: 1rem 7.5rem;
  transition: all .3s;
}
.page-template-page-older-demographic #offer a:hover {
  color: #fff;
  background-color: #31527E;
}
.page-template-page-older-demographic #plan {
  padding: 7rem 0 15rem 0;
}
.page-template-page-older-demographic #plan .row {
  max-width: 133rem;
}
.page-template-page-older-demographic #plan .row .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-template-page-older-demographic #plan .row .flex .text {
  flex: 1 0 54%;
  max-width: 54%;
  margin: 7rem 0 0 0;
  background: #fff;
  border-radius: 2.3rem 10rem 2.3rem 15rem;
  box-shadow: 5rem 0 4rem rgba(0, 0, 0, 0.06);
  padding: 9rem 16rem 9rem 7rem;
}
.page-template-page-older-demographic #plan .row .flex .text h2 {
  font-family: 'Merriweather', serif;
  font-size: 3.4rem;
  line-height: 4.4rem;
  color: #056B9D;
  text-align: center;
  margin: 0 0 3rem 0;
  font-weight: 700;
}
.page-template-page-older-demographic #plan .row .flex .text p {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  line-height: 3.4rem;
  color: #2E395A;
  text-align: center;
  margin: 0 0 3rem 0;
  font-weight: 700;
}
.page-template-page-older-demographic #plan .row .flex .text p:last-of-type {
  margin: 0;
}
.page-template-page-older-demographic #plan .row .flex .text a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  color: #fff;
  background-color: #54AEAF;
  display: inline-block;
  border-radius: 5px;
  padding: 1rem 7.5rem;
  transition: all .3s;
}
.page-template-page-older-demographic #plan .row .flex .text a:hover {
  color: #fff;
  background-color: #31527E;
}
.page-template-page-older-demographic #plan .row .flex .video {
  flex: 1 0 46%;
  max-width: 46%;
  height: 45rem;
}
.page-template-page-older-demographic #plan .row .flex .video a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 13rem;
  margin-left: -13rem;
  box-sizing: content-box;
  border-radius: 1.2rem;
}
.page-template-page-older-demographic #plan .row .flex .video a .play {
  width: 7rem;
  height: 7rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3.7rem 0 0 -3.7rem;
  background-image: url("../img/ico-play-blue.png");
  background-repeat: no-repeat;
  background-size: 2.8rem 2.8rem;
  background-position: center left 2.2rem;
  transition: all .3s;
}
.page-template-page-older-demographic #plan .row .flex .video a:hover .play {
  transform: scale(1.1);
}
.page-template-page-older-demographic #process {
  padding-bottom: 9.5rem;
}
.page-template-page-older-demographic #process .row .text h2 {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-size: 3.3rem;
  line-height: 4.8rem;
  letter-spacing: 0.33px;
  color: #2E395A;
  margin: 0 auto;
  text-align: center;
  max-width: 80rem;
}
.page-template-page-older-demographic #process .row .text h2 strong {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-style: italic;
}
.page-template-page-older-demographic #process .row .text p {
  text-align: center;
  margin: 4rem auto 0 auto;
}
.page-template-page-older-demographic #process .row .text p a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.6rem;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  padding: 1.5rem 5.5rem;
  background-color: #056B9D;
  border-radius: 5px;
  border: 1px solid #056B9D;
  transition: all .3s;
}
.page-template-page-older-demographic #process .row .text p a:hover {
  color: #056B9D;
  background: #fff;
}
.page-template-page-older-demographic #testimonial {
  position: relative;
}
.page-template-page-older-demographic #testimonial .row {
  max-width: 100%;
  padding: 0;
}
.page-template-page-older-demographic #testimonial .row .flex {
  display: flex;
  justify-content: center;
  height: 80.5rem;
}
.page-template-page-older-demographic #testimonial .row .flex .left {
  flex: 1 0 50%;
  max-width: 50%;
}
.page-template-page-older-demographic #testimonial .row .flex .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center center;
}
.page-template-page-older-demographic #testimonial .row .flex .right {
  flex: 1 0 50%;
  max-width: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-template-page-older-demographic #testimonial .row .flex .right h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  color: #056b9d;
  margin: 0 auto;
  text-align: center;
}
.page-template-page-older-demographic #testimonial .row .flex .right h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #2e395a;
  margin: 1.5rem auto 0 auto;
  text-align: center;
  max-width: 23rem;
}
.page-template-page-older-demographic #testimonial .row .flex .right p {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 4rem;
  color: #056b9d;
  margin: 5rem auto 0 auto;
  text-align: center;
  max-width: 52rem;
  padding: 0 2rem;
}
.page-template-page-older-demographic #testimonial .owl-dots {
  display: flex;
  justify-content: center;
  padding: 0;
  position: absolute;
  z-index: 2;
  left: 50%;
  right: 0;
  bottom: 5rem;
}
.page-template-page-older-demographic #testimonial .owl-dots .owl-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #31527E;
  margin: 0 0.6rem;
  opacity: 0.25;
  transition: all .3s;
}
.page-template-page-older-demographic #testimonial .owl-dots .owl-dot.active,
.page-template-page-older-demographic #testimonial .owl-dots .owl-dot:hover {
  opacity: 1;
}
.page-template-page-older-demographic #know {
  padding: 5rem 0 10rem 0;
  background: #EFFBFF;
}
.page-template-page-older-demographic #know .row {
  max-width: 82rem;
}
.page-template-page-older-demographic #know .row h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #31527E;
  margin: 0 0 4rem 0;
}
.page-template-page-older-demographic #know .row p {
  margin: 0;
}
.page-template-page-older-demographic #know .row a {
  display: block;
}
.page-template-page-older-demographic #know .row a img {
  width: 100%;
  height: auto;
  border-radius: 1.3rem;
}
.page-template-page-older-demographic #know .row a .play {
  width: 7.4rem;
  height: 7.4rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3.7rem 0 0 -3.7rem;
  background-image: url("../img/ico-play-blue.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.2rem 1.2rem;
  transition: all .3s;
}
.page-template-page-older-demographic #know .row a:hover .play {
  transform: scale(1.1);
}
.page-template-page-older-demographic #know .row .flex {
  display: flex;
  justify-content: space-between;
  max-width: 75rem;
  margin: 5rem auto 0 auto;
}
.page-template-page-older-demographic #know .row .flex a {
  display: block;
  border-radius: 1.2rem;
  flex: 1 0 24rem;
  max-width: 24rem;
  height: 20rem;
  padding: 3.5rem 1rem 1rem 1rem;
  transition: all .3s;
}
.page-template-page-older-demographic #know .row .flex a:hover {
  background: #fff;
}
.page-template-page-older-demographic #know .row .flex a:hover .icon {
  background: rgba(109, 188, 219, 0.1);
}
.page-template-page-older-demographic #know .row .flex a .icon {
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 50%;
  transition: all .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-older-demographic #know .row .flex a .icon img {
  width: 3.6rem;
  height: auto;
  border-radius: 0;
}
.page-template-page-older-demographic #know .row .flex a h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #31527E;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-align: center;
}
.page-template-page-older-demographic #know .row .flex a p {
  font-family: 'Merriweather', serif;
  font-size: 2.0rem;
  line-height: 2.4rem;
  color: #31527E;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
/* footer */
#notification,
#notificationb {
  background: #C0E9D2;
  padding: 1rem 0;
  text-align: center;
}
#notification .row,
#notificationb .row {
  max-width: 128rem;
}
#notification p,
#notificationb p {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  line-height: 2rem;
  color: #2E395A;
  font-weight: 700;
  margin: 0 0;
  display: inline-block;
}
#notification p strong,
#notificationb p strong {
  font-weight: 600;
}
#footer {
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
#footer .row {
  max-width: 136rem;
}
#footer .row:nth-of-type(1) .content {
  padding: 6rem 0 7rem 0;
  border-bottom: 1px solid rgba(49, 82, 126, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .row:nth-of-type(1) .content #footLogo {
  display: block;
  width: 15.8rem;
  height: 5.7rem;
}
#footer .row:nth-of-type(1) .content #footLogo a {
  display: block;
  width: inherit;
  height: inherit;
  text-indent: -999rem;
  background: url('../img/hope-trust-logo.png') no-repeat center;
  background-size: contain;
}
#footer .row:nth-of-type(1) .content .menu-footer-menu-container .menu,
#footer .row:nth-of-type(1) .content .menu-footer-videomarketing-menu-container .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
#footer .row:nth-of-type(1) .content .menu-footer-menu-container .menu li,
#footer .row:nth-of-type(1) .content .menu-footer-videomarketing-menu-container .menu li {
  margin: 0 1.8rem;
  padding: 0;
}
#footer .row:nth-of-type(1) .content .menu-footer-menu-container .menu li a,
#footer .row:nth-of-type(1) .content .menu-footer-videomarketing-menu-container .menu li a {
  font-size: 1.7rem;
  line-height: 2rem;
  font-weight: 700;
  color: #2E395A;
  transition: all .3s;
}
#footer .row:nth-of-type(1) .content .menu-footer-menu-container .menu li a:hover,
#footer .row:nth-of-type(1) .content .menu-footer-videomarketing-menu-container .menu li a:hover {
  color: #639543;
}
#footer .row:nth-of-type(1) .content .menu-social-menu-container {
  width: 15.8rem;
}
#footer .row:nth-of-type(1) .content .menu-social-menu-container .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
#footer .row:nth-of-type(1) .content .menu-social-menu-container .menu li {
  margin: 0 0 0 2.5rem;
  padding: 0;
}
#footer .row:nth-of-type(1) .content .menu-social-menu-container .menu li a {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -999rem;
  display: block;
  height: 2.1rem;
  transition: all .3s;
}
#footer .row:nth-of-type(1) .content .menu-social-menu-container .menu li a:hover {
  transform: scale(1.2);
}
#footer .row:nth-of-type(1) .content .menu-social-menu-container .menu li a[href*="facebook"] {
  background-image: url('../img/social-facebook.svg');
  width: 1rem;
}
#footer .row:nth-of-type(1) .content .menu-social-menu-container .menu li a[href*="instagram"] {
  background-image: url('../img/social-instagram.svg');
  width: 2.1rem;
}
#footer .row:nth-of-type(2) .content {
  padding: 4rem 0 4rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#footer .row:nth-of-type(2) .content .left h1 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgba(46, 57, 90, 0.75);
  margin: 0 0 2rem 0;
}
#footer .row:nth-of-type(2) .content .left p {
  font-size: 1.5rem;
  line-height: 2.2rem;
  font-weight: 400;
  margin: 0;
  color: rgba(46, 57, 90, 0.75);
}
#footer .row:nth-of-type(2) .content .left p a {
  color: inherit;
  text-decoration: none;
}
#footer .row:nth-of-type(2) .content .left p a:hover {
  text-decoration: underline;
}
#footer .row:nth-of-type(2) .content .left .flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#footer .row:nth-of-type(2) .content .left .flex .address {
  margin-right: 8vw;
}
#footer .row:nth-of-type(2) .content .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#footer .row:nth-of-type(2) .content .right .menu-legal-menu-container .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
#footer .row:nth-of-type(2) .content .right .menu-legal-menu-container .menu li {
  margin: 0 2rem;
  padding: 0;
}
#footer .row:nth-of-type(2) .content .right .menu-legal-menu-container .menu li a {
  white-space: nowrap;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 700;
  color: rgba(46, 57, 90, 0.75);
  transition: all .3s;
}
#footer .row:nth-of-type(2) .content .right .menu-legal-menu-container .menu li a:hover {
  color: #639543;
}
#footer .row:nth-of-type(2) .content .right p {
  margin: 0 0 0 2rem;
  font-size: 1.3rem;
  line-height: 2rem;
  color: rgba(46, 57, 90, 0.75);
  font-weight: 400;
}
.page-template #hubspot-messages-iframe-container {
  bottom: 6rem !important;
}
/* misc */
input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none !important;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder {
  color: rgba(74, 74, 74, 0.6);
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
}
.hidden {
  visibility: hidden !important;
}
.visible {
  visibility: visible !important;
}
/* rwd */
@media only screen and (min-width: 1460px) {
  .page-template-page-home #notification {
    max-width: 140rem;
    margin: 4rem auto -2rem auto;
  }
}
@media only screen and (min-width: 1350px) {
  .page-template-page-videomarketing #assets {
    padding-top: 20rem;
  }
}
@media only screen and (min-width: 1260px) {
  .page-template-page-videomarketing #hero .row .flex {
    margin: 0 -5rem;
    padding: 17rem 0;
  }
  .page-template-page-videomarketing #hero .row .flex .left {
    padding: 0 5rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left h1 {
    max-width: 70rem;
  }
}
@media only screen and (min-width: 1141px) {
  #head #mainMenu {
    position: static !important;
    display: block !important;
  }
}
@media only screen and (max-width: 1140px) {
  .page-template-page-videomarketing #assets {
    margin-top: -14rem;
    padding-top: 24rem;
  }
  #page {
    padding-top: 9rem;
  }
  header#head {
    padding: 1.5rem 0;
  }
  header#head .row nav#mainMenu {
    display: none;
    position: fixed;
    width: 100%;
    top: -105vh;
    height: 100vh;
    right: 0;
    left: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    padding: 5rem 0;
    margin: 0;
  }
  header#head .row nav#mainMenu .scroll {
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    padding: 0 2rem 0 2rem;
  }
  header#head .row nav#mainMenu .scroll .content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 8rem 0;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li {
    margin: 2rem 0;
    text-align: center;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li a {
    font-size: 2.2rem;
    font-weight: 700;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li a:before,
  header#head .row nav#mainMenu .scroll .content ul.menu > li a:after {
    top: 3.5rem;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li.menu-item-has-children {
    margin-right: 0;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li.menu-item-has-children > a {
    padding-right: 0;
    background: none;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li .sub-menu {
    display: block;
    position: static;
    width: auto;
    background: none;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li .sub-menu li {
    margin: 2rem 0;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li .sub-menu li a {
    font-weight: 400;
    font-size: 2rem;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li .sub-menu li:first-child {
    margin-top: 1rem;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li .sub-menu li:last-child {
    margin-bottom: 0;
  }
  header#head .row nav#mainMenu .scroll .content .menu-main-menu-container + ul.menu {
    margin-top: 8rem;
  }
  #mobileTrigger {
    display: block;
    top: 1.1rem;
  }
  .page-template-page-contact header#head #mainMenu .scroll .content ul.menu > li a {
    color: #141F4E;
  }
  .page-template-page-contact header#head #mainMenu .scroll .content ul.menu > li:last-child a {
    color: #fff;
  }
  .page-template-page-young #page.scrolled {
    padding-top: 9rem;
  }
  .page-template-page-older-demographic #page.scrolled {
    padding-top: 9rem;
  }
}
@media only screen and (max-width: 700px) {
  .row {
    padding: 0 2rem;
  }
  .page-template-page-home #notification {
    margin: 4rem 2rem -2rem 2rem;
  }
}
@media only screen and (max-width: 1400px) {
  .page-template-page-videomarketing #lead .mask,
  .page-template-page-videomarketing #summary .mask {
    width: 140rem;
    left: 50%;
    margin-left: -70rem;
    right: unset;
  }
  .page-template-page-videomarketing #assets .mask {
    width: 220rem;
    left: 50%;
    right: unset;
    margin-left: -138rem;
  }
}
@media only screen and (max-width: 1250px) {
  .page-template-page-home #solution {
    padding-top: 10rem;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
    margin-top: 18rem;
  }
  .page-template-page-home #webinars .row .flex .group .webinar {
    flex: 1 0 100%;
    max-width: 34rem;
  }
  .page-template-page-b2b #hero .row .txt h1 {
    font-size: 5.1rem;
    line-height: 5.6rem;
  }
  .page-template-page-b2b #plan .row {
    background-size: 63rem;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type {
    flex: 1 0 27rem;
    max-width: 27rem;
    padding-top: 6.5rem;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt h2 {
    font-size: 3.3rem;
    line-height: 3.9rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type {
    flex: 1 0 27rem;
    max-width: 27rem;
    padding-top: 21rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt h2 {
    font-size: 3.3rem;
    line-height: 3.9rem;
  }
}
@media only screen and (max-width: 1200px) {
  .page-template-page-home #hero {
    height: auto;
  }
  .page-template-page-home #hero .row .content {
    padding: 24rem 0 0 6rem;
    flex-direction: column;
    align-items: flex-start;
    background-image: none !important;
    position: relative;
  }
  .page-template-page-home #hero .row .bg {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 1.5rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
  }
  .page-template-page-home #hero .row .left {
    flex: auto;
    max-width: 58rem;
    margin: 0 0 6rem 0;
    padding-left: 0;
    z-index: 3;
  }
  .page-template-page-services #hero .row .content {
    padding: 0 3rem;
    background-position: right -15rem center;
  }
  .page-template-page-about #hero .row .content {
    padding: 0 3rem;
    background-position: right -15rem center;
  }
  .page-template-page-webinars #hero .row .content {
    padding: 5rem 6rem;
  }
  .page-template-page-webinars #hero .row img {
    right: 5rem;
    bottom: -15rem;
    width: 34rem;
  }
  .page-template-page-snap #hero .row .content .bg.des {
    background-position: right -12rem center;
  }
  .page-template-page-snap #hero .row .content .txt {
    padding-left: 5rem;
  }
  .single-webinar #hero .row .content {
    padding: 5rem 6rem;
  }
  .page-template-page-partners #partners .row #results .partner .people .person {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-b2b #census .row .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-template-page-b2b #census .row .flex .post {
    flex: 1 0 50%;
    max-width: 32rem;
    margin: 2rem 2.5rem 3.5rem 2.5rem;
  }
  .page-template-page-b2b #census .row .flex .post .txt {
    padding: 4.5rem 3rem;
  }
  .page-template-page-b2b #hero .content .row .txt h1 {
    font-size: 5.6rem;
    line-height: 6rem;
    max-width: 52rem;
  }
}
@media only screen and (max-width: 1150px) {
  .page-template-page-home #events .row .flex {
    margin-top: 5rem;
  }
  .page-template-page-home #events .row .flex .box .img {
    height: 22rem;
  }
  .page-template-page-home #careplan {
    padding: 4rem 0 0 0;
  }
  .page-template-page-home #careplan .row .flex {
    flex-wrap: wrap;
  }
  .page-template-page-home #careplan .row .flex .post:nth-of-type(1) {
    flex: 1 0 100%;
    order: 1;
    max-width: 100%;
    margin: 0 0 4rem 0;
    padding: 0 4rem;
  }
  .page-template-page-home #careplan .row .flex .post:nth-of-type(1) img {
    max-width: 50rem;
    margin: 0 auto;
    display: block;
  }
  .page-template-page-home #careplan .row .flex .post {
    order: 2;
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-trial #hero .row .form {
    flex: 1 0 36rem;
    max-width: 36rem;
  }
  .page-template-page-webinars #webinars .aside {
    flex: 1 0 34rem;
    max-width: 34rem;
  }
  .page-template-page-contact #hero .row .txt {
    padding-right: 6rem;
  }
  .page-template-page-contact #hero .row .txt h1 {
    font-size: 1.8rem;
  }
  .page-template-page-contact #hero .row .txt p {
    font-size: 3.8rem;
    line-height: 5.4rem;
  }
  .page-template-page-b2b #landscape .row .flex .right {
    position: relative;
  }
  .page-template-page-b2b #landscape .row .flex .right img {
    width: 54rem;
    height: auto;
    position: absolute;
    left: 0;
  }
  .single-webinar #hero .row .txt {
    max-width: calc(100% - 42rem);
  }
  .single-webinar #webinar .aside {
    flex: 1 0 34rem;
    max-width: 34rem;
  }
}
@media only screen and (max-width: 1130px) {
  .page-template-page-home #testimonial .slide .row,
  .page-template-page-services #testimonial .slide .row {
    margin: 0 2rem 12rem 2rem;
  }
}
@media only screen and (max-width: 1150px) {
  #footer .row:nth-of-type(1) .content {
    flex-direction: column;
  }
  #footer .row:nth-of-type(1) .content .menu-footer-menu-container .menu,
  #footer .row:nth-of-type(1) .content .menu-footer-videomarketing-menu-container .menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer .row:nth-of-type(1) .content .menu-footer-menu-container .menu li,
  #footer .row:nth-of-type(1) .content .menu-footer-videomarketing-menu-container .menu li {
    margin: 2rem 1.8rem;
  }
  #footer .row:nth-of-type(1) .content #footLogo {
    margin: 0 0 4rem 0;
  }
  #footer .row:nth-of-type(1) .content .menu-social-menu-container {
    width: auto;
    margin: 4rem 0 0 0;
  }
  #footer .row:nth-of-type(1) .content .menu-social-menu-container .menu li {
    margin: 0 1.3rem;
  }
  #footer .row:nth-of-type(2) .content {
    flex-direction: column;
    align-items: center;
  }
  #footer .row:nth-of-type(2) .content .left h1 {
    text-align: center;
    margin: 0 0 3rem 0;
  }
  #footer .row:nth-of-type(2) .content .left p {
    text-align: center;
  }
  #footer .row:nth-of-type(2) .content .right {
    flex-direction: column;
    margin: 3rem 0 0 0;
  }
  #footer .row:nth-of-type(2) .content .right p {
    margin: 3rem 0 0 0;
  }
}
@media only screen and (max-width: 1100px) {
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
    margin-top: 18rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex {
    margin-top: -16rem;
  }
  .page-template-page-young #features .post:nth-of-type(even) .txt {
    padding-left: 0;
  }
  .single-webinar #hero .row .txt h1 {
    font-size: 3.4rem;
    line-height: 4.6rem;
  }
  .single-webinar #hero .row .txt h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .single-webinar #webinar .aside .form {
    margin: -62rem 0 8rem 0;
  }
  .page-template-page-b2b #plan .row {
    background-size: 58rem;
  }
  .page-template-page-b2b #plan .row .flex .post {
    flex: 1 0 27rem;
    max-width: 27rem;
  }
  .page-template-page-b2b #plan .row .flex .post .txt h2 {
    font-size: 3.3rem;
    line-height: 3.9rem;
  }
  .page-template-page-older-demographic #next .row .container .post {
    padding-right: 0;
  }
  .page-template-page-older-demographic #next .row .container .post .pic {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-older-demographic #next .row .container .post .txt {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-older-demographic #next .row .container .post:nth-of-type(odd) .txt {
    padding-right: 4rem;
  }
  .page-template-page-older-demographic #next .row .container .post:nth-of-type(even) .txt {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 1050px) {
  .page-template-page-videomarketing #hero .row .flex {
    padding: 12rem 0;
    margin: 0 -5rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left {
    padding: 0 5rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left h1 {
    font-size: 6.5rem;
    line-height: 6rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left p {
    font-size: 2.4rem;
    line-height: 3.5rem;
  }
  .page-template-page-videomarketing #hero .row .flex .right {
    padding: 0 5rem 0 0;
  }
  .page-template-page-videomarketing #lead .row .flex {
    margin: 5rem -2rem 0 -2rem;
  }
  .page-template-page-videomarketing #lead .row .flex .box {
    padding: 0 2rem;
  }
  .page-template-page-videomarketing #lead .row .flex .box h3 {
    font-size: 6rem;
    line-height: 5rem;
  }
  .page-template-page-videomarketing #solutions .row .flex {
    margin: 6rem -2rem 0 -2rem;
  }
  .page-template-page-videomarketing #solutions .row .flex .box {
    padding: 0 2rem;
  }
  .page-template-page-videomarketing #assets {
    padding-top: 19rem;
  }
  .page-template-page-videomarketing #assets .row .flex .txt h2 {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .page-template-page-videomarketing #summary .row .flex .pic {
    margin: 0 -4rem;
  }
  .page-template-page-home #plan .row .text {
    padding: 0 2rem 0 4rem;
  }
  .page-template-page-home #plan .row .text h2 {
    font-size: 2.2rem;
    line-height: 3.5rem;
  }
  .page-template-page-home #getstarted {
    padding-bottom: 12rem;
  }
  .page-template-page-home #getstarted .row .photo img {
    right: -6rem;
    width: 81rem;
  }
  .page-template-page-home #getstarted .row .text h3 {
    font-size: 3.4rem;
    line-height: 4.6rem;
  }
  .page-template-page-home #solution {
    padding-top: 5rem;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
    margin-top: 4rem;
    font-size: 2.6rem;
    line-height: 4.1rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex {
    margin-top: -26rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) p {
    font-size: 2.6rem;
    line-height: 4.1rem;
  }
  .page-template-page-home #howitworks .row .lead h2 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  .page-template-page-home #howitworks .row .flex .container {
    padding: 0 2rem 5rem 2rem;
  }
  .page-template-page-home #howitworks .row .flex .container .img {
    width: 8.4rem;
    height: 8.4rem;
  }
  .page-template-page-home #howitworks .row .flex .container .text h2 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .page-template-page-home #howitworks .row .flex .container .text h3 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .page-template-page-home #howitworks .row .flex .container .text p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .page-template-page-home #partners {
    padding: 14rem 0;
  }
  .page-template-page-home #partners .row .text h2 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  .page-template-page-home #events .row h2 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  .page-template-page-home #events .row .flex {
    margin-top: 4.5rem;
  }
  .page-template-page-home #events .row .flex .box .img {
    height: 20rem;
  }
  .page-template-page-home #events .row .flex .box h3 {
    margin-top: 3rem;
  }
  .page-template-page-home #testimonial .slide .row {
    padding: 8rem 8rem 8rem 8rem;
  }
  .page-template-page-home #news h2 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  .page-template-page-partners #partners .flex .partner {
    flex: 1 0 33.33%;
    max-width: 33.33%;
  }
  .page-template-page-young #hero {
    height: 76rem;
  }
  .page-template-page-young #hero .row .content .app {
    position: relative;
    left: auto;
    bottom: auto;
    order: 1;
    width: 59rem;
    height: 38rem;
  }
  .page-template-page-young #hero .row .content .txt {
    order: 2;
  }
  .page-template-page-young #hero .row .content .bg {
    background-position: right -37rem center;
  }
  .page-template-page-services #plans .row .flex .container {
    padding: 0 1.7rem;
  }
  .page-template-page-services #plans .row .flex .container .content ul {
    max-width: 100%;
  }
  .page-template-page-services #testimonial .slide .row {
    padding: 8rem 8rem 8rem 8rem;
  }
  .page-template-page-about #assets .row .content .right {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .page-template-page-about #assets .row .content .right .container {
    flex: 1 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 0;
  }
  .page-template-page-about #assets .row .content .right .container p {
    text-align: left;
    margin: 0.5rem 0 ;
  }
  .page-template-page-about #assets .row .content .right .container .ico {
    margin: 0 2rem 0 0;
  }
  .page-template-page-about #assets .row .content hr {
    height: 20rem;
  }
  .page-template-page-about #story {
    padding-top: 12rem;
  }
  .page-template-page-about #story .row h2 {
    font-size: 3.5rem;
    line-height: 5.5rem;
  }
  .page-template-page-about #story .row .flex {
    padding-top: 8rem;
  }
  .page-template-page-about #story .row .flex .right {
    padding: 13rem 4rem 7rem 7rem;
  }
  .page-template-page-about #story .row .flex .left img {
    width: 56rem;
  }
  .page-template-page-about #alternative {
    padding-bottom: 10rem;
  }
  .page-template-page-about #alternative .row {
    justify-content: center;
  }
  .page-template-page-about #alternative .row .text {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 6rem 0 0 0;
  }
  .page-template-page-about #alternative .row .text h3 {
    text-align: center;
    margin: 5rem auto 3rem auto;
  }
  .page-template-page-about #alternative .row .text p {
    text-align: center;
    margin: 0 auto;
    max-width: 70rem;
  }
  .page-template-page-about #mission {
    padding: 6rem 0;
  }
  .page-template-page-about #mission .row h2 {
    font-size: 3.5rem;
    line-height: 5.5rem;
  }
  .page-template-page-about #mission .row p {
    margin: 4rem auto 5rem auto;
  }
  .page-template-page-about #mission .row .flex .box {
    padding: 0 6rem 0 3rem;
  }
  .page-template-page-about #mission .row .flex .box h4 {
    font-size: 2.5rem;
    line-height: 3.7rem;
  }
  .page-template-page-about #mission .row .flex .box hr {
    height: 15rem;
    top: 3rem;
  }
  .page-template-page-b2b #hero {
    background-position: center right -12rem;
  }
  .page-template-page-b2b #hero .row .txt h1 {
    font-size: 4.6rem;
    line-height: 5.1rem;
    max-width: 50rem;
  }
  .page-template-page-b2b #tech .row .flex .right {
    left: 40rem;
    width: 87rem;
    height: 59rem;
    top: -5rem;
  }
  .page-template-page-b2b #plan .row {
    background-size: 45rem;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type {
    flex: 1 0 27rem;
    max-width: 27rem;
    padding-top: 6.5rem;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt h2 {
    font-size: 3.3rem;
    line-height: 3.9rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type {
    flex: 1 0 27rem;
    max-width: 27rem;
    padding-top: 21rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt h2 {
    font-size: 3.3rem;
    line-height: 3.9rem;
  }
  .page-template-page-snap #hero .row .txt h2 {
    max-width: 54rem;
  }
  .page-template-page-snap #hero .row .txt p {
    max-width: 50rem;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div {
    display: block;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body {
    padding-left: 0;
    margin-top: 4rem;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-header {
    display: none;
  }
  .page-template-page-snap-results #hero .row {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .page-template-page-snap-results #hero .row .txt {
    flex: 1 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 6rem;
  }
  .page-template-page-snap-results #hero .row .txt h1,
  .page-template-page-snap-results #hero .row .txt p {
    max-width: 60rem;
  }
  .page-template-page-older-demographic #plan .row .flex .text {
    padding: 7rem 15rem 7rem 5rem;
  }
  .page-template-page-older-demographic #green .row .post {
    margin: 0 1.5rem;
  }
  .page-template-page-older-demographic #green .row .post .txt p {
    white-space: nowrap;
  }
  .page-template-page-older-demographic #hero .row .bg {
    background-position: center right -30rem;
  }
  .page-template-page-older-demographic #hero .row .bg .backg.des {
    background-position: center right -30rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex {
    height: 65rem;
  }
}
@media only screen and (max-width: 1000px) {
  .page-template-page-home #careplan {
    padding: 4rem 0 10rem 0;
  }
  .page-template-page-home #slider .row .slide {
    padding: 5rem 5rem;
  }
  .page-template-page-home #slider .row .slide .bg.des {
    border-radius: 1.4rem 1.4rem 1.4rem 10rem;
  }
  .page-template-page-home #slider .row .slide.font60 .txt blockquote {
    font-size: 5rem;
    line-height: 5.8rem;
  }
  .page-template-page-home #slider .row .slide.font66 .txt blockquote {
    font-size: 5.6rem;
    line-height: 6.1rem;
  }
  .page-template-page-home #slider .row .slide.font72 .txt blockquote {
    font-size: 6.1rem;
    line-height: 6.8rem;
  }
  .page-template-page-home #hero .row .extras {
    flex-direction: column;
  }
  .page-template-page-home #hero .row .extras .apps {
    order: 2;
    margin: 4rem 0 0 0;
    justify-content: center;
    width: 100%;
  }
  .page-template-page-home #hero .row .boxes {
    margin-top: 2rem;
    order: 1;
  }
  .page-template-page-home #hero .row .right {
    position: static;
    max-width: 120%;
    margin: 0 -1.1rem;
  }
  .page-template-page-home #hero .row .right .container .body {
    box-shadow: none;
  }
  .page-template-page-home #plan {
    padding-top: 10rem;
  }
  .page-template-page-young #hero .row .content .bg.des {
    border-radius: 1.4rem 1.4rem 1.4rem 10rem;
  }
  .page-template-page-young #quotes .flex .post {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-young #quotes .flex .post:nth-of-type(3) {
    display: none;
  }
  .page-template-page-blog #blog .row .blog .posts {
    margin: 0 0 0 -1.5rem;
  }
  .page-template-page-blog #blog .row .blog .posts .alm-reveal .post {
    padding: 0;
  }
  .page-template-page-blog #blog .row .aside {
    flex: 1 0 28rem;
    max-width: 28rem;
  }
  .page-template-page-blog #blog .row .aside #searchform button {
    text-indent: -999rem;
    background-image: url('../img/ico-search.svg');
    background-size: 2rem auto;
    background-repeat: no-repeat;
    background-position: center;
  }
  .page-template-page-snap #hero .row .txt h2 {
    font-size: 3.2rem;
    line-height: 4.6rem;
    max-width: 48rem;
  }
  .page-template-page-snap #hero .row .txt p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .page-template-page-snap-results #details .flex .col:nth-of-type(1) {
    padding-right: 4rem;
  }
  .page-template-page-snap-results #details .flex .col:nth-of-type(2) {
    padding-left: 4rem;
  }
  .page-template-page-trial #hero {
    height: auto;
  }
  .page-template-page-trial #hero .row .content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .page-template-page-trial #hero .row .content .form {
    flex: auto;
    margin-top: 6rem;
    padding: 0;
  }
  .page-template-page-trial #hero .row .content .txt {
    flex: auto;
    padding: 0;
  }
  .page-template-page-news #blog .row .blog .posts {
    margin: 0 0 0 -1.5rem;
  }
  .page-template-page-news #blog .row .blog .posts .alm-reveal .post {
    padding: 0;
  }
  .page-template-page-news #blog .row .aside {
    flex: 1 0 28rem;
    max-width: 28rem;
  }
  .page-template-page-news #blog .row .aside #searchform button {
    text-indent: -999rem;
    background-image: url('../img/ico-search.svg');
    background-size: 2rem auto;
    background-repeat: no-repeat;
    background-position: center;
  }
  .page-template-page-contact #hero .row {
    flex-direction: column;
  }
  .page-template-page-contact #hero .row .txt {
    flex: auto;
    padding-right: 0;
    margin: 0 0 4rem 0;
  }
  .page-template-page-contact #hero .row .gform_wrapper {
    max-width: 50rem;
  }
  .page-template-page-contact #hero .row .contact {
    max-width: 100%;
    flex: auto;
  }
  .page-template-page-contact #hero .row .contact .content ul li {
    flex: 1 0 25%;
    max-width: 25%;
  }
  .page-template-page-webinars #hero .row .content {
    background-position: right -15rem center;
  }
  .page-template-page-webinars #webinars .webinars .flex .webinar a {
    padding: 2.5rem 4rem 2.5rem 3rem;
    background-image: none;
  }
  .page-template-page-webinars #webinars .webinars .flex .webinar a:after {
    right: 1.5rem;
    width: 1rem;
  }
  .page-template-page-webinars #webinars .aside {
    flex: 1 0 28rem;
    max-width: 28rem;
  }
  .page-template-page-webinars #webinars .aside header {
    display: block;
  }
  .page-template-page-webinars #webinars .aside header img {
    margin: 0 0 2rem 0;
  }
  .single-webinar #hero .row .txt {
    max-width: calc(100% - 28rem);
  }
  .single-webinar #webinar .aside {
    flex: 1 0 28rem;
    max-width: 28rem;
  }
  .single-webinar #webinar .aside header {
    display: block;
  }
  .single-webinar #webinar .aside header img {
    margin: 0 0 2rem 0;
  }
  .page-template-page-about #team .row .flex .box,
  .page-template-page-about #founders .row .flex .box {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-about #directors .row .flex .box {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-about #mission .row p {
    margin: 3.5rem auto 4rem auto;
  }
  .page-template-page-about #mission .row .flex .box {
    padding: 0 5rem 3rem 2rem;
  }
  .page-template-page-about #mission .row .flex .box h4 {
    font-size: 2.5rem;
    line-height: 3.7rem;
    margin-top: 2rem;
  }
  .page-template-page-about #mission .row .flex .box hr {
    height: 17rem;
    top: 2rem;
  }
  .page-template-page-partners #partners .row #results .partner .people .person {
    padding: 0 2rem 4rem 3rem;
  }
  .page-template-page-partners #partners .row #results .partner .people .person .txt {
    padding-left: 2rem;
    max-width: 30rem;
  }
  .page-template-page-partners #partners .row #results .partner .people .person .txt h3 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .page-template-page-partners #partners .row #results .partner .people .person .txt p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .page-template-page-older-demographic #green {
    height: auto;
  }
  .page-template-page-older-demographic #green .row {
    flex-wrap: wrap;
  }
  .page-template-page-older-demographic #green .row .post:nth-of-type(3) {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-older-demographic #hero .row .bg {
    border-radius: 1.4rem 1.4rem 1.4rem 10rem;
  }
}
@media only screen and (max-width: 950px) {
  .page-template-page-videomarketing #assets {
    padding-top: 19rem;
  }
  .page-template-page-videomarketing #assets .row .flex .txt {
    flex: 1 0 30%;
    max-width: 30%;
  }
  .page-template-page-videomarketing #assets .row .flex .txt h2 {
    font-size: 2rem;
    line-height: 2.8rem;
    max-width: 27rem;
  }
  .page-template-page-videomarketing #assets .row .flex .txt ul li {
    font-size: 1.7rem;
    line-height: 2.2rem;
    background-size: 2.3rem;
  }
  .page-template-page-videomarketing #assets .row .flex .pic {
    flex: 1 0 70%;
    max-width: 70%;
  }
  .page-template-page-services #hero .row .text {
    margin: 0 auto;
  }
  .page-template-page-about #hero .row .text {
    margin: 0 auto;
  }
  .page-template-page-b2b #hero .content .row .txt h1 {
    font-size: 4rem;
    line-height: 4.5rem;
    max-width: 40rem;
  }
  .page-template-page-b2b #plan .row {
    padding-top: 45rem;
    background-position: center top;
    background-size: auto 45rem;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type {
    flex: 1 0 50%;
    max-width: 50%;
    padding-top: 4rem;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt {
    padding-right: 5rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type {
    flex: 1 0 50%;
    max-width: 50%;
    padding-top: 4rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt {
    padding-left: 5rem;
  }
  .page-template-page-b2b #offer .row .flex {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 40rem;
  }
  .page-template-page-b2b #offer .row .flex .post {
    flex: auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
    min-height: 0;
  }
  .page-template-page-b2b #offer .row .flex .post .txt h2 {
    padding-right: 1rem;
  }
  .page-template-page-older-demographic #hero .bg .row .text ul li {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .page-template-page-videomarketing #summary .row .flex .txt {
    max-width: 27rem;
  }
  .page-template-page-videomarketing #summary .row .flex .txt h2 {
    font-size: 2rem;
    line-height: 3rem;
    margin: 0 auto 4rem auto;
  }
  .page-template-page-home #hero .row .bg {
    background-position: -23rem center;
  }
  .page-template-page-home #hero .row .left {
    max-width: 48rem;
  }
  .page-template-page-home #hero .row .left h2 {
    font-size: 6rem;
    line-height: 6rem;
  }
  .page-template-page-home #hero .row .left p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .page-template-page-home #getstarted .row .photo {
    flex: 1 0 60%;
    max-width: 60%;
  }
  .page-template-page-home #getstarted .row .photo img {
    width: 73rem;
  }
  .page-template-page-home #getstarted .row .text {
    flex: 1 0 40%;
    max-width: 40%;
  }
  .page-template-page-home #solution {
    padding-top: 0;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
    margin-top: 0;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex {
    margin-top: -20rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post {
    padding: 2.5rem 2.5rem;
  }
  .page-template-page-home #events {
    padding: 10rem 0 6rem 0;
  }
  .page-template-page-home #events .row .flex {
    margin-top: 4rem;
  }
  .page-template-page-home #events .row .flex .box .img {
    height: 17rem;
    object-fit: contain;
  }
  .page-template-page-home #events .row .flex .box h3 {
    font-size: 1.5rem;
  }
  .page-template-page-home #events .row .flex .box h2 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .page-template-page-home #news {
    padding: 6rem 0 8rem 0;
  }
  .page-template-page-home #news .flex .post {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-home #news .flex .post:last-child {
    display: none;
  }
  .page-template-page-young #features .post:nth-of-type(odd) .txt {
    padding-left: 3rem;
  }
  .page-template-page-young #features .post:nth-of-type(even) .txt {
    padding-right: 3rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) {
    flex-direction: column;
    align-items: center;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt {
    order: 2;
    padding-right: 0;
    flex: auto;
    max-width: 60rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .content h3 {
    max-width: 100%;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .content p {
    max-width: 100%;
  }
  .page-template-page-young #works .row:nth-of-type(2) .img {
    order: 1;
    padding-left: 0;
    flex: auto;
    max-width: 40rem;
    margin-bottom: 6rem;
  }
  .page-template-page-snap #hero .row .content .txt {
    padding-left: 3rem;
  }
  .page-template-page-snap-results #solution .row .content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-template-page-snap-results #solution .row .content .img {
    flex: 1 0 100%;
    max-width: 40rem;
  }
  .page-template-page-snap-results #solution .row .content .txt {
    flex: 1 0 100%;
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .page-template-page-snap-results #solution .row .content .txt p {
    margin: 3rem auto;
    max-width: 64rem;
  }
  .page-template-page-trial #video .row {
    flex-direction: column;
  }
  .page-template-page-trial #video .row .vid {
    flex: auto;
    width: 100%;
    max-width: 50rem;
    margin: 0 auto 5rem auto;
    padding: 0;
    order: 1;
  }
  .page-template-page-trial #video .row .txt {
    flex: auto;
    max-width: 100%;
    padding: 0;
    order: 2;
  }
  .page-template-page-trial #more .row .img {
    padding: 0 2.5rem 0 0;
  }
  .page-template-page-trial #more .row .txt {
    padding: 0 0 0 2.5rem;
  }
  .page-template-page-about #story .row h3 {
    font-size: 1.8rem;
    line-height: 4.8rem;
  }
  .page-template-page-about #story .row h2 {
    font-size: 3rem;
    line-height: 5rem;
  }
  .page-template-page-about #story .row .flex {
    padding-top: 6rem;
  }
  .page-template-page-about #story .row .flex .right {
    padding: 13rem 0 7rem 6rem;
  }
  .page-template-page-services #optional .flex .post {
    flex: 1 0 100%;
    max-width: 62rem;
  }
  .page-template-page-services #nav .row a {
    padding: 7rem 3rem 2rem 3rem;
    font-size: 2.2rem;
  }
  .page-template-page-services #plans .row h2 {
    font-size: 2.6rem;
    line-height: 4.4rem;
    max-width: 61rem;
  }
  .page-template-page-services #plans .row .flex {
    flex-direction: column;
    margin: 0 auto;
  }
  .page-template-page-services #plans .row .flex .container {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 3rem 0;
  }
  .page-template-page-services #plans .row .flex .container .content {
    padding: 3.5rem 4rem 10rem 4rem;
    border-radius: 1.3rem;
  }
  .page-template-page-services #plans .row .flex .container .content p {
    max-width: 68rem;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .page-template-page-services #plans .row .flex .container .content ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 2.5rem 4rem 2.5rem;
  }
  .page-template-page-services #plans .row .flex .container .content ul li {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0 4rem;
  }
  .page-template-page-services #plans .row .flex .container .content a {
    bottom: 4.5rem;
  }
  .page-template-page-services #features .row .flex .item {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-services #features .row .flex .item:nth-of-type(3) {
    flex: 1 0 50%;
    max-width: 50%;
    display: none;
  }
  .page-template-page-services #features .row .flex .item:nth-of-type(3) img {
    position: static;
    width: 100%;
    height: auto;
  }
  .page-template-page-services #features .row .flex .item:nth-of-type(5) {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-services #features .row .flex .item:nth-of-type(5) .content {
    width: 100%;
  }
  .page-template-page-services #onboard .row .flex .left {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-services #onboard .row .flex .right {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-services #onboard .row .flex .right .container {
    flex-wrap: wrap;
    margin-left: 0;
  }
  .page-template-page-services #onboard .row .flex .right .container .item {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-services #additional .row h2 {
    margin-left: 0;
    padding-left: 0;
  }
  .page-template-page-services #additional .row .container .item:nth-of-type(1) {
    display: none;
  }
  .page-template-page-services #additional .row .container .item {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-contact #hero .row {
    flex-direction: column;
  }
  .page-template-page-contact #hero .row .txt {
    flex: auto;
    padding-right: 0;
    margin: 0 0 4rem 0;
  }
  .page-template-page-contact #hero .row .contact .content ul li {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .single-news #other .flex .post {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .single-news #other .flex .post:last-child {
    display: none;
  }
  .single-post #other .flex .post {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .single-post #other .flex .post:last-child {
    display: none;
  }
  .page-template-page-webinars #hero .row .content {
    padding: 5rem 3rem;
  }
  .page-template-page-webinars #hero .row img {
    width: 28rem;
    bottom: -9rem;
  }
  .page-template-page-webinars #hero .row .txt h1 {
    font-size: 1.8rem;
  }
  .page-template-page-webinars #hero .row .txt p {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
  .single-webinar #hero .row .txt h1 {
    font-size: 2.8rem;
    line-height: 4rem;
  }
  .single-webinar #hero .row .content {
    padding: 5rem 3rem;
    background-position: right -30rem center;
  }
  .page-template-page-b2b #hero {
    background-position: center right -15rem;
  }
  .page-template-page-b2b #hero .row .txt h1 {
    font-size: 4rem;
    line-height: 4.5rem;
    max-width: 40rem;
  }
  .page-template-page-b2b #assets .row .left .group .flex .post {
    padding-right: 4rem;
  }
  .page-template-page-b2b #tech .row .flex .left {
    flex: 1 0 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
  .page-template-page-b2b #tech .row .flex .left .post {
    flex: 1 0 33.33%;
    max-width: 33.33%;
  }
  .page-template-page-b2b #tech .row .flex .left .post:nth-of-type(1) {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-b2b #tech .row .flex .left .post:nth-of-type(2) {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-b2b #tech .row .flex .left .post:nth-of-type(4) {
    flex: 1 0 33.33%;
    max-width: 33.33%;
  }
  .page-template-page-b2b #tech .row .flex .left .post:nth-of-type(4) .txt {
    max-width: 100%;
  }
  .page-template-page-b2b #tech .row .flex .right {
    left: 30rem;
  }
  .page-template-page-b2b #census .row .flex .post {
    flex: 1 0 50%;
    max-width: 29rem;
    margin: 2rem 2rem ;
  }
  .page-template-page-b2b #census .row .flex .post .txt {
    padding: 3.5rem 2rem;
  }
  .page-template-page-b2b #census .row .flex .post .txt h2 {
    font-size: 3.6rem;
    line-height: 4.1rem;
  }
  .page-template-page-older-demographic #hero .row .bg {
    background-position: center right -23rem;
    height: 53rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text {
    justify-content: center;
  }
  .page-template-page-older-demographic #hero .row .bg .text h1 {
    font-size: 5.4rem;
    line-height: 5.6rem;
    max-width: 51rem;
    margin: 5rem auto 2rem auto;
    max-width: 38rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text p {
    font-size: 2.4rem;
    line-height: 3.2rem;
    max-width: 40rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text p + p {
    margin: 3rem auto ;
  }
  .page-template-page-older-demographic #hero .row .bg .text ul {
    margin: 4rem auto 0 auto;
  }
  .page-template-page-older-demographic #plan .row .flex {
    flex-direction: column;
  }
  .page-template-page-older-demographic #plan .row .flex .text {
    flex: auto;
    max-width: 60rem;
    padding: 9rem 7rem 9rem 7rem;
  }
  .page-template-page-older-demographic #plan .row .flex .video {
    flex: auto;
    max-width: 60rem;
    width: 100%;
    align-self: flex-end;
    margin-top: -5rem;
  }
  .page-template-page-older-demographic #plan .row .flex .video a {
    padding-left: 0;
    margin-left: 0;
  }
  .page-template-page-older-demographic #next .row h2 {
    font-size: 3rem;
    line-height: 4.7rem;
    max-width: 61rem;
  }
  .page-template-page-older-demographic #next .row .container .post {
    flex-direction: column;
  }
  .page-template-page-older-demographic #next .row .container .post .pic {
    flex: 1 0 80%;
    max-width: 80%;
    order: 1;
    margin-bottom: 3rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt {
    flex: 1 0 100%;
    max-width: 100%;
    order: 2;
  }
  .page-template-page-older-demographic #next .row .container .post:nth-of-type(odd) .txt {
    padding: 0;
  }
  .page-template-page-older-demographic #next .row .container .post:nth-of-type(even) .txt {
    padding: 0;
  }
  .page-template-page-older-demographic #process .row .text h2 {
    font-size: 3rem;
    line-height: 4.5rem;
    max-width: 70rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex {
    height: 50rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex .right p {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
}
@media only screen and (max-width: 850px) {
  .page-template-page-videomarketing #hero .row .flex {
    padding: 9rem 0;
  }
  .page-template-page-videomarketing #hero .row .flex .left {
    padding: 0 5rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left h1 {
    font-size: 5.5rem;
    line-height: 5rem;
    max-width: 44rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left p {
    font-size: 2rem;
    line-height: 3rem;
    max-width: 40rem;
  }
  .page-template-page-videomarketing #hero .row .flex .right .play {
    width: 10rem;
    height: 10rem;
    background-size: 3.2rem;
    background-position: center left 3.8rem;
  }
  .page-template-page-videomarketing #lead {
    padding: 10.5rem 0 18rem 0;
  }
  .page-template-page-videomarketing #lead .row h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
    max-width: 58rem;
  }
  .page-template-page-videomarketing #lead .row .flex .box h3 {
    font-size: 5rem;
    line-height: 4rem;
  }
  .page-template-page-videomarketing #lead .row .flex .box p {
    font-size: 1.7rem;
    line-height: 2.4rem;
  }
  .page-template-page-videomarketing #solutions .row h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
    max-width: 38rem;
  }
  .page-template-page-videomarketing #solutions .row .flex .box p {
    max-width: 21rem;
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  .page-template-page-videomarketing #assets {
    padding-top: 21rem;
    margin-top: -7rem;
  }
  .page-template-page-videomarketing #assets .row .flex {
    flex-wrap: wrap;
  }
  .page-template-page-videomarketing #assets .row .flex .txt {
    flex: 1 0 50%;
    max-width: 50%;
    margin: -5rem 0 0 3rem;
    padding-top: 0;
  }
  .page-template-page-videomarketing #assets .row .flex .txt h2 {
    font-size: 2rem;
    line-height: 2.8rem;
    max-width: 100%;
  }
  .page-template-page-videomarketing #assets .row .flex .txt ul li {
    font-size: 1.7rem;
    line-height: 2.2rem;
    background-size: 2.3rem;
    max-width: 100%;
  }
  .page-template-page-videomarketing #assets .row .flex .pic {
    flex: 1 0 50%;
    max-width: 50%;
    margin: 0 -2rem 0 -2rem;
  }
  .page-template-page-videomarketing #assets .row .flex .pic img.mob {
    display: block;
  }
  .page-template-page-videomarketing #assets .row .flex .pic img.des {
    display: none;
  }
  .page-template-page-home #plan {
    padding-bottom: 10rem;
  }
  .page-template-page-home #plan .row {
    flex-direction: column;
  }
  .page-template-page-home #plan .row .text {
    order: 1;
    flex: auto;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .page-template-page-home #plan .row .text h2 {
    max-width: 56.4rem;
  }
  .page-template-page-home #plan .row .text p {
    max-width: 66.4rem;
  }
  .page-template-page-home #plan .row .video {
    order: 2;
    flex: auto;
    max-width: 100%;
    margin: 5rem auto;
    width: 100%;
  }
  .page-template-page-home #tiers .row p {
    font-size: 2rem;
    line-height: 3.4rem;
  }
  .page-template-page-home #tiers .row .table table thead tr th {
    padding: 1.2rem 2rem;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
  .page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
    width: 16rem;
    font-size: 1.2rem;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) strong,
  .page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) strong {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(2) th {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(2) th strong {
    font-size: 4.2rem;
    line-height: 4.4rem;
    margin-bottom: 0.6rem;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(2) th strong small {
    font-size: 1.4rem;
  }
  .page-template-page-home #tiers .row .table table tbody tr td {
    padding: 1.2rem 2rem;
  }
  .page-template-page-home #tiers .row .table table tbody tr:last-of-type td {
    padding: 3rem 2rem;
  }
  .page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2),
  .page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) {
    padding: 3rem 1rem;
  }
  .page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2) a,
  .page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) a {
    padding: 1.1rem 2rem;
  }
  .page-template-page-home #webinars .row .flex .group {
    flex-direction: column;
  }
  .page-template-page-home #webinars .row .flex .group .img {
    display: none;
  }
  .page-template-page-home #webinars .row .flex .group .txt {
    flex: auto;
    max-width: 100%;
  }
  .page-template-page-home #webinars .row .flex .group .webinar {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-home #webinars .row .flex .group:nth-of-type(1) .txt {
    padding-left: 0;
  }
  .page-template-page-home #webinars .row .flex .group:nth-of-type(2) .txt {
    padding-right: 0;
  }
  .page-template-page-young #hero .row .content .txt {
    padding-left: 3rem;
  }
  .page-template-page-young #know .row .flex a {
    flex: 1 0 20rem;
    max-width: 20rem;
  }
  .page-template-page-young #know .row .flex a h3 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .page-template-page-young #know .row .flex a p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .page-template-page-older-demographic #hero .row .bg {
    height: 64rem;
  }
  .page-template-page-older-demographic #know .row .flex a {
    flex: 1 0 20rem;
    max-width: 20rem;
  }
  .page-template-page-older-demographic #know .row .flex a h3 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .page-template-page-older-demographic #know .row .flex a p {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .page-template-page-b2b #landscape {
    padding: 12rem 0 0 0;
  }
  .page-template-page-b2b #landscape .row .flex .right {
    display: none;
  }
  .page-template-page-b2b #landscape .row .flex .left {
    max-width: 100%;
    flex: 1 0 100%;
    padding-right: 0;
  }
  .page-template-page-b2b #landscape .row .flex .left img.mob {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 5rem;
    max-width: 50rem;
  }
  .page-template-page-b2b #landscape .row .flex .left .problems .post {
    margin-bottom: 6rem;
  }
  .page-template-page-b2b #landscape .row .flex .left .problems .post h3 {
    max-width: 100%;
  }
  .page-template-page-b2b #landscape .row .flex .left .problems .post p {
    max-width: 100%;
  }
  .page-template-page-b2b #landscape .row .flex2 {
    flex-wrap: wrap;
    margin: 0 -3.5rem;
  }
  .page-template-page-b2b #landscape .row .flex2 .post {
    max-width: 50%;
    flex: 1 0 50%;
    margin-bottom: 6rem;
  }
  .page-template-page-b2b #landscape .row .flex2 .post h3 {
    max-width: 100%;
  }
  .page-template-page-b2b #landscape .row .flex2 .post p {
    max-width: 100%;
  }
  .page-template-page-b2b #tiers .row p {
    font-size: 2rem;
    line-height: 3.4rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr th {
    padding: 1.2rem 2rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
    width: 16rem;
    font-size: 1.2rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) strong,
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) strong {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th strong {
    font-size: 4.2rem;
    line-height: 4.4rem;
    margin-bottom: 0.6rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th strong small {
    font-size: 1.4rem;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr td {
    padding: 1.2rem 2rem;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td {
    padding: 3rem 2rem;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2),
  .page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) {
    padding: 3rem 1rem;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2) a,
  .page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) a {
    padding: 1.1rem 2rem;
  }
  .page-template-page-services #tiers .row .table table thead tr th {
    padding: 1.2rem 2rem;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
  .page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
    width: 16rem;
    font-size: 1.2rem;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(2) strong,
  .page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) strong {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(2) th {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(2) th strong {
    font-size: 4.2rem;
    line-height: 4.4rem;
    margin-bottom: 0.6rem;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(2) th strong small {
    font-size: 1.4rem;
  }
  .page-template-page-services #tiers .row .table table tbody tr td {
    padding: 1.2rem 2rem;
  }
  .page-template-page-services #tiers .row .table table tbody tr:last-of-type td {
    padding: 3rem 2rem;
  }
  .page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2),
  .page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) {
    padding: 3rem 1rem;
  }
  .page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2) a,
  .page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) a {
    padding: 1.1rem 2rem;
  }
  .page-template-page-webinars #webinars .webinars .flex .webinar {
    flex: 1 0 100%;
    max-width: 30rem;
  }
  .page-template-page-about #mission .row h2 {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-top: 2rem;
  }
  .page-template-page-about #mission .row .flex .box {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0 10rem 2rem 3rem;
  }
  .page-template-page-about #mission .row .flex .box hr {
    height: 14rem;
  }
  .page-template-page-blog #blog .row .blog .posts .alm-reveal .post {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-news #blog .row .blog .posts .alm-reveal .post {
    flex: 1 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 800px) {
  .page-template-page-videomarketing #hero .row .flex {
    padding: 7rem 0 ;
    flex-direction: column;
    margin: 0;
  }
  .page-template-page-videomarketing #hero .row .flex .left {
    padding: 0 0;
    flex: 1;
  }
  .page-template-page-videomarketing #hero .row .flex .left h1 {
    font-size: 5.5rem;
    line-height: 5rem;
    max-width: 44rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left p {
    font-size: 2rem;
    line-height: 3rem;
    max-width: 40rem;
  }
  .page-template-page-videomarketing #hero .row .flex .right {
    position: static;
    margin: 4rem auto 0 auto;
    width: 100%;
    padding: 0;
  }
  .page-template-page-videomarketing #hero .row .flex .right a {
    width: 100%;
    max-width: 36rem;
    height: 20rem;
    margin: 0 auto;
  }
  .page-template-page-home #getstarted .row {
    flex-direction: column;
  }
  .page-template-page-home #getstarted .row .text {
    flex: 1 0 100%;
    max-width: 100%;
    margin: 0;
  }
  .page-template-page-home #getstarted .row .text p {
    max-width: 54rem;
  }
  .page-template-page-home #getstarted .row .text h3 {
    max-width: 54rem;
    margin-bottom: 4rem;
  }
  .page-template-page-home #getstarted .row .photo {
    flex: 1 0 100%;
    max-width: 100%;
    margin: 5rem auto 0 auto;
  }
  .page-template-page-home #getstarted .row .photo img {
    right: 0;
    width: 100%;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
    font-size: 2.3rem;
    line-height: 3.6rem;
    padding-left: 1.5rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex {
    margin-top: -16rem;
    padding-left: 0;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post {
    padding: 2.5rem 1.5rem 1.5rem 3rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) p {
    font-size: 2.3rem;
    line-height: 3.6rem;
  }
  .page-template-page-home #howitworks .row .lead h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .page-template-page-home #howitworks .row .flex .container {
    flex-direction: column;
  }
  .page-template-page-home #howitworks .row .flex .container .img {
    width: 9.4rem;
    height: 9.4rem;
    flex: 1 0 9.4rem;
  }
  .page-template-page-home #howitworks .row .flex .container .text {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-home #partners {
    padding: 10rem 0;
  }
  .page-template-page-home #partners .row .text h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .page-template-page-home #partners .row .text p {
    margin: 2.5rem 0 1rem 0;
  }
  .page-template-page-home #events .row .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-template-page-home #events .row .flex .box {
    flex: 1 0 50% ;
    max-width: 50%;
    margin: 0 0 4rem 0;
  }
  .page-template-page-home #events .row .flex .box .img {
    height: 22rem;
  }
  .page-template-page-young #more p:first-of-type {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
  .page-template-page-young #more p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .page-template-page-young #everything p:first-of-type {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
  .page-template-page-young #everything p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .page-template-page-young #works .row:nth-of-type(1) p:first-of-type {
    font-size: 2.8rem;
    line-height: 3.8rem;
    margin: 3rem auto;
    max-width: 54rem;
  }
  .page-template-page-trial #more .row {
    flex-direction: column;
  }
  .page-template-page-trial #more .row .img {
    flex: auto;
    width: 100%;
    max-width: 50rem;
    margin: 0 auto 5rem auto;
    padding: 0;
    order: 1;
  }
  .page-template-page-trial #more .row .txt {
    flex: auto;
    max-width: 100%;
    padding: 0;
    order: 2;
  }
  .page-template-page-about #assets .row .content .left p {
    font-size: 1.9rem;
    line-height: 3.4rem;
  }
  .page-template-page-about #alternative {
    padding: 5rem 0;
  }
  .page-template-page-about #alternative .row .text {
    padding-top: 0;
  }
  .page-template-page-about #alternative .row .text h3 {
    font-size: 2.5rem;
    line-height: 3.6rem;
  }
  .page-template-page-about #alternative .row .text p {
    max-width: 58rem;
  }
  .page-template-page-services #hero .row .content {
    background-position: right -30rem center;
  }
  .page-template-page-services #hero .row .text h2 {
    font-size: 4rem;
    line-height: 5.4rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row {
    flex-wrap: wrap;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row .animation {
    flex: 1 0 100%;
    padding: 0 4rem 0 10.5rem;
    margin-top: 4rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row {
    flex-wrap: wrap;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    order: 1;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt h2 {
    margin-top: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt p {
    text-align: right;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .ico {
    order: 2;
    margin-top: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .animation {
    order: 3;
    flex: 1 0 100%;
    padding: 0 10.5rem 0 4rem;
    margin-top: 4rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row {
    flex-wrap: wrap;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .txt h2 {
    margin-top: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .ico {
    margin-top: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .animation {
    flex: 1 0 100%;
    padding: 0 4rem 0 10.5rem;
    margin-top: 4rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .hr {
    height: 11rem;
  }
  .page-template-page-services #plans .row h2 {
    font-size: 2.0rem;
    line-height: 3.8rem;
  }
  .page-template-page-services #plans .row p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .page-template-page-services #faq .flex .left,
  .page-template-page-services #faq .flex .right {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-about #hero .row .content {
    background-position: right -24rem center;
  }
  .page-template-page-about #hero .row .text h2 {
    font-size: 4rem;
    line-height: 5.4rem;
  }
  .page-template-page-snap-results #details .flex {
    display: block;
  }
  .page-template-page-snap-results #details .flex .col {
    max-width: 100%;
  }
  .page-template-page-snap-results #details .flex .col:nth-of-type(1) {
    border-right: none;
    padding-right: 0;
  }
  .page-template-page-snap-results #details .flex .col:nth-of-type(1) .post:last-of-type {
    padding-bottom: 3rem;
    border-bottom: 1px solid #ddd;
  }
  .page-template-page-snap-results #details .flex .col:nth-of-type(2) {
    padding-left: 0;
  }
  .page-template-page-snap-results #details .flex .col:nth-of-type(2) .post:first-of-type {
    margin-top: 5rem;
  }
  .page-template-page-webinars #hero .row .content {
    display: flex;
    flex-direction: column;
    background-position: right -38rem center;
    padding: 2rem 3rem 5rem 3rem;
  }
  .page-template-page-webinars #hero .row .txt {
    flex: auto;
    max-width: 100%;
    order: 2;
  }
  .page-template-page-webinars #hero .row img {
    order: 1;
    position: static;
    width: 17rem;
    display: none;
  }
  .single-webinar #hero .row .txt {
    max-width: 100%;
  }
  .single-webinar #webinar .row {
    flex-direction: column;
  }
  .single-webinar #webinar .txt {
    padding-right: 0;
  }
  .single-webinar #webinar .txt p {
    max-width: 100%;
  }
  .single-webinar #webinar .txt ul,
  .single-webinar #webinar .txt ol {
    max-width: 100%;
  }
  .single-webinar #webinar .aside {
    margin-top: 10rem;
    flex: auto;
    max-width: 100%;
  }
  .single-webinar #webinar .aside .form {
    margin: 0 -2.5rem 8rem -2.5rem;
  }
  .single-webinar #webinar .aside .form form {
    margin: 0;
  }
  .page-template-page-partners #hero .row h1 {
    font-size: 4rem;
    line-height: 5.4rem;
  }
  .page-template-page-partners #partners .row #results .partner header h2 {
    font-size: 3rem;
    line-height: 3.5rem;
    padding-bottom: 3rem;
  }
  .page-template-page-b2b #assets {
    padding: 10rem 0 4rem 0;
  }
  .page-template-page-b2b #assets .row {
    flex-direction: column;
  }
  .page-template-page-b2b #assets .row .left {
    flex: auto;
    max-width: 100%;
    order: 2;
  }
  .page-template-page-b2b #assets .row .left .group .flex {
    margin: 4rem -2rem 6rem -2rem;
  }
  .page-template-page-b2b #assets .row .left .group .flex .post {
    padding: 0 2rem;
  }
  .page-template-page-b2b #assets .row .right {
    flex: auto;
    max-width: 100%;
    order: 1;
    margin: 0 0 2rem 0;
    max-width: 40rem;
  }
  .page-template-page-b2b #assets .row .right img {
    margin-left: -3rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex {
    flex-direction: column;
    height: auto;
  }
  .page-template-page-older-demographic #testimonial .row .flex .left {
    flex: auto;
    max-width: 100%;
    margin-left: 0;
    background-position: center top 10rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex .right {
    flex: auto;
    max-width: 100%;
    margin-right: 0;
    justify-content: flex-start;
    padding-bottom: 13rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex .right h2 {
    margin-top: 6rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex .right p {
    max-width: 75rem;
  }
  .page-template-page-older-demographic #testimonial .owl-dots {
    left: 0;
  }
}
@media only screen and (max-width: 750px) {
  .page-template-page-videomarketing #summary .row .flex {
    flex-wrap: wrap;
  }
  .page-template-page-videomarketing #summary .row .flex .txt {
    max-width: 33rem;
    flex: 1 0 100%;
  }
  .page-template-page-videomarketing #summary .row .flex .txt h2 {
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin: 4rem auto 4rem auto;
  }
  .page-template-page-videomarketing #summary .row .flex .pic {
    max-width: 100%;
    flex: 1 0 100%;
    padding-top: 4rem;
  }
  .page-template-page-partners #partners .flex .partner {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-home #slider {
    min-height: 85rem;
  }
  .page-template-page-home #slider .row .slide {
    height: 85rem;
    padding: 4rem 2rem;
    align-items: flex-end;
  }
  .page-template-page-home #slider .row .slide .bg.des {
    display: none;
  }
  .page-template-page-home #slider .row .slide .bg.mob {
    display: block;
  }
  .page-template-page-home #slider .row .slide.font60 .txt blockquote {
    font-size: 4.2rem;
    line-height: 4.9rem;
  }
  .page-template-page-home #slider .row .slide.font66 .txt blockquote {
    font-size: 4.6rem;
    line-height: 5.2rem;
  }
  .page-template-page-home #slider .row .slide.font72 .txt blockquote {
    font-size: 5.2rem;
    line-height: 5.8rem;
  }
  .page-template-page-home #slider .row .slide .txt p {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
  .page-template-page-home #slider .row .slide .txt ul {
    padding: 0;
    background: transparent;
    justify-content: center;
  }
  .page-template-page-home #slider .row .slide .txt ul li {
    flex: 1 0 19rem;
    max-width: 19rem;
  }
  .page-template-page-home #slider .row .slide .txt ul li:nth-of-type(1),
  .page-template-page-home #slider .row .slide .txt ul li:nth-of-type(2) {
    display: none;
  }
  .page-template-page-young #hero {
    height: 115rem;
  }
  .page-template-page-young #hero .row .content {
    justify-content: flex-end;
    align-items: center;
  }
  .page-template-page-young #hero .row .content .bg.des {
    display: none;
  }
  .page-template-page-young #hero .row .content .bg.mob {
    display: block;
    background-position: center top;
    border-radius: 1.4rem 1.4rem 1.4rem 10rem;
  }
  .page-template-page-young #hero .row .content .txt {
    text-align: center;
    padding: 0 2rem 4rem 2rem;
  }
  .page-template-page-young #hero .row .content .txt p:first-of-type {
    font-size: 4.6rem;
    line-height: 5.2rem;
    max-width: 46rem;
    margin: 0 auto 1.5rem auto;
  }
  .page-template-page-snap #hero {
    height: 72rem;
  }
  .page-template-page-snap #hero .row .content {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 4rem;
  }
  .page-template-page-snap #hero .row .content .bg.des {
    display: none;
  }
  .page-template-page-snap #hero .row .content .bg.mob {
    display: block;
  }
  .page-template-page-snap #hero .row .content .txt {
    padding: 0 2rem;
  }
  .page-template-page-snap #hero .row .content .txt h2 {
    color: #fff;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .page-template-page-snap #hero .row .content .txt p {
    color: #fff;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .page-template-page-snap #hero .row .content .txt a {
    margin: 0 1rem;
  }
  .page-template-page-snap #form .nf-response-msg p {
    font-family: 'Merriweather', serif;
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
  .page-template-page-snap #form .label-left .field-wrap {
    display: block;
  }
  .page-template-page-snap #form .label-left .nf-field-label {
    width: 100%;
    padding-right: 0;
    margin: 0 0 1.5rem 0;
  }
  .page-template-page-snap #form .label-left .nf-field-element {
    width: 100%;
  }
  .page-template-page-snap #form .label-left .nf-after-field {
    margin-left: 0;
  }
  .page-template-page-snap #form .nf-form-cont .nf-after-form-content .nf-error-msg {
    padding-left: 0;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li {
    margin: 0 4rem 0 0 !important;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container {
    margin: 0 0 5rem 0;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous {
    justify-content: flex-start;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-previous-item {
    flex: none;
    margin: 0 2rem 0 0 !important;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-previous-item input {
    background: #eef2f5;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E395A;
    padding: 1.7rem 4.5rem 1.7rem 4.5rem;
    line-height: 2rem;
    border-radius: 0.5rem;
    transition: all .3s;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-previous-item input:hover {
    background: #cbced0;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-next-item {
    flex: none;
    justify-content: flex-start;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-footer .nf-next-previous .nf-next-item input {
    padding: 1.7rem 7rem 1.7rem 2rem;
  }
  .page-template-page-b2b #hero .content {
    padding: 5rem 2rem;
  }
  .page-template-page-b2b #hero .content .row {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }
  .page-template-page-b2b #hero .content .row .txt {
    text-align: center;
  }
  .page-template-page-b2b #hero .content .row .txt h1 {
    max-width: 60rem;
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .page-template-page-b2b #hero .content .row .txt a {
    display: inline-block;
  }
  .page-template-page-b2b #hero .content .bg.des {
    display: none;
  }
  .page-template-page-b2b #hero .content .bg.mob {
    display: block;
  }
  .page-template-page-b2b #movie .row .rectangle {
    height: 40rem;
  }
  .page-template-page-older-demographic #hero {
    height: 80rem;
  }
  .page-template-page-older-demographic #hero .row .bg {
    background-position: center right -23rem;
    height: 100%;
  }
  .page-template-page-older-demographic #hero .row .bg .backg.des {
    display: none;
  }
  .page-template-page-older-demographic #hero .row .bg .backg.mob {
    display: block;
  }
  .page-template-page-older-demographic #hero .row .bg .text {
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 4rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text h1 {
    font-size: 4.2rem;
    line-height: 4.2rem;
    margin: -4rem auto 2rem auto;
    max-width: 30rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text p {
    font-size: 2.2rem;
    line-height: 3rem;
    max-width: 36rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text p + p {
    margin: 3rem auto ;
  }
  .page-template-page-older-demographic #hero .row .bg .text ul {
    margin: 3rem auto 4rem auto;
  }
  .page-template-page-older-demographic #next .row h2 {
    font-size: 2.6rem;
    line-height: 4.3rem;
    max-width: 51rem;
  }
  .page-template-page-older-demographic #process .row .text h2 {
    font-size: 2.6rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 700px) {
  .page-template-page-videomarketing #lead {
    padding: 10rem 0 18rem 0;
  }
  .page-template-page-videomarketing #lead .row .flex {
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-template-page-videomarketing #lead .row .flex .box {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0 2rem 6rem 2rem;
  }
  .page-template-page-videomarketing #lead .row .flex .box:nth-of-type(2):after {
    display: none;
  }
  .page-template-page-videomarketing #solutions .row .flex {
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-template-page-videomarketing #solutions .row .flex .box {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0 2rem 6rem 2rem;
  }
  .page-template-page-videomarketing #solutions .row .flex .box:nth-of-type(2):after {
    display: none;
  }
  .page-template-page-videomarketing #solutions .row .flex .box:nth-of-type(3) {
    padding-bottom: 0;
  }
  .page-template-page-videomarketing #assets {
    padding-top: 28rem;
    margin-top: -18rem;
  }
  .page-template-page-videomarketing #assets .row .flex {
    flex-wrap: wrap;
  }
  .page-template-page-videomarketing #assets .row .flex .txt {
    flex: 1 0 100%;
    max-width: 100%;
    margin: 0;
  }
  .page-template-page-videomarketing #assets .row .flex .txt h2 {
    font-size: 2rem;
    line-height: 2.8rem;
    max-width: 100%;
  }
  .page-template-page-videomarketing #assets .row .flex .txt ul li {
    font-size: 1.7rem;
    line-height: 2.2rem;
    background-size: 2.3rem;
    max-width: 100%;
  }
  .page-template-page-videomarketing #assets .row .flex .pic {
    flex: 1 0 100%;
    max-width: 100%;
    margin: 0 -2rem;
  }
  .page-template-page-videomarketing #assets .row .flex .pic img.des {
    display: block;
  }
  .page-template-page-videomarketing #assets .row .flex .pic img.mob {
    display: none;
  }
  .page-template-page-videomarketing #summary {
    margin: -16rem 0 0 0;
  }
  .page-template-page-home #hero .row .right {
    flex-direction: column;
    margin-left: -1rem;
  }
  .page-template-page-home #hero .row .right .container {
    flex: auto;
    max-width: 100%;
    margin: 0 0 2rem 0;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
    font-size: 2rem;
    line-height: 3.1rem;
    padding-left: 2.5rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex {
    margin-top: -10rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 2.5rem 2rem 2rem 0;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) p {
    margin-top: 7rem;
    font-size: 2rem;
    line-height: 3.1rem;
  }
  .page-template-page-home #testimonial .slide .row {
    padding: 8rem 3rem 8rem 3rem;
  }
  .page-template-page-home .html5-image .ebook {
    padding: 5rem 0 0 0;
  }
  .page-template-page-home .html5-image .ebook .content {
    flex-direction: column;
  }
  .page-template-page-home .html5-image .ebook .content .txt {
    flex: auto;
    max-width: 100%;
    padding: 4rem;
  }
  .page-template-page-home .html5-image .ebook .content .txt img {
    width: 60%;
  }
  .page-template-page-home .html5-image .ebook .content .form {
    flex: auto;
    max-width: 100%;
  }
  .page-template-page-home .html5-image .ebook .content .form .nf-form-cont {
    margin: 0;
  }
  .page-template-page-young #features .post {
    display: block;
  }
  .page-template-page-young #features .post:nth-of-type(odd),
  .page-template-page-young #features .post:nth-of-type(even) {
    margin-bottom: 8rem;
  }
  .page-template-page-young #features .post:nth-of-type(odd) .img,
  .page-template-page-young #features .post:nth-of-type(even) .img {
    order: 1;
    flex: auto;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    padding: 0;
  }
  .page-template-page-young #features .post:nth-of-type(odd) .img img,
  .page-template-page-young #features .post:nth-of-type(even) .img img {
    width: 90%;
  }
  .page-template-page-young #features .post:nth-of-type(odd) .txt,
  .page-template-page-young #features .post:nth-of-type(even) .txt {
    order: 2;
    flex: auto;
    max-width: 100%;
    padding: 0;
  }
  .page-template-page-young #features .post:nth-of-type(odd) .txt p,
  .page-template-page-young #features .post:nth-of-type(even) .txt p {
    max-width: 100%;
  }
  .page-template-page-trial #hero .row .txt p:nth-of-type(1) {
    font-size: 3rem;
    line-height: 4rem;
  }
  .page-template-page-about #assets .row .content {
    flex-direction: column;
  }
  .page-template-page-about #assets .row .content .left {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .page-template-page-about #assets .row .content .left p {
    max-width: 48rem;
  }
  .page-template-page-about #assets .row .content .right {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 4rem 0 0 0;
  }
  .page-template-page-about #assets .row .content hr {
    display: none;
  }
  .page-template-page-about #story .row .flex {
    flex-direction: column;
  }
  .page-template-page-about #story .row .flex .right {
    flex: auto;
    max-width: 100%;
    padding: 0 0 10rem 0;
  }
  .page-template-page-about #story .row .flex .left {
    flex: auto;
    max-width: 100%;
    margin-bottom: 6rem;
  }
  .page-template-page-about #story .row .flex .left img {
    position: static;
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 40rem;
  }
  .page-template-page-about #mission .row h2 {
    font-size: 2.6rem;
    line-height: 3.1rem;
    max-width: 48rem;
  }
  .page-template-page-about #mission .row .flex .box {
    padding: 0 7rem 2rem 3rem;
  }
  .page-template-page-about #mission .row .flex .box hr {
    top: 4rem;
  }
  .page-template-page-services #nav .row .content {
    border-radius: 2rem;
  }
  .page-template-page-services #nav .row a {
    padding: 6rem 2rem 1rem 2rem;
    font-size: 1.8rem;
  }
  .page-template-page-services #nav .row a .ico {
    width: 3.5rem;
    padding-right: 1.5rem;
  }
  .page-template-page-services #nav .row a .ico img {
    width: 100%;
    height: auto;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row .hr {
    left: 5.4rem;
    right: 8rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .hr {
    right: 5.7rem;
    left: 8rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .hr {
    left: 5.4rem;
  }
  .page-template-page-services #plans .row .flex {
    margin: 0 auto;
  }
  .page-template-page-services #plans .row .flex .container {
    padding: 1.5rem 0;
  }
  .page-template-page-services #plans .row .flex .container .content {
    padding: 3.5rem 2rem 10rem 2rem;
  }
  .page-template-page-services #plans .row .flex .container .content ul {
    padding: 1rem 1.5rem 3rem 1.5rem;
  }
  .page-template-page-services #plans .row .flex .container .content ul li {
    padding: 0 2rem 0 3.5rem;
  }
  .page-template-page-services #testimonial .slide .row {
    padding: 8rem 3rem 8rem 3rem;
  }
  .page-template-page-snap-results #questions h2 {
    font-size: 3rem;
    line-height: 4.0rem;
  }
  .page-template-page-snap-results #questions p {
    font-size: 2rem;
    line-height: 3rem;
  }
  .page-template-page-contact #hero .row .txt h1 {
    font-size: 1.6rem;
  }
  .page-template-page-contact #hero .row .txt p {
    font-size: 3.0rem;
    line-height: 4.6rem;
    max-width: 50rem;
  }
  .page-template-page-contact #hero .row .txt .nf-form-cont .nf-response-msg p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .page-template-page-news #hero p {
    font-size: 2rem;
    line-height: 3.4rem;
  }
  .page-template-page-blog #hero p {
    font-size: 2rem;
    line-height: 3.4rem;
  }
  .single-post #post .row .content {
    padding-left: 7rem;
  }
  .single-post #post .row .content aside .fixed {
    margin-left: -7rem;
  }
  .single-post #post .row .content aside .fixedBottom {
    margin-left: -7rem;
  }
  .single-news #post .row .content {
    padding-left: 7rem;
  }
  .single-news #post .row .content aside .fixed {
    margin-left: -7rem;
  }
  .single-news #post .row .content aside .fixedBottom {
    margin-left: -7rem;
  }
  .page-template-page-webinars #webinars .row {
    flex-direction: column;
  }
  .page-template-page-webinars #webinars .aside {
    margin-top: 10rem;
    flex: auto;
    max-width: 100%;
  }
  .page-template-page-b2b #census .row .flex .post {
    flex: 1 0 50%;
    max-width: 27rem;
    margin: 1rem 1rem ;
  }
  .page-template-page-b2b #census .row .flex .post .txt {
    padding: 3rem 1.5rem;
  }
  .page-template-page-b2b #census .row .flex .post .txt h2 {
    font-size: 3.1rem;
    line-height: 3.6rem;
  }
  .page-template-page-b2b #tech .row .flex .right {
    left: 22rem;
    width: 74rem;
    height: 50rem;
  }
}
@media only screen and (max-width: 650px) {
  .page-template-page-home #hero .row .bg {
    background-position: -34rem center;
  }
  .page-template-page-home #hero .row .content {
    padding: 24rem 3rem 0 3rem;
  }
  .page-template-page-home #hero .row .content h2 + p {
    filter: drop-shadow(2px 4px 6px #000000);
  }
  .page-template-page-home #careplan {
    padding: 4rem 0 0 0;
  }
  .page-template-page-home #careplan .row .flex .post {
    flex: 1 0 100%;
    max-width: 100%;
    margin: 0 0 6rem 0;
  }
  .page-template-page-home #howitworks .row .lead h2 {
    max-width: 53rem;
  }
  .page-template-page-home #howitworks .row .flex .container {
    flex: 1 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .page-template-page-home #howitworks .row .flex .container .img {
    flex: 1 0 9.4rem;
    max-width: 9.4rem;
  }
  .page-template-page-home #howitworks .row .flex .container .text {
    flex: 1 ;
    max-width: 100%;
    padding-left: 3rem;
  }
  .page-template-page-home #howitworks .row .flex .container .text h3 {
    margin-top: 0;
  }
  .page-template-page-home #events .row h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .page-template-page-home #events .row .flex {
    flex-wrap: wrap;
    margin: 4rem -2rem 0 -2rem;
  }
  .page-template-page-home #events .row .flex .box {
    padding: 0 2rem;
  }
  .page-template-page-home #events .row .flex .box .img {
    height: 18rem;
  }
  .page-template-page-home #webinars .row .flex .group .webinar {
    flex: 1 0 100%;
    max-width: 34rem;
  }
  .page-template-page-home #news h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .page-template-page-young #quotes .flex {
    flex-wrap: wrap;
  }
  .page-template-page-young #quotes .flex .post {
    flex: 1 0 100%;
    max-width: 100%;
    margin: 2rem 0;
  }
  .page-template-page-young #quotes .flex .post:nth-of-type(3) {
    display: block;
  }
  .page-template-page-young #know .row .flex {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 30rem;
  }
  .page-template-page-older-demographic #know .row .flex {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 30rem;
  }
  .page-template-page-partners #partners .row #results .partner .people {
    margin: 0;
  }
  .page-template-page-partners #partners .row #results .partner .people .person {
    padding: 0 2rem 4rem 2rem;
  }
  .page-template-page-snap-results #hero .row .result {
    flex: 1 0 100%;
    flex-direction: column;
    align-items: center;
  }
  .page-template-page-snap-results #hero .row .result #chart {
    flex: auto;
    max-width: 31rem;
  }
  .page-template-page-snap-results #hero .row .result .details {
    padding-left: 0;
    margin-top: 4rem;
    flex: auto;
    max-width: 100%;
  }
  .page-template-page-snap-results #solution .row .content .txt p {
    font-size: 2.6rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 600px) {
  .page-template-page-home #plan {
    padding: 15rem 0 6rem 0;
  }
  .page-template-page-home #plan .row .text h2 {
    font-size: 2rem;
    line-height: 3rem;
    max-width: 45rem;
  }
  .page-template-page-home #plan .row .video {
    height: 28rem;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .img {
    display: none;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text {
    order: 1;
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-home #solution .row:nth-of-type(1) .flex .text p {
    padding-left: 0;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex {
    margin: 2rem -2rem 0;
    justify-content: flex-start;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(1) {
    display: none;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post {
    padding: 2.5rem 2rem 2rem 2rem;
  }
  .page-template-page-home #testimonial .slide .row .text p {
    font-size: 2rem;
    line-height: 3rem;
  }
  .page-template-page-home #webinars .row h2 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .page-template-page-home #webinars .row .flex .group .webinar {
    flex: auto;
    max-width: 30rem;
    width: 100%;
    padding: 1rem 0;
  }
  .page-template-page-home #tiers .row .table table thead tr {
    display: flex;
  }
  .page-template-page-home #tiers .row .table table thead tr th {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(1) {
    display: none;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
  .page-template-page-home #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
    width: 50%;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(2) th:nth-child(1) {
    background: #fff;
    position: relative;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(2) th:nth-child(1):after {
    content: '';
    width: 1px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 2.5rem;
    bottom: 2.5rem;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(2) th:nth-child(2) {
    background: #fff;
  }
  .page-template-page-home #tiers .row .table table tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
  .page-template-page-home #tiers .row .table table tbody tr td {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-home #tiers .row .table table tbody tr td:nth-of-type(1) {
    flex: 1 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .page-template-page-home #tiers .row .table table tbody tr td:nth-of-type(1) h3 a {
    display: block;
  }
  .page-template-page-home #tiers .row .table table tbody tr td:nth-of-type(2) {
    position: relative;
  }
  .page-template-page-home #tiers .row .table table tbody tr td:nth-of-type(2):after {
    content: '';
    width: 1px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 1rem;
    bottom: 1rem;
  }
  .page-template-page-home #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(1) {
    background: #f9f6f6;
    color: #2E395A;
    font-weight: 700;
  }
  .page-template-page-home #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(2) {
    background: #f9f6f6;
  }
  .page-template-page-home #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(3) {
    background: #f9f6f6;
  }
  .page-template-page-home #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(1) {
    background: #fff;
    color: #2E395A;
    font-weight: 700;
  }
  .page-template-page-home #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(2) {
    background: #fff;
  }
  .page-template-page-home #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(3) {
    background: #fff;
  }
  .page-template-page-home #tiers .row .table table tbody tr:last-child td:nth-child(1) {
    display: none;
  }
  .page-template-page-home #tiers .row .table table tbody tr:last-child td:nth-child(2):after {
    display: none;
  }
  .page-template-page-home #tiers .row .table table tfoot {
    display: block;
  }
  .page-template-page-home #tiers .row .table table tfoot tr {
    display: flex;
    flex-wrap: wrap;
  }
  .page-template-page-home #tiers .row .table table tfoot tr td {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-b2b #movie .row .rectangle {
    height: 30rem;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt {
    padding-right: 3rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt {
    padding-left: 3rem;
  }
  .page-template-page-b2b #landscape .row .flex .left .title {
    font-size: 3.8rem;
    line-height: 5rem;
  }
  .page-template-page-b2b #tech {
    padding-top: 3rem;
  }
  .page-template-page-b2b #tech .row h2 {
    font-size: 3.8rem;
    line-height: 5.2rem;
  }
  .page-template-page-b2b #tech .row img.mob {
    display: block;
    width: auto;
    height: 43rem;
    margin: 0 0 -6rem 0;
    position: relative;
    right: -10rem;
  }
  .page-template-page-b2b #tech .row .flex {
    flex-direction: column;
  }
  .page-template-page-b2b #tech .row .flex .right {
    display: none;
  }
  .page-template-page-b2b #tech .row .flex .left {
    order: 2;
    margin: 0 -2rem;
    max-width: 200%;
  }
  .page-template-page-b2b #tech .row .flex .left .post {
    flex: 1 0 50% !important;
    max-width: 50% !important;
    padding: 0 2rem;
    margin: 0 0 6rem 0;
  }
  .page-template-page-b2b #tech .row .flex .left .post .txt {
    max-width: 100% !important;
  }
  .page-template-page-b2b #tech .row .flex .left .post .txt p {
    max-width: 100%;
  }
  .page-template-page-b2b #tiers .row .table table thead tr {
    display: flex;
  }
  .page-template-page-b2b #tiers .row .table table thead tr th {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(1) {
    display: none;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
    width: 50%;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th:nth-child(1) {
    background: #fff;
    position: relative;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th:nth-child(1):after {
    content: '';
    width: 1px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 2.5rem;
    bottom: 2.5rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th:nth-child(2) {
    background: #fff;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr td {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr td:nth-of-type(1) {
    flex: 1 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr td:nth-of-type(1) h3 a {
    display: block;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr td:nth-of-type(2) {
    position: relative;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr td:nth-of-type(2):after {
    content: '';
    width: 1px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 1rem;
    bottom: 1rem;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(1) {
    background: #f9f6f6;
    color: #2E395A;
    font-weight: 700;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(2) {
    background: #f9f6f6;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(3) {
    background: #f9f6f6;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(1) {
    background: #fff;
    color: #2E395A;
    font-weight: 700;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(2) {
    background: #fff;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(3) {
    background: #fff;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:last-child td:nth-child(1) {
    display: none;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:last-child td:nth-child(2):after {
    display: none;
  }
  .page-template-page-b2b #tiers .row .table table tfoot {
    display: block;
  }
  .page-template-page-b2b #tiers .row .table table tfoot tr {
    display: flex;
    flex-wrap: wrap;
  }
  .page-template-page-b2b #tiers .row .table table tfoot tr td {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-trial #hero .row .content {
    padding: 4rem 3rem;
  }
  .page-template-page-services #testimonial .slide .row .text p {
    font-size: 2rem;
    line-height: 3rem;
  }
  .page-template-page-services #optional h2 {
    font-size: 3rem;
    line-height: 4.8rem;
  }
  .page-template-page-services #tiers .row .table table thead tr {
    display: flex;
  }
  .page-template-page-services #tiers .row .table table thead tr th {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(1) {
    display: none;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(2),
  .page-template-page-services #tiers .row .table table thead tr:nth-child(1) th:nth-child(3) {
    width: 50%;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(2) th:nth-child(1) {
    background: #fff;
    position: relative;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(2) th:nth-child(1):after {
    content: '';
    width: 1px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 2.5rem;
    bottom: 2.5rem;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(2) th:nth-child(2) {
    background: #fff;
  }
  .page-template-page-services #tiers .row .table table tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
  .page-template-page-services #tiers .row .table table tbody tr td {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-services #tiers .row .table table tbody tr td:nth-of-type(1) {
    flex: 1 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .page-template-page-services #tiers .row .table table tbody tr td:nth-of-type(2) {
    position: relative;
  }
  .page-template-page-services #tiers .row .table table tbody tr td:nth-of-type(2):after {
    content: '';
    width: 1px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 1rem;
    bottom: 1rem;
  }
  .page-template-page-services #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(1) {
    background: #f9f6f6;
    color: #2E395A;
    font-weight: 700;
  }
  .page-template-page-services #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(2) {
    background: #f9f6f6;
  }
  .page-template-page-services #tiers .row .table table tbody tr:nth-of-type(odd) td:nth-child(3) {
    background: #f9f6f6;
  }
  .page-template-page-services #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(1) {
    background: #fff;
    color: #2E395A;
    font-weight: 700;
  }
  .page-template-page-services #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(2) {
    background: #fff;
  }
  .page-template-page-services #tiers .row .table table tbody tr:nth-of-type(even) td:nth-child(3) {
    background: #fff;
  }
  .page-template-page-services #tiers .row .table table tbody tr:last-child td:nth-child(1) {
    display: none;
  }
  .page-template-page-services #tiers .row .table table tbody tr:last-child td:nth-child(2):after {
    display: none;
  }
  .page-template-page-services #tiers .row .table table tfoot {
    display: block;
  }
  .page-template-page-services #tiers .row .table table tfoot tr {
    display: flex;
    flex-wrap: wrap;
  }
  .page-template-page-services #tiers .row .table table tfoot tr td {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-services #features .row h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  .page-template-page-services #features .row h2 hr {
    left: 13rem;
    bottom: 0.5rem;
  }
  .page-template-page-services #features .row .flex .item {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-services #features .row .flex .item:nth-of-type(3) {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-services #features .row .flex .item:nth-of-type(5) {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-services #onboard .row .flex {
    flex-direction: column;
  }
  .page-template-page-services #onboard .row .flex .left {
    order: 2;
    flex: 1 0 100%;
    max-width: 100%;
    display: none;
  }
  .page-template-page-services #onboard .row .flex .left .photo img {
    width: 100%;
    height: auto;
    position: static;
  }
  .page-template-page-services #onboard .row .flex .right {
    order: 1;
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-services #onboard .row .flex .right .container {
    margin-left: -1.7rem;
  }
  .page-template-page-services #onboard .row .flex .right h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
    margin-left: 0;
  }
  .page-template-page-services #onboard .row .flex .right h2 hr {
    left: 27rem;
    bottom: 0.5rem;
  }
  .page-template-page-services #additional .row h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  .page-template-page-services #additional .row h2 hr {
    left: 26rem;
    bottom: 0.5rem;
  }
  .page-template-page-services #additional .row .container .item {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-about #team .row .flex,
  .page-template-page-about #founders .row .flex {
    justify-content: center;
  }
  .page-template-page-about #team .row .flex .box,
  .page-template-page-about #founders .row .flex .box {
    flex: 1 0 100%;
    max-width: 50rem;
  }
  .page-template-page-about #team .row .lead,
  .page-template-page-about #founders .row .lead {
    font-size: 2.2rem;
    line-height: 4rem;
  }
  .page-template-page-about #directors .row h3 {
    font-size: 3.2rem;
    line-height: 4.4rem;
    margin: 2rem 0 6rem 0;
  }
  .page-template-page-about #directors .row .flex {
    justify-content: center;
  }
  .page-template-page-about #directors .row .flex .box {
    flex: 1 0 100%;
    max-width: 50rem;
  }
  .page-template-page-about #mission .row h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    margin-top: 2rem;
  }
  .page-template-page-about #mission .row .flex .box {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 10rem 0 3rem;
  }
  .page-template-page-about #mission .row .flex .box hr {
    height: 7rem;
  }
  .page-template-page-about #mission .row .flex .box h4 {
    font-size: 2.4rem;
    line-height: 3.4rem;
    max-width: 32rem;
  }
  .page-template-page-news #blog .row {
    flex-direction: column;
  }
  .page-template-page-news #blog .row .blog {
    order: 2;
  }
  .page-template-page-news #blog .row .blog .posts {
    margin: 0 -1.5rem;
  }
  .page-template-page-news #blog .row .blog .posts .alm-reveal .post {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-news #blog .row .aside {
    order: 1;
    padding: 0;
    flex: auto;
  }
  .page-template-page-news #blog .row .aside form + h2 {
    display: none;
  }
  .page-template-page-news #blog .row .aside ul {
    display: none;
  }
  .page-template-page-blog #blog .row {
    flex-direction: column;
  }
  .page-template-page-blog #blog .row .blog {
    order: 2;
  }
  .page-template-page-blog #blog .row .blog .posts {
    margin: 0 -1.5rem;
  }
  .page-template-page-blog #blog .row .blog .posts .alm-reveal .post {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-blog #blog .row .aside {
    order: 1;
    padding: 0;
    flex: auto;
  }
  .page-template-page-blog #blog .row .aside form + h2 {
    display: none;
  }
  .page-template-page-blog #blog .row .aside ul {
    display: none;
  }
  .single-post #post .row h1 {
    font-size: 3.4rem;
    line-height: 4.4rem;
  }
  .single-news #post .row h1 {
    font-size: 3.4rem;
    line-height: 4.4rem;
  }
  .page-template-page-webinars #hero .row .txt p {
    font-size: 2.2rem;
    line-height: 3rem;
    text-shadow: 1rem 1rem 4rem rgba(0, 0, 0, 0.8);
  }
  .page-template-page-webinars #hero .row .txt h1 {
    font-size: 1.6rem;
    text-shadow: 1rem 1rem 4rem rgba(0, 0, 0, 0.8);
  }
  .page-template-page-about #story .row h3 {
    line-height: 4rem;
  }
  .page-template-page-about #story .row h2 {
    font-size: 2.5rem;
    line-height: 4.5rem;
  }
  .page-template-page-about #story .row .flex {
    padding-top: 4.5rem;
  }
  .page-template-page-partners #partners .row #results .partner .people .person {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 0 4rem 0;
  }
  .page-template-page-partners #partners .row #results .partner .people .person .txt {
    padding-left: 3rem;
    max-width: 100%;
  }
  .page-template-page-b2b #census {
    padding: 5rem 0;
  }
  .page-template-page-b2b #census .row .flex .post {
    flex: 1 0 100%;
    max-width: 30rem;
    margin: 2rem 0;
    min-height: 21.5rem;
  }
  .page-template-page-b2b #census .row .flex .post .txt {
    padding: 3rem 2rem;
  }
  .page-template-page-young #hero {
    height: 105rem;
  }
  .page-template-page-older-demographic #hero {
    height: 67rem;
  }
  .page-template-page-older-demographic #hero .row .bg {
    background-position: center left -11rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text h1 {
    font-size: 3.5rem;
    line-height: 3.6rem;
    margin: 0 auto 2rem auto;
  }
  .page-template-page-older-demographic #hero .row .bg .text p + p {
    display: flex;
    flex-direction: column;
    margin: 1rem auto ;
  }
  .page-template-page-older-demographic #hero .row .bg .text p + p a {
    margin: 0 auto 2rem auto;
  }
  .page-template-page-older-demographic #next {
    padding-bottom: 3.5rem;
  }
  .page-template-page-older-demographic #next .row h2 {
    font-size: 2.6rem;
    line-height: 4.5rem;
    max-width: 61rem;
  }
  .page-template-page-older-demographic #next .row .container .post {
    flex-direction: column;
    margin-bottom: 6rem;
  }
  .page-template-page-older-demographic #next .row .container .post .pic {
    flex: 1 0 80%;
    max-width: 80%;
    order: 1;
    margin-bottom: 3rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt {
    flex: 1 0 100%;
    max-width: 100%;
    order: 2;
  }
  .page-template-page-older-demographic #next .row .container .post .txt h3 {
    font-size: 2.5rem;
    line-height: 3.6rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child {
    margin: 0 0 4rem 0;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .ico {
    width: 4.5rem;
    max-height: 5.3rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .info {
    padding-left: 2rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .info h3 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .info p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
@media only screen and (max-width: 550px) {
  .page-template-page-videomarketing #hero .row .flex {
    padding: 7rem 0 ;
  }
  .page-template-page-videomarketing #hero .row .flex .left {
    padding: 0 5rem;
    flex: 1;
  }
  .page-template-page-videomarketing #hero .row .flex .left h1 {
    font-size: 5rem;
    line-height: 5rem;
    max-width: 44rem;
  }
  .page-template-page-videomarketing #lead {
    padding: 10rem 0 13rem 0;
  }
  .page-template-page-videomarketing #lead .row .flex {
    margin: 5rem 0 0 0 ;
  }
  .page-template-page-videomarketing #lead .row .flex .box {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 0 6rem 0;
  }
  .page-template-page-videomarketing #lead .row .flex .box:after {
    display: none;
  }
  .page-template-page-videomarketing #solutions .row h2 {
    font-size: 2.6rem;
    line-height: 4rem;
    max-width: 35rem;
  }
  .page-template-page-videomarketing #solutions .row .flex {
    margin: 5rem 0 0 0 ;
  }
  .page-template-page-videomarketing #solutions .row .flex .box {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 0 6rem 0;
  }
  .page-template-page-videomarketing #solutions .row .flex .box:after {
    display: none;
  }
  .page-template-page-home #notification {
    margin: 2rem 2rem -2rem 2rem;
  }
  .page-template-page-home #notification .row {
    padding: 0 1.8rem;
  }
  .page-template-page-home #notification p {
    background-image: none;
    padding-top: 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .page-template-page-home #hero .row .bg {
    background-position: -45rem center;
  }
  .page-template-page-home #slider .row .slide {
    height: 70rem;
  }
  .page-template-page-home #slider .row .slide.font60 .txt blockquote {
    font-size: 3.6rem;
    line-height: 3.8rem;
  }
  .page-template-page-home #slider .row .slide.font66 .txt blockquote {
    font-size: 3.6rem;
    line-height: 3.8rem;
  }
  .page-template-page-home #slider .row .slide.font72 .txt blockquote {
    font-size: 3.6rem;
    line-height: 3.8rem;
  }
  .page-template-page-home #news .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-template-page-home #news .flex .post {
    flex: 1 0 100%;
    max-width: 38rem;
  }
  .page-template-page-home #news .flex .post:last-child {
    display: block;
  }
  .page-template-page-home #news .flex .post a h3 {
    text-align: center;
  }
  .page-template-page-home #news .flex .post a h3 + p {
    text-align: center;
  }
  .page-template-page-home #news .flex .post a p.cat {
    text-align: center;
  }
  .page-template-page-home #news .flex .post a span {
    text-align: center;
    right: 2.5rem;
  }
  .page-template-page-young #notification .row {
    padding: 0 1.8rem;
  }
  .page-template-page-young #notification p {
    background-image: none;
    padding-top: 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .page-template-page-young #hero {
    height: 105rem;
  }
  .page-template-page-young #hero .row .content .app {
    width: 100%;
    height: 33rem;
  }
  .page-template-page-young #hero .row .content .txt p:first-of-type {
    font-size: 3.6rem;
    line-height: 3.8rem;
  }
  .page-template-page-young #hero .row .content .txt a {
    display: block;
    margin: 2rem auto 0 auto;
    max-width: 25rem;
  }
  .page-template-page-young #more p:first-of-type {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
  .page-template-page-young #more p {
    font-size: 1.5rem;
    line-height: 2.0rem;
    margin: 1.5rem auto;
  }
  .page-template-page-young #everything p:first-of-type {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
  .page-template-page-young #everything p {
    font-size: 1.5rem;
    line-height: 2.0rem;
    margin: 1.5rem auto;
  }
  .page-template-page-young #works .row:nth-of-type(1) p:first-of-type {
    font-size: 2.2rem;
    line-height: 3.2rem;
    margin: 2rem auto;
  }
  .page-template-page-snap #hero .row .content {
    padding-bottom: 2rem;
  }
  .page-template-page-snap #hero .row .content .txt h2 {
    font-size: 2.6rem;
    line-height: 3.8rem;
  }
  .page-template-page-snap #hero .row .content .txt p {
    line-height: 2.4rem;
  }
  .page-template-page-snap #hero .row .content .txt p a {
    display: block;
    width: 23rem;
    margin: 0 auto 1.2rem auto;
  }
  .page-template-page-snap-results #solution .row .content .txt p {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
  .page-template-page-services #optional .flex .post .body {
    padding: 3.5rem 2rem;
  }
  .page-template-page-news #hero p {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
  .page-template-page-blog #hero p {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
  .page-template-page-b2b #hero .content .row .txt h1 {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
  .page-template-page-b2b #assets .row .left .group .flex {
    display: block;
  }
  .page-template-page-b2b #assets .row .left .group .flex .post {
    max-width: 100%;
    margin-bottom: 3.5rem;
  }
  .page-template-page-b2b #assets .row .left .group .flex .post h2 {
    margin-bottom: 1rem;
  }
  .page-template-page-b2b #assets .row .left .group .flex .post p {
    font-weight: 400;
  }
  .page-template-page-b2b #plan .row .flex {
    flex-wrap: wrap;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt {
    padding-right: 0;
  }
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt h2,
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt p {
    text-align: center;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type {
    flex: 1 0 100%;
    max-width: 100%;
    padding-top: 8rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt {
    padding-left: 0;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt h2,
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt p {
    text-align: center;
  }
  .single-post #other .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .single-post #other .flex .post {
    flex: 1 0 100%;
    max-width: 38rem;
  }
  .single-post #other .flex .post:last-child {
    display: block;
  }
  .single-post #other .flex .post a h3 {
    text-align: center;
  }
  .single-news #other .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .single-news #other .flex .post {
    flex: 1 0 100%;
    max-width: 38rem;
  }
  .single-news #other .flex .post:last-child {
    display: block;
  }
  .single-news #other .flex .post a h3 {
    text-align: center;
  }
  #notificationb .row {
    padding: 0 1.8rem;
  }
  #notificationb p {
    background-image: none;
    padding-top: 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .page-template-page-older-demographic #hero .bg .row .text {
    padding-bottom: 2rem;
  }
  .page-template-page-older-demographic #hero .bg .row .text ul {
    display: block;
    margin: 3rem auto 3rem auto;
  }
  .page-template-page-older-demographic #hero .bg .row .text ul li {
    margin: 0 0 1.5rem 0;
    padding: 0;
  }
  .page-template-page-older-demographic #hero .bg .row .text ul li a {
    flex-direction: row;
    align-items: center;
  }
  .page-template-page-older-demographic #hero .bg .row .text ul li a div {
    margin: 0 1.5rem 0 0;
  }
  .page-template-page-older-demographic #plan .row .flex .text {
    border-radius: 2rem 6rem 2rem 6rem;
    padding: 6rem 3rem 12rem 3rem;
  }
  .page-template-page-older-demographic #plan .row .flex .text h2 {
    font-size: 2.8rem;
    line-height: 3.8rem;
    margin: 0 0 2rem 0;
  }
  .page-template-page-older-demographic #plan .row .flex .text p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .page-template-page-older-demographic #plan .row .flex .video {
    height: 35rem;
  }
  .page-template-page-older-demographic #green {
    padding: 1rem 0;
  }
  .page-template-page-older-demographic #green .row {
    padding: 0;
  }
  .page-template-page-older-demographic #green .row .post {
    margin: 0;
    padding: 0 1.5rem;
  }
  .page-template-page-older-demographic #green .row .post .txt p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    white-space: normal;
    text-align: center;
    margin: 1rem 0;
  }
  .page-template-page-older-demographic #green .row .post .txt p a {
    font-size: 1.4rem;
    line-height: 1.8rem;
    white-space: normal;
  }
  .page-template-page-older-demographic #green .row .post .ico {
    flex: 1 0 3rem;
    max-width: 3rem;
    padding: 0 1rem 0 0;
    height: 2rem;
  }
  .page-template-page-older-demographic #green .row .post:nth-of-type(3) {
    flex-direction: column;
  }
  .page-template-page-older-demographic #green .row .post:nth-of-type(3) .ico {
    padding: 0;
    margin-top: 1rem;
    display: none;
  }
  .page-template-page-older-demographic #offer .flex .post {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-older-demographic #next .row h2 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    max-width: 42rem;
  }
  .page-template-page-older-demographic #process .row .text h2 {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex .right h2 {
    margin-top: 6rem;
  }
  .page-template-page-older-demographic #testimonial .row .flex .right p {
    font-size: 2rem;
    line-height: 3.4rem;
  }
}
@media only screen and (max-width: 500px) {
  .page-template-page-videomarketing #assets {
    padding-top: 34rem;
    margin-top: -20rem;
  }
  .page-template-page-videomarketing #assets .row .flex .txt {
    padding-top: 6rem;
  }
  .page-template-page-videomarketing #assets .row .flex .pic {
    max-width: 34rem;
    margin: 0 -2rem;
  }
  .page-template-page-videomarketing #assets .row .flex .pic img.mob {
    display: block;
  }
  .page-template-page-videomarketing #assets .row .flex .pic img.des {
    display: none;
  }
  .page-template-page-videomarketing #summary {
    margin: -22rem 0 0 0;
  }
  #notification p,
  #notificationb p {
    padding-left: 0;
    background-position: center top;
  }
  .search #search h1 {
    font-size: 3.4rem;
    line-height: 4.2rem;
  }
  .search #search ul li .meta {
    flex-direction: column;
  }
  .search #search ul li .meta img + .txt {
    padding-left: 0;
    margin-top: 2rem;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li a {
    font-size: 1.8rem;
  }
  header#head .row nav#mainMenu .scroll .content ul.menu > li .sub-menu li a {
    font-size: 1.6rem;
  }
  header#head .row nav#mainMenu .scroll .content .menu-main-menu-container + ul.menu {
    margin-top: 5rem;
  }
  .page-template-page-trial #hero .row .txt p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .page-template-page-trial #hero .row .txt p:nth-of-type(1) {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .page-template-page-trial #more .row .txt h2 {
    font-size: 2rem;
    line-height: 3.6rem;
  }
  .page-template-page-trial #more .row .txt p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .page-template-page-home .html5-image .ebook .content .txt {
    padding: 4rem 2rem;
  }
  .page-template-page-home .html5-image .ebook .content .form {
    padding: 4rem 2rem;
  }
  .page-template-page-home #hero .row .left h2 {
    font-size: 5rem;
    line-height: 5rem;
  }
  .page-template-page-home #hero .row .left p {
    margin: 2rem 0;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 2.5rem 2rem 2rem 2rem;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) {
    flex: 1 0 100%;
    max-width: 100%;
    order: 7;
  }
  .page-template-page-home #solution .row:nth-of-type(2) .flex .post:nth-of-type(7) p {
    margin-top: 0;
  }
  .page-template-page-home #partners {
    padding: 8rem 0;
  }
  .page-template-page-home #partners .row .text h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
  .page-template-page-home #partners .row .text p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .page-template-page-home #events .row .flex {
    flex-direction: row;
  }
  .page-template-page-home #events .row .flex .box {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-home #events .row .flex .box .img {
    height: 22rem;
  }
  .page-template-page-home #tiers .row p {
    font-size: 1.6rem;
    line-height: 3.0rem;
  }
  .page-template-page-snap #form .nf-response-msg p {
    font-family: 'Merriweather', serif;
    font-size: 2.6rem;
    line-height: 4.2rem;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body h3 {
    font-size: 2.2rem;
    line-height: 3rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-label label {
    font-size: 1.6rem;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container.html-container p {
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="button"] {
    margin: 0 auto;
    display: block;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-37-wrap .nf-field-label label {
    text-align: center;
    font-weight: 700;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-37-wrap .nf-field-container input[type="email"] {
    text-align: center;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-38-wrap {
    margin-top: 0;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-39-container h3,
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-40-container h3,
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-41-container h3,
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-42-container h3 {
    text-align: left;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-37-container {
    margin-bottom: 0;
    border-radius: 1.4rem 1.4rem 0 0;
    padding: 2rem 2rem 2rem 2rem;
    background: #F7FBFE;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-37-container .nf-input-limit {
    margin: 0;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-38-container {
    margin-bottom: 0;
    border-radius: 0 0 1.4rem 1.4rem;
    padding: 2rem 2rem 2rem 2rem;
    background: #F7FBFE;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field #nf-field-38-container .nf-input-limit {
    margin: 0;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul {
    flex-wrap: wrap;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li {
    margin: 0 0 2rem 0 !important;
    flex: 1 0 50%;
    max-width: 50%;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li label:after {
    display: none;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li label:before {
    content: '';
    display: inline-block;
    width: 3.2rem;
    height: 3.2rem;
    background: #F5F5F5;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-right: 1rem;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .listradio-wrap ul li input:checked + label:before {
    background: #f5f5f5 url('../img/ico-radioCheck.svg') no-repeat center;
    background-size: auto 1.6rem;
  }
  .page-template-page-b2b #tiers .row p {
    font-size: 1.6rem;
    line-height: 3.0rem;
  }
  .page-template-page-b2b #tech .row .flex .left .post {
    flex: 1 0 100% !important;
    max-width: 100% !important;
    margin: 0 0 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-template-page-b2b #tech .row .flex .left .post .pic {
    flex: 1 0 5rem;
    max-width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }
  .page-template-page-b2b #tech .row .flex .left .post .txt {
    padding-left: 2rem;
    flex: 1;
  }
  .page-template-page-b2b #tech .row .flex .left .post .txt p {
    margin-top: 0;
  }
  .page-template-page-b2b #landscape {
    padding: 12rem 0 0 0;
  }
  .page-template-page-b2b #landscape .row .flex .left .problems {
    display: block;
  }
  .page-template-page-b2b #landscape .row .flex .left .problems .post {
    max-width: 100%;
    flex: 1 0 100%;
    margin-bottom: 3rem;
  }
  .page-template-page-b2b #landscape .row .flex2 {
    display: block;
  }
  .page-template-page-b2b #landscape .row .flex2 .post {
    max-width: 100%;
    flex: 1 0 100%;
    margin-bottom: 3rem;
  }
  .page-template-page-services #hero .row .content {
    background-position: right -42rem center;
  }
  .page-template-page-services #hero .row .text h2 {
    font-size: 3.4rem;
    line-height: 4.4rem;
  }
  .page-template-page-services #nav .row .content {
    flex-direction: column;
    padding-top: 6rem;
  }
  .page-template-page-services #nav .row a {
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .page-template-page-services #plans .row h2 {
    font-size: 2.0rem;
    line-height: 3.6rem;
  }
  .page-template-page-services #plans .row .flex .container .content {
    margin-top: 3rem;
  }
  .page-template-page-services #plans .row .flex .container .content h2 {
    font-size: 2.8rem;
  }
  .page-template-page-services #plans .row .flex .container .content p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .page-template-page-services #plans .row .flex .container .content ul {
    padding: 1rem 0 3rem 0;
  }
  .page-template-page-services #plans .row .flex .container .content ul li {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 0 0 3.5rem;
  }
  .page-template-page-services #solutions .post .row .ico {
    position: absolute;
  }
  .page-template-page-services #solutions .post .row .txt h2 {
    padding-left: 9rem;
    margin-bottom: 4rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row .hr {
    display: none;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row .txt {
    padding: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row .animation {
    padding: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .hr {
    display: none;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt {
    padding: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt h2 {
    padding: 0 0 0 9rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt p {
    text-align: left;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .animation {
    padding: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .hr {
    display: none;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .txt {
    padding: 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .txt h2 {
    padding: 0 0 0 9rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .animation {
    padding: 0;
  }
  .page-template-page-services #faq h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .page-template-page-services #faq .flex .post .q {
    font-size: 1.8rem;
    line-height: 2.5rem;
    background-position: left .2rem;
  }
  .page-template-page-about #hero .row .text h2 {
    font-size: 3.4rem;
    line-height: 4.4rem;
  }
  .page-template-page-about #hero .row .text p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .page-template-page-contact #hero .row {
    flex-direction: column;
  }
  .page-template-page-contact #hero .row .contact .content ul li {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .single-post #post .row .content {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
  .single-post #post .row .content aside {
    order: 2;
    margin-top: 6rem;
  }
  .single-post #post .row .content aside ul {
    position: static !important;
    display: flex;
    justify-content: center;
    margin-left: 0 !important;
  }
  .single-post #post .row .content aside ul li {
    margin: 0 1rem;
  }
  .single-news #post .row .content {
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
  .single-news #post .row .content aside {
    order: 2;
    margin-top: 6rem;
  }
  .single-news #post .row .content aside ul {
    position: static !important;
    display: flex;
    justify-content: center;
    margin-left: 0 !important;
  }
  .single-news #post .row .content aside ul li {
    margin: 0 1rem;
  }
  .page-template-page-webinars #webinars .webinars {
    padding-right: 0;
  }
  .page-template-page-webinars #webinars .webinars h2 {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
  .page-template-page-webinars #webinars .webinars h2 + p {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .page-template-page-webinars #webinars .webinars p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  #footer .row:nth-of-type(2) .content .left .flex {
    flex-direction: column;
    align-items: center;
  }
  #footer .row:nth-of-type(2) .content .left .flex .address {
    margin: 0 0 3rem 0;
  }
  .page-template-page-partners #hero .row h1 {
    font-size: 3.4rem;
    line-height: 4.4rem;
    max-width: 22rem;
  }
  .page-template-page-partners #filters .row .search {
    flex-direction: column;
  }
  .page-template-page-partners #filters .row .search .input {
    padding: 0;
  }
  .page-template-page-partners #filters .row .search .input button {
    padding: 1.2rem 2.5rem;
  }
  .page-template-page-partners #filters .row .search .select {
    margin: 3rem auto 0 auto;
  }
  .page-template-page-partners #partners .flex .partner {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-partners #partners .row #results .partner header h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    padding-bottom: 2rem;
    margin-left: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .page-template-page-b2b #tech .row img.mob {
    height: 32rem;
  }
}
@media only screen and (max-width: 450px) {
  .page-template-page-home #hero .row .bg {
    background-position: -47rem center;
  }
  .page-template-page-home #careplan .row .flex .post p {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
  .page-template-page-home #plan .row .video {
    height: 20rem;
    margin: 3.5rem auto;
  }
  .page-template-page-home #plan .row .video a .play {
    width: 5rem;
    height: 5rem;
    background-size: 1.8rem 1.8rem;
    margin: -2.7rem 0 0 -2.7rem;
    background-position: center left 1.8rem;
  }
  .page-template-page-home #getstarted .row .text h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .page-template-page-home #howitworks .row .lead h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
  .page-template-page-home #howitworks .row .flex {
    margin: 5rem -2rem 0 -2rem;
  }
  .page-template-page-home #howitworks .row .flex .container {
    flex-direction: column;
    align-items: center;
  }
  .page-template-page-home #howitworks .row .flex .container .img {
    margin-bottom: 2rem;
  }
  .page-template-page-home #howitworks .row .flex .container .text {
    padding-left: 0;
  }
  .page-template-page-home #howitworks .row .flex .container .text h2,
  .page-template-page-home #howitworks .row .flex .container .text h3,
  .page-template-page-home #howitworks .row .flex .container .text p {
    text-align: center;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .ico {
    flex: 1 0 6rem;
    max-width: 6rem;
    height: 6rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .ico img {
    width: 2.4rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post:before {
    left: 3rem;
    top: 12rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .content {
    padding-left: 3rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .content h3 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .content h3 + p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .page-template-page-young #works .row:nth-of-type(2) .txt .post .content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .page-template-page-b2b #hero .content {
    padding: 5rem 0;
  }
  .page-template-page-b2b #hero .content .row .txt h1 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    margin-bottom: 2.5rem;
  }
  .page-template-page-b2b #movie .row .rectangle {
    height: 24rem;
  }
  .page-template-page-b2b #movie .row .rectangle .file a .play {
    width: 7rem;
    height: 7rem;
    background-size: 2.8rem auto;
    background-position: center right 1.9rem;
  }
  .page-template-page-b2b #plan .row {
    background-size: auto 35rem;
    padding-top: 35rem;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt h2,
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt h2 {
    font-size: 2.6rem;
    line-height: 3.2rem;
    margin: 0 auto 2rem auto;
  }
  .page-template-page-b2b #plan .row .flex .post:last-of-type .txt p,
  .page-template-page-b2b #plan .row .flex .post:first-of-type .txt p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .page-template-page-snap #hero .row .content .txt h2 {
    font-size: 2.2rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
  }
  .page-template-page-snap-results #hero .row .txt h1 {
    font-size: 3.4rem;
    line-height: 4.6rem;
  }
  .page-template-page-snap-results #hero .row .txt p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .page-template-page-snap-results #hero .row .txt a {
    padding: 1.5rem 2.5rem;
    font-size: 1.6rem;
  }
  .page-template-page-snap-results #details h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .page-template-page-snap-results #details .flex .post h3 {
    font-size: 2.4rem;
    line-height: 3.4rem;
    padding: 1.3rem 0;
  }
  .page-template-page-snap-results #questions h2 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .page-template-page-snap-results #questions p {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .page-template-page-about #assets .row .content {
    padding: 5rem 3rem 4rem 3rem;
  }
  .page-template-page-about #assets .row .content .left p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .page-template-page-about #assets .row .content .right {
    padding: 3rem 0 0 0;
  }
  .page-template-page-about #assets .row .content .right .ico img {
    height: 3rem !important;
  }
  .page-template-page-about #mission .row .flex {
    margin-top: 0;
  }
  .page-template-page-about #mission .row .flex .box {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0 5rem 0 3rem;
  }
  .page-template-page-about #mission .row .flex .box hr {
    height: 9rem;
  }
  .page-template-page-blog #blog .row .blog .posts .alm-reveal .post {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-news #blog .row .blog .posts .alm-reveal .post {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .single-post #breadcrumbs .row ul {
    padding: 1.5rem 2.5rem;
  }
  .single-post #breadcrumbs .row ul li {
    font-size: 1.5rem;
  }
  .single-post #post .row h1 {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin: 0 0 6rem 0;
  }
  .single-news #breadcrumbs .row ul {
    padding: 1.5rem 2.5rem;
  }
  .single-news #breadcrumbs .row ul li {
    font-size: 1.5rem;
  }
  .single-news #post .row h1 {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin: 0 0 6rem 0;
  }
  .page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="text"],
  .page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="tel"],
  .page-template-page-contact #hero .row .txt .gform_wrapper .gform_body input[type="email"] {
    padding: 1.5rem 2rem;
  }
  .page-template-page-services #plans .row h2 {
    font-size: 1.7rem;
    line-height: 3.2rem;
  }
  .page-template-page-services #plans .row p {
    font-size: 1.5rem;
    line-height: 2.6rem;
  }
  #footer .row:nth-of-type(2) .content .right .menu-legal-menu-container .menu {
    flex-direction: column;
    align-items: center;
  }
  #footer .row:nth-of-type(2) .content .right .menu-legal-menu-container .menu li {
    margin: 1rem 0;
  }
  .page-template-page-partners #partners .row #results .partner header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-template-page-partners #partners .row #results .partner header .logo {
    flex: auto ;
    width: 15rem;
    height: 15rem;
  }
  .page-template-page-partners #partners .row #results .partner header h2 {
    margin: 3rem 0 0 0 ;
    width: 100%;
  }
  .page-template-page-partners #partners .row #results .partner .people .person .pic {
    flex: 1 0 9rem;
    max-width: 9rem ;
    height: 9rem;
  }
  .page-template-page-partners #partners .row #results .partner .people .person .txt {
    padding-left: 1.5rem;
  }
  .page-template-page-older-demographic #offer h2 {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
  .page-template-page-older-demographic #offer p {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .page-template-page-older-demographic #next .row h2 {
    font-size: 2.6rem;
    line-height: 4rem;
    max-width: 42rem;
    margin-bottom: 5rem;
  }
  .page-template-page-older-demographic #next .row .container .post {
    margin-bottom: 5rem;
  }
  .page-template-page-older-demographic #next .row .container .post .pic {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .page-template-page-older-demographic #next .row .container .post .txt h3 {
    font-size: 2.3rem;
    line-height: 3.4rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child {
    margin: 0 0 4rem 0;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .ico {
    width: 3.5rem;
    max-height: 4.3rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .info {
    padding-left: 1.5rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .info h3 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .page-template-page-older-demographic #next .row .container .post .txt .child .info p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
@media only screen and (max-width: 400px) {
  .page-template-page-videomarketing #hero {
    padding: 3rem 0;
  }
  .page-template-page-videomarketing #hero .row .flex {
    padding: 6rem 0 ;
  }
  .page-template-page-videomarketing #hero .row .flex .left {
    padding: 0 0;
    flex: 1;
  }
  .page-template-page-videomarketing #hero .row .flex .left h1 {
    font-size: 4rem;
    line-height: 4.2rem;
    max-width: 36rem;
    margin-bottom: 3rem;
  }
  .page-template-page-videomarketing #hero .row .flex .left p {
    font-size: 1.8rem;
    line-height: 2.8rem;
    max-width: 80%;
  }
  .page-template-page-home #slider {
    min-height: 75rem;
  }
  .page-template-page-home #slider .row .slide .bg.mob {
    border-radius: 1rem 1rem 1rem 5rem;
  }
  .page-template-page-home #slider .row .slide.font60 .txt blockquote {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
  .page-template-page-home #slider .row .slide.font66 .txt blockquote {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
  .page-template-page-home #slider .row .slide.font72 .txt blockquote {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
  .page-template-page-home #slider .row .slide .txt p {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .page-template-page-home #hero .row .right {
    margin: 0 -2rem;
  }
  .page-template-page-home #hero .row .left h2 {
    font-size: 4rem;
    line-height: 4.4rem;
  }
  .page-template-page-home #hero .row .extras .apps {
    flex-direction: column;
    margin: 2rem 0 0 0;
  }
  .page-template-page-home #hero .row .extras .apps a {
    margin: 1rem 0;
  }
  .page-template-page-home #testimonial .slide {
    height: 80rem;
  }
  .page-template-page-home #testimonial .slide .row {
    padding: 6rem 2rem;
  }
  .page-template-page-home #testimonial .slide .row .text p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .page-template-page-home #tiers .row .table table thead tr:nth-child(2) th strong,
  .page-template-page-home #tiers .row .table table thead tr:nth-child(3) th strong {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .page-template-page-home #tiers .row .table table thead tr th {
    padding: 1.2rem 1rem;
  }
  .page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2) a,
  .page-template-page-home #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) a {
    padding: 1.1rem 1rem;
  }
  .page-template-page-home #news .flex .post {
    margin: 3rem 0;
  }
  .page-template-page-home .html5-image .ebook .content .form .nf-form-cont .nf-response-msg p {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .page-template-page-home .page-template-page-home .html5-image .ebook .content .txt p:nth-of-type(1) {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .page-template-page-young #hero .row .content .txt p:first-of-type {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
  .page-template-page-young #hero .row .content .txt p {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .page-template-page-young #hero .row .content .bg.mob {
    border-radius: 1rem 1rem 1rem 5rem;
  }
  .page-template-page-young #features .post:nth-of-type(odd) .img img,
  .page-template-page-young #features .post:nth-of-type(even) .img img {
    width: 100%;
  }
  .page-template-page-young #features .post:nth-of-type(odd) .txt h3,
  .page-template-page-young #features .post:nth-of-type(even) .txt h3 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .page-template-page-snap #hero .row .content .bg.mob {
    border-radius: 1rem 1rem 1rem 5rem;
  }
  .page-template-page-snap-results #hero .row .result {
    padding: 3.5rem 2rem;
  }
  .page-template-page-snap-results #hero .row .result .details ul li {
    font-size: 1.6rem;
  }
  .page-template-page-snap-results #hero .row .result #chart span {
    font-size: 6rem;
  }
  .page-template-page-snap-results #solution .row .content .txt p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(2) th strong,
  .page-template-page-b2b #tiers .row .table table thead tr:nth-child(3) th strong {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .page-template-page-b2b #tiers .row .table table thead tr th {
    padding: 1.2rem 1rem;
  }
  .page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2) a,
  .page-template-page-b2b #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) a {
    padding: 1.1rem 1rem;
  }
  .page-template-page-b2b #tech .row h2 {
    font-size: 3.0rem;
    line-height: 4.2rem;
  }
  .page-template-page-b2b #tech .row img.mob {
    right: 0;
  }
  .page-template-page-b2b #offer .row .flex .post .txt h2 {
    background-size: 4.8rem auto;
    padding-left: 8.5rem;
    background-position: 2rem center;
  }
  .page-template-page-services #hero .row .text h2 {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
  .page-template-page-services #hero .row .text p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .page-template-page-services #testimonial .slide {
    height: 80rem;
  }
  .page-template-page-services #testimonial .slide .row {
    padding: 6rem 2rem;
  }
  .page-template-page-services #testimonial .slide .row .text p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .page-template-page-services #tiers .row .table table thead tr:nth-child(2) th strong,
  .page-template-page-services #tiers .row .table table thead tr:nth-child(3) th strong {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .page-template-page-services #tiers .row .table table thead tr th {
    padding: 1.2rem 1rem;
  }
  .page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-of-type(2) a,
  .page-template-page-services #tiers .row .table table tbody tr:last-of-type td:nth-of-type(3) a {
    padding: 1.1rem 1rem;
  }
  .page-template-page-services #solutions .post .row {
    flex-direction: column;
    align-items: center;
  }
  .page-template-page-services #solutions .post .row .ico {
    position: static;
  }
  .page-template-page-services #solutions .post .row .animation .thumb .play {
    width: 5.6rem;
    height: 5.6rem;
    margin: -2.8rem 0 0 -2.8rem;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row .txt h2 {
    padding: 0;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(1) .row .txt p {
    text-align: center;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt h2 {
    padding: 0;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .txt p {
    text-align: center;
  }
  .page-template-page-services #solutions .post:nth-of-type(2) .row .ico {
    order: 1;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .txt h2 {
    padding: 0;
    text-align: center;
    margin: 2rem 0 4rem 0;
  }
  .page-template-page-services #solutions .post:nth-of-type(3) .row .txt p {
    text-align: center;
  }
  .page-template-page-contact #hero .row .txt p {
    font-size: 2.4rem;
    line-height: 4rem;
  }
  .page-template-page-news #hero h1 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .page-template-page-news #hero p {
    font-size: 1.6rem;
    line-height: 3.0rem;
  }
  .page-template-page-blog #hero h1 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .page-template-page-blog #hero p {
    font-size: 1.6rem;
    line-height: 3.0rem;
  }
  .single-post #other .flex .post {
    margin: 3rem 0;
  }
  .single-news #other .flex .post {
    margin: 3rem 0;
  }
  .single-webinar #hero .row .content {
    padding: 4rem 3rem;
  }
  .single-webinar #hero .row .txt h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .single-webinar #hero .row .txt h1 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .single-webinar #webinar .txt p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  .single-webinar #webinar .txt p:first-of-type {
    font-size: 2rem;
    line-height: 3.6rem;
  }
  .single-webinar #webinar .txt ol li,
  .single-webinar #webinar .txt ul li {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  .page-template-page-webinars #hero .row .txt p {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .page-template-page-about #team .row .lead,
  .page-template-page-about #founders .row .lead {
    font-size: 1.8rem;
    line-height: 3.6rem;
  }
  .page-template-page-about #mission .row .flex .box {
    padding: 0 0 0 3rem;
  }
  .page-template-page-about #mission .row .flex .box hr {
    height: 12rem;
  }
  .page-template-page-partners #hero .row h1 {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
  .page-template-page-older-demographic #hero .row .bg {
    background-position: center left -11rem;
    border-radius: 1rem 1rem 1rem 5rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text h1 {
    font-size: 3rem;
    line-height: 3.1rem;
    margin: 0 auto 1rem auto;
  }
  .page-template-page-older-demographic #hero .row .bg .text p {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .page-template-page-older-demographic #hero .row .bg .text p + p {
    display: flex;
    flex-direction: column;
    margin: 1rem auto ;
  }
  .page-template-page-older-demographic #hero .row .bg .text p + p a:first-of-type {
    padding: 1.7rem 4rem;
  }
  .page-template-page-older-demographic #plan .row .flex .text a {
    padding: 1rem 5rem;
  }
  .page-template-page-older-demographic #plan .row .flex .video {
    height: 25rem;
  }
}
@media only screen and (max-width: 380px) {
  .page-template-page-snap #hero .row .content .txt p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .page-template-page-snap #form .nf-form-cont .nf-form-content > div .nf-mp-body nf-fields-wrap nf-field .nf-field-container input[type="button"] {
    padding: 1.7rem 2.5rem;
  }
  .page-template-page-young #quotes .flex .post .content {
    padding: 3rem 2.5rem 13rem 2.5rem;
  }
  .page-template-page-older-demographic #hero .bg .row .text ul li a {
    padding: 1.5rem 6rem;
  }
  .page-template-page-older-demographic #hero .bg .row .text ul li a:after {
    display: none;
  }
}
@media only screen and (max-width: 350px) {
  .page-template-page-home #hero .row .bg {
    background-position: -68rem center;
  }
}
