/**
* Template Name: Maxim - v4.7.0
* Template URL: https://bootstrapmade.com/maxim-free-onepage-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.8.3/font/bootstrap-icons.min.css");
@font-face {
  font-family: Futura Md BT;
  src: url("../addifont.ttf") format("truetype")
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Ubuntu', sans-serif;
  color: #444444;
}

a {
  color: #23408C;
  text-decoration: none;
}

a:hover {
  color: #22d8b6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Ubuntu', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1bac91;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #21cfaf;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  border-bottom: 2px solid #23408C;
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}
@media (max-width: 992px) {
  #header {
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: bottom;
  margin-left: 10px;
}
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li + li {
  margin-left: 30px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: #455A64;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  font-weight: 600;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: #1bac91;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #455A64;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #062822;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #23408C;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #469b52;
  color: #ffffff;
  transition: 0.3s;
  z-index: 0;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: relative;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  /* background-color: #fff; */
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
line-height: 3;
    display: contents;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  justify-content: center;

  /* color: #21413c; */
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #23408C;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #23408C;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.bi-x {
  font-size: 60px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.tabhome {
  background-image: url('../img/innerbanner/product1920.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto
}


.aboutus {
  background-image: url('../img/innerbanner/aboutus1920.jpg') !important;
}
.products {
  background-image: url('../img/innerbanner/product1920.jpg') !important;
}
.comparison {
  background-image: url('../img/innerbanner/comp1920.jpg') !important;
}
.contactus {
  background-image: url('../img/innerbanner/contact1920.jpg') !important;
  background-position: right;
  position: relative;
}
.galleryban {
  background-image: url('../img/gallery-banner.jpg') !important;
}

.secondarybanner .headm {
  position: absolute;
  bottom: 0;
  top: 0;
  height: 180px;
  margin: auto;
  left: 0;
  padding-top: 0
}
.secondarybanner {
  height: 360px;
  margin-top: 60px;
  position: relative
}

.maintitle {
  color: #23408C;
  font-size: 42px;
  padding-top: 40px;
  font-weight: 700;
  line-height: 65px
}
.whitetext {
  color: #ffffff !important;
}
.contactus:before {
  content: "";
position: absolute;
left: 0; right: 0;
top: 0; bottom: 0;

  background: rgba(0,0,0,0.1)
}


.productsdiv {
  text-align: center;
  width: 90%;
}
.container .product-item {
    /* min-height: 450px; */
    border: none;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    height: 300px;
      background-color: #eceff1;
      border-radius: 10px;
      border: 2px solid #eceff1;
}
.box-shadow
{
	-webkit-box-shadow: 0 1px 1px rgba(255,255,255,.4);
	box-shadow: 0 1px 1px rgba(255,255,255,.4);
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
}

.box-shadow:hover
{
	-webkit-box-shadow: 0 20px 40px rgba(0,0,0,.6);
	box-shadow: 0 20px 40px rgba(0,0,0,.6);
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	transform: translateY(-15px);
}

.card
{
	border-radius: 25px;

}

.card img
{
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}
.card:hover i
{
	transform: rotate(-180deg);
}

  /* i:hover
  {
  	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.7) 0px 18px 36px -18px inset;
  } */
.container .product-item .product {
    /* width: 100%;
    height: 350px; */
    /* position: relative; */
    overflow: hidden;
    cursor: pointer;
    margin: auto;
}

.container .product-item .product img {
    /* width: auto;
    height: auto; */
    /* object-fit: contain; */
    width: 200px;
    height: 200px;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.product:hover .image {
  opacity: 0.3;
}

.product:hover .middle {
  opacity: 1;
}

.text {
  background-color: #469b52;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}
.container .product-item .product .icons .icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease;
    transform: rotate(180deg);
    cursor: pointer
}

.container .product-item .product .icons .icon:hover {
    background-color: #b71c1c;
    color: #fff
}

.container .product-item .product .icons .icon:nth-last-of-type(3) {
    transition-delay: 0.2s
}

.container .product-item .product .icons .icon:nth-last-of-type(2) {
    transition-delay: 0.15s
}

.container .product-item .product .icons .icon:nth-last-of-type(1) {
    transition-delay: 0.1s
}

.container .product-item:hover .product .icons .icon {
    transform: translateY(-60px)
}

.container .product-item .tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    position: absolute;
    top: 10px;
    left: 20px;
    padding: 0 0.4rem
}

.container .product-item .title {
    font-size: 0.95rem;
    letter-spacing: 0.5px
}

.container .product-item .fa-star {
    font-size: 0.65rem;
    color: goldenrod
}

.container .product-item .price {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600
}

.fw-800 {
    font-weight: 800
}

.bg-green {
    background-color: #208f20 !important;
    color: #fff
}

.bg-black {
    background-color: #1f1d1d;
    color: #fff;
}

.bg-red {
    background-color: #bb3535;
    color: #fff
}

.innertext {
    overflow: hidden;
    text-align: center;
    color: #359e49 !important;
    position: relative;
}
.innertext:before,
.innertext:after {
    background-color: #23408C;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 45%;
}
/* .productsection {
  background-image: linear-gradient(#8c9fd1, #b6c8b8);
 box-shadow: inset 0 0 100px hsla(0,0%,0%,.3);
} */
/* .productsection {
  background-color: #2ecc71;
padding-top: 0px;
  animation: hue 250s linear 0s infinite reverse;
} */
.white {
  color: #23408C;
  /* position: relative; */
}
.white h5 {
  color: #359e49;
}
.productsection::before {
  background: linear-gradient(105deg, rgba(35, 64, 140,0.7), rgba(70, 155, 82, 0.8));
  animation: hue 12s linear 1s infinite;
}
.full::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;

}
.full::after {
  content: '';
  position: relative;
  text-align: center;
}

@keyframes hue {
  to {
    filter: hue-rotate(1turn);
  }
}
.innertext:before {
    right: 0.5em;
    margin-left: -50%;
}
.innertext:after {
    left: 0.5em;
    margin-right: -50%;
}

.home {
  width: 100%;
  height: 100vh;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
}

.homebox {
  display: flex;
  position: relative;
  margin: 0 auto;
  height: 100vh
}

.hometext {
  font-family: 'Futura Md BT', sans-serif;
      position: absolute;
      bottom: 0;
      top: 0;
      left: 50px;
      color: #17479e;
      font-size: 52px;
      /* width: 600px; */
      height: 210px;
      margin: auto;
      line-height: 70px;
      font-weight: 500;
}

.homeimg {
  width: 900px;
  flex: none;
  position: absolute;
  bottom: -40px;
  right: 0;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, .2)
}

.one {

  /* background-image: url('../img/home_banner.jpg'); */
  background-image: url('../img/homebanner9.jpg');
  background-position: center;
  background-size: 100% 100%;
}

.two {
  /* background-image: url('../img/home_banner2.jpeg') */
    background-image: url('../img/homebanner2.jpg');
    background-position: bottom;

}

.three {
    background-image: url('../img/homebanner3.jpg');
    background-position: center;
}
.four {
    background-image: url('../img/homebanner12.jpg');
    background-position: center;
    background-size: 100% 100%;
}

.twotext {
  left: 30;
  right: auto;
  color: #14479E;
  font-weight: 700;
  line-height: 1.5;
  /* height: 335px */
}

.threetext {
  left: auto;
  right: 0;
  height: 50%;
  width: 39%;
  font-size: 40px
}

.onetext {
  color: #f36c21;
  top: 0;
  left: 170px;
  bottom: 0;
  right: initial;
  text-align: left;
  line-height: 65px;
  height: 150px
}

.subtext {
  font-family: 'Brush Script Std', cursive;
  color: #fff;
  font-size: 32px
}
.float-container {
    position: fixed;
    top: 33%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 9999999;
}

.float-container a {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 480px;
    height: 50px;
    margin-right: -300px;
    margin-bottom: 10px;
    padding: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: #fff;
    border-color: #46b8da;
    border-radius: 5px 0 0 5px;
    background-color: #eb690b;
    -webkit-box-shadow: 0 2px 4px #7d7d7d;
    box-shadow: 0 2px 4px #7d7d7d;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-family: sans-serif;
  animation: glowing 5000ms ease infinite;
}
.float-container a span {
  display: none;
}

.float-container a:hover {

    margin-right: 0;
    background-color: #c45100;
    -webkit-box-shadow: 0 2px 4px #7d7d7d;
    box-shadow: 0 2px 4px #7d7d7d;
  width: 300px;
  padding: 20px 20px;
}
.float-container a:hover:before  {
/*     content: "\f073"; */
  content: "\F5B1" !important
}
.float-container a:hover span {
  display: block !important;
}
/* Icon settings - remove if not needed*/
.float-container .icon:before {
font-family: bootstrap-icons !important;
    margin-right: 25px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.icon.one1:before {
/*     content: "\f073"; */
  content: "\F5B1  \00a0 \00a0 For Sales"
}

/* Media queries */
@media screen and (max-width:440px)
{

	.float-container .icon:last-child {
		display: none;
	}
    .float-container
    {
        position: fixed;
        top: auto;
        bottom: 0;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            -ms-flex-direction: row;
                flex-direction: row;

        width: 100%;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: auto;
        -webkit-box-align: auto;
        -ms-flex-align: auto;
        align-items: auto;
    }
		.float-container a.icon
    {
        right: 0;
        bottom: 0;

        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        padding: 5px;

        border-radius: 0;
        -webkit-box-shadow: 0 0 0 #7d7d7d;
                box-shadow: 0 0 0 #7d7d7d;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
		border-left: 1px solid darkorange;
		border-right: 1px solid darkorange;
    }
}

@keyframes glowing {
        0% {

          box-shadow: 0 0 5px #50C878;
          text-transform: capitalize;
        }
        50% {
          /* background-color: #4CBB17; */
          box-shadow: 0 0 20px #4CBB17;
          text-transform: full-width;
        }
        100% {
          /* background-color: #008000; */
          box-shadow: 0 0 5px #2ba805;
          text-transform: uppercase;
        }
      }
      /* @keyframes glowing {
  0% { box-shadow: 0 0 -10px #fff; }
  40% { box-shadow: 0 0 20px #fff; }
  60% { box-shadow: 0 0 20px #fff; }
  100% { box-shadow: 0 0 -10px #fff; }
} */

.side-button-2 {
    position: fixed;
    top: 45%;
    right: 0;
    z-index: 3;
}
.download, .walk-through {
    padding: 10px;
    border: none;
    border-radius: 1px;
    color: white;
    background: #d2232a;
    transition: 0.2s linear;
}
.walk-through {
    margin: 15px -160px 2px 0px;
}
.download i, .walk-through i {
    font-size: 20px;
    margin: 2px 15px 2px 2px;
    padding: 2px 5px;
}
.walk-through:hover {
    margin-right: 0;
    color: #ffffff;
}

.side-button {
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 3;
}
.download i {
    margin: 2px 11px 2px 2px;
    transform: rotate(90deg);
}

.download {
    margin: 5px -135px 2px 0px;
}
.download:hover {
    margin-right: 0;
    color: #ffffff;
}

.side-button span {
  background: #12873d;
  color: #fff;
    padding: 19px;
    font-size: 12px;
    border-radius: 5px;
    animation: glowing 5000ms ease infinite;
  }

  #hero {
    width: 100%;
    height: 400px;
    /* background: url("../img/about-us.jpg") ; */
    background-size: 100% 100%;
    background-repeat: no-repeat;

    position: relative;
    margin-top: 70px;
    padding: 0;
  }
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  .abouthead {
    color: #14479E !important;
  }
  .comparison-banner {
    background-image: url('../img/innerbanner/comp1920.jpg');
  }

  .contact-banner{
    background-image: url('../img/innerbanner/contact1920.jpg');
  }

  .about-banner {
    background-image: url('../img/innerbanner/aboutus1920.jpg');
  }

  .gallery-banner {
    background-image: url('../img/gallery-banner.jpg');
  }
  .product-banner {
    background-image: url('../img/innerbanner/product1920.jpg');
    background-size: cover !important;
  }
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f9f8;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #21413c;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 72px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: #21413c;
}
/* .about .icon-box {
  margin-top: 30px;
} */
.about .icon-box i {
  font-size: 48px;
  float: left;
  color: #23408C;
}
.about .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-left: 60px;
  color: #21413c;
}
.about .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about p {
  line-height: 2;
}

.about a {
  color: #fff;
  font-size: 18px;
  background-color: #23408C;
  padding: 10px;
}

.about a:hover {
  background-color: #1347A0;
}

.aboutvideo a {
  background-color: transparent;
}
.aboutvideo a:hover {
  background-color: transparent;
}
.mobileview {
  display: none;
}
.desktopview {
  display: block;
}
.crop_desktopview {
  display: flex;
}

#main
{

  /* background-image: linear-gradient(45deg, rgba(255,255,255,0.2) 20%, rgba(0,0,0,0.2) 25%, rgba(255,255,255,0.2) 25%),
                     linear-gradient(-45deg, rgba(255,255,255,0.2) 20%, rgba(0,0,0,0.2) 25%, rgba(255,255,255,0.2) 25%),
                     linear-gradient(-45deg, rgba(255,255,255,0.2) 75%, rgba(0,0,0,0.2) 80%, rgba(255,255,255,0.2) 0) ;
    */
   /* ;
   -webkit-animation:mymove 5s linear infinite; */
    /* Safari and Chrome */
    /* animation:mymove 5s linear infinite;
    background-image: url(../img/brickbg7.png);
    background-size: contain; */
    /* -webkit-animation: Animation 250s linear infinite;
    -moz-animation: Animation 250s linear infinite;
    animation: Animation  linear infinite; */
    background:url("../img/brickbg9.png") repeat-y 0 0  transparent;
    color: #000;
  /* position: absolute; */
  bottom: 0;
  left: 0;
  z-index:2;
  width: 100%;
  height: 100%;
  min-height:192px;
  border:0 none transparent;
  outline:0 none transparent;
  -webkit-transform:translate(0,0,0);
  transform:translate(0,0,0);
  /* will-change: transform; */

}
@-webkit-keyframes mymove {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 0% -100%;
    }
}
@keyframes mymove {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 0% -100%;
    }
}
@-webkit-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@-moz-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
  padding: 50px 0 40px 0;
  background-color: #dbe2e8;
}
/* .steps .container1 {
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/9632/sliding-background-wwf.jpg") repeat-x;
 animation: slide 60s linear infinite;
}
@keyframes slide{
  0%{
    transform: translate3d(0, 0, 0);
  }
  100%{
    transform: translate3d(-1692px, 0, 0);
  }
} */
.steps .row {
  overflow: hidden;
}
.steps h3, .sectionhead {
  color: #23408C !important;
  font-size: 36px !important;
}
.steps .content-item {
  padding: 20px;
  border: 1px solid #fff;
  /* border: 1px solid #d4e9e6; */
  /* margin: 5px; */
  height: 100%;
  /* width: 32%; */

}
.steps .content-item:nth-child(8) {
  /* width: 33.333333%; */
  margin: -1px;
  margin-bottom: 0px;
}

.steps .content-item:hover {
  background-color: #fff ;
}


.steps .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #14479E;
}
.steps .content-item h4 {
  font-size: 25px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
  color: #ECA128;
}
.steps .content-item p {

  font-size: 14px;
  margin: 0;
  padding: 0;
}

.whyicon {
  margin: auto;
    font-size: 45px;
    color: #469B52;
    margin-right: 0;
}

/* .whyicon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffee10;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
} */

.whyicon:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #23408C;
}

.steps .content-item:hover .whyicon {
  transform: scale(1.3);
  color: #e8342e;
  box-shadow: 0 0 5px #e8342e;
  /* text-shadow: 0 0 5px #23408C; */
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #21413c;
}
.features .nav-link:hover {
  color: #1bac91;
}
.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
}
.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}
.features .nav-link.active {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.12);
}
.features .nav-link.active h4 {
  color: #1bac91;
}
.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.customsize {
  height: 130px !important;
}
.portfolio-container {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  display:inline-block;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
  width: 12%;
  padding: 15px;
  border-right: 1px solid #ddd;
  height: 150px;
      float: left;
      transition: 0.5s all ease-in-out
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* background: rgba(0, 0, 0, 0.6); */
}
/* .portfolio .portfolio-wrap::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
} */
/* .portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */
/* .portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
} */
/* .portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
} */
/* .portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
} */
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4ae3c6;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio-item:hover {
  transform:  scale(1.5);
  z-index: 9999;
  border: none;
}

.portfolio-container:hover > .portfolio-item:not(:hover) {
  filter: grayscale(1);
}

/* .portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
} */
/* .portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
} */
.advantages {
  background-color: #23408C;
  color: #fff;
  background-image: url('../img/clip.png');
background-position: bottom left;
background-repeat: no-repeat;
background-size: 10%;
background-position-x: 4%;
}

.advantages h2 {
  color: #FDB913;
}
.advicons {

}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bac91;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bac91;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.contact .info i {
  font-size: 20px;
  color: #23408C;
  float: left;
  width: 44px;
  height: 44px;
  background: #e1f0ee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #469B52;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .email {
  border-right: 2px solid red;
    margin-right: 15px;

}

.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #23408C;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #23408C;
  color: #fff;
}
.contact .php-email-form{
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background:  #23408C;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #23408C;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.indexemail {
  margin-right: 40px !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

 .footer-top {
  background: #23408C;
  border-bottom: 1px solid #23408C;
  padding: 30px 0 10px 0;
  color: #fff;
  font-size: 16px !important;
}

.footer-top .footer-info {
  margin-bottom: 30px;
}
.footer-top .footer-info img{
width: 200px;
}
 .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;

}
.footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /* font-family: "Raleway", sans-serif; */
  color: #fff;
}
.footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1c3733;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
 .footer-top .social-links a:hover {
  background: #1bac91;
  color: #fff;
  text-decoration: none;
}
 .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #FDB913;
  position: relative;
  padding-bottom: 12px;
}
.footer-top .footer-links {
  margin-bottom: 30px;
}
/* .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-top .footer-links ul i {
  padding-right: 2px;
  color: ;
  font-size: 18px;
  line-height: 1;
}
.footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
.footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer-top .footer-links ul a:hover {
  color: #34dfbf;
}
.footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
}
.footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
.footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1bac91;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
.footer-top .footer-newsletter form input[type=submit]:hover {
  background: #14806c;
} */
 .copyright {
  text-align: center;
  padding-top: 30px;
}
.credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.list-unstyled li {
  border-bottom: 1px solid #231f20;
  padding: 10px;
  height: 80px;
}
.prop-color {
  background-color: #bbd788;
}
.prophead-color {
  background-color: #60ae46;
}

.strongo-color {
  background-color: #8dd4f1;
}
.strongohead-color {
  background-color: #3ca4d3;
}

.redclay-color {
  background-color: #fbdd7c;
}

.redclayhead-color {
  background-color: #fdb813;
}

.adv-color {
  background-color: #ee8069;
}

.advhead-color {
  background-color: #ed1c24;
}


/* video and image gallery */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.col-sm-3{
  width: 23%;
  float: left;
}
.videoimg img {
  width: 300px;
  height: 273px;
}
.gallery_container .col-sm-3, .video_container .col-sm-3{
  margin: 10px 0;
}
.gallery_container, .video_container{
  margin: 10px 0;
  display: inline-block;
  width: 100%;
}
.video_container img + img{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
  z-index: 9;
}

.video_model {
  display: flex;
position: absolute;
justify-content: center;

}
/* a.lightbox::before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'fontAwesome';
    content: "\f00e";
    pointer-events: none;
    z-index: 9;
    transition: 0.4s;
}
a.lightbox:hover:before {
    opacity: 1;
}
a:after {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 15px;
    width: calc(100% - 30px);
    height: 100%;
    opacity: 0;
    background-color: rgba(69, 68, 68, 0.9);
    content: '';
    transition: 0.4s;
}
a:hover:after {
    opacity: 1;
} */

.readmore a {
  color: #fff;
font-size: 18px;
background-color: #23408C;
padding: 10px;

}
.mobileicon {
  display: none;
}
@media (max-width: 768px) {
  .steps .content-item {
    padding: 25px;
    width: 100%;
    margin: 0;
  }
  .portfolio .portfolio-item {
    width: 33%;
  }
  .gallery_container .col-12{
    margin-bottom: 15px;
  }
  /* .contact {
    padding: 220px 0 50px 0;
  } */

  .contact .info {
    display: block !important;
  }
  .contact .info .email{
    border-bottom: 2px solid red;
padding-bottom: 15px;
border-right: none !important;
width: 100%;
margin-bottom: 25px;
margin-right: 0;
  }
  .contact .info .w-50 {
    width: 100% !important;
  }

  .footer-top .footer-links {
    margin-bottom: 0;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .footer-newsletter {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .sociallinks {
    text-align: center;
  }
  .side-button, .side-button-2 {
    display: none;
  }
  .walk-through {
    margin: auto;
  }
  .mobileicon {
    display: block;
  }
  .download, .walk-through{
    margin-right: 10px !important;
    color: #d2232a !important;
    background: none !important;

  }
  .download i, .walk-through i {
    font-size: 25px !important;
  }

  #header {
    height: 80px;
  }


.mobile-nav-toggle {
  color: inherit;
}
}




  /* // #play {
  //   cursor: pointer;
  //   position: absolute;
  //   top: 50%;
  //   left: 50%;
  //   transform: translateY(-50%) translateX(-50%);
  // } */
.aboutvideo{
    position: relative;

}
.video1 a {
  position: absolute;
}
.aboutvideo img{
    width: 100%;
}

.aboutvideo .play-icon{
    cursor: pointer;
    position: absolute;
    top : 50%;
    left : 50%;
    transform: translate(-50%, -50%);
}

/* .video1 .play-icon{
  top: 32%;
} */
svg #play-svg {
  fill: #FDB913;
}

svg:hover #play-svg{
  fill: #CC181E;
}
.videoimg {
  object-fit: cover;
width: 100%;
height: 315px;

}

.menuicon {
  color: #cc181e;
}

.hometext {
  display: none;
}
.border-lg-0 {
  border: none !important;
}
.secondarybanner {
  margin-top: 90px;
  height: 260px
}

@media (min-width:1920px) and (max-width:2560px) {

  .container {
    max-width: 80%
  }

  .aboutsection {
    display: flex;
  }
.footer-newsletter {
  text-align: right;
}
#hero {
  height: 400px;
}


}

@media(max-width:1900px) {

    .aboutsection {
      display: flex;
    }

}

@media(max-width:1600px) {
  /* .home {
    background-size: 100% 100%;
    background-position: unset
  } */

  .container {
    max-width: 85%
  }


}

@media(max-width:1536px) {

}

@media(max-width:1440px) {

}

@media(max-width:1366px) {
  .nav-link {
    font-size: 12px
  }

}

@media(max-width:1200px) {
  .list-unstyled li {

      padding: 5px;
      height: 90px;
      font-size: 14px;
    }
    .container .product-item {
      height: 280px;
    }
    .container .product-item .product img {
    object-fit: contain;
    width: 175px;
    height: 175px;
}
}

@media(max-width:1030px) {
  .downloadbrouchre {
    width: 100%
  }

  .home {
    background-size: cover
  }
  .nav-link:focus, .nav-link:hover {
    padding: 10px
  }
  .hometext {
    display: block;
  }
  .one {
    background-image: url('../img/homebanners/banner11024.jpg');
  }
  .two {
  background-image: url('../img/homebanners/banner210241.jpg');
  }
  .three {
  background-image: url('../img/homebanners/banner31024.jpg');
  /* background-size: 115% 100%; */
  }
  .four {
    background-image: url('../img/homebanners/banner41024.jpg');

  }
  .product-banner {
    background-image: url('../img/innerbanner/product1024.jpg');
    background-size: cover !important;
  }
  .product-banner h1 {
    text-align: center;

  }
  .product-banner .container {
    margin-left: 10px;
  }

.mfp-close {
  font-size: 55px;
  color: #fff !important;
}

.products {
  background-size: auto;
  background-repeat: no-repeat;
  padding-bottom: 0;

}
/* .products .secondarybanner {
  margin-top: 25px;
} */
.productsdiv {
  height: auto !important;
}
.productssection {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.comparison {
  background-image: url('../img/innerbanner/comp1024.jpg') !important;
}
.contactus {
  background-image: url('../img/innerbanner/contact1024.jpg') !important;
}


}

@media(max-width:991px) {
  .nav-pills-custom .nav-link::before {
    content: '';
    display: block;
    border-top: 8px solid transparent;
    border-left: 10px solid #fff;
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    opacity: 0
  }
}

@media(max-width:768px) {
.mobileview {
  display: block;
}
.desktopview, .crop_desktopview {
  display: none;
}
.mobileview .prop-color, .mobileview .strongo-color, .mobileview .redclay-color, .mobileview .adv-color {
  padding-top: 0 !important;
}
.mobileview .prop-color p span, .mobileview .strongo-color p span, .mobileview .redclay-color p span, .mobileview .adv-color p span {
  margin-left: 10px;
}
h5.prophead-color , h5.strongohead-color, h5.redclayhead-color, h5.advhead-color {
  font-size: 24px;
    color: #fff;
    margin-left: -16px !important;
margin-right: -16px !important;
padding: 5px;
}
.container .product-item .product img {
    object-fit: initial;
  }


  .one {
    /* background-image: url('../img/test1re.jpeg'); */
    background-image: url('../img/homebanners/banner1800ress.jpg');
    background-position: bottom;
  }
  .two {
  background-image: url('../img/homebanners/banner2800ress.jpg');
  }
  .three {
  background-image: url('../img/homebanners/banner3800ress.jpg');
  background-position: bottom;

  }
  .four {
    background-image: url('../img/homebanners/banner4800ress.jpg');
    background-position: bottom;
    /* background-size: 100% 100%; */
  }

  .hometext {
    top: 20%;
    height: auto;
  }



.border-md-0 {
  border: none !important;
}
.border-lg-0 {
  border-right: 1px solid #ddd !important;
}

.aboutus {
  background-image: url('../img/innerbanner/aboutus600.jpg') !important;
}
.products {
  background-image: url('../img/innerbanner/product600.jpg') !important;
}
.comparison {
  background-image: url('../img/innerbanner/comp600.jpg') !important;
}
.contactus {
  background-image: url('../img/innerbanner/contact600.jpg') !important;
}
.products {
  background-size: cover;
  padding-bottom: 60px;
}
.productsdiv {
  text-align: left !important;
  height: 310px !important;
}
.comparison .secondarybanner, .comparison .secondarybanner .col-12 {
  padding-left: 0 !important;
}

.contactus .headm {
  width: 100%;
  text-align: center;
  height: 150px;
}
.contactus .maintitle {
  color: #ffff;
}
}

@media(max-width:650px) {
  .home {
    height: 94vh;
  }
  section {
    padding: 30px 0;
  }
 #header .container {
   max-width: 100%;
 }
 .about a{
   padding: 0;
 }
 .readmore {
   padding: 10px !important;
 }

 .respmt25 {
   margin-top: 25px !important;
 }
 .advantages {
   background-size: 25%;
 }
 .steps {
   padding-top: 30px;
 }
 .subhead {
   margin-bottom: 30px !important;
 }
.navbar-mobile .active {
  color: #fff !important;
}
.productssection {
  margin: 10px !important;
}
.product-item {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.box-shadow:hover {
  transform: translateY(15px);
}

.innertext {
  margin: 20px auto;
}

.cardinner h5{
  color: aliceblue;
}
.contact .email {
  margin-bottom: 10px;
}
#hero {
  height: 300px;
}
.secondarybanner {
  height: 260px;
  margin-top: 75px
}

.secondarybanner .headm {
  height: auto;
  text-align: center
}

.protitle {
  padding-top: 36px;
  font-size: 42px
}
.protitle1 {
  padding-top: 60px;
font-size: 38px;
}

.comparison-banner {
  background-image: url('../img/innerbanner/comp600.jpg');
}
.contact-banner{
  background-image: url('../img/innerbanner/contact600.jpg');
}
.product-banner {
  background-image: url('../img/innerbanner/product600.jpg');
  background-position: bottom;
}
.product-banner h1, .comparison-banner h1{
  margin-bottom: 20% !important;
  text-align: left;

}

  .portfolio .portfolio-item {
    width: 50%;
  }
  .one {
    background-image: url('../img/homebanners/banner1700.jpg');
    /* background-size: 165% 100%; */
}
.two {
  /* background-image: url('../img/homebanners/banner2700.jpg'); */
  background-image: url('../img/homebanners/banner27001.jpg');
    /* background-size: 100% 100%; */
}
.three {
  background-image: url('../img/homebanners/banner37002.jpg');
}

.four {
  background-image: url('../img/homebanners/banner47001.jpg');
}




.hometext {
  height: auto;
  top: 15%;
  right: 60px;
  left: auto;
}

.border-lg-0, .border-md-0 {
  border-right: 1px solid #ddd !important;
}
div.portfolio-container .portfolio-item:nth-child(even) {
  border: none !important;
}
.abouthead {
  margin: 0px 0px 40px 0px;
}
.product-banner h1, .comparison-banner h1 {
  margin-bottom: 35% !important;
  text-align: left;
font-size: 42px !important;
}


.comparison {
  background-size: 100% 115%;
  background-position: unset;
}
.comparison .secondarybanner, .comparison .secondarybanner .col-12 {
  padding-left: var(--bs-gutter-x,.75rem) !important;
}

.contactus .headm {
  text-align: left;
  height: 40px;
}

.galleryban .headm {
  height: 135px;
  width: 100%;
  text-align: center;
}

}

@media(max-width:420px) {
  .container {
      max-width: 100%;
  }


.one {
  background-image: url('../img/homebanners/banner1small2.jpg');
}

.two {
  background-image: url('../img/homebanners/banner2small1.jpg');
}
.three {
  background-image: url('../img/homebanners/banner3small1.jpg');
}
.four {
  background-image: url('../img/homebanners/banner4small1.jpg');
}
.protitle {
    padding-top: 60px;
    font-size: 37px;
}
}

@media(max-width:380px) {
  #hero {
      height: 225px;
  }
  #hero h1 {
    font-size: 45px;
    margin: 0;
  }
  #header .logo img {
    max-height: 40px;
    margin-top: 5px;
  }

  .download, .walk-through {
    margin: 0 !important;
    margin-right: 0 !important;
  }

  .download {
    margin-top: 5px !important;
  }
  .three {
    background-image: url('../img/homebanners/banner3extrasmall.jpg');
  }
  .four {
    background-image: url('../img/homebanners/banner4extrasmall.jpg');
  }

  .comparison {
    background-size: 100% 120%;
  }
  .comparison .headm {
    width: 100%;
  }
  .whitetext {

    padding-top: 47px;
    font-size: 37px;
  }
  .contactus {
    background-position: center;
    position: relative;
  }

  .contactus .headm {
    text-align: center;
    height: 150px;
  }
}

@media(max-width:320px) {
  #hero h1 {
    font-size: 40px;

  }

  .maintitle {
    font-size: 36px;
  }


  .section {
    padding: 40px 0;
  }

  .hometext {
    right: 45px;
  }
.twotextres {

    right: 26px;

}


}
