*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
  
.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body {
	padding-top: 3rem;
	padding-bottom: 3rem;
	color: #5a5a5a;
	background-color: #cce3ff;
}


/*header*/
.navbar{
	background-color: #005aba;
}

.nav-link a{
	color: white;
}

.nav-link.cart {
	position: relative;
	display: block;
}

#cart-logo{
	padding: 12px 20px; 
	display: inline-block; 
	width: 100px;
	height: 100px;
	margin: 0 20px;
	align-items: center;
	justify-content: center;
}

.cart-container {
	position: relative;
	display: none;
}

#cart-list{
	margin-bottom: auto;
	height: 80vh;
	overflow-y: auto;
}

.sidebar-cart {
	position: fixed;
	top: 0;
	right: 0; 
	width: 25%; 
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh; 
	background-color: #f0f0f0;
	padding: 20px;
	border: 1px solid #ddd;
	transform: translateX(100%); 
	transition: transform 0.5s; 
	overflow-y: hidden;
}

.sidebar-cart.show {
	transform: translateX(0); 
}

.sidebar-cart ul {
	list-style: none;
	padding: 0;
	display: none; 
}

.sidebar-cart ul.show {
	display: block; 
}

.sidebar-cart li {
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

.sidebar-cart h3{
	border-bottom: 5px solid #ccc;
}

.cart-button {
	width: 100%;
	padding: 10px;
	margin-top: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	background-color: #28a745;
	color: white;
}

.cart-option-button {
	background-color: #dc3545;
	color: white;
	border: none;
	padding: 3px 10px;
	border-radius: 5px;
	cursor: pointer;
}

.open-cart-button {
	background-color: #005aba;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.open-cart-button:hover{
	transform: scale(1.1);
}

.cart-count {
	position: absolute;
	top: 15%;
	right: 27%;
	background-color: #dc3545;
	color: white;
	border-radius: 50%;
	padding: 2px 5px;
	font-size: 12px;
}

.items {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.item-container {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	width: 100%;
}

.item-container div {
	margin-right: 10px;
}

.button-container {
	display: flex;
	justify-content: space-between;
	height: 50px;
}

.button-container button {
	margin-right: 10px;
}

.cart-product-image{
	width: 60px;
	margin-right: 5px;
}

.item-description-container{
	width: 100%;
}

#marketing-logo{
	width: 100%;
	height: 75px;
}

.header-cart-text {
	display: block !important; 
}

.cart-badge {
	position: absolute;
	bottom: 2.5%;
	right: 5%;
	transform: translate(50%, -50%);
	font-size: 12px;
	background-color: red;
	color: white; 
	padding: 2px 5px;
	border-radius: 50%;
	z-index: 1; 
}

/*history of the company text/paragraphs */
#history{
	padding: 125px 50px 10px 50px;
}

#history-header{
    font-size: 50px;
    margin-bottom: 50px;
}

.paragraphs, .first-paragraph{
    font-size: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.first-paragraph{
    text-indent: 50px;
}

/*mission-vision*/
#mission-vision{
	padding: 10px 50px 100px 50px;
}
#mission-vision-header{
    margin: 50px 0;
    font-size: 50px;
}

.bottom-redirectory{
    height: auto;
    display: flex;
    align-items: center;
    padding: 0 0 50px 50px;
}

/*footer*/
footer{
    border-top: 3px solid black;
    margin-left: 20px;
    height: 75px; 
    padding: 10px;
    display: flex;
    align-items: center; 
}
  
#footer-logo{
    width: auto;
    height: 70px;
}
  
.contact-info-container{
    margin-left: 20px; 
    margin-top: 20px;
}
  
.contact-info{
    font-size: 12px; 
    margin: 0; 
}


/*responsive*/
@media (min-width: 768px) {
	.bd-placeholder-img-lg {
	  font-size: 3.5rem;
	}
	.nav-link.cart{
		display: none;
	}
	.cart-badge {
		display: none;
	}
	.cart-container {
		display: block;
	}
	.cart-text{
		display: none !important;
	}
	.contact-info-container{
  	margin-left: 20px; 
  	margin-bottom: 0;
    }
}