@import url(./reset.css);
@import url(./header.css);
@import url(./footer.css);
@import url(./popup.css);

:root {
  --main-padding: calc((100% - 1680px) / 2);
  --common-radius: 24px;
  --common-button-height: 48px;
}

[data-trigger] {
  opacity: 0;
}

[data-trigger].visible {
  opacity: 1;
  transition: 0.3s ease;
}

body.scroll_lock {
  overflow: hidden;
  position: fixed;
  top: -scrollY;
}

@media (max-width: 1750px) {
  :root {
    --main-padding: 4%;
  }
}

@media (max-width: 1500px) {
  :root {
    --common-button-height: 45px;
    --common-radius: 20px;
  }
}
@media (max-width: 1024px) {
  :root {
    --common-button-height: 42px;
    --common-radius: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --common-radius: 10px;
  }
}

* {
  transition: 0.3s ease;
}

.btn_cta {
  width: fit-content;
  color: #00468b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.72px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--common-button-height);
  padding: 0 20px;
  min-width: fit-content;
  position: relative;
  z-index: 1;
}

.btn_cta.blue {
  background: #00468b;
  color: #fff;
}
.btn_cta.deepblue {
  background: #0d2155;
  color: #fff;
}

.btn_cta:hover {
  background: #00468b;
  color: #fff;
}

.btn_cta.blue:hover {
  background: #0d2155;
}

select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="6" viewBox="0 0 8 6" fill="none"><path d="M0.100977 0.8C-0.146237 0.470382 0.0889539 0 0.500977 0H7.50098C7.913 0 8.14819 0.470382 7.90098 0.8L4.40098 5.46667C4.20098 5.73333 3.80098 5.73333 3.60098 5.46667L0.100977 0.8Z" fill="%23666666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 8px 6px;
}

@media (max-width: 1500px) {
  .btn_cta {
    font-size: 16px;
    padding: 0 15px;
  }
}
@media (max-width: 1024px) {
  .btn_cta {
    font-size: 15px;
    padding: 0 10px;
  }
  .btn_cta img {
    width: 20px;
  }
}
@media (max-width: 768px) {
  .btn_cta {
    font-size: 14px;
    border-radius: 6px;
  }
}

.br_1024,
.br_768 {
  display: none;
}
@media (max-width: 768px) {
  .br_768 {
    display: block;
  }
}
