/* general */
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  background-color: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

body.dragging {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.container {
  width: 1240px;
  max-width: 92%;
  margin: auto;
}

main {
  padding-top: 80px;
}

/* compontents */
.cta {
  height: 40px;
  padding: 0px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%), #906;
  box-shadow: 0 1.5px 2px 0 rgba(255, 255, 255, 0.15) inset, 0 0 0 1.5px #906;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2px;
  margin-bottom: 2px;
  text-decoration: none;
  transition: 0.24s ease;
  cursor: pointer;
}
.cta img {
  margin-right: 8px;
}
.cta span {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.cta:hover {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(21, 64, 126, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%), #000;
  background: linear-gradient(180deg, rgba(21, 64, 126, 0.2) 0%, rgba(21, 64, 126, 0.08) 100%), #15407e;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%), #01407E;
}
.cta.light {
  box-shadow: none;
  border: 1px solid #000;
  background: #fff;
}
.cta.light span {
  color: #000;
}
.cta.light:hover {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%), #000;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%), #01407E;
}
.cta.light:hover span {
  color: #fff;
}

.title {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  background: linear-gradient(90deg, #01407E 29.38%, #906 75.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.title {
  margin-bottom: 12px;
}

.desc {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

@media (max-width: 1000px) {
  .title {
    font-size: 38px;
    text-align: center;
  }
  .desc {
    font-size: 16px;
    text-align: center;
  }
  .desc br {
    display: none;
  }
  .cta {
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}
/* header */
header {
  height: 80px;
  background: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 2px 2px 4.6px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .container .logo {
  margin-right: 22px;
  height: 40px;
  position: relative;
  z-index: 3;
  text-decoration: none;
}
header .container .logo img {
  height: 40px;
  width: auto;
}
header .container .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .content nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
header .container .content nav ul li {
  padding-right: 20px;
  padding-left: 20px;
  border-right: 1px solid #01407E;
  display: block;
  height: 16px;
}
header .container .content nav ul li:last-of-type {
  border: none;
}
header .container .content nav ul a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  padding: 2px 4px;
  height: 16px;
  display: block;
  transition: 0.12s ease;
  position: relative;
}
header .container .content nav ul a.active {
  font-weight: 700;
  color: #01407E;
}
header .container .content nav ul a img {
  display: none;
}
header .container .content nav ul a span {
  transition: 0.12s ease;
  white-space: pre;
}
header .container .content nav ul a .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: pre;
  font-weight: 700;
  color: #01407E;
  opacity: 0;
  transition: 0.12s ease;
}
header .container .content nav ul a:hover span {
  opacity: 0;
}
header .container .content nav ul a:hover .hover {
  opacity: 1;
}
header .container .content .buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 3;
}
header .container .panel {
  display: none;
}
header .container #burger {
  display: none;
}

@media (max-width: 1150px) {
  header .container .content nav ul li {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 1000px) {
  header .container .content {
    background: #FFF;
    position: fixed;
    top: -100vh;
    right: 0px;
    transition: 0.5s;
    flex-direction: column;
    box-shadow: -1px 2px 8px 0 rgba(0, 0, 0, 0.15);
    border-radius: 0 0 16px 16px;
    padding: 150px 0px 70px;
  }
  header .container .content nav ul {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 32px;
  }
  header .container .content nav ul li {
    border: none;
    height: auto;
  }
  header .container .content nav ul li:last-of-type {
    border: none;
  }
  header .container .content nav ul a {
    color: #01407E;
    font-size: 20px;
    font-weight: 700;
    line-height: 125%;
    height: auto;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .container .content nav ul a img {
    width: 0px;
    height: auto;
    display: inline;
    transition: 0.3s ease;
    margin-right: 0px;
  }
  header .container .content nav ul a .hover {
    display: none;
  }
  header .container .content nav ul a:hover span {
    opacity: 1;
  }
  header .container .content nav ul a:hover img {
    width: 32px;
    height: 32px;
    margin-right: 16px;
  }
  header .container .content .buttons {
    flex-direction: column;
    gap: 18px;
    width: 90%;
    max-width: 500px;
  }
  header .container .content .buttons .cta {
    width: 100%;
  }
  header .container .panel {
    z-index: 2;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 80px;
    background-color: #fff;
    display: block;
    box-shadow: 2px 2px 4.6px 0 rgba(0, 0, 0, 0.05);
  }
  header .container #burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    margin-right: -4px;
    transition: 0.12s;
    z-index: 3;
  }
  header .container #burger span {
    background: #01407E;
    width: 27px;
    height: 3px;
    border-radius: 2px;
    display: block;
    transition: 0.12s;
  }
  header.active .container .content {
    top: 0px;
    right: 0px;
  }
  header.active .container #burger {
    gap: 0px;
  }
  header.active .container #burger span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -1.5px;
  }
  header.active .container #burger span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -1.5px;
  }
}
/* footer */
footer {
  padding: 140px 0px 95px;
  background-color: #000;
  background-image: url(../img/footer.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
footer .container {
  width: 1312px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .container .side-contact .logo {
  height: 30px;
  text-decoration: none;
}
footer .container .side-contact .logo img {
  height: 30px;
}
footer .container .side-contact p {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 125%;
}
footer .container .side-contact .contact {
  padding: 30px 0px 20px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
footer .container .side-contact .contact a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  transition: 0.12s ease;
}
footer .container .side-contact .contact a:hover span {
  color: #990066;
}
footer .container .side-contact .contact a span {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
}
footer .container .side-info {
  width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
footer .container .side-info .box-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .container .side-info .box-nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .container .side-info .box-nav ul li a, footer .container .side-info .box-nav ul li strong {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 125%;
}
footer .container .side-info .box-nav ul li a {
  text-decoration: none;
  font-weight: 400;
  transition: 0.12s ease;
}
footer .container .side-info .box-nav ul li a:hover {
  color: #990066;
}
footer .container .side-info .box-nav ul li strong, footer .container .side-info .box-nav ul li .strong {
  font-weight: 700;
}
footer .container .side-info hr {
  background-color: #01407E;
  display: block;
  border: none;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  margin: 40px 0px 24px;
}
footer .container .side-info .box-copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .container .side-info .box-copy #lang {
  width: 85px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(351deg, rgba(1, 64, 126, 0.2) -16.5%, rgba(255, 255, 255, 0.2) 124.22%);
  display: block;
  border-radius: 20px;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  padding: 5px 16px;
  overflow: hidden;
  width: 100px;
  width: auto;
}
footer .container .side-info .box-copy #lang.en {
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding-bottom: 7px;
}
footer .container .side-info .box-copy #lang a {
  padding: 4px;
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
footer .container .side-info .box-copy #lang a.wflag span {
  margin-left: 8px;
}
footer .container .side-info .box-copy #lang a span {
  font-weight: bold;
  font-size: 13px;
  white-space: pre;
  color: #fff;
  text-decoration: none;
  margin-left: 8px;
  text-align: left;
  margin-left: 32px;
}
footer .container .side-info .box-copy #lang img {
  width: 24px;
  width: auto;
  height: 24px;
}
footer .container .side-info .box-copy #lang .hr {
  width: 48px;
  height: 1px;
  border: none;
  background: #01407E;
}
footer .container .side-info .box-copy #lang:hover, footer .container .side-info .box-copy #lang.active {
  height: 100px;
}
footer .container .side-info .box-copy .copy {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  height: 40px;
}
footer .container .side-info .box-copy .copy p {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 125%;
  height: 40px;
  line-height: 40px;
}
footer .container .side-info .box-copy .in {
  text-decoration: none;
}
footer .container .side-info .box-copy .in img {
  transition: 0.12s ease;
  filter: contrast(1) brightness(10000);
}
footer .container .side-info .box-copy .in:hover img {
  filter: contrast(1) brightness(1);
}

@media (max-width: 1150px) {
  footer .container .side-info .box-nav ul li a, footer .container .side-info .box-nav ul li strong {
    font-size: 18px;
  }
  footer .container .side-info {
    width: 590px;
  }
}
@media (max-width: 1000px) {
  footer {
    padding: 55px 0px 42px;
  }
  footer .container {
    flex-direction: column;
    align-items: center;
  }
  footer .container .side-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .container .side-contact .logo {
    margin-bottom: 4px;
  }
  footer .container .side-contact p {
    text-align: center;
    line-height: 135%;
    font-size: 16px;
  }
  footer .container .side-contact .contact {
    align-items: center;
  }
  footer .container .side-contact .contact a {
    text-align: center;
  }
  footer .container .side-info {
    width: 620px;
    margin-top: 64px;
  }
  footer .container .side-info .box-nav ul li a, footer .container .side-info .box-nav ul li strong {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  footer .container .side-info hr {
    margin: 64px 0px 24px;
  }
  footer .container .side-info .box-copy .copy {
    gap: 18px;
  }
  footer .container .side-info .box-copy .copy p {
    font-size: 16px;
    line-height: 125%;
    width: 150px;
  }
}
@media (max-width: 700px) {
  footer {
    background-image: url(../img/footer-m.svg);
  }
  footer .container .side-info {
    width: 100%;
  }
  footer .container .side-info .box-nav {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  footer .container .side-info .box-copy #lang:hover, footer .container .side-info .box-copy #lang.active {
    margin-top: -60px;
  }
}
/* hero */
section.hero {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 606px;
}
section.hero .desc {
  font-family: "Inter", sans-serif;
}
section.hero .side {
  width: 50%;
}
section.hero .side-left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.hero .side-left .content {
  width: 630px;
  max-width: 46vw;
  padding: 32px 118px 44px 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section.hero .side-left .content .features {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
section.hero .side-left .content .features .feature {
  width: calc(50% - 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
section.hero .side-left .content .features .feature img {
  width: 42px;
  height: 42px;
}
section.hero .side-left .content .features .feature p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 125%;
  text-align: center;
}
section.hero .side-left .content .cta {
  margin-top: 12px;
}
section.hero .side-right {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.hero .side-right .hero-img {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-bottom-left-radius: 18px;
}
section.hero .side-right .content {
  width: 620px;
  max-width: 46vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 28px;
  padding-left: 28px;
}
section.hero .side-right .content #calculator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 460px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
section.hero .side-right .content #calculator .side {
  display: block;
  border-radius: 16px;
  background: #FFF;
  -webkit-backdrop-filter: blur(54.6500015259px);
          backdrop-filter: blur(54.6500015259px);
  max-width: 100%;
  box-shadow: -1px 2px 8px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  padding: 20px;
}
section.hero .side-right .content #calculator .side p.name {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
section.hero .side-right .content #calculator .side div.value {
  color: #01407E;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
section.hero .side-right .content #calculator .side.side-count {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.hero .side-right .content #calculator .side.side-count .line .headline {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.hero .side-right .content #calculator .side.side-count .line .headline br {
  display: none;
}
section.hero .side-right .content #calculator .side.side-count .line .zip {
  padding: 10px 0px;
  margin-top: 12px;
}
section.hero .side-right .content #calculator .side.side-count .line .zip .track {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: rgba(1, 64, 126, 0.2);
  position: relative;
}
section.hero .side-right .content #calculator .side.side-count .line .zip .track .progress {
  width: 0px;
  height: 4px;
  border-radius: 4px;
  background-color: #990066;
}
section.hero .side-right .content #calculator .side.side-count .line .zip .track .point {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-color: #01407E;
  display: block;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.hero .side-right .content #calculator .side.side-count .line .zip .track .point img {
  pointer-events: none;
  height: 17px;
  width: auto;
}
section.hero .side-right .content #calculator .side.side-count .forecast {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text p.name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  position: relative;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text p.name strong {
  font-size: 20px;
  font-weight: 700;
  color: #01407E;
  text-align: center;
  line-height: 125%;
  text-align: left;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text p.name strong br {
  display: none;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text p.name strong span {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text p.name .info {
  padding: 1px;
  cursor: pointer;
  margin-left: 5px;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text #tooltip {
  position: absolute;
  bottom: 24px;
  right: 6px;
  transform: translateX(50%);
  border-radius: 12px;
  background: #FFF;
  box-shadow: -1px 2px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 12px;
  width: 240px;
  display: none;
}
section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text #tooltip p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-align: center;
}
section.hero .side-right .content #calculator .side.side-count a.cta {
  margin-top: 12px;
}

@media (max-width: 1200px) {
  section.hero .side-left .content .features .feature {
    width: calc(50% - 12px);
  }
  section.hero .side-left .content .features .feature p br {
    display: none;
  }
  section.hero .side-left .content {
    padding-right: 64px;
  }
}
@media (max-width: 1000px) {
  section.hero {
    min-height: 0px;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    background-color: #f8f8f8;
  }
  section.hero .cta {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
  }
  section.hero #calculator .cta {
    margin-right: 0px;
  }
  section.hero .side {
    width: 100%;
  }
  section.hero .side-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  section.hero .side-left .content {
    padding: 48px 0px 44px;
    max-width: 92vw;
    margin: auto;
    gap: 16px;
  }
  section.hero .side-left .content .features {
    margin-top: 10px;
    gap: 24px;
  }
  section.hero .side-left .content .features .feature {
    width: calc(50% - 12px);
    gap: 8px;
    margin-top: 8px;
  }
  section.hero .side-left .content .features .feature p {
    font-size: 16px;
  }
  section.hero .side-right {
    min-height: 360px;
    width: 100%;
  }
  section.hero .side-right .hero-img {
    height: 360px;
    border-bottom-left-radius: 0px;
  }
  section.hero .side-right .content {
    margin: auto;
    max-width: 92vw;
    padding: 176px 0px 16px;
    padding: 182px 0px 16px;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  section.hero .side-right .content #calculator .side .cta {
    width: 100%;
    margin-right: auto;
  }
  section.hero .side-right .content #calculator .side p.name {
    font-size: 16px;
  }
  section.hero .side-right .content #calculator .side div.value {
    font-size: 20px;
  }
  section.hero .side-right .content #calculator .side.side-count {
    gap: 20px;
    padding-top: 29px;
    padding-bottom: 20px;
  }
  section.hero .side-right .content #calculator .side.side-count .line .headline br {
    display: block;
  }
  section.hero .side-right .content #calculator .side.side-count .forecast {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
  }
  section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text {
    width: 100%;
  }
  section.hero .side-right .content #calculator .side.side-count .forecast .forecast-text #tooltip {
    bottom: 27px;
    right: 50%;
    transform: translateX(50%);
  }
}
/* info */
section.info.info-right .container .content {
  flex-direction: row-reverse;
}
section.info.info-right .container .content .box-nav .item.active .text h3 {
  max-width: calc(100% + 20px);
}
section.info.static .container .content .box-nav .item .text h3 {
  font-weight: 700;
}
section.info .container {
  padding: 60px 0px;
}
section.info .container .title, section.info .container .desc {
  text-align: center;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
section.info .container .content {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.info .container .content .box-slider {
  width: 580px;
  height: 580px;
  overflow-y: hidden;
  border-radius: 18px;
  position: relative;
}
section.info .container .content .box-slider .item {
  margin: 0px;
  width: 580px;
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.6s ease;
}
section.info .container .content .box-slider .cta {
  position: absolute;
  bottom: 29px;
  right: 29px;
}
section.info .container .content .box-nav {
  width: calc(100% - 640px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.info .container .content .box-nav .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0.24;
  cursor: pointer;
  transition: 0.3s ease;
}
section.info .container .content .box-nav .item * {
  transition: 0s ease;
}
section.info .container .content .box-nav .item:hover {
  opacity: 1;
}
section.info .container .content .box-nav .item.active {
  opacity: 1;
}
section.info .container .content .box-nav .item.active img {
  width: 64px;
  margin-right: 16px;
}
section.info .container .content .box-nav .item.active .text h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  background: linear-gradient(90deg, #01407E 29.38%, #906 75.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: calc(100% + 50px);
}
section.info .container .content .box-nav .item.active .text p {
  font-size: 14px;
  margin-top: 16px;
}
section.info .container .content .box-nav .item .number {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
  width: 26px;
  display: block;
  margin-right: 16px;
}
section.info .container .content .box-nav .item img {
  width: 0px;
  display: block;
}
section.info .container .content .box-nav .item .text {
  width: calc(100% - 16px - 16px - 26px - 64px + 30px);
}
section.info .container .content .box-nav .item .text h3 {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
section.info .container .content .box-nav .item .text p {
  margin-top: 0px;
  font-size: 0px;
  color: #000;
  font-weight: 400;
  line-height: 140%;
}
section.info .container .content .cta.mobile {
  display: none;
}

@media (max-width: 1400px) {
  section.info .container .content .box-nav .item.active .text h3 {
    width: 100%;
  }
}
@media (max-width: 1300px) {
  section.info .container .content .box-slider {
    width: 500px;
    height: 500px;
  }
  section.info .container .content .box-slider .item {
    width: 500px;
    height: 500px;
  }
  section.info .container .content .box-nav {
    width: calc(100% - 540px);
  }
}
@media (max-width: 1200px) {
  section.info .container .content .box-nav {
    width: calc(100% - 520px);
  }
  section.info .container .content .box-nav .item .text {
    width: calc(100% - 8px - 8px - 26px - 36px + 30px);
  }
  section.info .container .content .box-nav .item .number {
    margin-right: 8px;
  }
  section.info .container .content .box-nav .item.active .text h3 {
    font-size: 38px;
  }
  section.info .container .content .box-nav .item.active img {
    width: 32px;
    margin-right: 8px;
  }
  section.info .container .content .box-nav .item.active .text p {
    margin-top: 8px;
  }
}
@media (max-width: 1000px) {
  section.info.info-right .container .content {
    flex-direction: column;
  }
  section.info .container {
    padding: 32px 0px 37px;
    width: 620px;
  }
  section.info .container .content {
    flex-direction: column;
    margin-top: 32px;
  }
  section.info .container .content .box-slider {
    border-radius: 16px;
    width: 92vw;
    height: 92vw;
    max-width: 460px;
    max-height: 460px;
  }
  section.info .container .content .box-slider .item {
    width: 92vw;
    height: 92vw;
    max-width: 460px;
    max-height: 460px;
  }
  section.info .container .content .box-slider .cta {
    display: none;
  }
  section.info .container .content .box-nav {
    width: 100%;
    margin-top: 16px;
    gap: 16px;
  }
  section.info .container .content .box-nav .item {
    position: relative;
  }
  section.info .container .content .box-nav .item .number {
    font-size: 16px;
    width: 32px;
    margin-right: 16px;
  }
  section.info .container .content .box-nav .item .text h3 {
    font-size: 16px;
  }
  section.info .container .content .box-nav .item img {
    margin-right: 8px;
    margin: 0px;
    position: absolute;
    transform: rotate(90deg) translate(30px, 8px);
  }
  section.info .container .content .box-nav .item.active img {
    width: 30px;
  }
  section.info .container .content .box-nav .item.active .text h3 {
    font-size: 20px;
  }
  section.info .container .content .box-nav .item.active .text p {
    font-size: 16px;
    margin-top: 16px;
  }
  section.info .container .content .cta.mobile {
    display: flex;
    width: calc(100% - 20px);
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}
/* traits */
section.traits {
  background: #F8F8F8;
  padding: 60px 0px;
}
section.traits .container .title, section.traits .container .desc {
  text-align: center;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
section.traits .container .content {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
section.traits .container .content .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
section.traits .container .content .box .icon {
  width: 42px;
  height: 42px;
  display: block;
}
section.traits .container .content .box h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #01407E;
  text-align: center;
  line-height: 125%;
  min-height: 50px;
}
section.traits .container .content .box p {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

@media (max-width: 1000px) {
  section.traits {
    padding-top: 40px;
  }
  section.traits .container {
    width: 620px;
  }
  section.traits .container .content .box {
    flex: 1 1 calc(50% - 40px);
    box-sizing: border-box;
  }
  section.traits .container .content .box h3 {
    min-height: 0px;
  }
  section.traits .container .content .box p {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  section.traits .container .content {
    gap: 35px;
  }
  section.traits .container .content .box {
    flex: auto;
    width: 100%;
  }
}
section.mission {
  background: #FFF;
  padding: 60px 0px;
}
section.mission .container .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-bottom: 60px;
}
section.mission .container .content .side-img {
  width: 580px;
  height: 580px;
  overflow-y: hidden;
  border-radius: 18px;
  position: relative;
}
section.mission .container .content .side-img img {
  margin: 0px;
  width: 580px;
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.mission .container .content .side-text {
  width: calc(100% - 580px - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
section.mission .container .content .side-text h2 {
  text-align: left;
  width: 100%;
  max-width: 500px;
}
section.mission .container .content .side-text p {
  text-align: left;
}
section.mission .container .text {
  padding-top: 60px;
}
section.mission .container .text h3 {
  max-width: 100%;
  text-align: center;
}

@media (min-width: 1000px) {
  section.mission .container .text h3 {
    font-size: 48px;
  }
}
@media (max-width: 1300px) {
  section.mission .container .content {
    gap: 40px;
  }
  section.mission .container .content .side-img {
    width: 500px;
    height: 500px;
  }
  section.mission .container .content .side-img img {
    width: 500px;
    height: 500px;
  }
  section.mission .container .content .side-text {
    width: calc(100% - 500px - 40px);
  }
  section.mission .container .content .side-text h3 {
    font-size: 38px;
  }
}
@media (max-width: 1000px) {
  section.mission {
    padding: 34px 0px 36px;
  }
  section.mission .container .content {
    padding-bottom: 30px;
    gap: 32px;
  }
  section.mission .container .content .side-img {
    width: 340px;
    height: 340px;
  }
  section.mission .container .content .side-img img {
    width: 340px;
    height: 340px;
  }
  section.mission .container .content .side-text {
    width: calc(100% - 340px - 32px);
  }
  section.mission .container .content .side-text h2 {
    font-size: 20px;
    margin-bottom: 0px;
  }
  section.mission .container .text {
    padding-top: 30px;
  }
  section.mission .container .text h3 {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  section.mission .container .content {
    gap: 30px;
    flex-direction: column;
  }
  section.mission .container .content .side-img {
    width: 100%;
    height: auto;
  }
  section.mission .container .content .side-img img {
    width: 100%;
    height: auto;
  }
  section.mission .container .content .side-text {
    width: 100%;
  }
  section.mission .container .content .side-text h2 {
    font-size: 20px;
    margin-bottom: 0px;
    text-align: center;
  }
  section.mission .container .content .side-text p {
    text-align: center;
  }
  section.mission .container .text h3 {
    font-size: 20px;
  }
}
/* profit */
section.profit {
  padding: 60px 0px;
}
section.profit .container {
  padding: 60px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
section.profit .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 500px;
  margin: auto;
}
section.profit .container .content h2 {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 24px;
}
section.profit .container .content p {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 32px;
}
section.profit .container .bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.profit .container .bg.mobile {
  display: none;
}

@media (max-width: 700px) {
  section.profit {
    padding: 32px 0px;
  }
  section.profit .container {
    padding: 80px 20px;
    display: flex;
    align-items: center;
  }
  section.profit .container .content {
    width: 100%;
  }
  section.profit .container .content h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  section.profit .container .content p {
    font-size: 16px;
  }
  section.profit .container .content p br {
    display: none;
  }
  section.profit .container .content .cta {
    width: 100%;
    max-width: 400px;
  }
  section.profit .container .bg.mobile {
    display: block;
  }
  section.profit .container .bg.desktop {
    display: none;
  }
}
@media (max-width: 500px) {
  section.profit .container {
    padding: 60px 20px;
    min-height: 580px;
  }
}
/* faq */
section.faq {
  background: #FFF;
  padding: 60px 0px;
}
section.faq .container .title, section.faq .container .desc {
  text-align: center;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
section.faq .container .content {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 960px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
section.faq .container .content .panel {
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
section.faq .container .content .panel::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #ECECEC, rgba(1, 63, 126, 0.3647058824), #ECECEC);
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 22px;
}
section.faq .container .content .panel .text {
  border-radius: 20px;
  padding: 24px 20px;
  background-color: #fff;
  position: relative;
}
section.faq .container .content .panel .headline {
  display: flex;
  align-items: flex-start;
}
section.faq .container .content .panel .headline .icon {
  width: 24px;
  margin-right: 12px;
}
section.faq .container .content .panel .headline p.question {
  width: calc(100% - 48px);
  padding-right: 60px;
  color: #01407E;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}
section.faq .container .content .panel .headline .plus {
  width: 24px;
  transition: 0.3s ease;
}
section.faq .container .content .panel .answer {
  padding-left: 36px;
  padding-top: 6px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: none;
  padding-right: 80px;
}
section.faq .container .content .panel.active::before {
  background: linear-gradient(to top, #01407E, #ECECEC);
}
section.faq .container .content .panel.active .text {
  background: linear-gradient(346deg, #F6F9FF 9.69%, #FFF 90.31%);
}
section.faq .container .content .panel.active .text .plus {
  transform: rotate(45deg);
}

@media (max-width: 1000px) {
  section.faq {
    padding: 32px 0px;
  }
  section.faq .container .content {
    margin-top: 32px;
  }
  section.faq .container .content .panel .headline p.question {
    width: 100%;
    padding-right: 0px;
  }
  section.faq .container .content .panel .headline .plus {
    display: none;
  }
  section.faq .container .content .panel .answer {
    font-size: 16px;
    font-weight: 400;
    padding-right: 0px;
  }
}
/* contact */
section.contact {
  padding: 60px 0px;
}
section.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.contact .container .info {
  width: calc(100% - 505px);
  padding-right: 125px;
}
section.contact .container .info p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
section.contact .container .info h1 {
  margin: 0px 0px 24px;
}
section.contact .container .info .box {
  width: 100%;
  display: flex;
  gap: 24px;
  padding: 24px 0px;
}
section.contact .container .info .box .icon {
  width: 44px;
  height: 44px;
}
section.contact .container .info .box h3 {
  color: #01407E;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-top: 8px;
  margin-bottom: 12px;
}
section.contact .container .info .box a {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
}
section.contact .container .info .box a:hover {
  color: #01407E;
}
section.contact .container .info .line {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}
section.contact .container .info .line .box {
  width: calc(50% - 24px);
}
section.contact .container form {
  width: 505px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section.contact .container form p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 24px;
}
section.contact .container form .filed {
  width: 100%;
  border-radius: 20px;
  border: 1.5px solid rgba(1, 64, 126, 0.1);
  padding: 17px 20px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  outline: none;
}
section.contact .container form .filed::-moz-placeholder {
  color: #DCD9D9;
}
section.contact .container form .filed::placeholder {
  color: #DCD9D9;
}
section.contact .container form .filed:focus, section.contact .container form .filed:active, section.contact .container form .filed:hover {
  outline: none;
  border: 1.5px solid #01407E;
  background: linear-gradient(346deg, #F6F9FF 9.69%, #FFF 90.31%);
}
section.contact .container form textarea {
  height: 155px;
  resize: none;
}
section.contact .container form .rights {
  padding: 24px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
section.contact .container form .rights .right {
  width: 100%;
  display: flex;
}
section.contact .container form .rights .right input {
  width: 17px;
  height: 17px;
  display: block;
  accent-color: #01407E;
  cursor: pointer;
}
section.contact .container form .rights .right label {
  width: calc(100% - 17px);
  padding-left: 8px;
  display: block;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
section.contact .container form .rights .right label.strong {
  font-weight: 700;
  color: #01407E;
}
section.contact .container form button {
  margin-right: 0px;
  margin-left: auto;
}

@media (max-width: 1250px) {
  section.contact .container .info {
    width: calc(100% - 480px);
    padding-right: 60px;
  }
  section.contact .container form {
    width: 480px;
  }
}
@media (max-width: 1200px) {
  section.contact .container .info {
    width: calc(100% - 420px);
    padding-right: 60px;
  }
  section.contact .container .info .line {
    flex-direction: column;
  }
  section.contact .container .info .line .box {
    width: 100%;
  }
  section.contact .container form {
    width: 420px;
  }
}
@media (max-width: 1000px) {
  section.contact {
    padding: 56px 0px 32px;
  }
  section.contact .container {
    flex-direction: column;
  }
  section.contact .container .info {
    width: 100%;
    padding: 0px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  section.contact .container .info .headline {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 56px;
    margin-bottom: 32px;
  }
  section.contact .container .info .headline p {
    text-align: center;
  }
  section.contact .container .info p {
    font-size: 16px;
  }
  section.contact .container .info h1 {
    margin: 0px 0px 24px;
  }
  section.contact .container .info .box {
    gap: 20px;
    padding: 0px 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  section.contact .container .info .box .side:first-of-type {
    height: 44px;
  }
  section.contact .container .info .box h3 {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 8px;
  }
  section.contact .container .info .box p {
    text-align: center;
  }
  section.contact .container .info .box a {
    text-align: center;
  }
  section.contact .container .info .line {
    gap: 32px;
    padding-right: 0px;
    margin-top: 56px;
  }
  section.contact .container form {
    width: 100%;
    margin-top: 60px;
  }
  section.contact .container form p {
    width: 100%;
    padding: 0px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  section.contact .container form button {
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}
#popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 80px 20px 60px;
  max-width: 92vw;
  width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%), #906;
  box-shadow: 0 1.5px 2px 0 rgba(255, 255, 255, 0.15) inset, 0 0 0 1.5px #906;
  border-radius: 20px;
  display: none;
}
#popup-form #close {
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8px;
  right: 8px;
}
#popup-form #close img {
  filter: contrast(1) brightness(10000);
  rotate: 45deg;
}
#popup-form #close:hover {
  background-color: #fff;
}
#popup-form #close:hover img {
  filter: contrast(1) brightness(1);
}
#popup-form p {
  color: #fff;
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
  text-align: center;
}

/* clients */
section.clients {
  padding: 60px 0px;
}
section.clients .container .title, section.clients .container .desc {
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
section.clients .container .content-mobile {
  display: none;
}
section.clients .container .content-desktop {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
section.clients .container .content .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
section.clients .container .content .box:nth-of-type(even) {
  flex-direction: row-reverse;
}
section.clients .container .content .box .side-img {
  width: 580px;
  height: 580px;
  overflow-y: hidden;
  border-radius: 18px;
  position: relative;
}
section.clients .container .content .box .side-img img {
  margin: 0px;
  width: 580px;
  height: 580px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.clients .container .content .box .side-text {
  width: calc(100% - 580px - 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
section.clients .container .content .box .side-text .icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
section.clients .container .content .box .side-text .icons img {
  max-height: 44px;
  width: auto;
  display: block;
}
section.clients .container .content .box .side-text h3 {
  text-align: left;
  width: 100%;
}
section.clients .container .content .box .side-text p {
  text-align: left;
}

@media (max-width: 1300px) {
  section.clients .container .content .box {
    gap: 40px;
  }
  section.clients .container .content .box .side-img {
    width: 500px;
    height: 500px;
  }
  section.clients .container .content .box .side-img img {
    width: 500px;
    height: 500px;
  }
  section.clients .container .content .box .side-text {
    width: calc(100% - 500px - 40px);
  }
  section.clients .container .content .box .side-text h3 {
    font-size: 38px;
  }
}
@media (max-width: 1000px) {
  section.clients {
    padding: 32px 0px;
  }
  section.clients .container .content-desktop {
    margin-top: 32px;
    gap: 32px;
  }
  section.clients .container .content .box {
    gap: 32px;
  }
  section.clients .container .content .box .side-img {
    width: 340px;
    height: 340px;
  }
  section.clients .container .content .box .side-img img {
    width: 340px;
    height: 340px;
  }
  section.clients .container .content .box .side-text {
    width: calc(100% - 340px - 32px);
  }
  section.clients .container .content .box .side-text h3 {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  section.clients .container .content-desktop {
    display: none;
  }
  section.clients .container .content-mobile {
    display: block;
    width: 100vw;
    margin-left: -4vw;
    margin-top: 32px;
  }
  section.clients .container .content-mobile .swiper {
    padding-right: 4vw;
    padding-left: 4vw;
  }
  section.clients .container .content-mobile .swiper .swiper-wrapper {
    padding: 0px 0vw;
  }
  section.clients .container .content-mobile .swiper .swiper-wrapper .swiper-slide .box {
    flex-direction: column;
    gap: 24px;
  }
  section.clients .container .content-mobile .swiper .swiper-wrapper .swiper-slide .box .side-img {
    width: 100%;
    height: auto;
  }
  section.clients .container .content-mobile .swiper .swiper-wrapper .swiper-slide .box .side-img img {
    width: 100%;
    height: auto;
  }
  section.clients .container .content-mobile .swiper .swiper-wrapper .swiper-slide .box .side-text {
    width: 100%;
  }
  section.clients .container .content-mobile .swiper .swiper-pagination-bullets {
    position: relative;
    margin-top: 60px;
    height: 8px;
    margin-bottom: 34px;
  }
  section.clients .container .content-mobile .swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 8px;
    width: 8px;
    height: 8px;
    fill: var(--Color, #01407E);
    opacity: 0.4;
    border-radius: 8px;
    transition: 0.2s ease;
  }
  section.clients .container .content-mobile .swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--Color, #01407E);
    opacity: 1;
    width: 68px;
  }
  section.clients .container .content-mobile .cta {
    width: calc(92vw - 20px);
  }
}
/* article */
section.article-hero {
  position: relative;
  overflow: hidden;
}
section.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  background-image: url(../img/footer.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: rotate(180deg);
}
section.article-hero .container {
  position: relative;
  padding: 96px 0px 60px;
  width: 1000px;
}
section.article-hero .container .info-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
section.article-hero .container .info-top .categories {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
section.article-hero .container .info-top .categories .cat {
  height: 28px;
  padding: 0 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
}
section.article-hero .container .info-top .date span {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  white-space: nowrap;
}
section.article-hero .container h1 {
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin: 16px 0px;
}
section.article-hero .container p.excerpt {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 40px;
}
section.article-hero .container .info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.article-hero .container .info-bottom .author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
section.article-hero .container .info-bottom .author img {
  border-radius: 6px;
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.article-hero .container .info-bottom .author .text p.name {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 125%;
}
section.article-hero .container .info-bottom .author .text p.position {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
section.article-hero .container .info-bottom .share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
section.article-hero .container .info-bottom .share span {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
section.article-hero .container .info-bottom .share .in {
  text-decoration: none;
}
section.article-hero .container .info-bottom .share .in img {
  transition: 0.12s ease;
  filter: contrast(1) brightness(10000);
}
section.article-hero .container .info-bottom .share .in:hover img {
  filter: contrast(1) brightness(1);
}

@media (max-width: 1000px) {
  section.article-hero .container h1 {
    font-size: 38px;
  }
  section.article-hero .container p.excerpt {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  section.article-hero::before {
    background-image: url(../img/footer-m.svg);
  }
  section.article-hero .container {
    padding: 83px 0px 69px;
  }
  section.article-hero .container .info-top {
    justify-content: space-between;
  }
  section.article-hero .container h1 {
    font-size: 38px;
    margin: 16px 0px;
    text-align: center;
  }
  section.article-hero .container p.excerpt {
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
  }
  section.article-hero .container .info-bottom .share {
    display: none;
  }
}
section.article-content {
  margin: 60px 0px;
}
section.article-content .container {
  width: 1000px;
}
section.article-content .container h1, section.article-content .container h2, section.article-content .container h3, section.article-content .container h4, section.article-content .container h5, section.article-content .container h6 {
  background: linear-gradient(90deg, #01407E -0.08%, #906 34.94%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 16px;
}
section.article-content .container h1, section.article-content .container h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 56px;
}
section.article-content .container a {
  text-decoration: none;
}
section.article-content .container p, section.article-content .container ul, section.article-content .container li, section.article-content .container span, section.article-content .container strong {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
section.article-content .container a {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
section.article-content .container strong {
  color: #01407E;
}
section.article-content .container ul, section.article-content .container ol {
  padding-left: 32px;
  margin-top: 12px;
}
section.article-content .container p {
  margin-top: 16px;
}
section.article-content .container img {
  height: auto;
  width: 100%;
  border-radius: 20px;
  margin-top: 56px;
}

@media (max-width: 1000px) {
  section.article-content .container h1, section.article-content .container h2 {
    font-size: 38px;
    margin-top: 32px;
  }
  section.article-content .container p, section.article-content .container ul, section.article-content .container li, section.article-content .container span, section.article-content .container strong, section.article-content .container a {
    font-size: 16px;
    font-style: normal;
  }
}
@media (max-width: 700px) {
  section.article-content {
    margin: 32px 0px;
  }
  section.article-content .container img {
    margin-top: 32px;
  }
}
section.articles {
  padding: 60px 0px;
  background: #F8F8F8;
}
section.articles .headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.articles .headline h2.title {
  margin: 0px;
}
section.articles.articles-blog {
  background: #FFF;
  padding: 60px 0px 75px;
}
section.articles.articles-blog .content {
  margin-top: 40px;
}
section.articles .content {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
section.articles .content .box {
  width: calc(33.3333333333% - 15px);
  margin-bottom: 4px;
  text-decoration: none;
}
section.articles .content .box:hover .img-box .thumbnail {
  transform: scale(1.1);
}
section.articles .content .box .img-box {
  width: 100%;
  height: 275px;
  border-radius: 20px;
  overflow: hidden;
}
section.articles .content .box .img-box .thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.32s ease;
}
section.articles .content .box .info {
  margin: 24px 0px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
section.articles .content .box .info .categories {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
section.articles .content .box .info .categories .cat {
  height: 24px;
  padding: 0 12px;
  border-radius: 4px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(351deg, rgba(1, 64, 126, 0.2) -16.5%, rgba(255, 255, 255, 0.2) 124.22%);
}
section.articles .content .box .info .date span {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  white-space: nowrap;
}
section.articles .content .box p.post-title {
  margin-bottom: 12px;
  color: #01407E;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}
section.articles .content .box p.post-desc {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
section.articles .cta-more {
  display: none;
}
section.articles #more {
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
}

@media (max-width: 1200px) {
  section.articles .content .box {
    width: calc(50% - 10px);
  }
  section.articles .content .box .img-box {
    height: 30vw;
  }
  section.articles.articles-post .content {
    margin-top: 40px;
  }
  section.articles.articles-post .content .box:last-of-type {
    display: none;
  }
}
@media (max-width: 1000px) {
  section.articles {
    padding: 32px 0px;
  }
  section.articles .headline .cta {
    display: none;
  }
  section.articles .content {
    margin-top: 32px;
  }
  section.articles.articles-post .content {
    margin-top: 32px;
  }
  section.articles .cta-more {
    display: flex;
    margin-top: 32px;
  }
}
@media (max-width: 700px) {
  section.articles .content {
    gap: 28px;
  }
  section.articles .content .box {
    width: 100%;
  }
  section.articles .content .box .info .categories .cat {
    font-size: 16px;
  }
  section.articles .content .box .img-box {
    height: 63vw;
  }
  section.articles .content .box p.post-desc {
    font-size: 16px;
  }
}
/* featured */
section.featured {
  padding-top: 60px;
}
section.featured .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
section.featured .container .info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
section.featured .container .info.info-mobile {
  display: none;
}
section.featured .container .info .categories {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
section.featured .container .info .categories .cat {
  height: 24px;
  padding: 0 12px;
  border-radius: 4px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(351deg, rgba(1, 64, 126, 0.2) -16.5%, rgba(255, 255, 255, 0.2) 124.22%);
}
section.featured .container .info .date span {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  white-space: nowrap;
}
section.featured .container .box-img {
  border-radius: 20px;
  width: 600px;
  height: 400px;
}
section.featured .container .box-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.featured .container .box-text {
  width: calc(100% - 600px);
  padding-left: 64px;
}
section.featured .container .box-text p.title {
  margin: 16px 0px;
}
section.featured .container .box-text p.post-desc {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
section.featured .container .box-text .more-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  margin-top: 24px;
}
section.featured .container .box-text .more-btn span {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
section.featured .container .box-text .more-btn:hover span {
  color: #01407E;
}
section.featured .container .box-text .cta {
  display: none;
}

@media (max-width: 1200px) {
  section.featured .container .box-img {
    width: 480px;
    height: 320px;
  }
  section.featured .container .box-text {
    padding-left: 32px;
    width: calc(100% - 480px);
  }
  section.featured .container .box-text p.title {
    font-size: 38px;
  }
}
@media (max-width: 1000px) {
  section.featured {
    padding-top: 32px;
  }
  section.featured .container {
    flex-direction: column;
    width: 620px;
  }
  section.featured .container .info {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  section.featured .container .info.info-desktop {
    display: none;
  }
  section.featured .container .info.info-mobile {
    display: flex;
  }
  section.featured .container .box-img {
    width: 620px;
    height: 413px;
    max-width: 100%;
  }
  section.featured .container .box-text {
    width: 100%;
    padding-left: 0px;
  }
  section.featured .container .box-text p.post-desc {
    text-align: center;
    font-size: 16px;
  }
  section.featured .container .box-text .more-btn {
    display: none;
  }
  section.featured .container .box-text .cta {
    display: flex;
    margin-top: 16px;
  }
}
@media (max-width: 700px) {
  section.featured .container .info .categories .cat {
    font-size: 16px;
  }
  section.featured .container .info .date span {
    font-size: 16px;
  }
  section.featured .container .box-img {
    width: 100%;
    height: 62vw;
  }
}
section.error {
  padding: 200px 0px;
}
section.error .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

main.documentation .container {
  padding: 30px 0px 120px;
}
main.documentation .container h1 {
  text-align: center;
  margin-bottom: 40px;
}
main.documentation .container h2, main.documentation .container h3, main.documentation .container h4, main.documentation .container h5, main.documentation .container h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 2em 0 1em;
  color: #222;
}
main.documentation .container h1 {
  font-size: 2.2em;
}
main.documentation .container h2 {
  font-size: 1.8em;
}
main.documentation .container h3 {
  font-size: 1.4em;
}
main.documentation .container h4 {
  font-size: 1.2em;
}
main.documentation .container h5 {
  font-size: 1em;
}
main.documentation .container h6 {
  font-size: 0.9em;
}
main.documentation .container p {
  margin: 0 0 1em;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
main.documentation .container strong {
  font-weight: 700;
  color: #000;
}
main.documentation .container a {
  color: #0073e6;
  text-decoration: underline;
  transition: color 0.3s;
}
main.documentation .container a:hover {
  color: #005bb5;
  text-decoration: none;
}
main.documentation .container ul, main.documentation .container ol {
  margin: 0 0 1.5em 2em;
  padding: 0;
}
main.documentation .container li {
  margin: 0.5em 0;
}
main.documentation .container blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  color: #555;
  font-style: italic;
  margin: 1em 0;
}
main.documentation .container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
}/*# sourceMappingURL=style.css.map */