body {
  font-family: "Inter", sans-serif;
  color: #0E1011;
  line-height: 1.2;
}

.wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site {
  flex-grow: 1;
}

.container {
  max-width: 1568px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 102px;
}

.header-logo {
  flex-grow: 1;
}

.header-logo a {
  display: inline-flex;
}

.header-logo img {
  max-width: 328px;
  height: auto;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

.menu-list a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.menu-list a:hover {
  text-decoration: underline;
}

.header-toggle {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-toggle svg {
  width: 40px;
  height: 40px;
}

.hero-inner {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.hero-media {
  flex-basis: 496px;
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  padding-bottom: 155%;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-content {
  flex-grow: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-family: "Anton SC", sans-serif;
  font-size: 110px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.hero-title-grey {
  color: #B7B7B8;
}

.hero-title-offset {
  padding-left: 100px;
}

.hero-sub-title {
  flex-grow: 1;
  text-align: right;
  margin-top: 8px;
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  background-color: #13022D;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 0 24px;
  box-sizing: border-box;
  text-decoration: none;
  gap: 8px;
  border: 1px solid #13022D;
  transition: 0.2s ease-in-out;
}

.button svg {
  width: 24px;
  height: 24px;
}

.button.button-outline {
  background-color: #fff;
  color: #13022D;
}

.marquee {
  overflow: hidden;
  background-color: #EEEEEE;
}

.marquee-line {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 66px;
  white-space: nowrap;
}

.marquee-rates {
  display: flex;
  gap: 16px;
  align-items: center;
  text-transform: uppercase;
  font-size: 28px;
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
}

.marquee-rates-value {
  color: #F40D29;
}

.marquee-rates-change {
  color: #196923;
}

.marquee-rates-change.down {
  color: #F40D29;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-bg {
  background-color: #F8F8F8;
}

.section-bg.section-bg-grey {
  background-color: #EEEEEE;
}

.section-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.section-col {
  flex-basis: calc((100% - 40px) / 2);
}

.section-col.section-col-60 {
  flex-basis: calc((100% - 40px) / 100 * 68);
}

.section-col.section-col-30 {
  flex-basis: calc((100% - 40px) / 100 * 32);
}

.section-header {
  max-width: 900px;
}

.section-header:not(:last-child) {
  margin-bottom: 40px;
}

.section-before-title {
  color: #13022D;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  margin: 0;
}

.section-title span {
  color: #6E7070;
}

.section-sub-title {
  line-height: 1.5;
  font-size: 24px;
  margin-top: 16px;
}

.section-sub-title p:first-child {
  margin-top: 0;
}

.section-sub-title p:last-child {
  margin-bottom: 0;
}

.section-text {
  line-height: 1.5;
  font-size: 18px;
}

.section-text p:first-child {
  margin-top: 0;
}

.section-text p:last-child {
  margin-bottom: 0;
}

.section-text:not(:last-child) {
  margin-bottom: 40px;
}

.section-image {
  position: relative;
  padding-bottom: 150%;
  overflow: hidden;
  border-radius: 16px;
}

.section-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-image.section-image-map {
  padding-bottom: 100%;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.features.features-alt .features-item {
  flex-basis: calc((100% - 24px) / 2);
  padding: 80px 40px 60px;
  border-radius: 0;
}

.features.features-alt .features-title {
  font-size: 36px;
}

.features-item {
  flex-basis: calc((100% - 48px) / 3);
  background-color: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 128px 40px 40px;
}

.features-title {
  font-family: "Anton SC", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 28px;
  color: #13022D;
  margin-bottom: 16px;
}

.features-text {
  font-size: 18px;
  line-height: 1.5;
}

.features-item-bg {
  background-color: #F8F8F8;
}

.features-item-bg-dark {
  background-color: #EEEEEE;
}

.blog-posts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-posts-item {
  flex-basis: calc((100% - 24px * 2) / 3);
  box-sizing: border-box;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}

.blog-posts-image {
  width: 100%;
}

.blog-posts-image a {
  display: block;
  position: relative;
  padding-bottom: 100%;
}

.blog-posts-image a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.blog-posts-content {
  padding: 24px 24px 40px;
  box-sizing: border-box;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-posts-title {
  font-family: "Anton SC", sans-serif;
  font-size: 32px;
  color: #13022D;
  text-transform: uppercase;
  font-weight: 400;
}

.blog-posts-title a {
  color: currentColor;
  text-decoration: none;
}

.blog-posts-description {
  flex-grow: 1;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.5;
}

.blog-posts-description ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 24px;
}

.blog-posts-button {
  margin-top: 24px;
}

.blog-posts-button .button {
  width: 100%;
  font-size: 16px;
  text-transform: none;
}

.feedback-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.feedback-col {
  flex-basis: calc((100% - 40px) / 2);
}

.feedback-input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.feedback-input label {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.feedback-input input {
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
  font-size: 18px;
  background-color: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  box-sizing: border-box;
  height: 60px;
  outline: none;
}

.feedback-submit {
  margin-top: 40px;
}

.feedback-submit .button {
  text-transform: none;
  font-size: 16px;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contacts-item {
  flex-basis: calc((100% - 40px) / 2);
  display: flex;
  gap: 8px;
}

.contacts-item.contacts-item-100 {
  flex-basis: 100%;
}

.contacts-icon {
  margin-top: 24px;
}

.contacts-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  color: #13022D;
}

.contacts-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #13022D;
}

.contacts-value {
  font-family: "Anton SC", sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 400;
}

.contacts-value a {
  color: currentColor;
  text-decoration: none;
}

.page-header {
  /* background-color: #F8F8F8; */
  padding-top: 24px;
  padding-bottom: 24px;
}

.page-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.page-header-title {
  text-transform: uppercase;
  font-family: "Anton SC", sans-serif;
  font-size: 64px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
  font-size: 18px;
}

.breadcrumbs li a {
  color: currentColor;
  display: flex;
}

.breadcrumbs li svg {
  width: 16px;
  height: 16px;
  color: #000;
}

.breadcrumbs li:not(:last-child) {
  position: relative;
  padding-right: 24px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../images/chevron-right.svg) center/contain no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.live-rates {
  overflow: auto;
}

.live-rates table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 800px;
}

.live-rates thead th {
  background-color: #EEEEEE;
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 28px;
  text-align: center;
  width: 20%;
  padding: 18px 10px;
}

.live-rates tbody td {
  width: 20%;
  font-size: 24px;
  text-align: center;
  padding: 16px 10px;
  line-height: 1.5;
}

.live-rates tbody td .green {
  color: #20C627;
}

.live-rates tbody td .red {
  color: #F40D29;
}

.live-rates tbody td .small {
  font-size: 14px;
}

.live-rates tbody tr:nth-child(2n+1) td {
  background-color: #F8F8F8;
}

.footer {
  background-color: #0E1011;
  padding-top: 64px;
  padding-bottom: 40px;
  color: #fff;
}

.footer-top {
  display: flex;
  gap: 40px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo a {
  display: flex;
}

.footer-logo img {
  max-width: 453px;
  height: auto;
  width: 100%;
}

.footer-text {
  flex-grow: 1;
  font-size: 18px;
  line-height: 1.5;
}

.footer-center {
  margin-top: 120px;
  display: flex;
  gap: 40px;
}

.footer-contacts {
  flex-basis: 756px;
  flex-shrink: 0;
}

.footer-contacts .contacts-label {
  color: #fff;
}

.footer-contacts .contacts-icon svg {
  color: #fff;
}

.footer-nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.footer-nav-list {
  padding: 0;
  list-style: none;
  margin: 0;
  text-transform: uppercase;
  font-size: 24px;
  color: #fff;
}

.footer-nav-list li:not(:last-child) {
  margin-bottom: 18px;
}

.footer-nav-list a {
  color: currentColor;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 96px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  align-items: flex-end;
}

.footer-bottom a {
  color: currentColor;
  text-decoration: none;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-col {
  flex-basis: calc((100% - 72px) / 4);
}

@media (min-width: 1023.98px) {
  .blog-posts-item:hover {
    box-shadow: 0 24px 24px -24px rgba(15, 15, 15, 0.2);
  }
}

@media (min-width: 1024px) {
  .header-toggle {
    display: none;
  }

  .button:hover {
    background-color: #fff;
    color: #0E1011;
  }

  .button.button-outline:hover {
    background-color: #0E1011;
    color: #fff;
  }
}

@media (max-width: 1600px) {
  .hero-inner {
    gap: 2.5vw;
  }

  .hero-media {
    flex-basis: 32.2%;
  }

  .hero-content {
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
  }

  .hero-title {
    font-size: 6.875vw;
  }

  .hero-title-offset {
    padding-left: 6.25vw;
  }
}

@media (max-width: 1599.98px) {
  .features-item {
    padding: 90px 24px 24px;
  }
}

@media (max-width: 1199.98px) {
  .blog-posts-item {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 1190.98px) {
  .section-title {
    font-size: 40px;
  }

  .features-title {
    font-size: 24px;
  }
}

@media (max-width: 1023.98px) {
  .header-inner {
    min-height: 88px;
  }

  .header-logo img {
    max-width: 262px;
  }

  .header-nav {
    display: none;
  }

  .hero-sub-title {
    font-size: 18px;
  }

  .hero-buttons {
    gap: 16px;
  }

  .footer-top {
    display: block;
  }

  .footer-text {
    margin-top: 24px;
  }

  .footer-center {
    display: block;
  }

  .footer-nav {
    text-align: left;
    margin-top: 40px;
    display: block;
  }

  .footer-bottom-col {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767.98px) {
  .hero-inner {
    display: block;
  }

  .hero-image {
    padding-bottom: 106%;
  }

  .hero-content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-title {
    font-size: 10.7vw;
  }

  .hero-title-offset {
    padding-left: 0;
    text-align: right;
  }

  .hero-sub-title {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    height: 48px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-row {
    flex-direction: column;
  }

  .section-col {
    flex-basis: auto;
    width: 100%;
  }

  .section-before-title {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-sub-title {
    font-size: 16px;
  }

  .section-image {
    padding-bottom: 89%;
  }

  .features.features-alt .features-item {
    flex-basis: 100%;
    padding: 40px 16px 16px;
  }

  .features.features-alt .features-title {
    font-size: 24px;
  }

  .features {
    gap: 16px;
  }

  .features-item {
    flex-basis: 100%;
    padding: 64px 16px 16px;
  }

  .features-title {
    font-size: 18px;
  }

  .features-text {
    font-size: 14px;
  }

  .blog-posts-item {
    flex-basis: 100%;
  }

  .blog-posts-title {
    font-size: 20px;
  }

  .blog-posts-description {
    font-size: 14px;
  }

  .feedback-row {
    gap: 16px;
  }

  .feedback-col {
    flex-basis: 100%;
  }

  .feedback-input label {
    font-size: 14px;
  }

  .feedback-input input {
    height: 56px;
  }

  .feedback-submit .button {
    height: 56px;
    width: 100%;
  }

  .feedback-submit {
    margin-top: 16px;
  }

  .contacts {
    flex-direction: column;
    gap: 24px;
  }

  .contacts-item {
    flex-basis: auto;
  }

  .contacts-icon {
    margin-top: 16px;
  }

  .contacts-value {
    font-size: 16px;
  }

  .page-header-title {
    font-size: 32px;
  }

  .breadcrumbs {
    font-size: 14px;
  }

  .live-rates thead th {
    font-size: 18px;
    padding: 8px 8px;
  }

  .live-rates tbody td {
    font-size: 16px;
    padding: 8px 8px;
  }

  .footer-text {
    display: none;
  }

  .footer-center {
    margin-top: 80px;
  }

  .footer-nav-list li:not(:last-child) {
    margin-bottom: 14px;
  }

  .footer-nav-list {
    font-size: 16px;
  }

  .footer-bottom {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-col {
    flex-basis: auto;
  }
}

@media (max-width: 359.98px) {
  .header-logo img {
    max-width: 220px;
  }
}