/* top/bottom padding for panels */
/* border radius */
@font-face {
  font-family: "open_sansbold";
  src: url("../fonts/OpenSans-Bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "open_sansregular";
  src: url("../fonts/OpenSans-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "bebasregular";
  src: url("../fonts/Bebas-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.ttf") format("tff"), url("../fonts/slick.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: #fff;
  font-family: "open_sansregular", helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.regular-font {
  font-family: "open_sansregular", helvetica, arial, sans-serif;
}

.bold-font {
  font-family: "open_sansbold", helvetica, arial, sans-serif;
}

.page-content a {
  color: #47caff;
  text-decoration: underline;
  font-family: "open_sansbold", helvetica, arial, sans-serif;
}

.main-container {
  width: 100%;
  max-width: 1300px;
  padding: 10px;
  margin: 0 auto;
}

h2, h3 {
  font-family: "open_sansbold", helvetica, arial, sans-serif;
}

h2 {
  font-size: 36px;
  color: #1c1c3c;
}

.header-margin {
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
}

p {
  color: #525f7f;
  font-size: 18px;
  line-height: 28px;
}

.smaller-text {
  font-size: 14px;
  line-height: 22px;
}

.smallest-text {
  font-size: 12px;
  line-height: 20px;
}

.uppercase-font {
  text-transform: uppercase;
}

.outer-glow {
  -webkit-box-shadow: 0px 0px 28px -2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 28px -2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 28px -2px rgba(0, 0, 0, 0.15);
}

a, a:hover, a:active, a:visited {
  text-decoration: none;
}

.page-content a:hover {
  opacity: 0.6;
}

.form-header {
  width: 100%;
  max-width: 1007px;
  text-align: center;
  margin: 80px auto 0 auto;
}
.form-header p {
  font-size: 18px;
}

.red-asterisk {
  color: #FF0000;
}

.img-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.img-card img {
  width: 100%;
}
.img-card .card-text {
  padding: 20px 10px 5px 10px;
}
.img-card .card-text-thirty {
  padding: 10px 30px 30px 30px;
}

a.img-card:hover {
  opacity: 1;
}

.two-column-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.two-column-card .text-column {
  padding: 30px 0 30px 30px;
}
.two-column-card .image-column {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.two-column-card .image-column svg {
  display: block;
  width: 90px;
  height: 100%;
}

button {
  font-family: "open_sansregular", helvetica, arial, sans-serif;
}

.button-green, .button-blue, .button-salmon {
  border-radius: 3px;
  font-size: 14px;
  color: #FFFFFF;
  height: 36px;
  border-style: none;
  letter-spacing: 1px;
}

/* Green button */
.button-green {
  background: #5ac686;
}

/* Blue button */
.button-blue {
  background: #52adf6;
}

/* salmon button */
.button-salmon {
  background: #ff746f;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.main-nav .main-nav-container {
  width: 100%;
  max-width: 1300px;
  padding: 10px 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav .logo {
  width: 110px;
}
.main-nav ul {
  padding: 0;
  margin: 0;
}
.main-nav .nav-links {
  text-align: center;
}
.main-nav .nav-links li {
  position: relative;
}
.main-nav .right-links {
  text-align: right;
}
.main-nav li {
  list-style-type: none;
  padding: 10px;
  display: inline-block;
  vertical-align: middle;
}
.main-nav a, .main-nav li {
  color: #fff;
}
.main-nav .link-dropdown {
  cursor: pointer;
}

#menuToggle, #menuToggle input, #menuToggle span, .fade-bg {
  display: none;
}

.triangle {
  background-color: #fff;
  text-align: left;
  margin: -20px auto 0 auto;
}

.triangle:before,
.triangle:after {
  content: "";
  position: absolute;
  background-color: inherit;
}

.triangle,
.triangle:before,
.triangle:after {
  width: 15px;
  height: 15px;
  border-top-right-radius: 30%;
}

.triangle {
  transform: rotate(-60deg) skewX(-30deg) scale(1, 0.866);
}

.triangle:before {
  transform: rotate(-135deg) skewX(-45deg) scale(1.414, 0.707) translate(0, -50%);
}

.triangle:after {
  transform: rotate(135deg) skewY(-45deg) scale(0.707, 1.414) translate(50%);
}

.dropdown-element {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.dropdown-element .dropdown-list {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px 0;
  min-width: 370px;
}
.dropdown-element img {
  width: 40px;
  margin-right: 10px;
}
.dropdown-element a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 30px;
  text-align: left;
}
.dropdown-element a:hover {
  opacity: 1;
  background-color: #f3f6f8;
}
.dropdown-element a:hover .bold-font {
  color: #1c1c3c;
}
.dropdown-element p {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.nav-links .link-dropdown:hover > .dropdown-element {
  display: block;
}

.header-color {
  width: 100%;
  height: 74px;
  background-color: #525f7f;
}

.webinar-container {
  width: 100%;
  background-color: #16142f;
  padding: 10px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  z-index: 9999;
}

.webinar-container a, .webinar-container a:visited {
  color: #69cdff !important;
  font-weight: bold;
}

.column-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.half-column {
  width: 50%;
}

.seventy-column {
  width: 70%;
}

.sixty-column {
  width: 60%;
}

.forty-column {
  width: 40%;
}

.thirty-column {
  width: 32%;
}

.wave-container {
  position: relative;
}
.wave-container svg {
  position: absolute;
  bottom: 0;
}

.curve-svg {
  width: 100%;
  fill: #fff;
}

h1 {
  font-size: 40px;
  font-family: "open_sansbold", helvetica, arial, sans-serif;
  margin-bottom: 15px;
}

.panel1 {
  color: #fff;
}
.panel1 p {
  color: #fff;
}
.panel1 button {
  margin-top: 25px;
}

.grow {
  transition: all 0.2s ease-in-out;
}

.grow:hover {
  transform: scale(1.1);
}

.main-footer {
  background-color: #515d6a;
  padding: 60px 0 10px 0;
  color: #fff;
}
.main-footer a, .main-footer a:hover, .main-footer a:active, .main-footer a:visited {
  color: #fff;
}
.main-footer p {
  font-size: 16px;
  color: #fff;
}

.top-footer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 160px;
}
.top-footer ul {
  padding: 0 0 40px 0;
  margin: 0 100px 0 0;
}
.top-footer li {
  list-style-type: none;
  margin-bottom: 5px;
}

.bottom-footer ul {
  padding: 0;
  margin: 0;
}
.bottom-footer li {
  list-style-type: none;
  margin-right: 40px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: center;
}

.social-media-links img {
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}

.get-started {
  padding: 50px 10px 45px 10px;
  text-align: center;
  color: #fff;
}
.get-started .bold-font {
  color: #1c1c3c;
}
.get-started p, .get-started button {
  display: inline-block;
  margin: 5px;
}
.get-started button {
  width: 160px;
}

@media (max-width: 740px) {
  .main-nav {
    padding: 0;
    height: 47px;
  }
  .main-nav .logo {
    top: 11px;
  }

  .nav-links, .right-links {
    display: none;
  }

  #menuToggle {
    display: block;
    position: relative;
    margin-left: auto;
    right: 10px;
    top: 0px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    padding-top: 5px;
  }

  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 5;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
  }

  #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 4;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(3) {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }

  #menuToggle input:checked ~ span:nth-last-child(4) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(3) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: absolute;
    width: 300px;
    margin: 0 0 0 -225px;
    padding: 30px;
    padding-top: 100px;
    top: -10px;
    bottom: 0;
    min-height: 100vh;
    z-index: 3;
    background: #f3f6f8;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menu a {
    color: #1c1c3c;
  }

  #menu li {
    padding: 10px 0;
    font-size: 18px;
    display: block;
  }

  #menu .btn {
    font-size: 18px;
  }

  .fade-bg {
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

  #menuToggle input:checked ~ ul {
    transform: none;
  }

  #menuToggle input:checked ~ .fade-bg {
    display: block;
  }
}
@media (max-width: 1300px) {
  .main-container {
    padding: 30px;
  }

  .main-nav .main-nav-container {
    padding: 10px 30px;
  }
}
@media (max-width: 600px) {
  .main-footer {
    padding: 60px 20px 10px 20px;
  }

  .top-footer ul {
    margin: 0 60px 0px 0;
  }

  .bottom-footer li {
    margin: 0 30px 10px 0;
  }
}
@media (max-width: 480px) {
  .webinar-container, .webinar-btn {
    font-size: 10px;
  }
}

/*# sourceMappingURL=master.css.map */
