/* scroll-bar begin */

/* ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {
    display: block;
    height: 10px;
    width: 0;
  }

  ::-webkit-scrollbar-button:vertical:increment, ::-webkit-scrollbar-button:vertical:decrement {
    background-color: #aaa;
    height: 0
  }

  ::-webkit-scrollbar-track-piece {
    background-color: rgb(212, 212, 212);
    -webkit-border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:vertical {
    height: 50px;
    background-color: #818489;
    -webkit-border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:horizontal {
    width: 50px;
    background-color: #818489;
    -webkit-border-radius: 3px;
  }

  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #818489 !important;
  } */

/* scroll-bar end */
@media screen and (min-width: 320px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 360px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 540px) {
  html {
    font-size: 24px;
  }
}

@media screen and (min-width: 720px) {
  html {
    font-size: 32px;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 45px;
  }
}

body {
  --blue-color: #113080;
  --persimmon-color: rgb(241, 98, 66);
  --violet-color: #c38fec;
  --brown-color: #d9804e;
  --yellow-color: #f9de50;
  --lightblue-color: #6788dd;
  --black-color: rgba(0, 0, 0, 0.94);
  --bg-black-color: #0e0e0e;
  font-family: "GalanoGrotesque-Regular";
}

p,
div,
span,
a,
h3,
button,
input,
textarea,
th,
td {
  /* margin-bottom: 0; */
  font-family: "GalanoGrotesque-Regular";
}

button:focus,
input:focus {
  outline: none !important;
}

p,
div,
span,
a,
input,
textarea,
td {
  font-family: "GalanoGrotesque-Regular";
}

a {
  text-decoration: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.main {
  width: 100%;
  min-height: 1418px;
  background-color: #ffffff;
  transition: background-color 0.8s linear;
  position: relative;
}

.top-container {
  width: 100%;
  padding: 1.5625rem 1rem;
  display: flex;
  justify-content: space-between;
}

.top-logo {
  cursor: pointer;
  width: 4.375rem;
  height: auto;
}

.menu-bar {
  position: fixed;
  cursor: pointer;
  right: 1rem;
  z-index: 10;
}

.isMobile .menu-bar-container {
  position: relative;
  width: 1.6875rem;
  height: 1.25rem;
}

.bar {
  top: 0%;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  background-color: black;
  transform: translate(0, -50%);
  transition: background-color 0.8s, top 0.2s, visibility 0.2s, transform 0.2s;
  transition-delay: 0.3s;
}

.isMobile .bar1 {
  top: 44%;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  background-color: black;
  transform: translate(0, -50%);
  transition: background-color 0.8s, visibility 0.5s;
  transition-delay: 0.25s;
}

.bar2 {
  top: 50%;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  visibility: hidden;
  background-color: black;
  transition: background-color 0.8s, top 0.2s, visibility 0.2s, transform 0.2s;
  /* transition-delay: 0.3s; */
}

.bar3 {
  top: 50%;
  width: 100%;
  height: 0.125rem;
  visibility: hidden;
  position: absolute;
  background-color: black;
  transition: background-color 0.8s, top 0.2s, visibility 0.2s, transform 0.2s;
  /* transition-delay: 0.3s; */
}

.bottom-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 0.125rem;
  background-color: black;
  transition: background-color 0.8s, bottom 0.2s, visibility 0.2s,
    transform 0.2s;
  transition-delay: 0.3s;
}

.menu-bar-active .bar {
  top: 50%;
  transform: translate(0, -50%);
  visibility: hidden;
  transition: top 0.2s, visibility 0.2s, transform 0.2s;
  transition-delay: 0s;
}

.menu-bar-active .bar1 {
  visibility: hidden;
  transition: top 0.2s, visibility 0.2s, transform 0.2s;
  transition-delay: 0s;
}

.menu-bar-active .bar2 {
  top: 50%;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  background-color: black;
  transform: rotate(45deg);
  visibility: visible;
  transition: background-color 0.8s, transform 0.3s, visibility 0s;
  transition-delay: 0.2s;
}

.menu-bar-active .bar3 {
  top: 50%;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  background-color: black;
  transform: rotate(-45deg);
  visibility: visible;
  transition: background-color 0.8s, transform 0.3s, visibility 0s;
  transition-delay: 0.2s;
}

.menu-bar-active .bottom-bar {
  bottom: 50%;
  transform: translate(0, 50%);
  visibility: hidden;
  transition: bottom 0.2s, visibility 0.2s, transform 0.2s;
  transition-delay: 0s;
}

.isMobile .menu-nav {
  width: 100%;
  position: fixed;
  z-index: 5;
  top: 0;
  right: -2000px;
  overflow-x: hidden;
  transition: 0.5s;
  background-color: white;
  padding: 10px 0 10px 0;
  overflow-y: auto;
  height: 100%;
  display:flex;
  align-items: center;
}

.isMobile .menu-nav-active {
  right: 0px;
}

.closebtn {
  cursor: pointer;
  float: right;
  margin-top: -40px;
}

.closebtn p {
  font-size: 73px;
  color: black;
}

.isMobile .menu-nav-container {
  width: 100%;
  padding: 0 2.625rem;
}

.isMobile .menu-nav-sub-title {
  color: #b0b0b0;
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-family: "GalanoGrotesque-Medium";
}

.menu-nav-sub-title:nth-child(2) {
  margin-top: 10rem;
}

.isMobile .menu-nav-title {
  color: #000000;
  font-size: 1.25rem;
  line-height: 2rem;
  font-family: "GalanoGrotesque-Medium";
  cursor: pointer;
}

.menu-nav-title:hover {
  color: #878787;
}

.isMobile .separator {
  background-color: black;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.menu-link {
  display: flex;
  justify-content: space-between;
}

.isMobile .menu-link a {
  font-family: "GalanoGrotesque-Medium";
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: black;
}

.menu-link a:hover {
  cursor: pointer;
  color: #878787;
}

.indicator-bar {
  position: fixed;
  top: 28.5em;
  right: 2.875em;
  padding-right: 2.5em;
  z-index: 1;
}

.indicator-bar-text {
  color: black;
  transition: color 0.8s;
  text-align: right;
  margin-top: 1.15em;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-family: "GALANOGROTESQUE-Medium";
  line-height: 1.25rem;
  letter-spacing: 0.02em;
  opacity: 0.5;
}

.indicator-bar-text:hover {
  opacity: 1;
  color: black;
}

.indicator-bar-text:last-child {
  margin-bottom: 0;
}

.indicator-bar-line {
  position: absolute;
  right: -1.34em;
  background-color: black;
  width: 2px;
  top: 0.25em;
  bottom: 0.1em;
  height: 241px;
  opacity: 0.3;
}

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

.indicator-bar-point {
  position: absolute;
  background-color: black;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 0.25em;
  right: -1.5em;
}

.scroll-down-container {
  position: absolute;
  left: 17%;
  bottom: 3%;
  top: 650px;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.scroll-down-container:hover .scroll-down {
  width: 110%;
  height: 110%;
}

.scroll-down {
  width: 100%;
  height: 100%;
  animation: rotate 8s infinite linear;
  transition: all 0.3s linear;
}

.scroll-down-arrow {
  position: absolute;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.isMobile .scrolltotop-bar {
  position: fixed;
  bottom: 2rem;
  right: 1em;
  z-index: 2;
  width: 1.75rem;
  height: 1.875rem;
  background-color: transparent;
  cursor: pointer;
  display: none;
}

.scrolltotop-bar:hover {
  opacity: 0.7;
}

.isMobile .arrow-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 0.3125rem;
  height: 0.75rem;
  width: 0.75rem;
  /* height: 0.2em; */
  border: solid white;
  border-width: 0.15rem 0.15rem 0 0;
  display: inline-block;
  transform: rotate(-45deg) translate(-0.5625rem, 0%);
}

.isMobile .front-line {
  top: 2;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1.75rem;
  position: absolute;
  background-color: white;
  height: 0.15rem;
}

.isMobile .vertical-line {
  position: absolute;
  height: 1.25rem;
  width: 0.15rem;
  top: 0.625rem;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: white;
}

.isMobile .scrolltotop-bar.black-bar .arrow-line {
  border-color: black !important;
}

.isMobile .scrolltotop-bar.black-bar .front-line {
  background-color: black !important;
}

.isMobile .scrolltotop-bar.black-bar .vertical-line {
  background-color: black !important;
}

.isMobile .footer {
  width: 100%;
  padding: 0rem 1.25rem 4rem 1.25rem;
  background-color: #0e0e0e;
  position: absolute;
  bottom: 0px;
}

.isMobile .footer-container {
  width: 100%;
  margin: auto;
  padding: 2.5rem 0 0.75rem 0;
}

.footer-container-left img {
  width: 6.625rem;
  height: 1.875rem;
}

.footer-container-left p {
  font-family: 'GalanoGrotesque-Light';
  color: white;
  font-size: 0.75rem;
  opacity: 0.8;
}

.isMobile .footer-container-left .email {
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: underline 0.0625rem !important;
  text-underline-offset: 0.2rem;
}

.footer-container-left-bottom {
  margin-top: 0px;
  font-size: 0.75rem;
  color: white;
}

.isMobile .footer-container-right a {
  color: #b6b6b6;
  margin-right: 0px;
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  opacity: 1;
}

.isMobile .footer-container-right {
  padding-top: 15px;
  border-top: 1px solid rgba(105, 105, 105, 0.3);
}

.footer-container-right a:last-child {
  margin-right: 0;
}

.footer-container-right a:hover {
  opacity: 0.8;
}

.footer-container-right p {
  color: white;
  font-size: 1.25rem;
  float: right;
  text-decoration: underline;
  opacity: 0.9;
}

.back-mask-active {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  left: 0px;
  top: 0px;
}

.learn-more-button:hover {
  opacity: 0.7;
}

.footer {
  background-color: black;
}

.page-title {
  font-family: "GalanoGrotesque-Regular";
  font-size:1.875rem;
  color: black;
  text-align: center;
  margin: auto;
  line-height: 1 !important;
}

.body-container {
  padding-bottom: 21rem;
}

.body-container-partner-title p {
  transition: color 0.5s;
}

.body-container-partner-title {
  font-family: "GalanoGrotesque-Regular";
  font-size:1.875rem;
  color: black;
  text-align: center;
  margin: auto;
  line-height: 1 !important;
}

.page-title p {
  transition: color 0.5s;
}

.body-container-partner-title hr{
  background-color: white;
  /* transition: background-color 0.5s; */
  opacity: 0.8 !important;
  height:1px;
  border:0 !important;
}

.page-title hr {
  background-color: white;
  /* transition: background-color 0.5s; */
  opacity: 0.4;
  height:1px;
  border:0 !important;
}