.hero {
    height: auto;
    padding-bottom: 20px;
    background: rgb(255, 220, 193);
    background: -moz-linear-gradient(0deg, rgba(255, 220, 193, 1) 0%, rgb(255 228 208) 40%, rgb(255 222 198) 60%, rgba(255, 220, 193, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255, 220, 193, 1) 0%, rgb(255 228 208) 40%, rgb(255 222 198) 60%, rgba(255, 220, 193, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 220, 193, 1) 0%, rgb(255 228 208) 40%, rgb(255 222 198) 60%, rgba(255, 220, 193, 1) 100%);
}

.main {
    border-radius: 10px;
    height: 300px;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/forBusiness.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 10px;
}

body {
    transition: none!important;
}

.main h2 {
    font-size: 30px;
}

.text {
    background-color: #e9e9e9;
    margin-top: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 40px 0;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .text {
        padding: 20px 10px;
        padding-bottom: 5px;
    }
}

.gallery {
    border-radius: 10px;
    margin-top: 10px;
}

.whyUs {
    background-color: #4c3c4c;
    color: #ffffff;
    margin-top: 10px;
    border-radius: 10px;
    padding: 40px 0;
}

@media only screen and (max-width: 767px) {
    .whyUs {
        padding: 20px 10px;
    }
}

.whyUs h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.hologram {
    background-color: #636363;
    color: white;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    white-space: nowrap;
    cursor: default;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media only screen and (max-width: 400px) {
    .hologram {
        color: white;
    }
}

.hologram .selected {
    color: white;
}

.hologram p:hover {
    animation-play-state: paused;
}

.hologram p {
    margin-top: 14px;
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    
    -moz-animation: loopingScroll 2500s linear infinite;
    -webkit-animation: loopingScroll 2500s linear infinite;
    animation: loopingScroll 2500s linear infinite;
}


  
  /* for Firefox */
@-moz-keyframes loopingScroll {
    from { -moz-transform: translateX(0%); }
    to { -moz-transform: translateX(-100%); }
}
  
  /* for Chrome */
@-webkit-keyframes loopingScroll {
    from { -webkit-transform: translateX(0%); }
    to { -webkit-transform: translateX(-100%); }
}
  
@keyframes loopingScroll {
    from {
      -moz-transform: translateX(0%);
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
    to {
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
}

.bottomHero .mainButton {
    background-color: rgba(255,220,193,1);
}

.bottomHero .mainButton:hover {
    background-color: rgb(255 198 154);
}