.item {
  height: 30em;
  margin-bottom: 10em;
}

.item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #999DA0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #828282;
}

html, body, .section-images {
  width: 100%;
  height: 100%;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 90%;
}

html {
  font-family: Montserrat;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.item-car {
  height: auto;
}

.carousel-item .img-fluid {
  width: 100%;
  height: 100%;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.carousel-item .img-fluid {
  width: 100%;
  height: 100%;
}

.container1 {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background-image: url("../../assets/img/Model/beachcarousel2.jpg");
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .item2 > img {
  -webkit-animation: zoom 50s;
  animation: zoom 55s;
  overflow: hidden;
  object-fit: cover;
}

.fade-in-text {
  display: inline-block;
  font-family: 'Montserrat';
  /*font-size: 5vw;*/
  color: #eeeeee;
  animation: fadeIn linear 5s;
  -webkit-animation: fadeIn linear 5s;
  -moz-animation: fadeIn linear 5s;
  -o-animation: fadeIn linear 7s;
  -ms-animation: fadeIn linear 7s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.wrap-image {
  position: relative;
  margin: 25px;
  z-index: 1;
  /*width: 100%;*/
  /*height: 100%;*/
}

.wrap-image::before, .wrap-image::after {
  content: "";
  width: 100%;
  height: 30em;
  position: absolute;
  z-index: -1;
  border: 2px solid rgb(147, 197, 114);
  transition: all 1s ease-out;
  opacity: 60%;
}

.wrap-image::before {
  background-color: rgb(147, 197, 114);
  top: -1em;
  left: -1em;
}

.wrap-image::after {
  /*bottom: -0.5em;*/
  right: -1em;
}

.wrap-image:hover::before {
  top: 1em;
  left: 1em;
}

.wrap-image:hover::after {
  bottom: 1em;
  right: 1em;
}

.img-hover-zoom {
  /*height: 300px;*/
  overflow: hidden;
}

/* [2] Transition property for smooth transformation of images */

.img-hover-zoom img {
  transition: transform 2s ease;
}

/* [3] Finally, transforming the image when container gets hovered */

.img-hover-zoom:hover img {
  transform: scale(0.8);
}

* {
  box-sizing: border-box;
}

.section-flex {
  /*min-height: 30vh;*/
  height: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin: 20px;
  /*background-color: #000;*/
}

.image-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 0fr);
  width: 1000px;
  grid-column-gap: 1vw;
  grid-row-gap: 0px;
  background-color: #000;
}

.image-container .image {
  position: relative;
  padding-bottom: 100%;
}

.image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  left: 0;
  position: absolute;
  top: 0;
}

.image-container .image img:nth-of-type(1) {
  filter: grayscale(100%) brightness(80%);
}

.image-container .image img:nth-of-type(2) {
  clip-path: var(--clip-start);
  transition: clip-path 1s;
}

.image-container .image:hover img:nth-of-type(2) {
  clip-path: var(--clip-end);
}

a.hoverable:hover {
  opacity: 50%;
}

section {
  background-color: #000;
  /*z-index: -10;*/
  color: #fff;
  /*oncontextmenu: return false;*/
}

body {
  background-color: #000;
}

.navbar-collapse {
  /*-webkit-backdrop-filter: blur(8px);*/
  backdrop-filter: blur(8px);
}

