:root {
  --border-color: rgba(255, 255, 255, 0.8);
  --border: 1px solid var(--border-color);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  direction: rtl;
  unicode-bidi: embed;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  overscroll-behavior: none;
}

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

.sr-only {
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
.sr-only:active, .sr-only:focus {
  height: auto;
  overflow: visible;
  position: static;
  width: auto;
  clip: auto;
  white-space: normal;
}

.recommend-badge {
  position: absolute;
  top: 16px;
  left: -32px;
  background: linear-gradient(to right, #00B4D8, #0096C7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 32px;
  transform: rotate(-45deg);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 180, 216, 0.4);
  letter-spacing: 0.05em;
}

.color-black {
  color: #000;
}
.color-white {
  color: #fff;
}
.color-brand {
  color: #00B4D8;
}
.color-red {
  color: #d00000;
}

.color-white_100 {
  color: rgba(255, 255, 255, 0.9);
}
.color-white_200 {
  color: rgba(255, 255, 255, 0.8);
}
.color-white_300 {
  color: rgba(255, 255, 255, 0.7);
}
.color-white_400 {
  color: rgba(255, 255, 255, 0.6);
}
.color-white_500 {
  color: rgba(255, 255, 255, 0.5);
}
.color-white_600 {
  color: rgba(255, 255, 255, 0.4);
}
.color-white_700 {
  color: rgba(255, 255, 255, 0.3);
}
.color-white_800 {
  color: rgba(255, 255, 255, 0.2);
}
.color-white_900 {
  color: rgba(255, 255, 255, 0.1);
}

.border-gray {
  border-color: #f8f9fa;
}

.bg-black {
  background: #000;
}
.bg-white {
  background: #fff;
}
.bg-gray {
  background: #f8f9fa;
}
.bg-light-brand {
  background: #ecfeff;
}
.bg-brand {
  background: #00B4D8;
}

.move-background {
  position: relative;
  overflow: hidden;
}
.move-background > div {
  position: relative;
  z-index: 1;
}
.move-background:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDBCNEQ4IiBzdHJva2Utd2lkdGg9IjEuNSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==");
  background-repeat: repeat;
  animation: move-background 20s linear infinite alternate;
}
@keyframes move-background {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

.border-left {
  border-left: var(--border);
}

.border-right {
  border-right: var(--border);
}

.border-top {
  border-top: var(--border);
}

.border-bottom {
  border-bottom: var(--border);
}

.border {
  border: var(--border);
}

.br-1 {
  border-radius: 8px;
}

.br-2 {
  border-radius: 16px;
}

.br-3 {
  border-radius: 24px;
}

.br-4 {
  border-radius: 32px;
}

.br-pill {
  border-radius: 50rem;
}

.br-circle {
  border-radius: 9999px;
}

.br-top-1 {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.br-top-2 {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.br-top-3 {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.br-top-4 {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.br-bottom-1 {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.br-bottom-2 {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.br-bottom-3 {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.br-bottom-4 {
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.br-left-1 {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.br-left-2 {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.br-left-3 {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.br-left-4 {
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
}

.br-right-1 {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.br-right-2 {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.br-right-3 {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.br-right-4 {
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}

.br-tl-1 {
  border-top-left-radius: 8px;
}

.br-tr-1 {
  border-top-right-radius: 8px;
}

.br-bl-1 {
  border-bottom-left-radius: 8px;
}

.br-br-1 {
  border-bottom-right-radius: 8px;
}

.br-tl-2 {
  border-top-left-radius: 16px;
}

.br-tr-2 {
  border-top-right-radius: 16px;
}

.br-bl-2 {
  border-bottom-left-radius: 16px;
}

.br-br-2 {
  border-bottom-right-radius: 16px;
}

.br-tl-3 {
  border-top-left-radius: 24px;
}

.br-tr-3 {
  border-top-right-radius: 24px;
}

.br-bl-3 {
  border-bottom-left-radius: 24px;
}

.br-br-3 {
  border-bottom-right-radius: 24px;
}

.br-tl-4 {
  border-top-left-radius: 32px;
}

.br-tr-4 {
  border-top-right-radius: 32px;
}

.br-bl-4 {
  border-bottom-left-radius: 32px;
}

.br-br-4 {
  border-bottom-right-radius: 32px;
}

@font-face {
  font-family: "os_antidottregular";
  src: url("../fonts/osantidottr-extralight-web.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "os_antidottregular";
  src: url("../fonts/osantidottr-light-web.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "os_antidottregular";
  src: url("../fonts/osantidottr-regular-web.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "os_antidottregular";
  src: url("../fonts/osantidottr-semibold-web.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "os_antidottregular";
  src: url("../fonts/osantidottr-bold-web.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "os_antidottregular", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a, p, h1, h2, h3, h4, h5, h6, button {
  font-family: "os_antidottregular", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.font-200 {
  font-weight: 200;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500, .font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.font-800 {
  font-weight: 800;
}

h1, .h1 {
  font-size: clamp(4rem, 7vw, 72px);
}

h2, .h2 {
  font-size: clamp(3rem, 4.6vw, 48px);
}

h3, .h3 {
  font-size: clamp(2rem, 3vw, 30px);
}

h4, .h4 {
  font-size: clamp(1.4rem, 2.5vw, 22px);
}

h5, .h5 {
  font-size: clamp(1rem, 2vw, 18px);
}

h6, .h6 {
  font-size: clamp(1rem, 1.5vw, 14px);
}

.body_big {
  font-size: clamp(1.2rem, 2vw, 20px);
  margin: 0;
}

.body_mid {
  font-size: clamp(1.2rem, 1.8vw, 18px);
  margin: 0;
}

.body_small {
  font-size: clamp(0.8rem, 1vw, 14px);
  margin: 0;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}

.btn {
  padding: 16px 24px;
  line-height: 1.2;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.25s ease;
  text-decoration: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.btn span {
  align-items: center;
  display: inline-flex;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}
.btn .ripple {
  border-radius: 50%;
  height: 60px;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transition: transform 0.5s ease;
  width: 60px;
}
.btn:hover .ripple {
  transform: scale(20);
  transition: transform 1.2s ease;
}
.btn-primary {
  background: linear-gradient(to right, #00B4D8, #0096C7);
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 180, 216, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(to right, #0096C7, #00B4D8);
  box-shadow: 0 0 48px rgba(0, 180, 216, 0.6);
  transform: scale(1.05);
  color: #00B4D8;
}
.btn-primary {
  border-color: #00B4D8;
}
.btn-primary .ripple {
  background: #fff;
}
.btn-secondary {
  display: inline-block;
  background: white;
  color: #1e293b;
  font-weight: 500;
  padding: 0 3rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.btn-secondary:hover {
  background: rgb(241, 245, 249);
}
@media (min-width: 640px) {
  .btn-secondary {
    width: auto;
  }
}
.btn-capsule {
  border-radius: 50px;
}
.btn-white {
  background: #fff;
  color: #00B4D8;
  border-color: transparent;
}
.btn-white:hover {
  background: #00B4D8;
  color: #fff;
}
.btn-white .ripple {
  background: #00B4D8;
}
.btn-transparent {
  background: transparent;
}
.btn-transparent:hover {
  background: linear-gradient(to right, #0096C7, #00B4D8);
  transform: scale(1.05);
  color: #00B4D8;
}
.btn-transparent {
  border-color: #00B4D8;
}
.btn-transparent .ripple {
  background: #fff;
}
.btn-borders {
  background: transparent;
  color: #00B4D8;
  border: 2px solid #00B4D8;
}
.btn-borders:hover {
  background: #00B4D8;
  color: #fff;
  transform: scale(1.02);
}
.btn-borders .ripple {
  background: #00B4D8;
}
.btn-clean {
  background: none;
  color: #00B4D8;
  border: none;
  padding: 0;
  box-shadow: none;
}
.btn-clean:hover {
  background: none;
  box-shadow: none;
}
.btn-lg {
  min-width: 300px;
}
.btn-small {
  font-size: 14px;
}
.btn-full {
  width: 100%;
}
.btn-nice-select {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #00B4D8, #0096C7);
  color: #fff;
}
.btn-nice-select:hover {
  background: #000;
  transform: scale(1.05);
  color: #fff;
}
.btn-nice-select {
  border-color: #00B4D8;
}
.btn svg {
  height: 1.25rem;
  z-index: 1;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.p-0 {
  padding: 0;
}

.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-1 {
  padding-left: 8px;
  padding-right: 8px;
}

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

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

.pl-1 {
  padding-left: 8px;
}

.pr-1 {
  padding-right: 8px;
}

.p-1 {
  padding: 8px;
}

.py-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}

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

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

.pl-2 {
  padding-left: 16px;
}

.pr-2 {
  padding-right: 16px;
}

.p-2 {
  padding: 16px;
}

.py-3 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.px-3 {
  padding-left: 32px;
  padding-right: 32px;
}

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

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

.pl-3 {
  padding-left: 32px;
}

.pr-3 {
  padding-right: 32px;
}

.p-3 {
  padding: 32px;
}

.py-4 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-4 {
  padding-left: 40px;
  padding-right: 40px;
}

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

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

.pl-4 {
  padding-left: 40px;
}

.pr-4 {
  padding-right: 40px;
}

.p-4 {
  padding: 40px;
}

.py-5 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.px-5 {
  padding-left: 56px;
  padding-right: 56px;
}

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

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

.pl-5 {
  padding-left: 56px;
}

.pr-5 {
  padding-right: 56px;
}

.p-5 {
  padding: 56px;
}

.py-6 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.px-6 {
  padding-left: 64px;
  padding-right: 64px;
}

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

.pb-6 {
  padding-bottom: 64px;
}

.pl-6 {
  padding-left: 64px;
}

.pr-6 {
  padding-right: 64px;
}

.p-6 {
  padding: 64px;
}

.py-7 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.px-7 {
  padding-left: 72px;
  padding-right: 72px;
}

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

.pb-7 {
  padding-bottom: 72px;
}

.pl-7 {
  padding-left: 72px;
}

.pr-7 {
  padding-right: 72px;
}

.p-7 {
  padding: 72px;
}

.py-8 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.px-8 {
  padding-left: 80px;
  padding-right: 80px;
}

.pt-8 {
  padding-top: 80px;
}

.pb-8 {
  padding-bottom: 80px;
}

.pl-8 {
  padding-left: 80px;
}

.pr-8 {
  padding-right: 80px;
}

.p-8 {
  padding: 80px;
}

.py-16 {
  padding-top: 128px;
  padding-bottom: 128px;
}

.px-16 {
  padding-left: 128px;
  padding-right: 128px;
}

.pt-16 {
  padding-top: 128px;
}

.pb-16 {
  padding-bottom: 128px;
}

.pl-16 {
  padding-left: 128px;
}

.pr-16 {
  padding-right: 128px;
}

.p-16 {
  padding: 128px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.m-0 {
  margin: 0;
}

.my-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mx-1 {
  margin-left: 8px;
  margin-right: 8px;
}

.mt-1 {
  margin-top: 8px;
}

.mb-1 {
  margin-bottom: 8px;
}

.ml-1 {
  margin-left: 8px;
}

.mr-1 {
  margin-right: 8px;
}

.m-1 {
  margin: 8px;
}

.my-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mx-2 {
  margin-left: 16px;
  margin-right: 16px;
}

.mt-2 {
  margin-top: 16px;
}

.mb-2 {
  margin-bottom: 16px;
}

.ml-2 {
  margin-left: 16px;
}

.mr-2 {
  margin-right: 16px;
}

.m-2 {
  margin: 16px;
}

.my-3 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mx-3 {
  margin-left: 32px;
  margin-right: 32px;
}

.mt-3 {
  margin-top: 32px;
}

.mb-3 {
  margin-bottom: 32px;
}

.ml-3 {
  margin-left: 32px;
}

.mr-3 {
  margin-right: 32px;
}

.m-3 {
  margin: 32px;
}

.my-4 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mx-4 {
  margin-left: 40px;
  margin-right: 40px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

.ml-4 {
  margin-left: 40px;
}

.mr-4 {
  margin-right: 40px;
}

.m-4 {
  margin: 40px;
}

.my-5 {
  margin-top: 56px;
  margin-bottom: 56px;
}

.mx-5 {
  margin-left: 56px;
  margin-right: 56px;
}

.mt-5 {
  margin-top: 56px;
}

.mb-5 {
  margin-bottom: 56px;
}

.ml-5 {
  margin-left: 56px;
}

.mr-5 {
  margin-right: 56px;
}

.m-5 {
  margin: 56px;
}

.my-6 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.mx-6 {
  margin-left: 64px;
  margin-right: 64px;
}

.mt-6 {
  margin-top: 64px;
}

.mb-6 {
  margin-bottom: 64px;
}

.ml-6 {
  margin-left: 64px;
}

.mr-6 {
  margin-right: 64px;
}

.m-6 {
  margin: 64px;
}

.my-7 {
  margin-top: 72px;
  margin-bottom: 72px;
}

.mx-7 {
  margin-left: 72px;
  margin-right: 72px;
}

.mt-7 {
  margin-top: 72px;
}

.mb-7 {
  margin-bottom: 72px;
}

.ml-7 {
  margin-left: 72px;
}

.mr-7 {
  margin-right: 72px;
}

.m-7 {
  margin: 72px;
}

.my-8 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-8 {
  margin-left: 80px;
  margin-right: 80px;
}

.mt-8 {
  margin-top: 80px;
}

.mb-8 {
  margin-bottom: 80px;
}

.ml-8 {
  margin-left: 80px;
}

.mr-8 {
  margin-right: 80px;
}

.m-8 {
  margin: 80px;
}

.my-16 {
  margin-top: 128px;
  margin-bottom: 128px;
}

.mx-16 {
  margin-left: 128px;
  margin-right: 128px;
}

.mt-16 {
  margin-top: 128px;
}

.mb-16 {
  margin-bottom: 128px;
}

.ml-16 {
  margin-left: 128px;
}

.mr-16 {
  margin-right: 128px;
}

.m-16 {
  margin: 128px;
}

@media (min-width: 576px) {
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .px-sm-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pl-sm-0 {
    padding-left: 0;
  }
  .pr-sm-0 {
    padding-right: 0;
  }
  .p-sm-0 {
    padding: 0;
  }
  .py-sm-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px-sm-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .pt-sm-1 {
    padding-top: 8px;
  }
  .pb-sm-1 {
    padding-bottom: 8px;
  }
  .pl-sm-1 {
    padding-left: 8px;
  }
  .pr-sm-1 {
    padding-right: 8px;
  }
  .p-sm-1 {
    padding: 8px;
  }
  .py-sm-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px-sm-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pt-sm-2 {
    padding-top: 16px;
  }
  .pb-sm-2 {
    padding-bottom: 16px;
  }
  .pl-sm-2 {
    padding-left: 16px;
  }
  .pr-sm-2 {
    padding-right: 16px;
  }
  .p-sm-2 {
    padding: 16px;
  }
  .py-sm-3 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px-sm-3 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pt-sm-3 {
    padding-top: 32px;
  }
  .pb-sm-3 {
    padding-bottom: 32px;
  }
  .pl-sm-3 {
    padding-left: 32px;
  }
  .pr-sm-3 {
    padding-right: 32px;
  }
  .p-sm-3 {
    padding: 32px;
  }
  .py-sm-4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .px-sm-4 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .pt-sm-4 {
    padding-top: 40px;
  }
  .pb-sm-4 {
    padding-bottom: 40px;
  }
  .pl-sm-4 {
    padding-left: 40px;
  }
  .pr-sm-4 {
    padding-right: 40px;
  }
  .p-sm-4 {
    padding: 40px;
  }
  .py-sm-5 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .px-sm-5 {
    padding-left: 56px;
    padding-right: 56px;
  }
  .pt-sm-5 {
    padding-top: 56px;
  }
  .pb-sm-5 {
    padding-bottom: 56px;
  }
  .pl-sm-5 {
    padding-left: 56px;
  }
  .pr-sm-5 {
    padding-right: 56px;
  }
  .p-sm-5 {
    padding: 56px;
  }
  .py-sm-6 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px-sm-6 {
    padding-left: 64px;
    padding-right: 64px;
  }
  .pt-sm-6 {
    padding-top: 64px;
  }
  .pb-sm-6 {
    padding-bottom: 64px;
  }
  .pl-sm-6 {
    padding-left: 64px;
  }
  .pr-sm-6 {
    padding-right: 64px;
  }
  .p-sm-6 {
    padding: 64px;
  }
  .py-sm-7 {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .px-sm-7 {
    padding-left: 72px;
    padding-right: 72px;
  }
  .pt-sm-7 {
    padding-top: 72px;
  }
  .pb-sm-7 {
    padding-bottom: 72px;
  }
  .pl-sm-7 {
    padding-left: 72px;
  }
  .pr-sm-7 {
    padding-right: 72px;
  }
  .p-sm-7 {
    padding: 72px;
  }
  .py-sm-8 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .px-sm-8 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .pt-sm-8 {
    padding-top: 80px;
  }
  .pb-sm-8 {
    padding-bottom: 80px;
  }
  .pl-sm-8 {
    padding-left: 80px;
  }
  .pr-sm-8 {
    padding-right: 80px;
  }
  .p-sm-8 {
    padding: 80px;
  }
  .py-sm-16 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px-sm-16 {
    padding-left: 128px;
    padding-right: 128px;
  }
  .pt-sm-16 {
    padding-top: 128px;
  }
  .pb-sm-16 {
    padding-bottom: 128px;
  }
  .pl-sm-16 {
    padding-left: 128px;
  }
  .pr-sm-16 {
    padding-right: 128px;
  }
  .p-sm-16 {
    padding: 128px;
  }
}
@media (min-width: 768px) {
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .px-md-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pl-md-0 {
    padding-left: 0;
  }
  .pr-md-0 {
    padding-right: 0;
  }
  .p-md-0 {
    padding: 0;
  }
  .py-md-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px-md-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .pt-md-1 {
    padding-top: 8px;
  }
  .pb-md-1 {
    padding-bottom: 8px;
  }
  .pl-md-1 {
    padding-left: 8px;
  }
  .pr-md-1 {
    padding-right: 8px;
  }
  .p-md-1 {
    padding: 8px;
  }
  .py-md-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px-md-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pt-md-2 {
    padding-top: 16px;
  }
  .pb-md-2 {
    padding-bottom: 16px;
  }
  .pl-md-2 {
    padding-left: 16px;
  }
  .pr-md-2 {
    padding-right: 16px;
  }
  .p-md-2 {
    padding: 16px;
  }
  .py-md-3 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px-md-3 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pt-md-3 {
    padding-top: 32px;
  }
  .pb-md-3 {
    padding-bottom: 32px;
  }
  .pl-md-3 {
    padding-left: 32px;
  }
  .pr-md-3 {
    padding-right: 32px;
  }
  .p-md-3 {
    padding: 32px;
  }
  .py-md-4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .px-md-4 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .pt-md-4 {
    padding-top: 40px;
  }
  .pb-md-4 {
    padding-bottom: 40px;
  }
  .pl-md-4 {
    padding-left: 40px;
  }
  .pr-md-4 {
    padding-right: 40px;
  }
  .p-md-4 {
    padding: 40px;
  }
  .py-md-5 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .px-md-5 {
    padding-left: 56px;
    padding-right: 56px;
  }
  .pt-md-5 {
    padding-top: 56px;
  }
  .pb-md-5 {
    padding-bottom: 56px;
  }
  .pl-md-5 {
    padding-left: 56px;
  }
  .pr-md-5 {
    padding-right: 56px;
  }
  .p-md-5 {
    padding: 56px;
  }
  .py-md-6 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px-md-6 {
    padding-left: 64px;
    padding-right: 64px;
  }
  .pt-md-6 {
    padding-top: 64px;
  }
  .pb-md-6 {
    padding-bottom: 64px;
  }
  .pl-md-6 {
    padding-left: 64px;
  }
  .pr-md-6 {
    padding-right: 64px;
  }
  .p-md-6 {
    padding: 64px;
  }
  .py-md-7 {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .px-md-7 {
    padding-left: 72px;
    padding-right: 72px;
  }
  .pt-md-7 {
    padding-top: 72px;
  }
  .pb-md-7 {
    padding-bottom: 72px;
  }
  .pl-md-7 {
    padding-left: 72px;
  }
  .pr-md-7 {
    padding-right: 72px;
  }
  .p-md-7 {
    padding: 72px;
  }
  .py-md-8 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .px-md-8 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .pt-md-8 {
    padding-top: 80px;
  }
  .pb-md-8 {
    padding-bottom: 80px;
  }
  .pl-md-8 {
    padding-left: 80px;
  }
  .pr-md-8 {
    padding-right: 80px;
  }
  .p-md-8 {
    padding: 80px;
  }
  .py-md-16 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px-md-16 {
    padding-left: 128px;
    padding-right: 128px;
  }
  .pt-md-16 {
    padding-top: 128px;
  }
  .pb-md-16 {
    padding-bottom: 128px;
  }
  .pl-md-16 {
    padding-left: 128px;
  }
  .pr-md-16 {
    padding-right: 128px;
  }
  .p-md-16 {
    padding: 128px;
  }
}
@media (min-width: 992px) {
  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .px-lg-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pl-lg-0 {
    padding-left: 0;
  }
  .pr-lg-0 {
    padding-right: 0;
  }
  .p-lg-0 {
    padding: 0;
  }
  .py-lg-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px-lg-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .pt-lg-1 {
    padding-top: 8px;
  }
  .pb-lg-1 {
    padding-bottom: 8px;
  }
  .pl-lg-1 {
    padding-left: 8px;
  }
  .pr-lg-1 {
    padding-right: 8px;
  }
  .p-lg-1 {
    padding: 8px;
  }
  .py-lg-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px-lg-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pt-lg-2 {
    padding-top: 16px;
  }
  .pb-lg-2 {
    padding-bottom: 16px;
  }
  .pl-lg-2 {
    padding-left: 16px;
  }
  .pr-lg-2 {
    padding-right: 16px;
  }
  .p-lg-2 {
    padding: 16px;
  }
  .py-lg-3 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px-lg-3 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pt-lg-3 {
    padding-top: 32px;
  }
  .pb-lg-3 {
    padding-bottom: 32px;
  }
  .pl-lg-3 {
    padding-left: 32px;
  }
  .pr-lg-3 {
    padding-right: 32px;
  }
  .p-lg-3 {
    padding: 32px;
  }
  .py-lg-4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .px-lg-4 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .pt-lg-4 {
    padding-top: 40px;
  }
  .pb-lg-4 {
    padding-bottom: 40px;
  }
  .pl-lg-4 {
    padding-left: 40px;
  }
  .pr-lg-4 {
    padding-right: 40px;
  }
  .p-lg-4 {
    padding: 40px;
  }
  .py-lg-5 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .px-lg-5 {
    padding-left: 56px;
    padding-right: 56px;
  }
  .pt-lg-5 {
    padding-top: 56px;
  }
  .pb-lg-5 {
    padding-bottom: 56px;
  }
  .pl-lg-5 {
    padding-left: 56px;
  }
  .pr-lg-5 {
    padding-right: 56px;
  }
  .p-lg-5 {
    padding: 56px;
  }
  .py-lg-6 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px-lg-6 {
    padding-left: 64px;
    padding-right: 64px;
  }
  .pt-lg-6 {
    padding-top: 64px;
  }
  .pb-lg-6 {
    padding-bottom: 64px;
  }
  .pl-lg-6 {
    padding-left: 64px;
  }
  .pr-lg-6 {
    padding-right: 64px;
  }
  .p-lg-6 {
    padding: 64px;
  }
  .py-lg-7 {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .px-lg-7 {
    padding-left: 72px;
    padding-right: 72px;
  }
  .pt-lg-7 {
    padding-top: 72px;
  }
  .pb-lg-7 {
    padding-bottom: 72px;
  }
  .pl-lg-7 {
    padding-left: 72px;
  }
  .pr-lg-7 {
    padding-right: 72px;
  }
  .p-lg-7 {
    padding: 72px;
  }
  .py-lg-8 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .px-lg-8 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .pt-lg-8 {
    padding-top: 80px;
  }
  .pb-lg-8 {
    padding-bottom: 80px;
  }
  .pl-lg-8 {
    padding-left: 80px;
  }
  .pr-lg-8 {
    padding-right: 80px;
  }
  .p-lg-8 {
    padding: 80px;
  }
  .py-lg-16 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px-lg-16 {
    padding-left: 128px;
    padding-right: 128px;
  }
  .pt-lg-16 {
    padding-top: 128px;
  }
  .pb-lg-16 {
    padding-bottom: 128px;
  }
  .pl-lg-16 {
    padding-left: 128px;
  }
  .pr-lg-16 {
    padding-right: 128px;
  }
  .p-lg-16 {
    padding: 128px;
  }
}
@media (min-width: 1200px) {
  .py-xl-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .px-xl-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .pt-xl-0 {
    padding-top: 0;
  }
  .pb-xl-0 {
    padding-bottom: 0;
  }
  .pl-xl-0 {
    padding-left: 0;
  }
  .pr-xl-0 {
    padding-right: 0;
  }
  .p-xl-0 {
    padding: 0;
  }
  .py-xl-1 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .px-xl-1 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .pt-xl-1 {
    padding-top: 8px;
  }
  .pb-xl-1 {
    padding-bottom: 8px;
  }
  .pl-xl-1 {
    padding-left: 8px;
  }
  .pr-xl-1 {
    padding-right: 8px;
  }
  .p-xl-1 {
    padding: 8px;
  }
  .py-xl-2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .px-xl-2 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pt-xl-2 {
    padding-top: 16px;
  }
  .pb-xl-2 {
    padding-bottom: 16px;
  }
  .pl-xl-2 {
    padding-left: 16px;
  }
  .pr-xl-2 {
    padding-right: 16px;
  }
  .p-xl-2 {
    padding: 16px;
  }
  .py-xl-3 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .px-xl-3 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pt-xl-3 {
    padding-top: 32px;
  }
  .pb-xl-3 {
    padding-bottom: 32px;
  }
  .pl-xl-3 {
    padding-left: 32px;
  }
  .pr-xl-3 {
    padding-right: 32px;
  }
  .p-xl-3 {
    padding: 32px;
  }
  .py-xl-4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .px-xl-4 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .pt-xl-4 {
    padding-top: 40px;
  }
  .pb-xl-4 {
    padding-bottom: 40px;
  }
  .pl-xl-4 {
    padding-left: 40px;
  }
  .pr-xl-4 {
    padding-right: 40px;
  }
  .p-xl-4 {
    padding: 40px;
  }
  .py-xl-5 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .px-xl-5 {
    padding-left: 56px;
    padding-right: 56px;
  }
  .pt-xl-5 {
    padding-top: 56px;
  }
  .pb-xl-5 {
    padding-bottom: 56px;
  }
  .pl-xl-5 {
    padding-left: 56px;
  }
  .pr-xl-5 {
    padding-right: 56px;
  }
  .p-xl-5 {
    padding: 56px;
  }
  .py-xl-6 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .px-xl-6 {
    padding-left: 64px;
    padding-right: 64px;
  }
  .pt-xl-6 {
    padding-top: 64px;
  }
  .pb-xl-6 {
    padding-bottom: 64px;
  }
  .pl-xl-6 {
    padding-left: 64px;
  }
  .pr-xl-6 {
    padding-right: 64px;
  }
  .p-xl-6 {
    padding: 64px;
  }
  .py-xl-7 {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .px-xl-7 {
    padding-left: 72px;
    padding-right: 72px;
  }
  .pt-xl-7 {
    padding-top: 72px;
  }
  .pb-xl-7 {
    padding-bottom: 72px;
  }
  .pl-xl-7 {
    padding-left: 72px;
  }
  .pr-xl-7 {
    padding-right: 72px;
  }
  .p-xl-7 {
    padding: 72px;
  }
  .py-xl-8 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .px-xl-8 {
    padding-left: 80px;
    padding-right: 80px;
  }
  .pt-xl-8 {
    padding-top: 80px;
  }
  .pb-xl-8 {
    padding-bottom: 80px;
  }
  .pl-xl-8 {
    padding-left: 80px;
  }
  .pr-xl-8 {
    padding-right: 80px;
  }
  .p-xl-8 {
    padding: 80px;
  }
  .py-xl-16 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .px-xl-16 {
    padding-left: 128px;
    padding-right: 128px;
  }
  .pt-xl-16 {
    padding-top: 128px;
  }
  .pb-xl-16 {
    padding-bottom: 128px;
  }
  .pl-xl-16 {
    padding-left: 128px;
  }
  .pr-xl-16 {
    padding-right: 128px;
  }
  .p-xl-16 {
    padding: 128px;
  }
}
@media (min-width: 576px) {
  .my-sm-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mx-sm-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .mt-sm-0 {
    margin-top: 0;
  }
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .ml-sm-0 {
    margin-left: 0;
  }
  .mr-sm-0 {
    margin-right: 0;
  }
  .m-sm-0 {
    margin: 0;
  }
  .my-sm-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx-sm-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mt-sm-1 {
    margin-top: 8px;
  }
  .mb-sm-1 {
    margin-bottom: 8px;
  }
  .ml-sm-1 {
    margin-left: 8px;
  }
  .mr-sm-1 {
    margin-right: 8px;
  }
  .m-sm-1 {
    margin: 8px;
  }
  .my-sm-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx-sm-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mt-sm-2 {
    margin-top: 16px;
  }
  .mb-sm-2 {
    margin-bottom: 16px;
  }
  .ml-sm-2 {
    margin-left: 16px;
  }
  .mr-sm-2 {
    margin-right: 16px;
  }
  .m-sm-2 {
    margin: 16px;
  }
  .my-sm-3 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx-sm-3 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .mt-sm-3 {
    margin-top: 32px;
  }
  .mb-sm-3 {
    margin-bottom: 32px;
  }
  .ml-sm-3 {
    margin-left: 32px;
  }
  .mr-sm-3 {
    margin-right: 32px;
  }
  .m-sm-3 {
    margin: 32px;
  }
  .my-sm-4 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .mx-sm-4 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .mt-sm-4 {
    margin-top: 40px;
  }
  .mb-sm-4 {
    margin-bottom: 40px;
  }
  .ml-sm-4 {
    margin-left: 40px;
  }
  .mr-sm-4 {
    margin-right: 40px;
  }
  .m-sm-4 {
    margin: 40px;
  }
  .my-sm-5 {
    margin-top: 56px;
    margin-bottom: 56px;
  }
  .mx-sm-5 {
    margin-left: 56px;
    margin-right: 56px;
  }
  .mt-sm-5 {
    margin-top: 56px;
  }
  .mb-sm-5 {
    margin-bottom: 56px;
  }
  .ml-sm-5 {
    margin-left: 56px;
  }
  .mr-sm-5 {
    margin-right: 56px;
  }
  .m-sm-5 {
    margin: 56px;
  }
  .my-sm-6 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx-sm-6 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .mt-sm-6 {
    margin-top: 64px;
  }
  .mb-sm-6 {
    margin-bottom: 64px;
  }
  .ml-sm-6 {
    margin-left: 64px;
  }
  .mr-sm-6 {
    margin-right: 64px;
  }
  .m-sm-6 {
    margin: 64px;
  }
  .my-sm-7 {
    margin-top: 72px;
    margin-bottom: 72px;
  }
  .mx-sm-7 {
    margin-left: 72px;
    margin-right: 72px;
  }
  .mt-sm-7 {
    margin-top: 72px;
  }
  .mb-sm-7 {
    margin-bottom: 72px;
  }
  .ml-sm-7 {
    margin-left: 72px;
  }
  .mr-sm-7 {
    margin-right: 72px;
  }
  .m-sm-7 {
    margin: 72px;
  }
  .my-sm-8 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .mx-sm-8 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mt-sm-8 {
    margin-top: 80px;
  }
  .mb-sm-8 {
    margin-bottom: 80px;
  }
  .ml-sm-8 {
    margin-left: 80px;
  }
  .mr-sm-8 {
    margin-right: 80px;
  }
  .m-sm-8 {
    margin: 80px;
  }
  .my-sm-16 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx-sm-16 {
    margin-left: 128px;
    margin-right: 128px;
  }
  .mt-sm-16 {
    margin-top: 128px;
  }
  .mb-sm-16 {
    margin-bottom: 128px;
  }
  .ml-sm-16 {
    margin-left: 128px;
  }
  .mr-sm-16 {
    margin-right: 128px;
  }
  .m-sm-16 {
    margin: 128px;
  }
}
@media (min-width: 768px) {
  .my-md-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mx-md-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .ml-md-0 {
    margin-left: 0;
  }
  .mr-md-0 {
    margin-right: 0;
  }
  .m-md-0 {
    margin: 0;
  }
  .my-md-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx-md-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mt-md-1 {
    margin-top: 8px;
  }
  .mb-md-1 {
    margin-bottom: 8px;
  }
  .ml-md-1 {
    margin-left: 8px;
  }
  .mr-md-1 {
    margin-right: 8px;
  }
  .m-md-1 {
    margin: 8px;
  }
  .my-md-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx-md-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mt-md-2 {
    margin-top: 16px;
  }
  .mb-md-2 {
    margin-bottom: 16px;
  }
  .ml-md-2 {
    margin-left: 16px;
  }
  .mr-md-2 {
    margin-right: 16px;
  }
  .m-md-2 {
    margin: 16px;
  }
  .my-md-3 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx-md-3 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .mt-md-3 {
    margin-top: 32px;
  }
  .mb-md-3 {
    margin-bottom: 32px;
  }
  .ml-md-3 {
    margin-left: 32px;
  }
  .mr-md-3 {
    margin-right: 32px;
  }
  .m-md-3 {
    margin: 32px;
  }
  .my-md-4 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .mx-md-4 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .mt-md-4 {
    margin-top: 40px;
  }
  .mb-md-4 {
    margin-bottom: 40px;
  }
  .ml-md-4 {
    margin-left: 40px;
  }
  .mr-md-4 {
    margin-right: 40px;
  }
  .m-md-4 {
    margin: 40px;
  }
  .my-md-5 {
    margin-top: 56px;
    margin-bottom: 56px;
  }
  .mx-md-5 {
    margin-left: 56px;
    margin-right: 56px;
  }
  .mt-md-5 {
    margin-top: 56px;
  }
  .mb-md-5 {
    margin-bottom: 56px;
  }
  .ml-md-5 {
    margin-left: 56px;
  }
  .mr-md-5 {
    margin-right: 56px;
  }
  .m-md-5 {
    margin: 56px;
  }
  .my-md-6 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx-md-6 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .mt-md-6 {
    margin-top: 64px;
  }
  .mb-md-6 {
    margin-bottom: 64px;
  }
  .ml-md-6 {
    margin-left: 64px;
  }
  .mr-md-6 {
    margin-right: 64px;
  }
  .m-md-6 {
    margin: 64px;
  }
  .my-md-7 {
    margin-top: 72px;
    margin-bottom: 72px;
  }
  .mx-md-7 {
    margin-left: 72px;
    margin-right: 72px;
  }
  .mt-md-7 {
    margin-top: 72px;
  }
  .mb-md-7 {
    margin-bottom: 72px;
  }
  .ml-md-7 {
    margin-left: 72px;
  }
  .mr-md-7 {
    margin-right: 72px;
  }
  .m-md-7 {
    margin: 72px;
  }
  .my-md-8 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .mx-md-8 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mt-md-8 {
    margin-top: 80px;
  }
  .mb-md-8 {
    margin-bottom: 80px;
  }
  .ml-md-8 {
    margin-left: 80px;
  }
  .mr-md-8 {
    margin-right: 80px;
  }
  .m-md-8 {
    margin: 80px;
  }
  .my-md-16 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx-md-16 {
    margin-left: 128px;
    margin-right: 128px;
  }
  .mt-md-16 {
    margin-top: 128px;
  }
  .mb-md-16 {
    margin-bottom: 128px;
  }
  .ml-md-16 {
    margin-left: 128px;
  }
  .mr-md-16 {
    margin-right: 128px;
  }
  .m-md-16 {
    margin: 128px;
  }
}
@media (min-width: 992px) {
  .my-lg-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mx-lg-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .mt-lg-0 {
    margin-top: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .ml-lg-0 {
    margin-left: 0;
  }
  .mr-lg-0 {
    margin-right: 0;
  }
  .m-lg-0 {
    margin: 0;
  }
  .my-lg-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx-lg-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mt-lg-1 {
    margin-top: 8px;
  }
  .mb-lg-1 {
    margin-bottom: 8px;
  }
  .ml-lg-1 {
    margin-left: 8px;
  }
  .mr-lg-1 {
    margin-right: 8px;
  }
  .m-lg-1 {
    margin: 8px;
  }
  .my-lg-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx-lg-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mt-lg-2 {
    margin-top: 16px;
  }
  .mb-lg-2 {
    margin-bottom: 16px;
  }
  .ml-lg-2 {
    margin-left: 16px;
  }
  .mr-lg-2 {
    margin-right: 16px;
  }
  .m-lg-2 {
    margin: 16px;
  }
  .my-lg-3 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx-lg-3 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .mt-lg-3 {
    margin-top: 32px;
  }
  .mb-lg-3 {
    margin-bottom: 32px;
  }
  .ml-lg-3 {
    margin-left: 32px;
  }
  .mr-lg-3 {
    margin-right: 32px;
  }
  .m-lg-3 {
    margin: 32px;
  }
  .my-lg-4 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .mx-lg-4 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .mt-lg-4 {
    margin-top: 40px;
  }
  .mb-lg-4 {
    margin-bottom: 40px;
  }
  .ml-lg-4 {
    margin-left: 40px;
  }
  .mr-lg-4 {
    margin-right: 40px;
  }
  .m-lg-4 {
    margin: 40px;
  }
  .my-lg-5 {
    margin-top: 56px;
    margin-bottom: 56px;
  }
  .mx-lg-5 {
    margin-left: 56px;
    margin-right: 56px;
  }
  .mt-lg-5 {
    margin-top: 56px;
  }
  .mb-lg-5 {
    margin-bottom: 56px;
  }
  .ml-lg-5 {
    margin-left: 56px;
  }
  .mr-lg-5 {
    margin-right: 56px;
  }
  .m-lg-5 {
    margin: 56px;
  }
  .my-lg-6 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx-lg-6 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .mt-lg-6 {
    margin-top: 64px;
  }
  .mb-lg-6 {
    margin-bottom: 64px;
  }
  .ml-lg-6 {
    margin-left: 64px;
  }
  .mr-lg-6 {
    margin-right: 64px;
  }
  .m-lg-6 {
    margin: 64px;
  }
  .my-lg-7 {
    margin-top: 72px;
    margin-bottom: 72px;
  }
  .mx-lg-7 {
    margin-left: 72px;
    margin-right: 72px;
  }
  .mt-lg-7 {
    margin-top: 72px;
  }
  .mb-lg-7 {
    margin-bottom: 72px;
  }
  .ml-lg-7 {
    margin-left: 72px;
  }
  .mr-lg-7 {
    margin-right: 72px;
  }
  .m-lg-7 {
    margin: 72px;
  }
  .my-lg-8 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .mx-lg-8 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mt-lg-8 {
    margin-top: 80px;
  }
  .mb-lg-8 {
    margin-bottom: 80px;
  }
  .ml-lg-8 {
    margin-left: 80px;
  }
  .mr-lg-8 {
    margin-right: 80px;
  }
  .m-lg-8 {
    margin: 80px;
  }
  .my-lg-16 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx-lg-16 {
    margin-left: 128px;
    margin-right: 128px;
  }
  .mt-lg-16 {
    margin-top: 128px;
  }
  .mb-lg-16 {
    margin-bottom: 128px;
  }
  .ml-lg-16 {
    margin-left: 128px;
  }
  .mr-lg-16 {
    margin-right: 128px;
  }
  .m-lg-16 {
    margin: 128px;
  }
}
@media (min-width: 1200px) {
  .my-xl-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .mx-xl-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .mt-xl-0 {
    margin-top: 0;
  }
  .mb-xl-0 {
    margin-bottom: 0;
  }
  .ml-xl-0 {
    margin-left: 0;
  }
  .mr-xl-0 {
    margin-right: 0;
  }
  .m-xl-0 {
    margin: 0;
  }
  .my-xl-1 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .mx-xl-1 {
    margin-left: 8px;
    margin-right: 8px;
  }
  .mt-xl-1 {
    margin-top: 8px;
  }
  .mb-xl-1 {
    margin-bottom: 8px;
  }
  .ml-xl-1 {
    margin-left: 8px;
  }
  .mr-xl-1 {
    margin-right: 8px;
  }
  .m-xl-1 {
    margin: 8px;
  }
  .my-xl-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .mx-xl-2 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .mt-xl-2 {
    margin-top: 16px;
  }
  .mb-xl-2 {
    margin-bottom: 16px;
  }
  .ml-xl-2 {
    margin-left: 16px;
  }
  .mr-xl-2 {
    margin-right: 16px;
  }
  .m-xl-2 {
    margin: 16px;
  }
  .my-xl-3 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .mx-xl-3 {
    margin-left: 32px;
    margin-right: 32px;
  }
  .mt-xl-3 {
    margin-top: 32px;
  }
  .mb-xl-3 {
    margin-bottom: 32px;
  }
  .ml-xl-3 {
    margin-left: 32px;
  }
  .mr-xl-3 {
    margin-right: 32px;
  }
  .m-xl-3 {
    margin: 32px;
  }
  .my-xl-4 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .mx-xl-4 {
    margin-left: 40px;
    margin-right: 40px;
  }
  .mt-xl-4 {
    margin-top: 40px;
  }
  .mb-xl-4 {
    margin-bottom: 40px;
  }
  .ml-xl-4 {
    margin-left: 40px;
  }
  .mr-xl-4 {
    margin-right: 40px;
  }
  .m-xl-4 {
    margin: 40px;
  }
  .my-xl-5 {
    margin-top: 56px;
    margin-bottom: 56px;
  }
  .mx-xl-5 {
    margin-left: 56px;
    margin-right: 56px;
  }
  .mt-xl-5 {
    margin-top: 56px;
  }
  .mb-xl-5 {
    margin-bottom: 56px;
  }
  .ml-xl-5 {
    margin-left: 56px;
  }
  .mr-xl-5 {
    margin-right: 56px;
  }
  .m-xl-5 {
    margin: 56px;
  }
  .my-xl-6 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .mx-xl-6 {
    margin-left: 64px;
    margin-right: 64px;
  }
  .mt-xl-6 {
    margin-top: 64px;
  }
  .mb-xl-6 {
    margin-bottom: 64px;
  }
  .ml-xl-6 {
    margin-left: 64px;
  }
  .mr-xl-6 {
    margin-right: 64px;
  }
  .m-xl-6 {
    margin: 64px;
  }
  .my-xl-7 {
    margin-top: 72px;
    margin-bottom: 72px;
  }
  .mx-xl-7 {
    margin-left: 72px;
    margin-right: 72px;
  }
  .mt-xl-7 {
    margin-top: 72px;
  }
  .mb-xl-7 {
    margin-bottom: 72px;
  }
  .ml-xl-7 {
    margin-left: 72px;
  }
  .mr-xl-7 {
    margin-right: 72px;
  }
  .m-xl-7 {
    margin: 72px;
  }
  .my-xl-8 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .mx-xl-8 {
    margin-left: 80px;
    margin-right: 80px;
  }
  .mt-xl-8 {
    margin-top: 80px;
  }
  .mb-xl-8 {
    margin-bottom: 80px;
  }
  .ml-xl-8 {
    margin-left: 80px;
  }
  .mr-xl-8 {
    margin-right: 80px;
  }
  .m-xl-8 {
    margin: 80px;
  }
  .my-xl-16 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .mx-xl-16 {
    margin-left: 128px;
    margin-right: 128px;
  }
  .mt-xl-16 {
    margin-top: 128px;
  }
  .mb-xl-16 {
    margin-bottom: 128px;
  }
  .ml-xl-16 {
    margin-left: 128px;
  }
  .mr-xl-16 {
    margin-right: 128px;
  }
  .m-xl-16 {
    margin: 128px;
  }
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.g-1 {
  gap: 8px;
}
.g-2 {
  gap: 16px;
}

.pb-half {
  padding-top: 4px;
  padding-bottom: 4px;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1232px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
    width: 96%;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.row > * {
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-label {
  margin-bottom: 0.5rem;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-append {
  display: flex;
  margin-left: -1px;
}
.input-group-append .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

.collapse:not(.show) {
  display: none;
}

.collapse.show {
  display: block;
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas.show {
  transform: none;
  visibility: visible;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
}
@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
}
.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

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

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

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-body {
  color: #212529 !important;
}

.text-body-secondary {
  color: #6c757d !important;
}

.text-reset {
  color: inherit !important;
}

.text-warning {
  color: #ffc107 !important;
}

@media (min-width: 576px) {
  .text-sm-start {
    text-align: start !important;
  }
  .text-sm-end {
    text-align: end !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-start {
    text-align: start !important;
  }
  .text-md-end {
    text-align: end !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-start {
    text-align: start !important;
  }
  .text-lg-end {
    text-align: end !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-start {
    text-align: start !important;
  }
  .text-xl-end {
    text-align: end !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.hov_box {
  display: inline-block;
  transition: 0.25s;
}
.hov_box:hover {
  box-shadow: 0 0 10px 3px rgba(0, 180, 216, 0.3);
}

.box {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.box:hover {
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
  border-color: #00b4d8;
  transform: translateY(-4px);
}
.box-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(to bottom right, #00B4D8, rgb(0, 137.5, 165));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3);
  transition: transform 0.3s ease;
}
.box-card-icon svg {
  width: 24px;
  height: 24px;
}
.box-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #00B4D8, rgb(0, 137.5, 165));
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-icon svg {
  width: 12px;
  height: 12px;
}

.divider-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, #00B4D8);
}
.divider-line.reverse {
  background: linear-gradient(to left, transparent, #00B4D8);
}

.flip {
  transform: scaleX(-1);
}

.logo_invert {
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.inset {
  inset: 0;
}

.read-more-wrap .excerpt-short,
.read-more-wrap .excerpt-full {
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
.read-more-wrap .excerpt-short {
  opacity: 1;
  max-height: 200px;
}
.read-more-wrap .excerpt-full {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.read-more-wrap .read-more-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-top: 8px;
  display: block;
}
.read-more-wrap .read-more-toggle:hover {
  opacity: 0.8;
}
.read-more-wrap .read-more-toggle .read-less-text {
  display: none;
}
.read-more-wrap.expanded .excerpt-short {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.read-more-wrap.expanded .excerpt-full {
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
}
.read-more-wrap.expanded .read-more-toggle .read-more-text {
  display: none;
}
.read-more-wrap.expanded .read-more-toggle .read-less-text {
  display: inline;
}

.top-header .header-info a, .top-header .header-actions a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-header .header-info a:hover, .top-header .header-actions a:hover {
  color: #00B4D8;
}

.page-header {
  position: relative;
  z-index: 999;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.page-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  animation: header-slide-down 0.3s ease;
}
.page-header .navbar {
  flex-wrap: nowrap;
}
.page-header .menu_container {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .page-header .menu_container {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    transform: none !important;
    z-index: auto;
    overflow-y: visible;
    display: block !important;
  }
}
.page-header .menu_container.is_active {
  transform: translateX(0);
}
.page-header .menu_container .navbar-nav {
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .page-header .menu_container .navbar-nav {
    flex-direction: row;
    padding: 0;
    gap: 16px;
  }
}
.page-header .menu_container .navbar-nav .nav-item .nav-link {
  display: block;
  color: white;
  font-size: 22px;
  font-weight: 600;
  padding: 24px 0;
  border-bottom: 1px solid rgba(1, 181, 216, 0.3);
}
@media (min-width: 768px) {
  .page-header .menu_container .navbar-nav .nav-item .nav-link {
    color: inherit;
    font-size: 14px;
    padding: 8px;
    border-bottom: none;
  }
}
.page-header .menu_container .navbar-nav .nav-item .nav-link:hover, .page-header .menu_container .navbar-nav .nav-item .nav-link:active, .page-header .menu_container .navbar-nav .nav-item .nav-link:focus {
  color: #00B4D8;
}
.page-header .menu_container .navbar-nav .nav-item.current-menu-item {
  color: #00B4D8;
}
.page-header .menu_container .navbar-nav .nav-item.current-menu-item a {
  color: #00B4D8;
}
@media (max-width: 768px) {
  .page-header .menu_container .navbar-nav .nav-item:last-child a {
    border: none;
  }
}
.page-header .menu_container #toggle_menu {
  border: none;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}
.page-header .menu_container #toggle_menu:focus {
  outline: none;
}
.page-header .menu_container #toggle_menu .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.page-header .menu_container #toggle_menu .hamburger-inner, .page-header .menu_container #toggle_menu .hamburger-inner::before, .page-header .menu_container #toggle_menu .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.page-header .menu_container #toggle_menu .hamburger-inner::before, .page-header .menu_container #toggle_menu .hamburger-inner::after {
  content: "";
  display: block;
}
.page-header .menu_container #toggle_menu .hamburger-inner::before {
  top: -10px;
}
.page-header .menu_container #toggle_menu .hamburger-inner::after {
  bottom: -10px;
}
.page-header .menu_container #toggle_menu.is_active .hamburger-inner {
  background-color: transparent !important;
}
.page-header .menu_container #toggle_menu.is_active .hamburger-inner::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #000;
}
.page-header .menu_container #toggle_menu.is_active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #000;
}
.page-header .hamburger_container .hamburger {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  margin: 0;
  overflow: visible;
  padding: 4px;
  text-transform: none;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  transition-timing-function: linear;
}
.page-header .hamburger_container .hamburger.is_active, .page-header .hamburger_container .hamburger:hover {
  transform: scale(1.06);
}
.page-header .hamburger_container .hamburger.is_active .hamburger-inner,
.page-header .hamburger_container .hamburger.is_active .hamburger-inner::after,
.page-header .hamburger_container .hamburger.is_active .hamburger-inner::before {
  background-color: #000;
}
.page-header .hamburger_container .hamburger .hamburger-box {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 32px;
}
.page-header .hamburger_container .hamburger .hamburger-inner {
  display: block;
  margin-top: -2px;
  top: 50%;
  background-color: #000;
  border-radius: 1px;
  height: 4px;
  position: absolute;
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: ease;
  width: 32px;
}
.page-header .hamburger_container .hamburger .hamburger-inner::after, .page-header .hamburger_container .hamburger .hamburger-inner::before {
  content: "";
  display: block;
  background-color: #000;
  border-radius: 1px;
  height: 4px;
  position: absolute;
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: ease;
  width: 32px;
}
.page-header .hamburger_container .hamburger .hamburger-inner::before {
  top: -8px;
}
.page-header .hamburger_container .hamburger .hamburger-inner::after {
  bottom: -8px;
}
.page-header .hamburger_container .hamburger.hamburger--squeeze .hamburger-inner {
  transition-duration: 75ms;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.page-header .hamburger_container .hamburger.hamburger--squeeze .hamburger-inner::before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.page-header .hamburger_container .hamburger.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.page-header .hamburger_container .hamburger.hamburger--squeeze.is_active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.page-header .hamburger_container .hamburger.hamburger--squeeze.is_active .hamburger-inner::before {
  opacity: 0;
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
}
.page-header .hamburger_container .hamburger.hamburger--squeeze.is_active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}

.page-header-placeholder {
  display: none;
}

@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
footer.footer .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.footer .menu ul li a {
  padding: 8px;
}
footer.footer .menu ul li:first-child a {
  padding-top: 0;
}
/*# sourceMappingURL=maps/style.css.map */
