html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
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,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  /* chrome */
  -moz-osx-font-smoothing: grayscale;
  /* moz */
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}
html {
  -webkit-text-size-adjust: none;
}
/*************************** fonts ******************************/
@font-face {
  font-family: 'JosefinSans-Regular';
  src: url('fonts/JosefinSans.eot') format('embedded-opentype'), url('fonts/JosefinSans.woff') format('woff'), url('fonts/JosefinSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'JosefinSans-semibold';
  src: url('fonts/JosefinSans-SemiBold.eot') format('embedded-opentype'), url('fonts/JosefinSans-SemiBold.woff') format('woff'), url('fonts/JosefinSans-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'LoveloBlack';
  src: url('fonts/LoveloBlack.eot') format('embedded-opentype'), url('fonts/LoveloBlack.woff') format('woff'), url('fonts/LoveloBlack.ttf') format('truetype'), url('fonts/LoveloBlack.otf') format('open-type');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'LoveloLineLight';
  src: url('fonts/LoveloLineLight.eot') format('embedded-opentype'), url('fonts/LoveloLineLight.woff') format('woff'), url('fonts/LoveloLineLight.ttf') format('truetype'), url('fonts/LoveloLineLight.otf') format('open-type');
  font-weight: normal;
  font-style: normal;
}
/************************************************************* variable ***************************************/
/************************************************************* mixins ***************************************/
select:active,
select:hover {
  outline: none;
}
:active,
:focus {
  outline: none !important;
}
a:active,
a:focus {
  outline: none;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff !important;
}
/* remember to highlight inserts somehow! */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*for FireFox*/
input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner {
  border: 0;
}
/*for IE8 */
input[type="submit"]:focus,
input[type="button"]:focus {
  outline: none;
}
input,
select {
  vertical-align: middle;
}
textarea {
  resize: none;
}
textarea,
select,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
a {
  text-decoration: none !important;
  display: inline-block;
  color: inherit;
}
a:hover,
a:active,
a:focus {
  color: inherit;
}
[placeholder]:focus::-webkit-input-placeholder {
  transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  opacity: 0;
}
[placeholder]:focus::-moz-placeholder {
  transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  opacity: 0;
}
[placeholder]:focus::-ms-input-placeholder {
  transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  opacity: 0;
}
input::-ms-clear {
  display: none;
}
select::-ms-expand {
  display: none;
}
/* MATERIAL DESIGN RIPPLE */
.ripple-wrapper {
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.ripple-wrapper.animated {
  animation: ripple 0.65s linear;
  -webkit-animation: ripple 0.65s linear;
  -moz-animation: ripple 0.65s linear;
  -o-animation: ripple 0.65s linear;
}
.has-ripple {
  overflow: hidden;
  position: relative;
  user-select: none;
  outline: none;
}
@keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-webkit-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-o-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-moz-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
/*======================================
  Selectric v1.11.0
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}
.selectric-responsive {
  width: 100%;
}
.selectric {
  border: 1px solid #DDD;
  background: #F8F8F8;
  position: relative;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 0.52631579px Lucida Sans Unicode, Arial Unicode MS, Arial;
}
.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}
.selectric-focus .selectric {
  border-color: #aaaaaa;
}
.selectric-hover .selectric {
  border-color: #c4c4c4;
}
.selectric-hover .selectric .button {
  color: #a2a2a2;
}
.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}
.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric {
  border-color: #c4c4c4;
}
.selectric-open .selectric-items {
  display: block;
}
.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectric-hide-select {
  position: absolute;
  /* overflow: hidden;*/
  width: 100%;
  height: 100%;
}
.selectric-hide-select select {
  position: absolute;
  left: 0;
  z-index: -9999;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 24px;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}
.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: NaN a !important;
  background: none !important;
}
.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}
/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}
.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}
.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}
.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}
.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}
/************************ style starts *****************************/
html {
  overflow-x: hidden;
}
body {
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}
img {
  width: 100%;
}
.home-wrapper {
  background: url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: calc(100vh - 70px);
  width: 100%;
  position: relative;
  display: table;
  z-index: 8;
}
.home-wrapper .black-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7);
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0));
  /* Standard syntax */
}
.home-wrapper .container {
  display: table-cell;
  vertical-align: middle;
  z-index: 10;
  position: relative;
}
.home-wrapper .inner-container {
  padding-right: 20%;
}
.home-wrapper .inner-container p {
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.home-wrapper .inner-container p span {
  display: inline-block;
}
.home-wrapper .reg-but {
  font-family: 'Lato', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.210em;
  background-color: #ff4c68;
  border: none;
  padding: 12px 36px;
  border-radius: 4px;
  font-weight: 900;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}
.home-wrapper .reg-but:hover {
  background-color: #f13c58;
}
.home-wrapper .download {
  margin-top: 40px;
}
.home-wrapper .download img {
  width: 30px;
  height: 35px;
  float: left;
}
.home-wrapper .download p {
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 0;
  float: left;
  width: 120px;
  margin-left: 10px;
  position: relative;
}
.home-wrapper .download p:after {
  content: '';
  position: absolute;
  background-color: #ffffff;
  height: 8px;
  width: 2px;
  right: 10px;
  bottom: 1px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.home-wrapper .download p:before {
  content: '';
  position: absolute;
  background-color: #ffffff;
  height: 8px;
  width: 2px;
  right: 10px;
  bottom: 6px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.logo-section {
  position: relative;
  display: inline-block;
  margin: 30px 0;
}
.logo-section h1 {
  display: inline-block;
  position: relative;
  font-family: 'LoveloBlack', sans-serif, 'Arial';
  font-weight: normal;
  color: #ff4c68;
  font-size: 87px;
  line-height: 1.4;
}
.logo-section h1 span {
  font-family: 'LoveloLineLight', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 87px;
  line-height: 1.4;
  margin-right: 5px;
}
.logo-section h1:after {
  content: '';
  height: 1px;
  width: calc(100% - 180px);
  bottom: 3px;
  left: 0;
  background-color: #f13c58;
  position: absolute;
}
.logo-section label {
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.040em;
  position: absolute;
  right: 0;
  width: 175px;
  bottom: -3px;
}
.logo-section.white-logo h1 {
  color: #ffffff;
}
.logo-section.white-logo h1 span {
  color: #ffffff;
}
.logo-section.white-logo h1:after {
  background-color: #ffffff;
}
.logo-section.white-logo label {
  color: #ffffff;
}
.register-form {
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 99;
  width: 662px;
  height: 100%;
  background-color: #ff4c68;
  overflow: auto;
  display: block;
  -webkit-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  transition: all 0.8s linear;
}
.register-form.active {
  left: 0;
}
.register-form .close-but {
  position: absolute;
  right: 30px;
  top: 12px;
  z-index: 999;
}
.register-form .close-but span {
  font-size: 22px;
  cursor: pointer;
}
.register-form .reg-inner {
  position: relative;
  width: 412px;
  margin: 0 auto;
  display: block;
  vertical-align: middle;
}
.register-form .reg-inner .logo-section {
  margin: 40px 0 15px;
}
.register-form .reg-form {
  margin: 35px 0;
}
.register-form .reg-form button {
  margin: 23px 0;
  background-color: #ffffff;
  font-family: 'Lato', sans-serif, 'Arial';
  font-weight: normal;
  color: #f13c58;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.210em;
  border: none;
  padding: 13px 0;
  width: 100%;
  border-radius: 4px;
  font-weight: 900;
}
.register-form .selectric {
  background-color: #f13c58;
  border: 1px solid #ffffff;
  width: 100%;
  height: 50px;
  padding: 10px;
  border-radius: 4px !important;
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}
.register-form .selectric .label {
  text-align: left;
  height: 50px;
  width: 100%;
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.register-form .selectric .button {
  display: none;
}
.register-form .selectric-items li {
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #202020;
  font-size: 15px;
  line-height: 1.4;
}
.register-form .input-box {
  float: left;
  position: relative;
}
.register-form .input-box label.error {
  position: absolute;
  left: 0;
  bottom: 8px;
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}
.register-form .input-box.full-width {
  width: 100%;
}
.register-form .input-box.half-width {
  width: 48%;
}
.register-form .input-box h2 {
  font-family: 'JosefinSans-semibold', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.register-form .input-box input {
  background-color: #f13c58;
  border: 1px solid #ffffff;
  width: 100%;
  height: 50px;
  padding: 10px;
  border-radius: 4px !important;
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}
.register-form .selectric-hide-select .error {
  bottom: -16px !important;
}
.register-form .input-main {
  margin-bottom: 5px;
  display: block;
  width: 100%;
}
.register-form .input-main .input-check {
  position: relative;
  height: 17px;
  width: 17px;
  display: inline-block;
  float: left;
  margin-right: 10px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  margin-top: 1px;
  cursor: pointer;
}
.register-form .input-main .input-check input[type=checkbox] {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  cursor: pointer;
}
.register-form .input-main .input-check.active {
  position: relative;
}
.register-form .input-main .input-check.active:before {
  content: '';
  height: 9px;
  width: 9px;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
}
.register-form .input-main label {
  float: left;
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
}
footer {
  background-color: #202020;
  width: 100%;
  border-top: 1px solid #f13c58;
  height: 70px;
}
footer .contact-call p {
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #b2b2b2;
  font-size: 14px;
  line-height: 1.4;
}
footer .contact-addr h3 {
  font-family: 'JosefinSans-semibold', sans-serif, 'Arial';
  font-weight: normal;
  color: #b2b2b2;
  font-size: 15px;
  line-height: 1.3;
  text-align: right;
}
footer .contact-addr p {
  font-family: 'JosefinSans-Regular', sans-serif, 'Arial';
  font-weight: normal;
  color: #b2b2b2;
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
}
footer .row {
  margin-top: 15px;
  margin-bottom: 15px;
}
.container {
  width: 100% !important;
  padding: 0 60px;
}
.overflow {
  overflow: hidden !important;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 50%;
  position: relative;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
  text-align: center;
}
.popup span {
  color: #008000;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
.popup h2 {
  margin-top: 0;
  font-family: 'Lato', sans-serif, 'Arial';
  font-weight: normal;
  color: #202020;
  font-size: 15px;
  line-height: 1.3;
  display: inline-block;
  font-weight: 400;
}
.mCSB_inside > .mCSB_container {
  margin-right: 0 !important;
}
/*media Query*/
@media screen and (min-height: 804px) {
  /*  .register-form .close-but{
    right: 30px !important;
    top: 25px !important;
  }*/
}
@media screen and (max-height: 810px) {
  .register-form,
  .register-form .reg-inner {
    display: block;
  }
}
@media screen and (max-height: 650px) {
  .home-wrapper {
    height: auto;
  }
  .home-wrapper .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .register-form {
    width: 600px;
  }
  .register-form .reg-inner {
    width: 310px;
  }
  .register-form .reg-inner .logo-section {
    margin: 30px 0 15px;
  }
  .logo-section h1,
  .logo-section h1 span {
    font-size: 65px;
  }
  .logo-section h1:after {
    width: calc(100% - 135px);
  }
  .logo-section label {
    width: 132px;
    font-size: 15px;
  }
  .register-form .reg-form {
    margin: 20px 0;
  }
  .register-form .input-box input,
  .register-form .selectric .label,
  .register-form .selectric {
    height: 40px;
    font-size: 16px;
  }
  .register-form .input-box h2 {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .register-form .reg-form button {
    padding: 12px 0;
    font-size: 16px;
    margin: 18px 0;
  }
  .home-wrapper .inner-container p {
    font-size: 17px;
  }
  .home-wrapper .reg-but {
    font-size: 15px;
    padding: 10px 28px;
  }
  .home-wrapper .download p {
    width: 113px;
  }
  .register-form .input-main .input-check {
    height: 16px;
    width: 16px;
  }
  .register-form .input-main {
    margin-bottom: 2px;
  }
  .register-form .input-main .input-check.active:before {
    height: 8px;
    width: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  .home-wrapper .inner-container {
    padding-right: 4%;
  }
  .register-form .reg-inner {
    /*  padding: 0 50px;*/
  }
}
@media screen and (max-width: 992px) {
  .popup {
    width: 80%;
  }
  .popup h2 {
    font-size: 14px;
  }
  footer {
    height: auto;
  }
  footer .contact-addr {
    margin-top: 10px;
  }
  footer .contact-addr h3,
  footer .contact-addr p {
    text-align: left;
  }
  .home-wrapper .inner-container {
    padding-right: 15px;
  }
  .register-form .reg-inner {
    /* padding: 0 30px;*/
  }
  .register-form .close-but {
    right: 15px;
    top: 10px;
    padding: 15px;
  }
  .register-form {
    /*  width: 80%;*/
  }
}
@media screen and (max-width: 768px) {
  .home-wrapper .reg-but {
    font-size: 16px;
    padding: 9px 18px;
  }
  .container {
    padding: 0 15px;
  }
  .logo-section h1,
  .logo-section h1 span {
    font-size: 60px;
  }
  .logo-section label {
    width: 123px;
    font-size: 14px;
  }
  .logo-section h1:after {
    width: calc(100% - 125px);
  }
  .register-form .reg-inner {
    width: 286px;
  }
  .register-form {
    width: 420px;
  }
  .register-form .input-main {
    position: relative;
  }
  .register-form .input-main .input-check.active,
  .register-form .input-main .input-check {
    position: absolute;
    left: 0;
    top: 1px;
  }
  .register-form .input-main label {
    padding-left: 25px;
  }
}
@media screen and (max-width: 480px) {
  .popup {
    width: 90%;
  }
  .register-form {
    width: 100%;
  }
  .register-form .input-main label {
    font-size: 14px;
  }
  .register-form .close-but {
    right: 10px;
    top: 2px;
    padding: 10px;
  }
}
@media screen and (max-width: 320px) {
  body,
  html {
    width: 320px;
    overflow-x: scroll;
  }
}
