.modal-header-wrapper {
    background-color: #212529;
    border-bottom: 4px solid #3c9bda;
}
.modal-header {
    position: relative;
    border: none;
    height: 79px;
    background-image: url("https://www.gtsromania.ro/img/logo-1668957924.jpg");
    background-repeat: no-repeat;
    background-size: auto 59px;
    background-position: 0.75rem;
}

.modal-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.modal-body {
    background:linear-gradient(180deg,#cdcdcd,#fff 95%)
}

.content {
    background-color: #f4f4f4;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.container-scroll::-webkit-scrollbar {
    display: none;
}
.container-scroll {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

.container-scroll> div{
    scroll-snap-align: center;
    scroll-snap-stop: always;
}
.full-screen::-webkit-scrollbar {
    display: none;
}
.full-screen {
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

.full-screen.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 23.9%));
    grid-gap: 15px;
    justify-content: center;
    padding: initial;
    overflow-y: scroll;
}
.full-screen img {
    height: 100%;
    width: auto;
}
.full-screen:nth-child(2) {
    margin-top: 16px;
}
.arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    -webkit-animation: bounce .6s ease infinite alternate;;
}
.item {
    height: 175px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
}
.item h2 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 1.5rem;
    height: auto;
}
.item p {
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 900;
    color: #474747;
}

@-webkit-keyframes bounce {
    0% {
        
    }
    100% {
      transform:translateY(-10px);
    }
  }