/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*---------------------Fonts-----------------*/
/*---------------------Roots-----------------*/

:root {
  ---yellow: #c29b22;
  ---white: #ffffff;
  ---Background: #000000;
  ---black: #222222;
  ---border: #e5e5e5;
}




.footer {
  background-color: var(---Background);
  color: var(---white);
  border-top: 1px solid #ffffff34;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: auto;
  margin-top: 30px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-section h4 {
  font-size: 30px;
  color: var(---white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-section p,
.footer-section li {
  font-size: 16px;
  color: var(---white);
  line-height: 40px;
  font-weight: 500;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.payments img,
.security-img {

  margin-right: 10px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom a {
  color: var(---white);
  margin: 0 10px;
  font-size: 16px;
}

.footer-bottom a:hover {
  color: var(---yellow);
}






@media (max-width:800px) {

  .footer-section p,
  .footer-section li {
    font-size: 14px;
    color: var(---white);
    line-height: 35px;
  }
}


@media (max-width:450px) {
.footer-bottom a {
  font-size: 12px;
  line-height: 30px;
}

.footer-logo {
  width: 90px;
  margin-bottom: 2   0px;
}

}