@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
:root {
  --green-color: #76323f;
  --white-color: #ffffff;
  --text-color: #1c1c1c;
  --text-head-color: #2e302e;
  --text-content-color: #5c727d;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(163, 175, 183, 0.9);
  border-radius: 20px;
}
@keyframes beat {
  from {
    transform: rotate(-20deg) scale(1);
  }
  to {
    transform: rotate(-20deg) scale(1.1);
  }
}
@-webkit-keyframes pencipreload {
  from {
    background-position: -800px 0;
  }
  to {
    background-position: 100px 0;
  }
}
@keyframes pencipreload {
  from {
    background-position: -800px 0;
  }
  to {
    background-position: 100px 0;
  }
}

/* ==============================
 * 7. Phone auto ring
 * ============================== */
.live-chat.circle {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 9999;
  border: 1px solid var(--green-color);
}
.live-chat {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  float: right;
  position: relative;
  animation: play 2s ease infinite;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.live-chat.circle > .btn {
  background: none;
  border: none;
  position: relative;
  box-shadow: none;
}
@keyframes play {
  0% {
    transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 5px rgba(17, 96, 63, 0.4);
    -moz-box-shadow: 0 0 0 5px rgba(17, 96, 63, 0.4);
    -webkit-box-shadow: 0 0 0 5px rgba(17, 96, 63, 0.4);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(17, 96, 63, 0.4),
    0 0 0 20px rgba(17, 96, 63, 0.2);
    -moz-box-shadow: 0 0 0 10px rgba(17, 96, 63, 0.4),
    0 0 0 20px rgba(17, 96, 63, 0.2);
    -webkit-box-shadow: 0 0 0 10px rgba(17, 96, 63, 0.4),
    0 0 0 20px rgba(17, 96, 63, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(17, 96, 63, 0.4),
    0 0 0 30px rgba(17, 96, 63, 0.2);
    -moz-box-shadow: 0 0 0 15px rgba(17, 96, 63, 0.4),
    0 0 0 30px rgba(17, 96, 63, 0.2);
    -webkit-box-shadow: 0 0 0 15px rgba(17, 96, 63, 0.4),
    0 0 0 30px rgba(17, 96, 63, 0.2);
  }
}
.phonering-alo-ph-img-circle {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: static;
  border-radius: 100% !important;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background: rgba(255, 255, 255, 0.8);
}
.phonering-alo-ph-img-circle .pps-btn-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--green-color);
  font-size: 1.7em;
}
.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-img-circle {
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out !important;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out !important;
}
@-webkit-keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
/* ==============================
 * N. Website common style
 * ============================== */
.ckeditor img {
  max-width: 100%;
  height: auto !important;
}
.ckeditor p {
  font-size: 16px;
  line-height: 2em;
  font-weight: 400;
}
.ckeditor td,
.ckeditor th {
  border: 1px solid #777;
  padding: 3px 10px;
}
.ckeditor ul li,
.ckeditor ol li {
  list-style: inherit;
  margin-left: 20px;
}
.ckeditor ul,
.ckeditor ol {
  margin-bottom: 15px;
}
.ckeditor table p {
  margin: 0;
}
.ckeditor a {
  display: initial !important;
}
.fancybox-opened {
  z-index: 99999 !important;
}
.fancybox-overlay {
  z-index: 9999 !important;
}
.vtc_loading_page {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}
.text-center {
  text-align: center;
}
img {
  max-width: 100%;
}
ul.format {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
blockquote {
  padding: 15px 0 15px 20px;
  border-left: 2px solid #093d86;
  margin: 30px 0 0 0;
  width: 80%;
  text-align: justify;
  text-align-last: left;
  font-size: 15px;
}
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
* {
  outline: none !important;
}
a {
  text-decoration: none;
}
a:hover {
  color: var(--green-color);
  text-decoration: none;
}
body, html {
  color: var(--text-color);
  font-size: 16px;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lora, "Helvetica Neue", Arial, sans-serif;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--green-color);
}
/* Form style */
input {
  width: 100%;
  height: 43px;
  color: #aaa9a9;
  font-size: 15px;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  padding: 0 15px;
}
textarea {
  width: 100%;
  color: #aaa9a9;
  font-size: 15px;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  padding: 15px;
}
#fixed_left_buttons {
  position: fixed;
  left: 5px;
  bottom: 65px;
  z-index: 9999;
  border-radius: 5px;
  width: 150px;
}
#fixed_left_buttons li {
  padding: 5px 0;
  position: absolute;
  width: 100%;
  left: 0;
  transition: 0.5s right ease-in-out;
  background: linear-gradient(to right, #512ffc 0%, #5e8dd9 18%, #3f2f87 100%);
  border: 1px solid #fff;
  border-radius: 10px;
}
#fixed_left_buttons li a {
  color: #fff;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  text-decoration: none !important;
}
#fixed_left_buttons li a > svg {
  width: 50px;
  text-align: center;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  padding: 0 12px;
}
#fixed_left_buttons li a > div > p {
  margin: 0;
  font-size: 13px;
}
.full-height {
  height: 100% !important;
}

.space {
  flex-grow: 1 !important;
}
/*hotline*/
.float-icon-hotline {
  display: block;
  width: 40px;
  position: fixed;
  bottom: 5px;
  left: 10px;
  z-index: 9999;
}
.float-icon-hotline ul {
  display: block;
  width: 100%;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.float-icon-hotline ul li {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}

.float-icon-hotline ul li .fa {
  background-color: #ed1c24;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 41px;
  -moz-box-shadow: 0 0 5px #888;
  -webkit-box-shadow: 0 0 5px#888;
  box-shadow: 0 0 5px #888;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 2px solid #fff;    padding: 5px;
}
.ani.infinite {
  animation-iteration-count: infinite;
}
.ani {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.tada {
  animation-name: tada;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.float-icon-hotline ul li .fa {
  background-color: #ed1c24;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 41px;
  -moz-box-shadow: 0 0 5px #888;
  -webkit-box-shadow: 0 0 5px#888;
  box-shadow: 0 0 5px #888;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 2px solid #fff;
  padding: 5px;
}
.float-icon-hotline ul li span {
  display: inline-block;
  padding: 0;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  height: 40px;
  line-height: 38px;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 0;
  width: 0;
  overflow: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #1660ad;
  -moz-box-shadow: 0 0 5px #888;
  -webkit-box-shadow: 0 0 5px#888;
  box-shadow: 0 0 5px #888;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  text-align: center;
  padding-left: 20px;
  font-size: 13.5px;
}
.float-icon-hotline ul li .fa-zalo {
  background: #019cd9  url(/public/uploads/images/landing-pages/izumi/zalo-icon.png) center center no-repeat;
}
.float-icon-hotline ul li .fa-fb {
  background:#146141 url(/public/uploads/images/landing-pages/izumi/fb-chat.png) center center no-repeat;
}
.float-icon-hotline ul li .fa-price {
  background:#e4b70f  url(/public/uploads/images/landing-pages/izumi/price.png) center center no-repeat;
}
.float-icon-hotline ul li .fa-phone{
  background: #ed1c24 url(/public/uploads/images/landing-pages/izumi/phone.png) center center no-repeat;
}
.float-icon-hotline ul li a.fhl span {
  background-color: #ed1c24;
}
.float-icon-hotline ul li a.fzl span {
  background-color: #019cd9 ;
}
.float-icon-hotline ul li a.ffb span {
  background-color:#0088ff;
}
.float-icon-hotline ul li a.ffp span {
  background-color:#146141; background-image: linear-gradient(#ebd428, #e4b70f);
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }

}
.float-icon-hotline ul li:hover span {
  width: 176px;
  padding-left: 32px;
  padding-right: 12px;
  opacity: 1;
}
.back-to-top{border-radius:100%;}
/*end hotline*/
/* float */
a.float-btn {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  z-index: 999;
  font-size: 18px;
  color: #fff;
}
.back-top-btn {
  right: 5px;
  bottom: 5px;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  background-image: linear-gradient(to right, #512ffc 0%, #5e8dd9 18%, #3f2f87 100%);
}
/* Flex Home slider */
.home-flexslider {
  position: relative;
  width: 100%;
  padding-top: 100vh;
  overflow: hidden;
  /*border-top: 1px solid #d2d3d4;*/
  /*border-bottom: 1px solid #d2d3d4;*/
}
.flexslider .slides {
  width: 100%;
  height: 100%;
}
.flexslider .slides li {
  height: 100%;
}
.flexslider .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(118, 50, 63, 0.2);
}
.flexslider .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-flexslider::after {
  content: "";
  position: absolute;
  pointer-events: none;
  height: 42px;
  width: 100%;
  top: -1px;
  z-index: 99;
}
.home-flexslider::before {
  content: "";
  position: absolute;
  pointer-events: none;
  height: 32px;
  width: 100%;
  bottom: 0;
  z-index: 99;
}
.flexslider {
  border: 0;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-control-nav {
  bottom: 10px;
  z-index: 3;
}
.flex-control-paging li a {
  width: 15px;
  height: 15px;
  background: #fff;
  box-shadow: none;
}
.flex-control-paging li a.flex-active,
.flex-control-paging li a:hover {
  background: linear-gradient(147deg, #f2295b 0%, #c5396b 100%);
}
.flexslider > svg {
  display: none;
  color: var(--green-color);
}
.loading .flexslider svg {
  display: block;
}
.flex-direction {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 45%;
  z-index: 99;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
  transition: 0.5s all ease;
}
/*.home-flexslider:hover .flex-direction {*/
/*    opacity: 1;*/
/*}*/
.flex-direction:hover {
  background: rgba(255, 255, 255, 0.3);
}
.flex-direction svg {
  color: #fff;
  width: 8px;
}
.flex-prev {
  left: 15px;
}
.flex-next {
  right: 15px;
}
.loading .flexslider .slides,
.loading .flexslider .flex-control-paging,
.loading .custom-navigation {
  display: none;
}
/* information */
#information {
  margin-top: 40px;
}

.information-title {
  position: relative;
  font-weight: 700;
  color: #2980b9;
}

.border-dash {
  border: 2px dashed #16a085;
  padding: 24px;
  border-radius: 8px;
}

.box-detail-line {
  position: relative;
  padding-left: 24px;
}

.box-detail-line:last-child {
  margin-bottom: 0;
}

.box-detail-line::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  background-image: url('/public/uploads/images/landing-pages/izumi/diamond.svg');
  width: 15px;
  height: 15px;
}

.hotline-box {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.hotline-box-container {
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-bottom: 3px solid #e74c3c;
  text-decoration: none;
}

.hotline-box-container .hotline-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
}

.hotline-box-container .hotline-icon i {
  font-size: 35px;
  transform: rotate(-45deg);
}

.hotline-box-container .hotline-right {
  margin: 0 16px;
  color: #e74c3c;
  font-size: 18px;
}
.hotline-box-container .hotline-right strong {
  font-size: 24px;
}

/* register */
.register {
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(84, 98, 147);
}

.bg-opacity-dark {
  background-color: rgba(0, 0, 0, 0.6);
}

/* overview */

h3.background-title {
  position: relative;
  margin-top: 16px;
}

button.register-btn {
  height: 43px;
  color: #fff;
  font-size: 16px;
  border: 1px solid #e9af00;
  background-image: linear-gradient(147deg, #ff0000 0%, #e8b900 100%);
}

.zoom-icon {
  display: none;
}
.overview-thumb {
  border: 1px solid #d5d5d5;
  box-shadow: 0 0 4px #ddd;
  padding-top: 95%;
  background: #f0f0f0;
  position: relative;
  cursor: pointer;
}

.overview-thumb:hover .zoom-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 50px;
  transition: all 0.25s;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(226, 170, 2, 0.5);
  transition: all 0.25s;
  z-index: 3;
}

.overview-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* position */
/*#position {*/
/*  background-image: url(https://ldbds7.huydevtheme.com/wp-content/uploads/2020/02/Ảnh-nền-vị-trí.jpg);*/
/*  background-position-x: center;*/
/*  background-position-y: center;*/
/*  background-size: cover;*/
/*  background-repeat: no-repeat;*/
/*  background-color: rgb(84, 98, 147);*/
/*}*/

ul.position-menu li {
  padding-left: 15px;
  position: relative;
}

ul.position-menu li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #e9af00;
  top: 8px;
  left: 0;
}
#position .overview-thumb {
  border: 1px solid #d5d5d5;
  box-shadow: 0 0 4px #ddd;
  padding-top: 86.25%;
  background: #f0f0f0;
  position: relative;
  cursor: pointer;
}

#video-introduce {
  padding: 32px 0;
}

#video-introduce .overview-thumb .zz_video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #e74c3c;
  font-size: 50px;
  transition: all 0.25s;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: all 0.25s;
}

.video-container {
  overflow: hidden;
  position: relative;
  padding-top: 53%;
  background: #f0f0f0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-title {
  color: #2980b9;
  font-weight: 700;
  font-size: 16px;
}

.box-detail-title {
  color: #d2ad67;
  font-weight: 700;
  font-size: 25px;
  padding-bottom: 10px;
  margin-bottom: 24px;
  position: relative;
}

.box-detail-title h3:first-child {
  font-weight: 700;
}

.box-detail-desc {
  font-weight: 700;
}

.utilities-item {
  cursor: pointer;
}

.utilities-item-thumb {
  padding: 2px;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

.utilities-item-thumb .overview-thumb {
  padding-top: 56.3%;
  background: #f0f0f0;
}

.utilities-item-title {
  color: #2980b9;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#design .overview-thumb {
  padding-top: 76%;
}

.tab-nav {
  display: flex;
}

a.tab-btn {
  display: block;
  padding: 8px 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  color: #000;
  text-align: center;
}

a.tab-btn.active {
  color: #fff;
  background: #283b5c;
}

.tab-pannel {
  visibility: hidden;
  opacity: 0;
  padding: 16px;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  transition: all 0.25s;
  display: none;
}

.tab-pannel.active {
  visibility: visible;
  opacity: 1;
  display: block;
}

#policy .overview-thumb {
  padding-top: 70.7%;
}

#furniture .row .content {
  padding-top: 75%;
  position: relative;
}

#furniture .row .content img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 90%;
  z-index: 0;
}

.reason-box {
  padding: 16px;
  border: 1px dashed #e9af00;
  border-radius: 4px;
  height: 100%;
}

.reason-title {
  color: #2980b9;
  font-weight: 700;
  margin-bottom: 24px;
}

#search-float {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1011;
  display: flex;
  justify-content: center;
  align-items: center;
}

#search-float form {
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  background: #fff;
  justify-content: space-between;
}

#search-float form input {
  width: calc(100% - 60px);
  outline: none;
  border: none;
  padding: 0 16px;
}

#search-float form button {
  padding: 8px 16px;
  font-size: 24px;
  border: none;
  outline: none;
  background-image: linear-gradient(147deg, #f2295b 0%, #e8b900 100%);
  color: #fff;
}

a.close-search {
  text-decoration: none;
  color: #fff;
  font-size: 36px;
  position: fixed;
  right: 16px;
  top: 8px;
}
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 5px;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color .3s, opacity .3s;
}
header.is_toggle{
  background: linear-gradient(to right, #512ffc 0%, #5e8dd9 18%, #3f2f87 100%);
  box-shadow: 1px 1px 10px rgb(0 0 0 / 15%);
  animation: stuckMoveDown .6s;
}
@keyframes stuckMoveDown {
  0% {
    transform: translateY(-100%)
  }

  100% {
    transform: translateY(0)
  }
}
@keyframes stuckMoveUp {
  0% {
    transform: translateY(100%)
  }

  100% {
    transform: translateY(0)
  }
}
header a.logo img {
  height: 60px;
}

header .nav-menu li a {
  margin: 0 2px;
  display: inline-block;
  padding: 6px 15px;
  color: #fff;
  border-radius: 35px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

header .nav-menu li a:hover {
  background-image: linear-gradient(147deg, #f2295b 0%, #c5396b 100%);
}

header .nav-menu li a.active {
  background-image: linear-gradient(147deg, #f2295b 0%, #c5396b 100%);
}

header .nav-menu li a svg {
  margin-top: -4px;
  margin-right: 4px;
}

.right-header {
  display: flex;
  align-items: center;
  margin: 0 16px;
}

.right-header a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
}

/* main */
main {
  margin-top: 61px;
}

/* responsive sidebar */

a.open-sidebar {
  display: none;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  align-items: center;
}

#hidden-responsive {
  display: none;
}

@media screen and (max-width: 1360px) {
  header .nav-menu li a{padding: 6px 10px;}
  .nav-menu li a span {
    font-size: 13px;
  }
  header .space{display: none;}
}

@media screen and (max-width: 1024px) {
  a.open-sidebar {
    display: inline-flex;
  }

  .nav-menu li a span {
    display: none;
  }

  #hidden-responsive {
    display: block;
  }

  .hidden-responsive-2 {
    display: none;
  }

  .nav-menu,
  .right-header {
    display: none !important;
  }
}

/* sidebar */
#sidebar {
  display: none;
  position: relative;
  width: 260px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1001;
}

#sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.bg-sidebar {
  background: #1977a8;
  height: 100vh;
}

#sidebar ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 16px;
  padding-left: 48px;
}

#sidebar ul li:first-child a {
  background: #115377;
}

#sidebar ul li a i {
  position: absolute;
  left: 16px;
  top: 20px;
}

#sidebar ul li a.active {
  color: #cfa44a;
}

/* footer */
.footer-top {
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-size: initial;
  background-position: bottom right;
}
.footer-top ul li {
  position: relative;
  margin-bottom: 15px;
}
.footer-top ul li a{color: white;transition: 0.5s all ease;}
.footer-top ul li a:hover{margin-left: 5px;}

.footer-top ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #e9af00;
}

.footer-top__title {
  position: relative;
  font-weight: 700;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.footer-top__title::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -16px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-top__title::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 12%;
  left: 0;
  bottom: -16px;
  background: #e9af00;
}
footer{background-color: rgb(27 0 85);}
.footer-bottom {
  padding: 10px 0;
  color: #bbbbbb;
  font-size: 13px;
  position: relative;
  text-align: center;
}
.phone {
  position: relative;
  display: inline-block;
  margin: 0;
  width: 1em;
  height: 1em;
  font-size: 32px;
  background-image: linear-gradient(147deg, #f2295b 0%, #e8b900 100%);
  border-radius: 0.5em;
  transform: translate3d(0, 0, 0) scale(1);
  margin-right: 12px;
}

.phone::before,
.phone::after {
  position: absolute;
  content: "";
}

.phone::before {
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: rgba(#fff, 0.1);
  border-radius: 100%;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(0);
}

.phone::after {
  top: 0.25em;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYuNiAxMC44YzEuNCAyLjggMy44IDUuMSA2LjYgNi42bDIuMi0yLjJjLjMtLjMuNy0uNCAxLS4yIDEuMS40IDIuMy42IDMuNi42LjUgMCAxIC40IDEgMVYyMGMwIC41LS41IDEtMSAxLTkuNCAwLTE3LTcuNi0xNy0xNyAwLS42LjQtMSAxLTFoMy41Yy41IDAgMSAuNCAxIDEgMCAxLjIuMiAyLjUuNiAzLjYuMS40IDAgLjctLjIgMWwtMi4zIDIuMnoiIGZpbGw9IiNmZmZmZmYiLz48L3N2Zz4=);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, 0, 0);
}

.phone.is-animating {
  animation: phone-outer 3000ms infinite;
}
.phone.is-animating::before {
  animation: phone-inner 3000ms infinite;
}

.phone.is-animating::after {
  animation: phone-icon 5000ms infinite;
}

@keyframes phone-outer {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 0, 0) scale(1.2);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes phone-inner {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }
}

@keyframes phone-icon {
  0% {
    transform: translate3d(0em, 0, 0);
  }
  2% {
    transform: translate3d(0.01em, 0, 0);
  }
  4% {
    transform: translate3d(-0.01em, 0, 0);
  }
  6% {
    transform: translate3d(0.01em, 0, 0);
  }
  8% {
    transform: translate3d(-0.01em, 0, 0);
  }
  10% {
    transform: translate3d(0.01em, 0, 0);
  }
  12% {
    transform: translate3d(-0.01em, 0, 0);
  }
  14% {
    transform: translate3d(0.01em, 0, 0);
  }
  16% {
    transform: translate3d(-0.01em, 0, 0);
  }
  18% {
    transform: translate3d(0.01em, 0, 0);
  }
  20% {
    transform: translate3d(-0.01em, 0, 0);
  }
  22% {
    transform: translate3d(0.01em, 0, 0);
  }
  24% {
    transform: translate3d(-0.01em, 0, 0);
  }
  26% {
    transform: translate3d(0.01em, 0, 0);
  }
  28% {
    transform: translate3d(-0.01em, 0, 0);
  }
  30% {
    transform: translate3d(0.01em, 0, 0);
  }
  32% {
    transform: translate3d(-0.01em, 0, 0);
  }
  34% {
    transform: translate3d(0.01em, 0, 0);
  }
  36% {
    transform: translate3d(-0.01em, 0, 0);
  }
  38% {
    transform: translate3d(0.01em, 0, 0);
  }
  40% {
    transform: translate3d(-0.01em, 0, 0);
  }
  42% {
    transform: translate3d(0.01em, 0, 0);
  }
  44% {
    transform: translate3d(-0.01em, 0, 0);
  }
  46% {
    transform: translate3d(0em, 0, 0);
  }
}

#overview .overview-thumb{
  padding-top: 130%;
  display: block;
}
#overview .overview-thumb:after, #overview .overview-thumb:before {
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 15px 10px rgb(0 0 0 / 60%);
  box-shadow: 0 15px 10px rgb(0 0 0 / 60%);
  left: 5px;
  right: 50%;
  bottom: 8px;
  height: 30%;
  z-index: -1;
  border-radius: inherit;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: skewY(-6deg);
  -ms-transform: skewY(-6deg);
  transform: skewY(-6deg);
}
#overview .overview-thumb:after {
  left: 50%;
  right: 5px;
  -webkit-transform: skewY(6deg);
  -ms-transform: skewY(6deg);
  transform: skewY(6deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
p{line-height: 1.8em;}
.text-justify{text-align: justify;}
.text-justify-center{text-align: justify;text-align-last: center;}

#popup1 {
  padding-top: 80px
}
.md-show~.md-overlay {
  opacity: 1;
  visibility: visible;
}
.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 100000;
  opacity: 0;
  background: rgba(40,43,49,.9);
  -webkit-transition: all .4s;
  transition: all .4s;
}
.form-popup {
  border-radius: 2px;
  box-shadow: 0 0 15px;
  font-size: 14px;
  font-weight: 700;
  background-size: cover;
  background-repeat: no-repeat;
  width: 1020px;
  height: 548px;
  background-color: #fff;
  position: relative;
  margin: 70px auto
}
.popup1 {
  opacity: 1;
  position: fixed;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
  z-index: 999999;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%)
}

.popup1.md-show {
  visibility: visible
}

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 100000;
  opacity: 0;
  background: rgba(40,43,49,.9);
  -webkit-transition: all .4s;
  transition: all .4s
}

.md-show~.md-overlay {
  opacity: 1;
  visibility: visible
}

.md-effect .form-popup {
  -webkit-transform: scale(.7);
  -ms-transform: scale(.7);
  transform: scale(.7);
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s
}

.md-show.md-effect .form-popup {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1
}

.form-popup .form-alert {
  max-width: 480px;
  margin: 0 auto
}

.form-popup .close {
  float: right;
  margin-top: -20px;
  margin-right: -12px
}

.form-popup-content {
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  -moz-border-radius-topright: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 22px 20px 10px;
  margin: 0;
  width: calc(100% - 550px);
  background-image: url(/public/uploads/images/landing-pages/izumi/popup-02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.form-popup-content form {
  background: #ffffffb8;
  padding-bottom: 20px;
  padding-top: 10px
}

.form-popup .form-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 15px
}

.form-popup input {
  width: 100%;
  height: 38px;
  margin-top: 5px;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px
}

.form-popup textarea {
  height: 54px;
  margin-top: 5px;
  border-radius: 3px;
  padding: 5px;
  resize: none;
  margin-bottom: 0
}

.form-popup input,.form-popup textarea {
  margin-top: 8px
}

.form-popup input,.form-popup textarea {
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 2px;
  margin-bottom: 4px;
  color: #212121
}

.form-popup textarea {
  min-height: 56px;
  border: 1px solid #999
}

.form-popup button {
  background-color: #f94b00;
  border: 0!important;
  font-Weight: 600;
  font-size: 18px;
  color: #fff;
  width: 100%;
  text-align: center;
  outline: 0!important;
  text-shadow: 0 1px 1px #f34a00;
  text-transform: uppercase;
  height: 50px;
  background-image: linear-gradient(#ebd428,#e4b70f);
  margin-bottom: 4px;
  transition: all .2s;
  cursor: pointer;
  border-radius: 2px;
  margin-top: 4px
}

.form-popup .close {
  cursor: pointer
}

.form-popup .close:hover,.form-popup input[type=submit]:hover {
  opacity: .9
}

.form-popup #loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255,255,255,.7);
  z-index: 100;
  text-align: center;
  border-radius: 2px
}

.form-popup #loading span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 22px;
  width: 90px;
  color: #333
}

.form-popup .send-error,.form-popup .send-success {
  padding: 0 10px;
  color: #fff;
  text-align: center;
  border: none;
  background: 0 0
}

.form-popup .send-error img,.form-popup .send-success img {
  display: block;
  margin: 0 auto;
  width: 150px;
  margin-top: 30px
}

.form-popup .send-success p {
  color: #07970c;
  font-size: 14px;
  background: #fff;
  padding: 4px;
  border-radius: 24px
}

.form-popup .send-error p {
  color: #ec1e21;
  font-size: 14px;
  background: #fff;
  padding: 4px;
  border-radius: 24px
}

.popup1 .left-image {
  width: 550px;
  float: left
}

.popup1 .left-image img {
  max-width: 100%;
  height: auto
}

.popup1 .pop-up-input {
  font-weight: 400;
  color: #1d55a4!important;
  font-size: 16px;
  width: 100%;
  border: none;
  border-bottom: 2px #1d55a4 solid;
  margin-bottom: 5px;
  background-color: transparent!important;
  box-shadow: unset;
  height: 40px!important;
  padding-left: 0
}

@media only screen and (max-width: 1120px) {
  .popup1 .left-image {
    display:none
  }

  .form-popup {
    width: 470px;
    height: 610px
  }

  .form-popup-content {
    width: 100%
  }
}

@media only screen and (max-width: 768px) {
  .form-popup {
    width:97%;
    margin: 45px auto 0
  }

  .form-popup .close {
    margin-top: -12px;
    margin-right: -12px
  }
}

@media only screen and (max-width: 680px) {
  .form-popup-content {
    padding: 0;
  }
  .form-popup-content form {
    padding: 20px;
    height: 100%;
  }
  .form-popup .form-inner {
    padding: 0
  }
}

@media only screen and (max-width: 580px) {
  .form-popup-right {
    width:calc(100% - 240px);
    padding: 16px 12px
  }

  .form-popup-right .form-inner {
    padding: 2px 6px
  }

  .form-popup h3 {
    font-size: 20px
  }

  .form-popup {
    height: 572px
  }
}

@media only screen and (max-width: 520px) {
  .form-popup-right {
    width:calc(100% - 210px)
  }

  .form-popup-right .form-inner {
    margin-top: 25px
  }

  #design .col-auto{width: 50%;}
  #design .col-auto a{height: 60px;display: flex;justify-content: center;align-items: center;}
}

@media only screen and (max-width: 480px) {
  .form-popup p.des {
    display:block
  }

  .form-popup-right {
    width: 100%
  }

  .form-popup-right .form-inner {
    margin-top: 10px
  }

  .form-popup h3 {
    font-size: 20px
  }
}
.lozad{
  opacity: 0;
}
.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lozad.fade{
  opacity: 1 !important;
}
