:root{
  --header-height: 90px;
  --footer-height: 100px;
  --background: #F9FAFC;
  --n200: #EDEFF5;
  --n300: #E6E8F0;
  --n400: #D8DAE5;
  --n500: #C1C4D6;
  --n600: #8F95B2;
  --n700: #696F8C;
  --n800: #474D66;
  --n900: #101840;
  --white: #ffffff;
  --aqua: #6EC4C3;
  --g50: #F5FBF8;
  --g400: #52BD94;
  --g600: #317159;
  --b400: #3366FF;
}
html, body{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  background-color: var(--background);
  font-family: 'Inter', sans-serif, Arial;
}
.hidden{
  display: none;
}
.font-small{
  font-size: 12px;
}
.font-med{
  font-size: 14px;
}
.font-large{
  font-size: 16px;
}
h2{
  margin: 3rem 0 2rem;
  font-size: 24px;
  color: var(--n900);
  font-weight: bold;
}
h4{
  margin: 3rem 0 1.2rem;
  font-size: 18px;
  color: var(--n800);
  font-weight: bold;
  padding-top: 12px;
}
p, ul{
  color: var(--n800);
  font-size: 16px;
  line-height: 24px;
}
ul{
  margin-top: 8px;
  margin-bottom: 8px;
}
ul::before{
  content: '•';
  margin-right: 16px;
}
button{
  border: unset;
  font-family: unset;
  font-size: unset;
  background-color: unset;
  font-size: 14px;
  color: var(--n400);
  cursor: pointer;
  padding: 6px 8px;
  margin: 0 -1px;
}
.box-shadow{
  background-color: var(--white);
  box-shadow: 0px 4px 8px 0px #10184014;
  padding: 10px 24px;
  border-radius: 4px;
  margin-bottom: 24px;
}
a{
  text-decoration: unset;
  color: var(--b400);
}
a.a-image{
  height: 60px;
  display: inline-block;
  margin: 20px;
}
img.a-image{
  height: 100%;
}
#leo .box-shadow{
  width: fit-content;
}
#header{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  background-color: var(--n900);
  border-bottom: 2px solid var(--n800);
  background-image: linear-gradient(to left, #050713, #101840 400px);
  position: relative;
  box-sizing: border-box;
}
#header::after{
  position: absolute;
  right: 0px;
  height: var(--header-height);
  content: url(../img/other/header_img.svg);
  z-index: 0;
}
.header-left{
  display: flex;
  align-items: center;
  z-index: 1;
}
.header-left>div{
  cursor: default;
}
.header-right{
  z-index: 1;
}
#header img{
  height: 54px;
}
#header .header-left>img{
  margin-right: 14px;
}
#header .header-right img{
  height: 38px;
}
#header .header-left a:nth-child(2){
  margin: 0 25px 0 20px;
}
#header button.active{
  pointer-events: none;
  border-bottom: 2px solid var(--aqua);
}
#footer{
  height: var(--footer-height);
  min-height: var(--footer-height);
  background-color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-top: 1px solid var(--n200);
  box-sizing: border-box;
}
#footer.hidden{
  display: none;
}
#footer img{
  height: 52px;
}
#footer > * {
  margin-right: 12px;
}
.footer-text{
  color: var(--n700);
  font-size: 12px;
}
#main{
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
section{
  flex-grow: 1;
}
section.container{
  padding: 0 16px;
  margin: 0 auto;
}
iframe{
  all: unset;
  width: 100%;
  height: 100%;
}
#map{
  overflow: hidden;
}
/* #copyright{
  font-size: 11.5px;
  padding: 1px 4px;
  color: white;
  position: absolute;
  bottom: 5px;
  background: #0000007a;
  left: 140px;
  pointer-events: none;
} */
.index-img{
  height: 3rem;
}
.services-wrapper{
  padding: 0;
}
.accordion-title{
  color: var(--n800);
  font-weight: bold;
  padding: 8px 16px;
  border-bottom: 1px solid var(--n300);
  border-top: 1px solid var(--n300);
  cursor: pointer;
}
.accordion:first-child>.accordion-title{
  border-top: unset;
}
.accordion-title::before{
  content: url("../img/other/accordion_arrow.svg");
  display: inline-block;
  margin-right: 12px;
}
.accordion-content{
  color: var(--n700);
  padding: 8px 16px 32px;
  position: relative;
  display: none;
}
.accordion-title.accordion-active::before{
  transform: rotate(270deg);
}
.block-title{
  padding: 12px 12px 12px 42px;
}
.url-data{
  font-size: 13px;
  padding: 0 0 12px 60px;
}
.copy-url-container{
  position: relative;
}
.copy-url{
  color: var(--n800);
  margin: 0 0 0 60px;
  border: 1px solid var(--n300);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
}
.copy-url::before{
  content: url("../img/other/link.svg");
  margin-right: 8px;
}
.clipboard-message{
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -3px;
  left: 60px;
  background-color: var(--g50);
  color: var(--g600);
  font-size: 14px;
  padding: 6px 12px;
  cursor: default;
  border: 1px solid var(--g400);
  border-radius: 4px;
}
.clipboard-message::before{
  content: url("../img/other/success.svg");
  margin-right: 10px;
}
.download-wrapper{
  margin-left: 60px;
  column-width: 250px;
}
.download-item{
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  color: var(--b400);
  width: fit-content;
}
.contact-title{
  /* font-size: 14px; */
  font-weight: bold;
  color: var(--n900);
  margin: 24px 0 16px;
}
.contact-text{
  /* font-size: 14px; */
  color: var(--n800);
}
.github{
  display: flex;
  align-items: center;
}
.github img{
  margin-right: 24px;
}
.shortcut{
  padding: 4px 12px;
  color: var(--n800);
  font-weight: bold;
  background-color: var(--n400);
  border-radius: 4px;
  margin: 2px 1px;
}
.shortcut:hover{
  background-color: var(--n500);
}
.overlay-fullscreen{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #00000052;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.overlay-container{
  width: 95%;
  max-width: 800px;
  max-height: 95%;
  padding: 32px;
  border-radius: 8px;
  background-color: white;
  position: absolute;
  box-sizing: border-box;
  font-size: 14px;
  overflow: auto;
}
.overlay-title{
  color: var(--n900);
  font-size: 20px;
  font-weight: bold;
  width: calc(100% - 20px);
  margin-bottom: 32px;
}
img.overlay-close{
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 4px;
  cursor: pointer;
}
.splash-buttons{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.splash-text>[splash="1"]{
  font-size: 14px;
}
.overlay-content button{
  color: white;
  font-size: 14px;
  background-color: var(--b400);
  border-radius: 4px;
  padding: 8px 16px;
}
.overlay-content button.button-white{
  background-color: white;
  color: var(--n700);
  border: 1px solid var(--n400);
  border-radius: 4px;
  padding: 8px 16px;
  margin-right: 12px;
}
.download-buttons{
  margin-top: 32px;
}

@media (max-width: 767px){
  /* #header{
    display: none;
  } */
  section.container{
    /* width: fit-content; */
    padding: 0 16px;
    margin: 0;
  }
}
@media (min-width: 768px){
  #mobile-header{
    display: none;
  }
  section.container{
    width: 720px;
  }
}
@media (min-width: 992px){
  section.container{
    width: 820px;
  }
}
@media (min-width: 1350px){
  section.container{
    width: 1000px;
  }
  #header button{
    margin: 0 12px;
    font-size: 15px;
  }
  #header button:first-child{
    margin-left: 40px;
  }
}