body{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,e4e4e4+30,dddddd+55,cccccc+76,b7b7b7+100 */
    /*background: #ffffff; /!* Old browsers *!/*/
    /*background: -moz-linear-gradient(top,  #ffffff 0%, #e4e4e4 30%, #dddddd 55%, #cccccc 76%, #b7b7b7 100%); /!* FF3.6-15 *!/*/
    /*background: -webkit-linear-gradient(top,  #ffffff 0%,#e4e4e4 30%,#dddddd 55%,#cccccc 76%,#b7b7b7 100%); /!* Chrome10-25,Safari5.1-6 *!/*/
    /*background: linear-gradient(to bottom,  #ffffff 0%,#e4e4e4 30%,#dddddd 55%,#cccccc 76%,#b7b7b7 100%); /!* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!/*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b7b7b7',GradientType=0 ); /!* IE6-9 *!/*/
    /*background: linear-gradient(180deg, rgba(254,254,254,1) 0%, rgba(185,185,185,0.2) 75%);*/
    background: linear-gradient(180deg, rgba(255,255,255,1) 25%, rgba(185,185,185,1) 75%);
    background-repeat: no-repeat;
    height: 100%;
    background-attachment: fixed;
}

.container{
    max-width: 1920px !important;
    max-height: 1080px !important;
    width: 100% !important;
    height: auto !important;
}

.carousel-item img{
    width: 75% !important;
    height: 350px !important;
    object-fit: cover;
}

.carousel-item .d-block{
    text-align: center;
}

h1 {
  text-align: center;
  margin: 40px 0;
  font-size: 40px;
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

.row2{
    margin-top: 100px !important;
    margin-bottom: 100px;
}


li{
  list-style-type: none;
}

:root{
  --marquee-width: 100%;
  --marquee-height: auto;
  /* --marquee-elements: 9; */
  --marquee-elements-display: 4;
  --marquee-element-width: calc(var(--marquee-width)/var(--marquee-elements-display));
  --marquee-animation-duration: calc(var(--marquee-elements)*2s);
}

.marquee{
  width: var(--marquee-width);
  height: var(--marquee-height);
  /* background: #111; */
  color: #fff;
  overflow: hidden;
  position: relative;
}

.marquee::before, .marquee::after{
  position: absolute;
  top: 0;
  width: 03rem;
  height: 100%;
  content: "";
  z-index: 1;
}

/*.marquee::before{*/
/*  left: 0;*/
/*  background: linear-gradient(to right, #fff 0%, transparent 100%);*/
/*}*/

/*.marquee::after{*/
/*  right: 0;*/
/*  background: linear-gradient(to left, #fff 0%, transparent 100%);*/
/*}*/

.marquee-content{
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

/* .marquee-content:hover{*/
/*  animation-play-state: paused;*/
/*} */

@keyframes scrolling{
  0% {transform: translateX(0); }
  100% { transform: translateX(calc(-1*var(--marquee-element-width)*var(--marquee-elements))); }
}

.marquee-content li{
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid teal; */
  width: var(--marquee-element-width);
  flex-shrink: 0;
  font-size: calc(var(--marquee-height)*2/3);
  white-space: nowrap;
  margin: 0 20px;
}

.marquee-content li img{
  width: 100%;
  height: 150px;
}

#animation_container{
    max-width: 1920px !important;
    width: 100% !important;
    height: auto !important;
    background-color: transparent !important;
}

#animation_container #canvas{
    width: 100% !important;
    max-width: 1920px !important;
    position: relative !important;
    object-fit: contain;
    height: auto !important;
    background-color: transparent !important;
}


#animation_container #dom_overlay_container{
    width: 100% !important;
    max-width: 1920px !important;
    height: auto !important;
}

.my-car .carousel-item{
    display: flex;
    align-items: center;
}

.my-car .carousel-control-next {
    right: 50%;
}

.animation-section-max-height{
    max-height: 450px !important;
}

.c-d-none{
    display: none;
}

@media screen and(max-width: 575px){
  html{
    font-size: 12px;
  }
  :root{
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displaed: 3;
  }

  .marquee::before, .marquee::after{
    width: 5rem;
  }
}