.container-glass {
  position: relative;
  width: 100% !important;
  height: 100% !important;
}
.glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background {
  position: relative;
  height: 100%;
  width: 100%;
}
.container-glass {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.container-glass::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 60%;
  padding-top: 60%;
}
.background,
.glass {
  background: url("./imgs/Centre\ 01.jpg") no-repeat;
  background-size: 120% 100%;
  background-position: cover;
}
.background {
  filter: blur(0px) brightness(100);
}
.glass:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.glasses {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -5%;
  filter: drop-shadow(1px 3px 0px rgba(80, 80, 80, 0.7));
}
.glass {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
}
.glass1 {
  clip-path: polygon(10% 40%, 20% 90%, 35% 70%);
}
.glass2 {
  clip-path: polygon(20% 10%, 70% 30%, 50% 70%);
}
.glass3 {
  clip-path: polygon(85% 10%, 100% 40%, 70% 80%);
}

/*gallery*/

#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: repeat(1, 250px);
  grid-gap: 1rem;
  grid-auto-flow: dense;
  padding-bottom: 50px;
}

#gallery img{
  height: 100%;
  width: 100%;
  cursor: pointer;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0px 0px 1.5px #000;
  border-radius: 0px !important;
}

.image-project{
  width: 100%;
}

.modal-img,
.model-vid {
  width: 100%;
  height: auto;
}
.modal-body {
  padding: 0px;
}

/*main-landing image*/

.img-main-service {
  width: 80%;
  height: 70%;
  max-height: 100%;
  position: relative;
  margin-left: 20px;
}

.img-main-service img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.img-main-service::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20%;
  right: -10%;
  border: 20px solid white;
  mix-blend-mode: difference;
}

.landing-image-container {
  height: calc(60vh - 65px);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.landing-image-container::after{
  display: block;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000060;
}

.landing-image-container .landing-image-container-img {
  height: 100%;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-position: center;
}

.landing-image-container-img h1{
  z-index: 999;
  position: relative;
}