:root {
  --mainColor: #0095f5;
  --titleColor: #5e5e5e;
  --fontRoboto: "Roboto", serif;
  --fontSty: "Cherry Swash", serif;
  --fontRokkitt: "Rokkitt", serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fontRokkitt);
}
.title_font {
  font-family: var(--fontSty) !important;
}
.title_color {
  color: #5e5e5e;
}
/* Font sizes */
.text_xs {
  font-size: 0.75rem;
  line-height: 1rem;
} /* 12px */
.text_sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
} /* 14px*/
.text_base {
  font-size: 1rem;
  line-height: 1.5rem;
} /* 16px */
.text_lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
} /* 18px */
.text_xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
} /* 20px */
.text_2xl {
  font-size: 1.5rem;
  line-height: 2rem;
} /* 24px */
@media screen and (max-width: 991px) {
  .text_2xl {
    font-size: 1rem;
  }
}
.text_3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
} /* 30px */
@media screen and (max-width: 991px) {
  .text_3xl {
    font-size: 1.3rem;
    line-height: initial;
  }
}
@media screen and (max-width: 767px) {
  .text_3xl {
    font-size: 1rem;
  }
}
.text_4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
} /* 36px */
@media screen and (max-width: 991px) {
  .text_4xl {
    font-size: 1.5rem;
  }
}
.text_5xl {
  font-size: 3rem;
  line-height: 1;
} /* 48px */
@media screen and (max-width: 1300px) {
  .text_5xl {
    font-size: 2rem;
  }
}
.text_6xl {
  font-size: 3.75rem;
  line-height: 1;
} /* 64px */
@media screen and (max-width: 1300px) {
  .text_6xl {
    font-size: 2rem;
  }
}
.text_7xl {
  font-size: 4.5rem;
  line-height: 1;
} /* 72px */
.text_8xl {
  font-size: 6rem;
  line-height: 1;
} /* 80px */
@media screen and (max-width: 1300px) {
  .text_8xl {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1199px) {
  .text_8xl {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1300px) {
  .text_8xl {
    font-size: 2rem;
    line-height: initial;
  }
}
.text_9xl {
  font-size: 8rem;
  line-height: 1;
} /* 96px */
.text_justify {
  text-align: justify;
}
/* Grid CSS */
/* Base grid class */
.grid {
  display: grid;
}
/* Grid columns */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
/* Grid rows */
.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}
.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}
/* Grid gaps */
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem; /* 4px */
}
.gap-2 {
  gap: 0.5rem; /* 8px */
}
.gap-3 {
  gap: 0.75rem; /* 12px */
}
.gap-4 {
  gap: 1rem; /* 16px */
}
.gap-5 {
  gap: 1.25rem; /* 20px */
}
.gap-6 {
  gap: 1.5rem; /* 24px */
}
.gap-8 {
  gap: 2rem; /* 32px */
}
.gap-10 {
  gap: 2.5rem; /* 40px */
}
.gap-12 {
  gap: 3rem; /* 48px */
}
.gap-16 {
  gap: 4rem; /* 64px */
}
.gap-20 {
  gap: 5rem; /* 80px */
}
.gap-24 {
  gap: 6rem; /* 96px */
}
.gap-32 {
  gap: 8rem; /* 128px */
}
.gap-40 {
  gap: 10rem; /* 160px */
}
.gap-48 {
  gap: 12rem; /* 192px */
}
.gap-56 {
  gap: 14rem; /* 224px */
}
.gap-64 {
  gap: 16rem; /* 256px */
}
/* Responsive breakpoints */
/* Small devices (sm) */
@media (min-width: 640px) {
  .sm_grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  /* Repeat for .sm\:grid-cols-2 up to .sm\:grid-cols-12 */
  /* ... */
}
/* Medium devices (md) */
@media (max-width: 991px) {
  .md_grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  /* Repeat for .md\:grid-cols-2 up to .md\:grid-cols-12 */
  /* ... */
}
/* Large devices (lg) */
@media (min-width: 1024px) {
  .lg_grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  /* Repeat for .lg\:grid-cols-2 up to .lg\:grid-cols-12 */
  /* ... */
}
/* Extra Large devices (xl) */
@media (min-width: 1280px) {
  .xl_grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  /* Repeat for .xl\:grid-cols-2 up to .xl\:grid-cols-12 */
  /* ... */
}
/* 2X Large devices (2xl) */
@media (min-width: 1536px) {
  .xl2_grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  /* Repeat for .2xl\:grid-cols-2 up to .2xl\:grid-cols-12 */
  /* ... */
}
/* END Grid CSS */
a,
a:hover {
  text-decoration: none;
}
.main_color {
  color: var(--mainColor) !important;
}
.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  text-overflow: unset !important;
}
.lines-1 {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.lines-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.lines-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.lines-4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.lines-5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
.lines-6 {
  -webkit-line-clamp: 6;
  line-clamp: 6;
}
.lines-7 {
  -webkit-line-clamp: 7;
  line-clamp: 7;
}
.lines-8 {
  -webkit-line-clamp: 8;
  line-clamp: 8;
}
.lines-9 {
  -webkit-line-clamp: 9;
  line-clamp: 9;
}
.lines-10 {
  -webkit-line-clamp: 10;
  line-clamp: 10;
}
.lines-11 {
  -webkit-line-clamp: 11;
  line-clamp: 11;
}
.lines-12 {
  -webkit-line-clamp: 12;
  line-clamp: 12;
}
.lines-13 {
  -webkit-line-clamp: 13;
  line-clamp: 13;
}
.lines-14 {
  -webkit-line-clamp: 14;
  line-clamp: 14;
}
.lines-15 {
  -webkit-line-clamp: 15;
  line-clamp: 15;
}
.scroll-progress,
body.layout-mobile .scroll-progress {
  display: none;
}
.scroll-progress .sp-left,
.scroll-progress .sp-right {
  position: fixed;
  width: 1px;
  top: 0;
  bottom: 4.5rem;
  z-index: 100;
}
.scroll-progress .sp-left {
  left: 4.5rem;
}
.scroll-progress .sp-left .sp-inner.progress {
  bottom: auto;
}
.scroll-progress .sp-right {
  right: 4.5rem;
}
.scroll-progress .sp-right .sp-inner.progress {
  top: auto;
}
.scroll-progress .sp-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  opacity: 0.4;
  transition: background 0.7s cubic-bezier(0.54, 0.18, 0.36, 0.81),
    height 0.7s cubic-bezier(0.54, 0.18, 0.36, 0.81),
    opacity 0.7s cubic-bezier(0.54, 0.18, 0.36, 0.81);
}
.scroll-progress .sp-inner.progress {
  background: #fff;
  opacity: 0.7;
  height: 0;
}
@media (min-width: 1400px) {
  .scroll-progress {
    display: block;
  }
}
/* THIS CODE NOT MY OWN */
a.arrow-up {
  position: fixed;
  bottom: 4.5rem;
  right: -4.5rem;
  width: 4.5rem;
  z-index: 9;
  color: #000;
  text-align: center;
  line-height: 1;
  transition: color 0.7s cubic-bezier(0.54, 0.18, 0.36, 0.81),
    right 0.7s cubic-bezier(0.54, 0.18, 0.36, 0.81);
  cursor: pointer;
}
a.arrow-up:focus,
a.arrow-up:hover {
  color: var(--mainColor);
}
a.arrow-up span {
  display: block;
  white-space: nowrap;
  font-variant-ligatures: common-ligatures;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  transform: translate(0, -47px) rotate(-90deg);
}
a.arrow-up.is-visible {
  right: 0;
}
/* Loader */
.wrap_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot-spinner {
  --uib-size: 2.8rem;
  --uib-speed: 0.9s;
  --uib-color: #183153;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}
.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.dot-spinner__dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}
.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}
.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}
.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}
.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}
.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}
.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}
.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}
.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}
.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}
.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}
.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}
.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}
.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}
.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}
@keyframes pulse0112 {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
/* END Loader */

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 18px;
  background-color: var(--mainColor);
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px var(--mainColor);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #fff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button .arr-1 {
  right: 16px;
}
.animated-button .arr-2 {
  left: -25%;
}
.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #c5e5e4;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}
.animated-button:hover .arr-1 {
  right: -25%;
}
.animated-button:hover .arr-2 {
  left: 16px;
}
.animated-button:hover .text {
  transform: translateX(12px);
}
.animated-button:hover svg {
  fill: #1f387e;
}
.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}
.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* $ => Header */
.navbar {
  position: relative;
  z-index: 99;
  width: 100%;
  padding: 0.5rem 0;
  /* height: 7rem; */
  background-color: #fff;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.navbar .brand {
  float: left;
  margin-top: -0.5rem;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
/* 2.1 Navbar elements */
.brand {
  line-height: 1.6;
  color: #fff;
  display: inline-block;
}
a.brand:hover,
a.brand:focus {
  text-decoration: none;
  color: #fff;
}
.brand img {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.65rem;
  height: 2.356rem;
}
.brand-info {
  display: inline-block;
}
.brand-name {
  font-weight: 600;
  font-size: 1.714rem;
  line-height: 1;
}
.brand-text {
  color: #7e7e7e;
  font-size: 0.857rem;
  font-weight: 300;
  margin-top: -0.3rem;
}
.navbar-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
.navbar-toggle:hover {
  color: var(--mainColor);
}
.navbar-toggle svg {
  width: 3rem;
}
.nav_bar {
  background-color: rgb(27, 27, 27);
  position: relative;
  display: flex;
  transition: 0.4s;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 10px;
  border-radius: 10px;
}
.bar1 {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  width: 30px;
  margin-bottom: 5px;
  transition: 0.4s;
  height: 5px;
}
.bar2 {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  width: 30px;
  position: absolute;
  transition: 0.4s;
  height: 5px;
}
.bar3_h {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  width: 30px;
  transition: 0.4s;
  height: 5px;
}
.bar4 {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  width: 30px;
  margin-top: 5px;
  transition: 0.4s;
  height: 5px;
}
.nav_bar:hover {
  border-radius: 30px;
}
.nav_bar:hover .bar3_h {
  transform: rotate(-45deg);
}
.nav_bar:hover .bar2 {
  transform: rotate(45deg);
}
.nav_bar:hover .bar1 {
  opacity: 0;
  width: 30px;
}
.nav_bar:hover .bar4 {
  opacity: 0;
  width: 30px;
}
/* ******************************** * */
.navbar .social-list {
  float: right;
  margin-right: 10%;
}
.social-list {
  overflow: hidden;
}
.social-list a {
  float: left;
  font-size: 1.428rem;
  line-height: 1;
  color: #fff;
  margin-left: 2rem;
}
.social-list a:first-child {
  margin-left: 0;
}
.social-list a:hover {
  color: #cee002;
  text-decoration: none;
}
.navbar-spacer {
  float: right;
  margin: -1rem 4.5rem 0;
  width: 1px;
  height: 3.3rem;
  background-color: #3c3c3c;
}
.navbar-address {
  float: right;
  font-weight: 600;
  text-transform: uppercase;
}
.navbar-2 {
  display: flex;
  align-items: center;
}
.navbar-2 .brand {
  margin-top: 0;
  width: auto;
}
.navbar-2 .social-list {
  float: none;
}
.navbar-2 .brand {
  float: none;
}
.navbar-2 .brand img {
  -webkit-filter: drop-shadow(0px 0px 6px #000);
  filter: drop-shadow(0px 0px 6px #000);
}
.col_1 {
  max-width: 60%;
  flex: auto;
  display: flex;
  align-items: center;
  place-content: flex-end;
}
.col_2 {
  max-width: 40%;
  flex: auto;
}
.social-list a img {
  width: 30px;
}
@media (max-width: 1199px) {
  .col_1 {
    max-width: 50%;
  }
  .col_2 {
    max-width: 50%;
  }
}
@media (max-width: 1240px) {
  .col_1 {
    max-width: 50%;
  }
  .col_2 {
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .col_1 {
    max-width: 30%;
  }
  .col_2 {
    max-width: 70%;
  }
  .display-2 {
    font-size: 2rem;
    line-height: 1.6;
  }
}
/* 2.2 Navbar affix */
.navbar.affix {
  position: fixed;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}
/* 2.3 Sidebar menu */
.click-capture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 99;
}
.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background-color: #272727;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (min-width: 992px) {
  .menu {
    width: 35%;
  }
}
.button_close_menu {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 4em;
  height: 4em;
  border: none;
  background: rgba(180, 83, 107, 0.11);
  border-radius: 5px;
  transition: 0.5s;
}
.X {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2em;
  height: 1.5px;
  background-color: rgb(255, 255, 255);
  transform: translateX(-50%) rotate(45deg);
}
.Y {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2em;
  height: 1.5px;
  background-color: #fff;
  transform: translateX(-50%) rotate(-45deg);
}
.button_close_menu > .close {
  position: absolute;
  display: flex;
  padding: 0.8rem 1.5rem;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  top: -70%;
  left: 50%;
  width: 3em;
  height: 1.7em;
  font-size: 12px;
  background-color: rgb(19, 22, 24);
  color: rgb(187, 229, 236);
  border: none;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
}
.button_close_menu:hover {
  background-color: rgb(211, 21, 21);
}
.button_close_menu:active {
  background-color: rgb(130, 0, 0);
}
.button_close_menu:hover > .close {
  animation: close 0.2s forwards 0.25s;
}
@keyframes close {
  100% {
    opacity: 1;
  }
}
.menu .menu-lang {
  opacity: 0;
  position: absolute;
  opacity: 0;
  left: 15%;
  top: 3rem;
  text-transform: uppercase;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: transform 0.5s 0.4s ease, opacity 0.5s 0.4s ease,
    color 0.3s ease;
  -o-transition: transform 0.5s 0.4s ease, opacity 0.5s 0.4s ease,
    color 0.3s ease;
  transition: transform 0.5s 0.4s ease, opacity 0.5s 0.4s ease, color 0.3s ease;
}
.menu-lang a {
  display: inline-block;
  margin-left: 1.5rem;
  color: #7e7e7e;
}
.menu-lang a:first-child {
  margin-left: 0;
}
.menu-lang .active,
.menu-lang a:hover {
  color: #cee002;
  text-decoration: none;
}
.menu-list {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 9rem;
  bottom: 10.5rem;
  padding-left: 15%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  font-weight: 600;
  letter-spacing: -0.025rem;
  list-style: none;
  margin: 0;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
  -o-transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
  transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
  width: 100%;
}
.menu-list li a {
  color: #7e7e7e;
}
.menu-list .active > a,
.menu-list li a:hover {
  text-decoration: none;
  color: #fff;
}
.menu-list > li {
  font-size: 1.95rem;
  line-height: 1;
}
.menu-list > li {
  margin-top: 2.7rem;
}
.menu-list > li:first-child {
  margin-top: 0;
}
.menu-list ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list ul li {
  font-size: 1.142rem;
  margin-top: 1.142rem;
}
.menu-list ul li:first-child {
  margin-top: 2.4rem;
}
.menu-footer {
  position: absolute;
  left: 15%;
  bottom: 4rem;
  z-index: 999;
}
.menu-footer .social-list {
  opacity: 0;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: all 0.5s 0.7s ease;
  -o-transition: all 0.5s 0.7s ease;
  transition: all 0.5s 0.7s ease;
}
.menu-footer .social-list a {
  color: #7e7e7e;
  margin: 0;
  margin-right: 2.7rem;
}
.menu-footer .social-list a:last-child {
  margin-right: 0;
}
.menu-footer .social-list a:hover {
  color: #cee002;
}
.menu-footer .copy {
  opacity: 0;
  /* display: none; */
  margin-top: 3.2rem;
  color: #fff;
  line-height: 1.71rem;
  -webkit-transform: translateY(2rem);
  -ms-transform: translateY(2rem);
  -o-transform: translateY(2rem);
  transform: translateY(2rem);
  -webkit-transition: all 0.5s 0.9s ease;
  -o-transition: all 0.5s 0.9s ease;
  transition: all 0.5s 0.9s ease;
}
.menu-footer .copy a {
  color: var(--mainColor);
}
.menu-is-opened .click-capture {
  visibility: visible;
}
.menu-is-opened .menu {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}
.menu-is-opened .menu .menu-lang,
.menu-is-opened .menu-list,
.menu-is-opened .menu .menu-footer .social-list,
.menu-is-opened .menu .menu-footer .copy {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}
.menu-is-closed .menu .menu-lang,
.menu-is-closed .menu .menu-list,
.menu-is-closed .menu .menu-footer .social-list,
.menu-is-closed .menu .menu-footer .copy {
  opacity: 0;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
/* # => Header */
/* $ => Main */
.line_after_title {
  position: relative;
  padding-bottom: 2rem;
}
.line_after_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background-color: #5e5e5e;
}
.title_banner_into {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem 3rem;
  font-size: 7rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.banner_intro {
  background-size: 100%;
  background-repeat: no-repeat;
}
.h_100vh {
  height: 100vh;
}
.bg_cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.bg_contain {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.card {
  border: 1px solid #dcdcdc;
}
.progress,
.progress-stacked {
  height: 0.9rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #efefef;
  border-radius: 0 30px 30px 0;
}
.progress-bar {
  border-radius: 0 30px 30px 0;
}
/* $ => Intro */
.v_line {
  width: 80%;
  height: 4px;
  background-color: #fff;
}
.v_line.v_line_t {
  top: 10%;
  right: 0;
}
.v_line.v_line_b {
  bottom: 15%;
  left: 0;
}
/* # => Intro */
.item_logo {
  height: 200px;
  overflow: hidden;
}
.contacts_info li a {
  color: #444;
}
.contacts_info li a:hover {
  color: #0095f5;
}
.contacts_info li span {
  display: block;
  width: 40px;
}
.contacts_info li span svg {
  width: 100%;
}
.logo_img {
  width: 100px;
}
.custom_pagination.swiper-pagination-bullets {
  bottom: 0px;
}
.custom_pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: var(--titleColor);
}
.custom_pagination.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet-active-prev {
  transform: scale(0.8);
}
.custom_pagination .swiper-pagination-bullet-active {
  background: #0095f5;
}
/* # => Main */
@media screen and (max-width: 991px) {
  .header_logo img {
    max-width: 200px;
  }
  .toggle-menu {
    display: block;
  }
  header {
    z-index: 9999;
  }
  header nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../imgs/pattern-menu.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: all 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    opacity: 0;
    pointer-events: none;
    user-select: none;
    visibility: hidden;
    transform: translateY(-20px);
  }
  header nav.showing {
    opacity: 1;
    pointer-events: all;
    user-select: all;
    visibility: visible;
    transform: translateY(0px);
  }
  header nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  header nav ul.gap-4 {
    flex-direction: column;
    gap: 4rem !important;
    width: 100%;
    justify-content: center;
  }
  header nav ul a {
    font-size: 30px !important;
    display: block;
    color: #eee;
  }
  header nav ul a:hover {
    color: var(--mainColor);
  }
  .bg_cover_mobile {
    height: 700px !important;
    background-position: center;
    background-attachment: fixed;
  }
  .bg_position_top {
    background-position: top;
    background-attachment: fixed;
  }
  .w_100 {
    width: 100% !important;
  }
  .menu-list li a {
    font-size: 1rem;
  }
  .menu-list > li {
    margin-top: 1rem;
  }
  .h_sm_300px {
    height: 300px;
  }
  .text_8xl {
    font-size: 2.5rem;
    line-height: initial;
  }
  .line_after_title {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem !important;
}
} /* 991px */
/* # => Responsive styles for high-resolution displays with 144dpi and <= 120dpi */
@media (min-resolution: 120dpi) and (max-resolution: 144dpi) {
  .text_3xl {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .text_2xl {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .text_6xl {
    font-size: 2rem;
  }
  .line_after_title {
    padding-bottom: 0.7rem;
  }
  .text_5xl {
    font-size: 2rem;
    line-height: 1;
  }
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  .card .text_sm {
    font-size: 0.77rem;
    line-height: 1rem;
  }
  .progress,
  .progress-stacked {
    height: 0.7rem;
    font-size: 0.6rem;
  }
  .pb_125db {
    padding-bottom: 5rem !important;
  }
  .mt_3db {
    margin-top: 1rem !important;
  }
  .item_logo {
    height: 150px;
  }
}
::-webkit-scrollbar {
  width: 4px;
  height: 100%;
  border-radius: 9999px;
}
::-webkit-scrollbar-track {
  background: var(--titleColor);
}
::-webkit-scrollbar-thumb {
  background: var(--mainColor);
  border-radius: 9999px;
}
#pp-nav span,
.pp-slidesNav span {
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  background: #000;
}
#pp-nav li .active span,
.pp-slidesNav .active span,
#pp-nav span:hover,
.pp-slidesNav span:hover {
  background: var(--mainColor);
  border-color: var(--mainColor) !important;
}
.section .intro {
  opacity: 0;
  -webkit-transition: opacity 1s 0.3s ease;
  -o-transition: opacity 1s 0.3s ease;
  transition: opacity 1s 0.3s ease;
}
.section:not(.section-1) .intro {
  -webkit-transform: translateY(7rem);
  -ms-transform: translateY(7rem);
  -o-transform: translateY(7rem);
  transform: translateY(7rem);
  -webkit-transition: all 0.35s 0.6s ease;
  -o-transition: all 0.35s 0.6s ease;
  transition: all 0.35s 0.6s ease;
}
.section.active .intro {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* $ => Blog */
.blog-item {
  border: 1px solid #eee;
  border-radius: 20px;
}
.blog-item .img-blog {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #eee;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
.blog-item .img-blog img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.blog-item:hover .img-blog img {
  transform: scale(1.1) rotate(1deg);
}
.blog-item .blog-inf {
  padding: 1.5rem 1rem;
}
.blog-item .blog-inf .blog-date {
  margin-bottom: 1rem;
  font-size: 13px;
}
.blog-item .blog-inf .blog-title {
  color: #444;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 18px;
}
.blog-item .blog-inf .blog-title:hover {
  color: var(--mainColor);
}
.blog-item .blog-inf p {
  font-weight: 400;
  font-size: 15px;
  color: #666;
}
.pb_custom {
  padding-bottom: 7rem;
}
/* # => Blog */
