@-webkit-keyframes fade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
}
@-webkit-keyframes zoom_text {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoom_text {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes shine {
  0%, 10% {
    background-position: -1000px;
  }
  20% {
    background-position: top left;
  }
  90% {
    background-position: top right;
  }
  100% {
    background-position: 1000px;
  }
}
/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
@font-face {
  font-family: "OpenSans-Bold";
  src: url("../../fonts/OpenSans-Bold.ttf");
}
@font-face {
  font-family: "OpenSans-Semibold";
  src: url("../../fonts/OpenSans-Semibold.ttf");
}
@font-face {
  font-family: "OpenSans-Regular";
  src: url("../../fonts/OpenSans-Regular.ttf");
}
body, html {
  height: 100%;
  overflow: initial;
}

body {
  overflow-x: hidden;
  background: #f2f2f2;
  position: relative;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
}

.pad0 {
  padding: 0;
}

.no-pad-left {
  padding-left: 0;
}

.no-pad-right {
  padding-right: 0;
}

.mt30 {
  margin-top: 1rem;
}

.line {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

#header-ucreate {
  padding-top: 0;
  position: relative;
}
#header-ucreate .logo {
  position: absolute;
  top: 3%;
  left: 3%;
}
@media (max-width: 575.98px) {
  #header-ucreate .logo {
    left: 5%;
    width: 15%;
  }
}
@media (max-width: 575.98px) {
  #header-ucreate .header-ucreate.pc {
    display: none;
  }
}
#header-ucreate .header-ucreate.mb {
  display: none;
}
@media (max-width: 575.98px) {
  #header-ucreate .header-ucreate.mb {
    display: block;
  }
}
#header-ucreate .btn-register {
  position: absolute;
  left: 15%;
  bottom: 20%;
  width: 15%;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 575.98px) {
  #header-ucreate .btn-register {
    left: 35%;
    width: 30%;
    bottom: 7%;
  }
}

.title-ucreate-container {
  text-align: center;
  margin-bottom: 2rem;
}
.title-ucreate-container .ucreate-title {
  text-transform: uppercase;
  font-family: "OpenSans-Bold";
  font-size: 120%;
}
.title-ucreate-container .title-description {
  padding: 0 20%;
  font-size: 106%;
  font-family: "OpenSans-Semibold";
}
@media (max-width: 575.98px) {
  .title-ucreate-container .title-description {
    padding: 0;
  }
}

#content {
  padding: 3rem 0;
}
@media (max-width: 575.98px) {
  #content {
    text-align: center;
  }
}
@media (min-width: 1900px) {
  #content {
    padding: 5rem 0;
  }
}
@media (max-width: 575.98px) {
  #content .ucreate-item.pc {
    display: none;
  }
}
#content .ucreate-item.mb {
  display: none;
}
@media (max-width: 575.98px) {
  #content .ucreate-item.mb {
    display: block;
  }
}
#content figure {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
  #content figure {
    display: inline-block;
    text-align: center;
  }
}
@media (min-width: 1900px) {
  #content figure {
    margin-bottom: 3rem;
  }
}
#content figure img {
  margin-right: 1rem;
  width: 20%;
}
@media (max-width: 575.98px) {
  #content figure img {
    margin-right: 0;
    width: 30%;
  }
}
#content figure .description .tieude {
  font-family: "OpenSans-Bold";
  color: #e10d8c;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-size: 120%;
}
@media (min-width: 1900px) {
  #content figure .description .tieude {
    font-size: 150%;
  }
}
#content figure .description p {
  font-family: "OpenSans-Regular";
  color: #000;
  font-size: 13px;
}
@media (min-width: 1900px) {
  #content figure .description p {
    font-size: 15px;
  }
}
#content .btn-register {
  width: 15%;
  margin: 1rem auto;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  #content .btn-register {
    width: 30%;
  }
}

#myModalUcreate .modal-dialog {
  width: 40%;
}
@media (max-width: 992px) {
  #myModalUcreate .modal-dialog {
    width: 66%;
    margin-left: 17%;
  }
}
@media (max-width: 575.98px) {
  #myModalUcreate .modal-dialog {
    width: 90%;
    margin-left: 5%;
  }
}
#myModalUcreate .modal-dialog .modal-content {
  padding: 4rem;
  background: url("../../images/ucreate/bg_modal.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media (max-width: 575.98px) {
  #myModalUcreate .modal-dialog .modal-content {
    padding: 2rem;
  }
}
#myModalUcreate .modal-dialog .modal-content .tieude {
  color: #fff;
  font-family: "OpenSans-Semibold";
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
}
#myModalUcreate .modal-dialog .modal-content .tieude span {
  font-family: "OpenSans-Bold";
  font-size: 30px;
}
#myModalUcreate .modal-dialog .modal-content form {
  margin-top: 3rem;
}
#myModalUcreate .modal-dialog .modal-content form .form-group {
  width: 100%;
}
#myModalUcreate .modal-dialog .modal-content form .field-input {
  width: 100%;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  color: #fff;
  font-family: "OpenSans-Regular";
  margin-bottom: 1.5rem;
}
#myModalUcreate .modal-dialog .modal-content form .field-register {
  color: #e10d8c;
  text-transform: uppercase;
  font-family: "OpenSans-Bold";
  margin-top: 3rem;
  padding: 5px 40px;
  cursor: pointer;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
  opacity: 1;
  font-family: "OpenSans-Bold";
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  opacity: 1;
  font-family: "OpenSans-Bold";
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
  opacity: 1;
  font-family: "OpenSans-Bold";
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  opacity: 1;
  font-family: "OpenSans-Bold";
}

@media (min-width: 1301px) and (max-width: 1400px) {
  #header .header_form {
    left: 7%;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  #services .bg_virtual_office .table-bordered td {
    line-height: 18px;
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  body {
    overflow-x: hidden;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-light {
    background: transparent;
    margin-top: 0;
    top: 0;
  }
  .navbar-light .navbar-brand {
    padding-left: 5px;
  }
  .navbar-light .navbar-brand figure {
    margin-left: 0;
    width: 60%;
  }
  .navbar-light .navbar-toggler {
    margin-right: 15px;
    border-color: transparent;
  }
  .navbar-light .navbar-toggler-icon {
    background-image: none;
    width: 1.2em;
    height: 1.2em;
  }
  .navbar-light .navbar-toggler-icon .fa-bars {
    color: #fff;
    vertical-align: middle;
  }
  .navbar-light .navbar-nav .nav-link {
    color: #000000;
    padding: 0.6rem 1rem;
  }
  .navbar-light .navbar-nav .nav-link:hover {
    color: #000000;
  }
  .navbar-light .navbar-nav .nav-item:last-child {
    padding: 0 1rem;
    width: fit-content;
    margin-left: 2rem;
  }
}

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