/******** Font ********/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");

/* Fonts */
:root {
  --clr-primary: #974a4a;
  --clr-black: #000000;
  --clr-white: #ffff;
  --clr-white-200: #faf8f5;
  --clr-text: #6b6967;
  --clr-title: #1a1816;
  --clr-bg: #1a1715;
  --ff-body: "DM Sans", sans-serif;
  --ff-accent: "Source Serif 4", serif;
  --transition: all 0.4s ease-in-out;
  --swiper-scrollbar-bottom: 0px;
  --swiper-scrollbar-size: 2px;
  --swiper-scrollbar-drag-bg-color: var(--clr-primary);
  --swiper-pagination-color: var(--clr-primary);
  --swiper-pagination-progressbar-size: 3px;
  --swiper-pagination-progressbar-bg-color: #d6d6d6;
}

/* Browser Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

::selection {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.overlay::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    rgba(26, 23, 21, 0.45) 0%,
    rgba(26, 23, 21, 0.1) 30%,
    rgba(26, 23, 21, 0.1) 60%,
    rgba(26, 23, 21, 0.7) 100%
  );
}

section {
  position: relative;
  z-index: 1;
}

body {
  text-rendering: optimizeSpeed;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--clr-text);
}

p {
  margin-bottom: 0;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--clr-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  color: var(--clr-title);
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

.alanic__img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.alanic__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alamic__radius {
  border-radius: 10px;
  overflow: hidden;
}

.text__white h1,
.text__white h2,
.text__white h3,
.text__white h4,
.text__white h5,
.text__white h6,
.text__white p,
.text__white a {
  color: var(--clr-white-200);
}

.alanic__heading h1 {
  line-height: 1.02;
  font-size: 96px;
  font-weight: 600;
}

.light__bg {
  background-color: var(--clr-white-200);
}

.black__bg {
  background-color: var(--clr-bg);
}

.alanic__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  padding: 14px 18px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 1px;
  color: var(--clr-white-200);
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.alanic__btn:hover {
  border-color: var(--clr-white-200);
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}
.alanic__btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg,
    transparent 25deg,
    rgba(255, 255, 255, 0) 32deg,
    rgba(255, 255, 255, 1) 45deg,
    rgba(255, 255, 255, 0) 58deg,
    transparent 70deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
  animation: beam-spin 7s linear infinite;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 85px;
  margin: 0 auto;
}

.custom__pad {
  padding: 90px 0;
}

.alanic__statement .alanic__heading h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-title);
}
.btn-close.alanic__btn-close:focus {
  box-shadow: unset;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 99999;
  display: flex;
  gap: 6px;
}
.cursor .dot {
  display: inline-flex;
  width: 6px;
  height: 6px;
  background-color: var(--clr-black);
  border-radius: 50%;
  align-items: center;
  border: 1px solid #2b2a2aa8;
  justify-content: center;
  transition: transform 0.1s ease;
}
.cursor .dot p {
  display: none;
}
.cursor.is-hover .dot {
  width: 40px;
  height: 40px;
  background-color: #0000001c;
 transition: transform 0.1s ease;
}
.cursor.is-hover .dot p {
  display: flex;
  color: var(--clr-white);
  font-size: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  transition: transform 0.1s ease;
  display: none;
}

.cursor img {
  width: 35px;
  object-fit: contain;
}



/* alanic__header------------------------------------ */
.alanic__header .offcanvas {
  width: 100%;
  height: 100vh;
  z-index: 99;
}
.offcanvas-backdrop.show {
  opacity: 0;
  display: none;
}
.alanic__header-menu .navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: center;
  flex: 1 1 auto;
}

.alanic__logo img {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
}

.alanic__header-menu .nav-link {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  position: relative;
  padding: 0 !important;
  margin: 0 14px;
  color: var(--clr-white-200);
}

.alanic__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 24px 0 10px;
}

.alanic__header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-animation: headerSticky 0.7s ease-in-out;
  animation: headerSticky 0.7s ease-in-out;
  background: rgba(20, 18, 16, 0.62);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 150px;
  display: flex;
  align-items: center;
}

@-webkit-keyframes headerSticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.alanic__header .icon.icon-grid {
  fill: #fff;
  font-size: 20px;
  width: 1em;
  height: 1em;
}

.alanic__header .navbar-toggler,
.alanic__header .navbar-toggler:focus {
  border: none;
  box-shadow: unset;
}

.header__container {
  display: flex;
  width: 100%;
  max-width: 1280px;
  padding: 0 85px;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 10px;
}

.alanic__offcanvas-menu .navbar-nav {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 50px;
  flex: 0 0 300px;
}

.alanic__offcanvas-menu .navbar-nav .nav-link {
  margin: 8px 0;
  font-size: 48px;
  font-weight: 600;
  color: #aaa;
  transition: var(--transition);
}
.alanic__offcanvas-menu .navbar-nav .nav-link:hover {
  color: var(--clr-title);
  transition: var(--transition);
}
.alanic__offcanvas-social {
  display: flex;
  padding: 85px 125px 45px;
  background: #f2f2f2;
  flex-direction: column;
  flex: 0 0 calc(100% - 350px);
}

.alanic__offcanvas-social ul {
  margin-top: auto;
}

.alanic__offcanvas-social ul li a {
  margin-right: 40px;
  font-size: 12px;
  color: #aaa;
}

/* banner------------------------------------ */
.alanic__banner-wrap {
  position: absolute;
  top: 220px;
  left: 0;
  width: 100%;
}

.alanic__banner-wrap p {
  font-weight: 400;
}

.alanic__banner-content .alanic__content {
  width: 80%;
  margin: 0 0 40px;
}

.alanic__banner-content .alanic__heading {
  margin: 0 0 24px;
}

/* banner-----------------==------------------- */
/* alanic__statement ============================= */

.alanic__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--clr-primary);
  padding: 3px 14px;
  margin: 0 6px;
  border-radius: 3px;
  isolation: isolate;
}

.alanic__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(151, 74, 74, 0.3);
  border-radius: inherit;
  pointer-events: none;
}
.alanic__mark::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  z-index: 1;

  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg,
    transparent 25deg,
    rgba(151, 74, 74, 0.1) 32deg,
    rgba(151, 74, 74, 1) 45deg,
    rgba(151, 74, 74, 0.1) 58deg,
    transparent 70deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 3px rgba(151, 74, 74, 0.5));
  animation: beam-spin 7s linear infinite;
}

@property --beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes beam-spin {
  from {
    --beam-angle: 0deg;
  }

  to {
    --beam-angle: 360deg;
  }
}
/* alanic__statement ============================= */
.alanic__subhead p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.alanic__line {
  display: inline-flex;
  width: 48px;
  height: 1px;
  background: var(--clr-primary);
  margin-right: 14px;
}

.alanic__heading h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.27778;
  margin-bottom: 16px;
}
.alanic__featured-wrapper {
  z-index: 2;
  position: relative;
}
.alanic__featured-single {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-top: 1px solid #8f662a33;
  padding: 50px 0;
  z-index: 2;
  transition: var(--transition);
}

.alanic__featured-single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(151, 74, 74, 0.95) 50%,
    transparent
  );
  background-size: 28% 100%;
  background-repeat: no-repeat;
  background-position: -28% 0;
  animation: divider-sweep 9s linear infinite;
  filter: drop-shadow(0 0 4px rgba(151, 74, 74, 0.55));
  z-index: -1;
}

@keyframes divider-sweep {
  to {
    background-position: 128% 0;
  }
}

.alanic__featured-wrapper .alanic__featured-single:last-child {
  padding-bottom: 0;
}

.alanic__featured-single > * {
  width: 46%;
}
.alanic__featured-single .alanic__img img {
  transform: scale(1);
  transition: var(--transition);
}
.alanic__featured-single:hover .alanic__img img {
  transform: scale(1.05);
  transition: var(--transition);
}

.alanic__featured-content h3 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.84px;
  margin-bottom: 24px;
}

.alanic__featured-content p {
  font-size: 18px;
  line-height: 1.55;
}

.alanic__btn-outline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--clr-title);
  padding-bottom: 4px;
  width: fit-content;
  color: var(--clr-title);
  transition: all 0.4s ease-in-out;
}

.alanic__btn-outline span {
  display: inline-flex;
  width: 14px;
}

.alanic__featured-content .alanic__btnwrap {
  margin-top: 36px;
}

.alanic__featured-wrapper .alanic__featured-single:nth-child(2n) {
  flex-direction: row-reverse;
}

.alanic__featured .alanic__headwrap {
  margin-bottom: 50px;
}

/* category=============================== */
.alanic__category-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  justify-content: center;
}

.alanic__category-wrapper > * {
  width: 24%;
  position: relative;
}

.alanic__category-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 16px;
}

.alanic__category-cont h6 {
  color: var(--clr-white-200);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.8px;
}

.alanic__category-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.alanic__category-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.alanic__category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alanic__category-box:not(:has(.alanic__category-img)) {
  background-color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}
.alanic__category-box:not(:has(.alanic__category-img)):hover {
  background-color: var(--clr-title);
  transition: all 0.4s ease-in-out;
}
.alanic__category-box:not(:has(.alanic__category-img))
  .alanic__category-cont
  h6 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.alanic__category-box:not(:has(.alanic__category-img))
  .alanic__category-cont
  h6
  span
  img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(20%) saturate(34%)
    hue-rotate(206deg) brightness(105%) contrast(105%);
}

/* alanic__shipped  ==============================*/
.alanic__shipped .alanic__heading h2 {
  font-size: 36px;
  line-height: 1.2;
}

.alanic__shipped .alanic__headwrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 40px;
}

.alanic__shipped .alanic__subhead p {
  margin-bottom: 0;
}

.alanic__shipped-cont p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 6px;
}

.alanic__shipped-cont h5 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--clr-title);
  margin: 0;
}

.alanic__shipped-cont {
  margin-top: 18px;
}

/* work */
.alanic__work-single {
  position: relative;
}

.alanic__recent-work h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.alanic__work-cont h4 {
  font-size: 24px;
  line-height: 1.2;
}

.alanic__work-cont p {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  padding-top: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.alanic__work-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
}

.alanic__work-single .alanic__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 23, 21, 0.45) 0%,
    rgba(26, 23, 21, 0.1) 30%,
    rgba(26, 23, 21, 0.1) 60%,
    rgba(26, 23, 21, 0.7) 100%
  );
}

.alanic__recent-work .alanic__headwrap {
  margin-bottom: 40px;
}

/* alanic__cta================= */
.alanic__cta-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.alanic__video {
  position: relative;
}

.alanic__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alanic__cta h2 {
  font-size: 44px;
  letter-spacing: -0.53px;
  line-height: 46px;
  font-weight: 600;
  width: 44%;
}

.alanic__cta-bg.alanic__video.overlay::before {
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.28) 35%,
    rgba(0, 0, 0, 0) 65%
  );
}

.alanic__cta {
  position: relative;
  width: 100%;
  height: 140vh;
  padding: 0;
  margin: 0;
}

.alanic__cta-sticky {
  position: sticky;
  top: 15vh;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* alanic__quote-sec*/
.alanic__quote-sec .alanic__heading h3 {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.alanic__quote-sec .alanic__content p {
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 30px;
}

/* alanic__work-approch========================== */
.alanic__work-approch h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.alanic__work-approch .alanic__headwrap {
  margin-bottom: 40px;
}

.alanic__approch-cont h6 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-title);
  margin-bottom: 12px;
}

.alanic__approch-cont p {
  font-size: 18px;
  line-height: 1.6;
  font-family: "Roboto", Georgia, serif;
  font-weight: 400;
  opacity: 0.6;
}

.alanic__approch-single .alanic__img {
  margin-bottom: 28px;
  height: unset;
}

.alanic__approch-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 64px;
  justify-content: center;
}

.alanic__approch-wrap > * {
  width: 47%;
  transition: var(--transition);
}
.alanic__approch-single img {
  transform: scale(1);
  transition: var(--transition);
}
.alanic__approch-single:hover img {
  transform: scale(1.03);
  transition: var(--transition);
}
/* alanic__counter================ */
.alanic__counter-single h2 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 8px;
}

.alanic__counter-single p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
}

.alanic__counter-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.alanic__counter-wrap > * {
  width: 33%;
}

.alanic__counter-desc p {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  width: 38%;
  text-align: center;
}

/* .alanic__cta-contact========================== */
.alanic__cta-contact h2 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.64px;
  font-family: var(--ff-accent);
  width: 50%;
  margin: 0 auto 40px;
  color: var(--clr-white);
}

.alanic__contact-mail p {
  margin: 24px 0 0;
  font-size: 13px;
  color: #999693;
  letter-spacing: 0.52px;
}

.alanic__contact-mail p a {
  color: var(--clr-white);
}

.alanic__btn-white {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 1px;
  border: 1px solid var(--clr-white);
  background-color: var(--clr-white);
  color: var(--clr-title);
  transition: all 0.4s ease-in-out;
}
.alanic__btn-white:hover {
  background-color: transparent;
  transition: all 0.4s ease-in-out;
  color: var(--clr-white);
}
.alanic__cta-contact.custom__pad {
  padding: 140px 0;
}

/* alanic__footer======================= */
.alanic__footer-logo {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 4.4px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: var(--clr-title);
}
.alanic__footer-logo a{
  color: var(--clr-title);
}

.alanic__footer-title h5 {
  color: var(--clr-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.alanic__footer-cont {
  width: 60%;
}

.alanic__footer-cont li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 5px;
}

.alanic__footer-cont li a {
  border-bottom: 1px solid #ccc;
  color: var(--clr-title);
  font-weight: 500;
}

.alanic__footer-location {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-title);
  font-weight: 500;
}
.alanic__footer-location ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: start;
  row-gap: 0;
}
.alanic__footer-location ul li a {
  color: var(--clr-title);
  position: relative;
}
.alanic__footer-location ul li {
  position: relative;
  padding-right: 8px;
}
.alanic__footer-location ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--clr-title);
  transform: translateY(-50%);
}
.alanic__footer-location ul li:last-child::before{
  display: none;
}
.alanic__footer-nav li {
  position: relative;
  width: fit-content;
}
.alanic__footer-nav li::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-bg);
  transition: var(--transition);
}
.alanic__footer-nav li:hover::before {
  width: 100%;
  transition: var(--transition);
}
.alanic__footer-nav li a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-title);
  font-weight: 500;
}

.alanic__footer-nav li + li {
  margin-top: 8px;
}

.alanic__footer-bottom {
  display: flex;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #e2e2e2;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.alanic__footer-bottom a {
  color: var(--clr-text);
}

.alanic__footer-top {
  margin-bottom: 64px;
}

.alanic__footer.custom__pad {
  padding-bottom: 40px;
}

/* alanic__location======================== */
.alanic__location-wrap {
  overflow: hidden;
  border-top: 1px solid #e8e3dd;
  border-bottom: 1px solid #e8e3dd;
  padding: 28px 0;
  background: var(--clr-white-200);
}

.alanic__location-wrap ul {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.alanic__location-wrap ul li p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3.08px;
  text-transform: uppercase;
}

.alanic__location-wrap li span {
  display: inline-flex;
  font-size: 14px;
  color: var(--clr-primary);
}

.alanic__location-wrap li {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  align-items: center;
}
