* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

:root {
  --primary-color: #fb2e86;
  --main-font: "Lato", sans-serif;
}

.btn {
  border: none;
  color: #ffffff;
  padding: 16px 40px;
  outline: border;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-success {
  background-color: #08d15f;
}

.d-flex {
  display: flex;
}

.bg-primary {
  background-color: #007bff;
}

.bg-danger {
  background-color: #dc3545;
}

.bg-success {
  background-color: #28a745;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.p-1 {
  padding: 5px;
}

.p-2 {
  padding: 10px;
}

.p-3 {
  padding: 15px;
}

.p-4 {
  padding: 20px;
}

.p-5 {
  padding: 25px;
}

.pt-1 {
  padding-top: 5px;
}

.pt-2 {
  padding-top: 10px;
}

.pt-3 {
  padding-top: 15px;
}

.pt-4 {
  padding-top: 20px;
}

.pt-5 {
  padding-top: 25px;
}

.pt-6 {
  padding-top: 30px;
}

.pt-7 {
  padding-top: 35px;
}

.pb-1 {
  padding-bottom: 5px;
}

.pb-2 {
  padding-bottom: 10px;
}

.pb-3 {
  padding-bottom: 15px;
}

.pb-4 {
  padding-bottom: 20px;
}

.pb-5 {
  padding-bottom: 25px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-baseline {
  align-items: baseline;
}

.align-stretch {
  align-items: stretch;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media screen and (max-width: 1400px) {
  .container {
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 992px) {
  .container {
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: calc(100% - 40px);
  }
}

.gap-1 {
  gap: 5px;
}

.gap-2 {
  gap: 10px;
}

.gap-3 {
  gap: 15px;
}

.gap-4 {
  gap: 20px;
}

.gap-5 {
  gap: 25px;
}

.gap-6 {
  gap: 30px;
}

.gap-7 {
  gap: 35px;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-auto {
  z-index: auto;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.container {
  width: calc(100% - 320px);
  margin: 0 auto;
}

.text-white {
  color: #ffffff;
}

.text-primary {
  color: var(--primary-color);
}

.text-dark {
  color: #000000;
}