
body {
   background: #00eeff;/* linear-gradient(90deg, #00eeff 0%, #ffffff 100%); */
}

section .btn:hover {
    transform: scale(1.1);
    transition: all  50ms linear;
}

.body-container {
    margin-top: 5rem;
}

.left-panel {
    position: fixed ;
    height: 100%;
    top: 4.5rem;
    width: 17%;

    color: white;
    z-index: 1;
    border-top: 10px solid;
    border-right: 10px solid;
    border-color: rgb(66, 66, 66);
}

.text-panel {
    padding: 10px;
    padding-left: 15px;
    font-size: larger;
}

.left-panel>.fill-image>img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.right-panel {
    position: fixed;
    right: 0;
    height: 100%;
    top: 4.5rem;
    width: 17%;
    color: white;
    z-index: 1;
    border-top: 10px solid;
    border-left: 10px solid;
    border-color: rgb(66, 66, 66);
 
}

.right-panel a {
    margin-inline: 6%;
    height: 130px;
    display: block;
    align-content: center;  
    font-size: 100%;
    font-weight: 900;
    
    margin-block: 2%;
    border-radius: 15px;
}

.right-panel .btn {
    padding: 8px;
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
      max-width: 1480px;
    }
  }


.space-between-introductoryblock h2 {
    border-bottom: 1px solid;
}

.product-conteiner {
    top: 10em;
    margin-inline: 18%;
    padding: 1px;
}

.product-conteiner>.conteiner-fluid {
    border: 1px solid;
    margin-top: 1em;
    border-radius: 15px;
    padding: 0px;
    padding-right: 5px;
}

.product-conteiner>.conteiner-fluid>.row {
   padding: 10px;
}

.btn-primary {
    background-color: rgb(0, 0, 220);
}

.btn-primary:hover {
    background-color: blue;
}

.product-conteiner .row {
   padding-left: 5px;
}

.product-conteiner .card {
    margin-block: 20px;
}

.card>img {
    height: 15rem;
    animation: approach 0.3s ease 0s 1 normal reverse;
}

.card>img:hover {
    animation: approach 0.5s ease 0s 1 normal forwards;
}
.card>img:not(:hover) {
    animation: approach 0.5s ease 0s 1 normal reverse;
}


.card-text {
    max-width: 100%;
    
    height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row .card>.card-body>.card-title {
    max-height: 4rem;;
    font-size: clamp(1vh, 130%, 3vh);
    margin-block: 20px;
}


@keyframes approach {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.05);
	}
}

.card-title {
   font-size: 100%;
}

.price {
    display: inline-block;
    text-align: right;
    font-size: 20px;
    font-weight: 500;
    margin-left: 5px;
  
    transform: translateY(4px);
   
}

@media (max-width: 990px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        display: none;
    }

    .product-conteiner {
        margin-inline: 5px;
    }

    .product-conteiner col-12 {
        justify-items: center;
    }
}