
/*
BEM (block, element, modifier)

Block       -> house
Element     -> house__kitcher
Modifier    -> house--condo
*/
/* Base Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'KoHo', sans-serif;
}
h1{
  font-size: 40px;
  font-weight: 600;
}
h2{
  font-size: 2.1rem;
}
h3{
  font-size: 1.7rem;
}
p{
  font-size: .9rem;
}
body {
  color: #333333;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

button {
  cursor: pointer;
}

a {
    color: #396684;
}
/*logo */
.imageSize{
  width: 40%;
}
/* Form Inputs */

.button {
    background: #43799c;
    border: none;
    border-bottom: 2px solid #396684;
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    padding: .8rem;
    transition: background .3s ease;
}

.button:hover {
    background: #396684;
}

.button--secondary {
    background: #888888;
    border-bottom: 2px solid #717171;
}

.button--secondary:hover {
    background: #6E6E6E;
}
.text-teal{
  color: #008080;
  margin-left: 120px;
}

/* nav-bar-section */
@media screen and (min-width: 768px) {
#navbarNavDropdown .nav-item .nav-link:after, #navbarNavDropdown .nav-item .nav-link:before {
  position: absolute;
  opacity: 0;
  width: 0%; 
  height: .75px;
  content: '';
  background: #FFF;
  transition: all 0.3s;
}
 
#navbarNavDropdown .nav-item a:before {
  left: 0px;
  top: 0px;
}
#navbarNavDropdown .nav-item a:after {
  right: 0px;
  bottom: 0px;
}
#navbarNavDropdown .nav-item a:hover:before ,#navbarNavDropdown .nav-item a:hover:after {
  opacity: 1;
  width: 100%;
}
.nav-link{
  color: #FFF !important;
  position: relative
}
.navbar-nav > li{
	margin-right: 1.8rem;
}
.dropdown {
    border-radius: 0;
    height: 3rem;
}
.dropdown-menu{
  padding: 0;
  margin: 0;
  border: 0;
}
.dropdown-toggle::after{
  border-top: 0;
}

.dropdown-item:hover{
  color: #fff;
  background: teal;
}
}
.banner{
    background-image: url("../images/banner/bannerMain.jpg");
    min-height: 60vh;
    width: 100%;
    background-size: cover;
}
.contact-banner{
  background-image: url("../images/banner/bannerContact.jpg");
}
.about-banner{
  background-image: url("../images/banner/bannerAbout.jpg");
}
.request-banner{
  background-image: url("../images/banner/bannerAbout.jpg");
}
.product-banner{
  background-image: url("../images/banner/bannerWindow.jpg");
}
.feature-heading{
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 0 auto;
  position: relative;
}
.contact-heading{
	color:#fff;
	letter-spacing: 2px;
}
.feature-heading p{
  color: #F7F7F7;
}
.teal {
    background-color: rgb(0, 150, 136) !important;
}

/* corousel */
.carousel-inner {
    max-height: 450px;
}
.carousel-control-prev {
    opacity:1;
}
.carousel-control-next {
    opacity:1;
}
.carousel-caption{
    bottom: 0;
    top:70px;

}
.carousel-caption h5{
    font-size: 40px;
    font-weight: bold;
}

/* parrallax */
.parallex{
  background-image: url(../images/parallex1.jpg);
  background-size: cover;
  background-attachment: fixed;
  height: 400px;
}
/* parrallax ends */


/* features starts */
.service-block-container {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.service-block {
  min-width: 200px;
  width: 250px;
  height: 350px;
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #666;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  padding: 0 10px;
}

.service-underlay {
  position: absolute;
  height: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: teal;
  padding-top: 18px;
  transition: all 0.3s ease-in-out;
}

.service-icon {
  position: absolute;
  top: 20px;
  left:0; 
  right: 0;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
  color: #737373;
}

.service-name {
  margin: 0 auto;
  display: block;
  text-transform: Capitalize;
  color: #fff;
}

.service-desc {
  display: block;
  font-size: 12px;
  margin-top: 75px;
  text-align: justify;
}
/* features ends */

/* client feedback */
.client h2{
  color: teal;
}
.section_our_solution .row {
  align-items: center;
}
  
.our_solution_category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.our_solution_category .solution_cards_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution_cards_box .solution_card {
  flex: 0 50%;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
    0 5px 15px 0 rgba(37, 44, 97, 0.15);
  border-radius: 15px;
  margin: 8px;
  padding: 10px 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 265px;
  transition: 0.7s;
}

.solution_cards_box .solution_card:hover {
  background: teal;
  color: #fff;
  transform: scale(1.1);
  z-index: 9;
}

.solution_cards_box .solution_card:hover::before {
  background: rgb(85 108 214 / 10%);
}

.solution_cards_box .solution_card:hover .solu_title h3,
.solution_cards_box .solution_card:hover .solu_description p {
  color: #fff;
}
  
.solution_cards_box .solution_card:before {
  content: "";
  position: absolute;
  background: rgb(85 108 214 / 5%);
  width: 170px;
  height: 400px;
  z-index: -1;
  transform: rotate(42deg);
  right: -56px;
  top: -23px;
  border-radius: 35px;
}

.solution_cards_box .solution_card:hover .solu_description button {
  background: #fff !important;
  color: #309df0;
}
.solution_card .solu_title h3 {
  color: #212121;
  margin-top: 13px;
  margin-bottom: 13px;
}

.solution_card .solu_description p {
  margin-bottom: 15px;
}
.our_solution_content h1 {
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.hover_color_bubble {
  position: absolute;
  background: rgb(54 81 207 / 15%);
  width: 100rem;
  height: 100rem;
  left: 0;
  right: 0;
  z-index: -1;
  top: 16rem;
  border-radius: 50%;
  transform: rotate(-36deg);
  left: -18rem;
  transition: 0.7s;
}
  
.solution_cards_box .solution_card:hover .hover_color_bubble {
  top: 0rem;
}

.solution_cards_box .solution_card .so_top_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.solution_cards_box .solution_card .so_top_icon img {
  width: 40px;
  height: 50px;
  object-fit: contain;
}
  
/*start media query*/
@media screen and (min-width: 320px) {
  .sol_card_top_3 {
    position: relative;
    top: 0;
  }

  .our_solution_category {
    width: 100%;
    margin: 0 auto;
  }

  .our_solution_category .solution_cards_box {
    flex: auto;
  }
}
  @media only screen and (min-width: 768px) {
  .our_solution_category .solution_cards_box {
    flex: 1;
  }
}
  @media only screen and (min-width: 1024px) {
  .sol_card_top_3 {
    position: relative;
    top: -3rem;
  }
  .our_solution_category {
    width: 50%;
    margin: 0 auto;
  }
}
/* client feedback ends */


/* contact-section */
.grid-left {
	padding: 0 3em !important;
}
.grid-left-border {
	border-right: 2px dashed #bbb;
}
.contact-left .contact-right h3 {
	color: #333;
	text-transform: uppercase;
	padding-bottom: 0.5em;
	position: relative;
	letter-spacing: 2px;
	margin-bottom: 1em;
}
.contact-left p {
	color: #555;
	margin: 1em 0;
	line-height: 30px;
}
.contact-left ul li {
	list-style-type: none;
	color: #aaa;
	margin-bottom: 1em;
	letter-spacing: 1px;
	background: #333;
	height: 54px;
	padding-top: 10px;
}
.contact-left ul li a {
	color: #aaa;
	text-decoration: none;
}
.contact-left ul li label {
	width: 54px;
	height: 54px;
	vertical-align: middle;
	text-align: center;
	margin-right: 1em;
	background: #20c997;
	color: #fff;
	line-height: 54px;
	float: left;
	margin-top: -10px;
}

.contact-right input[type="submit"] {
	outline: none;
	padding: 15px 0;
	background: #20c997;
	width: 100%;
	border: none;
	letter-spacing: 2px;
	color: #fff;
	margin-top: 2em;
}
/* contact-section ends */

/*---  BoxUnderline starts ---*/
.boxUnderline {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.boxUnderline .custom-underline::after {
  top: 100%;
  height: 5px !important;
  width: 40%;
  left: 30%;
  background-color: rgba(0, 0, 0, 0.6);
    transition: 0.4s ease-out all .1s;
}

.boxUnderline:hover .custom-underline::after {
  width: 90%;
  left: 5%;
    transition: 0.5s ease all;
}
.custom-underline::after {
  content: "";
  position: absolute;
}
.custom-underline {
  position: relative;
  display: inline-block;
  text-align: center;
}
/*---  BoxUnderline ends ---*/
/* upvc */
.upvc{
  text-align: center;
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.teal{
  background-color: rgb(0, 150, 136) !important;
  color: white
}
.contact-right .contact-btn {
  outline: none;
  padding: 15px 0;
  background: teal;
  width: 100%;
  border: none;
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;
  margin-top: 2em;
}
.contact-right .contact-btn:disabled {
	outline: none;
	padding: 15px 0;
	background: #20c997;
	width: 100%;
	border: none;
	letter-spacing: 2px;
	font-weight: 600;
	color: #fff;
	margin-top: 2em;
}
#menu {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -75px 0 0 -75px;
  list-style: none;
}

#menu .menu-button {
  opacity: 0;
  z-index: -1;
}

#menu .menu-button {
  width: 175px;
  height: 175px;
  position: absolute;
  left: 50%;
  top: 100%;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 15%, white 1px, #08817F 3%, #022020 60%, #08817F 100%);
  background-size: 100%;
  overflow: hidden;
  text-decoration: none;
}
#menu .menu-button:hover{
  color: #fff;
}

#menu:not(:target)>a:first-of-type,
#menu:target>a:last-of-type {
  opacity: 1;
  z-index: 1;
}

#menu:not(:target)>.icon-plus:before,
#menu:target>.icon-minus:before {
  opacity: 1;
}

#menu .menu-item {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 55%;
  line-height: 5px;
  top: 90%;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 15%, white 1px, #08817F 3%, #022020 60%, #08817F 100%);
  transform: translate(0px, 0px);
  transition: transform 500ms;
  z-index: -2;
  transition: .5s;
}

#menu .menu-item:hover{
  opacity: 0.5;
  box-shadow: 0 5px 10px black; 
}


#menu .menu-item a {
  color: #fff;
  position: relative;
  top: 48%;
  left: 0;
  text-decoration: none;
}

#menu:not(:target)>.menu-item:nth-child(6) {
  transform: rotate(60deg) translateY(-150px) rotate(300deg);
  transition-delay: 0s;
}

#menu:not(:target)>.menu-item:nth-child(5) {
  transform: rotate(20deg) translateY(-155px) rotate(-20deg);
  transition-delay: 0.1s;
}

#menu:not(:target)>.menu-item:nth-child(3) {
  transform: rotate(-20deg) translateY(-155px) rotate(20deg);
  transition-delay: 0.2s;
}

#menu:not(:target)>.menu-item:nth-child(4) {
  transform: rotate(-60deg) translateY(-150px) rotate(60deg);
  transition-delay: 0.3s;
}
/* upvc ends */ 

/* section components in products page start */

.windows-components p{
  line-height: 30px;
  text-align: justify;
  color: #555;
}

.mb-10 {
	margin-bottom: 10px;
}
.faq-left .card {
	border: none;
	background: transparent;
	border-radius: 0 !important;
	margin-bottom: 10px;
}
.faq-left .card-header {
	padding: 5px;
	border-radius: 0 !important;
	border-bottom: none;
	background-image: -webkit-linear-gradient(0deg, #20c997 0%, teal 100%);
}

.faq-left .card-header .btn-link {
	border-radius: 0 !important;
	color: #fff;
  text-decoration: none;
  box-shadow: none;
}
/* section components in products page ends */

/* section windows in products page start*/
.main{
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
div{
	box-sizing: border-box;
}
.card-my3{
  width: 280px;
  background: #fff;
  height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  transition: 1s ease;
  box-shadow: 0 0 10px #B8CDCC;
  margin: 3vh 0; 
}
.large{
  width:560px;
  display: flex;
}
.large p{
  padding: 10px;
  text-align: justify;
}
.active-div2, .active-glasses-div {
  width: 280px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 500ms ease;
  text-align: center;
  transform: translateX(50%);
  padding:10px 10px ;
}
.hover-div2, .hover-glasses-div{
  width: 280px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 500ms ease;
  text-align: center;
  transform: translateX(150%);
  padding:10px 10px ;
}
.hover-glasses-div{
  visibility: hidden;
}
.active-div2 p{
  height: 100px;
}

.contact-box-bottom3{
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 145px;
}
.card-my3:hover .active-div2{
  transform: translateX(-150%);
}
.card-my3:hover .hover-div2{
  transform: translateX(-50%);
}
.card-my3:hover .active-div3{
  transform: translateX(-50%);
}
.card-my3:hover{
  transform: scale(1);
  box-shadow: 0.0px 0.0px 5.0px 0.0px #A1B3B3,
  -0.5px 0.0px 0.0 0.0px #A1B3B3,

  -0.5px 0.5px 0.0 0.0px #8A9A99,     
  -1.0px 0.5px 0.0 0.0px #8A9A99,
  -1.0px 1.0px 0.0 0.0px #8A9A99,
  -1.5px 1.0px 0.0 0.0px #8A9A99,
  -1.5px 1.5px 0.0 0.0px #8A9A99,
  -2.0px 1.5px 0.0 0.0px #8A9A99,
  -2.0px 2.0px 0.0 0.0px #8A9A99,

  -2.5px 2.0px 0.0 0.0px #B8CDCC,
  -2.5px 2.5px 0.0 0.0px #B8CDCC,
  -3.0px 2.5px 0.0 0.0px #B8CDCC,
  -3.0px 3.0px 0.0 0.0px #B8CDCC,
  -3.5px 3.0px 0.0 0.0px #B8CDCC,
  -3.5px 3.5px 0.0 0.0px #B8CDCC,
  -4.0px 3.5px 0.0 0.0px #B8CDCC,
  -4.0px 4.0px 0.0 0.0px #B8CDCC, 
  -4.5px 4.0px 0.0 0.0px #B8CDCC,
  -4.5px 4.5px 0.0 0.0px #B8CDCC,

  -5.0px 4.5px 0.0 0.0px #8A9A99,
  -5.0px 5.0px 0.0 0.0px #8A9A99,    
  -5.5px 5.0px 0.0 0.0px #8A9A99,
  -5.5px 5.5px 0.0 0.0px #8A9A99,
  -6.0px 5.5px 0.0 0.0px #8A9A99,
  -6.0px 6.0px 0.0 0.0px #8A9A99,    
  -6.5px 6.0px 0.0 0.0px #8A9A99,
  -6.5px 6.5px 0.0 0.0px #8A9A99,
  -7.0px 6.5px 0.0 0.0px #8A9A99,
  -7.0px 7.0px 0.0 0.0px #8A9A99,    
  -7.5px 7.0px 0.0 0.0px #8A9A99,
  -7.5px 7.5px 0.0 0.0px #8A9A99,
  -8.0px 7.5px 0.0 0.0px #8A9A99,
  -8.0px 8.0px 0.0 0.0px #8A9A99,     
  -8.5px 8.0px 0.0 0.0px #8A9A99,
  -8.5px 8.5px 0.0 0.0px #8A9A99,

  -9.0px 8.5px 0.0 0.0px #A1B3B3,
  -9.0px 9.0px 0.0 0.0px #A1B3B3,
   
   -12.5px 11.5px 12.0px 3.0px rgba(96,96,96,0.3);
   transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* section windows in products page ends*/

/* section glass in products page starts */
.card-my2{
  width: 280px;
  background: #fff;
  height: 380px;
  padding:10px 10px ;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: 1s ease;
  box-shadow: 0 0 10px #B8CDCC;
  margin: 3vh 0; 
}
.active-div{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 500ms ease;
  text-align: center;
}
.hover-div{
  width: 100%;
  height: 310px;
  position: relative;
  overflow: hidden;
  transition: 500ms ease;
  text-align: center;
}
.active-div p{
  height: 100px;
}
.img3{
  height: 300px;
  width: 234px;
  padding: 10px;
}
.img2{
  width: 100%;
}
.contact-box-bottom2{
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 145px;
}
.card-my2:hover .active-div{
  transform: translateY(-85%);
}
.card-my2:hover .hover-div{
  transform: translateY(-310px);
}
.card-my2:hover{
  transform: scale(1);
  box-shadow: 0.0px 0.0px 5.0px 0.0px #A1B3B3,
  -0.5px 0.0px 0.0 0.0px #A1B3B3,

  -0.5px 0.5px 0.0 0.0px #8A9A99,     
  -1.0px 0.5px 0.0 0.0px #8A9A99,
  -1.0px 1.0px 0.0 0.0px #8A9A99,
  -1.5px 1.0px 0.0 0.0px #8A9A99,
  -1.5px 1.5px 0.0 0.0px #8A9A99,
  -2.0px 1.5px 0.0 0.0px #8A9A99,
  -2.0px 2.0px 0.0 0.0px #8A9A99,

  -2.5px 2.0px 0.0 0.0px #B8CDCC,
  -2.5px 2.5px 0.0 0.0px #B8CDCC,
  -3.0px 2.5px 0.0 0.0px #B8CDCC,
  -3.0px 3.0px 0.0 0.0px #B8CDCC,
  -3.5px 3.0px 0.0 0.0px #B8CDCC,
  -3.5px 3.5px 0.0 0.0px #B8CDCC,
  -4.0px 3.5px 0.0 0.0px #B8CDCC,
  -4.0px 4.0px 0.0 0.0px #B8CDCC, 
  -4.5px 4.0px 0.0 0.0px #B8CDCC,
  -4.5px 4.5px 0.0 0.0px #B8CDCC,

  -5.0px 4.5px 0.0 0.0px #8A9A99,
  -5.0px 5.0px 0.0 0.0px #8A9A99,    
  -5.5px 5.0px 0.0 0.0px #8A9A99,
  -5.5px 5.5px 0.0 0.0px #8A9A99,
  -6.0px 5.5px 0.0 0.0px #8A9A99,
  -6.0px 6.0px 0.0 0.0px #8A9A99,    
  -6.5px 6.0px 0.0 0.0px #8A9A99,
  -6.5px 6.5px 0.0 0.0px #8A9A99,
  -7.0px 6.5px 0.0 0.0px #8A9A99,
  -7.0px 7.0px 0.0 0.0px #8A9A99,    
  -7.5px 7.0px 0.0 0.0px #8A9A99,
  -7.5px 7.5px 0.0 0.0px #8A9A99,
  -8.0px 7.5px 0.0 0.0px #8A9A99,
  -8.0px 8.0px 0.0 0.0px #8A9A99,     
  -8.5px 8.0px 0.0 0.0px #8A9A99,
  -8.5px 8.5px 0.0 0.0px #8A9A99,

  -9.0px 8.5px 0.0 0.0px #A1B3B3,
  -9.0px 9.0px 0.0 0.0px #A1B3B3,
   
   -12.5px 11.5px 12.0px 3.0px rgba(96,96,96,0.3);
   transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* section glass in products page starts */

/*doors*/
#f1_container {
  position: relative;
  margin: 10px auto;
  width: 350px;
  height: 281px;
  z-index: 1;
}
#f1_container {
  perspective: 1000;
}
#f1_card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 1.0s linear;
}
#f1_container:hover #f1_card {
  transform: rotateY(180deg);
  box-shadow: -5px 5px 5px #aaa;
}
.face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.front img{
  width: 100%;
  height: 282px;
}
.face.back {
  display: block;
  transform: rotateY(180deg);
  box-sizing: border-box;
  padding: 10px;
  color: white;
  text-align: center;
  background-color: #aaa;
}
/*doors end*/

/* about */
.about p{
  color: #555;
  line-height: 22px;
}
.about-list li{
  color: #555;
  line-height: 30px;
  list-style: none;
}
.profile{
  height: 500px;
  width: 100%;
}
.about-list hr{
  border-top: 3px solid rgba(0,0,0,.1);
}
/* about ends */

/* footer */
.footer{
  background-color: rgb(0, 150, 136) !important;
  padding: 30px 0px;
  z-index: 2;
  position: relative;
}
.footer-links li {
  padding-bottom: 10px;
  color: #fff;
  list-style: none;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-links .socio a {
  padding: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  display: inline-block;
}
.footer-links .socio a:hover {
  border-radius: 50%;
  border: 2px solid teal;
  background: teal;
}
.socio{
  margin-left: -16px;
}
/* footer ends */
/*media-queries */

@media (max-width: 768px) {  
  .client h2 {
    color: teal;
    }
  .contact-heading {
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
}
  .banner {
    min-height: 17vh;
    background-size: cover;
  }
  .profile {
    height: 250px;
  }
  .feature-heading p {
    color: #F7F7F7;
    font-size: 10px;
  }
}

/* Md message styling*/
.message{
  width: 90%;
  height: 280px;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(242,245,248,1) 35%, rgba(236,236,237,1) 100%);
  box-shadow: 0 13px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin-left: 5%;
  margin-top: 30px;
  transition: background-color .5s, box-shadow .5s, margin-left .5s;
}
.message:hover{
  margin-left: 8%;
  background-color: #ffff;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.3);
  transition: background-color .5s, box-shadow .5s, margin-left .5s;
}
.post-image{
  width: 200px;
  height: 250px;
  margin-top: 15px;
  margin-left: 15px;
  border-radius: 10px 10px 10px;
  float: left;
}
.md-image {
  width: inherit;
  border-radius: 50%;
}
.post-content{
  width: 75%;
  height: 260px;
  float: left;
  margin-left: 5px;
  overflow: hidden;
}
.md-user{
  font-size: 190px;
  color: rgb(0, 150, 136) !important;
}
.post-content .post-header{
  margin-top: 15px;
  margin-left: 10px;
  text-align: center;
  color: rgb(0, 150, 136) !important;
}
.post-text{
  padding-left: 20px;
  color: #768CA4;
}
@media (max-width: 768px) {
  .message{
    height: 0;
  }
}
/*request a quote style */
 .form-style{
 	background:#fff;
	border-radius:2px;
}
 .form-style h1{
	display: block;
	text-align: center;
	padding: 0;
	margin: 0px 0px 20px 0px;
	color: #5C5C5C;
	font-size:x-large;
}
 .form-style .ul{
	list-style:none;
	padding:0;
	margin:0;	
}
 .form-style .li{
	display: block;
	padding: 9px;
	border:1px solid #DDDDDD;
	margin-bottom: 30px;
	border-radius: 3px;
}
 .form-style .li > label{
	display: block;
	float: left;
	margin-top: -19px;
	background: #FFFFFF;
	height: 25px;
	padding: 2px 5px 2px 5px;
	color: #B9B9B9;
	font-size: 14px;
	overflow: hidden;
}
 .form-style input[type="text"],
 .form-style input[type="email"],
 .form-style input[type="number"],
 .form-style textarea,
 .form-style input[type="password"]
{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	display: block;
	outline: none;
	border: none;
	height: 25px;
	line-height: 25px;
	padding: 0;
}
 .form-style .li > span{
	background: #F3F3F3;
	display: block;
	padding: 3px;
	margin: 0 -9px -9px -9px;
	text-align: center;
	color: #C0C0C0;
}
 .form-style textarea{
	resize:none;
}
 .form-style input[type="submit"],
 .form-style button[type="button"]{
	background: #20c997;
	border: none;
	padding: 10px 20px 10px 20px;
	border-bottom: 3px solid #20c997;
	border-radius: 3px;
	color: #D2E2FF;
}
 .form-style input[type="submit"]:hover,
 .form-style button[type="button"]:hover{
	background: #20c997;
	color:#fff;
}
.dropdown-toggle.active-dropdown::after {
  transform: rotate(-90deg);
}
.copyright-inline-left { 
  /* border: 1px solid red; */
  margin:10px;
  float:left;/*Add float left*/
  /* margin :10px; */
}
.copyright-inline-right { 
  /* border: 1px solid red; */
  margin:10px 60px;
  float:right;/*Add float right*/
  /* margin :10px; */
}
.copyright-inline-right a { 
  margin-bottom: 2px;
  padding: 0px;
}

/* error page */
.error-img{
  height: 500px;
  width: 500px;
}
/* error page ends */

.deceuninck-icons li a{
  padding: 10px;
  display: inline-block;
}
.deceuninck-icons li{
  list-style: none;
}

/* media queries */
@media screen and (max-width: 767px) {
  h1 {
      font-size: 30px;
  }
  h2 {
      font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
  .parallex {
    background-size: auto;
    height: 250px;
  }
  .navbar-brand{
    width: 75%;
  }
  .imageSize {
    width: 65%;
  }
  .carousel-caption h5 {
    font-size: 18px;
  }
  .carousel-caption {
    top: 15px;
  }
  .message {
    width: 90%;
    background: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin-left: 0;
    margin-top: 0;
    transition: none;
  }
  .post-image {
    height: auto;
    margin-top: 0;
    margin-left: 125px;
  }
  .md-image {
    height: auto;
    float:center;
  }
  .post-content {
    width: 100%;
    height: auto;
  }
  .md-user {
    margin-top: 0 !important;
    font-size: 90px;
  }
  .grid-left-border {
    border-right: 0;
  }
  .nav-link{
    color: #FFF !important;
  }
}
