/*
	Theme Name: CloudBlue Custom
	Theme URI: gtranslate-mob
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*-----------------------------------*\
  RESET/BASIC
\*-----------------------------------*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: pragmatica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
  font-weight: 300;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.content {
  flex: 1 0 auto;
  /*overflow: hidden;*/
  position: relative;
}

img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}

a {
  text-decoration: none;
  transition: all 0.25s linear;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.default-bottom-line {
  background: linear-gradient(to left, #23c6fa, #160358);
  height: 10px;
}

/*-----------------------------------*\
  NAV
\*-----------------------------------*/

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header-inner {
  height: 70px;
  padding: 0 16px 0 30px;
  display: flex;
  align-items: center;
  transition: all 0.25s linear;
  max-width: 1540px;
  margin: 0 auto;
}

.single-newsroom .header-inner,
header.scrolled .header-inner,
.header-inner:hover,
.header-inner.menuopen {
  background: #fff;
  box-shadow: 0 -39px 20px rgba(0, 0, 0, 0.16), 0 2px 10px -10px rgba(0, 0, 0, 0.76);
}

.navlogo {
  display: block;
  position: relative;
  width: 96px;
  height: 24px;
}

.logoimg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  transition: all 0.25s linear;
}

.logo-dark {
  opacity: 0;
  visibility: hidden;
}

.single-newsroom .logo-dark,
.light-bg .logo-dark,
header.scrolled .logo-dark,
.header-inner:hover .logo-dark,
.header-inner.menuopen .logo-dark {
  opacity: 1;
  visibility: visible;
}

.single-newsroom .logo-light,
.light-bg .logo-light,
header.scrolled .logo-light,
.header-inner:hover .logo-light,
.header-inner.menuopen .logo-light {
  opacity: 0;
  visibility: hidden;
}

.menuwrap {
  display: none;
}

.mobnav {
  display: flex;
  height: 70px;
  align-items: center;
  margin-left: auto;
}

.btn-nav {
  display: inline-block;
  margin-right: 12px;
  line-height: 32px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 999em;
  padding: 0 11px;
  transition: all 0.25s linear;
}

.single-newsroom .btn-nav,
.light-bg .btn-nav,
header.scrolled .btn-nav,
.header-inner:hover .btn-nav,
.header-inner.menuopen .btn-nav {
  background: #0723EA;
  border: 1px solid #0723EA;
}

.nav-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  width: 38px;
  height: 38px;
  right: 30px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.25s linear;
  cursor: pointer;
  transition: all 0.25s linear;
}

#nav-toggle {
  width: 23px;
  height: 8px;
  position: relative;
  transform: rotate(0deg);
  transition: all .5s ease-in-out;
  cursor: pointer;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all .25s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

#nav-toggle span:nth-child(2) {
  top: 4px;
  opacity: 0;
  transform-origin: left center;
}

#nav-toggle span:nth-child(3) {
  top: 6px;
  transform-origin: left center;
}

#nav-toggle.menuopen span:nth-child(1) {
  transform: rotate(45deg);
  top: -3.5px;
  left: 4px;
}

#nav-toggle.menuopen span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-toggle.menuopen span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12.5px;
  left: 4px;
}

#menu-header {
  position: fixed;
  top: 70px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  overflow-x: hidden;
}

#menu-header.activemenu {
  visibility: visible;
  opacity: 1;
}

.mobile-main {
  list-style: none;
  margin: 48px 0 0 32px;
  padding: 0;
}

.mobile-main>li {
  margin: 0 0 32px;
}

.mobile-main>li:last-child {
  margin: 0;
}

.mobile-main>li>a {
  color: #000;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.2em;
}

.mh-sub {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  overflow: auto;
  background: #160658;
  z-index: 91;
  color: #1CD8F9;
  transition: all 0.25s linear;
  padding: 48px 0 0 90px;
  transform: translateX(100vw);
}

.mh-sub.subactive {
  transform: translateX(0);
}

#reset {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: #fff;
  display: flex;
  justify-content: center;
  padding-top: 54px;
  transition: all 0.25s linear;
  z-index: 92;
  transform: translateX(-50px);
}

#reset.subactive {
  transform: translateX(0);
}

.menu-reset {
  display: inline-block;
  width: 27px;
}

.subitem {
  margin-bottom: 36px;
}

.subname {
  display: inline-block;
  position: relative;
  min-width: 176px;
  line-height: 24px;
  font-size: 17px;
  letter-spacing: 0.1em;
  cursor: pointer;
}

#mh-resources .subname {
  min-width: 210px;
}

span.plus {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  transition: all 0.25s linear;
}

span.plus:before {
  content: "";
  display: block;
  width: 2px;
  background: #1CD8F9;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s linear;
}

span.plus:after {
  content: "";
  display: block;
  height: 2px;
  background: #1CD8F9;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.25s linear;
}

.openitem span.plus {
  transform: rotate(90deg);
}

.openitem span.plus:after {
  opacity: 0;
}

.sublist {
  display: none;
  padding-top: 24px;
}

.mh-sub ul>li {
  margin-bottom: 16px;
}

#mh-solutions.mh-sub ul>li,
#mh-industries.mh-sub ul>li {
  margin-bottom: 22px;
}

.mh-sub ul>li>a {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  font-size: 14px;
}

.mh-sub ul.smaller-list>li>a {
  font-size: 12px;
}

.we-say-section .heading-title {
  margin-bottom: 20px !important;
}

#product_feature .links-container ul li {
  opacity: 1;
}

@media only screen and (min-width: 768px) {

  .header-inner {
    padding: 0 30px;
  }

}

@media only screen and (min-width: 1025px) {

  header {
    padding: 0 30px;
  }

  .header-inner,
  .mobnav {
    height: 98px;
  }

  .navlogo {
    width: 116px;
    height: 29px;
  }

  .single-post {
    position: relative;
  }

}

@media only screen and (min-width: 1280px) {

  .nav-ctrl,
  .mobnav {
    display: none;
  }

  #menu-header.activemenu {
    visibility: hidden;
    opacity: 0;
  }

  .menuwrap {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  .dd-menu {
    position: fixed;
    top: 98px;
    left: 50%;
    transform: translateX(-50%);
    width: 93.5%;
    max-width: 1440px;
    background: #0F0556;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    transition: all 0.25s linear;
    display: flex;
  }

  .dd-menu a {
    color: #fff;
    text-decoration: none;
  }

  .header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 0;
  }

  .header-menu>li {
    display: inline-block;
  }

  .header-menu>li>a {
    line-height: 98px;
    font-size: 10px;
    letter-spacing: 0.2em;
    display: block;
    padding: 0 16px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s linear;
  }

  .header-menu>li>a:before {
    position: absolute;
    display: block;
    content: "";
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: #264BFA;
    transition: all 0.25s linear;
  }

  .header-menu>li>a:hover:before {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  .header-menu>li>a.has-dd:after {
    display: block;
    content: "";
    z-index: 100;
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateX(-50%);
    border-width: 10px 15px 0 15px;
    transition: all 0.25s linear;
    border-color: #ffffff transparent transparent transparent;
  }

  .header-menu>li>a.has-dd:hover:after {
    bottom: -10px;
    opacity: 1;
  }

  .header-menu>li:hover>.dd-menu {
    opacity: 1;
    visibility: visible;
  }

  .single-newsroom .header-menu>li>a,
  .light-bg .header-menu>li>a,
  header.scrolled .header-menu>li>a,
  .header-inner:hover .header-menu>li>a {
    color: #000;
  }

  .menuwrap .freeBtn {
    letter-spacing: 0.1em;
    border: 1px solid #fff;
    background: transparent;
    transition: all 0.25s linear;
    margin-left: 40px;
  }

  .single-newsroom .menuwrap .freeBtn,
  .light-bg .menuwrap .freeBtn,
  header.scrolled .menuwrap .freeBtn,
  .header-inner:hover .menuwrap .freeBtn {
    border: none;
    background: #0723EA;
  }

  .single-newsroom .menuwrap .freeBtn:hover,
  .light-bg .menuwrap .freeBtn:hover,
  header.scrolled .menuwrap .freeBtn:hover,
  .header-inner:hover .menuwrap .freeBtn:hover {
    background: transparent linear-gradient(90deg, #160358 0%, #130EB1 17%, #0723EA 35%, #264BFA 49%, #288AF9 65%, #23C6FA 77%, #1CD8F9 100%);
  }

  .navcol-solutions1 {
    display: flex;
    width: 76%;
    padding: 40px 40px 16px 70px;
    justify-content: space-between;
  }

  .ns1-col:first-of-type {
    width: 34%;
  }

  .ns1-col:nth-of-type(2) {
    width: 28%;
  }

  .ns1-col:last-of-type {
    width: 27%;
  }

  .navcol-solutions2 {
    width: 24%;
    background: #1316B1;
    padding: 40px 40px 0 40px;
  }

  .navcol-title {
    color: #1CD8F9;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  a.blocklink {
    color: #fff;
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .bl-title {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: 0.025em;
  }

  .bl-copy {
    font-size: 12px;
    line-height: 1.67;
  }

  .dd-usecase {
    width: 45%;
    position: relative;
  }

  .case-bg {
    display: block;
    width: 100%;
    height: auto;
  }

  .uc-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 34px 34px;
  }

  .uc-label {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .uc-row {
    display: flex;
  }

  .uc-title {
    width: 60%;
    font-size: 16px;
    line-height: 1.25;
  }

  .uc-link {
    display: inline-block;
    margin-left: auto;
    padding-top: 1px;
  }

  .dd-more {
    display: inline-block;
    vertical-align: top;
    font-size: 0;
  }

  .dd-more span,
  .arrow-dd {
    display: inline-block;
    vertical-align: top;
  }

  .dd-more span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  .arrow-dd {
    width: 15px;
    margin: 2px 0 0 10px;
  }

  .navcol-industries2 {
    width: 55%;
    padding: 50px 0 0;
    display: flex;
  }

  .ni2-col {
    margin-left: 90px;
  }

  .dd-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }

  .dd-list li {
    margin-bottom: 16px;
    font-weight: 700;
  }

  .navcol-resources1 {
    width: 32.5%;
    position: relative;
  }

  .navcol-resources2 {
    width: 67.5%;
    padding: 50px 0 0;
    display: flex;
  }

  .navcol-resources2 .ni2-col:first-of-type {
    min-width: 134px;
  }

  .case-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    width: 256px;
  }

  .navcol-company1 {
    width: 44%;
    position: relative;
  }

  .navcol-company2 {
    width: 56%;
    padding: 50px 0 0;
    display: flex;
  }

  .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px 0 0 34px;
  }

  .event-dates {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .event-desc {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 30px;
  }

  /*.hero-content-box p.text-white {
		max-width: 460px;
	}*/

}

@media only screen and (min-width: 1440px) {

  .header-inner {
    padding: 0 50px;
  }

  .header-menu>li>a {
    padding: 0 20px;
  }

  .menuwrap .freeBtn {
    margin-left: 72px;
  }

}

/*-----------------------------------*\
  BLOG BANNER
\*-----------------------------------*/

#blogbanner {
  position: relative;
  overflow: hidden;
  height: 406px;
  background: #000;
}

#blogbanner img {
  width: auto;
  height: 406px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#blogbanner:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0) 100%);
}

#blogbanner .banner-content {
  width: 100%;
  max-width: 1600px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 3;
}

@media only screen and (min-width: 1025px) {

  #blogbanner:before {
    height: 124px;
  }

  #blogbanner {
    height: 539px;
  }

  #blogbanner img {
    height: 539px;
  }

}

@media only screen and (min-width: 1920px) {

  #blogbanner:before {
    height: 124px;
  }

  #blogbanner {
    height: auto;
    min-height: 539px;
  }

  #blogbanner img {
    height: auto;
    width: 100%;
  }

}

/*-----------------------------------*\
  BLOG LISTING
\*-----------------------------------*/

.basic-blog {
  padding-top: 48px;
  padding-bottom: 48px;
}

a.blogitem {
  display: block;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.blogitem-imgwrap {
  overflow: hidden;
  border-radius: 5px 5px 0 0;
  height: 160px;
}

.blogitem-img {
  position: relative;
  height: 160px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s linear;
}

a.blogitem:hover .blogitem-img {
  transform: translateX(-50%) scale(1.25);
}

img.cbcard-arrow {
  position: absolute;
  right: 0;
  top: 1px;
  width: 12px;
}

.blogitem-body {
  padding: 24px;
}

.blogitem-meta {
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 8px;
  color: #BEBEBE;
  text-transform: uppercase;
}

.blogitem-title {
  color: #000;
  min-height: 110px;
}

.blog-pagination {
  padding-top: 24px;
  font-size: 0;
  text-align: center;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-block;
  vertical-align: top;
  width: 22px;
  line-height: 20px;
  color: #0723EA;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid #0723EA;
  border-radius: 50%;
  margin: 0 4px 8px;
}

.blog-pagination a.olderposts {
  margin-right: 0;
}

.blog-pagination a.pagearrow,
.blog-pagination a.next {
  border: 0;
  border-radius: 0;
  background: url(img/pagearrow.png) no-repeat center center;
  background-size: 18px;
  height: 22px;
}

.blog-pagination a.pagearrow.newerposts,
.blog-pagination a.prev {
  border: 0;
  border-radius: 0;
  background: url(img/pagearrow-prev.png) no-repeat center center;
  background-size: 18px;
  margin-left: 0;
  height: 22px;
}

.blog-pagination span.current {
  color: #fff;
  background: #0723EA;
}

.cat-heading {
  font-size: 2.8rem;
  margin: 0 0 30px;
  line-height: 1.2;
}

.blog-toprow {
  margin-bottom: 30px;
}

.cfw-inner {
  width: 80%;
  max-width: 420px;
}

.catfilter-wrap p {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  margin-bottom: 20px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: pragmatica, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 48px;
  height: 50px;
  padding: 0 12px;
  border: 1px solid #BCBEC0;
  border-radius: 5px;
  width: 100%;
  background: #fff url(img/dropdown-arrow.png) no-repeat 95% center;
  background-size: 12px;
}

.featuredpost-wrap {
  display: none;
}

@media only screen and (min-width: 768px) {

  .basic-blog {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .blogrow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  a.blogitem {
    margin-bottom: 40px;
    width: 49%;
  }

  .blogitem-imgwrap {
    height: 200px;
  }

  .blogitem-img {
    height: 200px;
  }

  .blog-pagination {
    padding-top: 40px;
  }

  .blog-pagination a,
  .blog-pagination span {
    width: 34px;
    line-height: 32px;
    font-size: 1.2rem;
    margin: 0 10px 12px;
    text-decoration: none;
  }

  .blog-pagination a.pagearrow,
  .blog-pagination a.next {
    background: url(img/pagearrow.png) no-repeat center center;
    background-size: 26px;
    height: 34px;
  }

  .blog-pagination a.pagearrow.newerposts,
  .blog-pagination a.prev {
    background: url(img/pagearrow-prev.png) no-repeat center center;
    background-size: 26px;
    height: 34px;
  }

}

@media only screen and (min-width: 1024px) {

  .basic-blog {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .blogitem-body {
    padding: 30px 40px 48px;
  }

  .blogitem-meta {
    margin-bottom: 16px;
  }

  .blogitem-title {
    min-height: 148px;
    font-size: 1.8rem;
    line-height: 1.33333;
  }

  .cat-heading {
    font-size: 4rem;
    margin: 0 0 48px;
  }

}

@media only screen and (min-width: 1025px) {

  a.blogitem {
    width: 32%;
  }

  img.cbcard-arrow {
    transform: translateX(-24px);
    opacity: 0;
    transition: all 0.25s linear;
  }

  a.blogitem:hover img.cbcard-arrow,
  a.fpost:hover img.cbcard-arrow {
    transform: translateX(0);
    opacity: 1;
  }

}

@media only screen and (min-width: 1280px) {

  .basic-blog {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  a.blogitem {
    width: 24%;
  }

  .blog-toprow {
    display: flex;
    margin-bottom: 40px;
  }

  .featuredpost-wrap {
    display: block;
    width: 49.35%;
  }

  .catfilter-wrap {
    width: 50.65%;
    margin-top: 0;
  }

  .featuredpost-wrap .bmp-info p {
    margin-bottom: 12px;
  }

  .featuredpost-wrap .bmp-preview {
    margin-bottom: 20px;
  }

  .featuredpost-wrap .bmp-info {
    width: 64%;
    padding: 24px 30px;
  }

  .featuredpost-wrap .bmp-imgwrap {
    width: 36%;
  }

  .cfw-inner {
    /*margin: 0 auto;*/
    max-width: 460px;
  }

}

/*-----------------------------------*\
  ARTICLE
\*-----------------------------------*/

body.single-post {
  overflow: auto;
  ;
}

.article-top {
  padding-top: 48px;
  margin-bottom: 50px;
}

.single-newsroom .article-top {
  padding-top: 120px;
  margin-bottom: 50px;
}

.article-date {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #0723EA;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-top h1 {
  font-size: 2.8rem;
  line-height: 1.28;
  margin: 0 0 40px;
}

.article-top h1.event-title {
  margin: 0 0 12px;
}

.event-date {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 32px;
  background: #0723EA;
  padding: 0 9px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.event-info {
  margin-bottom: 48px;
}

.event-meta {
  margin-bottom: 20px;
}

.event-meta-label {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 8px;
  color: #0723EA;
  letter-spacing: 0.2em;
}

.btn-event {
  display: inline-block;
  line-height: 48px;
  padding: 0 30px;
  color: #0723EA;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid #0723EA;
  border-radius: 9999em;
  text-decoration: none;
}

.btn-event:hover {
  background: #0723EA;
  color: #fff;
  text-decoration: none;
}

.atc-wrap {
  margin-bottom: 30px;
}

.article-meta {
  font-size: 0;
}

.am-author {
  margin-bottom: 20px;
}

.meta-label {
  color: #0723EA;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.meta-pic {
  display: inline-block;
  vertical-align: top;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  overflow: hidden;
  border-radius: 50%;
}

.meta-name {
  display: inline-block;
  vertical-align: top;
  font-size: 1.6rem;
}

.am-author .meta-name {
  line-height: 34px;
}

.meta-name a {
  color: #000;
}

.meta-name a:hover {
  color: #007bff;
}

#article-main,
.basic-events {
  margin-bottom: 96px;
}

.single-events #article-main {
  margin-bottom: 0;
}

.article-sidebar,
.article-sm {
  display: block;
}

.single-events .article-sidebar {
  display: block;
}

.article-msm {
  padding-top: 20px;
}

.single-events .article-msm {
  margin-bottom: 72px;
}

.asm-title {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  display: inline-block;
  vertical-align: top;
  line-height: 28px;
  color: #0723EA;
}

.asm-list {
  list-style: none;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  width: 192px;
}

.asm-list li {
  display: inline-block;
  vertical-align: top;
  width: 48px;
  padding: 0 10px;
}

.article-copy {
  font-size: 1.4rem;
}

.article-copy h2 {
  font-size: 2.8rem;
  margin: 0 0 20px;
}

.article-copy p {
  margin-bottom: 20px;
}

.article-copy ul {
  list-style: disc;
}

.article-copy ul,
.article-copy ol {
  margin: 0 0 20px 20px;
}

.article-copy li:not(.basic-events .article-copy li) {
  margin-bottom: 10px;
}

.speakers-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

#moreposts {
  margin: 0 -30px 72px;
  padding-bottom: 20px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

#moreposts h2 {
  font-size: 2.8rem;
  line-height: 1.25;
  margin: 0 0 30px 30px;
}

.mprow {
  width: 1126px;
  margin-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
}

a.mpitem {
  display: flex;
  width: 23.6%;
  height: 390px;
  overflow: hidden;
  position: relative;
  color: #fff;
  border-radius: 5px;
}

.mpi-img {
  height: 390px;
  width: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s linear;
}

a.mpitem:hover .mpi-img {
  transform: translateX(-50%) scale(1.25);
}

.mpi-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 160px 24px 24px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.mpi-meta {
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mpi-title {
  min-height: 76px;
}

thead.thead-blue {
  background-color: #020259;
  color: white;
}

tr.basic-grey {
  background-color: #c0bebe;
}

tr.light-grey {
  background-color: lightgray;
}

td.td-blue {
  background-color: deepskyblue;
  font-weight: 600;
}

td.td-green {
  background-color: #0f9670;
  font-weight: 600;
}

thead.thead-blue tr th {
  vertical-align: middle;
}

.single-events .article {
  margin-bottom: 48px;
}

.speakers-title {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #0723EA;
  margin-bottom: 28px;
}

.speaker-wrap {
  font-size: 1.4rem;
}

.speaker-imgwrap {
  width: 138px;
  height: 138px;
  padding: 3px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  margin-bottom: 28px;
}

.speaker-imgwrap:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#160358 0%, #130eb1 17.08%, #0723ea 35.01%, #264bfa 48.6%, #288af9 64.6%, #23c6fa 77.06%, #1cd8f9 100%);
}

.speaker-imgwrap img {
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

.speaker-name {
  font-weight: 700;
  line-height: 1.57;
}

.speaker-job {
  max-width: 150px;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {

  .article-copy {
    font-size: 1.6rem;
  }

  .article-date {
    margin-bottom: 12px;
  }

  .article-top h1 {
    font-size: 3.6rem;
  }

  .article-top h1.event-title {
    margin-bottom: 16px;
  }

  .article-meta {
    display: inline-block;
    vertical-align: top;
  }

  .meta-name {
    line-height: 34px;
  }

  .am-author {
    margin-bottom: 0;
    margin-right: 40px;
  }

  .event-info {
    margin-bottom: 48px;
  }

  .event-meta {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
    margin-right: 60px;
  }

  .speakers-title {
    margin-bottom: 24px;
  }

  .speaker-wrap {
    font-size: 1.6rem;
  }

  .speaker-imgwrap {
    width: 150px;
    height: 150px;
    padding: 4px;
    margin-bottom: 36px;
  }

}

@media only screen and (min-width: 1024px) {

  .article-top {
    padding-top: 72px;
    margin-bottom: 96px;
  }

  .single-newsroom .article-top {
    padding-top: 148px;
  }

  .article-date {
    margin-bottom: 16px;
  }

  .event-date {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }

  .article-top h1 {
    font-size: 4.8rem;
    margin: 0 0 48px;
  }

  .article-top h1.event-title {
    margin-bottom: 24px;
  }

  .event-info {
    margin-bottom: 60px;
  }

  #article-main {
    display: flex;
    justify-content: space-between;
  }

  .article {
    width: 65%;
  }

  .article-copy {
    max-width: 690px;
  }

  .article-sidebar {
    display: block;
    width: 30%;
    padding-top: 8px;
  }

  .as-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
  }

  h3.related-title {
    font-size: 1.8rem;
    line-height: 70px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    margin: 0 0 27px;
  }

  #moreposts {
    margin: 0 0 96px;
    padding-bottom: 0;
    overflow-x: auto;
  }

  #moreposts h2 {
    margin: 0 0 0 30px;
  }

  .mprow {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  a.fpost {
    position: relative;
    display: block;
    padding: 0 0 30px 123px;
    margin-bottom: 27px;
    min-height: 135px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    text-decoration: none;
  }

  .fpost-img {
    width: 103px;
    height: 103px;
    overflow: hidden;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .fpost-img img {
    height: 103px;
    width: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.25s linear;
  }

  a.fpost:hover .fpost-img img {
    transform: translateX(-50%) scale(1.25);
  }

  .fpost-meta {
    color: #bebebe;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
    margin-bottom: 6px;
    text-transform: uppercase;
  }

  .fpost-title {
    line-height: 1.333;
    color: #000;
    min-height: 48px;
    margin-bottom: 18px;
    font-size: 1.8rem;
  }

}

@media only screen and (min-width: 1280px) {

  .article-top {
    padding-top: 96px;
    margin-bottom: 130px;
  }

  .single-newsroom .article-top {
    padding-top: 180px;
  }

  .single-events .article-top {
    margin-bottom: 72px;
  }

  .article-date {
    margin-bottom: 20px;
  }

  .article-top h1 {
    font-size: 6rem;
  }

  #article-main,
  .basic-events {
    margin-bottom: 124px;
  }

  .single-events #article-main {
    padding-top: 96px;
    border-top: 1px solid #e5e5e5;
  }

  .article-msm {
    display: none;
  }

  .article {
    display: flex;
  }

  .single-events .article {
    margin-bottom: 96px;
  }

  .article-sm {
    display: block;
    text-align: center;
    padding: 5px 40px 0 0;
  }

  .asm-content {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
  }

  .asm-title {
    display: block;
    line-height: 1;
    margin-bottom: 30px;
  }

  .asm-list {
    display: block;
    width: 48px;
  }

  .asm-list li {
    display: block;
    margin-bottom: 36px;
  }

  #moreposts h2 {
    margin: 0 0 40px 54px;
    font-size: 4rem;
  }

  a.mpitem {
    height: 533px;
  }

  .mpi-inner {
    padding: 240px 40px 40px;
  }

  .mpi-img {
    height: 533px;
  }

  .mpi-title {
    font-size: 1.8rem;
  }

  .article-copy h2 {
    font-size: 4rem;
    margin: 0 0 30px;
  }

}

@media only screen and (min-width: 1440px) {

  .article-sm {
    padding: 5px 120px 0 0;
  }

}

/*-----------------------------------*\
  POPUP FORM
\*-----------------------------------*/

.modal-content {
  border-radius: 4.8px;
}

#modaltitle {
  font-size: 32px;
  font-family: pragmatica, sans-serif;
  margin-top: 26.500px;
  margin-bottom: 8px;
  font-weight: 300;
}

.modal-header {
  padding: 16px;
}

.modal-header .close {
  padding: 16px;
  font-size: 24px;
}

.modal-body {
  padding: 16px;
}