
/* payments */
.footer-section .payments{
  padding: 40px 0;
  background-color: white;
}

.footer-section .payments .grid,.footer-section .delivery .grid{
  display: flex;
   gap: 80px;
}

.footer-section .payments .grid .title,.footer-section .delivery .grid .title{
  border-left: 1px solid #C62127;
	padding: 0 20px;
	max-width: 273px; 
  display: flex;
  align-items: center;
}

.footer-section .payments .grid .desc,.footer-section .delivery .grid .desc{
  margin-top: 10px;
	color: #4D4949;
	font-size: 14px;
	font-weight: 400;
	line-height: 120%;
}

.footer-section .payments .grid .logosCont{
  flex: 1;
}

.footer-section .payments .grid .logosCont .heading{
  color: #4D4949;
  font-size: 12px;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer-section .payments .grid .logosCont .logos{
	display: flex;
	gap: 17px;
}

.footer-section .payments .grid .logosCont .logos .logo{
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid #EAEAEA;
  flex: 1;
	text-align: center;
}

.footer-section .payments .grid .logosCont .logos .logo p{
  text-align: left;
  color: #848484;
  font-size: 11px;
  line-height: 120%;
  font-weight: 400;
}

.footer-section .delivery{
	background-color: #EAEAEA;
	padding: 40px 0;
}

.footer-section .delivery .grid p{
	margin: 0;
	color: black;
	font-size: 18px;
	font-weight: 400;
	line-height: 120%;
}

.footer-section .delivery .grid .deliver .logo{
	display: flex;
	gap: 20px;
}

.footer-section .delivery .grid .deliver .logo .img{
	background: white;
	width: 120px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	height: 60px;
}

.footer-section .delivery .grid .deliver .logo .text{
	border-bottom: 1px solid #D9D9D9;
	padding-top: 4px;
}

.footer-section .delivery .grid .deliver .logo .text .heading{
	color: black;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 4px;
}

.footer-section .delivery .grid .deliver .logo .text .heading2{
	color: #4D4949;
	font-size: 14px;
	line-height: 120%;
	font-weight: 400;
}

.footer-section .delivery .grid .deliver .content{
	margin-top: 15px;
	color: #4D4949;
	font-size: 14px;
	line-height: 120%;
	font-weight: 400;	
}

.footer-section .delivery .grid .deliver .content span{
	background: white;
	padding: 4px 6px;
	border-radius: 4px;
	margin: 0 3px;
	color: black;
	font-size: 14px;
	font-weight: 600;
}

@media(max-width:992px){
  .footer-section .payments .grid{
    flex-direction: column;
    gap: 40px;
  }

  .footer-section .delivery .grid{
	flex-wrap: wrap;
	gap: 40px;
  }

  .footer-section .payments .grid .logosCont .logos{
    flex-wrap: wrap;
  }

  .footer-section .payments .grid .logosCont .logos .logo{
    width: 130px;
    flex: initial;
  }

  .footer-section .payments .grid .title,.footer-section .delivery .grid .title{
    max-width: 100%;
  }
}