:root {
  --scaler1: calc(100vw / 1920);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 20px;
}
@media only screen and (max-width: 575px) {
  html {
    font-size: 50%;
  }
}

body {
  /* max-width: 1920px; */
  font-size: 20px;
  margin: auto;
  font-family: "Open Sans", sans-serif;;
  font-weight: 400;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding: 0 132px;
  }
  header .container,footer .container {
    padding: 0 33px;
    max-width: 100%;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 100%;
    padding: 0 65px;
  }
  header .container,footer .container {
    padding: 0 33px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
  }
  header .container,footer .container {
    padding: 0 10px;
  }
}
img,
video {
  max-width: 100%;
}

a {
  color: unset;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 3;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.header-top-left img {
  width: 270px;
}
@media only screen and (max-width: 575px) {
  .header-top-left img {
    width: 250px;
  }
  .header-top{
    padding: 10px 0;
  }
}
.header-top-right {
  display: flex;
  align-items: center;
}
.header-top-right img {
  width: 160px;
}
@media only screen and (max-width: 575px) {
  .header-top-right img {
    width: 150px;
  }
}
.language {
  padding-left: 10px;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .language {
    display: none;
  }
  .header-mobile .language{display: flex;}
}
.language-select {
  padding-left: 5px;
  font-size: 14px;
}
.language img {
  width: 45px;
  border-radius: 3px;
  height: 45px;
}
.language-option {
  position: absolute;
  top: 100%;
  right: -20px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  display: none;
}
.language-option.active {
  display: block;
}
.language-option-item {
  padding: 10px 30px;
  cursor: pointer;
  font-weight: 700;
}
.language-option-item:hover {
  background-color: #dbdbdb;
}
.header-main {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .header-main {
    display: none;
  }
  .language-option-item{
    padding: 10px 20px;
    font-size: 16px;
  }
}
.header-main-menu{
  /* width: calc(100% - 100px); */
}
.header-main-menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  /* justify-content: space-between; */
}
.header-main-menu ul li {
  list-style: none;
  padding: 10px 40px 10px 0;
  font-size: 16px;
}

.header-main-menu ul li.current-menu-item{
  font-weight: 700;
}
.header-main-func i {
  font-size: 20px;
}
.header-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header-mobile {
    display: block;
    position: fixed;
    right: -100%;
    top: 50px;
    background-color: #fff;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
  }
  .header-mobile.active {
    right: 0;
    opacity: 1;
    pointer-events: all;
  }
  .header-mobile-top {
    padding-left: 20px;
  }
  .header-mobile ul {
    padding: 0;
    margin: 0;
  }
  .header-mobile ul li {
    list-style: none;
    padding: 10px;
    padding: 15px;
  }
  .header-mobile ul li a {
    font-size: 17px;
  }
}
.header .icon-show-menu {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header .icon-show-menu {
    display: block;
  }
}

svg {
  width: 30px;
}

#top-line,
#bottom-line,
#middle-line {
  transform-box: fill-box;
  transform-origin: center;
}

.icon-show-menu.active svg #top-line {
  animation: down-rotate 0.6s ease-out both;
}
.icon-show-menu.active svg #bottom-line {
  animation: up-rotate 0.6s ease-out both;
}
.icon-show-menu.active svg #middle-line {
  animation: hide 0.6s ease-out forwards;
}

@keyframes up-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(-10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(-10px) rotate(45deg) scale(0.9);
  }
}
@keyframes down-rotate {
  0% {
    animation-timing-function: cubic-bezier(0.16, -0.88, 0.97, 0.53);
    transform: translateY(0px);
  }
  30% {
    transform-origin: center;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px);
  }
  100% {
    transform-origin: center;
    transform: translateY(10px) rotate(-45deg) scale(0.9);
  }
}
@keyframes hide {
  29% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
main {
  margin-top: 150px;
}
@media only screen and (max-width: 992px) {
  main {
    margin-top: 52px;
  }
}
main.padding{
  padding-bottom: 60px;
}
.interested {
  background-color: #fafafa;
  text-align: center;
  padding: 80px 0;
}
.interested p {
  font-size: 40px;
  font-weight: 500;
}

.btn-light {
  color: #000;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  border-radius: 0;
  padding: 7px 12px;
  display: inline-block;
  font-weight: 400;
  color: #000;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 2rem;
  font-weight: 500;
  align-items: center;
  cursor: pointer;
}
.btn-light i {
  padding-left: 10px;
}

.btn-light-border {
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border-color: #272727;
  border-radius: 0;
  padding: 7px 12px;
  display: inline-block;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 2rem;
  border: 1.5px solid;
  cursor: pointer;
}
.btn-light-border i {
  padding-left: 10px;
}

.icon-bar {
  position: absolute;
  right: 10px;
  color: #df0f0f;
  bottom: 0;
  opacity: 0;
  margin-right: 50px;
  transition: margin 0.5s ease, opacity 0.5s cubic-bezier(1, 0, 1, 0);
  width: 24px;
  height: 24px;
  vertical-align: -25%;
}

.wedo-2-tab-content-item {
  position: relative;
}

.list-project-item:hover .icon-bar, .wedo-2-tab-content-item:hover .icon-bar, .product-list-item:hover .icon-bar, .solutions-list-item:hover .icon-bar {
  opacity: 1;
  margin-right: 10px;
  transition: margin 0.5s ease, opacity 0.5s cubic-bezier(0, 1, 0, 1);
}

.banner {
  background-image: url(../img/terrazze.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
}
.banner-text {
  max-width: 971px;
  margin: auto;
}
.banner-text h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: normal;
  margin-bottom: 0px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.66), 0 0 12px rgba(0, 0, 0, 0.33);
}
@media only screen and (max-width: 992px) {
  .banner-text h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-text h1 {
    font-size: 25px;
  }
}
.banner-text p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.33);
  margin-bottom: 0;
  font-size: 20px;
  padding: 20px 0;
}

.section-1 {
  background-color: #fafafa;
  padding: 81px 0;
  text-align: center;
}
.section-1 p {
  padding: 40px 0;
  font-size: 20px;
}
.section-1 .img {
  display: flex;
  justify-content: center;
}
.section-1 .img .clima {
  max-width: 300px;
}
.section-1 .img .rc {
  margin-left: 10px;
  max-width: 50px;
}

.title-section h3 {
  font-size: 40px;
  text-align: center;
}

.section-2, .section-3, .section-4 {
  padding-bottom: 81px;
}

.section-2 {
  padding-top: 81px;
}

.list-project {
  padding: 30px 0;
}
.list-project-item {
  margin: 15px;
}
@media only screen and (max-width: 992px) {
  .list-project-item {
    margin: 10px;
  }
}
.list-project-item-img{
  position: relative;
}
.list-project-item-img::before{
  padding-top: 30%;
  content: "";
  display: block;
}
.list-project-item-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icon-media{
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #000;
  color: #dbdbdb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-project-item-img img {
  width: 100%;
}
.list-project-item-text {
  padding: 10px;
  position: relative;
}
.list-project-item-text-title {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-project-item-text-title h5 {
  font-size: 24px;
  font-weight: 700;
  padding-top: 10px;
}
.list-project-item-text-title img {
  /* max-width: 40px; */
  height: 20px;
  border:1px solid #999;
}
.list-project-item-text p {
  margin-bottom: 0px;
}

.section-4 .title-section p {
  padding-top: 20px;
  text-align: center;
  font-size: 20px;
}
.section-4 .list-stories-item {
  color: #fff;
  position: relative;
  margin: 15px;
}
@media only screen and (max-width: 992px) {
  .section-4 .list-stories-item {
    margin: 10px;
  }
}
.section-4 .list-stories-item-img img {
  width: 100%;
}
.section-4 .list-stories-item-text {
  position: absolute;
  bottom: 5px;
  left: 10px;
}
.section-4 .list-stories-item-text h5 {
  font-size: 16px;
}
.section-4 .list-stories-item-text h6 {
  font-size: 22px;
}
.section-4 .list-stories-item-text p {
  padding-top: 5px;
  font-size: 14px;
}

.footer {
  /* background-color: #dbdbdb; */
  padding: 40px 0;
  font-size: 14px;
}
.footer .footer-content-1, .footer .footer-content-2, .footer .footer-content-3 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-content-3 ul li{
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .footer .footer-content-1, .footer .footer-content-2, .footer .footer-content-3 {
    padding: 20px;
    margin-bottom: 0;
  }
}
.footer .logo-footer {
  padding-bottom: 20px;
}
.footer .logo-footer img {
  max-width: 200px;
}
.footer h4 {
  font-size: 20px;
  margin-bottom: 20px;
}
.footer p{
  margin-bottom: 0;
}
.footer-content-2 {
  border-left: 1px solid #000;
}
@media only screen and (max-width: 992px) {
  .footer-content-2 {
    border: none;
    margin-bottom: 30px;
  }
}
.footer-content-2 {
  padding: 0 40px;
}
@media only screen and (max-width: 992px) {
  .footer-content-2 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 992px) {
  .footer-content-2 {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}
.footer a {
  text-decoration: underline;
}

.about-1 {
  padding: 81px 0;
  margin: auto;
}
@media only screen and (max-width: 992px) {
  .about-1 {
    padding: 30px 0;
  }
}
.about-1 p {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
}
.about-1 .btn-light {
  display: flex;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

.about-2 {
  background-color: #272727;
  color: #fff;
  padding: 50px 0;
}
@media only screen and (max-width: 992px) {
  .about-2 {
    padding: 30px 0;
  }
}
.about-2-content {
  display: flex;
}
@media only screen and (max-width: 992px) {
  .about-2-content {
    display: block;
  }
}
.about-2-content-title {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  font-size: 36px;
  font-weight: 700;
}
@media only screen and (max-width: 992px) {
  .about-2-content-title {
    padding-bottom: 20px;
  }
}
.about-2-content-content {
  padding-left: 30px;
  flex: 1;
}
@media only screen and (max-width: 992px) {
  .about-2-content-content {
    padding-left: 0;
  }
}
.about-2-content-content-tab {
  display: flex;
}
@media only screen and (max-width: 992px) {
  .about-2-content-content-tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.about-2-content-content-tab-item {
  border: 1.5px solid #fff;
  margin-right: 20px;
  padding: 5px 20px;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  font-size: 20px;
}
@media only screen and (max-width: 992px) {
  .about-2-content-content-tab-item {
    margin-right: 0;
  }
}
.about-2-content-content-tab-item.active {
  background-color: #fff;
  color: #000;
}
.about-2-content-content-tab-content {
  padding-top: 40px;
}
.about-2-content-content-tab-content-item {
  display: none;
}
.about-2-content-content-tab-content-item p {
  font-size: 20px;
  text-align: left;
}
.about-2-content-content-tab-content-item.active {
  display: block;
}

.about-3 {
  padding: 80px 0;
  background-color: #fafafa !important;
  margin: 50px 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .about-3 {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}
.about-3 .title-section h3 {
  margin-bottom: 30px;
}
.about-3 .title-section p {
  font-size: 20px;
  text-align: center;
}
.about-3-content {
  padding: 40px 0;
}
.about-3-content-item {
  margin-bottom: 80px;
  text-align: center;
}
.about-3-content-item-text h3 {
  font-size: 24px;
  font-weight: 500;
}
.about-3-content .row {
  justify-content: center;
}

.wedo-1 {
  padding: 81px 0;
}
@media only screen and (max-width: 992px) {
  .wedo-1 {
    padding: 30px 0;
  }
}
.wedo-1 p {
  text-align: center;
  font-size: 18px;
}
.wedo-2 h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.wedo-2-tab {
  display: flex;
  justify-content: center;
}
.wedo-2-tab-item {
  border: 1px solid #000;
  padding: 5px 20px;
  margin-right: 20px;
  font-weight: 700;
  color: #343a40;
  transition: all 0.3s;
  cursor: pointer;
}
.wedo-2-tab-item.active {
  color: #fff;
  background-color: #000;
}
.wedo-2-tab-content {
  display: none;
  transition: all 0.3s;
}
.wedo-2-tab-content.active {
  display: block;
}
.wedo-2-tab-content > p {
  padding: 50px 0;
  font-size: 20px;
  text-align: center;
}
.wedo-2-tab-content-item {
  /* padding-bottom: 20px;
  margin-bottom: 60px; */
  /* padding-bottom: 20px; */
}
.wedo-2-tab-content-item h3 {
  padding-top: 20px;
  text-align: left;
  margin-bottom: 10px;
  font-size: 24px;
}
.wedo-2-tab-content-item p {
  text-align: left;
}

.workus-1 {
  padding: 80px 0;
  background-color: #fafafa !important;
  font-size: 20px;
}
@media only screen and (max-width: 992px) {
  .workus-1 {
    padding: 30px 0;
  }
}

.workus-2 {
  padding: 40px 0;
}
@media only screen and (max-width: 992px) {
  .workus-2 {
    padding: 30px 0;
  }
}
.workus-2-content-item {
  margin: 80px 0;
}
.workus-2-content-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workus-2-content-item-title h3 {
  font-weight: 500;
  font-size: 30px;
}
.workus-2-content-item-title h3 span {
  font-size: 22px;
}
.workus-2-content-item-isshow {
  transition: all 0.2s;
}
.workus-2-content-item-isshow.active {
  transform: rotate(180deg);
}
.workus-2-content-item-content {
  display: none;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.33);
  padding-top: 20px;
}

.workus-3 {
  background-color: #fafafa;
  text-align: center;
  padding: 80px 0;
}
@media only screen and (max-width: 992px) {
  .workus-3 {
    padding: 30px 0;
  }
}
.workus-3 p {
  padding-top: 20px;
  font-size: 20px;
}
.workus-3 a {
  font-size: 20px;
}

.workus-4 {
  background-color: #212529;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
@media only screen and (max-width: 992px) {
  .workus-4 {
    padding: 30px 0;
  }
}
.workus-4-item h3 {
  font-weight: 600;
  font-size: 24px;
}
.workus-4-item p {
  font-size: 20px;
  margin-bottom: 20px;
}
.workus-4-item a {
  background-color: #dbdbdb;
  padding: 10px 30px;
  color: #000;
  font-weight: 500;
}

.contact {
  padding-bottom: 30px;
}
.contact h1 {
  padding-top: 80px;
  font-size: 40px;
}
@media only screen and (max-width: 992px) {
  .contact h1 {
    font-size: 18px;
  }
}
.contact p {
  font-size: 20px;
}

.modal-contact {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: #fff;
  padding: 30px;
  display: none;
  transition: all 0.5s;
  overflow-y: auto;
}
@media(max-width:768px){
  .modal-contact{
    width: 100%;
    height: 100vh;
  }
}
.modal-contact.active {
  display: block;
}
.modal-contact h3 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 20px;
}
.modal-contact-content {
  max-width: 700px;
  font-size: 14px;
}
.modal-contact-content h4{
  font-size: 18px;
}
.wpcf7-list-item{
  margin-left: 0;
}
.modal-contact-content p{
  margin-bottom: 0;
}
.modal-contact-content input {
  width: 100%;
  border: 1px solid #000;
  margin-bottom: 20px;
  height: 40px;
  font-size: 14px;
  padding-left: 10px;
}
.modal-contact-content select {
  width: 100%;
  border: 1px solid #000;
  height: 40px;
  padding-left: 10px;
  margin-bottom: 20px;
}
.modal-contact-content textarea {
  width: 100%;
  border: 1px solid #000;
  height: 100px;
}
.modal-contact-content input[type=checkbox] {
  width: auto;
  height: auto;
  margin-bottom: 0;
  padding-left: 0;
}
.modal-contact-content button {
  border: 2px solid #000;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 5px 30px;
  font-weight: 500;
  background: transparent;
}
.modal-contact-close {
  position: absolute;
  top: 0;
  right: 10px;
}

.product-tab-content {
  border-top: 1px solid #777777;
  padding-top: 30px;
  margin-top: 30px;
}
.product-tab-content .bg {
  background-color: #fafafa;
  padding-top: 30px;
}

.form-filter {
  margin-top: -50px;
  padding-bottom: 40px;
  display: none;
  transition: all 0.3s;
}
.form-filter.active {
  display: block;
}
.form-filter-content {
  display: flex;
  font-size: 20px;
  font-weight: 500;
}

.button__light {
  font-weight: 500;
  min-width: 8rem;
}

.button__light {
  margin-right: 32px;
  margin-bottom: 24px;
  font-size: 16px;
  color: #000;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  border-radius: 0;
  padding: 7px 12px;
  display: inline-block;
  text-transform: uppercase;
}
.button__light.active {
  background-color: #000;
  color: #fff;
}
.button__light input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.search-form {
  margin-bottom: 30px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}
.search-form form {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 992px) {
  .search-form form {
    max-width: 100%;
    width: 100%;
  }
}
.search-form .filter-button,.clear-button {
  margin-left: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  text-align: center;
  border: 1px solid #000;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  padding: 0 20px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
.clear-button{
  display: none;
}
.search-form .filter-button:hover,.clear-button:hover{
  background-color: #343a40;
  color: #fff;
}
.button__light:hover{
  background-color: #e2e6ea;
}

.search-form .filter-button.active,.clear-button.active {
  background-color: #000;
  color: #fff;
  display: flex;
}
.search-form .filter-button i,.clear-button i {
  padding-left: 10px;
}
.search-form input {
  padding-left: 10px;
  padding-right: 40px;
  max-width: 400px;
  border: 1px solid #000;
  width: 332px;
  height: 40px;
  font-size: 14px;
}
@media only screen and (max-width: 992px) {
  .search-form input {
    max-width: 100%;
    width: 100%;
  }
}
.search-form button {
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #000;
  color: #fff;
  padding: 0 10px;
  border: none;
}

.product-info {
  padding: 80px 0;
}
.product-info-item-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 5px;
  margin-bottom: 40px;
  transition: all 0.2s;
}
.product-info-item-title.active i {
  transform: rotate(180deg);
}
.product-info-item-content {
  padding-bottom: 40px;
  display: none;
}

.product-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-list-item {
  position: relative;
  background-color: #fff;
}
.product-list-item-img img {
  width: 100%;
}
.product-list-item-text {
  padding: 10px;
  padding-bottom: 20px;
}
.product-list-item-text h3 {
  font-size: 20px;
  font-weight: 700;
}
.product-list-item-text h4 {
  font-size: 16px;
}
.product-list-item-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.2;
}
.product-list-item .product-list-item-brand {
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  top: 0;
  left: 0;
  width: 100%;
}
.product-list-item .product-list-item-brand .logo {
  max-width: 100px;
}
.product-list-item .product-list-item-brand .logo img{
  max-width: 100px;
  max-height: 30px;
}
.product-list-item .product-list-item-brand .tag {
  font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    color: #fff;
    background-color: #272727;
    padding: 2px 14px;
    line-height: 1;
    height: 20px;
    display: flex;
    align-items: center;
}

.product-tab-content {
  display: none;
  transition: all 0.3s;
}
.product-tab-content.active {
  display: block;
}

.solutions-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .solutions-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .solutions-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.solutions-list-item {
  background: none;
}
.solutions-list-item-img {
  position: relative;
}
.solutions-list-item-title h3 {
  text-align: center;
  padding-top: 20px;
  font-size: 24px;
  line-height: 28px;
}

.list-project-item {
  position: relative;
}

.projects-tab-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.projects-tab-content .list-project-item {
  margin: 0;
  margin-bottom: 50px;
}

.stories-tab-content .section-4 .list-stories-item {
  margin: 0;
  margin-bottom: 40px;
}

.details {
  padding: 50px 0;
}

.realted-item {
  padding-top: 40px;
}
.realted-item h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
}
.phantrang{
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
}
.wp-pagenavi a, .wp-pagenavi span{
  border: none !important;
  padding: 3px 7px;
  margin: 8px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current{
  border: none;
  background-color: #000;
  color: #fff;
}
.backdrop{
  background-color: #fff;
  opacity: .5;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  display: none;
}
.header-search-form{
    border: 1px solid grey;
    padding: 13px 10px;
    position: fixed;
    top: 82px;
    right: -100%;
    opacity: 0;
    pointer-events: none;
    width: 443px;
    background: #fff;
    transition: all 0.5s;
    z-index: 13;
}
.header-search-form.active{
  right: 0;
  opacity: 1;
  pointer-events: all;
}
.header-search-form input{
  width: calc(100% - 40px);
  border: none;
  border-bottom: 1px solid #000;
}
.header-search-form button{
  position: absolute;
  border: none;
  background: transparent;
}
.product-details-content {
  padding-top: 50px;
}
.product-info-item-content input {
  height: 40px;
  width: 100%;
  padding-left: 10px;
  border: 1px solid #000;
}
.product-info-item-content .document-pdf table {
  width: 100%;
  color: #212529;
}
.product-info-item-content .document-pdf table img {
  width: 30px;
  height: 20px;
  padding-right: 10px;
}
.product-info-item-content .document-pdf table thead th {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-top: 0;
  border-bottom: 1px solid #000;
}
.product-info-item-content .document-pdf table th, .product-info-item-content .document-pdf table td {
  padding: 0.75rem;
}
input:focus,button:focus,textarea:focus{
  outline: none;
}
.hidden-pdf{
  display: none;
}
.product-info-item-content .document-pdf table button {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  background-color: initial;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: auto;
}
.product-info-item-content .document-pdf table button i {
  padding-left: 10px;
}
.product-info-item-content .document-pdf table thead th {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-top: 0;
  vertical-align: bottom;
  line-height: 24px;
  border-bottom: 1px solid #000;
}
.product-info-item-content .document-pdf table tbody {
  background-color: #f8f8f8;
}
.product-info-item-content .document-pdf table td {
  font-size: 14px;
  border-top: 0;
  border-bottom: 1px solid #c4c4c4;
  vertical-align: middle;
}
.view-contact {
  font-weight: 700;
  cursor: pointer;
}
.view-contact i {
  color: #29b473;
  padding-right: 7px;
}
.view-contact-content {
  padding-top: 10px;
  display: none;
}

.list-info {
  padding-top: 40px;
}
.list-info-1 {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
.list-info-1-item img {
  max-width: 180px;
  max-height: 50px;
  margin-right: 15px;
  margin-bottom: 25px;
}
.product-info-item-content ul{
    padding-left: 30px;
    list-style: square url(../img/bullet.png);
}
.product-info-item-content ul li{
  padding-left: 15px;
  
}
.product-info-item-content{
  font-size: 16px;
}
.page-search .search-form {
  padding-top: 81px;
  padding-bottom: 40px;
}

.search-content {
  background-color: #F5F5F5;
}
.search-content .content-search {
  padding-top: 40px;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.search-content .content-search-result {
  display: flex;
  flex-wrap: wrap;
}
.search-content .content-search-result-item {
  margin-right: 20px;
  padding: 0.5rem 2rem;
  text-decoration: none;
  border-radius: 0;
  border: 0;
  color: #343a40;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
.search-content .content-search-result-item.active {
  background-color: #000;
  color: #fff;
}

.content-search-result-tab {
  font-size: 20px;
  padding-bottom: 80px;
  display: none;
}
.content-search-result-tab.active {
  display: block;
}
.content-search-result-tab .result {
  padding-bottom: 1rem;
}
.content-search-result-tab .result a {
  text-decoration: underline;
}
.download-content {
  padding-bottom: 50px;
}
.download-content h1 {
  text-align: center;
  margin-bottom: 0;
  padding: 40px 0;
  font-size: 42px;
  line-height: 28px;
}
.download-content .site-map {
  display: flex;
  flex-wrap: wrap;
}
.download-content .site-map a {
  font-size: 20px;
  font-weight: 400;
  padding: 0 10px;
  padding-bottom: 30px;
  cursor: pointer;
}
.download-content .site-map a.active {
  font-weight: 700;
}
.download-content-list-item {
  text-align: center;
  cursor: pointer;
}
.download-content-list-child-item {
  font-size: 20px;
  line-height: 33px;
  cursor: pointer;
}
.download-content-pdf-tab.active {
  display: block;
}

input:focus, button:focus {
  outline: none;
}

.hidden-pdf {
  display: none;
}
@media(max-width:992px){
  .mb-none{
    display: none;
  }
}
@media(min-width:992px){
  .mb-block{
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
ul.menu>li ul.sub-menu {
  position: absolute;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  list-style: none;
  -webkit-box-shadow: 1px 2px 4px rgb(0 0 0 / 30%);
  box-shadow: 1px 2px 4px rgb(0 0 0 / 30%);
  background-color: #fff;
  z-index: 10;
  top: 150%;
  transition: all .5s ease;
  min-width:max-content;
  pointer-events: none;
}

.main-menu .menu li i.fa {
  font-size: 12px;
  padding-left: 5px;
}

.main-menu .menu li ul.sub-menu li {
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu .menu li {
  position: relative;
  align-items: center;
  display: flex;
  height: 70px;
}

ul.sub-menu li {
  list-style: none;
  padding: 0;
  padding: 5px;
}
ul.sub-menu li:hover a{
  color: #005595 !important;
}
.main-menu .menu li ul.sub-menu li a {
  width: 100%;
  margin: 3px;
  color: #000;
  font-size:16px;
  font-weight:normal;
}
ul.menu ul.sub-menu {
  display: none;
  border: 2px solid #ddd;
  box-shadow: 1px 1px 15px rgba(0,0,0,.15);
}
ul.menu>li:hover ul.sub-menu {
  opacity: 1;
  top:100%;
  visibility: visible;
  pointer-events: auto;
  height: max-content;
  transition: all .1s ease-in-out;
  display: block;
}
.header-mobile ul ul.sub-menu{
  display: none;
}
.header-mobile ul li a{
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.header-mobile ul li ul.sub-menu li a{
  font-weight: 400;
}
.header-mobile ul ul.sub-menu{
  padding-top: 10px;
}
.top-search{
  display: flex;
  padding: 10px ;
  justify-content: space-between;
  padding-right: 15px;
}
.form-search-mobile {
  position: relative;
}
.form-search-mobile form{
  display: flex;
  align-items: center;
}
.form-search-mobile input{
  width: 100%;
  border: 1px solid #000;
  height: 35px;
  border-radius: 5px;
}
.form-search-mobile button{
  margin-left: 5px;
  border-radius: 5px;
  text-align: center;
  width: 40px;
  height: 35px;
  border: none;
  color: #fff;
  background-color: #005595;
}
.banner-slider img{
  width: 100%;
}
.banner-slider .slick-dots {
  bottom: 20px;
}
.banner-slider  .slick-dots li button:before {
  color: #fff !important;
  font-size: 12px !important;
}
.thumbnail-img{
  position: relative;
}
.thumbnail-img::before{
  content: "";
  display: block;
  padding-top: 100%;
}
.thumbnail-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-slide{
  margin:0 15px;
}
.banner-slider .slick-slide{
  margin: 0;
}
.social-footer {
  padding-bottom: 20px;
}
.social-footer span{
    padding-right: 5px;
    
}
.social-footer img{
  width: 50px;
  
}
.footer-new{
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.follow-us-content{
  display: flex;
}
.follow-us-content-item{
  padding-right: 20px;
}
.follow-us{
  padding-right: 60px;
}
@media(max-width:992px){
  .footer-new{
    display: block;
    padding: 0;
  }
  .follow-us{
    padding-top: 30px;
    padding-right: 0;
  }
  .footer h3{
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media(max-width:575px){
  .follow-us-content-item{
    padding-right: 10px;
  }
}
.follow-us h3{
  color: #474646;
  font-size:28px;
}
.follow-us h3,.follow-us h4{
  font-weight: 700;
}
.chat-union {
  margin-top: auto;
}
.chat-union img{
  max-width: 200px;
}
.map{
  position: relative;
}
.map::before{
  padding-top: 60%;
  content: "";
  display: block;
}
.map iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map_lienhe{
  position: relative;
}
.map_lienhe::before{
  padding-top: 30%;
  content: "";
  display: block;
}
.map_lienhe iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#button-to-top {
  display: inline-block;
  background-color: #005595;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button-to-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
}
#button-to-top:hover {
  cursor: pointer;
  background-color: #333;
}
#button-to-top:active {
  background-color: #555;
}
#button-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 500px) {
  #button-to-top {
    margin: 30px;
  }
}
.slick-prev, .slick-next{
  filter: brightness(0);
}

.slick-slider{
  margin: auto;
  max-width: 90%;
}
.banner-slider{
  max-width: 100%;
}

.slick-prev:before, .slick-next:before{
  font-size: 32px;
  opacity: 0;
  transition: all 0.2s;
}
.slick-slider:hover .slick-prev:before,.slick-slider:hover .slick-next:before{
  opacity: 1;
}
@media(max-width:575px){
  .slick-prev:before, .slick-next:before{
    font-size: 16px;
  }
}
.product-details-content,.product-details-content p{
	font-size:14px;
	text-align:justify;
}
/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}