@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Raleway:wght@200;300;400;500;600;700;800;900&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  cursor: url('../images/icons/cursor.png') 20 20, auto;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#375357;
  --secondary-color:#BD3A4A;
  --dark-blue-color:#437A91;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
  font-size: 16px;
  color: #222;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a, button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
section{
  padding:70px 0;
}
.fontHeading{
  font-family: 'Raleway', sans-serif;
}
.inlineHeader{
  display: flex;
  padding:0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size:45px;
  text-shadow: 2px 2px #999;
  line-height: 55px;
}
.heading{
  font-size: 36px;
  text-shadow: 1px 2px #999;
  line-height: 45px;
}
.sub_heading{
  font-size: 30px;
  text-shadow: 1px 2px #999;
}
.small_heading{
  font-size: 24px;
  text-shadow: 2px 2px #999;
}
.title{
  font-size: 20px;
}
.text{
  font-size: 18px;
}
.fontWeight200{
  font-weight: 200;
}
.fontWeight300{
  font-weight: 300;
}
.fontWeight400{
  font-weight: 400;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--secondary-color);
}
.text_blue{
  color: var(--dark-blue-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.bgBlue{
  background: var(--dark-blue-color);
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 30px;
  text-align: center;
  height: 30px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
.leftLogo{
  width: 200px;
}
.leftLogo img{
  max-width: 100%;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  width: 100%;
  background:#fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.60s;
  animation-duration: 0.60s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
  100% {margin-top: 0;}
}
@keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
}
.leftLogo{
  width: 150px;
}
.centerMenu ul{
  display: flex;
}
.centerMenu ul li a{
  display: inline-block;
  padding: 10px 13px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #222;
  font-weight: 600;
}
.centerMenu ul li a:after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 2px;
  background:var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.centerMenu ul li a:hover:after{
  width: 100%;
}
.rightBtns{
  display: flex;
  align-items: center;
}
.btnHeader, .btnTheme{
  background: var(--secondary-color);
  border:1px solid transparent;
  display: inline-block;
  padding: 10px 25px;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
  letter-spacing: 1px;
  margin-right: 30px;
}
.btnHeader:hover, .btnTheme:hover{
  background: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.callHeader{
  padding-right: 50px;
  text-align: right;
  position: relative;
}
.callHeader p{
  font-size: 12px;
  text-transform: uppercase;
}
.callHeader a{
  font-weight: 600;
  color: #000;
  font-size: 17px;
}
.callHeader:after{
  content: "\f095";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--secondary-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.heroBanner img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top;
}
.centerPosition img{
  object-position: center;
}
.heroBanner{
  position: relative;
}
.heroContentBlock{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.heroContentBlock, .heroContentBlock p {
  color: #fff;
}
.btnBanner{
  display: inline-block;
  padding:15px 30px;
  color: #fff;
  background: var(--secondary-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 1px;
}
.btnBanner:hover{
  color: var(--secondary-color);
  background: #fff;
}
.itemBottomBanner{
  padding:40px;
  text-align: center;
}
.borderBlue{
  border:1px solid var(--dark-blue-color);
}
.borderPrimary{
  border:1px solid var(--primary-color);
}
.borderSeconadry{
  border:1px solid var(--secondary-color);
}
.borderGreen{
  border:1px solid #395e3a;
}
.text_green{
  color: #395e3a;
}
.bgBlue{
  background: #F5FAFD;
}
.aboutInline{
  display: flex;
  align-items: center;
  justify-content: center;
}
.leftAbout{
  width: 50%;
  padding:60px;
  position: relative;
  z-index: 1;
}
.rightAbout{
  width: 50%;
  position: relative;
  overflow:hidden;
  z-index: 1;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.rightAbout img{
    transition:all 0.3s ease-in-out;
}
.rightAbout:hover img{
    transform:scale(1.3);
}
.rightAbout video{
  height:620px;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
.videoBtn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  border:none;
}
.leftAbout:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% + 20%);
  height: 100%;
  background:#fff;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  z-index: -1;
}
.servicesImg{
  position: relative;
  height: 275px;
  overflow: hidden;
}
.servicesImg img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 1;
}
.servicesImg:hover img{
    transform:scale(1.3);
}
.itemServices:hover .ServiceContent{
  background:var(--primary-color);
}
.itemServices:hover .ServiceContent p{
  color: #fff
}
.ServiceContent{
  padding:15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 80px;
}
.ServiceContent .title{
  font-size: 18px;
}
.itemServices{
  border:1px solid #e0e0e0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 30px;
}

.bgCall{
  background:url(../images/bg/bg-action.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.bgCall:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  z-index:-1;
}
.btnWhite{
  background:#fff;
  padding:14px 30px;
  color:#000;
  font-weight: 600;
  border:1px solid transparent;
  font-size: 15px;
  display: inline-block;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btnWhite:hover{
  background: transparent;
  border-color:#fff;
  color:#fff;
}
.topMenuGallery{
  margin-top: 25px;
}
.topMenuGallery ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.topMenuGallery ul li{
  padding:12px 20px;
  font-weight: 600;
  cursor: pointer;
}
.topMenuGallery ul li.active{
  background: var(--secondary-color);
  color: #fff;
}
.innerItem{
  position: relative;
  padding-left: 45px;
  overflow: hidden;
}
.innerItem img{
  width: 100%;
  height: 350px;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}
.innerItem:hover img{
  transform: scale(1.3);
}
.imageName{
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--primary-color);
  display: flex;
  padding:15px 10px;
  height: 100%;
}
.imageName p{
  writing-mode: tb-rl;
  color: #fff;
  transform: rotate(-180deg);
}
.imageName .title{
  font-size: 17px;
}
.bgGrey{
  background: #f6f6f6;
}
.textHeight {
    height: 180px !important;
}
.form-floating>.form-control:focus, .form-select:focus, .form-floating>.form-control:not(:placeholder-shown)
{
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.formContact{
  margin-top:20px;
}
.formItem{
  margin-top: 15px;
}
.form-floating>label{
  padding: 1rem 1.5rem
}
.form-floating>.form-control{
  border-color: #999;
  padding-left: 1.5rem;
}
.capIn {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 3px;
}
#refresh_captcha{
  cursor: pointer;
}
.footer {
  background: #222;
  padding: 60px 0 20px;
}
.letterSpacing {
  letter-spacing: 1px;
}
.leftFooter p {
  font-size: 14px;
  color: #999;
}
.footerMenu ul {
  display: flex;
  justify-content: flex-end;
}
.footerMenu ul li a {
  color: #fff;
  display: inline-block;
  padding: 10px 8px;
  color: #fff;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  
}
.footerMenu p {
  margin-top: 15px;
  font-size: 14px;
  color: #999;
  text-align: right;
}
.footerSocial ul {
  display: flex;
  justify-content: flex-end;
}
.footerSocial ul li a {
  color: #999;
  font-size: 18px;
  display: inline-block;
  padding: 10px;
}
.leftFooter p a {
    color: #999;
}
.leftFooter p a:hover {
    color: #fff;
}
.copyRight {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
}
.copyRight p{
  color: #999;
  font-size: 14px;
}
.leftFooter img{
  width: 140px;
  filter: brightness(0) invert(1);
}
.shortBanner{
  background: url(../images/bg/inner-page.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: -1;
}
.leftServices img{
  width: 100%;
}
.rightServices{
  padding-left: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.galleryTabs ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.galleryTabs ul li{
  padding:10px 20px;
  margin: 0 5px;
  font-weight: 600;
  cursor: pointer;
}
.galleryTabs ul li:hover, .galleryTabs ul li.active{
  background: var(--secondary-color);
  color: #fff;
}
.itemGallery{
    overflow:hidden;
}
.itemGallery img{
  height: 250px;
  transition:all 0.3s ease-in-out;
  width: 100%;
  object-fit: cover;
}
.itemGallery:hover img{
    transform:scale(1.2);
}
.itemGallery:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.text2 {
    font-size: 15px;
}
.address, .phone, .email {
  position: relative;
  padding-left: 30px;
}
.address:after {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: var(--secondary-color);
  top: 0px;
  left: 0px;
}
.phone:after {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: var(--secondary-color);
  top: 0px;
  left: 0px;
}
.email:after {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: var(--secondary-color);
  top: 0px;
  left: 0px;
}
.phone a, .email a{
  color: #333;
}
.socialLinked ul {
    display: flex;
}
.socialLinked ul li a.facebook {
    background: #1877F2;
}
.socialLinked ul li a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
}
.socialLinked ul li a.twitter {
  background: #00acee;
}
.socialLinked ul li a.linkedin {
  background: #0072b1;
}
.socialLinked ul li a.youtube {
  background: #CD201F;
}
.socialLinked ul li a.pinterest {
  background: #E60023;
}
.socialLinked ul li a.instagram {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.rightContactInner ul li {
  font-weight: 600;
  color: #000;
  position: relative;
  padding: 15px;
  padding-left: 50px;
}
.leftContact ul li:before{
  content: '';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 10px;
  font-size: 25px;
  left: 10px;
  font-weight: 900;
  color: #000;
}
.leftContact li.iconAddress:before {
    content: '\f3c5';
}
.leftContact ul li.iconMobile:before {
    content: '\f879';
}
.leftContact li.iconMail:before {
    content: '\f0e0';
}
.leftContact ul li a{
  color:#333;
}
.leftWork ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.leftWork ul li{
  padding:8px 15px;
  margin: 5px;
  border:1px solid #999;
  width: calc(100% / 4 - 15px);
  text-align: center;
}
.leftWork ul li p{
  margin-top: 8px;
}
.leftWork ul li:hover{
  border-color: transparent;
  background: var(--secondary-color);
}
.leftWork ul li:hover p{
  color: #fff;
}
.leftWork ul li:hover img{
  filter: brightness(0) invert(1);
}
.customStyle td{
  font-size: 14px;
  vertical-align: middle;
  padding: 10px;
}
.customStyle{
  table-layout: fixed;
}
.customStyle td{
  width: 25%;
}
.itemSixStep{
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
}
.flip-box{
  height: 300px;
}
.flip-box-front{
  padding:40px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  height: 100%;
}
.flip-box-front:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0,0,0,.6);
  z-index: -1;
}
.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 10px;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding:20px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  transform: translateY(-50%) translateZ(120px) scale(.95);
  -webkit-transform: translateY(-50%) translateZ(120px) scale(.95);
  -ms-transform: translateY(-50%) translateZ(120px) scale(.95);
  top: 50%;
}

.flip-box-front .inner{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bgImg1{
  background: url(../images/epoxy-flooring-home.jpg);
  background-size: cover;
}
.bg1{
  background: url(../images/epoxy-flooring-home.jpg) no-repeat;
}
.bgImg2{
  background: url(../images/acid-staining.jpg);
  background-size: cover;
}
.bg2{
  background: url(../images/acid-staining.jpg) no-repeat;
}
.bgImg3{
  background: url(../images/faux-paint-home.jpg);
  background-size: cover;
}
.bg3{
  background: url(../images/faux-paint-home.jpg) no-repeat;
}
.bgImg4{
  background: url(../images/custom-paint.jpg);
  background-size: cover;
}
.bg4{
  background: url(../images/custom-paint.jpg) no-repeat;
}
.flip-box-back:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0,0,0,.8);
  z-index: -1;
}
.flip-box-back h4{
  color: #fff;
}
.flip-box-back p{
  color: #fff;
  font-size: 14px;
}
.innerServices{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  padding:20px 40px;
  text-align: center;
}
.bgBlack{
  background:#cabca9;
}
.innerItem:hover .imageName{
  background: var(--secondary-color);
}
.imgRight{
  margin-top: 25px;
  overflow:hidden;
}
.imgRight img{
  max-width: 100%;
  transition:all 0.3s ease-in-out;
}
.imgRight:hover img{
    transform:scale(1.1);
}
.leftServices{
    overflow:hidden;
}
.leftServices img{
    transition:all 0.3s ease-in-out;
}
.leftServices:hover img{
    transform:scale(1.3) rotate(3deg);
}
.noShadow{
    text-shadow:none !important;
}