* {
  margin: 0;
  padding: 0;
}

:root {
  --color: #c3daf1;
}
.font-inter {
  font-family: "Inter", sans-serif;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.custom--container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.w-full {
  width: 100%;
}
.py-3 {
  padding: 2rem 0 4rem 0;
}
.pb-2 {
  padding-bottom: 1rem;
}
.border-y {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.border-b {
  border-bottom: 1px solid #eeeeee;
}
.border-t {
  border-top: 1px solid #d1d1d1;
}
/* start coding for header area  */
.header {
}
.header--alert {
  background-color: #003366;
  padding: 10px 16px;
}
.header--alert-body {
  display: flex;
  gap: 15px;
}
.header--alert p {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
.header--alert button {
  flex-shrink: 0;
  background: transparent;
  border: none;
}
.top--header {
  background: #f5f5f5;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
  padding: 15px 16px;
  display: none;
}
.top--header-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-direction: column;
}

@media (min-width: 1350px) {
  .top--header-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row;
  }
}

.top--header-left {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.top--header-left li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #535353;
}
.top--header-left li a {
  color: #535353;
  text-decoration: none;
}
.top--header-left li p {
  margin: 0;
}
.top--header-right {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
}
.top--header-right li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #383838;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.top--header-right li a strong {
  font-weight: 700;
  color: #900;
}
.header--main {
  padding: 15px 0;
  display: none;
}
.header--body {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header--body {
  flex-shrink: 0;
}
.search--area {
  display: flex;
  border: 1px solid #4f4f4f;
  border-radius: 5px;
}
.search--input {
  background: transparent;
  border: none;
  padding: 10px 15px;
}
.search--input:focus {
  outline: none;
  border: none;
}
.search--button {
  background: #990000;
  border-radius: 5px;
  width: 57px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}
.header--main-right {
  display: flex;
  gap: 20px;
  padding-left: 20px;
  align-items: center;
}
.header--main-right a {
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .header--main-right img {
    height: 50px;
  }
}
.customer--service {
  display: flex;
  gap: 15px;
  align-items: center;
}
.customer--text p {
  font-weight: 700;
  font-size: 13.901px;
  line-height: 17px;
  color: #000000;
  margin: 0;
  padding: 0;
}
.customer--text h3 {
  font-weight: 700;
  font-size: 21.8444px;
  line-height: 26px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  padding: 0;
}

.nav--menu {
  background: #000067;
  background: #003366;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
  padding: 20px 16px;
  display: none;
}

.nav--bar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 15px 20px; 
}
.nav--bar li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav--bar li a em {
  color: #ffda2d;
}

.mobile--header {
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
}
.mobile--header button {
  background: transparent;
  border: 1px solid #dadada;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
}
.mobile--header img {
  height: 40px;
}
.mobile--header .top--header-right img {
  height: 15px;
}
.mobile--header .top--header-right a {
  padding: 8px 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

@media (min-width: 991px) {
  .nav--menu,
  .top--header,
  .header--main {
    display: block;
  }
  .mobile--header {
    display: none;
  }
  .header--alert p {
    font-size: 16px;
  }
}
/* start coding for main area 
================================== */
.main--area .row {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .main--area .row {
    display: flex;
    flex-direction: column-reverse;
  }
}

.banner--area {
  padding: 1rem 0rem;
  background-image: url(../images/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.banner--subtitle {
  font-size: 20px;
  color: #000;
  line-height: 1.3;
  margin: 0;
}
.banner--title {
  font-size: 40px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  margin: 10px 0;
}
.banner--btn {
  padding: 10px 20px;
  background-color: #990000;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin: 20px 7px 25px 0;
}
@media (min-width: 600px) {
  .banner--title { 
    font-size: 58px;
    line-height: 1.1;
  }
  .banner--subtitle {
    font-size: 30px;
  }
  .banner--area {
    /*padding: 15rem 1rem 12rem 1rem;*/
  }
}
.text--container {
  max-width: 570px;
}

/* start coding for logo area */
.logo--area {
  background: #f5f5f5;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
  padding: 2rem 0 2.5rem 0;
}
.logo--area-main {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .logo--area-main {
    flex-direction: row;
  }
}
.left--area {
  display: flex;
  gap: 15px;
  align-items: center;
}
.left--area h3 {
  font-size: 35px;
  font-weight: 700;
  color: #003366;
  line-height: 0.8;
}
.left--area p {
  font-size: 25px;
  font-weight: 400;
  color: #003366;
  line-height: 0.8;
  text-align: right;
}
.right--area {
  display: flex;
  gap: 16px 30px;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.right--area img {
  mix-blend-mode: multiply;
}
@media (min-width: 1200px) {
  .right--area {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
  }
}
@media (max-width: 1600px) {
  .right--area .logo-1 {
    height: 70px;
  }
  .right--area .logo-2 {
    height: 45px;
  }
  .right--area .logo-3 {
    height: 45px;
  }
  .right--area .logo-4 {
    height: 45px;
  }
  .right--area .logo-5 {
    height: 45px;
  }
  .right--area .logo-6 {
    height: 45px;
  }
}

/* start coding for main area 
================================== */
.aside--left {
  padding: 3rem 0rem;
}
.aside--right {
  padding: 3rem 0rem;
}

@media (min-width: 768px) {
  .aside--left {
    padding: 2rem 3rem 2rem 0rem;
  }

  .aside--right {
    border-left: 1px solid #d0d0d0;
    padding: 2rem 0rem 2rem 3rem;
  }
}

.financing--available {
  background-image: url(../images/financial-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000067;
  padding: 2.5rem;
}
.financing--available h2 {
  font-size: 28px;
  color: white;
  font-weight: 700;
  margin: 0;
  margin-bottom: 10px;
}
.financing--available p {
  font-size: 17px;
  color: #eef6ff;
  padding-bottom: 10px;
}

.popular--category {
  padding: 3rem 0;
}
.spacial--product {
  display: none;
}
@media (min-width: 768px) {
  .spacial--product {
    display: block;
  }
}
.category--title {
  font-size: 25px;
  font-weight: 700;
  color: #003366;
  border-bottom: 1px solid #d1d1d1;
  line-height: 1.5;
  padding-bottom: 8px;
  margin: 0;
}
.list--items {
  list-style: none;
  margin: 0;
  margin-top: 10px;
}
.list--item {
  border-bottom: 1px solid #eeeeee;
  color: #152536;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  text-decoration: none;
  font-size: 17px;
}
.list--item:hover {
  text-decoration: none;
}

.commissions--area {
  padding: 3rem 0 4rem 0;
  background-image: url(../images/commission-bg.png);
  background-repeat: no-repeat;
  background-position: center 50px;
  background-color: #3a9bff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.commissions--area h2 {
  color: white;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
.commissions--area p {
  color: white;
  text-align: center;
  font-size: 22px;
}
.commissions--area img {
  padding: 0 1rem;
}
.commission--btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #990000;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 20px;
}
.commission--btn:hover {
  text-decoration: none;
  color: white;
  background-color: #cc0606;
}

.shipping--area {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d1d1d1;
}
.shipping--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 5px;
}
.shipping--header h2 {
  color: #003366;
  font-size: 25px;
  font-weight: 700;
}
.shipping--area h3 {
  color: #003366;
  font-size: 20px;
  font-weight: 500;
}
.shipping--area p {
  color: #7d7d7d;
  font-size: 15px;
}
.shipping--area a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #990000;
  text-decoration: none;
}
.shipping--area a:hover {
  text-decoration: underline;
}

.finance--equipment {
  padding: 2rem 0;
}
#finance-equipment .modal-body {
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  #finance-equipment .modal-body img {
    width: 100%;
  }
}
.service--repair {
  margin: 3rem 0;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
}

.service--repair h2 {
  color: #003366;
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 5px;
}

.service--repair p {
  color: #000;
  font-size: 22px;
  text-align: center;
}

.service--repair a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000067;
  text-decoration: none;
  margin-top: 2rem;
}

.service--repair img {
  mix-blend-mode: multiply;
}

.service--repair a:hover {
  text-decoration: underline;
}
.multi--year {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #d1d1d1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.multi--year h2 {
  color: #003366;
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 5px;
}

.affirm {
  padding: 3.5rem 0;
}

/* start coding for main content area  */

.featured--area {
  padding-bottom: 2rem;
}

@media (min-width: 600px) {
  .featured--area {
    padding-bottom: 2rem;
  }
}
.featured--area h2 {
  color: #003366;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 20px;
}
.featured--grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.featured--grid-item {
  background-color: #f5f5f5;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.featured--list .list--item {
  border-color: #d1d1d1;
}
.featured--header {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  align-items: center;
  min-height: 340px;
}
.featured--header img {
  mix-blend-mode: multiply;
}
.featured--header h2 {
  color: #242424;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
.featured--body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  align-items: flex-start;
}
@media (min-width: 1400px) {
  .featured--grid-item {
    padding: 3rem;
  }
}
@media (min-width: 991px) {
  .featured--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .featured--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top--selling {
  /*
  padding-top: 5rem;
  padding-bottom: 5rem;
  */
}
.top--selling-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 1rem;
  flex-direction: column;
}
.top--selling-header h2 {
  color: #003366;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.top--selling-header a {
  color: #000067;
  font-size: 15px;
}
.selling--grid-item {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 17px;
  padding: 1.5rem;
  position: relative;
}

.free--shipping {
  background: #ffc107;
  border-radius: 5px;
  font-size: 14px;
  color: #343a40;
  padding: 6px 12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.selling--header {
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.selling--header img {
  mix-blend-mode: multiply;
}
.selling--grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 991px) {
  .selling--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .selling--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.selling--body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.selling--body h2 {
  color: #242424;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.selling--body p {
  color: #242424;
  font-size: 15px;
}
.selling--body-start {
  display: flex;
  gap: 10px;
  align-items: center;
}
.selling--body-start {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 2rem;
}
.selling--body-start p {
  color: #000;
  font-size: 16px;
}
.selling--body-start p span {
  color: #990000;
  font-size: 22px;
  font-weight: 700;
}
.selling--body-start .selling--saving {
  background: #f8d7da;
  border: 1px solid rgba(153, 0, 0, 0.1);
  border-radius: 4px;
  color: #990000;
  font-size: 12px;
  padding: 6px 12px;
  flex-shrink: 0;
}

.selling--body a {
  color: #000067;
  font-size: 13px;
}

@media (min-width: 1380px) {
  .selling--grid-item {
    padding: 3rem;
    max-width: 300px;
  }
}
@media (min-width: 600px) {
  .top--selling-header {
    flex-direction: row;
  }
}

/* coding for slider device brands  */

.device--brands {
  padding: 1rem 0;
}
.device--brands h2 {
  font-size: 28px;
  font-weight: 700;
  color: #003366;
  text-align: center;
}
@media (min-width: 1280px) {
  .device--brands h2 {
    font-size: 40px;
  }
}
.brands--slider {
  position: relative;
  padding: 2rem 3rem;
}
@media (min-width: 600px) {
  .brands--slider {
    position: relative;
    padding: 1rem 6rem;
  }
}
.button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border: none;
  background: transparent;
}
.button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: none;
  background: transparent;
}

.b2b--purchase {
  padding: 2rem 0;
}
.b2b--purchase-sub {
  background: #000067;
  border-radius: 17px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.b2b--purchase-left {
  padding: 2rem;
  background-image: url(../images/b2b-purchase-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  width: 100%;
}

.b2b--lists-main {
  display: flex;
  gap: 0px;
  align-items: flex-start;
  flex-direction: column-reverse;
}
.b2b--purchase-left h2 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 2rem;
}
.b2b--purchase-left > p {
  color: white;
  font-size: 16px;
}
.b2b--lists-main {
  margin-top: 3rem;
}
.b2b--lists {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 2rem;
}
.b2b--lists li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.b2b--lists li svg {
  flex-shrink: 0;
}
.b2b--lists li p {
  font-size: 16px;
  color: white;
  margin: 0;
}
.lists--link {
  background: #990000;
  border-radius: 5.12821px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  display: inline-block;
}
.lists--link:hover {
  text-decoration: none;
  background: #ad0505;
  color: white;
}
.b2b--right img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 480px) {
  .b2b--lists-main {
    flex-direction: row;
    gap: 20px;
  }
  .b2b--lists {
    margin-bottom: 4rem;
  }
}
@media (min-width: 991px) {
  .b2b--purchase-sub {
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .b2b--purchase-left {
    padding: 2rem;
  }
  .b2b--purchase-left h2 {
    font-size: 40px;
  }
  .b2b--purchase-left > p {
    font-size: 25px;
  }
  .b2b--lists-main {
    gap: 60px;
  }
  .lists--link {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .b2b--lists li p {
    font-size: 21px;
  }
  .b2b--purchase-left h2 {
    font-size: 50px;
  }
  .b2b--right img {
    width: auto;
  }
}

/* start coding for vendors  */

.vendors--area {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}
.vendors--sub {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #bbbbbb;
  align-items: center;
}
.vendors--sub h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #003366;
  margin: 0;
}
.vendors--divide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1200px) {
  .vendors--area {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
  .vendors--divide {
    gap: 3rem;
  }
}

/* start coding for latest entries  */
.latest--entries {
  background: #f9f9f9;
  padding: 2rem;
}
.latest--entries-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  flex-direction: column;
}
.latest--entries-header h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 44px;
  color: #003366;
  text-align: center;
}
.latest--entries-link {
  margin-top: 3rem;
  display: inline-block;
}
.latest--entries-list li a {
  padding: 1rem 0;
  gap: 2rem;
  font-weight:600;
}
.latest--entries-list li a svg {
  flex-shrink: 0;
}
.latest--entries-list li:last-child a {
  border-bottom: none;
}
.latest--entries-desktop {
  display: none;
}
.latest--entries-mobile {
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .latest--entries-header {
    flex-direction: row;
    gap: 3rem;
  }
  .latest--entries-header h2 {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .latest--entries-desktop {
    display: block;
  }
  .latest--entries-mobile {
    display: none;
  }
  .vendors--area {
    padding: 1rem 0;
  }
}
@media (min-width: 1200px) {
  .latest--entries {
    padding: 2rem;
  }
  .latest--entries-header h2 {
    font-size: 36px;
  }
}

/* start coding for footer area  */

.footer {
  background: #003366;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.1);
  border-top: solid 15px #3b8bea;
}
.footer--nav {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding-bottom: 20px;
  padding-top: 20px;
}
.footer--nav-item {
  padding: 10px 16px;
  text-align: center;
}
.footer--nav-item:last-child {
  border-right: none;
}
.footer--nav-item h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer--nav-item ul {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 3px;
}
.footer--nav-item ul li a {
  font-weight: 400;
  font-size: 17px;
  line-height: 35px;
  color: #ffffff;
  text-decoration: none;
}

.footer--bottom {
  border-top: 1px solid #FFF;
  padding-top: 10px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.shop-securely {
  order: 1;
}
.payment {
  order: 2;
}
.footer--bottom-text {
  order: 3;
}
.shop-securely,
.payment {
  text-align: center;
}
.footer--bottom h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer--bottom-text h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
}
.footer--bottom-text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #ffffff;
}
.footer--bottom img {
  height: 50px;
}
@media (min-width: 600px) {
  .footer--nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 40px;
    padding-top: 40px;
  }
  .footer--nav-item {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer--bottom h2 {
    font-size: 20px;
  }
  .footer--bottom-text {
    padding-top: 60px;
  }
  .footer--bottom-text h3 {
    font-size: 20px;
  }
  .footer--nav {
    display: flex;
    padding-bottom: 0;
    justify-content: space-between;
  }

  .footer--nav-item {
    padding: 40px 15px 40px 15px;
  }

  .footer--bottom {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
  .shop-securely {
    order: 1;
  }
  .payment {
    order: 3;
  }
  .footer--bottom-text {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .footer--nav-item {
    padding: 80px 40px 60px 40px;
  }
  .footer--nav-item h2 {
    font-size: 22px;
  }
}

@media (min-width: 1400px) {
  .footer--nav {
    padding: 0 50px;
  }
  .footer--nav-item {
    padding: 40px 60px 40px 60px;
  }
}
