
/* -------------------------------- 

Primary style

-------------------------------- */
/* .social-icon{
  position: absolute;
  left: 0%;
  top: 20px;
} */

*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #373435;
}
.thumbnail-blocks {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
}
.thumbnail-blocks img {
  max-width: 100%;
  border-radius: 5px;
}
.thumbnail-blocks:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.caption {
  margin-top: 10px;
}  

body {
  font-size: 1.6rem;
  font-family: "Raleway", sans-serif !important;
  color: #fff !important;
  background-color: #373435 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Card design for products */

#gallery-images {
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
}

.image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-image {
  max-width: 100%;
  height: 100px;
}

.image-title {
  margin-top: 5px;
  text-align: center;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  #gallery-images {
      grid-template-columns: repeat(2, 1fr);
      /* Show 2 images in a row for mobile */
      gap: 10px;
      overflow-x: auto;
      /* Allow scrolling */
      white-space: nowrap;
      /* Prevent the grid from wrapping */
  }
}

@media (max-width: 480px) {
  #gallery-images {
      grid-template-columns: 1fr;
      /* Show 1 image in a row for very small screens */
  }
}

.image-container {
  display: flex;
  margin: 10px;
  text-align: center;
}

.gallery-image {
  max-width: 100%;
  height: 100px;
}

.image-title {
  margin-top: 5px;
  font-weight: bold;
  color: #fff;
}

/* General styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.card {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

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

.card img {
  width: 100%;
  border-radius: 8px;
  height: 150px;
  object-fit: cover;
}

.card h3 {
  margin-top: 10px;
  font-size: 1.2em;
  color: #333;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.gallery-images {
  display: flex;
  overflow-x: scroll;
  gap: 10px;
}

.gallery-images img {
  height: 300px;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .card-container {
      grid-template-columns: 1fr;
  }
}
/* end of card design of */


a {
  color: #9acd91;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

p {
    margin: 0 0 10px;
    font-size: 16px;
    text-align: justify;
}

/* @keyframes animatedBackground {
	from { background-position: left; }
	to { background-position: right; }
} */

/* -------------------------------- 

Stretchy Nav style - common to:
 - basic navigation
 - add-content navigation
 - edit-content navigation

-------------------------------- */
header{
    position: absolute;
    width: 100%;
}

.cd-stretchy-nav {
  position: fixed;
  z-index: 2;
  /* top: 20px; */
  top: 5%;
  right: 2%;
  /* left: 5%; */
}
.cd-stretchy-nav .stretchy-nav-bg {
  /* this is the stretching navigation background */
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: height 0.2s, box-shadow 0.2s;
  -moz-transition: height 0.2s, box-shadow 0.2s;
  transition: height 0.2s, box-shadow 0.2s;
}
.cd-stretchy-nav.nav-is-visible .stretchy-nav-bg {
  height: 100%;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.cd-nav-trigger {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  /* replace text with image */
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}
.cd-nav-trigger span, .cd-nav-trigger span::after, .cd-nav-trigger span::before {
  /* this is the hamburger icon */
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #373435;
}
.cd-nav-trigger span {
  /* middle line of the hamburger icon */
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-nav-trigger span::after, .cd-nav-trigger span::before {
  /* top and bottom lines of the hamburger icon */
  content: '';
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.cd-nav-trigger span::before {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.cd-nav-trigger span::after {
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}
.no-touch .cd-nav-trigger:hover ~ .stretchy-nav-bg {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.nav-is-visible .cd-nav-trigger span {
  background-color: transparent;
}
.nav-is-visible .cd-nav-trigger span::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-is-visible .cd-nav-trigger span::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-stretchy-nav ul {
  position: relative;
  z-index: 2;
  padding: 60px 0 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s;
  -moz-transition: visibility 0.3s;
  transition: visibility 0.3s;
  text-align: right;
}
.cd-stretchy-nav ul a {
  position: relative;
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 calc(1em + 60px) 0 1em;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.cd-stretchy-nav ul a::after {
  /* navigation item icons */
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
  -moz-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  -o-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  opacity: .6;
  background: url(../img/cd-sprite-1.svg) no-repeat 0 0;
}
.cd-stretchy-nav ul a::before {
  /* line visible next to the active navigation item */
  content: '';
  position: absolute;
  width: 3px;
  height: 16px;
  top: 50%;
  right: 60px;
  -webkit-transform: translateX(3px) translateY(-50%) scaleY(0);
  -moz-transform: translateX(3px) translateY(-50%) scaleY(0);
  -ms-transform: translateX(3px) translateY(-50%) scaleY(0);
  -o-transform: translateX(3px) translateY(-50%) scaleY(0);
  transform: translateX(3px) translateY(-50%) scaleY(0);
  background-color: #fff;
}
.cd-stretchy-nav ul li:first-of-type a::after {
  /* change custom icon using image sprites */
  background-position: -48px 0;
}
.cd-stretchy-nav ul li:nth-of-type(2) a::after {
  background-position: -80px 0;
}
.cd-stretchy-nav ul li:nth-of-type(3) a::after {
  background-position: -64px 0;
}
.cd-stretchy-nav ul li:nth-of-type(4) a::after {
  background-position: -16px 0;
}
.cd-stretchy-nav ul li:nth-of-type(5) a::after {
  background-position: -32px 0;
}
.cd-stretchy-nav ul li:nth-of-type(6) a::after {
  background-position: -96px 0;
}
.cd-stretchy-nav ul li:nth-of-type(7) a::after {
  background-position: 0px 0;
}
.cd-stretchy-nav ul span {
  /* navigation item labels */
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-25px);
  -moz-transform: translateX(-25px);
  -ms-transform: translateX(-25px);
  -o-transform: translateX(-25px);
  transform: translateX(-25px);
}

.cd-stretchy-nav.nav-is-visible ul {
  visibility: visible;
}
.cd-stretchy-nav.nav-is-visible ul a::after {
  /* navigation item icons */
  -webkit-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-animation: scaleIn 0.15s backwards;
  -moz-animation: scaleIn 0.15s backwards;
  animation: scaleIn 0.15s backwards;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-stretchy-nav.nav-is-visible ul a.active {
  color: #ffffff;
}
.cd-stretchy-nav.nav-is-visible ul a.active::after {
  opacity: 1;
}
.cd-stretchy-nav.nav-is-visible ul a.active::before {
  -webkit-transform: translateX(3px) translateY(-50%) scaleY(1);
  -moz-transform: translateX(3px) translateY(-50%) scaleY(1);
  -ms-transform: translateX(3px) translateY(-50%) scaleY(1);
  -o-transform: translateX(3px) translateY(-50%) scaleY(1);
  transform: translateX(3px) translateY(-50%) scaleY(1);
  -webkit-transition: -webkit-transform 0.15s 0.3s;
  -moz-transition: -moz-transform 0.15s 0.3s;
  transition: transform 0.15s 0.3s;
}
.cd-stretchy-nav.nav-is-visible ul span {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: slideIn 0.15s backwards;
  -moz-animation: slideIn 0.15s backwards;
  animation: slideIn 0.15s backwards;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover {
  color: #ffffff;
  text-decoration: none;    
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover::after {
  opacity: 1;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover span {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  transform: translateX(-5px);
}
.cd-stretchy-nav.nav-is-visible ul li:first-of-type a::after,
.cd-stretchy-nav.nav-is-visible ul li:first-of-type span {
  -webkit-animation-delay: 0.05s;
  -moz-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(2) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(2) span {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(3) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(3) span {
  -webkit-animation-delay: 0.15s;
  -moz-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(4) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(4) span {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(5) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(5) span {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(6) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(6) span {
  -webkit-animation-delay: 0.30s;
  -moz-animation-delay: 0.30s;
  animation-delay: 0.30s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(7) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(7) span {
  -webkit-animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

/* -------------------------------- 

main content basic style

-------------------------------- */
.cd-main-content {
  position: relative;
  z-index: 1;
  /*min-height: 150vh;*/
  height: auto;
  padding: 0px;
  background-color: #373435;
  /* right: 5%; */
}

/* -------------------------------- 

keyframes

-------------------------------- */
@-webkit-keyframes scaleIn {
  from {
    -webkit-transform: translateY(-50%) scale(0);
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
  }
}
@-moz-keyframes scaleIn {
  from {
    -moz-transform: translateY(-50%) scale(0);
  }
  to {
    -moz-transform: translateY(-50%) scale(1);
  }
}
@keyframes scaleIn {
  from {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes slideIn {
  from {
    opacity: 0;
    -moz-transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

body::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
@media only screen and (min-width: 1050px) {
  body::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

a {
  color: #267481;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
@media only screen and (min-width: 1050px) {
  body[data-hijacking="on"] {
    overflow: hidden;
  }
}

.cd-section {
  min-height: 100vh;
}

.cd-section h2 {
  line-height: 7.4rem;
  text-align: center;
  font-size: 7.4rem;
  font-family: 'Tangerine', cursive; 
  margin: 75px 0px;
  text-shadow: 1px 1px 2px #333;
}

#home{
  background-color: #373435;
  min-height: 120vh;
  padding: 30px 20px;
  margin-bottom: 0px;
  
  background-image: url("../img/metronew.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  height: 100%;
  width: 100%;

}

#about-us{
  background-color: #373435;
  padding: 30px 20px;
  margin-bottom: 0px;
  min-height: 120vh;
   
}

#image-2{
    
    background: url('../img/bg-Walls.JPG');

    background-position: 86% center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 140vh;
}

#gallery{
  background-color: #fff;
  color: #373435;
  min-height: 120vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}

#image-3{
   
    background: url('../img/bg-Madhar-deviburuj.webp');

    background-position: top left;
    background-size: cover;
    background-attachment: fixed;
    min-height: 140vh;
}

#services{
  background-color: #373435;
  min-height: 120vh;
  padding: 30px 20px;
  margin-bottom: 0px;
   
}

#image-4{
    
    background: url('../img/bg-Rashin-Mandir.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 140vh;
}

#domain{
  background-color: #fff;
  color: #373435;
  min-height: 120vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}

#image-5{
   
    background: url('../img/bg-Bandal- Bunglow.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 140vh;
}

#contact-us{
  background-color: #373435;
  min-height: 80vh;
  padding: 30px 20px;
  margin-bottom: 10px;
}

/*.cd-section:first-of-type > div {
  background-color: #373435;
  min-height: 150vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}
.cd-section:first-of-type > div::before {
  /* alert -> all scrolling effects are not visible on small devices */
  /*content: '';
  position: absolute;
  width: 100%;
  text-align: center;
  top: 20px;
  z-index: 2;
  font-weight: bold;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #6a7083;
}
.cd-section:nth-of-type(2) > div {
  background-color: #373435;
  min-height: 150vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}
.cd-section:nth-of-type(3) > div {
  background-color: #fff;
  color: #373435;
  min-height: 150vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}
.cd-section:nth-of-type(4) > div {
  background-color: #373435;
  min-height: 150vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}
.cd-section:nth-of-type(5) > div {
  background-color: #fff;
  color: #373435;
  min-height: 150vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}
.cd-section:nth-of-type(6) > div {
  background-color: #373435;
  min-height: 150vh;
  padding: 30px 20px;
  margin-bottom: 0px;
}
[data-animation="parallax"] .cd-section > div, [data-animation="fixed"] .cd-section > div, [data-animation="opacity"] .cd-section > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
[data-animation="parallax"] .cd-section:first-of-type > div, [data-animation="fixed"] .cd-section:first-of-type > div, [data-animation="opacity"] .cd-section:first-of-type > div {
  background-image: url("../img/ANK_4833a.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /*animation: animatedBackground 10s linear alternate infinite;*/

/*[data-animation="parallax"] .cd-section:nth-of-type(2) > div, [data-animation="fixed"] .cd-section:nth-of-type(2) > div, [data-animation="opacity"] .cd-section:nth-of-type(2) > div {
  background-color: #373435;
  min-height: 150vh;
    /* 4637a */
/*}
[data-animation="parallax"] .cd-section:nth-of-type(3) > div, [data-animation="fixed"] .cd-section:nth-of-type(3) > div, [data-animation="opacity"] .cd-section:nth-of-type(3) > div {
  background: url('../img/ANK_4822a.jpg');
    background-position: fixed;
    background-size: cover;
    min-height: 100vh;
}
[data-animation="parallax"] .cd-section:nth-of-type(4) > div, [data-animation="fixed"] .cd-section:nth-of-type(4) > div, [data-animation="opacity"] .cd-section:nth-of-type(4) > div {
  background-color: #fff;
  color: #373435;
}
[data-animation="parallax"] .cd-section:nth-of-type(5) > div, [data-animation="fixed"] .cd-section:nth-of-type(5) > div, [data-animation="opacity"] .cd-section:nth-of-type(5) > div {
  background-color: #373435;
    /* 4862 */
/*}
[data-animation="parallax"] .cd-section:nth-of-type(6) > div, [data-animation="fixed"] .cd-section:nth-of-type(6) > div, [data-animation="opacity"] .cd-section:nth-of-type(6) > div {
  background-color: #fff;
  color: #373435;
}
[data-animation="parallax"] .cd-section:nth-of-type(7) > div, [data-animation="fixed"] .cd-section:nth-of-type(7) > div, [data-animation="opacity"] .cd-section:nth-of-type(7) > div {
  background-color: #373435;
}
}
@media only screen and (min-width: 1050px) {
  .cd-section h2 {
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px #333;
  }
  [data-hijacking="on"] .cd-section {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  [data-hijacking="on"] .cd-section > div {
    visibility: visible;
  }
  [data-hijacking="off"] .cd-section > div {
    opacity: 0;
  }
  [data-animation="rotate"] .cd-section {
    /* enable a 3D-space for children elements */
 /*   -webkit-perspective: 1800px;
    -moz-perspective: 1800px;
    perspective: 1800px;
  }
  [data-hijacking="on"][data-animation="rotate"] .cd-section:not(:first-of-type) {
    -webkit-perspective-origin: center 0;
    -moz-perspective-origin: center 0;
    perspective-origin: center 0;
  }
  [data-animation="scaleDown"] .cd-section > div, [data-animation="gallery"] .cd-section > div, [data-animation="catch"] .cd-section > div {
    box-shadow: 0 0 0 rgba(25, 30, 46, 0.4);
  }
  [data-animation="opacity"] .cd-section.visible > div {
    z-index: 1;
  }
}

@media only screen and (min-width: 1050px) {
  .cd-section:first-of-type > div::before {
    display: none;
  }
}
@media only screen and (min-width: 1050px) {
  .cd-section > div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Force Hardware Acceleration */
 /*   -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  [data-hijacking="on"] .cd-section > div {
    position: absolute;
  }
  [data-animation="rotate"] .cd-section > div {
    -webkit-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -o-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
*/

.cd-vertical-nav {
  /* lateral navigation */
  position: fixed;
  z-index: 1;
  right: 5%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.cd-vertical-nav a {
  display: block;
  height: 70px;
  width: 70px;
  /* image replace */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../img/cd-icon-arrow-circle.svg) no-repeat center center;
}
.cd-vertical-nav a.cd-prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-bottom: 10px;
}
.cd-vertical-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}
@media only screen and (min-width: 1050px) {
  .cd-vertical-nav {
    display: block;
  }
}

.logo{
    position: relative;
    top: 75px;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
    z-index: 10;
    width: 75%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.logo-shrink {
	width: 15%;
    top: 0px;
    background: rgba(55, 52, 53, 0.9);
    padding: 20px;
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #fff;
    box-shadow: 3px 0px 3px #fff;
    border-top: 0px;
    left: 5%;
    position: fixed;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
}

.overlay{
    height: 100%;
    width: 100%;
    position: absolute;
    /*background: url('../img/test-overlay-01.svg');
    background-size: contain;
    background-position: center top;*/
    background: #373435;
    top: -10px;
    opacity: 0.6;
}
.overlay2{
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-mask-image: url('../img/kushalstonewalls-logo-01.svg');
    top: -10px;
    opacity: 0.6;
}

.nav-overlay {
    position: absolute;
    height: 102%;
    width: 100%;
    background: rgba(55, 52, 53, 0.85);
    z-index: 5;
}

.masonry{
    margin-bottom: 30px;
}

footer{
    margin: 30px 0px;
    position: absolute;
    width: 100%;
}

.fa{
    color: #373435;
}

.thumbnail-blocks {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #373435;
    border: 1px solid #333;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
    color: #fff;
}

.thumbnail-blocks .caption {
    padding: 9px;
    color: #fff;
}


.white-top{
    width: 0;
    height: 0;
    border-bottom: 120px solid #fff;
	border-right: 100vw solid transparent;
    position: relative;
    margin-top: -150px;
    left: -20px;
    top: 1px;
}

.grey-top{
    width: 0;
    height: 0;
    border-bottom: 120px solid #373435;
	border-left: 100vw solid transparent;
    position: relative;
    margin-top: -150px;
    left: -20px;
    top: 1px;
}

.grey-bottom{
	width: 0;
	height: 0;
	border-top: 120px solid #373435;
	border-right: 100vw solid transparent;
    top: -1px;
    position: relative;
}

.white-bottom{
	width: 0;
	height: 0;
	border-top: 120px solid #fff;
	border-left: 100vw solid transparent;
    top: -1px;
    position: relative;
}

.ch-item {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	cursor: default;
}

.ch-info-wrap{
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	perspective: 800px;
	transition: all 0.4s ease-in-out;
	top: 20px;
	left: 5px;
	background: #fff url(../1.svg);
    background-size: cover;
	box-shadow: 
		0 0 0 20px rgba(255,255,255,0.8), 
		inset 0 0 3px rgba(55,52,53, 0.8);
}

.ch-info{
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	transform-style: preserve-3d;
}

.ch-info > div {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-position: center center;
	backface-visibility: hidden;
    background-size: contain;
}

.ch-info .ch-info-back {
	transform: rotate3d(0,1,0,180deg);
	background: #373435;
}

.ch-img-1 { 
	background-image: url(../img/stone-artifacts2.svg);
}

.ch-img-2 { 
	background-image: url(../img/consultancy.svg);
}

.ch-img-3 { 
	background-image: url(../img/stacking-stones.svg);
}

.ch-img-4 { 
	background-image: url(../img/stone-artifacts.svg);
}

.ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	margin: 0 15px;
	padding: 40px 0 0 0;
	height: 100px;
    text-align: center;
	font-family: "Raleway", sans-serif;
	text-shadow: 
		0 0 1px #fff, 
		0 1px 2px rgba(0,0,0,0.3);
}

.ch-info p {
	color: #fff;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 12px;
    text-align: center;
	border-top: 1px solid rgba(255,255,255,0.5);
}

.ch-info p a {
	display: block;
	color: rgba(255,255,255,0.7);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	padding-top: 4px;
	font-family: "Raleway", sans-serif;
}

.ch-info p a:hover {
	/*color: rgba(255,242,34, 0.8);*/
    color: #fff;
}

.ch-item:hover .ch-info-wrap {
	box-shadow: 
		0 0 0 20 rgba(255,255,255,0.8), 
		inset 0 0 3px rgba(55,52,53, 0.8);
}

.ch-item:hover .ch-info {
	transform: rotate3d(0,1,0,-180deg);
}

.img-thumbnail-grey {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #373435;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.company-name{
    font-size: 50px;
}

.tagline1 h2, .tagline2 h2, .tagline3 h2 {
    line-height: 3.4rem;
    text-align: center;
    font-size: 3.4rem;
    margin: 50px 0px;
}

svg {
  max-width: 100%;
}

.cd-btn {
  display: inline-block;
  padding: 1em 2em;
  color: #dab433;
  border: 2px solid #dab433;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.no-touch .cd-btn:hover {
  background-color: #dab433;
  color: #f2f2f2;
}

.cd-modal {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  -moz-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
}
.cd-modal svg {
  position: absolute;
  top: 0;
  left: 0;
}
.cd-modal svg > path {
  fill: #1f4c74;
}
.cd-modal .modal-close {
  /* 'X' icon */
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 5%;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3) url(../img/cd-icon-close.svg) no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* Force hardware acceleration*/
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
.no-touch .cd-modal .modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.cd-modal.modal-is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
.cd-modal.modal-is-visible .modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.cd-modal-content {
  position: relative;
  height: 100vh;
  overflow-y: auto;
  padding: 3em 5% 4em;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, transform 0.3s 0s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-modal-content p {
  color: #f2f2f2;
  line-height: 1.6;
  margin: 2em 0;
}
.modal-is-visible .cd-modal-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -moz-transition: opacity 0.3s 0.3s, -moz-transform 0.3s 0.3s;
  transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
}
@media only screen and (min-width: 768px) {
  .cd-modal-content {
    padding: 3em 10% 4em;
  }
  .cd-modal-content p {
    font-size: 2.4rem;
  }
}

/* -------------------------------- 

 Cover Layer - hide main content when modal is fired

-------------------------------- */
.cd-cover-layer {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f2f2f2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
  -moz-transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
  transition: opacity 0.3s 0.3s, visibility 0s 0.6s;
}
.cd-cover-layer.modal-is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.blank-image1{
    min-height: 100vh;
    background: url('../img/ANK_4822a.jpg');
    background-position: fixed;
}

.tagline{
    font-family: 'Tangerine', cursive; 
    font-size: 9rem;
    text-shadow: 1px 1px 2px #333;
    line-height: 9.4rem;
}

@media only screen and (max-width : 480px) {
    .logo-shrink {
        width: 50%;
        padding: 10px;
        position: fixed !important;
        top: 0px !important;
        width: 50% !important;
    }
    .ch-item {
        left: 16%;
    }
    #home{
        animation: animatedBackground 30s linear alternate infinite; 
    }#image-2{
        animation: animatedBackground 30s linear alternate infinite; 
    }#image-3{
        animation: animatedBackground 30s linear alternate infinite; 
    }#image-4{
        animation: animatedBackground 30s linear alternate infinite; 
    }#image-5{
        animation: animatedBackground 30s linear alternate infinite; 
    }
    .logo {
        position: relative;
        top: 100px;
        margin-left: auto;
        max-width: 300px;
        margin-right: auto;
        z-index: 10;
        width: 75%;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }
    .tagline {
        font-family: 'Tangerine', cursive;
        font-size: 7rem;
        text-shadow: 1px 1px 2px #333;
        line-height: 7.4rem;
    }
    
}

@media (max-width: 768px) {
  .logo-shrink {
        padding: 10px;
        position: fixed !important;
        top: 0px !important;
        width: 30%;
    }
    .tagline {
        font-family: 'Tangerine', cursive;
        font-size: 5rem;
        text-shadow: 1px 1px 2px #333;
        line-height: 5.4rem;
    }
}
.productimg{

  height: 250px;
   width: 100%;
}