body {
  font-family: "Open Sans", sans-serif;
  color: #343a40;
  background: #fff;
}

a {
  color: #d9232d;
  text-decoration: none;
}

a:hover {
  color: #e24d55;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e03a3c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

#main{
  background: #fff !important;
}

section {
  padding-top: 130px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #E03A3C;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout .products {
  color: #444444;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 20px 30px 20px;
  border-radius: 4px;
}

.title-product hr{
  margin-top: 3px;
  margin-bottom: 20px;
}

.delete-checkout{
  color: #E03A3C;
  padding: 3px 8px;
  border: 2px solid #E03A3C;
  border-radius: 50px;
}
.delete-checkout:hover{
  background: #E03A3C;
  color: #fff;
}

.checkout .info-checkout{
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.info-checkout h4 {
  font-size: 42px;
  color: #009658;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.info-checkout h4 sup {
  font-size: 25px;
  top: -10px;
  left: -3px;
}

.info-checkout ul {
  padding: 0;
  list-style: none;
  line-height: 20px;
  font-size: 14px;
}

.info-checkout ul li {
  padding-bottom: 16px;
}

.info-checkout ul li i{
  color: #E03A3C;
}
.info-checkout ul li a{
  color: #E03A3C;
}
.info-checkout ul li a:hover{
  color: #009658;
}

.checkout-form input{
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.checkout-form input:focus{
  border-color: #E03A3C;
  box-shadow: none;
}

.checkout-form input {
  padding: 10px 15px;
}

.btn-save {
  padding: 8px 30px 9px 30px;
  color: #009658;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  border: 2px solid #009658;
  background: #fff;
}

.btn-save i {
  font-size: 16px;
  padding-right: 5px;
}

.btn-save:hover {
  background: #009658;
  color: #fff;
}