.material-icons {
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: 24px;
}
.material-icons.arrow-left:before {
  content: "\e314";
}
.material-icons.arrow-right:before {
  content: "\e315";
}
.material-icons.arrow-down:before {
  content: "\e313";
}
.material-icons.arrow-up:before {
  content: "\e316";
}
.material-icons.menu:before {
  content: "\e5d2";
}
.material-icons.close:before {
  content: "\e5cd";
}

*:focus {
  outline: none;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  /* prevent callout to copy image, etc when tap to hold*/
  -webkit-text-size-adjust: none;
  /* prevent webkit from resizing text to fit*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* prevent tap highlight color / shadow*/
  -webkit-overflow-scrolling: touch;
}

textarea, [contenteditable],
input[type=text],
input[type=text]:before,
input[type=text]:after {
  border: 0;
  width: 100%;
  -webkit-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}
textarea::-webkit-input-placeholder, [contenteditable]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=text]:before::-webkit-input-placeholder,
input[type=text]:after::-webkit-input-placeholder {
  color: #E0E0E0;
}
textarea:-moz-placeholder, [contenteditable]:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=text]:before:-moz-placeholder,
input[type=text]:after:-moz-placeholder {
  color: #E0E0E0;
}
textarea::-moz-placeholder, [contenteditable]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=text]:before::-moz-placeholder,
input[type=text]:after::-moz-placeholder {
  color: #E0E0E0;
}
textarea:-ms-input-placeholder, [contenteditable]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=text]:before:-ms-input-placeholder,
input[type=text]:after:-ms-input-placeholder {
  color: #E0E0E0;
}

body {
  line-height: 1.5;
  position: relative;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400 !important;
}

a {
  outline: none;
  color: #05629B;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
}
ul::after {
  clear: both;
  content: "";
  display: table;
}
ul.disc li {
  padding-left: 10px;
  list-style: disc outside;
  float: none;
}
ul.circle li {
  padding-left: 10px;
  list-style: circle inside !important;
  float: none;
}
ul.square li {
  padding-left: 10px;
  list-style: square inside !important;
  float: none;
}
ul.decimal li {
  padding-left: 10px;
  float: none;
}

ol::after {
  clear: both;
  content: "";
  display: table;
}
ol li {
  float: none;
}
ol.roman li {
  padding-left: 10px;
  list-style: upper-roman outside;
  float: none;
}
ol.alpha li {
  padding-left: 10px;
  list-style: lower-alpha outside;
  float: none;
}

.fixed {
  position: fixed;
  width: 100%;
}

#blog .site-header, #btn__search--open, .bialty-container, .pp-multiple-authors-wrapper {
  display: none;
}

#blog #content {
  margin: 0;
}

#blog #content p {
  padding: 0;
}

#blog #content ul > li {
  margin-bottom: 0;
}

#blog #content.fluid ul, #blog #content.fluid ol {
  margin-left: 0;
}

@media only screen and (max-width: 1279px) {
  #blog #content,
#blog .site-inner {
    padding: 0;
    margin: 0;
  }
}
html {
  line-height: 1.5;
  font-size: 18px;
}

img {
  max-width: 100%;
}

.wrap {
  max-width: 1248px !important;
  margin: 0 auto !important;
}

.cpbtn {
  border: none;
  height: 40px;
  color: #333;
  margin: 0 auto;
  padding: 0 20px;
  cursor: pointer;
  min-width: 150px;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  border-radius: 32px;
  background: #ffce05;
  display: inline-block;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
.cpbtn.outline {
  background: transparent !important;
  border: 1px solid #2E4787;
  color: #2E4787 !important;
}
.cpbtn.outline:hover {
  color: #fff !important;
  background: #2E4787 !important;
}
.cpbtn.blue {
  padding: 0 50px;
  color: #fff !important;
  background: #2E4787 !important;
}

[class$=__desktop] {
  display: block;
}
@media only screen and (max-width: 1023px) {
  [class$=__desktop] {
    display: none;
  }
}

[class$=__mobile] {
  display: none;
}
@media only screen and (max-width: 1023px) {
  [class$=__mobile] {
    display: block;
  }
}

#container {
  display: block;
  max-width: 1248px;
  margin: 0 auto;
}
#container p {
  margin: 20px 0;
  font-size: 20px;
}
@media only screen and (max-width: 480px) {
  #container p {
    font-size: 14px;
    margin: 10px 0;
  }
}
#container h1 {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
@media only screen and (max-width: 767px) {
  #container h1 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
#container h2, #container h3 {
  color: #2e4787;
  font-weight: 600;
}
#container h2 {
  font-size: 60px;
  line-height: 54px;
}
@media only screen and (max-width: 1200px) {
  #container h2 {
    font-size: 30px;
    line-height: normal;
  }
  #container h2 br {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  #container h2 {
    font-size: 22px;
  }
}
#container h3 {
  font-size: 32px;
  line-height: 54px;
}
@media only screen and (max-width: 480px) {
  #container h3 {
    font-size: 22px;
  }
}
#container input[type=text],
#container input[type=email],
#container textarea {
  width: 100%;
  height: 46px;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
}
#container textarea {
  height: 120px;
}
#container textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c3c3c3;
  font-size: 13px;
}
#container textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #c3c3c3;
  font-size: 13px;
}
#container textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #c3c3c3;
  font-size: 13px;
}
#container textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #c3c3c3;
  font-size: 13px;
}
#container header {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1220px) {
  #container header {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 480px) {
  #container header {
    display: block;
  }
}
#container header > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}
#container header #cplogo {
  display: block;
  margin: 0 auto;
  max-width: 200px;
}
#container header .cpbtn {
  font-weight: 600 !important;
  font-size: 16px !important;
}
@media only screen and (max-width: 480px) {
  #container header .cpbtn {
    display: none;
  }
}
#container.terms header {
  padding: 30px 30px 0;
  border-bottom: 0;
}
#container.terms main {
  display: block;
  max-width: 920px;
  padding: 0 20px;
  margin: 30px auto;
}
#container.terms h3 {
  max-width: 750px;
  margin: 0 auto;
  line-height: normal;
  text-align: center;
}
#container.terms p {
  font-size: 16px;
}
#container.terms .disclaimer {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #f7f7f7;
}
#container.terms .disclaimer p {
  color: #838383;
  font-size: 14px;
}
#container.terms ul li {
  margin: 8px 20px;
}