/* Custom - CSS */

.colorback {
    padding: 30px 0px;
    background-color: #09B5B4;
}

.colorback p, .colorback a, .colorback li {
    color: white;
}

.colorback h1 {
    color: white;
}

.colorback h2 {
    color: white;
}

.colorback strong {
    color: white;
}

.colorback .heading {
    color: white;
    border-bottom: 1px solid white;
}

.colorback2 {
    padding: 65px 0px;
    background-color: #6D6E70;
}

.colorback2 p, .colorback a, .colorback li {
    color: #fff;
}

.colorback2 h1 .colorback2 h2  {
    color: #09B5B4;
}

.colorback2 .heading {
    color: #fff;
    border-bottom: 1px solid #FEF14B;
}

.colorback3 {
    padding: 30px 0px;
    background-color: #211D1E;
}

.colorback3 p, .colorback a, .colorback li {
    color: #fff;
}

.colorback3 h1 .colorback3 h2 {
    color: #fff;
}

.colorback3 .heading {
    color: #fff;
    border-bottom: 1px solid #FEF14B;
}


.myveryownbtn
{
	font-weight: 300;
	letter-spacing: 1px;
	background-color: #211D1E;
	border-radius: 32px;
	justify-self: left;
}

.myveryownbtn h4
{
	color: white;
	border-radius: 32px;
}

.myveryownbtn::before
{
	border-radius: 32px;
	border: 0px solid #211D1E;
}


.myveryownbtn:hover::before
{	
	border: 2px solid #696a6c;
    background-color: #696a6c;
}

.myveryownlist ul {
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.myveryownlist {
    grid-gap: 0px!important;
}


hr { 
    background: url("../img/hr.png") no-repeat top center;
    background-size: contain;
    display: block;
    height: 60px;
    border: 0;
    position: relative;
}
hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #10B2B3;
    height: 1px;
    top: 22px;
}
hr:before {
    left: 0;
    right: 60%;
    margin-right: 10px;
    margin-left: 70px;
}
hr:after {
    right: 0;
    left: 60%;
    margin-left: 10px;
    margin-right: 70px;
}
.imageback {
    padding: 218px 0px;
    background-color: black;
    background-image: url("../img/homebanner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.imageback h1 {
    
    color: white;
    font-size: xxx-large;
}

.imageback h2 {
    
    color: white;
}
.imageback h4 {
    
    color: white;
}

.imageback p {
    
    color: white
}

.imageback strong {
    
    color: white
}


.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #242C36;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    padding: 15px;
}

.card p {
    color: white;
}

.card:hover {
     background-color: #7ADF7B;
    
}

.card:hover p {
     color: white;
    
}

.card:hover h2 {
     color: white;
    
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.zoom {
    transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.05);
}

.quotes
{
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  box-sizing: border-box;
  padding:20px;
padding-top: 50px;
	padding-bottom: 50px;
}

.quotes .box
{
  position: relative;
  padding:80px 40px 40px;
  transition:0.5s;
  text-align: center;
  background:#fff;
  border-radius:10px;
}

.quotes .box:hover
{
  background-color: #242C36;
}

.quotes .box p
{
  margin:0;
  padding:0;
  transition:0.5s;
 color: #242C36;

}

.quotes .box h4
{
  margin:20px 0 0;
  padding:0;
  transition:0.5s;
  font-size:18px;
  color:#7ADF7B;
  font-weight:700;
  line-height: 20px;
  text-transform: uppercase;
}

.quotes .box h4 span
{
  font-weight: 600;
  font-size: 14px;
  color: #c5c5c5;
  transition: 0.5s;
}

.quotes .box:hover p,
.quotes .box:hover h4,
.quotes .box:hover h4 span
{
  color:#fff;
}

.quotes .box .imgBox
{
  position:absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%);
  width: 120px;
  height: 120px;
  border-radius:50%;
  overflow: hidden;

}

.quotes .box:before
{
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: url("../img/quotes.webp");
  background-size: cover;
  opacity: 0.02;
  pointer-events: none;
  transition: 0.5s;
}

.quotes .box:hover:before
{
  transform: translateY(-60px);
  opacity: 1;
}

.quotes .box:after
{
  content:'';
  position: absolute;
  bottom:20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: url("../img/quotes.webp");
  background-size: cover;
  opacity: 0.02;
  pointer-events: none;
  transition: 0.5s;
  transform: rotate(180deg) translateY(0px);
}

.quotes .box:hover:after
{
  transform: rotate(180deg) translateY(-60px);
  opacity: 1;
}



.kenburns-bottom {
	-webkit-animation: kenburns-bottom 15s ease-out 1s infinite both;
	        animation: kenburns-bottom 15s ease-out 1s infinite both;
}

@-webkit-keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
            transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
            transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
            transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
            transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}



/* CSS */
.button-52 {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-52:after {
  content: "";
  background-color: #7ADF7B;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
  }
}


/* CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}


.cardyc {
    
    border: 2px dashed black;
    padding: 32px;
    border-radius: 8%;
    background-color: #FF914C;
        width: 455px;
	    height: 250px;
}


@media( max-width: 395px )
{
	.cardyc
	{
		width: 20px;
		height: 350px
	}
}
@media( max-width: 768px )
{
	.cardyc
	{
		width: 250px;
		height: 325px
	}
}

@media( max-width: 992px )
{
	.cardyc
	{
		width: 300px;
		height: 300px
	}
}

.cardyb {
    
    border-top: 4px solid #4DCBBD;
    padding: 32px;
    border-radius: 5%;
    background-color: #525252;
/*    width: 256px;*/
    
box-shadow: 10px 10px 10px rgb(0, 0, 0,0.9);
/*
    -webkit-box-shadow: 3px 3px 15px 5px rgba(0,0,0,0.6);
-moz-box-shadow: 3px 3px 15px 5px rgba(0,0,0,0.6);
box-shadow: 3px 3px 15px 5px rgba(0,0,0,0.6);
*/


}

.cardyb p {
    
    color: white

}

.cardyb h3 {
    
    color: white

}




.rows {
  display: grid;
  justify-content: center;
  align-items: center;
}

.cards {
  border-radius: 5px;
  box-shadow: 7px 7px 13px 0px rgba(50, 50, 50, 0.22);
  padding: 30px;
  margin: 20px;
/*  width: 400px;*/
  transition: all 0.3s ease-out;
       
height: 320px;
    background-color: #525252;
}

@media( max-width:812px)
{
	.cards
	{
		 height: 420px;
	}
}

.cards:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.cards p {
  color: white;
  font-size: 16px;
}

.cards h2 {
  color: white;
}
.cards h3 {
  color: white;
}

.images {
  float: right;
  max-width: 64px;
  max-height: 64px;
}



.greens {
  border-left: 3px solid #4DCCBD;
}




.rows2 {
  display: grid;
  justify-content: center;
  align-items: center;
}

.cards2 {
  border-radius: 5px;
  box-shadow: 7px 7px 13px 0px rgba(50, 50, 50, 0.22);
  padding: 30px;
  margin: 20px;
/*  width: 400px;*/
  transition: all 0.3s ease-out;
       
height: 270px;
    background-color: #525252;
}


.cards2:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.cards2 p {
  color: white;
  font-size: 16px;
}

.cards2 h2 {
  color: white;
}
.cards2 h3 {
  color: white;
}

.images2 {
  float: right;
  max-width: 64px;
  max-height: 64px;
}


.greens2 {
  border-left: 3px solid #4DCCBD;
}

.roof .workspace .element {
    align-self: center;
    justify-self: center;
}

.roof .workspace .element .element h1, .roof .workspace .element .element h3, .roof .workspace .element .element p {
    justify-self: center;
    text-align: center;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #4381A6;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion h1 {
  color: white;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #99B218;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.button-74 {
  background-color: #DBCCC5;
  border: 2px solid black;
/*  border-radius: 30px;*/
  box-shadow: black 4px 4px 0 0;
  color: black;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  padding: 0 18px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-74:hover {
  background-color: white;
}

.button-74:active {
  box-shadow: black 2px 2px 0 0;
  transform: translate(2px, 2px);
}

@media (min-width: 768px) {
  .button-74 {
    min-width: 120px;
    padding: 0 25px;
  }
}
			


/* CSS */
.button-53 {
  background-color: #10B2B3;
  border: 0 solid #E5E7EB;
  box-sizing: border-box;
  color: #000000;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
/*  line-height: 1.75rem;*/
  padding: .75rem 1.65rem;
  position: relative;
  text-align: center;
/*
  text-decoration: none #000000 solid;
  text-decoration-thickness: auto;
*/
/*
  width: 100%;
  max-width: 460px;
*/
  position: relative;
  cursor: pointer;
  transform: rotate(-2deg);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-53:focus {
  outline: 0;
}

.button-53:after {
  content: '';
  position: absolute;
  border: 1px solid #000000;
  bottom: 4px;
  left: 4px;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
}

.button-53:hover:after {
  bottom: 2px;
  left: 2px;
}

@media (min-width: 768px) {
  .button-53 {
    padding: .75rem 3rem;
    font-size: 1.25rem;
  }
}


.imageback-plumbing {
    padding: 218px 0px;
    background-color: black;
    background-image: url("../img/plumbing.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}


@media( max-width: 700px )
{
    .imageback-plumbing
    {
      padding: 129px 0px;
    }
}

@media( max-width: 1190px )
{
    .imageback-plumbing
    {
      padding: 158px 0px;
    }
}


.imageback-heating {
    padding: 218px 0px;
    background-color: black;
    background-image: url("../img/heating.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

@media( max-width: 700px )
{
    .imageback-heating
    {
      padding: 129px 0px;
    }
}

@media( max-width: 1190px )
{
    .imageback-heating
    {
      padding: 158px 0px;
    }
}

.imageback-gas {
    padding: 206px 0px;
    background-color: black;
    background-image: url("../img/gas.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

@media( max-width: 700px )
{
    .imageback-gas
    {
      padding: 129px 0px;
    }
}

@media( max-width: 1190px )
{
    .imageback-gas
    {
      padding: 158px 0px;
    }
}

.imageback-boilers {
    padding: 230px 0px;
    background-color: black;
    background-image: url("../img/boiler.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

@media( max-width: 700px )
{
    .imageback-boilers
    {
      padding: 129px 0px;
    }
}

@media( max-width: 1190px )
{
    .imageback-boilers
    {
      padding: 170px 0px;
    }
}


            