/**
 * =====================================================================================================================
 * Reset
 * =====================================================================================================================
 */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

*, *:after, *:before {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  cursor: pointer;
  text-decoration: none;
}

textarea {
  resize: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -o-appearance: checkbox;
  -ms-appearance: checkbox;
  appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  -o-appearance: radio;
  -ms-appearance: radio;
  appearance: radio;
}

select {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.cf::before, .cf::after {
  clear: both;
  content: ".";
  display: block;
  overflow: hidden;
  visibility: hidden;
  height: 0;
  box-sizing: border-box;
}

@-webkit-keyframes roll {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes roll {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes roll {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes roll {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a {
  color: #485DA6;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
a:hover {
  color: #000;
}

h1 {
  font-size: 40px;
  margin: 20px 0;
}

h2 {
  font-size: 34px;
  margin: 20px 0;
}

h3 {
  font-size: 30px;
  margin: 20px 0;
}

h4 {
  font-size: 26px;
  margin: 20px 0;
}

h5 {
  font-size: 22px;
  margin: 20px 0;
}

h6 {
  font-size: 20px;
  margin: 20px 0;
}

p {
  margin: 20px 0;
}

ol, ul {
  padding-left: 25px;
}
ol li, ul li {
  margin: 15px 0;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
}
.ssl_checker_box {
  background: linear-gradient(to right bottom, #6d327c, #485DA6, #00a1ba, #01b18e, #32b37b);
  padding: 100px 0 50px;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 -40px 40px;
}
.ssl_checker_box .ssl_checker_center {
  width: 60%;
  max-width: 1140px;
}
@media screen and (max-width: 1440px) {
  .ssl_checker_box .ssl_checker_center {
    width: 90%;
  }
}
.ssl_checker_box .ssl_checker_box_title {
  text-align: center;
  margin-bottom: 30px;
}
.ssl_checker_box .ssl_checker_box_description {
  text-align: center;
}
.ssl_checker_box .ssl_checker_box_description p {
  margin: 20px 0;
}
.ssl_checker_box .ssl_checker_box_form {
  box-shadow: 0 0 30px 8px rgba(0, 0, 0, 0.1), 2px 2px 2px 0 rgba(0, 0, 0, 0.05) !important;
  background-color: #fff;
  border-radius: 4px;
  height: 65px;
  display: flex;
  flex-wrap: nowrap;
}
.ssl_checker_box .ssl_checker_box_form input[type=text] {
  width: 100%;
  margin: 10px 30px;
}
.ssl_checker_box .ssl_checker_box_form input[type=submit] {
  cursor: pointer;
  margin: 10px;
  padding: 0 20px;
  background: #485DA6;
  color: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.ssl_checker_box .ssl_checker_box_form input[type=submit]:hover {
  background: #000;
}
@media (max-width: 767px) {
  .ssl_checker_box {
    padding: 30px 0 20px;
    margin: 0 -20px 0;
    min-height: auto;
    font-size: 16px;
  }
  .ssl_checker_box .ssl_checker_box_title {
    margin: 0 0 10px;
    font-size: 20px;
  }
  .ssl_checker_box .ssl_checker_box_description {
    margin-bottom: 25px;
  }
  .ssl_checker_box .ssl_checker_box_form {
    height: 58px;
  }
  .ssl_checker_box .ssl_checker_box_form input[type=text] {
    margin: 10px 0 10px 20px;
  }
  .ssl_checker_box .ssl_checker_box_form input[type=submit] {
    padding: 0 15px;
  }
}

.ssl_checker_result {
  margin-bottom: 50px;
  border: 2px solid #DCE9F4;
  border-radius: 5px;
  background: #F0F5FB;
  overflow: hidden;
  /*
  .items{
    margin-bottom: 15px;
    .item:nth-child(2n){
      background: $color_grey_1;
    }
  }
  .item{
    @include flexbox(flex, wrap, stretch);
    padding: 10px 20px;
    .label{
      width: 200px;
    }
    .value{

    }
  }

   */
}
.ssl_checker_result .error-message {
  color: #ff0000;
  font-size: 16px;
  border: 1px solid #ff0000;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 10px 0;
  text-align: center;
  background-color: #ffcccc;
}
.ssl_checker_result .ssl_checker_result_title {
  margin: 0;
  background: #485DA6;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
}
.ssl_checker_result .ssl_checker_result_title strong {
  font-weight: bold;
  font-size: 22px;
}
.ssl_checker_result .checked_item {
  background: url("../images/shield.png") no-repeat left top;
  background-size: 30px;
  padding: 5px 20px 5px 40px;
  min-height: 30px;
  margin: 15px 20px;
}
.ssl_checker_result .checked_item strong {
  font-weight: bold;
}
.ssl_checker_result .checked_item.warning {
  background: url("../images/warning.png") no-repeat left top;
  background-size: 30px;
}
.ssl_checker_result .checked_item.error {
  background: url("../images/error.png") no-repeat left top;
  background-size: 30px;
}
.ssl_checker_result .items .item {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .ssl_checker_result {
    margin: 0 -20px;
    border: 0;
    border-radius: 0;
    background: #fff;
    font-size: 14px;
  }
  .ssl_checker_result .ssl_checker_result_title {
    font-size: 16px;
  }
  .ssl_checker_result .error-message {
    margin: 10px;
  }
}

.header {
  width: 100%;
  background-color: #485DA6;
  z-index: 999;
  position: fixed;
  top: 0;
  color: #fff;
}
.header .container {
  height: 74px;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: center;
  -moz-flex-wrap: center;
  -o-flex-wrap: center;
  -ms-flex-wrap: center;
  flex-wrap: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.header .container a {
  color: #fff;
}
.header .container a:hover {
  color: #000;
}
.header .container .nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -o-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
.header .container .nav > ul {
  height: 100%;
}
.header .container .nav ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -o-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  padding-left: 0;
}
.header .container .nav ul li {
  position: relative;
  align-items: center;
  display: flex;
  padding: 5px;
}
.header .container .nav ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.16;
}
.header .container .nav ul li ul {
  background-color: #485DA6;
  display: none;
  position: absolute;
  top: 100%;
  right: -15px;
  padding: 10px 15px;
}
.header .container .nav ul li ul li {
  margin: 0;
}
.header .container .nav ul li:hover ul {
  display: block;
}
@media (max-width: 767px) {
  .header {
    position: relative;
  }
  .header .container {
    height: auto;
    flex-direction: column;
  }
  .header .container .logo {
    padding-top: 25px;
    text-align: center;
    font-size: 26px;
  }
  .header .container .nav {
    width: 100%;
  }
  .header .container .nav ul {
    width: 100%;
  }
}

.admin-bar .header {
  top: 32px;
}

.footer {
  margin-top: 50px;
  background: #E5EEF8;
  padding: 20px;
}
.footer p {
  float: left;
}
.footer .menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -o-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  float: right;
  list-style: none;
  align-items: center;
  padding: 0;
}
.footer .menu li {
  position: relative;
  align-items: center;
  display: flex;
  padding: 5px;
}
@media (max-width: 767px) {
  .footer {
    margin-top: 30px;
    padding: 0;
  }
  .footer p {
    float: none;
    width: 100%;
    text-align: center;
    margin: 20px 0 0;
    font-size: 16px;
  }
  .footer .menu {
    float: none;
    width: 100%;
  }
  .footer .menu ul {
    width: 100%;
  }
}

html, body {
  height: 100%;
}

body {
  font-family: roboto, sans-serif;
  color: #000;
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.16;
  letter-spacing: -1%;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1;
}

.center {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .center {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

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