* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'segoe';
}
a {
  text-decoration: none;
}
.container {
  width: 1061px;
  margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
  .container {
    width: 850px;
  }
}
@media only screen and (max-width: 1080px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-Italic.woff2') format('woff2'), url('../fonts/SegoeUI-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI.woff2') format('woff2'), url('../fonts/SegoeUI.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-Bold.woff2') format('woff2'), url('../fonts/SegoeUI-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-Light.woff2') format('woff2'), url('../fonts/SegoeUI-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUIBlack-Italic.woff2') format('woff2'), url('../fonts/SegoeUIBlack-Italic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUIBlack.woff2') format('woff2'), url('../fonts/SegoeUIBlack.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-BoldItalic.woff2') format('woff2'), url('../fonts/SegoeUI-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-Semilight.woff2') format('woff2'), url('../fonts/SegoeUI-Semilight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-LightItalic.woff2') format('woff2'), url('../fonts/SegoeUI-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-SemiboldItalic.woff2') format('woff2'), url('../fonts/SegoeUI-SemiboldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-Semibold.woff2') format('woff2'), url('../fonts/SegoeUI-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'segoe';
  src: url('../fonts/SegoeUI-SemilightItalic.woff2') format('woff2'), url('../fonts/SegoeUI-SemilightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
.header {
  width: 100%;
  background: #fff;
  padding: 14px 0;
  position: relative;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
}
.header__container {
  width: 78.5%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
  width: 177px;
  height: 67px;
}
.logo__img {
  width: 100%;
  height: 100%;
}
.nav__list {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.nav__item:not(:last-child) {
  margin-right: 20px;
}
.nav__link {
  font-family: 'segoe';
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  color: #000000;
  transition: 300ms linear;
}
.nav__link.active {
  color: #FF8012;
}
.nav__link:hover {
  color: #FF8012;
}
.nav__btn {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  background-color: #FF8012;
  border: 1px solid #FF8012;
  border-radius: 24px;
  padding: 11px 15px;
  transition: 300ms linear;
}
.nav__btn:hover {
  color: #FF8012;
  background-color: #fff;
  border: 1px solid #FF8012;
}
@media only screen and (max-width: 1280px) {
  .header__container {
    width: 90%;
  }
}
.burger {
  display: none;
  cursor: pointer;
  width: 22px;
  height: 15px;
  flex-direction: column;
  justify-content: space-between;
}
.burger-line {
  height: 2px;
  background: #FF8012;
  transition: all 300ms linear;
}
@media only screen and (max-width: 1024px) {
  .nav {
    display: none;
    opacity: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    transform: translateY(100%);
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
  }
  .nav__list {
    flex-direction: column;
    padding: 40px 0;
  }
  .nav__item {
    margin-bottom: 20px;
  }
  .nav__link {
    font-size: 34px;
    color: #fff;
  }
  .nav__btn {
    font-size: 30px;
    padding: 15px 20px;
  }
  .nav.active {
    display: block;
    opacity: 1;
    transition: all 300ms linear;
    z-index: 100;
  }
  .burger {
    display: flex;
    position: relative;
  }
  .burger.active .burger-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
  }
  .burger.active .burger-line:first-child {
    transform: rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:last-child {
    transform: rotate(-45deg);
  }
}
.hero {
  background-color: #002164;
  color: #fff;
  display: flex;
}
.hero__content {
  width: 50%;
  padding: 131px 6% 167px;
  display: flex;
  flex-direction: column;
}
.hero__title {
  font-size: 78px;
  font-weight: 600;
  line-height: 94px;
  margin-bottom: 25px;
}
.hero__desc {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero__btn-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero__btn {
  width: 48%;
  min-width: 310px;
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  margin-top: 25px;
  padding: 10px 0 14px;
  transition: 300ms;
}
.hero__btn.--white {
  background: #fff;
  color: #002164;
  border: 6px solid #fff;
}
.hero__btn.--white:hover {
  background: #002164;
  color: #fff;
  border: 6px solid #fff;
}
.hero__btn.--transparent {
  background-color: transparent;
  border: 6px solid #fff;
  color: #fff;
}
.hero__btn.--transparent:hover {
  background: #fff;
  color: #002164;
  border: 6px solid #fff;
}
.hero__img {
  width: 50%;
  background-image: url("../images/hero/NoPath---Copie-\(23\).png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 900px) {
  .hero {
    position: relative;
  }
  .hero__content {
    width: 100%;
    background-color: rgba(0, 33, 100, 0.8);
    z-index: 2;
  }
  .hero__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
@media only screen and (max-width: 414px) {
  .hero__title {
    font-size: 58px;
    line-height: 71px;
  }
  .hero__content {
    padding: 67px 20px 85px;
  }
  .hero__btn {
    min-width: 280px;
    max-width: 100%;
  }
}
.video {
  padding: 61px 0 92px;
}
.video__container {
  display: flex;
  flex-direction: column;
}
.video__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 10px;
  color: #002164;
}
.video__desc {
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 20px;
  color: #505050;
}
.video__num-list {
  display: flex;
  justify-content: center;
  margin-bottom: 37px;
}
.video__num-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 50px;
}
.video__num-title-container {
  display: flex;
}
.video__num-title {
  color: #FF8012;
  font-size: 78px;
  font-weight: 600;
  line-height: 94px;
}
.video__num-title.--blue {
  color: #002164;
  margin-right: 15px;
}
.video__num-block-desc {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  color: #505050;
}
.video__frame {
  position: relative;
  width: 100%;
}
.video__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.video__frame::after {
  content: '';
  padding-top: 50.05%;
  display: block;
}
@media only screen and (max-width: 900px) {
  .video__num-title {
    font-size: 48px;
  }
  .video__num-block-desc {
    font-size: 22px;
    text-align: center;
  }
}
@media only screen and (max-width: 667px) {
  .video__num-list {
    flex-wrap: wrap;
  }
  .video__num-block {
    width: 48%;
    margin: unset;
  }
  .video__num-block:nth-child(2n+1) {
    margin-right: 2%;
    margin-bottom: 50px;
  }
  .video__num-title {
    font-size: 72px;
  }
  .video__num-block-desc {
    font-size: 26px;
  }
}
@media only screen and (max-width: 667px) {
  .video__num-block {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .video__num-block:nth-child(2n+1) {
    margin-right: unset;
  }
}
.donate {
  padding: 30px 0 92px;
  width: 100%;
  background-color: #002164;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donate__icon {
  width: 56.38px;
  height: 90.2px;
  margin-bottom: 34px;
}
.donate__icon-img {
  width: 100%;
  height: 100%;
}
.donate__desc {
  width: 670px;
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  color: #fff;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.donate__num {
  font-size: 78px;
  font-weight: 600;
  line-height: 94px;
  color: #fff;
  margin-bottom: 28px;
}
.donate__sum {
  display: flex;
  width: 843px;
  height: 56px;
  margin-bottom: 48px;
}
.donate__sum-orange {
  width: 70%;
  position: relative;
  background-color: #FF8012;
}
.donate__sum-orange:after {
  content: '70%';
  position: absolute;
  right: -14px;
  top: 50%;
  bottom: 0;
  transform: translateX(100%) translateY(-50%);
  font-size: 20px;
  color: #FF8012;
}
.donate__sum-white {
  width: 30%;
  background-color: #fff;
}
.donate__btn {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  padding: 20px 27px;
  border-radius: 40px;
  background-color: #FF8012;
  color: #fff;
  border: 1px solid #FF8012;
}
@media only screen and (max-width: 900px) {
  .donate__sum {
    width: 75%;
  }
  .donate__desc {
    padding: 0 60px;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 414px) {
  .donate {
    padding: 30px 20px 92px;
  }
  .donate__num {
    font-size: 58px;
  }
  .donate__sum {
    width: 100%;
  }
  .donate__btn {
    font-size: 21px;
    padding: 10px 20px;
  }
}
.ambitions {
  padding: 79px 0 67px;
}
.ambitions__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ambitions__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 10px;
  color: #002164;
}
.ambitions__desc {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 45px;
  color: #656260;
}
.ambitions__list {
  display: flex;
  margin-bottom: 75px;
}
.ambitions__item {
  width: 22.75%;
}
.ambitions__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ambitions__item:not(:nth-child(4n + 4)) {
  margin-right: 3%;
}
.ambitions__item-img-container {
  position: relative;
  width: 80%;
  border-radius: 100%;
  background-color: #002164;
  margin-bottom: 15px;
}
.ambitions__item-img-container::after {
  content: '';
  padding-top: 100%;
  display: block;
}
.ambitions__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.ambitions__item-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  text-align: center;
  color: #FF8012;
  margin-bottom: 10px;
}
.ambitions__item-desc {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  color: #656260;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ambitions__btn {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #002164;
  border: 1px solid #002164;
  padding: 20px;
  align-self: center;
  transition: 300ms linear;
}
.ambitions__btn:hover {
  background-color: #fff;
  color: #002164;
  border: 1px solid #002164;
}
@media only screen and (max-width: 900px) {
  .ambitions__list {
    flex-wrap: wrap;
  }
  .ambitions__item {
    width: 48%;
    margin-bottom: 30px;
    padding: 0 40px;
  }
  .ambitions__item:not(:nth-child(4n + 4)) {
    margin-right: 0;
  }
  .ambitions__item:nth-child(2n+1) {
    margin-right: 2%;
  }
}
@media only screen and (max-width: 600px) {
  .ambitions__item {
    width: 100%;
    padding: 10%;
  }
  .ambitions__item-img-container {
    width: 200px;
  }
}
.news {
  background-color: #F8F8F8;
  padding: 46px 0 80px;
}
.news__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  color: #002164;
  margin-bottom: 35px;
}
.news__list {
  display: flex;
}
.news__item {
  width: 32%;
  padding: 17px 27px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.16);
}
.news__item:not(:nth-child(3n + 3)) {
  margin-right: 2%;
}
.news__item-img-container {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}
.news__item-img-container::after {
  content: '';
  padding-top: 77%;
  display: block;
}
.news__item-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.news__item-date {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: #FF8012;
  margin-bottom: 10px;
}
.news__item-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 27px;
  color: #002164;
  margin-bottom: 18px;
  min-height: 54px;
}
.news__item-desc {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  color: #656260;
  margin-bottom: 16.5px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item-line {
  border-top: 2px solid #707070;
  margin-top: auto;
  margin-bottom: 29.5px;
}
.news__item-btn {
  font-size: 23px;
  font-weight: 600;
  line-height: 31px;
  text-align: center;
  color: #fff;
  background-color: #002164;
  border: 1px solid #002164;
  padding: 2px 20px 8px 27px;
  align-self: center;
  transition: 300ms linear;
}
.news__item-btn:hover {
  background-color: #fff;
  color: #002164;
  border: 1px solid #002164;
}
@media only screen and (max-width: 667px) {
  .news__list {
    flex-wrap: wrap;
  }
  .news__item {
    width: 100%;
    margin-bottom: 40px;
  }
  .news__item-img {
    object-fit: cover;
  }
  .news__item-img-container::after {
    padding-top: 58%;
  }
}
.footer__top {
  padding: 37px 0 53px;
  background-color: #656260;
}
.footer__container {
  display: flex;
}
.footer__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 130px;
}
.footer__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  color: #FF8012;
  margin-bottom: 6px;
}
.footer__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 200px;
}
.footer__mail,
.footer__tel,
.footer__item-desc,
.footer__item-link {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}
.footer__icon-container {
  display: flex;
}
.footer__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 16px;
}
.footer__icon-img {
  width: 100%;
  height: 100%;
}
.footer__bottom {
  padding: 18px 20px;
  text-align: center;
  background-color: #002164;
}
.footer__bottom-desc {
  font-size: 20px;
  line-height: 27px;
  color: #fff;
}
.footer__bottom-link {
  color: #FF8012;
}
@media only screen and (max-width: 900px) {
  .footer__container {
    flex-wrap: wrap;
  }
  .footer__item {
    width: 38%;
    margin: unset;
    margin-bottom: 20px;
  }
  .footer__item:nth-child(2n+1) {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 414px) {
  .footer__item {
    width: 100%;
  }
  .footer__item:nth-child(2n+1) {
    margin-right: 0;
  }
}
.about__container {
  width: 1110px;
  margin: 0 auto;
  padding: 43px 0 85px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about__content {
  width: 728px;
  margin-right: auto;
}
.about__content h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  color: #002164;
  margin-bottom: 21px;
}
.about__content p {
  font-size: 17px;
  line-height: 22px;
}
.about__content a {
  font-size: 17px;
  line-height: 22px;
  color: #FF8D2A;
}
.about__content strong {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  color: #002164;
}
.about__content ul {
  list-style-type: "-";
  list-style-position: inside;
}
.about__content li {
  font-size: 17px;
  line-height: 22px;
}
.about__content li::marker {
  margin-right: 5px;
}
.about__desc {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  color: #505050;
  margin: 21px 0 65px;
}
.about__img-container {
  width: 100%;
}
.about__img {
  width: 100%;
  height: auto;
}
.smm {
  width: 283px;
  background-color: #F8F8F8;
  padding: 15px 18px 27px;
}
.smm__block:not(:last-child) {
  margin-bottom: 25px;
}
.smm__block-title {
  font-size: 23px;
  font-weight: 600px;
  line-height: 31px;
  color: #002164;
  margin-bottom: 3px;
}
.smm__block-sub-title {
  font-size: 17px;
  line-height: 22px;
  color: #505050;
  margin-bottom: 12px;
}
.smm__inner-block {
  height: 270px;
  overflow-y: auto;
}
.smm-inner-block-2 {
  height: 320px;
}
@media only screen and (max-width: 1200px) {
  .about__container {
    width: 100%;
    padding: 43px 40px 85px;
  }
  .about__content {
    width: auto;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 900px) {
  .about__container {
    flex-wrap: wrap;
  }
  .about__content {
    width: 100%;
    padding-right: 0;
  }
  .smm {
    display: flex;
    padding: 0;
    margin-top: 50px;
    background-color: unset;
  }
  .smm__block {
    padding: 15px 18px 27px;
    background-color: #F8F8F8;
    margin-right: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .smm {
    display: block;
    padding: 15px 18px 27px;
    background-color: #F8F8F8;
  }
  .smm__block {
    padding: 0;
    background-color: unset;
    margin-right: 0;
  }
}
.partners__container {
  width: 1110px;
  margin: 0 auto;
  padding: 43px 0 85px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.partners__content {
  width: 728px;
  margin-right: auto;
}
.partners__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  color: #002164;
  margin-bottom: 41px;
}
.partners__list {
  display: flex;
  flex-direction: column;
}
.partners__item {
  display: flex;
  padding: 39.5px 0 34.5px;
}
.partners__item:not(:last-child) {
  border-bottom: 1px solid #CFCFCF;
}
.partners__item-img-a {
  display: block;
  width: 160px;
  height: auto;
}
.partners__item-img {
  width: 100%;
  height: auto;
}
.partners__item-text-container {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}
.partners__item-title {
  font-size: 31px;
  font-weight: 600;
  line-height: 41px;
  color: #002164;
  margin-bottom: 10px;
}
.partners__item-sub-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #505050;
  margin-bottom: 10px;
}
.partners__item-link {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  color: #FF8012;
  transition: all 300ms linear;
}
.partners__item-link:hover {
  color: #002164;
}
@media only screen and (max-width: 1200px) {
  .partners__container {
    width: 100%;
    padding: 43px 40px 85px;
  }
  .partners__content {
    width: auto;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 900px) {
  .partners__container {
    flex-wrap: wrap;
  }
  .partners__content {
    width: 100%;
    margin-right: 0;
  }
}
.--custom.news {
  background: #fff;
}
.news__inner-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  color: #002164;
}
.news__list.--custom {
  flex-wrap: wrap;
}
.news__list.--custom .news__item {
  margin-top: 61px;
}
.news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 47px;
}
.news__pagination-item {
  display: block;
}
.news__pagination-item-link {
  font-size: 23px;
  font-weight: 600;
  line-height: 31px;
  color: #002164;
  display: block;
  padding: 1px 19px;
  transition: all 300ms linear;
}
.news__pagination-item-link.active {
  color: #fff;
  background: #002164;
}
.news__pagination-item-link.next {
  border: 1px solid #002164;
}
.news__pagination-item-link:hover {
  color: #fff;
  background: #002164;
}
.news__pagination-item-link:not(.next) {
  margin-right: 12px;
}
.news__inner-img {
  display: block;
  width: 667px;
  height: auto;
  margin: 31.7px auto 18px;
}
.news__inner-date {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: #FF8012;
}
.news.--custom strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  color: #002164;
}
.news.--custom p {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
}
.news.--custom p img {
  width: 448.5px;
  height: auto;
}
.news__inner-icon-container {
  margin-top: 21px;
  display: flex;
  margin-bottom: 46px;
}
.news__inner-icon-link {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 5px;
}
.news__inner-icon-img {
  width: 100%;
  height: 100%;
}
.author a {
  color: #FF8012;
  transition: 200ms;
}
.author a:hover {
  color: #002164;
}
.news__inner-btn-back {
  font-size: 23px;
  font-weight: 600;
  line-height: 31px;
  padding: 0 18px 3px;
  color: #fff;
  background-color: #002164;
  border: 1px solid #002164;
  transition: 300ms linear;
}
.news__inner-btn-back:hover {
  background-color: #fff;
  border: 1px solid #002164;
  color: #002164;
}
.contact__container {
  width: 1110px;
  margin: 0 auto;
  padding: 43px 0 85px;
}
.contact__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  color: #002164;
  margin-bottom: 41px;
}
.contact__desc {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  color: #787674;
  margin-bottom: 18px;
}
.contact__inner-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact__form {
  width: 443px;
  display: flex;
  flex-direction: column;
}
.contact__inner-right {
  width: 280px;
  margin-left: auto;
}
.contact__small-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 19px;
}
.contact__label {
  font-size: 17px;
  line-height: 22px;
  color: #787674;
}
.contact__label.req::after {
  content: '*';
  color: #FF0D0D;
}
.contact__input {
  border: 2px solid #D1D1D1;
  color: #D1D1D1;
  font-size: 17px;
  line-height: 22px;
  padding: 0 16.5px 0 9px;
  outline: none;
}
.contact__input.--small {
  width: 106px;
}
.contact__card-radio-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.contact__card-radio-inner-container {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.contact__check-block {
  margin-top: 9px;
}
.contact__button {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  color: #fff;
  background-color: #FF8012;
  border: 2px solid #FF8012;
  border-radius: 40px;
  padding: 14px 0;
  margin-top: 38px;
  cursor: pointer;
}
.contact-right-desc {
  width: 442px;
  padding: 15px 26px 21px 15px;
  background-color: #E2E2E3;
}
.contact-right-desc strong {
  color: #002164;
  font-weight: bold;
  font-size: 17px;
  line-height: 22px;
}
.contact-right-desc p {
  color: #787674;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
}
.contact-right-desc ul {
  list-style-type: '-';
  list-style-position: inside;
}
.contact-right-desc li {
  color: #787674;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
}
.contact-right-desc a {
  color: #FF8012;
}
@media only screen and (max-width: 1200px) {
  .contact__container {
    width: 100%;
    padding: 40px;
  }
}
@media only screen and (max-width: 1000px) {
  .contact-right-desc {
    width: 350px;
  }
}
@media only screen and (max-width: 900px) {
  .contact__inner-container {
    flex-wrap: wrap;
  }
  .contact-right-desc {
    order: 1;
    width: 100%;
  }
  .contact__form {
    order: 2;
    margin: 40px auto;
  }
  .contact__input {
    width: 50%;
  }
  .contact__small-container {
    width: 50%;
  }
  .contact__input.--small {
    width: 35%;
  }
}
@media only screen and (max-width: 414px) {
  .contact__row {
    flex-direction: column;
    justify-content: unset;
  }
  .contact__input {
    margin-left: 0;
    width: 100%;
  }
  .contact__label-container.contact__inner-right.contact__small-container {
    flex-direction: row;
    align-items: center;
  }
  .contact__inner-right.contact__small-container {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact__input.--small {
    width: 100%;
  }
  .contact__label {
    margin-bottom: 10px;
  }
  .contact__inner-right .contact__label {
    margin-top: 10px;
  }
}
