@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

p, strong {
  margin: 0px;
}

p {
  font-size: 16px;
  line-height: 24px;
}

h1 {
  font-size: 48px;
  line-height: 57px;
}

h2 {
  font-size: 40px;
  line-height: 52px;
}

h3 {
  font-size: 32px;
  line-height: 41.6px;
}

.shimmer {
  position: relative;
}

.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: shimmer 1s infinite reverse;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.desk-h100-slider img {
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .mobile-h100-slider img, .desk-h100-slider img {
    height: 100vh !important;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

:root {
  --theme-color:#E20E17;
  --white:#fff;
  --black:#000;
  --blue-100:#21203C;
  --blue-200:#0F1123;
  --blue-300:#393E46;
  --blue-400:#2C3038;
  --transition-main:all .3s ease-in-out;
}

body {
  width: 100%;
  float: left;
  font-family: "Lato", sans-serif;
}
body ul, body ol {
  margin: 0px !important;
}
body a {
  text-decoration: none;
}
body img {
  max-width: 100%;
}

.main {
  width: 100%;
  float: left;
}

.banner-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  height: -moz-max-content;
  height: max-content;
  text-align: left;
  color: #fff;
}

header {
  width: 100%;
  float: left;
  box-shadow: 1px 2px 13px rgba(0, 0, 0, 0.1411764706);
  z-index: 1000;
}
header .logo {
  width: 230px;
}
header .navbar {
  padding: 0px;
}
header .sub-menu {
  padding: 0px;
  position: absolute;
  top: 100%;
  left: 0%;
  background: white;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 3px solid var(--theme-color);
  box-shadow: -4px 7px 13px rgba(0, 0, 0, 0.0784313725);
  /* transition: all 0.3s ease-in-out;
  transform: translate(0px, 50px); */
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
header .sub-menu li {
  height: auto;
  border-bottom: 1px solid #e20e178c; 
  transition: all 0.3s ease-in-out;
}
header .sub-menu li a {
  padding: 10px;
  color: #292929!important;
}
header .sub-menu li a:focus-visible {
  outline: none!important;
}
header .sub-menu li:hover a {
  color: var(--theme-color) !important;
}
header .sub-menu li:nth-last-of-type(1) {
  border-bottom: 0px !important;
}
header .navbar-toggler {
  border: 0px;
  outline: 0px !important;
  padding: 0px;
  z-index: 1000000000000000;
}
header .navbar-toggler:focus {
  outline: 0px;
  box-shadow: none;
}
header .menu-item {
  position: relative;
  padding: 0px 10px;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  transition: var(--transition-main);
  height: 80px;
}
header .menu-item .menu-link {
  color: #000;
  float: left;
  width: 100%;
  transition: var(--transition-main);
}
header .current-menu-item a {
  color: var(--theme-color) !important;
  transition: var(--transition-main);
}
header .menu-item-has-children {
  transition: var(--transition-main);
}
header .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transform: translate(0px, 0px);
  pointer-events: all;
}
header .menu-item-has-children:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  -webkit-clip-path: polygon(50% 55%, 3% 0, 100% 0);
          clip-path: polygon(50% 55%, 3% 0, 100% 0);
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 0;
  margin: auto;
  display: block;
}

.header-fixed {
  position: fixed;
  background: var(--white);
  top: 0;
}

.btn-theme {
  background: var(--theme-color) !important;
  color: var(--white) !important;
  border-radius: 5px !important;
  padding: 8px 20px !important;
  border: 1px solid var(--theme-color) !important;
  line-height: inherit !important;
}
.btn-theme:hover {
  color: var(--theme-color) !important;
  background-color: var(--white) !important;
}

.main {
  width: 100%;
  float: left;
}

.main-banner-sec {
  position: relative;
  display: flex;
  align-items: center;
}
.main-banner-sec .text-part {
  position: absolute;
  width: 100%;
}
.main-banner-sec .text-part .content-part {
  width: -moz-fit-content;
  width: fit-content;
  /* background: rgba(255, 255, 255, 0) 0% 0% no-repeat padding-box;
  opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(9px); */
  padding: 35px 60px;
  width: 80%;
  text-align: left;
}
.main-banner-sec .text-part .content-part h1 {
  font-size: 48px;
  font-family: "Lato";
  font-weight: 900;
}
.main-banner-sec .text-part .content-part p {
  font-family: "Lato";
  line-height:55px;
  color: var(--blue-100);
  color:#fff!important;
}

.about-us-sec {
  padding: 80px 0px;
  overflow: hidden;
}
.about-us-sec .row {
  align-items: center;
  justify-content: space-between;
}
.about-us-sec .row .col-lg-6 {
  width: 48%;
}
.about-us-sec .img-part img {
  width: 100%;
}
.about-us-sec .text-part h2 {
  color: var(--blue-200);
}
.about-us-sec .text-part p {
  color: var(--blue-300);
  margin: 20px 0px;
}
.about-us-sec .text-part ul {
  display: flex;
  padding: 0px;
}
.about-us-sec .text-part ul li {
  padding-right: 30px;
  border-right: 2px solid var(--theme-color);
  margin-right: 37px;
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
.about-us-sec .text-part ul li p {
  margin: 0px;
  font-weight: 800;
  color: var(--black);
  font-size: 14px;
}
.about-us-sec .text-part ul li span {
  font-size: 34px;
  font-weight: 900;
}
.about-us-sec .text-part ul li:nth-last-of-type(1) {
  border-right: 0px;
}
.about-us-sec .text-part .btn-sec {
  margin: 40px 0px 0px 0px;
}

.main-head h2 {
  font-size: 40px;
  font-weight: 800;
  color: #292929;
}

.product-sec {
  text-align: center;
  padding-bottom: 60px;
}
.product-sec .btn-part {
  margin-top: 30px;
}
.product-sec p {
  margin-bottom: 50px;
}
.product-sec .product-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 30px;
}
.product-sec .product-card img {
  border-radius: 10px;
}
.product-sec .product-card .text-part {
  position: absolute;
  bottom: 0px;
  color: var(--white);
  padding: 20px;
  z-index: 1;
  width: 100%;
}
.product-sec .product-card .text-part a {
  color: var(--theme-color);
  font-weight: bold;
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.product-sec .product-card .text-part a::after {
  background-image: url("https://www.organixbs.com/wp-content/uploads/2023/10/right-icon.png");
  width: 15px;
  height: 15px;
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  top: 6px;
  bottom: 0;
  margin: auto;
  display: block;
  right: -25px;
}
.product-sec .product-card .text-part h3 {
  font-size: 23px;
  line-height: inherit;
  font-family: "Open Sans", sans-serif;
}
/* .product-sec .product-card::after {
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #292929 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
} */

.product-sec .product-card .text-part{
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #292929 100%) 0% 0% no-repeat padding-box;
  
}
.product-sec .product-card:hover .text-part a {
  display: block;
}

.commited-sec {
  background: url("https://www.organixbs.com/wp-content/uploads/2023/10/commited-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0px;
  background-position: center center;
  background-attachment: fixed;
}
.commited-sec h2 {
  color: var(--white);
  text-align: center;
  font-size: 52px;
  line-height: normal;
}

.lets-talk-sec {
  background-image: url("https://www.organixbs.com/wp-content/uploads/2023/10/lets-talk-sec-bg.png");
  background-repeat: no-repeat;
  width: 100%;
  float: left;
  padding: 50px 0px;
  background-size: cover;
  color: var(--white);
}
.lets-talk-sec h2 {
  color: var(--white);
}
.lets-talk-sec .row {
  max-width: 80%;
  margin: auto;
}

.lets-talk-sec .text-sec p {
  margin: 20px 0px 30px 0px;
}
.lets-talk-sec .text-sec .contact-card {
  display: flex;
  align-items: center;
  align-items: flex-start;
  margin-bottom: 40px;
}
.lets-talk-sec .text-sec .contact-card .icon-part {
  margin-right: 20px;
}
.lets-talk-sec .text-sec .contact-card .icon-part img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lets-talk-sec .text-sec .contact-card .text-part a {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--white) !important;
}
.lets-talk-sec .text-sec .contact-card .text-part a span {
  font-size: 20px;
  font-weight: bold;
}
.lets-talk-sec form .row {
  max-width: 100%;
}
.lets-talk-sec form .row .col-12 {
  margin-bottom: 20px;
}
.lets-talk-sec form .row .inp-grpup {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 8px;
  border: 0.3000000119px solid #707070;
  border-radius: 10px;
  opacity: 1;
}
.lets-talk-sec form .row .inp-grpup p {
  display: flex;
  align-items: center;
}
.lets-talk-sec form .row .inp-grpup img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lets-talk-sec form .row .inp-grpup input, .lets-talk-sec form .row .inp-grpup textarea {
  border: 0px !important;
  padding: 6px 6px 6px 20px;
}
.lets-talk-sec form .row .inp-grpup textarea {
  height: 130px;
}

.form-control:focus, input:focus, textarea:focus {
  outline: none;
  box-shadow: none;
}

.zig-zag-sec {
  padding: 80px 0px;
  overflow-x: hidden;
}
.zig-zag-sec .img-part {
  position: relative;
  padding: 20px 20px 0px 0px;
}
.zig-zag-sec .row:nth-child(even) .img-part {
  position: relative;
  padding: 20px 0px 0px 20px;
}

.zig-zag-sec .img-part::after {
  background: var(--theme-color) !important;
  position: absolute;
  width: calc(88% - 20px);
  height: calc(80% - 20px);
  content: '';
  right: 0;
  z-index: -1;
  top: 0;
}
.zig-zag-sec .row:nth-child(even) .img-part::after {
  left: 0;
  right: auto;
}
.zig-zag-sec h2 {
  margin-bottom: 20px;
}
.zig-zag-sec .text-part {
  padding-left: 40px;
}
.zig-zag-sec .row {
  align-items: center;
  margin-bottom: 60px;
}
.zig-zag-sec .row:nth-child(odd) {
  flex-direction: row-reverse;
}
.zig-zag-sec .row:nth-child(odd) .text-part {
  padding-left: 0px;
  padding-right: 40px;
}
.zig-zag-sec .row:nth-last-of-type(1) {
  margin-bottom: 0px !important;
}
.zig-zag-sec .row p {
  color: var(--blue-300);
}

.water-proof-sec .water-proof-card {
  width: 100%;
  background-image: url("https://www.organixbs.com/wp-content/uploads/2023/10/backgroundh-min.png");
  padding: 30px 40px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  border-radius:10px;
}
.water-proof-sec .water-proof-card .img-part {
  width: 35%;
  flex: 0 0 auto;
  text-align: center;
}
.water-proof-sec .water-proof-card .img-part img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;

}
.water-proof-sec .water-proof-card .text-part {
  width: 65%;
  flex: 0 0 auto;
}
.water-proof-sec .water-proof-card .text-part p:nth-child(1) {
  display: none;
}
.water-proof-sec .water-proof-card .text-part a,
.project-card .text-part a {
  color: var(--white) !important;
  border-radius: 5px !important;
  padding: 8px 20px !important;
  border: 1px solid var(--white) !important;
  line-height: inherit !important;
  display: block;
  width: fit-content;
}
.water-proof-sec .water-proof-card .text-part a:hover,
.project-card .text-part a:hover {
  background-color: var(--theme-color);
  color: var(--white) !important;
  border: 1px solid var(--theme-color) !important;
}
.project-card .text-part a {
  color: #21203C!important;
  border-color:#21203C !important;
  margin-top: 16px;
}
.water-proof-sec .water-proof-card .text-part a::after,
.project-card .text-part a::after {
  content: "\f105";
  font-family: 'FontAwesome';
  margin-left: 12px;
}
.water-proof-sec .water-proof-card .text-part h3 {
  font-weight: bold;
  margin: 15px 0px;
}
.water-proof-sec .col-lg-6 {
  display: flex;
}
.water-proof-sec .col-lg-6:nth-last-of-type(1) .water-proof-card {
  background-image: url("https://www.organixbs.com/wp-content/uploads/2023/10/background-min.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.inner-banner {
  position: relative;
  margin-bottom: 50px;
}
.inner-banner .text-part {
  position: absolute;
  left: 0;
  width: 100%;
  color: var(--white);
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
}
.inner-banner .text-part h1 {
  font-weight: 600;
  margin-bottom: 10px;
}
.inner-banner .text-part p {
  font-weight: 500 !important;
}
.inner-banner .breadcrumb-sec {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.inner-banner .breadcrumb-sec nav {
  display: flex;
  justify-content: flex-end;
}
.inner-banner .breadcrumb-sec .breadcrumb {
  margin: 0px;
  justify-content: end;
  background: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
}
.inner-banner .breadcrumb-sec .breadcrumb-item + .breadcrumb-item::before {
  /* content: "\f178" !important; */
  content: "\f105" !important;
  font-family: "FontAwesome" !important;
  line-height: 22px;
    font-size: 20px;
}
.inner-banner img {
  width: 100%;
  flex: 0 0 auto;
}
.inner-banner::after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1607843137);
  content: "";
  left: 0;
  top: 0;
  position: absolute;
}

.breadcrumb-item {
  color: #292F34;
  font-weight: 600;
}
.breadcrumb-item a {
  color: #292F34;
}

.breadcrumb-item.active {
  color: #292F34;
}

.building-system-sec {
  padding: 80px 0px;
  text-align: center;
}
.building-system-sec .btn-part {
  margin-top: 50px;
}
.building-system-sec h2 {
  margin-bottom: 50px;
}
.building-system-sec .img-part {
  width: 200px;
  height: 200px;
  position: relative;
  margin: auto;
}
.building-system-sec .img-part img {
  border-radius: 50%;
  height: 100%;
  width: auto;
}
.building-system-sec h3 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
}

.latest-blog-sec {
  padding: 120px 0px 80px 0px;
  background: #1f6eec08;
  margin-top: 80px;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
}
.latest-blog-sec h2 {
  margin-bottom: 30px;
}
.latest-blog-sec .btn-part {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.latest-blog-sec .blog-card {
  background: #FEFEFF 0% 0% no-repeat padding-box;
  border: 0.3000000119px solid #cecece;
  border-radius: 12px;
  opacity: 1;
  padding: 15px 15px 70px 15px;
  box-shadow: 0px 0px 20px #a9a9a921;
  margin: 20px 0px;
}
.latest-blog-sec .owl-carousel .owl-stage {
  display: flex;
}
.latest-blog-sec .owl-nav .owl-prev, .latest-blog-sec .owl-nav.disabled .owl-prev,
.latest-blog-sec .owl-nav .owl-next, .latest-blog-sec .owl-nav.disabled .owl-next {
  background: rgb(226 14 23) !important;
  color: var(--white) !important;
}
.latest-blog-sec .owl-carousel .item {
  display: flex;
  height: 100%;
  width: 99%;
  margin: auto;
}
.latest-blog-sec .blog-card .blogcard {
  padding: 20px 12px;
  color: #393E46;
  font-weight: bold;
  position: absolute;
  bottom: 16px;
  width: 100%;
  left: 0;
}
.latest-blog-sec .blog-card .blogcard::before {
  content: '';
  width: calc(100% - 30px);
  height: 1px;
  background: #21203C;
  position: absolute;
  top: 0;
  left: 15px;
}
.latest-blog-sec .blog-card .blogcard .user {
  position: relative;
  padding-left: 30px;
}
.latest-blog-sec .blog-card .blogcard .user::before {
  background: #D8D8D8;
  width: 20px;
  height: 20px;
  content: "";
  left: 0;
  position: absolute;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}
.latest-blog-sec .blog-card .blogcard .categ {
  position: relative;
  padding-left: 15px;
  margin-left: 10px;
}
.latest-blog-sec .blog-card .blogcard .categ::before {
  width: 8px;
  height: 8px;
  background: #1F6EEC;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  left: 0;
}
/* .latest-blog-sec .blog-card h3 {
  font-size: 23px;
  font-weight: bold;
  line-height: normal;
  font-family: "Libre Franklin", sans-serif;
} */

.latest-blog-sec .blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    font-family: "Libre Franklin", sans-serif;
    margin: 0 0 20px;
    /* height: 44px; */
}
.latest-blog-sec .blog-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-blog-sec .blog-card .img-part {
  position: relative;
  margin-bottom: 50px;
}
.latest-blog-sec .blog-card .img-part .date-part {
  background: #1F6EEC;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  bottom: -30px;
  left: 20px;
  font-size: 14px;
  width: 60px;
}
.latest-blog-sec .blog-card .img-part .date-part span {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.latest-blog-sec .blog-card .img-part .date-part p {
  margin: 0px;
  font-size: 12px;
  line-height: 1.3;
}
.latest-blog-sec .blog-card .img-part img {
  border-radius: 15px;
  width:100%;
}

.owl-nav, .owl-nav.disabled {
  display: block !important;
  display: none;
  display: flex !important;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  height: -moz-fit-content !important;
  height: fit-content !important;
  margin: auto;
}
.owl-nav .owl-prev, .owl-nav.disabled .owl-prev {
  width: 50px;
  height: 50px;
  background: rgba(226, 14, 23, 0.1137254902) !important;
  border-radius: 50% !important;
  color: var(--theme-color) !important;
  margin-left: -50px !important;
}
.owl-nav .owl-next, .owl-nav.disabled .owl-next {
  width: 50px;
  height: 50px;
  background: rgba(226, 14, 23, 0.1137254902) !important;
  border-radius: 50% !important;
  color: var(--theme-color) !important;
  margin-right: -50px !important;
}

.owl-theme .owl-nav {
  margin-top: auto !important;
}

.our-project-sec {
  padding-bottom: 80px;
}
.our-project-sec .grid-container {
  max-width: 100% !important;
}
.our-project-sec .btn-part {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.our-project-sec h2 {
  text-align: center;
  margin-bottom: 50px;
}
.our-project-sec .our-project-card {
  position: relative;
}
.our-project-sec .our-project-card .text-part {
  position: absolute;
  bottom: 0;
  padding: 20px;
  z-index: 1;
}
.our-project-sec .our-project-card .text-part .btn {
  display: none;
}
.our-project-sec .our-project-card .text-part h3 {
  font-size: 20px;
  color: var(--white);
  margin: 0px;
  line-height: inherit;
}
.our-project-sec .our-project-card::after {
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #292929 100%) 0% 0% no-repeat padding-box;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  border-radius:10px;
}
/* .our-project-sec .our-project-card:hover::after {
  background: transparent linear-gradient(180deg, #C4C4C4 0%, #292929 100%) 0% 0% no-repeat padding-box !important;
} */
.our-project-sec .our-project-card:hover .text-part {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-project-sec .our-project-card:hover .text-part h3 {
  display: none;
}
.our-project-sec .our-project-card:hover .text-part .btn {
  display: block;
}

.social-icon ul {
  display: flex;
  margin-top: 20px !important;
}
.social-icon ul li {
  padding: 0px !important;
  margin: 0px 5px 0px 5px !important;
}
.social-icon ul li:before {
  display: none;
}
.social-icon ul li:nth-child(1) {
  margin-left: 0px !important;
}

.footer-main {
  margin: 0px !important;
}
.footer-main li {
  font-size: 16px !important;
}
.footer-main p {
  font-size: 16px !important;
  line-height: 30px !important;
}
.footer-main .social-icon img {
  width: 26px;
  height: 26px;
}

.accordion-body p {
  margin: 0 0 13px;
  text-align:justify;
}

.masonary-container {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.masonary-container img {
  max-width: 100%;
  display: block;
}
.masonary-container figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 15px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.masonary-container figure > img {
  grid-row: 1/-1;
  grid-column: 1;
  height: 230px;
}
.masonary-container figure img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
	 border-radius:10px;
}
.masonary-container figure a {
  color: black;
  text-decoration: none;
}
.masonary-container figcaption {
  grid-row: 2;
  grid-column: 1;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.2em 0.5em;
  justify-self: start;
}

#scroll-top {
  position: fixed;
  bottom: 75px;
  right: 40px;
  background: var(--theme-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  border-radius: 50%;
  transform: translate(0px, -50px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.scroll-top-show {
  transform: translate(0px, 0px) !important;
  opacity: 2 !important;
}

.number2 img {
  height: 308px !important;
}

.number1 img {
  height: 457px !important;
}

.number8 img {
  height: 158px !important;
}

.number6 img {
  height: 164px !important;
}

.number7 img {
  height: 163px !important;
}

.inner-content-part {
  padding-bottom: 80px;
}
.inner-content-part h2 {
  margin-bottom: 20px;
}
.inner-content-part .row {
  align-items: center;
}
.inner-content-part .img-part img {
  width: 100%;
}
.inner-content-part .img-part ol {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px !important;
  padding: 0px;
}
.inner-content-part .img-part ol li {
  flex: 0 0 auto;
  margin-left: 30px;
}
.inner-content-part .img-part ol li::marker {
  color: var(--theme-color);
}

.page-id-533 .inner-content-part .other-projects-sec {
  padding: 80px 0px 250px 0px;
}

.page-id-410 .inner-content-part .other-projects-sec {
  padding: 80px 0px 250px 0px;
}
.page-id-410 .inner-content-part .img-part {
  background: #efefef;
  padding: 20px;
}

.project-slider {
  padding: 40px 0px;
}
.project-slider .swiper-button-next,
.project-slider .swiper-button-prev {
  display: none !important;
}
.project-slider img {
  margin: 5px 0px !important;
}

.other-projects-sec {
  background-color: #292929;
  padding: 80px 0px 80px 0px;
  margin-top: 40px;
}

.page-id-432 .other-projects-sec {
  background-color: #EFEFEF;
  
 
}
.other-projects-sec .owl-dots {
  margin-top: 30px;
}
.other-projects-sec .owl-dots .owl-dot {
  margin: 5px 4px !important;
}
.other-projects-sec .owl-dots .owl-dot.active span {
  background-color: var(--theme-color) !important;
}
.other-projects-sec .owl-nav .owl-prev, .other-projects-sec .owl-nav.disabled .owl-prev {
  width: 44px;
  height: 45px;
  background: rgba(94, 94, 94, 0.84) !important;
  border-radius: 50% !important;
  color: var(--theme-color) !important;
  border-radius: 0px !important;
  font-size: 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -70px !important;
}
.other-projects-sec .owl-nav .owl-next, .other-projects-sec .owl-nav.disabled .owl-next {
  width: 44px;
  height: 45px;
  background: rgba(94, 94, 94, 0.84) !important;
  border-radius: 50% !important;
  color: var(--theme-color) !important;
  border-radius: 0px !important;
  font-size: 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -70px !important;
}
.other-projects-sec h3 {
  color: #fff;
  text-align: center;
  font-weight: 800;
  margin: 0 0 40px;
}
.other-projects-sec .container {
  padding: 0px 40px;
}
.other-projects-sec .owl-stage {
  display: flex;
}
.other-projects-sec .owl-stage .item {
  display: flex;
  height: 100%;
}
.other-projects-sec .project-card {
  margin-bottom: 30px !important;
  height: 100%;
  border-bottom: 8px solid var(--theme-color);
  display: flex;
  flex-direction: column;
}
.other-projects-sec .project-card .text-part {
  border: 0px;
  display: flex;
  flex-direction: column;
  height: inherit;
  justify-content: space-between;
  padding: 15px !important;
}
.other-projects-sec .project-card .text-part .top-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 75%;
}
.other-projects-sec .project-card .text-part h3 {
  height: auto !important;
  margin-bottom: 0px !important;
  text-align: left;
  font-size: 18px;
}
.other-projects-sec .project-card .text-part p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0px !important;
  text-align:left;
}
.other-projects-sec .img-part {
  padding: 0px !important;
  background: transparent !important;
}
.other-projects-sec .img-part img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-id-565 .support-content h3 {
  font-size: 25px !important;
}
.page-id-565 .support-content h3:nth-of-type(1) {
  font-size: 30px !important;
}

.project-sec .col-12 {
  display: flex;
}
.project-sec .project-card {
  width: 100%;
}
.project-sec .project-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.support-content {
    margin-top: -160px;
    margin-bottom: 45px;
}
.support-content .container {
  padding: 0px 40px;
}
.support-content .text-part {
  background: transparent linear-gradient(180deg, #E20E17 0%, #71070C 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1725490196);
  opacity: 1;
  padding: 50px;
  color: var(--white);
}
.support-content a {
  color: #fff !important;
}
.support-content h4 {
  font-size: 20px;
  line-height: inherit;
}
.support-content h5 {
  font-size: 34px;
  font-weight: 700;
  margin: 20px 0px 25px 0px;
}
.support-content span {
  display: block;
  margin: 15px 0px;
}

.mySwiper-thumbs img {
  height: 360px !important;
}

.mySwiper-product img {
  height: 700px !important;
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.pagination {
  justify-content: center;
  margin: 0px 0px 40px 0px;
}
.pagination .nav-links {
  display: flex;
}
.pagination .nav-links .page-numbers {
  width: 40px;
  height: 40px;
  background: #ffedee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0px 10px;
  color: var(--black);
  font-weight: 600;
}
.pagination .nav-links .next, .pagination .nav-links .prev {
  background: none !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.sticky-main .col-lg-4 {
  width: 25% !important;
}
.sticky-main .col-lg-8 {
  width: 75% !important;
}
.sticky-main .sidebar ul {
  padding: 0px;
}
.sticky-main .sidebar ul li {
  list-style: none;
  padding: 0px;
  background: #ffedee;
}
.sticky-main .sidebar ul li a {
  color: var(--black) !important;
  font-weight: 600;
  display: block;
  padding: 15px 20px !important;
}
.sticky-main .sidebar ul .active {
  background: var(--theme-color);
}
.sticky-main .sidebar ul .active a {
  color: var(--white) !important;
}
.sticky-main .scroll-content .accordion-part {
  width: 100%;
  float: left;
}
.sticky-main .scroll-content .col-lg-4 {
  width: 33.33% !important;
  display: flex;
  margin-bottom: 30px;
}
.sticky-main .scroll-content .prodcut-card {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2117647059);
  border-radius: 10px;
  width: 100%;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}
.sticky-main .scroll-content .prodcut-card .btn-theme {
  background: #BC1724 !important;
  color: #fff !important;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.sticky-main .scroll-content .prodcut-card img {
  width: 100%;
}
.sticky-main .scroll-content .prodcut-card .text-part {
  position: relative;
  padding: 30px 20px 0px 20px;
}
.sticky-main .scroll-content .prodcut-card .text-part h3 {
  font-size: 15px;
  line-height: inherit;
  font-weight: 500;
  margin: 15px 0px;
}
.sticky-main .scroll-content .prodcut-card .text-part .product-code {
  position: absolute;
  top: 0px;
  right: 20px;
  font-weight: 600;
}

.sticky-main {
  margin-bottom: 80px;
  clear: both;
  display: block;
}
.sticky-main .sidebar-sticky {
  display: inline-block;
  float: left;
  position: sticky;
  top: 80px;
}
.sticky-main .scroll-content {
  display: inline-block;
  vertical-align: top;
  float: right;
}
.sticky-main:before, .sticky-main:after {
  content: "";
  display: table;
  clear: both;
}

.accordion-item {
  margin-bottom: 20px;
  background: #FFEDEE !important; 
  
  border: 0px;
  border-radius: 6px !important;
}
.accordion-item .accordion-body {
  padding: 0px 40px 20px 40px;
}
.accordion-item .accordion-button {
 background: #ffedee !important; 
 
  box-shadow: none !important;
  font-size: 22px;
  color: #000 !important;
  font-weight: 600;
  padding: 15px 40px;
}
.accordion-item .accordion-button::after {
  font-family: "FontAwesome";
  content: "\f067" !important;
  position: absolute;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  right: 30px;
  margin: auto;
  display: block;
  background: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: none !important;
  content: "\f068" !important;
}

.search-part {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.search-part .search-input {
  display: flex;
  align-items: center;
  width: 400px;
  max-width: 400px;
  border: 0.5px solid var(--theme-color);
  border-radius: 11px;
  opacity: 1;
  overflow: hidden;
}
.search-part .search-input button {
  background: var(--theme-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0px !important;
}
.search-part .search-input input {
  width: 100%;
  border: 0px;
  padding: 10px;
  color: #CBCBCB;
}

.product-img img {
  width: 100%;
  
}

.product-img {
  background: #fff0f1;
  padding: 20px;
  margin-bottom: 15px;
}

/* .single-product .header-fixed {
  position: relative !important;
}
 */
.table-content-sidebar {
  padding: 20px;
  background: #fff0f1;
}
.table-content-sidebar h2 {
  font-size: 24px;
  font-weight: bold;
}
.table-content-sidebar ol {
  padding: 0px;
}
.table-content-sidebar ol li {
  list-style: none;
}
.table-content-sidebar ol li a {
  color: var(--black);
  font-weight: 500;
  padding: 10px 0px;
  display: block;
}
.table-content-sidebar ol li a:hover {
  color: var(--theme-color) !important;
}

.product-inner-page {
 /*  margin-bottom: 80px; */
}

.scroll-content-inner {
 /*  background: #FEEFF0; */
  padding: 30px;
}
.scroll-content-inner .table-content {
  margin-bottom: 50px !important;
}
.scroll-content-inner .table-content .accordion-part {
  margin-top: 40px;
}
.scroll-content-inner .table-content .accordion-part .accordion-item {
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.0980392157);
}
.scroll-content-inner h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  display:inline-block;
}
.scroll-content-inner h3 span {
  font-size: 18px;
  font-weight: 500;
}

.product-img-hide {
  display: none;
}

.address {
  font-size: 16px !important;
  line-height: inherit !important;
}

.inner-sec .wp-block-columns .wp-block-column:nth-child(2) {
  padding-top: 20px;
}



.innerproject-sec h2 {
  line-height: inherit !important;
}
.page-id-432 .inner-banner {
    position: relative;
    margin-bottom: 0;
}
.page-id-432 .inner-content-part {
    padding-bottom: 0px;
    margin-bottom: -1px;
    background: url(/wp-content/uploads/2023/11/buildingbg.png);
    padding: 60px 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.page-id-455 figure img {
  width: 100% !important;
}
.page-id-455 .is-layout-flex {
  align-items: center !important;
}
.page-id-455 .wp-block-image img {
  box-sizing: border-box;
  height: 500px!important;
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.page-id-455 .inner-sec .wp-block-columns .wp-block-column:nth-child(2) {
  padding-top: 0;
}
.page-id-455 .wp-container-12 {
  margin-top: 40px;
}

.wp-block-columns a {
  color: var(--black) !important;
  font-weight: bold !important;
}

h2.wp-block-heading.lineheight {
  line-height: inherit !important;
}

.pdf-download-sec {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.pdf-download-sec .btn {
  padding: 8px 35px !important;
  background-color: var(--theme-color) !important;
}
.pdf-download-sec .btn:hover {
  background-color: var(--theme-color) !important;
  color: var(--white) !important;
}
.pdf-download-sec .btn img {
  margin-right: 10px;
  width: 20px;
}

/* Icon 1 */
.animated-icon1, .animated-icon2, .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #222222;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.animated-icon1.open {
  position: fixed;
  top: 0;
  z-index: 10000000000000000;
  right: 30px;
  top: 30px;
}

.sidebarblog {
    padding: 35px;
    background: #E5E5E5 0% 0% no-repeat padding-box;
    height: fit-content;
}
.search-sec {
    display: flex;
    align-items: center;
    background: #ffff;
    margin-bottom: 20px;
}
.recent-post-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    
}

.search-sec form#searchform {
    width: 100%;
    float: left;
}

/* .recent-post-card .img-sec img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 20px;
}
 */

.news-card {
    display: flex;
    /* align-items: center; */
    border-bottom: 1px solid #E20E17;
    margin-bottom: 40px;
}

.news-card h4 {
    font-weight: 700;
    margin: 0 0 12px;
}

.news-card .btn-sec a {
    color: #222;
    font-size: 14px;
}
.news-card .btn-sec {
    float: right;
	padding: 40px 20px 0;
}
.news-card .top-flex {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    padding: 10px 0px;
    gap: 30px;
}
.top-flex img {
    width: auto!important;
}
.news-card .img-part {
    width: 40%;
    margin: 0 25px 20px 0;
    flex: 0 0 auto;
}
.mainnewsimg img {
    height: 170px;
    object-fit: cover;
    border-radius: 15px;
	width:100%;
}

.sidebarblog h6 {
    font-size: 25px;
    font-weight: 900;
    margin: 0 0 20px;
}
.sidebarblog .top-flex {
     display: flex;
    justify-content: flex-start;
    font-size: 14px;
    padding: 10px 0px;
    gap: 30px;
}
.recent-post-card p {
    font-size: 16px;
    font-weight: bold;
}

.latest-blogmain-sec .col-12 {
    display: flex;
    flex-direction: column;
}
.formplace {
    border: none!important;
    outline: none;
    width: 87%;
    padding: 10px!important;
    height: 40px;
    font-size: 14px;
}
.sidebarblog input#searchsubmit {
    background: url(http://vista-corporate.myaiwa.com/wp-content/uploads/2023/11/searchicon.png);
    background-repeat: no-repeat;
    font-size: 0px;
    
    padding: 12px;
    background-color: #fff;
    border: none;
    vertical-align: middle;
}
.mainnewsimgsingle img {
    width: 100%;
   /*  height: 400px; */
	height: auto;
    margin: 0 0 20px;
    object-fit: cover;
	border-radius:10px;
}

.news-cardsingle .top-flex {
    margin-top: 15px;
   /*  flex-direction: row-reverse; */
    justify-content: flex-start;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.news-cardsingle .top-flex span {
    margin: 0 0 0 5px;
}
.blog-main-page {
    float: left;
    width: 100%;
    margin: 50px 0;
}

.news-cardsingle p {
    margin: 0 0 13px;
}
.news-cardsingle h2 {
    font-size: 30px;
    margin: 0 0 30px;
    font-weight: bold;
}

.main-sec .col-12:nth-last-of-type(1) .news-card {
    margin: 0px;
    border: 0px;
}
.search .sticky-main .scroll-content .prodcut-card .btn-theme {
    background: #BC1724 !important;
    color: #fff !important;
    position: relative!important;
    left: 0!important;
    bottom: 0!important;
    margin: 20px 0 0 0!important;
}

.contactinfo h3 {
    margin: 0 0 20px;
}


.menu-item a {
    color: #1A1A1B;
    float: left;
    width: 100%;
}
.inner-sec ul {
    /* padding: 0; */
    margin: 10px 0;
}

.aboutleft {
    text-align: right;
	
}

.aboutleft h2 {
    font-size: 32px!important;
    line-height: 38px;
    border-right: 4px solid #E20E17;
    padding: 15px 20px 0 0px;
    text-align: left;
}
.aboutleft strong {
    color: #E20E17;
    font-weight: bold;
	 padding: 0 28px 0 0;
}
.inner-sec p {
    margin: 0 0 12px;
    line-height: 28px;
    text-align: justify;
}
.inner-sec li {
    margin: 0 0 4px;
    
}

.page-id-455 h3.wp-block-heading.headingtag {
    margin: 0 0 30px;
}
.project-card {
    background: #FEFEFE 0% 0% no-repeat padding-box;
    box-shadow: 1px 5px 20px #39393936;
    margin: 0 0 50px;
}
.project-card .text-part h3 {
    color: #292929;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
    height: 85px;
    line-height: 30px;
}
.project-card .text-part {
    padding: 20px 30px;
    border-bottom: 8px solid #E20E17;
}
.project-card img {
    height: 300px;
    width: 100%;
}

.project-card .text-part a {color:#21203C;}
li#menu-item-31 a {
    background: #E20E17;
    border-radius: 4px;
    padding: 5px 20px;
    color: #fff;
    margin: -5px 0;
}

.main.project-sec.main-head {
    margin: 40px 0 0;
}

.main.inner-banner p {
    margin: 20px 0;
    font-weight: 600;
}

.main.footer-main {
    background-color: #292929;
    float: left;
    width: 100%;
    margin: 50px 0 0;
    padding: 80px 0;
    color: #fff;
}

.main.footer-main h6 {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 20px;
}
.main.footer-main li a{color:#fff; float:none;}
.main.footer-main li {
    list-style: none;
    font-size: 14px;
    margin: 0 0 9px;
    
	color:#fff;
}
.main.footer-main ul {
    padding: 0;
    margin: 0;
}
.main.footer-main li:before {
    content: "\f105";
    font-family: FontAwesome;
    font-weight: 400;
    font-size: 12px;
    float: left;
    margin: 0 15px 0 0;
}
.footer-logo img {
    width: 230px;
    margin: -15px 0 10px;
}

.main.footer-main p {
    font-size: 14px;
    line-height: 26px;
    margin: 0 0 13px;
	text-align:justify;
}

.address {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}
.address p {
    display: flex;
    align-items: flex-start;
}
.address p br {
    display: none;
}
.contactinfo p a{color:#fff;}
.address p img {
    flex: 0 0 auto;
    margin: 6px 10px 0 0px;
    object-fit: contain;
}
.address p a{color:#fff;}
.footertagline {
    float: left;
    background: #E20E17;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.post, .page{margin:0px!important}

.about-us-sec .text-part ul li{list-style:none;}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    float: left;
    position: absolute;
    margin: 5px -20px 0;
    text-align: left;
}

.page-template-default .main {
    margin: 0 0 40px;
}

.swiper-pagination-bullet-active{background:#fff!important;}
.swiper-button-next, .swiper-button-prev{color:#fff!important}

.main.innerproject-sec {
    margin: 30px 0 60px;
}

.main.innerproject-sec h2 {
    color: #E20E17;
    font-size: 17px;
    margin: 0;
    font-weight: 700;
}

.main.innerproject-sec h3 {
    color: #292929;
    font-weight: 800;
    font-size: 35px;
    margin: 10px 0;
}

.main.innerproject-sec img {
    margin: 20px 0;
    text-align: center;
    width: 100%;
}
.main.innerproject-sec p {
    line-height: 26px;
    text-align: justify;
    margin: 0 0 10px;
}
.inner-content-part .text-part h2 {
    margin-bottom: 10px;
    font-size: 25px;
}
/* .headingtag {
    margin: 0 0 30px;
} */
.flexcol {
    padding: 60px 0;
}

.arrangcol {
    margin: 50px 0;
}

h2.wp-block-heading.lineheight {
    line-height: 38px;
    margin: 0 0 15px;
}
.page-id-432 .other-projects-sec .project-card .text-part .top-bar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
}

.page-id-565 .inner-content-part .other-projects-sec, .page-id-533 .inner-content-part .other-projects-sec {
    padding: 80px 0px 250px 0px;
}

.support-content h3.text-white {
    font-size: 28px;
    margin: 0 0 20px;
}
.single-solution .inner-content-part .row {
    align-items: flex-start;
}

.building-system-sec h3 a{color:#222;}


.search-results .sticky-main .scroll-content .prodcut-card .text-part h3 {
    font-size: 15px;
    line-height: inherit;
    font-weight: 400;
    margin: 15px 0px;
}

.search-results .prodcut-card {
    margin: 0 0 25px;
}

.single-product .table-content p {
    margin: 0 0 10px;
	text-align:justify;
}
.image-card img {
    height: auto;
    max-width: 100%!important;
}

.sustainability-slider {
   margin:30px 0px;
}

.sustainability-slider button.owl-next,
.sustainability-slider button.owl-prev {
    display: none!important;
}

p.shadowtech {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #00000041;
    border-radius: 5px;
    padding: 20px;
}

h3.wp-block-heading.techh3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
}


.techimage {
    margin: 50px 0 0;
}

p.shadowtech {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #00000041;
    border-radius: 5px;
    padding: 20px;
    font-weight: bold;
    font-size: 15px;
}

.contactinfo {
    background: #292929;
    color: #fff;
    padding: 40px;
}

.contactinfo p {
    display: flex;
    align-items: flex-start;
}

.contactinfo p img {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 6px 20px 0 0px;
    object-fit: contain;
}
.conatctform {
    background: #EFEFEF;
    padding: 50px;
    margin: 50px 0;
}
.conatctform .form-control {
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    height: 50px;
}
.conatctform .wpcf7-not-valid-tip {
    position: relative!important;
    padding: 0;
    margin: 0 0 20px;
}
.conatctform h2 {
    margin: 0 0 20px;
}
.conatctform textarea.wpcf7-form-control.wpcf7-textarea {
    height: 120px;
}

.conatctform input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-blue1 {
    text-align: center;
   
    align-items: center;
    background: #E20E17;
    color: #fff;
    padding: 14px 30px;
    border: none;
    outline: none;
}

.col-lg-12.col-md-6.col-12.button {
    text-align: -webkit-center;
    justify-content: center;
    float: left;
    width: 100%;
    text-align: center;
}

.row.condata .col-lg-6.col-md-12.col-12 {
    margin: 0;
    padding: 0;
}

.map iframe {
    height: 435px;
}

.main.inner-sec.contact.main-head {
    margin: 40px 0 0;
}

.latest-blog-sec .blog-card h3 a{color:#0F1123;}

.page-id-171 h2.wp-block-heading {
    margin: 20px 0;
}
.page-id-173 h2.wp-block-heading {
    margin: 20px 0;
}

.page-id-410 .inner-banner {
    position: relative;
    margin-bottom: 0;
}
.page-id-410 .inner-content-part {
    padding-bottom: 0px;
    margin-bottom: -1px;
    background: url(/wp-content/uploads/2023/11/buildingbg.png);
    padding: 60px 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.page-id-533 .inner-banner {
    position: relative;
    margin-bottom: 0;
}
.page-id-533 .inner-content-part {
    padding-bottom: 0px;
    margin-bottom: -1px;
    background: url(/wp-content/uploads/2023/11/buildingbg.png);
    padding: 60px 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}
.page-id-565 .inner-banner {
    position: relative;
    margin-bottom: 0;
}
.page-id-565 .inner-content-part {
    padding-bottom: 0px;
    margin-bottom: -1px;
    background: url(/wp-content/uploads/2023/11/buildingbg.png);
    padding: 60px 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.inner-content-part .img-part img {
    width: 100%;
    padding: 0 0 10px;
}

.page-id-432 .other-projects-sec {
  background-color: #EFEFEF;
 
 
}

.page-id-432 .other-projects-sec h3{
	color:#292929;
}

.page-id-455 .wp-container-core-columns-layout-1.wp-container-core-columns-layout-1:before {
    width: 200%;
    height: 100%;
    background: url(/wp-content/uploads/2023/11/bgimage.jpg);
    z-index: -1;
    content: " ";
    position: absolute;
    left: -50%;
    background-size: 100%;
    top: -150px;
    height: 131%;
    background-repeat: no-repeat;
    background-position: center center;
}
.page-id-455 .wp-container-core-columns-layout-1.wp-container-core-columns-layout-1 {
    position: relative;
	padding: 30px 0;
}

.page-template-default.page.page-id-455 {
    overflow-x: hidden;
}


.page-id-455 .wp-block-columns.is-layout-flex.wp-container-core-columns-layout-3:before {
    width: 200%;
    height: 100%;
    background: url(/wp-content/uploads/2023/11/bgimage.jpg);
    z-index: -1;
    content: " ";
    position: absolute;
    left: -50%;
    background-size: 100%;
    top: -30px;
    height: 106%;
    background-repeat: no-repeat;
    background-position: center center;
}
.page-id-455 .wp-block-columns.is-layout-flex.wp-container-core-columns-layout-3 {
    position: relative;
    padding: 30px 0;
    margin: 30px 0 60px;
}

.page-id-565 .inner-content-part .row {
    align-items: normal;
}

.single-content img {
    width: 26%;
    float: right;
    /* border: 1px solid #ccc; */
    padding: 10px;
    text-align: center;
    margin: 0 0 0 50px;
}

.news-card .top-flex span {
    margin: 0 0 0 5px;
}

.recent-post-card .top-flex span {
    margin: 0 0 0 5px;
}
.text-part p {
    text-align: justify;
    margin: 0 0 10px;
}


.single-product .accordion-item {
  background: #EFEFEF !important;
  
}

.single-product .accordion-item .accordion-button {
 background: #EFEFEF !important;
}

.footer-logo p {
    text-align: justify;
    margin: 0 0 10px;
    line-height: 24px!important;
}



/*********************/
h2 {
position: relative;
}
h2::before {
width: 50px;
height: 5px;
background: #e20e17;
content: '';
position: absolute;
top: -10px;
left: 0px;
}
.product-sec h2::before {
    background: #e20e17;
    width: 50px;
    content: '';
    position: absolute;
    height: 5px;
    left: 0;
    right: 0;
    margin: auto;
    /* top: 100%; */
}
.product-sec h2 {
    position: relative;
    margin-bottom: 20px;
}

.building-system-sec h2::before {
    background: #e20e17;
    width: 50px;
    content: '';
    position: absolute;
    height: 5px;
    left: 0;
    right: 0;
    margin: auto;
    /* top: 100%; */
}
.contactinfo h3::before {
       width: 50px;
height: 5px;
background: #fff;
content: '';
position: absolute;
top: -10px;
left: 0px;
   
}

.contactinfo h3{position:relative;}
.commited-sec h2::before {
    background: #fff;
    width: 50px;
    content: '';
    position: absolute;
    height: 5px;
    left: 0;
    right: 0;
    margin: auto;
    /* top: 100%; */
}
.innerproject-sec h3{position:relative;}
.innerproject-sec h3::before {
    background: #e20e17;
    width: 50px;
    content: '';
    position: absolute;
    height: 5px;
    left: 0;   
    margin: auto;
    
}

.innerproject-sec h2::before {content:none;}
.our-project-sec h2::before {
    background: #e20e17;
    width: 50px;
    content: '';
    position: absolute;
    height: 5px;
    left: 0;
    right: 0;
    margin: auto;
    /* top: 100%; */
}

.single-content h2::before {
    width: 50px;
height: 5px;
background: #e20e17;
content: '';
position: absolute;
top: -10px;
left: 0px;
}
.single-content h3::before {
   width: 50px;
height: 5px;
background: #e20e17;
content: '';
position: absolute;
top: -10px;
left: 0px;
}
.single-content h2, .single-content h3{position:relative; padding:15px 0 0;}
h2.accordion-header:before {
    content: none;
}
.aboutleft h2::before {
    width: 50px;
    height: 5px;
    background: #e20e17;
    content: '';
    position: absolute;
    top: -2px;
    left: 0px;
}
.single-product div#table-content-6 {
    margin: 0!important;
}
.single-product .sticky-main{margin-bottom:0px!important;}
.table-content {
    display: flow-root;
}
.prodcut-card .img-part:hover img {
    transform: scale(1.2);
}
.prodcut-card .img-part img {
    transition: all .3s ease-in-out;
}
.prodcut-card .img-part {
    overflow: hidden;
	text-align:center;
}

.sticky-main .scroll-content .prodcut-card .text-part span:nth-child(2) {
    font-weight: bold;
    font-size: 20px;
}

h1.whiteheading {
    color: #fff;
    text-transform: uppercase;
}
.main-banner-sec .text-part .content-part {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* .fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  } */
  @-webkit-keyframes fadeInLeft {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  }
  @keyframes fadeInLeft {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  } 
  .water-roof-sec {
    /* background: url(' https://www.organixbs.com/wp-content/uploads/2023/11/buildingbg.png'); */
    background-size: cover;
    padding: 60px 0px 60px 0px;
    margin: 0px!important;
    overflow-x: hidden;
    background: #b3e2f115;
}
.water-roof-sec.metal-roof-sec {
  background: #d8e8f6;
}
.water-metal-sec {
  padding: 60px 0px;
  margin: 0px!important;
}
.box-tab ul {
  width: 100%;
  float: left;
  padding: 0px;
  margin: 30px 0px!important;
}
.box-tab ul li {
  list-style: none;
  width: 22%;
  float: left;
  background: #FEFEFE 0% 0% no-repeat padding-box;
  box-shadow: 1px 5px 20px #39393936;
  opacity: 1;
  padding: 20px;
  font-weight: bold;
  margin-right: 3%;
  text-align: center;
}
.water-metal-sec .container {
  padding: 0px 60px;
}
.water-metal-sec .row {
margin-top: 40px;
}
.water-metal-sec h3 {
  color: #292929;
  font-weight: bolder;
  font-size: 36px;
  margin-bottom: 20px;
  line-height: normal;
}
.why-choose-sec {
  background: url(https://www.organixbs.com/wp-content/uploads/2023/12/worker-leveling-fresh-floor-with-special-machine-min-scaled.jpg);
  padding: 80px 0px;
  text-align: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin: 0px!important;
}
.why-choose-sec::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  background: #00000051;
  left: 0;
  top: 0;
}
.why-choose-sec h2 {
  color: #fff!important;
}
.why-choose-sec h2::before {
  display: none;
}
.why-choose-sec p {
  color: #fff;
  z-index: 2;
  position: relative;
  text-align: center;
  max-width: 80%;
  margin: auto;
  font-size: 18px;
  line-height: inherit;
}
.effective-sec {
  padding: 60px 0px;
  margin: 0px!important;
}
.effective-sec .container {
  padding: 0px 60px;
}
.effective-sec .row:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 50px;
}
.effective-sec h3 {
  color: #292929;
  font-weight: bolder;
  font-size: 36px;
  margin-bottom: 20px;
  line-height: normal;
}
.effective-sec ul {
  padding-left: 0px;
}
.effective-sec ul li {
  margin-left: 0px;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 12px;
  position: relative;
}
.effective-sec ul li:before {
  content: '\f0a4';
  position: absolute;
  left: 0;
  font-family: 'FontAwesome';
  font-size: 14px;
  top: 5px;
}
.effective-sec .col-lg-6 .text-part {
  padding: 40px 30px;
  /* background-image: url(https://www.organixbs.com/wp-content/uploads/2023/10/backgroundh-min.png); */
  border-radius: 20px;
  color: #fff;
  position: relative;
  width: 100%;
  background-color: #ef5a4e;
}
.effective-sec .col-lg-6 .text-part h3 {
  color: #fff;
}
.effective-sec .col-lg-6 {
  display: flex;
}
.effective-sec .col-lg-6:nth-child(2) .text-part {
  /* background-image: url(https://www.organixbs.com/wp-content/uploads/2023/10/background-min.png); */
  background-color: #ef5a4e;
}
.water-proof-page .other-projects-sec {
  background-color: #EFEFEF;
  margin: 0px;
}
.water-proof-page .other-projects-sec strong {
  text-align: center;
  display: block;
  margin-bottom: 40px;
  color: #21203C;
  font-size: 24px;
}
.water-proof-page .other-projects-sec h2::before {
  display: none;
}
.water-proof-page .other-projects-sec h2 {
  text-align: center;
  color: #21203C;
}
.page-id-408 .inner-sec {
  margin: 0px;
}
/* .water-proof-page .row {
  align-items: center;
} */
.water-proof-page h2 {
  margin-bottom: 15px;
}
.page-id-408 .other-projects-sec .row {
  align-items:normal!important;
}
.water-proof-page::-webkit-scrollbar {
  display: none;
}
.inner-content-part .row {
  overflow-x: hidden;
}
.metal-roof-sec .row {
  flex-direction: row-reverse;
  /* margin-top: 60px; */
}
.water-roof-sec .col-lg-7 .text-part {
  padding-left: 30px;
  padding-top: 10px;
}
.metal-roof-sec .col-lg-7 .text-part {
  padding-left: 0px;
  padding-right: 30px;
}
.metal-roof-sec .img-part {
  display: flex;
  height: 100%;
}
.metal-roof-sec ul {
  padding: 0px;
  margin: 20px 0px 0px 0px!important;
  width: 100%;
  float: left;
}
.metal-roof-sec ul li {
  width: 45%;
  float: left;
  list-style: none;
  background: #e20e17 0% 0% no-repeat padding-box;
  box-shadow: 1px 5px 20px #39393933;
  padding: 10px 10px 10px 40px;
  margin-right: 5%;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  color: #fff;
}
.metal-roof-sec ul li:before {
  content: '\f0a4';
  position: absolute;
  left: 15px;
  font-family: 'FontAwesome';
  font-size: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.metal-roof-sec .col-lg-12 {
  margin-top: 80px;
}
.water-roof-sec .row {
  align-items: center;
}
.metal-roof-sec .row {
  align-items: normal!important;
}
.recent-post-card .img-sec img {
    width: 100px;
    height: 85px;
    object-fit: cover;
    margin-right: 0;
}
.recent-post-card .img-sec {
    float: left;
    width: 30%;
    padding: 5px 10px 0 0;
}
.recent-post-card .text-part {
    float: right;
    width: 70%;
}

.recent-post-card .text-part {
    float: right;
    width: 70%;
    text-transform: capitalize;
    text-align: left;
}
.recent-post-card .text-part p {
    text-transform: capitalize;
    text-align: left;
}



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