/* fonts */

/* colors */

/* mixins */
.page-width {
    width: 100%;
    max-width: 1000px;
    padding: 0 16px;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.transition {
    transition: 0.4s;
}

.display-flex {
    display: -webkit-box;
    display: -ms-display-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    display: -webkit-box;
    display: -ms-display-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -18px;
    margin-right: -18px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* grid */
.columns {
    display: -webkit-box;
    display: -ms-display-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.row {
  display: -webkit-box;
  display: -ms-display-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -18px;
  margin-right: -18px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.col-100 {
  padding: 0 18px;
  max-width: 100%;
  -webkit-box-flex: 1 100%;
  -ms-flex: 1 100%;
  flex: 1 100%;
}
.col-75 {
  padding: 0 18px;
  max-width: 75%;
  -webkit-box-flex: 1 75%;
  -ms-flex: 1 75%;
  flex: 1 75%;
}
.col-70 {
  padding: 0 18px;
  max-width: 70%;
  -webkit-box-flex: 1 70%;
  -ms-flex: 1 70%;
  flex: 1 70%;
}
.col-66 {
  padding: 0 18px;
  max-width: 66.666%;
  -webkit-box-flex: 1 66.666%;
  -ms-flex: 1 66.666%;
  flex: 1 66.666%;
}
.col-60 {
  padding: 0 18px;
  max-width: 60%;
  -webkit-box-flex: 1 60%;
  -ms-flex: 1 60%;
  flex: 1 60%;
}
.col-50 {
  padding: 0 18px;
  max-width: 50%;
  -webkit-box-flex: 1 50%;
  -ms-flex: 1 50%;
  flex: 1 50%;
}
.col-40 {
  padding: 0 18px;
  max-width: 40%;
  -webkit-box-flex: 1 40%;
  -ms-flex: 1 40%;
  flex: 1 40%;
}
.col-33 {
  padding: 0 18px;
  max-width: 33.333%;
  -webkit-box-flex: 1 33.333%;
  -ms-flex: 1 33.333%;
  flex: 1 33.333%;
}
.col-30 {
  padding: 0 18px;
  max-width: 30%;
  -webkit-box-flex: 1 30%;
  -ms-flex: 1 30%;
  flex: 1 30%;
}
.col-25 {
  padding: 0 18px;
  max-width: 25%;
  -webkit-box-flex: 1 25%;
  -ms-flex: 1 25%;
  flex: 1 25%;
}
.columns-2 {
  column-count: 2;
  column-gap: 50px;
  column-width: 300px;
}
.fright {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: right;
}
section,
header,
footer,
.content {
  display: table;
  width: 100%;
}
.main {
  width: 100%;
  max-width: 1000px;
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.only-phone {
  display: none;
}
@media (max-width: 730px) {
  .only-phone {
    display: block;
  }
}
/* global */
* {
  box-sizing: border-box;
}
body {
  color: #fff;
  overflow-x: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, Sans-serif;
}
h1,
h2,
h3,
h4,
p,
td,
a,
li,
pre,
blockquote,
q,
input,
textarea {
  font-family: 'Helvetica Neue', Helvetica, Arial, Sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 20px;
  color: #0d0d0d;
  line-height: 1.6;
}

.markdown-text > p:empty {
    display: none;
}

h1,
h2,
h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, Sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style-type: none;
}
img {
  max-width: 100%;
}
input[type="text"] {
  font-size: 16px;
}
/* links */
a {
  transition: 0.4s;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
a .icon,
a .fa {
  transition: 0.4s;
}
a:hover {
  text-decoration: none;
}
p a,
li a {
  color: #db5a21;
  border-bottom: 1px solid #db5a21;
}
p a:hover,
li a:hover {
  border-color: transparent;
}

/* buttons */

.no-js #check_resolver,
.no-js #check_form {
    display: none;
}

em.jshide {
    display: none;
}

.no-js em.jshide {
    display: block;
    color: initial;
    font-size: small;
}

.btn {
  border-radius: 25px;
  padding: 12px 10px 10px;
  border: 0;
  outline: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 2px solid transparent;
  letter-spacing: 0.6px;
}
.btn-primary {
  border-color: #122f41;
  color: #122f41;
}
.btn-primary:hover {
  background: #122f41;
  color: #fff;
}

.btn-loading,
#check_form.btn-loading {
    position: relative;
    background: #dcdcdc;
    border-color: transparent;
    overflow: hidden;
    border-width: 0;
    padding: 14px 12px 12px;
    z-index: 50;
    pointer-events: none;
}

#check_form.btn-loading {
    padding: 1px 0;
}

#check_form.btn-loading::before,
.btn-loading::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 160px;
    height: 30px;
    margin-left: -80px;
    margin-top: -15px;
    background: linear-gradient(to right, #122f41, #dcdcdc);
    z-index: -10;
    -webkit-animation: animLoadingBtn 1s linear infinite;
    animation: animLoadingBtn 1s linear infinite;
}

/* different button so different size */
#check_form.btn-loading::before {
    -webkit-animation: animLoadingFrm 1s linear infinite;
    animation: animLoadingFrm 1s linear infinite;
    margin-left: -125px;
    margin-top: -15px;
}

#check_form.btn-loading::after,
.btn-loading::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 25px;
    z-index: -2;

    /* hack to keep this on top of ::before */
    -webkit-transform: translate3d(0, 0, 0);
}

#check_form.btn-loading:hover,
.btn-loading:hover {
    background: #dcdcdc;
}

@-webkit-keyframes animLoadingBtn {
  0% {
    -webkit-transform: translate(0, -70%) rotate(0);
    transform: translate(0, -70%) rotate(0);
    width: 160px;
    left: 50%;
  }
  20% {
    -webkit-transform: translate(-70%, -70%) rotate(0deg);
    transform: translate(-70%, -70%) rotate(0deg);
    width: 80px;
    left: 50%;
  }
  30% {
    -webkit-transform: translate(-170%, 30%) rotate(-180deg);
    transform: translate(-170%, 30%) rotate(-180deg);
    width: 40px;
    left: 50%;
  }
  50% {
    -webkit-transform: translate(0%, 60%) rotate(-180deg);
    transform: translate(0%, 60%) rotate(-180deg);
    width: 160px;
    left: 50%;
  }
  70% {
    -webkit-transform: translate(20%, 60%) rotate(-180deg);
    transform: translate(20%, 60%) rotate(-180deg);
    width: 80px;
    left: 100%;
  }
  80% {
    -webkit-transform: translate(120%, -40%) rotate(-360deg);
    transform: translate(120%, -40%) rotate(-360deg);
    width: 40px;
    left: 100%;
  }
  100% {
    -webkit-transform: translate(0, -70%) rotate(-360deg);
    transform: translate(0, -70%) rotate(-360deg);
    width: 160px;
    left: 50%;
  }
}
@keyframes animLoadingBtn {
  0% {
    -webkit-transform: translate(0, -70%) rotate(0);
    transform: translate(0, -70%) rotate(0);
    width: 160px;
    left: 50%;
  }
  20% {
    -webkit-transform: translate(-70%, -70%) rotate(0deg);
    transform: translate(-70%, -70%) rotate(0deg);
    width: 80px;
    left: 50%;
  }
  30% {
    -webkit-transform: translate(-170%, 30%) rotate(-180deg);
    transform: translate(-170%, 30%) rotate(-180deg);
    width: 40px;
    left: 50%;
  }
  50% {
    -webkit-transform: translate(0%, 60%) rotate(-180deg);
    transform: translate(0%, 60%) rotate(-180deg);
    width: 160px;
    left: 50%;
  }
  70% {
    -webkit-transform: translate(20%, 60%) rotate(-180deg);
    transform: translate(20%, 60%) rotate(-180deg);
    width: 80px;
    left: 100%;
  }
  80% {
    -webkit-transform: translate(120%, -40%) rotate(-360deg);
    transform: translate(120%, -40%) rotate(-360deg);
    width: 40px;
    left: 100%;
  }
  100% {
    -webkit-transform: translate(0, -70%) rotate(-360deg);
    transform: translate(0, -70%) rotate(-360deg);
    width: 160px;
    left: 50%;
  }
}

@-webkit-keyframes animLoadingFrm {
  0% {
    -webkit-transform: translate(0, -70%) rotate(0);
    transform: translate(0, -70%) rotate(0);
    width: 240px;
    left: 50%;
  }
  20% {
    -webkit-transform: translate(-70%, -70%) rotate(0deg);
    transform: translate(-70%, -70%) rotate(0deg);
    width: 120px;
    left: 50%;
  }
  30% {
    -webkit-transform: translate(-170%, 30%) rotate(-180deg);
    transform: translate(-170%, 30%) rotate(-180deg);
    width: 60px;
    left: 50%;
  }
  50% {
    -webkit-transform: translate(0%, 60%) rotate(-180deg);
    transform: translate(0%, 60%) rotate(-180deg);
    width: 240px;
    left: 50%;
  }
  70% {
    -webkit-transform: translate(20%, 60%) rotate(-180deg);
    transform: translate(20%, 60%) rotate(-180deg);
    width: 120px;
    left: 100%;
  }
  80% {
    -webkit-transform: translate(120%, -40%) rotate(-360deg);
    transform: translate(120%, -40%) rotate(-360deg);
    width: 60px;
    left: 100%;
  }
  100% {
    -webkit-transform: translate(0, -70%) rotate(-360deg);
    transform: translate(0, -70%) rotate(-360deg);
    width: 240px;
    left: 50%;
  }
}
*/
@keyframes animLoadingFrm {
  0% {
    -webkit-transform: translate(0, -70%) rotate(0);
    transform: translate(0, -70%) rotate(0);
    width: 240px;
    left: 50%;
  }
  20% {
    -webkit-transform: translate(-70%, -70%) rotate(0deg);
    transform: translate(-70%, -70%) rotate(0deg);
    width: 120px;
    left: 50%;
  }
  30% {
    -webkit-transform: translate(-170%, 30%) rotate(-180deg);
    transform: translate(-170%, 30%) rotate(-180deg);
    width: 60px;
    left: 50%;
  }
  50% {
    -webkit-transform: translate(0%, 60%) rotate(-180deg);
    transform: translate(0%, 60%) rotate(-180deg);
    width: 240px;
    left: 50%;
  }
  70% {
    -webkit-transform: translate(20%, 60%) rotate(-180deg);
    transform: translate(20%, 60%) rotate(-180deg);
    width: 120px;
    left: 100%;
  }
  80% {
    -webkit-transform: translate(120%, -40%) rotate(-360deg);
    transform: translate(120%, -40%) rotate(-360deg);
    width: 60px;
    left: 100%;
  }
  100% {
    -webkit-transform: translate(0, -70%) rotate(-360deg);
    transform: translate(0, -70%) rotate(-360deg);
    width: 240px;
    left: 50%;
  }
}

.block-btn {
  max-width: 264px;
  text-align: center;
}

.no-js .block-btn {
    max-width: none;
    text-align: left;
}

.block-input-btn {
  width: 100%;
  max-width: 480px;
  position: relative;
}

#check_form {
    border: 2px solid #122f41;
    border-radius: 25px;
    height: 52px;
    line-height: 1.6em;
}

.block-input-btn input[type="text"] {
    padding: 0 125px 0 24px;
    height: 48px;
    border: 0;
    width: 100%;
    outline: 0;
    background: transparent;
}

.btn-primary.wait,
.block-input-btn input.wait {
    border: 2px solid #122f41;
    animation: border-animation 0.5s ease infinite;
    border-color: #122f41 #dcdcdc;
}

.block-input-btn input.wait {
    border: 0;
}

@keyframes border-animation {
    0% { border-color: #122f41 #dcdcdc #dcdcdc #dcdcdc; }
    35% { border-color: #dcdcdc #122f41 #dcdcdc #dcdcdc; }
    65% { border-color: #dcdcdc  #dcdcdc #122f41 #dcdcdc; }
    100% { border-color: #dcdcdc  #dcdcdc #dcdcdc  #122f41; }
}

#check_form.dnssec-ok,
.btn-primary.dnssec-ok {
    border-color: #6eb43f;
}

#check_form.dnssec-notok,
.btn-primary.dnssec-notok {
    border-color: #ee2e24;
}

.btn-primary.dnssec-badecdsa {
    border-color: #ff8d4c;
}

#check_form.error {
    border-color: #122f41;
}

.block-sub-btn.hidden,
.block-sub-btn span {
    display: none;
    max-width: 227px;
    margin: 0 auto;
}

.block-sub-btn {
    font-size: 16px;
    margin-top: 0.8em;
    text-align: left;
    max-width: 264px;
}

.block-sub-btn span,
.block-sub-btn span a {
    font-size: 16px;
    color: #262626;
}

.block-sub-btn span a {
    text-decoration: underline;
}

.block-sub-btn.dnssec-notok span.je,
.block-sub-btn.dnssec-ok span.neni,
.block-sub-btn.dnssec-ok span.mozna,
.block-sub-btn.dnssec-notok span.mozna {
    display: hide;
}

.block-sub-btn.dnssec-notok span.neni,
.block-sub-btn.dnssec-ok span.je {
    display: block;
}

.block-input-btn .btn {
    max-width: 102px;
    border-radius: 0 25px 25px 0;
    border-left: 0;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.4s;
    line-height: 1.65em;
}

.block-input-btn .btn::before {
    content: "";
    width: 1px;
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    background: #122f41;
}

/*
.btn.good,
input {
    border-color: #6eb43f;
}

.btn.error,
input {
    border-color: #ee2e24;
}

.good .btn,
.good input {
    border-color: #6eb43f !important;
}
*/

.good .btn:hover {
/*    background: #6eb43f !important; */
}

.error .btn,
.error input {
/*    border-color: #ee2e24 !important; */
}

.error .btn:hover {
/*    background: #ee2e24 !important; */
}

#block-sub-input-btn {
    max-width: 424px;
    text-align: center;
    color: #333;
    margin-top: 0.8em;
}

#block-sub-input-btn.hidden {
    display: none;
}

#block-sub-input-btn span {
    display: none;
    text-align: center;
    max-width: 347px;
    margin: 0 auto;
}

#block-sub-input-btn.dnssec-notok span.dnssec-notok,
#block-sub-input-btn.dnssec-ok span.dnssec-ok,
#block-sub-input-btn.error span.error,
#block-sub-input-btn.neni span.neni {
    display: block;
}
/*
#block-sub-input-btn.dnssec-notok span.dnssec-notok {
    color: #ee2e24;
}

#block-sub-input-btn.dnssec-ok span.dnssec-ok {
    color: #6eb43f;
}

#block-sub-input-btn.neni span.neni {
    color: #ff8d4c;
}

#block-sub-input-btn.error span.error {
    color: #000;
}
*/

/* tophead */
.tophead {
  height: 100vh;
  min-height: 1000px;
  background: url(/files/dnssec/tophead-bg.svg) center center no-repeat #122f41;
  background-size: cover;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-display-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.tophead .main {
  position: relative;
  top: -50px;
}
.tophead .logo {
  position: relative;
  margin: 0 auto 7%;
  width: 300px;
  height: 109px;
  background: url(/files/dnssec/logo-DNSSEC.svg) center center no-repeat;
  background-size: contain;
}
.tophead-image {
  position: absolute;
  width: 246px;
  height: 208px;
  background: url(/files/dnssec/tophead-robot.svg) center center no-repeat;
  background-size: contain;
  right: calc(50% - 968px / 2 - 120px);
  bottom: -72px;
}
/* video */
.video-box {
  /* height: 544px; */
  margin: 0 auto;
  width: 100%;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* content */
.content {
  padding-top: 66px;
  /* padding-bottom: 150px; */
}
.content article {
  margin-bottom: 130px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.content h1,
.content h2,
.content h3 {
  color: #122f41;
  font-size: 32px;
  margin: 0 0 25px;
}
.content h2 {
  line-height: 1.45;
  max-width: 420px;
}
.content h1 {
  font-size: 48px;
  margin-bottom: 44px;
}
.content h1 .title-small {
  display: block;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.content p {
  margin: 0;
  padding-bottom: 32px;
  font-size: 20px;
}
.content ul {
  margin-bottom: 18px;
}
.content li {
  font-size: 20px;
}
.content li a {
  font-size: 20px;
}
/* blocks */
.blocks,
.blocks-gray,
.blocks-gray-2 {
  position: relative;
  margin-bottom: 100px;
}
.blocks .block p,
.blocks-gray .block p,
.blocks-gray-2 .block p {
  max-width: 480px;
}
.blocks-top .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.blocks-top .block {
  margin-bottom: 25px;
}
.blocks-top .image-block-large {
  margin-bottom: 40px;
}
.image-block {
  width: 100%;
}
.image-block img {
  max-width: 320px;
  width: 100%;
  height: auto;
}
.image-block:empty {
  background: #4d74b4;
  height: 320px;
  max-width: 320px;
  width: 100%;
  display: inline-block;
}
.image-block-large img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.blocks-gray {
  padding-top: 72px;
  background: #f6f6f6;
  margin-bottom: 62px;
}
.blocks-gray .block {
  margin-bottom: 72px;
  position: relative;
}
.blocks-gray .block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  background: #fff;
  height: 2px;
}
.blocks-gray .top-title {
  margin-top: 0 !important;
  margin-bottom: 50px;
}
.blocks-gray .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blocks-gray .row:last-child .block::before {
  display: none;
}
.blocks-gray-2 {
  margin-bottom: 130px;
  overflow: hidden;
}
.blocks-gray-2 .row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
}
.blocks-gray-2 .block {
  padding: 0;
}
.blocks-gray-2 .block h2 {
  margin-bottom: 30px;
}
.blocks-gray-2 .block-text {
  padding: 40px 40px 46px 20px;
  position: relative;
  background: #f6f6f6;
}
.blocks-gray-2 .image-block {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-display-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blocks-gray-2 .image-block img {
  max-width: 100%;
  z-index: 2;
  position: relative;
  left: -20px;
  margin-right: auto;
  max-width: 480px;
}
.blocks-gray-2 .image-block::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 34px;
  right: 0;
  left: 0;
  border: 20px solid #f6f6f6;
}
.blocks-gray-2 .image-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 140px;
  bottom: 0;
  background: #f6f6f6;
  z-index: -1;
}
.blocks-gray-2 .fright .image-block img {
  left: auto;
  right: -15px;
  margin-left: auto;
  margin-right: inherit;
}
.blocks-gray-2 .fright .image-block::after {
  right: auto;
  left: 0;
}
.blocks-gray-2 .fright ~ .block-text {
  padding-left: 40px;
  padding-right: 0;
}
.blocks-gray-2 .block-btn,
.blocks-gray-2 .block-input-btn {
  margin-top: 38px;
}
.blocks-last {
  margin-bottom: 0;
  padding-bottom: 45px;
  padding-top: 60px;
  margin-top: -45px;
}
.blocks-last .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.blocks-last .block {
  margin-bottom: 0;
}
.blocks-last .block p,
.blocks-last .block li {
  max-width: 410px;
}
.blocks-last .block p strong,
.blocks-last .block li strong {
  display: inline-block;
}
.blocks-last .block p a,
.blocks-last .block li a {
  color: #0d0d0d;
  border-color: transparent;
}
.blocks-last .block p a:hover,
.blocks-last .block li a:hover {
  border-color: #0d0d0d;
}
.blocks-last h2 {
  margin-bottom: 15px;
}
/* footer */
.bottom {
  background: #0e2533;
  padding: 38px 0;
}
.bottom .logo {
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 0;
  width: 175px;
  height: 25px;
  background: url(/files/dnssec/logo-cznic-footer.svg) center center no-repeat;
  background-size: contain;
}
.bottom .copy {
  padding-right: 200px;
}
.bottom .copy p {
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
/* responsive */
@media (max-width: 1280px) {
  .tophead-image {
    right: 16px;
  }
}
@media (max-width: 980px) {
  .blocks-gray {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .blocks-gray .block {
    margin-bottom: 50px;
  }
  .blocks-gray .block::before {
    bottom: -20px;
  }
  .blocks-gray-2 .main {
    padding: 0;
  }
  .blocks-last {
    margin-bottom: 0;
    padding-top: 60px;
  }
  .blocks-last .block {
    margin-bottom: 0;
  }
}
@media (max-width: 860px) {
  .tophead {
    min-height: 740px;
  }
  .blocks-top {
    margin-bottom: 40px;
  }
  .blocks-gray-2 {
    margin-bottom: 60px;
  }
  .blocks-gray-2 .fright {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .blocks-gray-2 .col-100,
  .blocks-gray-2 .col-75,
  .blocks-gray-2 .col-60,
  .blocks-gray-2 .col-66,
  .blocks-gray-2 .col-50,
  .blocks-gray-2 .col-40,
  .blocks-gray-2 .col-33 {
    max-width: 100%;
    -webkit-box-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .blocks-gray-2 .image-block {
    top: 20px;
  }
  .blocks-gray-2 .image-block::before,
  .blocks-gray-2 .fright .image-block::before {
    top: 0;
    bottom: 0;
    left: 16px;
    right: 16px;
  }
  .blocks-gray-2 .image-block::after,
  .blocks-gray-2 .fright .image-block::after {
    display: none;
  }
  .blocks-gray-2 .image-block img,
  .blocks-gray-2 .fright .image-block img {
    left: auto;
    right: auto;
    margin: 0 auto;
  }
  .blocks-gray-2 .block-text {
    padding-top: 55px;
  }
}
@media (max-width: 730px) {
  .content {
    padding-top: 50px;
  }
  .content p,
  .content li {
    font-size: 16px;
  }
  .content p a,
  .content li a {
    font-size: 16px;
  }
  .content table td {
    font-size: 16px;
  }
  .blocks-top .block {
    margin-bottom: 0;
  }
  .blocks-top .image-block-large {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .tophead {
    min-height: 0;
    height: auto;
    padding-top: 24px;
    padding-bottom: 0;
  }
  .tophead .main {
    padding: 0;
    top: auto;
  }
  .tophead-image {
    display: none;
  }
  .tophead .logo {
    width: 40%;
    min-width: 158px;
    margin-bottom: 5%;
    box-sizing: content-box;
  }
  .tophead .video-box {
    margin-bottom: -1px;
  }
  .fright {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    text-align: inherit;
  }
  .col-100,
  .col-75,
  .col-70,
  .col-60,
  .col-50,
  .col-40,
  .col-33,
  .col-30,
  .col-25 {
    max-width: 100%;
    -webkit-box-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .image-block {
    text-align: left;
    max-width: 50%;
    min-width: 180px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .image-block::after {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: -40px;
    bottom: 50%;
    background: #fff;
    max-height: 170px;
  }
  .image-block img {
    position: relative;
    z-index: 2;
  }
  .image-block:empty {
    max-width: 50%;
    height: 250px;
    margin: 0 auto;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .blocks,
  .blocks-gray,
  .blocks-gray-2 {
    margin-bottom: 20px;
  }
  .blocks {
    padding-bottom: 15px;
  }
  .blocks .block {
    margin-bottom: 0;
  }
  .blocks .btn-large-box {
    margin-top: -30px;
    top: 50px;
  }
  .blocks-top .block {
    margin-bottom: 0;
  }
  .blocks-top .image-block-large {
    margin-bottom: 20px;
  }
  .blocks,
  .blocks-gray {
    background: #f6f6f6;
    padding-top: 0;
  }
  .blocks-top,
  .blocks-gray-2 {
    background: none;
  }
  .blocks-gray {
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  .blocks-top {
    margin-bottom: 60px;
  }
  .blocks-last {
    margin-top: 60px;
    background: none;
    padding-bottom: 50px;
  }
  .blocks-gray-2 {
    margin-bottom: 64px;
    margin-top: -22px;
  }
  .blocks-gray-2 h2 {
    margin-bottom: 10px;
  }
  .blocks-gray-2 .image-block {
    max-width: 100%;
    padding: 2px 16px 0;
    top: 22px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .blocks-gray-2 .image-block::before {
    border-width: 11px;
  }
  .blocks-gray-2 .block,
  .blocks-gray-2 .row {
    margin-bottom: 0;
  }
  .blocks-gray-2 .block-text,
  .blocks-gray-2 .fright ~ .block-text {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56px;
  }
  .blocks-gray-2 .block-btn,
  .blocks-gray-2 .block-input-btn {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .content {
    padding-top: 45px;
  }
  .content table {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .content table td,
  .content table th {
    text-align: center;
    display: block;
    font-size: 18px;
    border: 0;
    line-height: 1.2;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .content table td:first-child,
  .content table th:first-child {
    padding-top: 14px;
  }
  .content table td:last-child,
  .content table th:last-child {
    border-bottom: 2px solid #fff;
    padding-bottom: 14px;
  }
  .content table td strong {
    font-weight: 400;
  }
  .content table td:first-child {
    font-weight: 600;
  }
  .content table td:first-child strong {
    font-weight: 600;
  }
  .content table td:empty::before {
    content: "-";
  }
  .content table th {
    font-weight: 400;
    font-size: 22px;
  }
  .content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .content h1 .title-small {
    font-size: 16px;
  }
  .content h2,
  .content h3 {
    font-size: 24px;
  }
  .content h2 {
    max-width: 250px;
  }
  .bottom {
    padding: 30px 0;
  }
  .bottom .main {
    display: -webkit-box;
    display: -ms-display-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bottom .logo {
    position: relative;
    right: auto;
    top: auto;
    display: block;
    margin-top: 20px;
  }
  .bottom .copy {
    padding-right: 0;
  }
  .bottom .copy p {
    margin: 0;
    line-height: 2;
  }
}
@media (max-width: 380px) {
  .image-block {
    margin-bottom: 40px;
  }
  .image-block:empty {
    height: 180px;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .block-input-btn input[type="text"] {
    font-size: 14px;
    padding-left: 18px;
  }
}
