@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
@keyframes scroll {
  0% {
    transform: translateX(0);
    /* Bắt đầu từ vị trí ban đầu */
  }
  100% {
    transform: translateX(-100%);
    /* Cuộn hết track vào màn hình */
  }
}
html {
  font-family: "Alexandria", sans-serif;
}

body {
  margin: 0;
  font-family: "Alexandria", sans-serif;
  padding-top: 106px;
}
body.home {
  padding: 0;
}
body.none-scroll {
  overflow: hidden;
}
@media (max-width: 992px) {
  body {
    padding-top: 60px;
  }
}

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

img {
  max-width: 100%;
  height: auto;
}

.container-fluid {
  margin: 0 auto;
  padding: 0 8px;
  max-width: 1600px;
  width: 100%;
}
@media (max-width: 1600px) {
  .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .container-fluid {
    padding: 0 12px;
  }
}

.container {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 8px;
  width: 100%;
}
@media (max-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}

.hidden {
  display: none;
}

.tk-ani {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36), transform 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36);
}

[data-anim=true] .tk-ani {
  --data-delay: 0s;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985);
  transition-delay: var(--data-delay);
}

.tk-op {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36), transform 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36);
}

[data-anim=true] .tk-op {
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
    /* Nảy nhẹ khi tới gần vị trí cuối */
  }
  80% {
    opacity: 1;
    transform: translateY(-10px);
    /* Lắc lên một chút */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* Về vị trí cuối cùng */
  }
}
.tk-flex {
  display: flex;
}

.tk-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #0B0202;
  margin: 0;
}
@media (max-width: 1200px) {
  .tk-heading {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .tk-heading {
    font-size: 20px;
  }
}
.tk-heading.white {
  color: #FFFFFF;
}
.tk-heading.color {
  color: #3D1312;
}
.tk-heading.yellow {
  color: #EC2143;
}
.tk-heading.center {
  text-align: center;
}
.tk-heading + .tk-text {
  margin-top: 10px;
}

.tk-text {
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
@media (max-width: 1200px) {
  .tk-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .tk-text {
    font-size: 13px;
  }
}
.tk-text.medium {
  font-weight: 500;
}
.tk-text.white {
  color: #FFFFFF;
}
.tk-text.cream {
  color: #EFE7DF;
}
.tk-text.center {
  text-align: center;
}

.tk-btn {
  border-radius: 0px 16px 0px 0px;
  background: #FFFFFF url(../images/small-cta.png) left bottom/cover no-repeat;
  position: relative;
  margin: auto;
  cursor: pointer;
}
.tk-btn:hover:after {
  opacity: 1;
}
.tk-btn:hover a,
.tk-btn:hover button,
.tk-btn:hover input {
  color: #fff;
}
.tk-btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  border-radius: 0px 16px 0px 0px;
  opacity: 0;
  transition: all 0.3s ease;
}
.tk-btn.big {
  background: #FFFFFF url(../images/big-cta.png) left bottom/cover no-repeat;
}
.tk-btn.big a,
.tk-btn.big button,
.tk-btn.big input {
  width: 240px;
}
@media (max-width: 767px) {
  .tk-btn.big a,
  .tk-btn.big button,
  .tk-btn.big input {
    width: 177px;
    font-size: 14px;
  }
}
.tk-btn a,
.tk-btn button,
.tk-btn input {
  display: block;
  padding: 21px 10px 16.5px;
  width: 177px;
  background: transparent;
  border: 0;
  resize: none;
  outline: none;
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .tk-btn a,
  .tk-btn button,
  .tk-btn input {
    font-size: 16px;
  }
}

.tk-primary {
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(84.98deg, #EC2143 4.86%, #F15B25 92.9%);
  text-decoration: none;
  padding: 20px 30px 15px;
  border-radius: 0px 16px 0px 0px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}
.tk-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(84.98deg, #F15B25 4.86%, #EC2143 92.9%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.tk-primary:hover::before {
  opacity: 1;
}
@media (max-width: 992px) {
  .tk-primary {
    font-size: 17px;
    padding: 12px 24px;
  }
}
@media (max-width: 450px) {
  .tk-primary {
    font-size: 13px;
  }
}

.tk-gray {
  background: #8F8F8F;
  outline: none;
  border: none;
}
.tk-gray:hover {
  background: #333;
}

.tk-mauto {
  margin-left: auto;
  margin-right: auto;
}

.tk-tcenter {
  text-align: center;
}

.tk-tabs {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 20px;
}
.tk-tabs .child {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
  color: #8F8F8F;
  padding: 0 20px;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}
.tk-tabs .child.active {
  font-style: normal;
  color: #EC2143;
}
.tk-tabs .child:nth-child(1):after {
  display: none;
}
.tk-tabs .child::after {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  background: rgba(143, 143, 143, 0.5);
  top: 5px;
  bottom: 5px;
}
@media (max-width: 767px) {
  .tk-tabs .child::after {
    top: 4px;
    bottom: 4px;
  }
}
@media (max-width: 1200px) {
  .tk-tabs .child {
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .tk-tabs .child {
    font-size: 14px;
  }
}

.tk--sort {
  display: flex;
  padding: 10px 20px;
  height: -moz-fit-content;
  height: fit-content;
  pointer-events: auto;
  cursor: pointer;
  margin: 0 15px;
}
@media (max-width: 1200px) {
  .tk--sort {
    margin: 0 5px;
    padding: 8px 16px;
  }
}
@media (max-width: 992px) {
  .tk--sort {
    margin: 0 5px;
    justify-content: space-between;
  }
}
@media (max-width: 450px) {
  .tk--sort {
    margin: 0;
    padding: 8px 5px;
  }
}
.tk--sort span {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #EC2143;
}
@media (max-width: 992px) {
  .tk--sort span {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 450px) {
  .tk--sort span {
    font-size: 12px;
    line-height: 16px;
  }
}
.tk--sort .sort--select {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .tk--sort .sort--select {
    max-width: 70%;
  }
}
.tk--sort .select--current {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #717171;
  border: 0;
  background: transparent;
  outline: none;
  margin-left: 11px;
  padding: 0 30px 0 5px;
  position: relative;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .tk--sort .select--current {
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .tk--sort .select--current {
    font-size: 13px;
    line-height: 16px;
    padding: 0 20px 0 5px;
  }
}
.tk--sort .select--current:after {
  content: "";
  background: url(../images/arrow-down.svg) center/cover no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 992px) {
  .tk--sort .select--current:after {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 450px) {
  .tk--sort .select--current:after {
    width: 16px;
    height: 16px;
  }
}
.tk--sort .select--dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 62px;
  right: 0;
  min-width: 200px;
  z-index: 999;
  display: grid;
  grid-gap: 5px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-height: 280px;
  min-height: 100%;
  overflow: auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #FEEEE8 100%);
}
@media (max-width: 767px) {
  .tk--sort .select--dropdown {
    max-height: 200px;
  }
}
.tk--sort .select--dropdown.active {
  opacity: 1;
  visibility: visible;
  top: 42px;
}
.tk--sort .select--dropdown li {
  padding: 10px 16px;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 17px;
  text-align: right;
  color: #000000;
}
.tk--sort .select--dropdown li:hover, .tk--sort .select--dropdown li.active {
  background: #EC2143;
  color: #fff;
}
@media (max-width: 992px) {
  .tk--sort .select--dropdown li {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .tk--sort .select--dropdown li {
    font-size: 14px;
  }
}
.tk--sort select {
  display: none;
  font-family: "Alexandria", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #0B0202;
  border: 0;
  background: transparent;
  outline: none;
  margin-left: 11px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 5px;
}
.tk--sort select option {
  font-family: "Alexandria", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
@media (max-width: 992px) {
  .tk--sort select option {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .tk--sort select option {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .tk--sort select {
    font-size: 14px;
    padding: 0 32px 0 16px;
  }
}
@media (max-width: 450px) {
  .tk--sort select {
    font-size: 13px;
    padding: 0 38px 0 15px;
  }
}

.tk-btop {
  display: flex;
  justify-content: space-between;
  align-content: flex-end;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .tk-btop {
    display: grid;
    text-align: center;
    justify-content: center;
    grid-gap: 8px;
    padding: 0;
  }
}
.tk-btop.center {
  display: grid;
  justify-content: center;
  grid-gap: 15px;
}
.tk-btop.center .tk-btop--heading {
  text-align: center;
  margin: auto;
}
.tk-btop.center .tk-btop--text,
.tk-btop.center .tk-btop--stext {
  justify-content: center;
  text-align: center;
  width: 100%;
}
.tk-btop--heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
}
@media (max-width: 992px) {
  .tk-btop--heading {
    font-size: 26px;
    text-align: center;
  }
  .tk-btop--heading br {
    display: none;
  }
}
@media (max-width: 450px) {
  .tk-btop--heading {
    font-size: 20px;
  }
}
.tk-btop--heading .heading--black {
  background: linear-gradient(90deg, #636668 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.tk-btop--heading .heading--primary {
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.tk-btop--text {
  display: flex;
  align-items: flex-end;
  font-size: 18px;
  line-height: 150%;
  text-align: right;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  max-width: 400px;
}
@media (max-width: 992px) {
  .tk-btop--text {
    font-size: 16px;
    text-align: center;
  }
  .tk-btop--text br {
    display: none;
  }
}
@media (max-width: 450px) {
  .tk-btop--text {
    font-size: 14px;
  }
}
.tk-btop--text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 62px;
}
@media (max-width: 992px) {
  .tk-btop--text ul {
    display: grid;
    grid-gap: 18px;
  }
}
.tk-btop--text ul li {
  position: relative;
}
.tk-btop--text ul li:first-child::before {
  display: none;
}
.tk-btop--text ul li:last-child {
  padding-right: 0;
}
.tk-btop--text ul li::before {
  content: "";
  width: 2px;
  height: 17px;
  background: #8F8F8F;
  position: absolute;
  left: -31px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 992px) {
  .tk-btop--text ul li::before {
    width: 20px;
    height: 2px;
    left: 0;
    right: 0;
    top: -9px;
    bottom: auto;
  }
}
.tk-btop--stext {
  width: 60%;
  max-width: 806px;
  font-size: 18px;
  line-height: 150%;
  display: flex;
  align-items: flex-end;
  text-align: right;
  color: #000000;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .tk-btop--stext {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }
  .tk-btop--stext br {
    display: none;
  }
}
@media (max-width: 450px) {
  .tk-btop--stext {
    font-size: 13px;
  }
}

.box-form {
  max-width: 570px;
  margin: auto;
  width: 100%;
}
.box-form .form-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(10px, 1fr));
  grid-gap: 15px;
}
.box-form .form-grid2 .form-input,
.box-form .form-grid2 .form-select select {
  background: #FFFFFF url(../images/form-input-g2.png) left bottom/cover no-repeat;
}
.box-form .form-area {
  display: grid;
  grid-gap: 10px;
  padding: 35px 39px 40px;
  background: linear-gradient(238.62deg, #FFFFFF -0.05%, #FFF2EE 97.14%);
  box-shadow: 4px 4px 12px rgba(241, 91, 37, 0.3);
  border-radius: 20px;
  font-family: "Alexandria", sans-serif;
}
@media (max-width: 767px) {
  .box-form .form-area {
    border-radius: 10px;
    padding: 30px 30px 40px;
  }
}
.box-form .form-input {
  padding: 10px 15px;
  height: 42px;
  background: #FFFFFF url(../images/form-input.png) left bottom/cover no-repeat;
  border-radius: 0px 0px 0px 15px;
  width: 100%;
  border: 0;
  outline: none;
  font-size: 14px;
  line-height: 140%;
  font-weight: normal;
  color: #636668;
  font-family: "Alexandria", sans-serif;
}
.box-form .form-input::-moz-placeholder {
  color: #636668;
}
.box-form .form-input::placeholder {
  color: #636668;
}
.box-form .form-select {
  position: relative;
}
.box-form .form-select select {
  padding: 10px 15px;
  height: 42px;
  background: #FFFFFF url(../images/form-input.png) left bottom/cover no-repeat;
  border-radius: 0px 0px 0px 15px;
  width: 100%;
  border: 0;
  outline: none;
  font-size: 14px;
  line-height: 140%;
  font-weight: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #636668;
  font-family: "Alexandria", sans-serif;
}
.box-form .form-select select::-moz-placeholder {
  color: #636668;
}
.box-form .form-select select::placeholder {
  color: #636668;
}
.box-form .form-select svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  pointer-events: none;
}
.box-form .form-textarea {
  padding: 10px 15px;
  height: 125px;
  background: #FFFFFF url(../images/form-textarea.png) left bottom/cover no-repeat;
  border-radius: 0px 0px 0px 15px;
  width: 100%;
  border: 0;
  resize: none;
  outline: none;
  font-size: 14px;
  line-height: 140%;
  color: #636668;
  font-family: "Alexandria", sans-serif;
}
.box-form .form-button {
  display: flex;
  padding-top: 25px;
  margin: auto;
  text-align: center;
}
.box-form .form-button .button--cta {
  border-radius: 0px 16px 0px 0px;
  background: #FFFFFF url(../images/small-cta.png) left bottom/cover no-repeat;
  position: relative;
  margin: auto;
  cursor: pointer;
}
.box-form .form-button .button--cta:hover:after {
  opacity: 1;
}
.box-form .form-button .button--cta:hover button {
  color: #fff;
}
.box-form .form-button .button--cta:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  border-radius: 0px 16px 0px 0px;
  opacity: 0;
  transition: all 0.3s ease;
}
.box-form .form-button .button--cta.style2 {
  background: #FFFFFF url(../images/small-cta2.png) left bottom/cover no-repeat;
}
.box-form .form-button .button--cta.style2 button {
  width: 255px;
}
.box-form .form-button .button--cta button {
  padding: 20px 30px 15px;
  width: 177px;
  height: 59px;
  background: transparent;
  border: 0;
  resize: none;
  outline: none;
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: "Alexandria", sans-serif;
}
@media (max-width: 767px) {
  .box-form .form-button .button--cta button {
    font-size: 16px;
  }
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .header {
    display: none;
  }
}
.header .container-fluid {
  max-width: 1645px;
}
.header .box {
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}
.header .box-logo {
  display: block;
  padding: 30px 0;
  transition: all 0.3s ease;
}
.header .box-logo img {
  display: block;
  height: 46px;
  transition: all 0.3s ease;
}
.header .box-other {
  display: flex;
  gap: 40px;
  padding: 31.5px 0;
}
@media (max-width: 1200px) {
  .header .box-other {
    gap: 30px;
  }
}
.header .box-other .box-menus > ul {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1200px) {
  .header .box-other .box-menus > ul {
    gap: 10px;
  }
}
.header .box-other .box-menus > ul > li {
  height: 100%;
  position: relative;
}
.header .box-other .box-menus > ul > li.current-menu-item:hover::before {
  opacity: 0;
}
.header .box-other .box-menus > ul > li.current-menu-item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background: url(../images/active-mfooter.png) center right/cover no-repeat;
  opacity: 1;
  transition: all 0.3s ease;
}
.header .box-other .box-menus > ul > li:hover:after {
  opacity: 1;
}
.header .box-other .box-menus > ul > li:hover a {
  color: #fff;
}
.header .box-other .box-menus > ul > li:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  border-radius: 0px 16px 0px 0px;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .box-other .box-menus > ul > li a {
  height: 100%;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 9.5px 20px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  z-index: 2;
}
@media (max-width: 1400px) {
  .header .box-other .box-menus > ul > li a {
    padding: 7.5px 12px;
    font-size: 14px;
  }
}
.header .box-other .box-menus > ul > li .sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  top: 118px;
  left: 0;
  right: 0;
  padding: 55px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header .box-other .box-menus > ul > li .sub-menu::before {
  content: "";
  background: linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 47.5%, #F3F3F3 100%);
  position: absolute;
  top: 0;
  left: -50vw;
  bottom: 0;
  width: 100vw;
}
.header .box-other .box-menus > ul > li .sub-menu::after {
  content: "";
  background: linear-gradient(180deg, #F3F3F3 0%, #FFFFFF 47.5%, #F3F3F3 100%);
  position: absolute;
  top: 0;
  right: -50vw;
  bottom: 0;
  width: 100vw;
}
.header .box-other .box-menus > ul > li .sub-menu > li {
  flex: 0 1 calc(33.333% - 60px); /* 3 columns */
  position: relative;
  z-index: 9;
}
.header .box-other .box-menus > ul > li .sub-menu > li > a {
  display: flex;
  align-items: flex-start;
}
.header .box-other .box-menus > ul > li .sub-menu > li > a img {
  width: 25px;
}
.header .box-other .box-menus > ul > li .sub-menu > li > a span {
  font-family: "Poppins";
  font-style: normal;
  color: #000000;
}
.header .box-lang ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 11px;
  align-items: center;
}
.header .box-lang li + li {
  position: relative;
}
.header .box-lang li + li::before {
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(99, 102, 104, 0.6);
}
.header .box-lang span, .header .box-lang a {
  display: block;
  width: 40px;
  text-align: center;
}
.header .box-lang .current-lang {
  font-weight: 600;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  background: linear-gradient(180deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.header .box-lang a {
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  color: rgba(99, 102, 104, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.header .box-lang a:hover {
  background: linear-gradient(180deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  text-fill-color: transparent;
}

.home .header {
  background: transparent;
  box-shadow: none;
}
.home .header .box-logo img:nth-child(1) {
  display: none;
}
.home .header .box-logo img:nth-child(2) {
  display: block;
}
.home .header .box-menus > ul > li > a {
  color: #fff;
}
.home .header .box-lang a {
  color: rgba(217, 217, 217, 0.5);
}
.home .header .box-lang li + li::before {
  background: rgba(235, 235, 235, 0.5);
}

/* Menu Mobile */
#header-responsive {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: #0B0202;
}
@media (max-width: 1200px) {
  #header-responsive {
    display: block;
  }
}
#header-responsive.active:after {
  height: 100%;
  opacity: 1;
}
#header-responsive:after {
  content: "";
  background: #254E6D;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  opacity: 0;
  transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#header-responsive ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#header-responsive .res_bg {
  position: relative;
}
#header-responsive .res_bg span {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #122223;
  transform-origin: top;
}
#header-responsive .res_bg span:nth-child(1) {
  left: 0;
}
#header-responsive .res_bg span:nth-child(2) {
  right: 0;
}
#header-responsive .res_head {
  grid-template-columns: 60px 1fr 60px;
  position: relative;
  z-index: 9;
  display: grid;
}
#header-responsive .logo {
  padding: 14px 0;
  border-top: 0;
  border-bottom: 0;
}
#header-responsive .logo a {
  display: block;
  margin: auto;
  text-align: center;
}
#header-responsive .logo a img {
  display: block;
  margin: auto;
  height: 32px;
}
#header-responsive .ring {
  position: relative;
}
#header-responsive .hambuger {
  position: relative;
  transition: all 2s ease-out 0s;
  -webkit-transition: all 2s ease-out 0s;
  z-index: 101;
  margin: 0;
}
#header-responsive .hambuger.activated .hambuger-inner:after {
  bottom: 0;
  transform: rotate(-90deg) translate3d(0, 0, 1px);
  transition: bottom 0.2s ease, transform 0.2s 0.44s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.2s ease 0.2s;
}
#header-responsive .hambuger.activated .hambuger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.2s ease, opacity 0.2s 0.44s ease, background-color 0.2s ease 0.2s;
}
#header-responsive .hambuger.activated .hambuger-inner {
  transform: rotate(45deg) translate3d(0, 0, 1px);
  transition-delay: 0.44s;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
#header-responsive .hambuger .hambuger-box {
  width: 26px;
  height: 17px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#header-responsive .hambuger .hambuger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  width: 26px;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  height: 2px;
  transform: rotate(0deg) translate3d(0, 0, 1px);
  background-color: #EFE7DF;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
#header-responsive .hambuger .hambuger-inner:after, #header-responsive .hambuger .hambuger-inner:before {
  width: 16px;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  height: 2px;
  transform: rotate(0deg) translate3d(0, 0, 1px);
  background-color: #EFE7DF;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
#header-responsive .hambuger .hambuger-inner:before {
  content: "";
  display: block;
  top: -7px;
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
#header-responsive .hambuger .hambuger-inner:after {
  content: "";
  display: block;
  bottom: -7px;
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.sidebar {
  display: none;
  position: fixed;
  flex-direction: column;
  top: 0;
  height: 100vh;
  width: 100vw;
  padding: 80px 0 20px;
  background-color: #0B0202;
  color: #828282;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  right: 0;
  z-index: 98;
  transform: translate(0, -100%);
}
@media (max-width: 1200px) {
  .sidebar {
    display: flex;
  }
}
.sidebar::-webkit-scrollbar-thumb {
  background: 0 0;
}
.sidebar:hover::-webkit-scrollbar {
  width: 4px;
}
.sidebar:hover::-webkit-scrollbar-thumb {
  background: #e0e4eb;
  border-radius: 10px;
}
.sidebar:hover::-webkit-scrollbar-track {
  width: 17px;
}
.sidebar .sidebar-inner {
  padding: 0;
  margin: auto;
}
.sidebar .sidebar-inner::-webkit-scrollbar {
  width: 4px;
}
.sidebar .sidebar-inner::-webkit-scrollbar-thumb {
  background: #828282;
  position: absolute;
  right: 0;
}
.sidebar .sidebar-inner::-webkit-scrollbar-track {
  width: 17px;
}
.sidebar .sidebar-inner .sidebar_list {
  position: relative;
}
.sidebar .sidebar-inner .sidebar_list ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-height: 400px) {
  .sidebar .sidebar-inner .sidebar_list ul {
    grid-gap: 8px;
  }
}
.sidebar .sidebar-inner .sidebar_list ul li.current_page_item a, .sidebar .sidebar-inner .sidebar_list ul li.current-menu-item a {
  color: #F8C1B8;
}
.sidebar .sidebar-inner .sidebar_list ul li a {
  display: table;
  margin: auto;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0px;
  color: #FFFFFF;
  padding-top: 4px;
}
@media (max-height: 400px) {
  .sidebar .sidebar-inner .sidebar_list ul li a {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .sidebar .sidebar-inner .sidebar_list ul li a {
    font-size: 16px;
  }
}
.sidebar .sidebar-inner .sidebar_button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  padding: 15px;
  transform: translate(10px, 0px);
  opacity: 0;
}
.sidebar .sidebar-inner .sidebar_button a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 5rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: #20415C;
  text-transform: uppercase;
  background: #F8C1B8;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 89;
  background: #000;
  pointer-events: none;
  opacity: 0;
  margin: 0;
}

#menu-trigger:checked ~ .sidebar-overlay {
  pointer-events: all;
}

.sbanner {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .sbanner {
    max-height: 650px;
  }
}
@media (max-width: 767px) {
  .sbanner {
    max-height: 450px;
  }
}
.sbanner .shadow {
  bottom: 0;
  background-color: #000;
  transition: opacity 0.15s linear;
  z-index: 2;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
.sbanner .swiper {
  width: 100%;
  height: 100%;
}
.sbanner .swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sbanner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .slide-caption .slide-title,
.sbanner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .slide-caption .slide-heading,
.sbanner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .slide-caption .slide-text {
  opacity: 1;
  top: 0;
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-image {
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: center/cover no-repeat;
  padding-top: 106px;
}
@media (max-width: 992px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-image {
    padding-top: 0;
  }
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-image::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 2.15%, rgba(0, 0, 0, 0.2) 77.15%);
  z-index: 1;
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-image:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(241, 91, 37, 0) 59.62%, rgba(230, 73, 49, 0.8) 100%);
  z-index: 2;
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  right: 0;
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-flex {
  display: flex;
  align-items: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-flex {
    padding: 0;
  }
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption {
  position: relative;
  z-index: 999;
  max-width: 484px;
}
@media (max-width: 992px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption {
    max-width: 380px;
  }
}
@media (max-width: 450px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption {
    font-size: 22px;
  }
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.21875;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0;
  position: relative;
  top: 20px;
  transition: all 0.5s ease;
  transition-delay: 0.85s;
}
@media (max-width: 992px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-title {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-title {
    font-size: 20px;
  }
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-heading {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.35));
  opacity: 0;
  position: relative;
  top: 20px;
  transition: all 0.5s ease;
  transition-delay: 0.9s;
}
@media (max-width: 992px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-heading {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-heading {
    font-size: 22px;
  }
}
.sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-text {
  font-size: 20px;
  line-height: 150%;
  color: #FFFFFF;
  padding-top: 15px;
  opacity: 0;
  position: relative;
  top: 20px;
  transition: all 0.5s ease;
  transition-delay: 0.95s;
}
@media (max-width: 992px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-text {
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .sbanner .swiper .swiper-wrapper .swiper-slide .slide-caption .slide-text {
    font-size: 14px;
  }
}
.sbanner {
  /* If we need pagination */
}
.sbanner .swiper-pagination {
  bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 9999;
}
@media (max-width: 767px) {
  .sbanner .swiper-pagination {
    bottom: 30px;
  }
}
.sbanner .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
  width: 75px;
  height: 3px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .sbanner .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .sbanner .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
  }
}
.sbanner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 0.8;
}
.sbanner .swiper-scrollbar1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #F7D79D 0%, #BF7B31 100%);
  z-index: 9;
  opacity: 0.5;
}

.pbanner {
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .pbanner {
    height: 320px;
  }
}
.pbanner .box {
  display: grid;
  grid-gap: 10px;
}
.pbanner .box-small {
  font-family: "Alexandria";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: cacl(22px/18px);
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .pbanner .box-small {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .pbanner .box-small {
    font-size: 15px;
  }
}
.pbanner .box-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2222222222;
  text-align: center;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
}
@media (max-width: 992px) {
  .pbanner .box-heading {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .pbanner .box-heading {
    font-size: 22px;
  }
}

.hbanner {
  max-height: 615px;
  display: flex;
  align-items: center;
  height: calc(100vh - 106px);
}
@media (max-width: 992px) {
  .hbanner {
    max-height: 380px;
  }
}
@media (max-width: 450px) {
  .hbanner {
    max-height: 300px;
  }
}
.hbanner .box {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .hbanner .box {
    padding: 0 20px;
  }
}
.hbanner .box-heading {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.21875;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 475px;
  width: 100%;
}
@media (max-width: 992px) {
  .hbanner .box-heading {
    font-size: 26px;
    max-width: 60%;
  }
}
@media (max-width: 450px) {
  .hbanner .box-heading {
    font-size: 20px;
    max-width: 100%;
  }
}
.hbanner .box-sheading {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2142857143;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 475px;
  width: 100%;
}
@media (max-width: 992px) {
  .hbanner .box-sheading {
    font-size: 24px;
    max-width: 60%;
  }
}
@media (max-width: 450px) {
  .hbanner .box-sheading {
    font-size: 18px;
    max-width: 100%;
  }
}
.hbanner .box-text {
  font-weight: normal;
  font-size: 28px;
  line-height: 1.2142857143;
  color: #FFFFFF;
  max-width: 475px;
  width: 100%;
  padding-top: 10px;
}
@media (max-width: 992px) {
  .hbanner .box-text {
    font-size: 24px;
    max-width: 60%;
  }
}
@media (max-width: 450px) {
  .hbanner .box-text {
    font-size: 18px;
    max-width: 100%;
  }
}
.hbanner .box-stext {
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  max-width: 447px;
  padding-top: 15px;
}
@media (max-width: 992px) {
  .hbanner .box-stext {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .hbanner .box-stext {
    font-size: 13px;
    line-height: 1.4;
    padding-top: 10px;
  }
}

.nbanner {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.nbanner .box {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.nbanner .box-category {
  font-size: 18px;
  line-height: 1.2222222222;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  .nbanner .box-category {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .nbanner .box-category {
    font-size: 15px;
  }
}
.nbanner .box-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.21875;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .nbanner .box-heading {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .nbanner .box-heading {
    font-size: 20px;
  }
}

.sbanner-3 .box {
  position: relative;
  margin: auto;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 615px;
}
@media (max-width: 992px) {
  .sbanner-3 .box {
    height: 450px;
  }
}
@media (max-width: 450px) {
  .sbanner-3 .box {
    height: 320px;
    padding: 24px 0;
  }
}
.sbanner-3 .box-heading {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  max-width: 400px;
  color: #fff;
}
@media (max-width: 1200px) {
  .sbanner-3 .box-heading {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .sbanner-3 .box-heading {
    font-size: 22px;
  }
}
.sbanner-3 .box-heading span {
  font-weight: 800;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sbanner-3 .box-text {
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  padding-top: 5px;
  max-width: 400px;
}
@media (max-width: 1200px) {
  .sbanner-3 .box-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sbanner-3 .box-text {
    font-size: 14px;
  }
}

.sbanner-4 {
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .sbanner-4 {
    height: 360px;
  }
}
@media (max-width: 450px) {
  .sbanner-4 {
    height: 320px;
    padding: 24px 0;
  }
}
.sbanner-4.style2 {
  padding-bottom: 156px;
}
@media (max-width: 450px) {
  .sbanner-4.style2 {
    padding: 24px 0;
  }
}
.sbanner-4 .box {
  position: relative;
  max-width: 510px;
  margin: auto;
}
.sbanner-4 .box-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.22;
  text-align: center;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 1200px) {
  .sbanner-4 .box-heading {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .sbanner-4 .box-heading {
    font-size: 22px;
  }
}
.sbanner-4 .box-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.22;
  text-align: center;
  color: #FFFFFF;
  padding-top: 5px;
}
@media (max-width: 1200px) {
  .sbanner-4 .box-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sbanner-4 .box-text {
    font-size: 14px;
  }
}

.showroom {
  padding: 60px 0 120px;
}
@media (max-width: 992px) {
  .showroom {
    padding: 50px 0;
  }
}
.showroom .sparent {
  display: grid;
  grid-gap: 90px;
}
@media (max-width: 992px) {
  .showroom .sparent {
    grid-gap: 60px;
  }
}
@media (max-width: 450px) {
  .showroom .sparent {
    grid-gap: 40px;
  }
}
.showroom .box {
  text-align: center;
}
.showroom .box-heading {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.43;
  background: linear-gradient(90deg, #636668 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  max-width: 772px;
  margin: auto;
}
@media (max-width: 992px) {
  .showroom .box-heading {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .showroom .box-heading {
    font-size: 20px;
  }
}
.showroom .box-text {
  padding-top: 5px;
  max-width: 772px;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #000000;
  margin: auto;
}
@media (max-width: 992px) {
  .showroom .box-text {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .showroom .box-text {
    font-size: 14px;
    line-height: 1.4;
  }
}
.showroom .box-img {
  margin-top: 30px;
}
@media (max-width: 450px) {
  .showroom .box-img {
    margin-top: 18px;
  }
}
.showroom .box-img img {
  width: 100%;
}
.showroom .box-gallery {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
  margin-top: 30px;
  border-radius: 0 50px 0 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .showroom .box-gallery {
    grid-gap: 10px;
  }
}
@media (max-width: 992px) {
  .showroom .box-gallery {
    grid-template-columns: repeat(2, minmax(10px, 1fr));
  }
}
@media (max-width: 450px) {
  .showroom .box-gallery {
    margin-top: 18px;
    grid-template-columns: 1fr;
  }
}
.showroom .box-gallery a {
  display: block;
  position: relative;
  height: 525px;
}
@media (max-width: 1500px) {
  .showroom .box-gallery a {
    height: 480px;
  }
}
@media (max-width: 1200px) {
  .showroom .box-gallery a {
    height: 340px;
  }
}
@media (max-width: 992px) {
  .showroom .box-gallery a {
    order: 2;
  }
}
.showroom .box-gallery a:nth-child(2) {
  grid-column: 2/4;
}
@media (max-width: 992px) {
  .showroom .box-gallery a:nth-child(2) {
    order: 1;
    grid-column: 1/3;
  }
}
@media (max-width: 450px) {
  .showroom .box-gallery a:nth-child(2) {
    grid-column: inherit;
  }
}
.showroom .box-gallery a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 992px) {
  .form {
    padding-top: 40px;
  }
}
.form.style2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(10px, 1fr));
}
@media (max-width: 992px) {
  .form.style2 {
    grid-template-columns: 1fr;
  }
}
.form.style2 .box {
  padding: 80px 30px;
}
@media (max-width: 992px) {
  .form.style2 .box {
    order: 2;
    padding: 50px 30px;
  }
}
.form .info {
  margin: auto;
  max-width: 1070px;
  width: 100%;
  position: relative;
  top: -126px;
  display: grid;
  grid-template-columns: 1fr 510px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .form .info {
    top: 0;
    grid-template-columns: 1fr;
  }
}
.form .info .info-map {
  min-height: 350px;
}
@media (max-width: 767px) {
  .form .info .info-map {
    min-height: 250px;
  }
}
.form .info .info-map iframe {
  width: 100%;
  height: 100%;
}
.form .info .info-area {
  padding: 60px 80px;
}
@media (max-width: 992px) {
  .form .info .info-area {
    padding: 40px;
  }
}
.form .info .info-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 25px;
}
@media (max-width: 767px) {
  .form .info .info-area ul {
    grid-gap: 15px;
  }
}
.form .info .info-area ul li {
  display: grid;
  grid-gap: 5px;
}
.form .info .info-area ul li strong {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.22;
  text-transform: uppercase;
  color: #EC2143;
}
@media (max-width: 767px) {
  .form .info .info-area ul li strong {
    font-size: 12px;
  }
}
.form .info .info-area ul li span,
.form .info .info-area ul li a {
  font-size: 20px;
  line-height: 130%;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 767px) {
  .form .info .info-area ul li span,
  .form .info .info-area ul li a {
    font-size: 17px;
  }
}
.form .info .info-area ul li span:hover,
.form .info .info-area ul li a:hover {
  text-decoration: underline;
}
.form .info + .box {
  margin-top: -126px;
}
@media (max-width: 992px) {
  .form .info + .box {
    margin-top: 0;
  }
}
.form .box {
  padding: 60px 0 80px;
}
@media (max-width: 992px) {
  .form .box {
    padding: 40px 0 50px;
  }
}
.form .box-top {
  max-width: 580px;
  margin: auto auto 30px;
  text-align: center;
}
.form .box-bheading {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.43;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 992px) {
  .form .box-bheading {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .form .box-bheading {
    font-size: 20px;
  }
}
.form .box-text {
  padding-top: 5px;
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  color: #000000;
  display: grid;
}
@media (max-width: 992px) {
  .form .box-text {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .form .box-text {
    font-size: 15px;
  }
}
.form .box-heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.21875;
  background: linear-gradient(90deg, #636668 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0 auto 25px;
  text-align: center;
}
@media (max-width: 992px) {
  .form .box-heading {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .form .box-heading {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .form .image {
    order: 1;
    height: 320px;
  }
}
@media (max-width: 450px) {
  .form .image {
    height: 240px;
  }
}
.form .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rnews,
.rproject {
  padding: 60px 0 80px;
  background: #fff;
}
@media (max-width: 992px) {
  .rnews,
  .rproject {
    padding: 50px 0;
  }
}
.rnews .box-heading,
.rproject .box-heading {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4285714286;
  background: linear-gradient(90deg, #636668 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}
@media (max-width: 992px) {
  .rnews .box-heading,
  .rproject .box-heading {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .rnews .box-heading,
  .rproject .box-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) and (min-width: 451px) {
  .rnews.style2 .news-items .item:nth-child(3), .rnews.style2 .project-items .item:nth-child(3),
  .rproject.style2 .news-items .item:nth-child(3),
  .rproject.style2 .project-items .item:nth-child(3) {
    display: none;
  }
}
.rnews .box-cta,
.rproject .box-cta {
  padding-top: 30px;
}

.dproject {
  padding: 40px 0 100px;
  background: url(../images/bg-contact.jpg) center/cover no-repeat;
}
@media (max-width: 992px) {
  .dproject {
    padding: 40px 0 60px;
  }
}
@media (max-width: 450px) {
  .dproject {
    padding: 50px 0;
  }
}
.dproject .box-info {
  max-width: 1080px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-gap: 80px;
  grid-template-columns: 400px 1fr;
}
@media (max-width: 992px) {
  .dproject .box-info {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
.dproject .box-right {
  padding-top: 9px;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  display: grid;
  grid-gap: 12px;
}
@media (max-width: 992px) {
  .dproject .box-right {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .dproject .box-right {
    font-size: 14px;
  }
}
.dproject .box-right * {
  margin: 0;
}
.dproject .box-left table {
  width: 100%;
  border-collapse: collapse;
}
.dproject .box-left table tr {
  border-bottom: 1px solid #C0C0C0;
}
.dproject .box-left table tr td {
  padding: 8.5px 0;
}
.dproject .box-left table tr td:first-child {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.22;
  text-transform: uppercase;
  color: #EC2143;
}
@media (max-width: 992px) {
  .dproject .box-left table tr td:first-child {
    font-size: 13px;
  }
}
@media (max-width: 450px) {
  .dproject .box-left table tr td:first-child {
    font-size: 12px;
  }
}
.dproject .box-left table tr td:last-child {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
@media (max-width: 992px) {
  .dproject .box-left table tr td:last-child {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .dproject .box-left table tr td:last-child {
    font-size: 14px;
  }
}
.dproject .box-gallery {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .dproject .box-gallery {
    grid-gap: 10px;
  }
}
@media (max-width: 992px) {
  .dproject .box-gallery {
    display: none;
  }
}
.dproject .box-gallery a {
  display: block;
  position: relative;
  height: 330px;
}
@media (max-width: 1500px) {
  .dproject .box-gallery a {
    height: 280px;
  }
}
@media (max-width: 1200px) {
  .dproject .box-gallery a {
    height: 220px;
  }
}
@media (max-width: 992px) {
  .dproject .box-gallery a {
    order: 2;
  }
}
.dproject .box-gallery a:nth-child(1) {
  height: 450px;
}
@media (max-width: 1500px) {
  .dproject .box-gallery a:nth-child(1) {
    height: 380px;
  }
}
@media (max-width: 1200px) {
  .dproject .box-gallery a:nth-child(1) {
    height: 320px;
  }
}
.dproject .box-gallery a:nth-child(2) {
  grid-column: 2/4;
  height: 450px;
}
@media (max-width: 1500px) {
  .dproject .box-gallery a:nth-child(2) {
    height: 380px;
  }
}
@media (max-width: 1200px) {
  .dproject .box-gallery a:nth-child(2) {
    height: 320px;
  }
}
@media (max-width: 992px) {
  .dproject .box-gallery a:nth-child(2) {
    order: 1;
    grid-column: 1/3;
  }
}
@media (max-width: 450px) {
  .dproject .box-gallery a:nth-child(2) {
    grid-column: inherit;
  }
}
.dproject .box-gallery a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.dproject .box-slider {
  display: none;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .dproject .box-slider {
    display: block;
  }
}
.dproject .box-slider .swiper-slide {
  height: 300px;
}
@media (max-width: 450px) {
  .dproject .box-slider .swiper-slide {
    height: 240px;
  }
}
.dproject .box-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dproject .box-slider .swiper-paginations {
  display: flex;
  gap: 6px;
  padding-top: 20px;
  justify-content: center;
}
.dproject .box-slider .swiper-paginations .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  border-radius: 5px;
  background: #3D1312;
}

.project-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
  grid-gap: 40px 15px;
  margin: auto;
}
@media (max-width: 992px) {
  .project-items {
    grid-template-columns: repeat(2, minmax(10px, 1fr));
    grid-gap: 30px 15px;
  }
}
@media (max-width: 450px) {
  .project-items {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
.project-items .item {
  display: block;
  text-decoration: none;
  position: relative;
  background: #fff;
  border-radius: 0 50px 0 0;
  animation: animateElement linear 0.5s;
  animation-iteration-count: 1;
}
.project-items .item:hover:after {
  opacity: 1;
}
.project-items .item:hover .item--footer {
  color: #fff;
}
.project-items .item:hover .item--area:after {
  opacity: 1;
}
.project-items .item:hover .item--area h4 {
  opacity: 0;
}
.project-items .item:hover .item--area .item--hover {
  opacity: 1;
  bottom: 0;
}
.project-items .item:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  border-radius: 0px 50px 0px 0px;
  opacity: 0;
  transition: all 0.3s ease;
}
.project-items .item--area {
  padding-top: 100%;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.64) 100%);
  border-radius: 0 50px 0 0;
  overflow: hidden;
  z-index: 9;
}
@media (max-width: 450px) {
  .project-items .item--area {
    padding-top: 80%;
  }
}
.project-items .item--area:after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.project-items .item--area img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.project-items .item--area h4 {
  margin: 0;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  transition: opacity 0.5s ease-in, transform 0.5s ease-out;
}
.project-items .item--area .item--hover {
  padding: 15px 20px;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  transition: all 0.5s ease;
}
.project-items .item--area .item--heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.project-items .item--area .item--text {
  padding-top: 5px;
  font-size: 14px;
  line-height: 132%;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.project-items .item--area .item--text p {
  margin: 0;
}
.project-items .item--footer {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 150%;
  text-transform: uppercase;
  color: #636668;
  position: relative;
  z-index: 9;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .project-items .item:after {
    opacity: 1;
  }
  .project-items .item .item--footer {
    color: #fff;
  }
  .project-items .item .item--area:after {
    opacity: 1;
  }
  .project-items .item .item--area h4 {
    opacity: 0;
  }
  .project-items .item .item--area .item--hover {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes animateElement {
  0% {
    opacity: 0;
    transform: translate(0px, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.news-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
  grid-gap: 40px;
  max-width: 1428px;
  margin: auto;
}
@media (max-width: 992px) {
  .news-items {
    grid-template-columns: repeat(2, minmax(10px, 1fr));
    grid-gap: 30px;
  }
}
@media (max-width: 450px) {
  .news-items {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
.news-items .item {
  display: block;
  text-decoration: none;
  position: relative;
  background: #fff;
  border-radius: 0 50px 0 0;
  overflow: hidden;
  border: 1px solid rgba(236, 33, 67, 0.3);
  animation: animateElement linear 0.5s;
  animation-iteration-count: 1;
}
.news-items .item:hover .item--img img {
  transform: scale(1.2) rotate(2deg);
}
.news-items .item--img {
  padding-top: 76%;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 450px) {
  .news-items .item--img {
    padding-top: 60%;
  }
}
.news-items .item--img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  transition: all 0.6s ease;
}
.news-items .item--caption {
  padding: 15px 25px 80px;
  background: #fff;
  z-index: 10;
  border-top: 0;
}
@media (max-width: 992px) {
  .news-items .item--caption {
    padding: 15px 25px 60px;
  }
}
@media (max-width: 450px) {
  .news-items .item--caption {
    padding: 15px 25px;
  }
}
.news-items .item--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  background: linear-gradient(90deg, #636668 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 992px) {
  .news-items .item--title {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .news-items .item--title {
    font-size: 14px;
  }
}
.news-items .item--desc {
  padding-top: 5px;
  font-size: 14px;
  line-height: 132%;
  color: #636668;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
@media (max-width: 992px) {
  .news-items .item--desc {
    font-size: 13px;
  }
}
.news-items .item--footer {
  position: absolute;
  bottom: 15px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  color: #636668;
}
@media (max-width: 992px) {
  .news-items .item--footer {
    font-size: 10px;
  }
}
@media (max-width: 450px) {
  .news-items .item--footer {
    position: static;
    padding-top: 20px;
  }
}

.qlinks {
  padding: 10px 0 5px;
  background: linear-gradient(0deg, #FFFFFF 0%, #E6E6E6 100%);
  border-bottom: 1px solid #F15B25;
}
@media (max-width: 450px) {
  .qlinks {
    padding: 2px 0 12px;
  }
}
.qlinks .box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .qlinks .box {
    display: grid;
    grid-template-columns: repeat(2, minmax(10px, 1fr));
    grid-gap: 10px;
  }
}
@media (max-width: 450px) {
  .qlinks .box {
    display: block;
  }
  .qlinks .box .tk--sort {
    margin-top: 10px;
  }
}

.sQLinks {
  padding: 10px 0 5px;
  background: linear-gradient(0deg, #FFFFFF 0%, #E6E6E6 100%);
  border-bottom: 1px solid #F15B25;
  position: sticky;
  top: 106px;
  z-index: 99;
}
@media (max-width: 992px) {
  .sQLinks {
    display: none;
  }
}
.sQLinks .box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .sQLinks .box {
    display: none;
  }
}
.sQLinks .box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 45px;
}
.sQLinks .box ul li.active a {
  color: #EC2143;
}
.sQLinks .box ul li a {
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: #717171;
  transition: all 0.3s ease;
  text-decoration: none;
}
.sQLinks .box ul li a:hover {
  font-weight: 600;
  color: #E64931;
}

.ndetail .container {
  border-bottom: 1px solid rgba(241, 91, 37, 0.5);
}
.ndetail .container .box {
  padding: 30px 0 60px;
  max-width: 640px;
  margin: auto;
  display: grid;
  grid-gap: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
@media (max-width: 450px) {
  .ndetail .container .box {
    font-size: 13.5px;
  }
}
.ndetail .container .box * {
  margin: 0;
}
.ndetail .container .box figure img,
.ndetail .container .box img {
  border-radius: 0 50px 0 0;
  overflow: hidden;
}
.ndetail .container .box figcaption {
  font-style: italic;
  color: gray;
}
.ndetail .container .box h1,
.ndetail .container .box h2,
.ndetail .container .box h3,
.ndetail .container .box h4,
.ndetail .container .box h5,
.ndetail .container .box h6 {
  color: #EC2143;
  font-weight: 800;
  font-size: 18px;
}
@media (max-width: 450px) {
  .ndetail .container .box h1,
  .ndetail .container .box h2,
  .ndetail .container .box h3,
  .ndetail .container .box h4,
  .ndetail .container .box h5,
  .ndetail .container .box h6 {
    font-size: 16px;
  }
}
.ndetail .container .box ul {
  list-style: none;
  padding: 0;
}
.ndetail .container .box ul li {
  padding: 3px 0 3px 24px;
  position: relative;
}
.ndetail .container .box ul li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 11px;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

.grid2 {
  padding: 100px 0 50px;
}
@media (max-width: 992px) {
  .grid2 {
    padding: 50px 0;
  }
}
.grid2 .box-items {
  margin-top: 40px;
  border-radius: 30px;
  overflow: hidden;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .grid2 .box-items {
    padding: 0;
  }
}
.grid2 .box-items .item {
  display: grid;
  grid-template-columns: repeat(2, minmax(10px, 1fr));
}
@media (max-width: 992px) {
  .grid2 .box-items .item {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 993px) {
  .grid2 .box-items .item:nth-child(even) .item--img {
    order: 2;
  }
  .grid2 .box-items .item:nth-child(even) .item--caption {
    order: 1;
  }
}
.grid2 .box-items .item--caption {
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 40px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .grid2 .box-items .item--caption {
    min-height: 250px;
  }
}
@media (max-width: 767px) {
  .grid2 .box-items .item--caption {
    min-height: 0;
    padding: 24px 30px;
  }
}
.grid2 .box-items .item--flex {
  width: 100%;
  max-width: 414px;
}
@media (max-width: 992px) {
  .grid2 .box-items .item--flex {
    max-width: 616px;
  }
}
.grid2 .box-items .item--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid2 .box-items .item--title {
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  background: linear-gradient(270deg, #F15B25 -17.79%, #EC2143 88.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.grid2 .box-items .item--title + .item--text {
  margin-top: 10px;
}
@media (max-width: 992px) {
  .grid2 .box-items .item--title {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .grid2 .box-items .item--title {
    font-size: 18px;
  }
}
.grid2 .box-items .item--text {
  font-size: 20px;
  line-height: 150%;
  color: #000000;
  display: grid;
  grid-gap: 12px;
}
@media (max-width: 992px) {
  .grid2 .box-items .item--text {
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .grid2 .box-items .item--text {
    font-size: 14px;
  }
}
.grid2 .box-items .item--text * {
  margin: 0;
}
.grid2 .box-items .item--text ul {
  list-style: none;
  padding: 0;
}
.grid2 .box-items .item--text ul li {
  padding: 3px 0 3px 24px;
  position: relative;
}
.grid2 .box-items .item--text ul li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 16px;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

.simages {
  padding: 50px 0 100px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .simages {
    padding: 30px 0 50px;
  }
}
.simages .box-slider {
  padding-top: 50px;
}
@media (max-width: 992px) {
  .simages .box-slider {
    padding-top: 30px;
  }
}
@media (min-width: 993px) {
  .simages .box-slider .swiper {
    overflow: inherit;
  }
}
.simages .box-slider .swiper-slide {
  width: auto;
  height: 450px;
}
@media (max-width: 1200px) {
  .simages .box-slider .swiper-slide {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .simages .box-slider .swiper-slide {
    height: 240px;
  }
}
.simages .box-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simages .box-slider .swiper-paginations {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  justify-content: center;
}
@media (max-width: 767px) {
  .simages .box-slider .swiper-paginations {
    gap: 6px;
  }
}
.simages .box-slider .swiper-paginations .swiper-pagination-bullet {
  width: 74px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(84.98deg, #F15B25 4.86%, #EC2143 92.9%);
}
@media (max-width: 767px) {
  .simages .box-slider .swiper-paginations .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
  }
}
.simages .box-actions {
  display: grid;
  grid-gap: 15px;
  padding-top: 50px;
  justify-content: center;
}
@media (max-width: 992px) {
  .simages .box-actions {
    padding-top: 30px;
  }
}
.simages .box-actions span {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
@media (max-width: 992px) {
  .simages .box-actions span {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .simages .box-actions span {
    font-size: 14px;
  }
}

.simage {
  padding: 100px 0 50px;
}
@media (max-width: 992px) {
  .simage {
    padding: 50px 0 30px;
  }
}
.simage .box {
  display: grid;
  grid-gap: 30px;
}
.simage .box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.simage .box-img img:nth-child(2) {
  display: none;
}
@media (max-width: 450px) {
  .simage .box-img img:nth-child(1) {
    display: none;
  }
  .simage .box-img img:nth-child(2) {
    display: block;
  }
}

.bprocess {
  position: relative;
  padding-top: 100px;
}
@media (max-width: 992px) {
  .bprocess {
    padding-top: 50px;
  }
}
.bprocess .aprocess {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.bprocess .aprocess::before {
  content: "";
  position: absolute;
  top: 131px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
@media (max-width: 992px) {
  .bprocess .aprocess::before {
    top: 79px;
  }
}
.bprocess .process {
  padding: 0 16px;
}
.bprocess .process-swiper {
  overflow: inherit;
  /* cho bóng đổ, active không bị cắt */
}
.bprocess .swiper-slide {
  width: auto;
}
@media (min-width: 993px) {
  .bprocess .swiper-slide:hover .item {
    background: url(../images/active-step.svg) center/cover no-repeat;
  }
  .bprocess .swiper-slide:hover .item--icon img:nth-child(1) {
    opacity: 0;
  }
  .bprocess .swiper-slide:hover .item--icon img:nth-child(2) {
    opacity: 1;
  }
  .bprocess .swiper-slide:hover .item--text {
    color: #F15B25;
  }
  .bprocess .swiper-slide:hover .item::before {
    opacity: 0;
  }
  .bprocess .swiper-slide:hover .item::after {
    opacity: 1;
  }
}
.bprocess .item {
  width: 221px;
  padding: 35px 26px;
  height: 255px;
  text-align: left;
  transition: all 0.3s ease;
  background: url(../images/step.svg) center/cover no-repeat;
  border-radius: 0px 72px 0px 0px;
  position: relative;
}
@media (max-width: 992px) {
  .bprocess .item {
    width: 133px;
    height: 153px;
    padding: 21px 15.5px;
  }
}
.bprocess .item::before {
  content: "";
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #B5B5B5 0%, #636668 100%);
  border-radius: 0px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 123px;
  left: 2px;
}
@media (max-width: 992px) {
  .bprocess .item::before {
    width: 9.5px;
    height: 9.5px;
    top: 74px;
    left: -5px;
  }
}
.bprocess .item:after {
  content: "";
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  border-radius: 0px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 123px;
  left: 2px;
  opacity: 0;
}
@media (max-width: 992px) {
  .bprocess .item:after {
    width: 9.5px;
    height: 9.5px;
    top: 69px;
    left: -5px;
  }
}
.bprocess .item--icon {
  text-align: center;
  position: relative;
  height: 75px;
}
@media (max-width: 992px) {
  .bprocess .item--icon {
    height: 45px;
  }
}
.bprocess .item--icon img {
  width: 75px;
  height: 75px;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 992px) {
  .bprocess .item--icon img {
    height: 45px;
    width: 45px;
  }
}
.bprocess .item--icon img:nth-child(2) {
  opacity: 0;
}
.bprocess .item--text {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #636668;
  padding-top: 42px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .bprocess .item--text {
    font-size: 12.5px;
    padding-top: 22px;
  }
}
@media (max-width: 992px) {
  .bprocess .item {
    background: linear-gradient(84.98deg, rgba(255, 255, 255, 0.3) 4.86%, rgba(255, 255, 255, 0.9) 92.9%);
    border-radius: 0px 72px 0px 0px;
    border: 1px solid rgba(236, 33, 67, 0.5);
    box-shadow: 0 3px 3px rgba(236, 33, 67, 0.4);
    margin: 5px;
  }
  .bprocess .item--icon img:nth-child(1) {
    opacity: 0;
  }
  .bprocess .item--icon img:nth-child(2) {
    opacity: 1;
  }
  .bprocess .item--text {
    color: #F15B25;
  }
  .bprocess .item::before {
    opacity: 0;
  }
  .bprocess .item::after {
    opacity: 1;
  }
}

.purpose {
  padding: 120px 0 100px;
}
@media (max-width: 992px) {
  .purpose {
    padding: 60px 0 50px;
  }
}
.purpose .box {
  max-width: 1300px;
  margin: auto;
  width: 100%;
}
.purpose .box .item {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-gap: 30px;
}
.purpose .box .item + .item {
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .purpose .box .item + .item {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .purpose .box .item + .item {
    margin-top: 40px;
  }
}
@media (max-width: 1200px) {
  .purpose .box .item {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
}
.purpose .box .item .item--title {
  padding-top: 10px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.21875;
  background: linear-gradient(90deg, #636668 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 992px) {
  .purpose .box .item .item--title {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .purpose .box .item .item--title {
    font-size: 20px;
  }
}
.purpose .box .item .item--text {
  font-size: 24px;
  line-height: 150%;
  color: #000000;
  max-width: 805px;
  display: grid;
  grid-gap: 12px;
}
@media (max-width: 1200px) {
  .purpose .box .item .item--text {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .purpose .box .item .item--text {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .purpose .box .item .item--text {
    font-size: 15px;
  }
}
.purpose .box .item .item--text * {
  margin: 0;
}
.purpose .box .item .item--bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
  grid-gap: 32px;
}
@media (max-width: 992px) {
  .purpose .box .item .item--bullets {
    grid-template-columns: repeat(2, minmax(1px, 1fr));
  }
}
.purpose .box .item .item--bullets li .item--icon img {
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .purpose .box .item .item--bullets li .item--icon img {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .purpose .box .item .item--bullets li .item--icon img {
    height: 60px;
  }
}
.purpose .box .item .item--bullets li .item--stext {
  font-weight: normal;
  font-size: 20px;
  line-height: 140%;
  color: #000000;
  padding-top: 20px;
}
@media (max-width: 992px) {
  .purpose .box .item .item--bullets li .item--stext {
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .purpose .box .item .item--bullets li .item--stext {
    font-size: 14px;
  }
}
.purpose .box .item .item--bullets li .item--stext b {
  font-weight: 800;
}
.purpose .box .item .item--bullets li .item--stext * {
  margin: 0;
}

.founders {
  padding: 120px 0 40px;
}
@media (max-width: 992px) {
  .founders {
    padding: 60px 0 30px;
  }
}
.founders .box-slider {
  padding: 25px 40px 0;
}
@media (max-width: 992px) {
  .founders .box-slider {
    padding: 15px 0 0;
  }
}
.founders .box-slider .item--avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.founders .box-slider .item--info {
  text-align: center;
  padding: 15px 0 0;
}
.founders .box-slider .item--name {
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  color: #000000;
  padding-bottom: 5px;
}
@media (max-width: 992px) {
  .founders .box-slider .item--name {
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .founders .box-slider .item--name {
    font-size: 14px;
  }
}
.founders .box-slider .item--position {
  font-size: 18px;
  line-height: 140%;
  color: #000000;
}
@media (max-width: 992px) {
  .founders .box-slider .item--position {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .founders .box-slider .item--position {
    font-size: 13px;
  }
}
.founders .box-slider .item--highlight {
  font-size: 18px;
  line-height: 140%;
  color: #717171;
}
@media (max-width: 992px) {
  .founders .box-slider .item--highlight {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .founders .box-slider .item--highlight {
    font-size: 13px;
  }
}
.founders .box-slider .swiper-paginations {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  justify-content: center;
}
@media (max-width: 767px) {
  .founders .box-slider .swiper-paginations {
    gap: 6px;
  }
}
.founders .box-slider .swiper-paginations .swiper-pagination-bullet {
  width: 74px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(84.98deg, #F15B25 4.86%, #EC2143 92.9%);
}
@media (max-width: 767px) {
  .founders .box-slider .swiper-paginations .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
  }
}

.commitment {
  padding: 80px 0;
  min-height: 1110px;
}
@media (max-width: 1200px) {
  .commitment {
    padding: 50px 0;
    min-height: 720px;
  }
}
@media (max-width: 767px) {
  .commitment {
    min-height: 500px;
  }
}
.commitment .box-img {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .commitment .box-img {
    margin-top: 30px;
  }
}
.commitment .box-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .commitment .box-actions {
    margin-top: 30px;
  }
}

.sbox {
  padding: 80px 0;
}
@media (max-width: 1200px) {
  .sbox {
    padding: 50px 0;
  }
}
.sbox .box {
  padding: 0 40px;
  margin-top: 25px;
}
@media (max-width: 992px) {
  .sbox .box {
    padding: 0;
  }
}
.sbox .box-slider {
  position: relative;
}
.sbox .box-slider .swiper-slide {
  width: auto;
}
.sbox .box-slider .item {
  width: 836px;
  height: 550px;
}
@media (max-width: 1200px) {
  .sbox .box-slider .item {
    width: 500px;
    height: 360px;
  }
}
@media (max-width: 767px) {
  .sbox .box-slider .item {
    width: 100%;
    height: 240px;
  }
}
.sbox .box-slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sbox .box-slider .swiper-button-next,
.sbox .box-slider .swiper-button-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.15;
  transition: all 0.3s ease;
}
.sbox .box-slider .swiper-button-next:after,
.sbox .box-slider .swiper-button-prev:after {
  display: none;
}
.sbox .box-slider .swiper-button-next:hover,
.sbox .box-slider .swiper-button-prev:hover {
  opacity: 0.5;
}
@media (max-width: 1400px) {
  .sbox .box-slider .swiper-button-next svg,
  .sbox .box-slider .swiper-button-prev svg {
    width: 18px;
    height: auto;
  }
}
@media (max-width: 992px) {
  .sbox .box-slider .swiper-button-next,
  .sbox .box-slider .swiper-button-prev {
    width: 60px;
    margin: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0.8;
  }
  .sbox .box-slider .swiper-button-next svg path,
  .sbox .box-slider .swiper-button-prev svg path {
    fill: #EC2143;
  }
}
.sbox .box-slider .swiper-button-next {
  right: -60px;
}
@media (max-width: 1400px) {
  .sbox .box-slider .swiper-button-next {
    right: -48px;
  }
}
@media (max-width: 992px) {
  .sbox .box-slider .swiper-button-next {
    right: 0;
  }
}
.sbox .box-slider .swiper-button-prev {
  left: -60px;
}
@media (max-width: 1400px) {
  .sbox .box-slider .swiper-button-prev {
    left: -48px;
  }
}
@media (max-width: 992px) {
  .sbox .box-slider .swiper-button-prev {
    left: 0;
  }
}
.sbox .box-slider .mySwiper2 .item {
  width: 100%;
  height: 0;
  padding-top: 46%;
}
.sbox .box-slider .mySwiper2 .item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sbox .box-slider .mySwiper {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .sbox .box-slider .mySwiper {
    margin-top: 6px;
  }
}
.sbox .box-slider .mySwiper .item {
  width: 100%;
  padding-top: 46%;
  height: 0;
}
.sbox .box-slider .mySwiper .item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sbox .box-orange {
  background: linear-gradient(90deg, #F15B25 0%, #E64931 100%);
  border-radius: 0px 0px 50px 0px;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 0.8fr 3fr;
  grid-gap: 30px;
  padding: 30px 40px;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .sbox .box-orange {
    grid-template-columns: 1fr;
    font-size: 17px;
    padding: 16px 20px;
  }
}
@media (max-width: 450px) {
  .sbox .box-orange {
    font-size: 14px;
  }
}
.sbox .box-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
  grid-gap: 22px 30px;
}
@media (max-width: 1200px) {
  .sbox .box-right ul {
    grid-template-columns: repeat(2, minmax(10px, 1fr));
    grid-gap: 24px;
  }
}
@media (max-width: 767px) {
  .sbox .box-right ul {
    grid-template-columns: 1fr;
  }
}
.sbox .box-right ul li {
  padding-left: 14px;
  position: relative;
}
.sbox .box-right ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .sbox .box-right ul li:before {
    top: 7px;
  }
}
@media (max-width: 450px) {
  .sbox .box-right ul li:before {
    top: 7px;
  }
}
.sbox .box-right ul li * {
  margin: 0;
}

.teams {
  padding: 80px 0 40px;
}
@media (max-width: 992px) {
  .teams {
    padding: 50px 0 30px;
  }
}
.teams .box .tk-btop--stext {
  max-width: 650px;
}
.teams .box-iteams {
  max-width: 1150px;
  margin: 15px auto auto;
  position: relative;
}
.teams .box-iteams > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.teams .box-iteams img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 0 50px 0 0;
  overflow: hidden;
}

.ceo {
  padding: 40px 0 120px;
}
@media (max-width: 992px) {
  .ceo {
    padding: 30px 0 50px;
  }
}
.ceo .box-items {
  max-width: 1150px;
  margin: 50px auto auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
  grid-gap: 30px 50px;
}
@media (max-width: 1200px) {
  .ceo .box-items {
    margin-top: 30px;
    grid-gap: 24px 36px;
  }
}
@media (max-width: 992px) {
  .ceo .box-items {
    display: none;
  }
}
.ceo .box-slider {
  margin-top: 30px;
  display: none;
}
@media (max-width: 992px) {
  .ceo .box-slider {
    display: block;
  }
}
.ceo .box-slider .item {
  text-align: center;
}
.ceo .box-slider .item--avatar img {
  margin: auto;
  height: 180px;
  width: auto !important;
}
@media (max-width: 450px) {
  .ceo .box-slider .item--avatar img {
    height: 150px;
  }
}
.ceo .box-slider .swiper-paginations {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  justify-content: center;
}
@media (max-width: 767px) {
  .ceo .box-slider .swiper-paginations {
    gap: 6px;
  }
}
.ceo .box-slider .swiper-paginations .swiper-pagination-bullet {
  width: 74px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(84.98deg, #F15B25 4.86%, #EC2143 92.9%);
}
@media (max-width: 767px) {
  .ceo .box-slider .swiper-paginations .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
  }
}
.ceo .box .item--avatar img {
  display: block;
  width: 60%;
}
.ceo .box .item--caption {
  padding-top: 15px;
}
.ceo .box .item--name {
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  color: #000000;
}
@media (max-width: 992px) {
  .ceo .box .item--name {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .ceo .box .item--name {
    font-size: 14px;
  }
}
.ceo .box .item--gray {
  padding-top: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #717171;
}
@media (max-width: 992px) {
  .ceo .box .item--gray {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .ceo .box .item--gray {
    font-size: 13px;
  }
}
.ceo .box .item--text {
  padding-top: 5px;
  font-size: 15px;
  line-height: 140%;
  color: #000000;
}
@media (max-width: 992px) {
  .ceo .box .item--text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .ceo .box .item--text {
    font-size: 13px;
  }
}

.phighlight {
  padding: 70px 0 50px;
}
@media (max-width: 992px) {
  .phighlight {
    padding: 40px 0 30px;
  }
}
.phighlight .project-items {
  padding: 40px;
}
@media (max-width: 992px) {
  .phighlight .project-items {
    padding: 20px 0;
  }
}

.grid4 {
  padding: 100px 0 80px;
}
@media (max-width: 992px) {
  .grid4 {
    padding: 50px 0 40px;
  }
}
.grid4 .box-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
  grid-gap: 30px;
  padding: 30px 40px 0;
}
@media (max-width: 1200px) {
  .grid4 .box-items {
    grid-template-columns: repeat(2, minmax(10px, 1fr));
    grid-gap: 24px;
  }
}
@media (max-width: 992px) {
  .grid4 .box-items {
    padding: 24px 0 0;
  }
}
@media (max-width: 450px) {
  .grid4 .box-items {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
}
.grid4 .box-items .item {
  border-radius: 0 50px 0 0;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.grid4 .box-items .item:hover .item--img img {
  transform: scale(1.02);
}
.grid4 .box-items .item:hover .item--caption:after {
  opacity: 1;
}
.grid4 .box-items .item:hover .item--caption {
  color: #fff;
}
.grid4 .box-items .item--img {
  height: 230px;
  position: relative;
  z-index: 2;
}
.grid4 .box-items .item--img > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.grid4 .box-items .item--img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.grid4 .box-items .item--caption {
  background: #fff;
  padding: 30px 15px 15px;
  color: #000000;
}
.grid4 .box-items .item--caption:after {
  content: "";
  display: block;
  background: linear-gradient(90deg, #EC2143 0%, #F15B25 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.grid4 .box-items .item--label {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .grid4 .box-items .item--label {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .grid4 .box-items .item--label {
    font-size: 14px;
  }
}
.grid4 .box-items .item--text {
  padding-top: 5px;
  font-size: 14px;
  line-height: 150%;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .grid4 .box-items .item--text {
    font-size: 13px;
  }
}
@media (max-width: 450px) {
  .grid4 .box-items .item--text {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .grid4 .box-items .item .item--caption {
    padding: 20px 15px;
  }
  .grid4 .box-items .item .item--caption:after {
    opacity: 1;
  }
  .grid4 .box-items .item .item--caption {
    color: #fff;
  }
}

.hnews {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .hnews {
    padding: 50px 0;
  }
}
.hnews .box-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
  grid-gap: 30px;
  padding: 30px 40px 0;
}
@media (max-width: 1200px) {
  .hnews .box-items {
    grid-template-columns: repeat(2, minmax(10px, 1fr));
    grid-gap: 24px;
  }
}
@media (max-width: 992px) {
  .hnews .box-items {
    padding: 24px 0 0;
  }
}
@media (max-width: 450px) {
  .hnews .box-items {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
}
.hnews .box-items .item {
  border-radius: 0 50px 0 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  border: 1px solid rgba(192, 192, 192, 0.3);
  background: linear-gradient(360deg, #FFFFFF 0%, #FFF7ED 100%);
}
.hnews .box-items .item:hover .item--img img {
  transform: scale(1.05);
}
.hnews .box-items .item--img {
  height: 230px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hnews .box-items .item--img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.hnews .box-items .item--caption {
  padding: 20px 15px 30px;
  color: #000000;
}
.hnews .box-items .item--caption:after {
  content: "";
  display: block;
  background: linear-gradient(90deg, #EC2143 0%, #F15B25 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.hnews .box-items .item--label {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .hnews .box-items .item--label {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .hnews .box-items .item--label {
    font-size: 14px;
  }
}
.hnews .box-items .item--text {
  padding-top: 5px;
  font-size: 14px;
  line-height: 150%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
@media (max-width: 992px) {
  .hnews .box-items .item--text {
    font-size: 13px;
  }
}
@media (max-width: 450px) {
  .hnews .box-items .item--text {
    font-size: 12px;
  }
}
.hnews .box-cta {
  padding-top: 30px;
}

.clients {
  padding: 0 0 120px;
}
@media (max-width: 992px) {
  .clients {
    padding: 0 0 60px;
  }
}
.clients .box-slider {
  padding-top: 50px;
}
@media (max-width: 992px) {
  .clients .box-slider {
    padding-top: 25px;
  }
}
.clients .box-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.clients .box-slider .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.clients .box-slider .item {
  position: relative;
  border-radius: 16px;
  padding: 10px 15px;
  margin: 30px 0 10px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .clients .box-slider .item {
    padding: 6px 10px;
    margin: 20px 0 10px;
  }
}
.clients .box-slider .item:hover {
  margin-top: 10px;
  box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.12);
}
.clients .box-slider .item:hover::before {
  height: 4px;
}
.clients .box-slider .item:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EC2143;
  width: 40px;
  height: 0;
  transition: all 0.3s ease;
}
.clients .box-slider .item img {
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .clients .box-slider .item img {
    height: 55px;
  }
}
@media (max-width: 767px) {
  .clients .box-slider .item img {
    height: 44px;
  }
}

.home-contact {
  padding: 150px 0 100px;
}
@media (max-width: 992px) {
  .home-contact {
    padding: 70px 0 50px;
  }
}
.home-contact .box-heading {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 992px) {
  .home-contact .box-heading {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .home-contact .box-heading {
    font-size: 22px;
  }
}
.home-contact .box-text {
  padding-top: 5px;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .home-contact .box-text {
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .home-contact .box-text {
    font-size: 14px;
  }
}
.home-contact .box-form {
  padding-top: 20px;
}
.home-contact .button--cta:after {
  display: none;
}
.home-contact .button--cta button {
  padding: 20px 30px 15px !important;
  background: linear-gradient(84.98deg, rgba(255, 255, 255, 0.8) 4.86%, #FFFFFF 92.9%) !important;
  border-radius: 0px 16px 0px 0px !important;
  width: auto !important;
  color: #F15B25 !important;
  font-weight: 600 !important;
}

.sector {
  padding: 0 0 100px;
}
@media (max-width: 992px) {
  .sector {
    padding: 0 0 50px;
  }
}
.sector .box .box-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  margin: 25px 40px 0;
  width: calc(100% - 80px);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .sector .box .box-items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
}
@media (max-width: 992px) {
  .sector .box .box-items {
    width: 100%;
    margin: 20px 0 0;
  }
}
@media (max-width: 450px) {
  .sector .box .box-items {
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }
}
.sector .box .box-items .item {
  position: relative;
  grid-column: span 1;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 400px;
}
@media (max-width: 1200px) {
  .sector .box .box-items .item {
    height: 250px;
  }
}
@media (max-width: 450px) {
  .sector .box .box-items .item {
    height: 180px;
  }
}
.sector .box .box-items .item--img {
  position: relative;
  width: 100%;
  height: 100%;
}
.sector .box .box-items .item--img::after {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.sector .box .box-items .item--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}
.sector .box .box-items .item--img .item-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
@media (max-width: 1200px) {
  .sector .box .box-items .item--img .item-hover {
    opacity: 1;
  }
}
.sector .box .box-items .item--caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
  transition: color 0.3s;
}
.sector .box .box-items .item--name {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .sector .box .box-items .item--name {
    font-size: 19px;
  }
}
@media (max-width: 450px) {
  .sector .box .box-items .item--name {
    font-size: 16px;
  }
}
.sector .box .box-items .item {
  /* Active */
}
@media (min-width: 1201px) {
  .sector .box .box-items .item.is-active {
    grid-column: span 3;
  }
  .sector .box .box-items .item.is-active .item--img::after {
    display: none;
  }
  .sector .box .box-items .item.is-active .item-hover {
    opacity: 1;
  }
  .sector .box .box-items .item.is-active .item-default {
    opacity: 0;
  }
  .sector .box .box-items .item.is-active .item--name {
    background: linear-gradient(270deg, #F15B25 -17.79%, #EC2143 88.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}

footer {
  position: relative;
  background: url(../images/bg-footer.jpg) left bottom/cover no-repeat;
}
@media (max-width: 992px) {
  footer {
    background: url(../images/bg-mfooter.jpg) center/cover no-repeat;
  }
}
footer .box {
  padding: 40px 20px 50px;
  display: grid;
  min-height: 391px;
}
@media (max-width: 1200px) {
  footer .box {
    grid-gap: 24px;
    min-height: 0;
    padding: 40px 0;
  }
}
footer .box-top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  footer .box-top {
    display: grid;
    grid-gap: 24px;
    justify-content: center;
    text-align: center;
  }
}
footer .box-top .box-logo img {
  height: 46px;
}
@media (max-width: 767px) {
  footer .box-top .box-logo img {
    height: 32px;
  }
}
footer .box-top .box-menus {
  display: flex;
  gap: 5px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1200px) {
  footer .box-top .box-menus {
    display: grid;
    grid-gap: 20px;
    justify-content: flex-end;
  }
}
@media (max-width: 992px) {
  footer .box-top .box-menus {
    display: none;
  }
}
footer .box-top .box-menus .menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
footer .box-top .box-menus .menu ul li {
  position: relative;
}
footer .box-top .box-menus .menu ul li.current-menu-item:hover::before {
  opacity: 0;
}
footer .box-top .box-menus .menu ul li.current-menu-item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background: url(../images/active-mfooter.png) center right/cover no-repeat;
  opacity: 1;
  transition: all 0.3s ease;
}
footer .box-top .box-menus .menu ul li:hover:after {
  opacity: 1;
}
footer .box-top .box-menus .menu ul li:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #F15B25 0%, #EC2143 100%);
  border-radius: 0px 16px 0px 0px;
  opacity: 0;
  transition: all 0.3s ease;
}
footer .box-top .box-menus .menu ul li a {
  display: block;
  padding: 10.5px 20px 7.5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height */
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  z-index: 9;
}
@media (max-width: 1400px) {
  footer .box-top .box-menus .menu ul li a {
    padding: 8px 20px 6px;
    font-size: 14px;
  }
}
footer .box-top .box-menus .social {
  padding: 5px 0 5px 30px;
  position: relative;
}
@media (max-width: 1400px) {
  footer .box-top .box-menus .social {
    padding: 5px 0 5px 20px;
  }
}
@media (max-width: 1200px) {
  footer .box-top .box-menus .social {
    margin: auto;
    padding: 5px 20px;
  }
}
footer .box-top .box-menus .social:after {
  content: "";
  top: 6.5px;
  bottom: 6.5px;
  left: 5px;
  width: 1px;
  background: #fff;
  position: absolute;
}
@media (max-width: 1200px) {
  footer .box-top .box-menus .social:after {
    display: none;
  }
}
footer .box-top .box-menus .social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1200px) {
  footer .box-top .box-menus .social ul {
    gap: 20px;
  }
}
footer .box-top .box-menus .social ul li a {
  display: block;
}
footer .box-top .box-menus .social ul li a:hover svg path {
  fill: #3D1312;
}
footer .box-top .box-menus .social ul li a svg {
  display: block;
}
footer .box-top .box-menus .social ul li a svg path {
  transition: all 0.3s ease;
}
footer .container-fluid {
  position: relative;
  z-index: 9;
}
footer .box-bottom {
  margin-top: auto;
  display: grid;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  footer .box-bottom {
    justify-content: center;
    text-align: center;
  }
}
footer .box-bottom .box-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 7px;
  text-align: right;
  max-width: 237px;
  margin-left: auto;
}
@media (max-width: 1200px) {
  footer .box-bottom .box-info ul {
    max-width: 100%;
    text-align: center;
  }
}
footer .box-bottom .box-info ul li {
  font-weight: normal;
  font-size: 14px;
  line-height: 140%;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  footer .box-bottom .box-info ul li {
    font-size: 12px;
  }
}
footer .box-bottom .box-other {
  display: flex;
  padding-top: 30px;
}
@media (max-width: 767px) {
  footer .box-bottom .box-other {
    display: grid;
    justify-content: center;
    grid-gap: 12px;
    padding-top: 24px;
  }
}
footer .box-bottom .box-other .menus {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media (max-width: 767px) {
  footer .box-bottom .box-other .menus {
    margin: auto;
  }
}
footer .box-bottom .box-other .menus li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #FFFFFF;
  padding: 0 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .box-bottom .box-other .menus li a:hover {
  color: #3D1312;
}
@media (max-width: 767px) {
  footer .box-bottom .box-other .menus li a {
    font-size: 12px;
  }
}
footer .box-bottom .box-other .copyright {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #FFFFFF;
  padding: 0 0 0 20px;
}
@media (max-width: 767px) {
  footer .box-bottom .box-other .copyright {
    font-size: 12px;
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */