body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}
a {
  color: rgb(0, 74, 184);
}
p {
  margin: 0 0 20px;
}
ul {
  list-style-type: none;
}
.cols-3 {
  display: flex;
  margin: 0 -12.5px;
}
.cols-3 > * {
  width: 33.3%;
  margin: 0 12.5px;
}
.cols-2 {
  display: flex;
  margin: 0 -12.5px;
}
.cols-2 > * {
  width: 50%;
  margin: 0 12.5px;
}
.main-screen {
  position: relative;
  margin-bottom: 50px;
}
.main-content {
  padding-bottom: 50px;
  display: flex;
}

.lang-switch {
  position: absolute;
  top: -33px;
  right: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.lang-switch .label {
  font-size: 12px;
  color: #1780cc;
}
.lang-switch .label.active {
  color: #444444;
}
.lang-switch .rect {
  margin: 0 5px;
  border: 1px solid #444444;
  width: 28px;
  height: 16px;
  box-sizing: border-box;
}
.lang-switch .rect .rect-pin {
  display: block;
  margin: 1px 0 0 1px;
  width: 12px;
  height: 12px;
  background: #1780cc;
  transition: transform 0.25s;
}
.lang-switch .rect.active .rect-pin {
  transform: translateX(12px);
}

.main-image {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: url(/images/main.jpg) 50% 50% no-repeat;
  background-size: cover;
}
.content-wrapper {
  position: relative;
  width: 100%;
  padding-left: 50%;
}
.content {
  margin: 0 auto;
  max-width: 564px;
  flex: 1;
  padding: 58px 29px 20px;
}
.section {
  position: relative;
  padding: 0 0 78px;
}

.intro {
  position: relative;
  margin-bottom: 80px;
}

.section-title {
  border-top: 1px solid;
  margin-right: 88px;
  margin-bottom: 15px;
  margin-top: 0;
  padding-top: 12px;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.125;
}
.section-title.section-title-align-right {
  margin-left: 88px;
  margin-right: 0;
}
.section-title-sm {
  padding-top: 21px;
  margin-bottom: 15px;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.125;
}
.top-logo {
  margin-bottom: 9px;
}
.request-buttons {
  display: flex;
  justify-content: space-between;
  margin: 15px 0 0;
}
.request-btn {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  padding: 16px 17px;
  font-weight: 700;
  margin-top: 15px;
  background: #1780cc;
  border: none;
  outline: none;
  text-decoration: none;
  text-align: center;
}
.unordered-list {
  list-style: disc;
  padding-left: 24px;
}
.unordered-list li {
  margin: 0 0 7px;
}
.center-vertical {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.title-lined {
  display: block;
  width: 100%;
  padding: 3px 0;
  margin: 0 0 6px;
  border-top: 2px solid #1780cc;
  border-bottom: 2px solid #1780cc;
  color: #1780cc;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.title-lined:hover {
  color: #fff;
  background: #1780cc;
}
.text-issue {
  margin: 10px auto 70px;
  max-width: 345px;
  font-size: 12px;
  line-height: 1.33;
}
.text-issue a {
  color: #000;
}
.letter {
  position: absolute;
}
.letter.letter-0 {
  bottom: -40px;
  right: 131px;
}
.letter.letter-1 {
  top: -15px;
  left: 0;
}
.letter.letter-2 {
  top: 0px;
  right: 10px;
}
.letter.letter-3 {
  bottom: 0px;
  right: 125px;
}
.letter.letter-4 {
  bottom: 47px;
  right: 209px;
}
.letter.letter-5 {
  bottom: 81px;
  right: 0;
}
.letter.letter-6 {
  bottom: 30px;
  left: 116px;
}
.trust-links {
  margin: 25px -25px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.trust-links li {
  width: 33.3%;
  padding: 25px;
  box-sizing: border-box;
  transition: 0.25s transform;
}
/* .trust-links li:hover {
  transform: scale(1.2);
} */
.trust-links li img {
  width: 100%;
  display: block;
}

@media (max-width: 1180px) {
  .main-image {
    width: 40%;
  }
  .content-wrapper {
    padding-left: 40%;
  }
}
@media (max-width: 1023px) {
  .main-image {
    display: none;
  }
  .main-screen {
    margin-bottom: 0;
  }
  .content-wrapper {
    padding-left: 0;
  }

  .letter {
    display: none;
  }
  .cols-3 {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .cols-3 > * {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .cols-2 {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .cols-2 > * {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .section-title {
    margin-right: 0;
  }
  .section-title.section-title-align-right {
    margin-left: 0;
  }
  .center-vertical {
    display: block;
  }
  .intro {
    margin-bottom: 40px;
  }

  .request-buttons {
    display: block;
    margin-top: 38px;
  }
  .request-buttons .request-btn {
    display: block;
    width: 213px;
    margin-left: auto;
    margin-right: auto;
  }
  .section {
    padding: 0 0 40px;
  }
  .unordered-list {
    margin-bottom: 25px;
  }
  .trust-links li {
    width: 50%;
  }
}
