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

html {
  /* font-size: 13px */
  /* 13px / 16px = 0.8125 = 81.25% */
  font-size: 81.25%;
}

.tracking__container {
  width: 100%;
  margin-bottom: 4rem;

  display: flex;
  justify-content: center;
}

.tracking__container__content {
  width: 100%;
  max-width: 50%;
  margin-left: 4rem;

  display: flex;
  flex-direction: column;
}

.tracking__container__content > li {
  padding: 1.2rem 1rem;
  font-size: 1.2rem;
  padding-left: 1.3rem;
  border: .1rem solid #ccc;
  
  display: flex;
          align-items: center;
}

.tracking__container__content > li > span {
        display: inline-block;
        max-width: 60%;
        line-height: 2rem;
        padding-left: 1rem;
        border-left: .1rem solid #ccc;
}

.tracking__container__content > li > b {
  margin-right: 1rem;
  color: #686868;
  /*border-right: .1rem solid #ccc;*/
}

.tracking__container__content > li:first-child {
  border-top-right-radius: .6rem;
  border-top-left-radius: .6rem;
}

.tracking__container__content > li:last-child {
  border-bottom-right-radius: .6rem;
  border-bottom-left-radius: .6rem;
}

.tracking__container__content > li:not(first-child) {
  border-bottom: transparent;
}

.tracking__container__content > li:last-child {
  border-bottom: .1rem solid #ccc;
}

@media screen and (max-width: 700px) {
  .tracking__container__content {
    max-width: 75%;
  }
}

@media screen and (max-width: 500px) {
  .tracking__container__content {
    max-width: 90%;
    margin-left: 0 !important;
  }

  .tracking__container__content > li {
    font-size: 1.3rem;
  }
}

@media (max-width: 1200px) {
  html {
    /* font-size: 13px */
    /* 12px / 16px = 0.75 = 75% */
    font-size: 75%;
  }
}
@media (max-width: 600px) {
  html {
    /* font-size: 10px */
    /* 10px / 16px = 0.65 = 65% */
    font-size: 65%;
  }
}
@media (max-width: 425px) {
  html {
    /* font-size: 8px */
    /* 8px / 16px = 0.5 = 50% */
    font-size: 50%;
  }
}
body {
  font-family: "Open sans", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behaviour: smooth;
  color: #343a40;
  line-height: 1;
}

::selection {
  background: #74c0fc;
  color: white;
}

/* Elements */
a:link,
a:visited {
  text-decoration: none;
}

a:active,
a:focus {
  color: #a8c3f3;
}

ul {
  list-style: none;
}

.hide {
  display: none !important;
}

.d-flex {
  display: flex;
}

.d-j-cnt {
  justify-content: center;
}

.d-j-sbtw {
  justify-content: space-between;
}

.d-j-end {
  justify-self: end;
}

.d-a-cnt {
  align-items: center;
}

.d-a-end {
  align-items: end;
}

.d-fd-column {
  flex-direction: column;
}

/* img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

#nav-logo {
  height: 4rem !important;
  object-fit: cover;
}

.heading-1 {
  font-size: 5.2rem;
  font-weight: 800;
}
@media (max-width: 1240px) {
  .heading-1 {
    font-size: 5rem;
  }
}
@media (max-width: 1100px) {
  .heading-1 {
    font-size: 4.7rem;
  }
}

.heading-2 {
  font-size: 3.692rem;
  font-weight: 700;
}

.heading-3 {
  font-size: 3.692em;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .heading-3 {
    font-size: 3.385rem;
  }
}
@media (max-width: 900px) {
  .heading-3 {
    font-size: 2.875rem;
  }
}
@media (max-width: 600px) {
  .heading-3 {
    font-size: 2.462rem;
  }
}

.heading-4 {
  font-size: 1.538rem;
  font-weight: 600;
}
@media (max-width: 425px) {
  .heading-4 {
    font-size: 1.846rem;
  }
}
@media (max-width: 375px) {
  .heading-4 {
    font-size: 2rem;
  }
}

.heading-5 {
  font-size: 2.875rem;
  font-weight: 600;
}

.sub-heading {
  font-size: 1.231rem;
  color: #495057;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .sub-heading {
    font-size: 1.385rem;
  }
}
@media (max-width: 425px) {
  .sub-heading {
    font-size: 1.6rem;
  }
}
@media (max-width: 320px) {
  .sub-heading {
    font-size: 1.6rem;
  }
}

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

.text-primary {
  background: linear-gradient(to top right, #228be6, #1FA2FF);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  gap: 0.308rem;
}

.center {
  margin: 0 auto;
}

.form-group {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.form-group svg {
  position: absolute;
  font-size: 1.2rem;
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media (max-width: 425px) {
  .form-group {
    gap: 1rem;
  }
  .form-group svg {
    font-size: 1.7rem;
  }
}
.form-label {
  font-size: 1.1rem;
  color: #62676C;
  letter-spacing: 0.02rem;
  gap: 0.615rem;
  user-select: none;
}
@media (max-width: 600px) {
  .form-label {
    font-size: 1.23rem;
  }
}
@media (max-width: 425px) {
  .form-label {
    font-size: 1.45rem;
  }
}
@media (max-width: 375px) {
  .form-label {
    font-size: 1.55rem;
  }
}
.form-input {
  width: 100%;
  min-width: 0px;
  height: 3.2rem;
  background: transparent;
  border: 1px solid #ced4da;
  border-radius: 0.4rem;
  color: #62676C;
  padding: 1rem 1.231rem;
  font-size: 1.15rem;
  font-family: inherit;
  transition: all 0.3s ease-in-out;
}
.form-input[aria-invalid=true], .form-input[aria-invalid=true]:focus, .form-input.invalid {
  outline-color: #ff6b6b;
  border-color: #ff6b6b;
  box-shadow: 0 0 1px var(--accent);
}
.form-input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.form-input#password-input {
  padding-right: 3rem;
}
@media (max-width: 425px) {
  .form-input#password-input {
    padding-right: 4rem;
  }
}
.form-input[type=time]:focus, .form-input[type=time]:hover, .form-input[type=date]:focus, .form-input[type=date]:hover {
  cursor: pointer;
}
.form-input::placeholder {
  font-size: 1.077rem;
  color: rgba(98, 103, 108, 0.8901960784);
}
.form-input:focus {
  outline: 1.5px solid #87b0ef;
  border: 1.5px solid #adb5bd;
  box-shadow: 0 0 1px #87b0ef;
}
.form-input:hover {
  border-color: #adb5bd;
}
@media (max-width: 900px) {
  .form-input {
    height: 3.3rem;
    border-radius: 0.24rem;
  }
}
@media (max-width: 600px) {
  .form-input {
    height: 3.7rem;
    font-size: 1.25rem;
  }
  .form-input::placeholder {
    font-size: 1.231rem;
  }
}
@media (max-width: 425px) {
  .form-input {
    height: 4.3rem;
    font-size: 1.52rem;
  }
  .form-input::placeholder {
    font-size: 1.538rem;
  }
}
@media (max-width: 375px) {
  .form-input {
    height: 4.5rem;
    font-size: 1.55rem;
  }
}
.form-error {
  font-size: 1rem;
  color: red;
}
.form-error.none {
  display: none;
}
@media (max-width: 600px) {
  .form-error {
    font-size: 1.13rem;
  }
}
@media (max-width: 425px) {
  .form-error {
    font-size: 1.35rem;
  }
}
@media (max-width: 375px) {
  .form-error {
    font-size: 1.45rem;
  }
}

.btn {
  width: max-content;
  padding: 0.923rem 1.846rem;
  border-radius: 0.3rem;
  font-family: inherit;
  font-size: 1.077rem;
  border: none;
  transition: all 0.15s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.btn:hover, .btn:focus {
  cursor: pointer;
}
.btn svg {
  font-size: 1.231rem;
}
.btn-disabled {
  overflow: hidden;
  opacity: 0.85;
  pointer-events: none;
}
.btn-disabled:hover, .btn-disabled:focus {
  cursor: not-allowed;
}
.btn-primary {
  background: linear-gradient(to right, #228be6, #1FA2FF) !important;
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.95;
}
.btn-accent {
  background: #ff6b6b;
  color: #fff;
}
.btn-accent:hover {
  background: #fa5252;
}
.btn-dark {
  background: #000;
  color: #fff;
}
.btn-border-primary {
  border: 1px solid #228be6;
  color: #228be6;
}
.btn-border-primary:hover {
  background: #228be6;
  color: #fff;
}
.btn-border-grey {
  border: 1px solid #adb5bd;
  color: #000;
}
.btn-border-grey:hover {
  border-color: #E0E0E0;
}
.btn-border-grey:focus {
  outline: 2px solid #87b0ef;
  border-color: 1.5px solid #868e96;
  box-shadow: 0 0 1px #87b0ef;
}
@media (max-width: 425px) {
  .btn {
    font-size: 1.43rem;
    padding: 1.1rem 1.6rem;
  }
  .btn svg {
    font-size: 1.6rem;
  }
}
@media (max-width: 375px) {
  .btn {
    font-size: 1.4rem;
    padding: 1.1rem 1.7rem;
  }
}

.header__info {
  padding: 0.923rem 5rem;
  background: rgb(33, 33, 33);
}
@media (max-width: 1100px) {
  .header__info {
    padding: 0.7rem 1.87rem;
  }
}
@media (max-width: 768px) {
  .header__info {
    display: none !important;
  }
}
.header__info__contacts {
  color: #fff;
  gap: 1.846rem;
}
@media (max-width: 1100px) {
  .header__info__contacts {
    gap: 1.5rem;
  }
}
.header__info__contact {
  font-size: 1.12rem;
  gap: 0.923rem;
}
.header__info__contact svg {
  font-size: 1.231rem;
  color: #228be6;
}
@media (max-width: 1100px) {
  .header__info__contact {
    font-size: 1.08rem;
  }
  .header__info__contact svg {
    font-size: 1.12rem;
  }
}
@media (max-width: 1024px) {
  .header__info__contact {
    font-size: 1rem;
  }
}
@media (max-width: 1100px) {
  .header__info__links button {
    padding: 0.6rem 1rem;
  }
}

.navigation {
  width: 100%;
  background: rgba(243, 243, 243, 0.431372549);
  transition: background 0.3s ease-in;
}
.navigation.show-bg {
  background: red;
  padding: 0.6rem 0;
  z-index: 10;
}
@media (max-width: 425px) {
  .navigation {
    display: none !important;
  }
}
.navigation__wrapper {
  width: 90vw;
  padding: 0.8rem 1.2rem;
}
.navigation__logo {
  height: 5rem;
}
.navigation__features {
  gap: 2.462rem;
}
.navigation__features > button {
  font-size: 1.03rem;
}
.navigation__items {
  position: relative;
  gap: 2.462rem;
  list-style: none;
}
@media (max-width: 1024px) {
  .navigation__items {
    gap: 1.846rem;
  }
}
@media (max-width: 1024px) {
  .navigation__items {
    gap: 1.5rem;
  }
}
@media (max-width: 425px) {
  .navigation__list {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.navigation__link {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #62676C;
  padding: 0.2rem 0;
  position: relative;
  transition: color 0.2s ease;
}
.navigation__link:hover {
  color: rgba(98, 103, 108, 0.8901960784);
}
.navigation__link.active {
  color: #228be6;
  border-bottom: 2px solid #228be6;
}
.navigation__link::after {
  content: "";
  position: absolute;
  bottom: -12%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #343a40;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  will-change: transform;
  transition: transform 0.3s ease;
}
.navigation__link:hover::after {
  transform: translateY(-50%) scaleX(1);
}
@media (max-width: 1024px) {
  .navigation__link {
    font-size: 0.923rem;
  }
}
@media (max-width: 425px) {
  .navigation__link {
    font-size: 1.385rem;
  }
}

.mobile__navigation {
  width: 100%;
  background: rgba(243, 243, 243, 0.431372549);
  transition: background 0.3s ease-in;
  padding: 0.7rem 1.846rem;
  display: none;
}
@media (max-width: 425px) {
  .mobile__navigation {
    display: flex;
  }
}
.mobile__navigation__logo {
  height: 3.5rem;
}
@media (max-width: 425px) {
  .mobile__navigation__logo {
    height: 6rem;
  }
}

.offset {
  width: 50vw;
  height: 100vh;
  padding: 1.231rem 3rem;
  position: fixed;
  top: 0;
  left: -50rem;
  box-shadow: 0 0.8px 1rem rgba(0, 0, 0, 0.01);
  background: #fff;
  will-change: left;
  transition: left 0.3s ease;
  z-index: 1500;
}
.offset.open {
  left: 0;
}
.offset button {
  position: absolute;
  top: 3.5%;
  right: 5%;
}
@media (max-width: 600px) {
  .offset {
    width: 55vw;
  }
}
@media (max-width: 425px) {
  .offset {
    width: 70vw;
    padding: 1.231rem 2rem;
  }
}
@media (max-width: 375px) {
  .offset {
    width: 75vw;
  }
}
@media (max-width: 320px) {
  .offset {
    width: 85vw;
  }
}
@media (max-width: 300px) {
  .offset {
    width: 90vw;
  }
}
.offset__items {
  gap: 1.3rem;
  margin-top: 3.692rem;
}
@media (max-width: 425px) {
  .offset__items {
    margin-top: 7.6rem;
  }
}

.hamburger svg {
  font-size: 1.7rem;
  color: #343a40;
}
@media (max-width: 425px) {
  .hamburger svg {
    font-size: 2rem;
  }
}

.tracker__search__form {
  width: 39.5vw;
  background: #fff;
  padding: 0.7rem;
  box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
  display: grid;
  grid-template-columns: 1fr max-content;
  align-content: center;
  gap: 0.15rem;
}
.tracker__search__form input {
  background: #fff;
  border: none;
}
.tracker__search__form input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.tracker__search__form > button {
  border-radius: 0.4rem;
}
@media (max-width: 1100px) {
  .tracker__search__form {
    font-size: var(--text-size-xs);
  }
}
@media (max-width: 1024px) {
  .tracker__search__form {
    width: 45vw;
  }
}
@media (max-width: 900px) {
  .tracker__search__form {
    width: 50vw;
  }
}
@media (max-width: 768px) {
  .tracker__search__form {
    width: 60vw;
  }
}
@media (max-width: 600px) {
  .tracker__search__form {
    width: 70vw;
  }
}
@media (max-width: 425px) {
  .tracker__search__form {
    width: 84vw;
  }
}
@media (max-width: 375px) {
  .tracker__search__form {
    width: 90vw;
  }
}

.feature-box {
  gap: 1.4rem;
  border-radius: 0.3rem;
  position: relative;
  padding: 2rem 1rem;
  padding-top: 5rem;
}
@media (max-width: 1100px) {
  .feature-box {
    padding-top: 0;
  }
}
@media (max-width: 900px) {
  .feature-box {
    text-align: center;
  }
}
@media (max-width: 425px) {
  .feature-box {
    padding: 0 var(--spc-64);
  }
}
@media (max-width: 320px) {
  .feature-box {
    padding: 0 var(--spc-16);
  }
}
.feature-box-icon {
  font-size: 5.2rem;
  color: #228be6;
  justify-content: flex-start;
  margin-bottom: 1.231rem;
}
@media (max-width: 900px) {
  .feature-box-icon {
    justify-content: center;
  }
}
.feature-box-content {
  gap: 1.231rem;
}
.feature-box-title {
  font-size: 1.18rem;
  line-height: 1.6;
  color: #495057;
}
@media (max-width: 425px) {
  .feature-box-title {
    font-size: 1.5rem;
  }
}

.stats {
  padding: 3.692rem;
  background: linear-gradient(to top right, #228be6, #1FA2FF);
  color: #fff;
  border-radius: 0.3rem;
}
@media (max-width: 375px) {
  .stats {
    padding: 6.154rem 4.923rem;
  }
}
.stats__item {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 6.154rem;
}
@media (max-width: 900px) {
  .stats__item {
    gap: 7.6rem;
  }
}
@media (max-width: 600px) {
  .stats__item {
    gap: 5rem;
  }
}
@media (max-width: 425px) {
  .stats__item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 375px) {
  .stats__item {
    grid-template-columns: 1fr;
  }
}
.stats__detail {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.846rem;
}
.stats__detail .icon {
  font-size: 3rem;
}
.stats__detail h3 {
  margin-bottom: 0.615rem;
}
@media (max-width: 900px) {
  .stats__detail {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.231rem;
  }
}
@media (max-width: 425px) {
  .stats__detail h3 {
    font-size: 3.692em;
    margin-bottom: 1rem;
  }
}
@media (max-width: 375px) {
  .stats__detail .icon {
    font-size: 4rem;
  }
}
.stats__detail__content {
  grid-column: 2/-1;
}
@media (max-width: 900px) {
  .stats__detail__content {
    grid-column: 1/-1;
    text-align: center;
  }
}
.stats__detail__paragraph {
  font-size: 1.077rem;
}
@media (max-width: 600px) {
  .stats__detail__paragraph {
    font-size: 1.1rem;
  }
}
@media (max-width: 425px) {
  .stats__detail__paragraph {
    font-size: 1.35rem;
  }
}
@media (max-width: 375px) {
  .stats__detail__paragraph {
    font-size: 1.45rem;
  }
}

.dashboard__navigation {
  padding: 0.7rem 1.846rem;
  grid-column: 1/-1;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 600px) {
  .dashboard__navigation {
    padding: 1rem 3.692rem;
  }
}
@media (max-width: 320px) {
  .dashboard__navigation {
    padding: 1rem 1.846rem;
  }
}
@media (min-width: 900px) {
  .dashboard__navigation .hamburger,
.dashboard__navigation .offset {
    display: none;
  }
}
.dashboard__navigation__logo {
  width: 4%;
}
@media (max-width: 600px) {
  .dashboard__navigation__logo {
    width: 8%;
  }
}
@media (max-width: 425px) {
  .dashboard__navigation__logo {
    width: 10%;
  }
}
@media (max-width: 375px) {
  .dashboard__navigation__logo {
    width: 11%;
  }
}
.dashboard__navigation__search__form {
  min-width: 50vw;
  display: grid;
  grid-template-columns: 1fr max-content;
}
.dashboard__navigation__search__form svg {
  top: 50%;
  left: 4%;
  color: #868e96;
}
.dashboard__navigation__search__form input {
  backdrop-filter: blur(100px);
  border: 1px solid #E0E0E0;
  border-radius: 0.3rem;
  color: #495057;
}
@media (max-width: 600px) {
  .dashboard__navigation__search__form {
    display: none !important;
  }
}
.dashboard__navigation__right {
  gap: 1.846rem;
}
.dashboard__navigation__right button {
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .dashboard__navigation__right button {
    padding: 0.65rem 1.4rem !important;
    font-size: 1.2rem !important;
  }
}
@media (max-width: 375px) {
  .dashboard__navigation__right button {
    padding: 0.8rem 1.6rem !important;
    font-size: 1.33rem !important;
  }
}
.dashboard__navigation .profile-summary {
  gap: 0.7rem;
}
.dashboard__navigation .profile-image {
  width: 2.5rem;
  height: 2.5rem;
  font-weight: 800;
  border-radius: 50%;
  background: #000;
  color: #fff;
}
@media (max-width: 600px) {
  .dashboard__navigation .profile-image {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 425px) {
  .dashboard__navigation .profile-image {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.35rem;
  }
}
.dashboard__navigation .profile-desc {
  font-size: 1.077rem;
  font-weight: 400;
}
@media (max-width: 600px) {
  .dashboard__navigation .profile-desc {
    font-size: 1.15rem;
  }
}
@media (max-width: 425px) {
  .dashboard__navigation .profile-desc {
    font-size: 1.31rem;
  }
}
@media (max-width: 375px) {
  .dashboard__navigation .profile-desc {
    display: none;
  }
}

.dashboard__list {
  cursor: pointer;
}
.dashboard__list svg {
  font-size: 1.231rem;
}
@media (max-width: 425px) {
  .dashboard__list svg {
    font-size: 1.538rem;
  }
}
.dashboard__link {
  width: 100%;
  padding: 0.923rem;
  color: #62676C;
  gap: 1rem;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  will-change: background;
  transition: background 0.2s ease;
}
.dashboard__link:hover {
  background: #f8f9fa;
}
.dashboard__link.activeNav {
  background: linear-gradient(to top right, #609deb, #1FA2FF);
  color: #fff;
}
@media (max-width: 600px) {
  .dashboard__link {
    font-size: 1.077rem;
    border-radius: 0.3rem;
  }
}
@media (max-width: 425px) {
  .dashboard__link {
    font-size: 1.385rem;
    padding: 1.231rem;
  }
}

.dashboard__aside {
  grid-column: 2/4;
  grid-row: 2/4;
  padding-top: 2.462rem;
  padding-left: 1rem;
  border-right: 1.5px solid #E0E0E0;
}
@media (max-width: 1100px) {
  .dashboard__aside {
    grid-column: 1/4;
  }
}
@media (max-width: 600px) {
  .dashboard__aside {
    display: none;
  }
}
.dashboard__aside__item {
  gap: 1.3rem;
}
.dashboard__aside__list {
  cursor: pointer;
}
.dashboard__aside__list svg {
  font-size: var(--text-size-ss);
}
@media (max-width: 425px) {
  .dashboard__aside__list svg {
    font-size: var(--text-size-sm);
  }
}
.dashboard__aside__link {
  width: 100%;
  padding: 0.923rem;
  font-size: 1rem;
  color: #62676C;
  gap: 1rem;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  will-change: background;
  transition: background 0.2s ease;
}
.dashboard__aside__link svg {
  font-size: 1.231rem;
}
@media (max-width: 425px) {
  .dashboard__aside__link svg {
    font-size: 1.538rem;
  }
}
.dashboard__aside__link:hover {
  background: #f8f9fa;
}
.dashboard__aside__link.active {
  background: linear-gradient(to top right, #609deb, #1FA2FF);
  color: #fff;
}
@media (max-width: 600px) {
  .dashboard__aside__link {
    font-size: 1.077rem;
    border-radius: 0.3rem;
  }
}
@media (max-width: 425px) {
  .dashboard__aside__link {
    font-size: 1.385rem;
    padding: 1.231rem;
  }
}

.form-textarea {
  width: 100%;
  min-width: 0px;
  resize: none;
  height: 20rem;
  background: transparent;
  border: 1px solid #ced4da;
  border-radius: 0.4rem;
  color: #62676C;
  padding: 1rem 1.231rem;
  font-size: 1.15rem;
  font-family: inherit;
  transition: all 0.3s ease-in-out;
}
.form-textarea[aria-invalid=true], .form-textarea[aria-invalid=true]:focus, .form-textarea.invalid {
  outline-color: #ff6b6b;
  border-color: #ff6b6b;
  box-shadow: 0 0 1px #ff6b6b;
}
.form-textarea::placeholder {
  font-size: 1.077rem;
}
.form-textarea:focus {
  outline: 1.5px solid #87b0ef;
  border: 1.5px solid #868e96;
  box-shadow: 0 0 1px #87b0ef;
}
.form-textarea:hover {
  border-color: #E0E0E0;
}
@media (max-width: 600px) {
  .form-textarea {
    font-size: 1.25rem;
  }
  .form-textarea::placeholder {
    font-size: 1.231rem;
  }
}
@media (max-width: 425px) {
  .form-textarea {
    font-size: 1.52rem;
  }
  .form-textarea::placeholder {
    font-size: 1.538rem;
  }
}

.badge {
  font-size: 1.16rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0.5rem;
  color: #fff;
  border-radius: 0.3rem;
  display: inline-block;
}
.badge-primary {
  background: linear-gradient(to right, #228be6, #1FA2FF);
}
.badge-dark {
  background: #000;
}
@media (max-width: 600px) {
  .badge {
    font-size: 1.22rem;
  }
}
@media (max-width: 425px) {
  .badge {
    font-size: 1.4rem;
    padding: 0.6rem;
  }
}
@media (max-width: 375px) {
  .badge {
    font-size: 1.5rem;
  }
}

.empty-slate__image {
  width: 70%;
  height: 45%;
}
.empty-slate__header {
  font-size: 1.4rem;
  margin-top: 1.3rem;
  color: #495057;
}
.empty-slate__info {
  margin-top: 0.615rem;
  margin-bottom: 1.231rem;
  color: #868e96;
  line-height: 1.4;
  letter-spacing: 0.014rem;
}

.landing__container {
  width: 95vw;
}
@media (max-width: 1100px) {
  .landing__container {
    width: 90vw;
  }
}
@media (max-width: 768px) {
  .landing__container {
    width: 93vw;
  }
}
@media (max-width: 425px) {
  .landing__container {
    width: 90vw;
  }
}

.dashboard__container {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 3rem) repeat(6, 1fr) 3rem;
  grid-template-rows: min-content 1fr min-content;
}

.dashboard__wrapper {
  gap: 2.462rem;
}
@media (max-width: 900px) {
  .dashboard__wrapper {
    gap: 1.846rem;
  }
}
@media (max-width: 600px) {
  .dashboard__wrapper {
    margin: 0 auto !important;
  }
}
@media (max-width: 425px) {
  .dashboard__wrapper {
    gap: 3.692rem;
  }
}

.dashboard__section {
  grid-column: 4/-1;
  padding: 4.923rem 2.462rem;
  display: grid;
  grid-template-rows: repeat(auto-fill, 1fr);
}
@media (max-width: 600px) {
  .dashboard__section {
    grid-column: 1/-1;
  }
}
@media (max-width: 320px) {
  .dashboard__section {
    padding: 3.692rem 1.846rem;
  }
}
@media (max-width: 425px) {
  .dashboard__section .add__courier__container button[type=submit] {
    width: 15.5rem !important;
    padding: 1.3rem 0;
  }
}

.dashboard__form {
  width: 50vw;
  display: grid;
  grid-row-gap: 1.5rem;
}
.dashboard__form button {
  padding: 1rem 2rem;
  margin: 1.231rem auto 0px;
}
@media (max-width: 900px) {
  .dashboard__form {
    width: 60vw;
  }
}
@media (max-width: 600px) {
  .dashboard__form {
    width: 80vw;
  }
}
@media (max-width: 500px) {
  .dashboard__form {
    width: 85vw;
    grid-row-gap: 1.846rem;
  }
}
@media (max-width: 425px) {
  .dashboard__form {
    width: 90vw;
    grid-row-gap: 2.462rem;
  }
}

.dashboard__footer {
  padding: 1.231rem 1.846rem;
  font-size: 1.077rem;
  grid-column: 4/-1;
  border-top: 1.2px solid #E0E0E0;
  gap: 1rem;
}
@media (max-width: 600px) {
  .dashboard__footer {
    grid-column: 1/-1;
  }
}
@media (max-width: 425px) {
  .dashboard__footer {
    font-size: 1.385rem;
  }
}

.courier__table {
  text-align: justify;
  width: max-content;
  border-collapse: collapse;
}
.courier__table th {
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
}
.courier__table td,
.courier__table th {
  border: 1px solid #E0E0E0;
  font-size: 1.077rem;
  padding: 1.231rem;
}
.courier__table tr:nth-child(even) {
  background: #f8f9fa;
}
@media (max-width: 425px) {
  .courier__table td, .courier__table th {
    font-size: 1.385rem;
  }
}
@media (max-width: 320px) {
  .courier__table td, .courier__table th {
    font-size: 1.231rem;
  }
}
.courier__table .table__data__info {
  padding: 0 1rem;
  gap: 1rem;
}

.hero {
  height: 80vh;
  background-position: top !important;
  background-size: cover !important;
  display: grid;
  grid-template-rows: min-content 1fr;
  position: relative;
  z-index: 2;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/dotted-overlay.png) repeat left top;
  z-index: -1;
}
.hero.oth {
  height: 70vh;
  position: relative;
  z-index: 1;
}
.hero.oth:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(135, 176, 239, 0.1411764706);
  z-index: -1;
}
.hero__main__gap {
  gap: 3.692rem;
}
.hero__wrapper {
  width: 65vw;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1240px) {
  .hero__wrapper {
    width: 75vw;
  }
}
@media (max-width: 1100px) {
  .hero__wrapper {
    width: 70vw;
  }
}
@media (max-width: 900px) {
  .hero__wrapper {
    width: 85vw;
  }
}
@media (max-width: 425px) {
  .hero__wrapper {
    width: 100vw;
  }
}
@media (max-width: 375px) {
  .hero__wrapper {
    width: 95vw;
  }
}
@media (max-width: 320px) {
  .hero__wrapper {
    width: 97vw;
  }
}
.hero__content__wrapper {
  width: 80%;
  text-align: center;
}
@media (max-width: 1100px) {
  .hero__content__wrapper {
    width: 100%;
  }
}
.hero__headline {
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.23rem;
  margin-bottom: 1.846rem;
}
@media (max-width: 375px) {
  .hero__headline {
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (max-width: 320px) {
  .hero__headline {
    font-size: 3.7rem;
  }
}
.hero__title {
  font-size: 1.25rem;
  padding: 0 4rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1100px) {
  .hero__title {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero__title {
    font-size: 1.3rem;
  }
}
@media (max-width: 425px) {
  .hero__title {
    font-size: 1.53rem;
  }
}
@media (max-width: 375px) {
  .hero__title {
    font-size: 1.57rem;
  }
}
@media (max-width: 320px) {
  .hero__title {
    font-size: 1.56rem;
  }
}
.hero__other__heading {
  font-size: 3.692em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  padding: 1rem;
}

@media (max-width: 425px) {
    .hero__other__heading {
        padding: 1.5rem;
    }
}

.hero__other__title {
  font-size: 1.231rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #f8f9fa;
  margin-bottom: 1.2rem;
}

@media (max-width: 425px) {
    .hero__other__title {
        font-size: 1.45rem;
    }
}

.services {
  background: url(../assets/images/globe.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 7.6rem 0;
  gap: 3.692rem;
}
@media (max-width: 600px) {
  .services {
    gap: 7.6rem;
  }
}
.services__heading {
  gap: 0.8rem;
  padding: 0 2rem;
}
.services__item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.692rem;
}
@media (max-width: 1024px) {
  .services__item {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.462rem;
  }
}
@media (max-width: 425px) {
  .services__item {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.footer {
  background: #212121;
  color: #bdbdbd;
}
.footer__wrapper {
  width: 95%;
  padding: 3.692rem 2.462rem;
  background: url(../assets/images/globus_image_large_dark.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 5rem;
}
@media (max-width: 900px) {
  .footer__wrapper {
    width: 97%;
  }
}
@media (max-width: 600px) {
  .footer__wrapper {
    width: 100%;
    gap: 3.692rem;
  }
}
@media (max-width: 425px) {
  .footer__wrapper {
    grid-template-columns: 1fr;
  }
}
.footer__contact {
  grid-column: 1/2;
}
@media (max-width: 425px) {
  .footer__contact {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
  }
}
.footer__contact__address {
  font-size: 1.3rem;
  line-height: 1.5;
  word-break: break-all;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .footer__contact__address {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .footer__contact__address {
    font-size: 1.15rem;
  }
}
@media (max-width: 425px) {
  .footer__contact__address {
    font-size: 1.35rem;
  }
}
.footer__logo {
  width: 45%;
}
@media (max-width: 425px) {
  .footer__logo {
    width: 35%;
  }
}
.footer__cta {
  grid-column: 2/-1;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6.154rem;
}
@media (max-width: 600px) {
  .footer__cta {
    gap: 3.692rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  .footer__cta {
    grid-column: 1/-1;
  }
}
.footer__cta__header {
  font-size: 1.538rem;
  color: #fff;
}
@media (max-width: 900px) {
  .footer__cta__header {
    font-size: 1.385rem;
  }
}
@media (max-width: 425px) {
  .footer__cta__header {
    font-size: 1.385rem;
  }
}
.footer__item {
  margin-top: 1.846rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .footer__item {
    grid-template-columns: repeat(3, max-content);
  }
}
@media (max-width: 425px) {
  .footer__item {
    grid-template-columns: repeat(3, max-content);
  }
}
.footer__link {
  font-size: 1.2rem;
  color: inherit;
  font-weight: 600;
}
@media (max-width: 900px) {
  .footer__link {
    font-size: 1.1rem;
  }
}
.footer__newsletter {
  grid-row-gap: 1.2rem;
  display: grid;
  grid-template-rows: repeat(3, max-content);
}
.footer__newsletter__text {
  font-size: 1.15rem;
  line-height: 1.7rem;
  padding-right: 9.846rem;
}
@media (max-width: 900px) {
  .footer__newsletter__text {
    padding-right: 1.846rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .footer__newsletter__text {
    padding-right: 0;
  }
}
@media (max-width: 425px) {
  .footer__newsletter__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.footer__form {
  width: 95%;
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: unset;
}
.footer__form input {
  background: #fff;
  border-radius: 0.3rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 3.6rem;
}
.footer__form button {
  width: 13rem;
  padding: 0;
  border-radius: 0.3rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.footer__bottom {
  grid-column: 1/-1;
  padding: 1.846rem 2.462rem;
  background: #121212;
  font-weight: 600;
}
.footer__bottom__text {
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .footer__bottom__text {
    font-size: 1.15rem;
  }
}
@media (max-width: 425px) {
  .footer__bottom__text {
    font-size: 1.3rem;
  }
}

.login__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login__header {
  margin-bottom: 1.5rem;
  gap: 1.231rem;
}
.login__image {
  width: 20%;
}
.login__header__text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--grey-dk-8);
}
@media (max-width: 425px) {
  .login__header__text {
    font-size: 2.2rem;
  }
}
.login__header__subtext {
  font-size: 1.1rem;
  color: #adb5bd;
  margin-top: -0.4rem;
}
@media (max-width: 425px) {
  .login__header__subtext {
    font-size: 1.4rem;
  }
}
.login__submit__button {
  width: 100%;
}
.login__form {
  background: #fff;
  width: 100%;
  min-width: 40vw;
  gap: 1.231rem;
  padding: 2.5rem 2.9rem;
  border-radius: 0.5rem;
}
@media (max-width: 1100px) {
  .login__form {
    width: 45vw;
  }
}
@media (max-width: 900px) {
  .login__form {
    width: 53vw;
  }
}
@media (max-width: 600px) {
  .login__form {
    width: 75vw;
  }
}
@media (max-width: 375px) {
  .login__form {
    width: 97vw;
  }
}

.contact__container {
  padding: 4.923rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .contact__container {
    gap: 0.7rem;
  }
}
@media (max-width: 425px) {
  .contact__container {
    grid-template-columns: 1fr;
    grid-row-gap: 3.692rem;
  }
}
.contact__info__container {
  gap: 3.692rem;
}
@media (max-width: 425px) {
  .contact__info__container {
    gap: 4.923rem;
  }
}
.contact__info__heading {
  gap: 0.154rem;
}
.contact__info__heading h3 {
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  .contact__info__heading h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 425px) {
  .contact__info__heading h3 {
    font-size: 3.385rem;
  }
}
.contact__info__heading p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0.4rem;
}
@media (max-width: 768px) {
  .contact__info__heading p {
    font-size: 1.6rem;
  }
}
@media (max-width: 425px) {
  .contact__info__heading p {
    font-size: 2.462rem;
  }
}
@media (max-width: 425px) {
  .contact__info__heading {
    text-align: center;
  }
}
.contact__info__contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .contact__info__contact {
    gap: 1.87rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  .contact__info__contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 320px) {
  .contact__info__contact {
    grid-template-columns: 1fr;
  }
}
.contact__info__box {
  gap: 1.231rem;
  padding: 1rem;
}
.contact__info__box svg {
  font-size: 2.875rem;
  color: #228be6;
}
@media (max-width: 900px) {
  .contact__info__box svg {
    font-size: 2.462rem;
  }
}
@media (max-width: 425px) {
  .contact__info__box svg {
    font-size: 3.385rem;
  }
}
@media (max-width: 425px) {
  .contact__info__box {
    gap: 1.846rem;
  }
}
.contact__info__box__text {
  font-size: 1.538rem;
}
@media (max-width: 425px) {
  .contact__info__box__text {
    font-size: 1.846rem;
  }
}
.contact__info__box__content {
  word-break: break-all;
  line-height: 1.5;
  font-size: 1.077rem;
}
@media (max-width: 600px) {
  .contact__info__box__content {
    font-size: 1.231rem;
  }
}
@media (max-width: 425px) {
  .contact__info__box__content {
    font-size: 1.538rem;
  }
}
.contact__info__form {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1.231rem;
}
.contact__info__form input {
  padding: 1.846rem 1.231rem;
  border-radius: 0.1rem;
}

.about__container {
  background: rgba(250, 250, 250, 0.831372549);
  display: grid;
  grid-template-columns: repeat(3, 25%);
  grid-column-gap: 1.4rem;
  justify-content: center;
  padding: 4.923rem;
}
@media (max-width: 1200px) {
  .about__container {
    grid-template-columns: repeat(3, 27.027027027%);
  }
}
@media (max-width: 1100px) {
  .about__container {
    grid-template-columns: repeat(3, 28.5714285714%);
  }
}
@media (max-width: 900px) {
  .about__container {
    padding: 3.692rem 2.462rem;
  }
}
@media (max-width: 768px) {
  .about__container {
    grid-template-columns: repeat(3, 31.25%);
  }
}
@media (max-width: 600px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 1.2rem;
  }
}
@media (max-width: 425px) {
  .about__container {
    grid-template-columns: 1fr;
    padding: 3.692rem 5rem;
  }
}
@media (max-width: 320px) {
  .about__container {
    grid-template-columns: 1fr;
    padding: 3.692rem;
  }
}
.about__story__box {
  padding: 1.846rem 2rem;
  background: #fff;
  text-align: center;
}
.about__story__box svg {
  margin-bottom: 1.846rem;
  font-size: 3.692rem;
  color: #228be6;
}
@media (max-width: 1200px) {
  .about__story__box {
    padding: 3.692rem 2rem;
  }
}
@media (max-width: 1100px) {
  .about__story__box {
    padding: 1rem 2.5rem;
  }
}
@media (max-width: 1024px) {
  .about__story__box svg {
    font-size: 2.875rem;
  }
}
@media (max-width: 900px) {
  .about__story__box {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .about__story__box svg {
    font-size: 2.875rem;
  }
}
@media (max-width: 600px) {
  .about__story__box {
    padding: 3.692rem 1.87rem;
  }
}
@media (max-width: 425px) {
  .about__story__box {
    padding: 3.692rem 2.462rem;
  }
}
@media (max-width: 375px) {
  .about__story__box {
    padding: 1rem 1rem;
  }
  .about__story__box svg {
    font-size: 3.385rem;
  }
}
@media (max-width: 320px) {
  .about__story__box {
    padding: 1.846rem 1.2rem;
  }
}
.about__story__box__header {
  font-size: 1.538rem;
  color: #228be6;
  text-transform: capitalize;
  margin-bottom: 0.8rem;
}
@media (max-width: 1200px) {
  .about__story__box__header {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 1100px) {
  .about__story__box__header {
    margin-bottom: 1.4rem;
  }
}
@media (max-width: 768px) {
  .about__story__box__header {
    font-size: 1.385rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 600px) {
  .about__story__box__header {
    font-size: 1.538rem;
  }
}
@media (max-width: 425px) {
  .about__story__box__header {
    font-size: 1.846rem;
  }
}
@media (max-width: 375px) {
  .about__story__box__header {
    font-size: 2rem;
  }
}
.about__story__box__text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(98, 103, 108, 0.8901960784);
}
@media (max-width: 1024px) {
  .about__story__box__text {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .about__story__box__text {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .about__story__box__text {
    font-size: 1.15rem;
  }
}
@media (max-width: 425px) {
  .about__story__box__text {
    font-size: 1.4rem;
  }
}
@media (max-width: 375px) {
  .about__story__box__text {
    font-size: 1.6rem;
  }
}

.track__container {
  margin-top: 6.154rem;
  gap: 2.462rem;
}
@media (max-width: 375px) {
  .track__container {
    align-items: flex-start !important;
    padding: 1rem 1.5rem;
  }
}
.track__form {
  width: 42vw;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr 8rem;
  gap: 0.25rem;
}
.track__form input {
  background: #f8f9fa;
  border: 1px solid #E0E0E0;
  border-radius: 0;
}
.track__form input:hover {
  border-color: #E0E0E0 !important;
}
.track__form input:focus {
  border: 1px solid #E0E0E0 !important;
}
.track__form button {
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1200px) {
  .track__form {
    width: 46vw;
  }
  .track__form input {
    height: 3.5rem;
  }
}
@media (max-width: 900px) {
  .track__form {
    width: 56vw;
  }
}
@media (max-width: 768px) {
  .track__form {
    width: 62vw;
  }
}
@media (max-width: 600px) {
  .track__form {
    width: 70vw;
  }
  .track__form input {
    height: 4rem;
  }
}
@media (max-width: 425px) {
  .track__form {
    grid-template-columns: 1fr;
  }
  .track__form button {
    width: 100% !important;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
@media (max-width: 375px) {
  .track__form {
    width: 100%;
  }
}
.track__result {
  margin-top: 3.692rem;
}
.track__result__container {
  width: 100%;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .track__result__container {
    justify-content: flex-start !important;
    padding-left: 1rem;
  }
}
.track__result__error {
  width: 40vw;
  border: 1px solid #adb5bd;
  padding: 1rem 1.231rem;
  border-radius: 0.3rem;
  margin: 0 auto;
  gap: 1rem;
}
.track__result__error svg {
  color: #000;
  font-size: 1.846rem;
}
@media (max-width: 1100px) {
  .track__result__error {
    width: 45vw;
  }
}
@media (max-width: 900px) {
  .track__result__error {
    width: 56vw;
  }
}
@media (max-width: 600px) {
  .track__result__error svg {
    font-size: 2.2rem;
  }
}
@media (max-width: 425px) {
  .track__result__error {
    width: 70vw;
    padding: 1.5rem;
  }
  .track__result__error svg {
    font-size: 1.25rem;
  }
}
@media (max-width: 375px) {
  .track__result__error {
    width: 97%;
  }
  .track__result__error svg {
    font-size: 2.5rem;
  }
}
.track__result__error__number {
  font-size: 1.231rem;
}
@media (max-width: 600px) {
  .track__result__error__number {
    font-size: 1.538rem;
  }
}
@media (max-width: 425px) {
  .track__result__error__number {
    font-size: 1.846rem;
  }
}
.track__result__error__text {
  font-size: 1.077rem;
  color: #62676C;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .track__result__error__text {
    font-size: 1.231rem;
  }
}
@media (max-width: 425px) {
  .track__result__error__text {
    font-size: 1.45rem;
  }
}

.courier-detail-container {
  padding-top: 1rem;
}
.courier-detail-logo-link {
  margin-bottom: 1.231rem;
}
.courier-detail-logo-image {
  width: 40%;
}
.courier-detail-tracker {
  font-size: 1.385rem;
  margin-top: 1rem;
}
@media (max-width: 425px) {
  .courier-detail-tracker {
    font-size: 1.5rem;
  }
}
.courier-detail-wrapper {
  width: 60vw;
  margin-top: 4.923rem;
  display: grid;
  grid-row-gap: 3.692rem;
}
@media (max-width: 600px) {
  .courier-detail-wrapper {
    width: max-content;
  }
}
@media (max-width: 500px) {
  .courier-detail-wrapper {
    width: 100%;
    justify-content: center;
  }
}
.courier-detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.courier-detail-list:last-of-type {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 500px) {
  .courier-detail-list:last-of-type {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}
@media (max-width: 500px) {
  .courier-detail-list {
    grid-template-columns: 1fr;
    justify-items: center;
    grid-row-gap: 2rem;
  }
}
.courier-detail-list-box {
  padding-bottom: 1.87rem;
  padding-left: 1.846rem;
  border-bottom: 1.5px dotted;
  gap: 0.2rem;
}
@media (max-width: 500px) {
  .courier-detail-list-box {
    border-bottom: none;
  }
}
.courier-detail-list-box-header {
  font-size: 1.1rem;
  margin-bottom: 0.615rem;
}
@media (max-width: 600px) {
  .courier-detail-list-box-header {
    font-size: 1.2rem;
  }
}
@media (max-width: 500px) {
  .courier-detail-list-box-header {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 425px) {
  .courier-detail-list-box-header {
    font-size: 1.7rem;
  }
}
.courier-detail-list-box-text {
  font-size: 1.03rem;
  text-transform: capitalize;
  padding-left: 0.5rem;
}
@media (max-width: 600px) {
  .courier-detail-list-box-text {
    font-size: 1.1rem;
  }
}
@media (max-width: 500px) {
  .courier-detail-list-box-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 425px) {
  .courier-detail-list-box-text {
    font-size: 1.45rem;
  }
}

.no-match__container {
  height: 100vh;
  display: grid;
  grid-template-rows: repeat(2, auto) 1fr;
}
.no-match__wrapper {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  align-content: center;
  gap: 1.231rem;
}
@media (max-width: 425px) {
  .no-match__wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.no-match__header {
  font-size: 3.692rem;
}
@media (max-width: 1024px) {
  .no-match__header {
    font-size: 3.385rem;
  }
}
@media (max-width: 768px) {
  .no-match__header {
    font-size: 5.692rem;
  }
}
@media (max-width: 500px) {
  .no-match__header {
    font-size: 2.462rem;
  }
}
@media (max-width: 425px) {
  .no-match__header {
    font-size: 5.692rem;
  }
}
@media (max-width: 320px) {
  .no-match__header {
    font-size: 3.692em;
  }
}
.no-match__heading {
  border-left: 1px solid #E0E0E0;
  padding-left: 1.5rem;
  margin-bottom: 2.462rem;
}
@media (max-width: 768px) {
  .no-match__heading {
    padding-left: 1.231rem;
    margin-bottom: 1.846rem;
  }
}
@media (max-width: 425px) {
  .no-match__heading {
    padding-left: 0;
    border-left: none;
    text-align: center;
    margin-bottom: 2.462rem;
  }
}
.no-match__heading__main {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.077rem;
}
@media (max-width: 1024px) {
  .no-match__heading__main {
    font-size: 2.462rem;
  }
}
@media (max-width: 900px) {
  .no-match__heading__main {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .no-match__heading__main {
    font-size: 1.846rem;
  }
}
@media (max-width: 500px) {
  .no-match__heading__main {
    font-size: 1.6rem;
  }
}
@media (max-width: 425px) {
  .no-match__heading__main {
    font-size: 2.462rem;
    margin-bottom: 0.923rem;
  }
}
@media (max-width: 320px) {
  .no-match__heading__main {
    font-size: 1.846rem;
  }
}
.no-match__heading__text {
  font-size: 1.04rem;
  color: #868e96;
}
@media (max-width: 425px) {
  .no-match__heading__text {
    font-size: 1.538rem;
  }
}
@media (max-width: 320px) {
  .no-match__heading__text {
    font-size: 1.385rem;
  }
}
.no-match__link {
  padding-left: 1.5rem;
}
.no-match__link button {
  padding: 0.65rem 1.231rem;
}
@media (max-width: 768px) {
  .no-match__link {
    padding-left: 1.231rem;
  }
}
@media (max-width: 425px) {
  .no-match__link {
    display: flex;
    justify-content: center;
  }
}

/*# sourceMappingURL=main.css.map */
