/*animations*/
@keyframes anim-1 {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-5px) translateX(5px);
  }
}
/*-animations*/
/*fonts*/
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.title-xl {
  display: block;
  color: #FFF;
  font-size: 120px;
  font-weight: 400;
  line-height: 86%;
  letter-spacing: -3.6px;
  text-transform: uppercase;
}

.title-xl.blue {
  color: #0B315D;
}

.title-xl.black {
  color: #1B1B1B;
}

.title-x {
  display: block;
  color: #FFF;
  font-size: 100px;
  font-weight: 400;
  line-height: 86%;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.title-x.blue {
  color: #0B315D;
}

.title-x.black {
  color: #1B1B1B;
}

.title-lg {
  display: block;
  color: #FFF;
  font-size: 50px;
  font-weight: 400;
  line-height: 86%;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.title-lg.blue {
  color: #0B315D;
}

.title-lg.black {
  color: #1B1B1B;
}

.title-l {
  display: block;
  color: #FFF;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1.2px;
}

.title-l.blue {
  color: #0B315D;
}

.title-l.black {
  color: #1B1B1B;
}

.title-md {
  display: block;
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.9px;
}

.title-md.blue {
  color: #0B315D;
}

.title-md.black {
  color: #1B1B1B;
}

.title-m {
  display: block;
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.72px;
}

.title-m.blue {
  color: #0B315D;
}

.title-m.black {
  color: #1B1B1B;
}

.title-sm {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.title-sm.blue {
  color: #0B315D;
}

.title-sm.black {
  color: #1B1B1B;
}

.title-s {
  display: flex;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

.title-s:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 10px;
  background: #FFF;
  margin-top: 5px;
}

.title-s.blue {
  color: #0B315D;
}

.title-s.blue:before {
  background: #0B315D;
}

.title-s.black {
  color: #1B1B1B;
}

.title-s.black:before {
  background: #1B1B1B;
}

.text-xxl {
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.72px;
}

.text-xl {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.text-xl.blue {
  color: #0B315D;
}

.text-xl.black {
  color: #1B1B1B;
}

@media (max-width: 1560px) {
  .title-xl {
    font-size: 100px;
  }
  .title-x {
    font-size: 80px;
  }
  .title-lg {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .title-xl {
    font-size: 90px;
  }
  .title-x {
    font-size: 60px;
  }
}
@media (max-width: 800px) {
  .title-xl {
    font-size: 38px;
    line-height: 86%;
    letter-spacing: -1.14px;
  }
  .title-x {
    font-size: 38px;
    letter-spacing: -1.14px;
  }
  .title-lg {
    font-size: 30px;
    letter-spacing: -0.9px;
  }
  .title-l {
    font-size: 24px;
    letter-spacing: -0.72px;
  }
  .title-md {
    font-size: 22px;
    letter-spacing: -0.66px;
  }
  .title-sm {
    font-size: 15px;
    letter-spacing: -0.45px;
  }
  .title-s {
    font-size: 14px;
  }
  .text-xxl {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  .text-xl {
    font-size: 16px;
  }
}
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "SFProDisplay", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  background: #F3F3F3;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-thumb {
  background: #0B315D;
}

body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  opacity: 1;
  border-radius: 0;
  font-family: "SFProDisplay", sans-serif;
  padding: 0px;
  margin: 0px;
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: "SFProDisplay", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
  padding: 0px;
  margin: 0px;
}
textarea::-webkit-input-placeholder {
  color: #1B1B1B;
}
textarea::-moz-placeholder {
  color: #1B1B1B;
}
textarea:-ms-input-placeholder {
  color: #1B1B1B;
}
textarea:-moz-placeholder {
  color: #1B1B1B;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "SFProDisplay", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
  padding: 0px;
  margin: 0px;
}
input::-webkit-input-placeholder {
  color: #1B1B1B;
}
input::-moz-placeholder {
  color: #1B1B1B;
}
input:-ms-input-placeholder {
  color: #1B1B1B;
}
input:-moz-placeholder {
  color: #1B1B1B;
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button {
  font-family: "SFProDisplay", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
  margin: 0px;
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1540px;
  padding: 0 20px;
  margin: 0 auto;
}

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

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.section {
  padding: 80px 0;
}

.section-single {
  padding: 115px 0px 80px 0px;
}

@media (max-width: 1560px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 500px;
  }
  .section {
    padding: 50px 0;
  }
  .section-single {
    padding: 86px 0px 50px 0px;
  }
}
/*-options*/
/*buttons*/
.btn-one {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 14px 20px;
  text-align: center;
  color: #1B1B1B;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.2s;
}
.btn-one::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100%;
  background: #0B315D;
  overflow: hidden;
  transition: 0.2s;
}
.btn-one::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #1B1B1B;
}

.btn-two {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 14px 20px;
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.2s;
}
.btn-two::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100%;
  background: #FFF;
  overflow: hidden;
  transition: 0.2s;
}
.btn-two::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #FFF;
}

@media (max-width: 800px) {
  .btn-one {
    padding: 12px 20px;
    font-size: 16px;
    letter-spacing: -0.48px;
  }
  .btn-two {
    padding: 12px 20px;
    font-size: 16px;
    letter-spacing: -0.48px;
  }
}
@media (min-width: 1200px) {
  .btn-one:hover {
    color: #FFFFFF;
  }
  .btn-one:hover:before {
    transform: translateY(0);
  }
  .btn-two:hover {
    color: #1B1B1B;
  }
  .btn-two:hover:before {
    transform: translateY(0);
  }
}
/*-buttons*/
/*breadcrumbs*/
.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  grid-gap: 6px;
  overflow: auto;
}

.breadcrumbs a {
  display: block;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 5px;
  border: 1px solid #0B315D;
  color: #0B315D;
  font-size: 15px;
  letter-spacing: -0.45px;
}

.breadcrumbs li:last-child {
  pointer-events: none;
}
.breadcrumbs li:last-child a {
  opacity: 0.5;
}

.breadcrumbs.two a {
  color: #FFF;
  border: 1px solid #FFF;
}

@media (max-width: 800px) {
  .breadcrumbs a {
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: -0.42px;
  }
}
/*-breadcrumbs*/
/*navigation*/
.navigation {
  display: flex;
  border-radius: 5px;
  border: 1px solid #DDD;
  width: fit-content;
  margin-top: 60px;
}

.navigation-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 36px;
  height: 50px;
}

.navigation-arrow svg {
  width: 14px;
  height: 26px;
  fill: #0B315D;
}

.navigation-list {
  display: flex;
  align-items: center;
}

.navigation-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 50px;
  border-radius: 5px;
  color: #0B315D;
  font-size: 20px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.navigation-list li.active a {
  background: #FFF;
}

@media (max-width: 800px) {
  .navigation {
    margin-top: 40px;
  }
  .navigation-list a {
    font-size: 18px;
    letter-spacing: -0.54px;
  }
}
@media (min-width: 1200px) {
  .navigation-arrow:hover {
    background: #FFF;
  }
  .navigation-list a:hover {
    background: #FFF;
  }
}
/*-navigation*/
/*header*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  background: #0B315D;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.header-logo img {
  height: 36px;
}

.header-mob {
  width: 74.7%;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-menu {
  display: flex;
  border-radius: 5px;
  border: 1px solid #FFF;
}
.header-menu a {
  position: relative;
  z-index: 1;
  display: block;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.54px;
  padding: 12px 16px;
  transition: 0.2s;
  border-radius: 4px;
}
.header-menu a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translate(-50%, -50%) scale(0);
  background: #FFFFFF;
  border-radius: 5px;
  transition: 0.2s;
}
.header-menu li.active a {
  color: #1B1B1B;
}
.header-menu li.active a:before {
  transform: translate(-50%, -50%) scale(1);
}

.header-lang {
  display: flex;
  border-radius: 5px;
  border: 1px solid #FFF;
}
.header-lang a {
  position: relative;
  z-index: 1;
  display: block;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.54px;
  padding: 12px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: 0.2s;
}
.header-lang a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translate(-50%, -50%) scale(0);
  background: #FFFFFF;
  border-radius: 5px;
  transition: 0.2s;
}
.header-lang li.active a {
  color: #1B1B1B;
}
.header-lang li.active a:before {
  transform: translate(-50%, -50%) scale(1);
}

.header-phone {
  position: relative;
  z-index: 1;
  display: block;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid #FFF;
  transition: 0.2s;
}

.header-phone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translate(-50%, -50%) scale(0);
  background: #FFFFFF;
  border-radius: 5px;
  transition: 0.2s;
}

.header-buttons {
  display: none;
}

@media (max-width: 1560px) {
  .header-menu a {
    font-size: 16px;
    padding: 12px 8px;
  }
  .header-lang a {
    font-size: 16px;
  }
  .header-phone {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .header:before {
    display: none;
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(11, 49, 93, 0.3);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
  }
  .header-logo img {
    height: 26px;
  }
  .header-wrap {
    height: 66px;
  }
  .header-buttons {
    display: flex;
    grid-gap: 12px;
  }
  .header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    border: 1px solid #FFF;
  }
  .header-burger svg:nth-child(2) {
    display: none;
  }
  .header-phone {
    display: none;
  }
  .header-mob {
    display: none;
    position: fixed;
    left: 0;
    top: 61px;
    width: 100%;
    background: #0B315D;
    border-radius: 0px 0px 10px 10px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-nav {
    display: block;
    max-width: 800px;
    margin: auto;
  }
  .header-menu {
    display: block;
    border: none;
    padding: 40px 0;
    margin-bottom: 40px;
    border-top: 1px solid #23466D;
    border-bottom: 1px solid #23466D;
    border-radius: 0;
  }
  .header-menu a {
    width: fit-content;
  }
  .header-lang {
    width: fit-content;
  }
  .header.show::before {
    display: block;
  }
  .header.show .header-mob {
    display: block;
  }
  .header.show .header-burger svg:nth-child(1) {
    display: none;
  }
  .header.show .header-burger svg:nth-child(2) {
    display: block;
  }
}
@media (max-width: 800px) {
  .header-nav {
    max-width: 500px;
  }
}
@media (min-width: 1200px) {
  .header-menu a:hover {
    color: #1B1B1B;
  }
  .header-menu a:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
  .header-lang a:hover {
    color: #1B1B1B;
  }
  .header-lang a:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
  .header-phone:hover {
    color: #1B1B1B;
  }
  .header-phone:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
}
/*-header*/
/*footer*/
.footer {
  background: #0B315D;
  padding: 40px 0;
  margin-top: 80px;
}

.footer-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
}

.footer-text {
  display: block;
  margin-top: 20px;
  opacity: 0.5;
}

.footer-box_title {
  display: block;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}

.footer-box_menu {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.footer-box_menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s;
}

.footer-box_con {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.footer-box_con a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  transition: 0.2s;
}

.footer-form {
  position: relative;
  width: 100%;
}

.footer-error {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  color: #FF3E3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
  display: none;
}

.footer-input {
  position: relative;
  display: block;
  width: 100%;
}

.footer-input_point {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  background: transparent;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}
.footer-input_point::-webkit-input-placeholder {
  color: #FFF;
}
.footer-input_point::-moz-placeholder {
  color: #FFF;
}
.footer-input_point:-ms-input-placeholder {
  color: #FFF;
}
.footer-input_point:-moz-placeholder {
  color: #FFF;
}

.footer-input_point:focus {
  border: 1px solid #fff;
}

.footer-input_point.false {
  border: 1px solid #FF3E3E;
}

.footer-input_point.false + .footer-error {
  display: block;
}

.footer-check {
  display: flex;
  position: relative;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.footer-check_point {
  position: absolute;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.footer-check_point:checked + .footer-check_box {
  border: 1px solid #FFF;
  background: #FFF;
}

.footer-check_point:checked + .footer-check_box svg {
  display: block;
}

.footer-check_point.false + .footer-check_box {
  border: 1px solid #FF3E3E;
}

.footer-check_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.footer-check_box svg {
  display: none;
}

.footer-check_text {
  display: block;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
}
.footer-check_text a {
  color: #FFF;
  text-decoration: underline;
}

.footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 49px;
  height: 49px;
}
.footer-btn svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
}

.footer-bottom_text {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
  opacity: 0.5;
}

.footer-bottom_link {
  display: flex;
  align-items: center;
  grid-column-start: 4;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
  transition: 0.2s;
}
.footer-bottom_link svg {
  fill: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  transition: 0.2s;
}

.footer-bottom_political {
  display: none;
}

@media (max-width: 1200px) {
  .footer-boxs {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 40px;
  }
}
@media (max-width: 800px) {
  .footer {
    margin-top: 50px;
  }
  .footer-text {
    display: none;
  }
  .footer-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 40px;
  }
  .footer-box:nth-child(2) {
    display: none;
  }
  .footer-box_con {
    grid-gap: 15px;
  }
  .footer-box_con a {
    font-size: 18px;
  }
  .footer-check_text {
    font-size: 13px;
    letter-spacing: -0.39px;
    margin-left: 6px;
  }
  .footer-check_box {
    width: 16px;
    height: 16px;
  }
  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
  }
  .footer-bottom_political {
    display: block;
    color: #FFF;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.39px;
    opacity: 0.5;
  }
  .footer-bottom_link:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
@media (min-width: 1200px) {
  .footer-box_menu a:hover {
    color: #FFF;
    border-bottom: 1px solid #FFF;
  }
  .footer-box_con a:hover {
    color: #FFF;
  }
  .footer-bottom_link:hover {
    color: #FFF;
  }
  .footer-bottom_link:hover svg {
    fill: #FFF;
  }
  .footer-btn:hover {
    background: #FFF;
    border-radius: 4px;
  }
  .footer-btn:hover svg {
    fill: #0B315D;
  }
}
/*-footer*/
/*content*/
.content *:last-child {
  margin-bottom: 0px;
}
.content h2 {
  color: #1B1B1B;
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.9px;
  margin-bottom: 30px;
}
.content h3 {
  color: #1B1B1B;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.72px;
  margin-bottom: 30px;
}
.content p {
  color: rgba(27, 27, 27, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}
.content a {
  color: #0B315D;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  text-decoration-line: underline;
}
.content ul {
  margin-bottom: 20px;
}
.content ul li {
  position: relative;
  padding-left: 20px;
  color: rgba(27, 27, 27, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 10px;
}
.content ul li:last-child {
  margin-bottom: 0;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(27, 27, 27, 0.7);
}
.content ol {
  list-style: none;
  counter-reset: num;
}
.content ol li {
  position: relative;
  padding-left: 20px;
  color: rgba(27, 27, 27, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 10px;
}
.content ol li:last-child {
  margin-bottom: 0;
}
.content ol li:before {
  content: counter(num) ".";
  counter-increment: num;
  position: absolute;
  left: 0;
  top: 0px;
  color: rgba(27, 27, 27, 0.7);
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}
.content figure {
  margin: 0px;
  margin-bottom: 20px;
}
.content figure img {
  width: 100%;
  border-radius: 10px;
}
.content figure figcaption {
  color: rgba(27, 27, 27, 0.7);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
}
.content iframe {
  width: 100%;
  height: 440px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.content table {
  width: 100%;
  border-spacing: 0px;
  margin-bottom: 20px;
}
.content th {
  text-align: left;
  color: #1B1B1B;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  padding: 15px 40px 15px 0;
  border-bottom: 1px solid #DDD;
}
.content td {
  text-align: left;
  color: rgba(27, 27, 27, 0.7);
  font-size: 18px;
  font-weight: 400;
  padding: 15px 40px 15px 0;
  border-bottom: 1px solid #DDD;
}

.content-table {
  width: 100%;
  overflow: auto;
}

.content-boxs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}

.content-box p {
  margin-bottom: 0px;
}
.content-box figure {
  margin-bottom: 0px;
}

@media (max-width: 800px) {
  .content h2 {
    font-size: 26px;
    letter-spacing: -0.78px;
    margin-bottom: 20px;
  }
  .content h3 {
    font-size: 22px;
    letter-spacing: -0.66px;
    margin-bottom: 20px;
  }
  .content p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .content ul li {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .content ol li {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .content ol li:before {
    font-size: 16px;
  }
  .content th {
    font-size: 14px;
    padding: 10px 20px 10px 0;
  }
  .content td {
    font-size: 16px;
    padding: 10px 20px 10px 0;
  }
  .content iframe {
    height: 250px;
  }
  .content-boxs {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*-content*/
/*sta*/
.sta-slider {
  height: 100vh;
}

.sta-slide::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 49, 93, 0.4) 0%, rgba(11, 49, 93, 0) 100%);
}

.sta-slide_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.sta-slide_video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.sta-slide_wrap {
  width: 74.7%;
  margin-left: auto;
  padding-top: 215px;
}

.sta-slide_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-top: 40px;
  animation: anim-1 2s infinite linear alternate;
}
.sta-slide_link svg {
  fill: #FFFFFF;
  transition: 0.1s;
}

.sta-arrows {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1500px;
}

.sta-arrows_box {
  display: flex;
  width: 80px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #FFF;
}

.sta-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
}
.sta-arrow::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 10px;
  background: #FFF;
  transition: 0.2s;
}
.sta-arrow svg {
  fill: #FFF;
  transition: 0.2s;
}

.sta-scrollbar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1500px;
}

.sta-scrollbar_wrap {
  width: 668px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid #FFF;
  padding: 4px;
  margin-left: 25.3%;
}

.sta-scrollbar_box {
  width: 100%;
  height: 100%;
}
.sta-scrollbar_box .swiper-scrollbar-drag {
  height: 6px;
  width: 20px;
  border-radius: 2px;
  background: #FFF;
}

@media (max-width: 1560px) {
  .sta-arrows {
    max-width: 1160px;
  }
  .sta-scrollbar {
    max-width: 1160px;
  }
}
@media (max-width: 1200px) {
  .sta-slide_wrap {
    width: 100%;
  }
  .sta-arrows {
    max-width: 760px;
  }
  .sta-arrows_box {
    width: 70px;
    height: 48px;
  }
  .sta-scrollbar_wrap {
    width: 487px;
  }
}
@media (max-width: 800px) {
  .sta-slide_wrap {
    padding-top: 126px;
  }
  .sta-slide_link {
    margin-top: 20px;
  }
  .sta-slide_link svg {
    width: 30px;
    height: 30px;
  }
  .sta-arrows {
    bottom: 50px;
  }
  .sta-arrows_box {
    border-radius: 6px;
    width: 64px;
    height: 46px;
    margin-left: 20px;
  }
  .sta-arrow svg {
    width: 14px;
    height: 26px;
  }
  .sta-scrollbar {
    padding: 0 20px;
    bottom: 20px;
  }
  .sta-scrollbar_wrap {
    width: 100%;
    height: 10px;
    margin-left: 0;
    padding: 1px;
  }
  .swiper-scrollbar-drag {
    width: 100%;
    height: 3px;
    border-radius: 1px;
  }
}
@media (min-width: 1200px) {
  .sta-arrow:hover::before {
    transform: translate(-50%, -50%) scale(1);
  }
  .sta-arrow:hover svg {
    fill: #1B1B1B;
  }
  .sta-slide_link:hover svg {
    fill: #1B1B1B;
  }
}
/*-sta*/
/*abo*/
.abo-title {
  width: 74.7%;
  margin-left: auto;
}

.abo-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  margin-top: 60px;
}

.and-box_text {
  opacity: 0.7;
}

.abo-sub_title {
  margin-top: 60px;
  text-indent: 376px;
}

.abo-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

.abo-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-right: 1px solid #DDD;
}

.abo-item:last-child {
  border-right: none;
}

.abo-item_wrap {
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
}

.abo-item_text {
  margin-left: 20px;
  color: rgba(11, 49, 93, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.abo-btn {
  width: 741px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.abo.two {
  background: #FFF;
}

.abo.two .abo-sub_title {
  margin-top: 0;
}

.abo-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 60px;
}

.abo-point:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.abo-point {
  overflow: hidden;
  height: 440px;
  width: 100%;
  border-radius: 10px;
}

.abo-point-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1560px) {
  .abo-btn {
    width: 570px;
  }
  .abo-sub_title {
    text-indent: 288px;
  }
}
@media (max-width: 1200px) {
  .abo-title {
    width: 100%;
  }
  .abo-sub_title {
    text-indent: 0px;
  }
  .abo-boxs {
    grid-template-columns: repeat(3, 1fr);
  }
  .abo-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .abo-item:nth-child(1) {
    border-bottom: 1px solid #DDD;
  }
  .abo-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  .abo-points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .abo-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 15px;
    margin-top: 40px;
  }
  .abo-sub {
    margin-bottom: 5px;
  }
  .abo-sub_title {
    margin-top: 40px;
  }
  .abo-items {
    margin-top: 60px;
  }
  .abo-item:nth-child(odd) {
    padding: 20px 8px 20px 0px;
  }
  .abo-item:nth-child(even) {
    padding: 20px 0px 20px 8px;
  }
  .abo-item_text {
    font-size: 14px;
    letter-spacing: -0.42px;
    margin-left: 10px;
  }
  .abo-points {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin-top: 40px;
  }
  .abo-point {
    height: 380px;
  }
  .abo-point:nth-child(1) {
    grid-column-start: auto;
    grid-column-end: auto;
    height: 200px;
  }
  .abo-btn {
    width: 100%;
    margin-top: 40px;
  }
}
/*-abo*/
/*ser*/
.ser {
  position: relative;
  overflow: hidden;
}

.ser-fon {
  position: absolute;
  left: 0;
  bottom: 80px;
}

.ser-bg {
  border-radius: 10px;
  background: #0B315D;
  padding: 80px 0;
}

.ser-title {
  width: 74.7%;
  margin-left: auto;
}

.ser-boxs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 60px;
}

.ser-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  height: 248px;
  border-radius: 10px;
  border: 1px solid #FFF;
  transition: 0.3s;
}

.ser-box:nth-child(6) {
  grid-column-start: 3;
}

.ser-box_title {
  transition: 0.2s;
}

.ser-box_text {
  display: block;
  margin-top: 10px;
  opacity: 0.5;
  transition: 0.2s;
}

.ser-box_icon {
  fill: #FFF;
  transition: 0.2s;
}

@media (max-width: 1200px) {
  .ser-title {
    width: 100%;
  }
  .ser-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
  .ser-box:nth-child(6) {
    grid-column-start: auto;
  }
}
@media (max-width: 800px) {
  .ser-bg {
    padding: 50px 0;
  }
  .ser-fon {
    min-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 300px;
  }
  .ser-sub {
    margin-bottom: 10px;
  }
  .ser-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
    margin-top: 40px;
  }
  .ser-box {
    padding: 20px;
    height: auto;
    min-height: 140px;
    border-radius: 8px;
  }
  .ser-box_icon {
    width: 20px;
    height: 20px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .ser-box:hover {
    background: #FFF;
    transform: scale(1.03);
  }
  .ser-box:hover .ser-box_title {
    color: #0B315D;
  }
  .ser-box:hover .ser-box_text {
    color: #0B315D;
    opacity: 1;
  }
  .ser-box:hover .ser-box_icon {
    fill: #0B315D;
  }
}
/*-ser*/
/*and*/
.and-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 60px;
}

.and-title {
  grid-column-start: 1;
  grid-column-end: 3;
}

.and-box:nth-child(6) {
  grid-column-start: 4;
}

.and-box_title {
  border-bottom: 1px solid #DDD;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.and-box_text {
  display: block;
}

@media (max-width: 1200px) {
  .and-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
  .and-title {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .and-box:nth-child(6) {
    grid-column-start: auto;
  }
}
@media (max-width: 800px) {
  .and-title {
    margin-bottom: 10px;
  }
  .and-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 30px;
  }
  .and-box_title {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
/*-and*/
/*pro*/
.pro-title {
  width: 74.7%;
  margin-left: auto;
}

.pro-wrap {
  width: 74.7%;
  margin-left: auto;
}

.pro-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
}

.pro-top_title:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.pro-wrap_sub {
  margin-top: 100px;
}

.pro-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 60px;
}

.pro-box {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s;
}
.pro-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(27, 27, 27, 0.4);
  opacity: 0;
  transition: 0.2s;
}

.pro-box_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pro-box:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 4;
}

.pro-box:nth-child(6) {
  grid-column-start: 4;
}

.pro-box:nth-child(7) {
  grid-column-start: 2;
}

.pro-box:nth-child(11) {
  grid-column-start: 2;
  grid-column-end: 4;
}

.pro-box:nth-child(12) {
  grid-column-start: 1;
}

.pro-box:nth-child(13) {
  grid-column-start: 3;
}

.pro-box:nth-child(18) {
  grid-column-start: 2;
  grid-column-end: 4;
}

.pro-box:nth-child(22) {
  grid-column-start: 4;
}

.pro-box:nth-child(23) {
  grid-column-start: 2;
}

.pro-box:nth-child(27) {
  grid-column-start: 2;
  grid-column-end: 4;
}

.pro-box:nth-child(31) {
  grid-column-start: 4;
}

.pro-btn {
  width: 740px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1560px) {
  .pro-btn {
    width: 570px;
  }
}
@media (max-width: 1200px) {
  .pro-title {
    width: 100%;
  }
  .pro-wrap {
    width: 100%;
  }
  .pro-top {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 40px;
    margin-top: 60px;
  }
  .pro-top_title:nth-child(1) {
    grid-column-start: 1;
  }
  .pro-title {
    width: 100%;
  }
  .pro-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
  .pro-box:nth-child(2) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .pro-box:nth-child(6) {
    grid-column-start: auto;
  }
  .pro-box:nth-child(7) {
    grid-column-start: auto;
  }
  .pro-box:nth-child(11) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .pro-box:nth-child(12) {
    grid-column-start: auto;
  }
  .pro-box:nth-child(13) {
    grid-column-start: auto;
  }
  .pro-box:nth-child(18) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .pro-box:nth-child(22) {
    grid-column-start: auto;
  }
  .pro-box:nth-child(23) {
    grid-column-start: auto;
  }
  .pro-box:nth-child(27) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .pro-box:nth-child(31) {
    grid-column-start: auto;
  }
}
@media (max-width: 800px) {
  .pro-wrap_sub {
    margin-top: 60px;
  }
  .pro-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
    margin-top: 40px;
  }
  .pro-sub {
    margin-bottom: 10px;
  }
  .pro-btn {
    width: 100%;
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .pro-box:hover {
    transform: scale(1.03);
  }
  .pro-box:hover:after {
    opacity: 1;
  }
}
/*-pro*/
/*con*/
.con-bg {
  background: #FFF;
  padding: 80px 0px;
  border-radius: 10px;
}

.con-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.con-info {
  display: flex;
  flex-direction: column;
  margin-top: 146px;
}

.con-info_list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  grid-gap: 30px;
}
.con-info_list a {
  display: block;
  color: rgba(27, 27, 27, 0.7);
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.72px;
  transition: 0.1s;
}

.con-request_title {
  height: 147px;
}

.con-form {
  display: grid;
  grid-gap: 20px;
  margin-top: 40px;
}

.con-input {
  position: relative;
  display: block;
  width: 100%;
}

.con-error {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  color: #FF3E3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
  display: none;
}

.con-input_point {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  border-radius: 5px;
  border: 1px solid rgba(27, 27, 27, 0.7);
  color: #0B315D;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.con-input_point:focus {
  border: 1px solid #0B315D;
}

.con-input_point.false {
  border: 1px solid #FF3E3E;
}

.con-input_point.false + .con-error {
  display: block;
}

.con-check {
  display: flex;
  position: relative;
  width: 100%;
  cursor: pointer;
}

.con-check_point {
  position: absolute;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.con-check_point:checked + .con-check_box {
  background: #0B315D;
  border: 1px solid #0B315D;
}

.con-check_point:checked + .con-check_box svg {
  display: block;
}

.con-check_point.false + .con-check_box {
  border: 1px solid #FF3E3E;
}

.con-check_point.false + .con-check_box + .con-chek_text + .con-error {
  display: block;
}

.con-check_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(27, 27, 27, 0.7);
}
.con-check_box svg {
  display: none;
}

.con-chek_text {
  display: block;
  margin-left: 10px;
  color: rgba(27, 27, 27, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
}
.con-chek_text a {
  color: #0B315D;
  text-decoration: underline;
}

.con-btn {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 49px;
  border-radius: 5px;
  padding: 0 14px;
  cursor: pointer;
  overflow: hidden;
}
.con-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transform: translateY(0);
  width: 100%;
  height: 100%;
  background: #0B315D;
  overflow: hidden;
  transition: 0.2s;
}
.con-btn::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #0B315D;
}
.con-btn svg {
  fill: #FFF;
  transition: 0.2s;
}

.con-btn_point {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}

.con-map {
  grid-column-start: 3;
  grid-column-end: 5;
  padding-left: 40px;
}

.con-map_iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 1560px) {
  .con-info_list a {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .con-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
  .con-info:nth-child(1) {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .con-request:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
  }
  .con-map {
    grid-column-start: 1;
    grid-column-end: 3;
    padding-left: 0;
    height: 260px;
  }
}
@media (max-width: 800px) {
  .con-bg {
    padding: 50px 0px;
  }
  .con-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 40px;
  }
  .con-request_title {
    height: fit-content;
    margin-bottom: 40px;
  }
  .con-form {
    margin-top: 20px;
  }
  .con-info_list {
    grid-gap: 20px;
    margin-top: 20px;
  }
  .con-info:nth-child(1) {
    grid-column-start: 2;
    grid-column-end: 1;
    margin-top: 0;
  }
  .con-map {
    grid-column-start: 1;
    grid-column-end: 1;
    height: 380px;
  }
}
@media (min-width: 1200px) {
  .con-info_list a:hover {
    color: #0B315D;
  }
  .con-btn:hover {
    color: #FFFFFF;
  }
  .con-btn:hover:before {
    transform: translateY(-100%);
  }
  .con-btn:hover svg {
    fill: #0B315D;
  }
  .con-btn:hover .con-btn_point {
    color: #0B315D;
  }
}
/*-con*/
/*new*/
.new-wrap {
  width: 74.7%;
  margin-left: auto;
  margin-bottom: 100px;
}

.new-wrap_title {
  margin-top: 100px;
}

.new-title {
  width: 74.7%;
  margin-left: auto;
  margin-bottom: 60px;
}

.new-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.new-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #DDD;
  padding: 20px;
  transition: 0.2s;
}

.new-box:nth-child(1) {
  grid-column-start: 2;
}

.new-box:nth-child(7) {
  grid-column-start: 4;
}

.new-box:nth-child(8) {
  grid-column-start: 2;
}

.new-box:nth-child(10) {
  grid-column-start: 1;
}

.new-box:nth-child(12) {
  grid-column-start: 4;
}

.new-box:nth-child(13) {
  grid-column-start: 2;
}

.new-box_img {
  width: 100%;
  height: 95px;
  border-radius: 5px;
  object-fit: cover;
}

.new-box_date {
  display: block;
  color: #1B1B1B;
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 15px;
}

.new-box_text {
  display: block;
  color: #1B1B1B;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.72px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-box_icon {
  fill: #1B1B1B;
  margin-top: 20px;
  margin-left: auto;
}

.new-btn {
  width: 741px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.new-navigation {
  width: 74.7%;
  margin-left: auto;
}

@media (max-width: 1560px) {
  .new-btn {
    width: 570px;
  }
}
@media (max-width: 1200px) {
  .new-wrap {
    width: 100%;
  }
  .new-title {
    width: 100%;
  }
  .new-boxs {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .new-box:nth-child(1) {
    grid-column-start: auto;
  }
  .new-box:nth-child(7) {
    grid-column-start: auto;
  }
  .new-box:nth-child(8) {
    grid-column-start: auto;
  }
  .new-box:nth-child(10) {
    grid-column-start: auto;
  }
  .new-box:nth-child(12) {
    grid-column-start: auto;
  }
  .new-box:nth-child(13) {
    grid-column-start: auto;
  }
}
@media (max-width: 800px) {
  .new-wrap {
    margin-left: auto;
    margin-bottom: 40px;
  }
  .new-wrap_title {
    margin-top: 60px;
  }
  .new-title {
    margin-bottom: 40px;
  }
  .new-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
  }
  .new-box {
    border-radius: 8px;
  }
  .new-sub {
    margin-bottom: 10px;
  }
  .new-box_text {
    font-size: 20px;
    letter-spacing: -0.6px;
    margin-top: 8px;
  }
  .new-box_date {
    font-size: 14px;
    margin-top: 10px;
  }
  .new-box_icon {
    width: 20px;
    height: 20px;
    margin-top: 15px;
  }
  .new-btn {
    width: 100%;
    margin-top: 20px;
  }
  .new-navigation {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .new-box:hover {
    background: #FFF;
    transform: scale(1.03);
  }
}
/*-new*/
/*res*/
.res {
  background: #F3F3F3;
}

.res-wrap {
  width: 74.7%;
  margin-left: auto;
}

.res-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
}

.res-top_title:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.res-boxs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 100px;
}

.res-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  height: 248px;
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.res-box_img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
  opacity: 0;
}

.res-box:nth-child(7) {
  grid-column-start: 4;
}

.res-box:nth-child(8) {
  grid-column-start: 2;
}

.res-box:nth-child(9) {
  grid-column-start: 3;
}

.res-box:nth-child(10) {
  grid-column-start: 1;
}

.res-box:nth-child(11) {
  grid-column-start: 3;
}

.res-box:nth-child(13) {
  grid-column-start: 2;
}

.res-box:nth-child(15) {
  grid-column-start: 1;
}

.res-box_title {
  transition: 0.2s;
}

.res-box_text {
  display: block;
  margin-top: 10px;
  opacity: 0.5;
  transition: 0.2s;
}

.res-box_icon {
  fill: #272727;
  transition: 0.2s;
}

@media (max-width: 1200px) {
  .res-wrap {
    width: 100%;
  }
  .res-top {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
    margin-top: 60px;
  }
  .res-top_title:nth-child(1) {
    grid-column-start: 1;
  }
  .res-boxs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }
  .res-box:nth-child(7) {
    grid-column-start: auto;
  }
  .res-box:nth-child(8) {
    grid-column-start: auto;
  }
  .res-box:nth-child(9) {
    grid-column-start: auto;
  }
  .res-box:nth-child(10) {
    grid-column-start: auto;
  }
  .res-box:nth-child(11) {
    grid-column-start: auto;
  }
  .res-box:nth-child(13) {
    grid-column-start: auto;
  }
  .res-box:nth-child(15) {
    grid-column-start: auto;
  }
}
@media (max-width: 800px) {
  .res-top {
    grid-row-gap: 40px;
  }
  .res-sub {
    margin-bottom: 10px;
  }
  .res-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
    margin-top: 60px;
  }
  .res-box {
    padding: 20px;
    height: auto;
    min-height: 140px;
    border-radius: 8px;
  }
  .res-box_icon {
    width: 20px;
    height: 20px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .res-box:hover {
    background: transparent;
    transform: scale(1.03);
  }
  .res-box:hover .res-box_img {
    opacity: 1;
  }
  .res-box:hover .res-box_title {
    color: #FFF;
  }
  .res-box:hover .res-box_text {
    opacity: 0;
  }
  .res-box:hover .res-box_icon {
    fill: #FFF;
  }
}
/*-res*/
/*vid*/
.vid-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.vid-sub {
  margin-top: 50px;
}

.vid-box {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s;
}
.vid-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(27, 27, 27, 0.4);
  opacity: 0;
  transition: 0.2s;
}

.vid-box:nth-child(7) {
  grid-column-start: 4;
}

.vid-box:nth-child(8) {
  grid-column-start: 2;
}

.vid-box:nth-child(13) {
  grid-column-start: 4;
}

.vid-box:nth-child(15) {
  grid-column-start: 3;
}

.vid-box:nth-child(17) {
  grid-column-start: 2;
}

.vid-box_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid-box_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  fill: transparent;
  stroke: #FFF;
  transition: 0.2s;
}
.vid-box_icon path {
  transition: 0.2s;
}

.vid-btn {
  width: 740px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1560px) {
  .vid-btn {
    width: 570px;
  }
}
@media (max-width: 1200px) {
  .vid-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
  .vid-title:nth-child(2) {
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .vid-title {
    margin-bottom: 40px;
  }
  .vid-box:nth-child(7) {
    grid-column-start: auto;
  }
  .vid-box:nth-child(8) {
    grid-column-start: auto;
  }
  .vid-box:nth-child(13) {
    grid-column-start: auto;
  }
  .vid-box:nth-child(15) {
    grid-column-start: auto;
  }
  .vid-box:nth-child(17) {
    grid-column-start: auto;
  }
}
@media (max-width: 800px) {
  .vid-boxs {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
  .vid-title {
    margin-bottom: 30px;
  }
  .vid-sub {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .vid-box {
    height: 520px;
  }
  .vid-box_icon {
    width: 60px;
    height: 60px;
  }
  .vid-btn {
    width: 100%;
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .vid-box:hover {
    transform: scale(1.03);
  }
  .vid-box:hover:after {
    opacity: 1;
  }
  .vid-box:hover .vid-box_icon {
    fill: #FFFFFF;
  }
  .vid-box:hover .vid-box_icon path:nth-child(2) {
    stroke: #0B315D;
    fill: #0B315D;
  }
  /*-pro*/
}
/*fav*/
.fav-title {
  width: 74.7%;
  margin-left: auto;
  margin-bottom: 35px;
}

.fav-boxs {
  list-style: none;
  counter-reset: num;
  border-top: 1px solid #DDD;
}

.fav-box {
  display: block;
  position: relative;
  border-bottom: 1px solid #DDD;
  padding: 30px 0;
  padding-left: 378px;
  cursor: pointer;
  transition: 0.1s;
}

.fav-box:before {
  content: "(" counter(num) ")";
  counter-increment: num;
  position: absolute;
  left: 0;
  top: 30px;
  color: #1B1B1B;
  font-size: 18px;
  opacity: 0.5;
}

.fav-box_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fav-box_icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  fill: rgba(27, 27, 27, 0.5);
  margin-left: 20px;
  transition: 0.1s;
}

.fav-box.active .fav-box_icon {
  transform: rotate(-180deg);
  fill: #1B1B1B;
}

.fav-box_bottom {
  padding-left: 20px;
  display: none;
  margin-top: 20px;
}

.fav-box_text {
  position: relative;
  display: block;
  padding-left: 15px;
  color: rgba(27, 27, 27, 0.5);
  margin-bottom: 8px;
}
.fav-box_text:last-child {
  margin-bottom: 0px;
}
.fav-box_text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(27, 27, 27, 0.5);
}

@media (max-width: 1560px) {
  .fav-box {
    padding-left: 294px;
  }
}
@media (max-width: 1200px) {
  .fav-box {
    padding-left: 190px;
  }
}
@media (max-width: 800px) {
  .fav-title {
    width: 100%;
    margin-bottom: 40px;
  }
  .fav-box {
    padding: 20px 0;
  }
  .fav-box_icon {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 0;
  }
  .fav-box:before {
    position: static;
    font-size: 16px;
  }
  .fav-box_title {
    margin-top: 15px;
  }
  .fav-box_bottom {
    padding-left: 10px;
  }
}
@media (min-width: 1200px) {
  .fav-box:hover {
    border-bottom: 1px solid #1B1B1B;
  }
}
/*-fav*/
/*sin*/
.sin-wrap {
  position: relative;
  padding-bottom: 40px;
}

.sin-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: calc(100% + 40px);
  background: linear-gradient(180deg, #0B315D 0%, rgba(11, 49, 93, 0.1) 100%);
  z-index: -1;
}

.sin-fon {
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  z-index: -2;
}

.sin-top {
  height: 110px;
  border-left: 1px solid #F3F3F3;
  margin-left: 740px;
  padding-left: 20px;
}

.sin-title {
  width: 74.7%;
  margin-left: auto;
  margin-top: 20px;
}

.sin-botton {
  min-height: 222px;
  border-left: 1px solid #F3F3F3;
  margin-left: 740px;
  margin-top: 40px;
  padding-left: 20px;
}

.sin-botton_text {
  display: block;
  width: 360px;
}

@media (max-width: 1200px) {
  .sin-wrap:before {
    top: -50px;
    height: calc(100% + 50px);
  }
  .sin-fon {
    top: -50px;
    height: calc(100% + 50px);
  }
  .sin-top {
    height: 70px;
    margin-left: 0;
  }
  .sin-title {
    width: 100%;
    margin-left: auto;
  }
  .sin-botton {
    min-height: 189px;
    margin-left: 0;
  }
}
@media (max-width: 800px) {
  .sin-wrap:before {
    top: -30px;
    height: calc(100% + 30px);
  }
  .sin-fon {
    top: -30px;
    height: calc(100% + 30px);
  }
  .sin-title {
    margin-top: 15px;
  }
  .sin-botton {
    margin-top: 20px;
  }
  .sin-botton_text {
    width: 100%;
  }
  /*-sin*/
}
/*cot*/
.cot {
  background: #0B315D;
  padding-bottom: 0px;
  border-radius: 10px;
  margin-bottom: 80px;
}

.cot-top {
  width: 74.7%;
  margin-left: auto;
}

.cot-top_title {
  margin-top: 100px;
}

.cot-botton {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
}

.cot-boxs:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 4;
}

.cot-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
  border-bottom: 1px solid #23466D;
}

.cot-box:nth-child(1) {
  padding-top: 0px;
}

.cot-box a {
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  letter-spacing: -0.72px;
  transition: 0.1s;
}

.cot-box svg {
  width: 30px;
  height: 30px;
  fill: #FFF;
  margin-right: 20px;
}

.cot-box_text {
  display: block;
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-left: 10px;
}

.cot-map {
  height: 466px;
  width: 100%;
  margin-top: 166px;
}

@media (max-width: 1200px) {
  .cot-top {
    width: 100%;
    margin-left: auto;
  }
  .cot-botton {
    grid-template-columns: repeat(2, 1fr);
  }
  .cot-boxs:nth-child(2) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
@media (max-width: 800px) {
  .cot {
    margin-bottom: 50px;
  }
  .cot-botton {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 60px;
  }
  .cot-top_title {
    margin-top: 60px;
  }
  .cot-boxs {
    margin-top: 40px;
  }
  .cot-box {
    padding: 15px 0px;
    align-items: flex-end;
  }
  .cot-box svg {
    margin-right: 10px;
  }
  .cot-box a {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  .cot-box_text {
    font-size: 14px;
  }
  .cot-map {
    height: 400px;
    margin-top: 100px;
  }
}
@media (min-width: 1200px) {
  .cot-box a:hover {
    opacity: 0.5;
  }
  /*-cot*/
}
/*req*/
.req-title {
  width: 74.7%;
  margin-left: auto;
}

.req-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 60px;
}

.req-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  grid-column-start: 2;
  grid-column-end: 4;
}

.req-input {
  position: relative;
  display: block;
  width: 100%;
}

.req-error {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  color: #FF3E3E;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
  display: none;
}

.req-input_point {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  border-radius: 5px;
  border: 1px solid rgba(27, 27, 27, 0.7);
  color: #0B315D;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.req-input_point:focus {
  border: 1px solid #0B315D;
}

.req-input_point.false {
  border: 1px solid #FF3E3E;
}

.req-input_point.false + .req-error {
  display: block;
}

.req-check {
  display: flex;
  position: relative;
  width: 100%;
  cursor: pointer;
}

.req-check_point {
  position: absolute;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.req-check_point:checked + .req-check_box {
  background: #0B315D;
  border: 1px solid #0B315D;
}

.req-check_point:checked + .req-check_box svg {
  display: block;
}

.req-check_point.false + .req-check_box {
  border: 1px solid #FF3E3E;
}

.req-check_point.false + .req-check_box + .req-chek_text + .req-error {
  display: block;
}

.req-check_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(27, 27, 27, 0.7);
}
.req-check_box svg {
  display: none;
}

.req-chek_text {
  display: block;
  margin-left: 10px;
  color: rgba(27, 27, 27, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.42px;
}
.req-chek_text a {
  color: #0B315D;
  text-decoration: underline;
}

.req-btn {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 49px;
  border-radius: 5px;
  padding: 0 14px;
  cursor: pointer;
  overflow: hidden;
}
.req-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transform: translateY(0);
  width: 100%;
  height: 100%;
  background: #0B315D;
  overflow: hidden;
  transition: 0.2s;
}
.req-btn::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #0B315D;
}
.req-btn svg {
  fill: #FFF;
  transition: 0.2s;
}

.req-btn_point {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .req-title {
    width: 100%;
  }
  .req-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .req-wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
  }
  .req-form {
    grid-template-columns: repeat(1, 1fr);
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .req-btn {
    margin-top: 5px;
  }
  .req-check {
    grid-row-start: 4;
  }
}
@media (min-width: 1200px) {
  .req-btn:hover {
    color: #FFFFFF;
  }
  .req-btn:hover:before {
    transform: translateY(-100%);
  }
  .req-btn:hover svg {
    fill: #0B315D;
  }
  .req-btn:hover .req-btn_point {
    color: #0B315D;
  }
}
/*-req*/
/*com*/
.com {
  background: #F3F3F3;
  padding-bottom: 0;
}

.com-top {
  position: relative;
  padding-bottom: 80px;
  z-index: 1;
}

.com-top:before {
  content: "";
  position: absolute;
  left: 0;
  top: -50px;
  width: 100%;
  height: calc(100% + 50px);
  background: #0B315D;
  border-radius: 0px 0px 10px 10px;
  z-index: -2;
}

.com-wrap {
  width: 74.7%;
  margin-left: auto;
}

.com-title {
  margin-top: 100px;
}

.com-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.com-bottom {
  padding: 80px 0;
}

.com-name {
  width: 74.7%;
  margin-left: auto;
}

.com-boxs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 60px;
}

.com-text {
  grid-column-start: 2;
  grid-column-end: 4;
}

.com-content {
  position: relative;
  max-height: 320px;
  overflow: hidden;
}
.com-content::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(243, 243, 243, 0) 0%, rgb(243, 243, 243) 100%);
}

.com-content.active {
  max-height: fit-content;
}
.com-content.active::after {
  display: none;
}

.com-btn {
  color: #0B315D;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid #0B315D;
  padding-bottom: 4px;
  margin-top: 20px;
  transition: 0.2s;
}
.com-btn span:nth-child(2) {
  display: none;
}

.com-btn.active span:nth-child(1) {
  display: none;
}
.com-btn.active span:nth-child(2) {
  display: block;
}

@media (max-width: 1200px) {
  .com-wrap {
    width: 100%;
  }
  .com-name {
    width: 100%;
  }
  .com-text {
    grid-column-end: 5;
  }
}
@media (max-width: 800px) {
  .com-top {
    padding-bottom: 50px;
    border-radius: 0px 0px 8px 8px;
  }
  .com-title {
    margin-top: 60px;
  }
  .com-bottom {
    padding: 50px 0;
  }
  .com-boxs {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
  }
  .com-text {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
@media (min-width: 1200px) {
  .com-btn:hover {
    color: #5C5C5C;
    border-bottom: 1px solid #5C5C5C;
  }
}
/*-com*/
/*dir*/
.dir-title {
  width: 74.7%;
  margin-left: auto;
}

.dir-boxs {
  list-style: none;
  counter-reset: num;
  border-top: 1px solid #DDD;
  margin-top: 60px;
}

.dir-box {
  display: block;
  position: relative;
  border-bottom: 1px solid #DDD;
  padding: 20px 0;
  font-size: 24px;
  padding-left: 378px;
}

.dir-box:before {
  content: "(" counter(num) ")";
  counter-increment: num;
  position: absolute;
  left: 0;
  top: 20px;
  color: #1B1B1B;
  font-size: 18px;
  opacity: 0.5;
}

.dir-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 60px;
}

.dir-item_text {
  color: rgba(27, 27, 27, 0.7);
  font-size: 18px;
  line-height: 130%;
}

@media (max-width: 1560px) {
  .dir-box {
    padding-left: 294px;
  }
}
@media (max-width: 1200px) {
  .dir-box {
    padding-left: 190px;
  }
  .dir-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 800px) {
  .dir-box {
    padding: 15px 0;
    font-size: 20px;
  }
  .dir-box:before {
    display: block;
    position: static;
    margin-bottom: 10px;
  }
  .dir-title {
    width: 100%;
  }
  .dir-boxs {
    margin-top: 40px;
  }
  .dir-items {
    grid-gap: 15px;
    margin-top: 40px;
  }
  .dir-sub {
    margin-bottom: 5px;
  }
}
/*-dir*/
/*unc*/
.unc-top {
  width: 74.7%;
  margin-left: auto;
}

.unc-img {
  width: 700px;
  height: 200px;
  object-fit: cover;
  margin-top: 60px;
  border-radius: 10px;
}

.unc-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  align-items: flex-start;
  margin-top: 60px;
}

.unc-left {
  position: sticky;
  top: 90px;
}

.unc-list {
  display: grid;
  grid-gap: 15px;
}

.unc-list li {
  position: relative;
  flex-wrap: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 20px;
  transition: 0.2s;
}

.unc-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 10px;
  background: rgba(27, 27, 27, 0.5);
  margin-top: 5px;
}

.unc-list li.active a {
  color: #1B1B1B;
}

.unc-list li.active:before {
  content: "";
  background: #1B1B1B;
}

.unc-list a {
  color: rgba(27, 27, 27, 0.5);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.unc-mob {
  display: none;
}

.unc-center {
  grid-column-start: 2;
  grid-column-end: 4;
}

.unc-content {
  margin-top: 60px;
}

.unc-right {
  position: sticky;
  top: 90px;
}

.unc-date {
  display: block;
  color: #1B1B1B;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.5;
}

.unc-name {
  display: block;
  color: #1B1B1B;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.72px;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .unc-top {
    width: 100%;
  }
  .unc-bottom {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
  }
  .unc-center {
    order: 4;
  }
  .unc-content {
    margin-top: 40px;
  }
  .unc-right {
    position: static;
    order: 2;
    margin-top: 20px;
  }
  .unc-left {
    position: static;
    order: 3;
    margin-top: 40px;
  }
  .unc-mob {
    order: 1;
    display: block;
  }
  .unc-title {
    display: none;
  }
}
@media (max-width: 800px) {
  .unc-img {
    margin-top: 40px;
  }
  .unc-bottom {
    margin-top: 40px;
  }
  .unc-date {
    font-size: 16px;
  }
  .unc-name {
    font-size: 18px;
    margin-top: 20px;
  }
  .unc-list a {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .unc-list a:hover {
    color: #1B1B1B;
  }
}
/*-unc*/
/*mod*/
.mod {
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.mod.active {
  display: block;
}

.mod-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 49, 93, 0.3);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.mod-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mod-box {
  position: relative;
  z-index: 1;
  width: 740px;
  border-radius: 10px;
  background: #FFF;
  padding: 60px;
}

.mod-close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.mod-close svg {
  fill: #BFBFBF;
  transition: 0.1s;
}

.mod-title {
  margin-top: 40px;
}

.mod-descr {
  display: block;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .mod-close {
    right: 15px;
    top: 15px;
  }
  .mod-box {
    width: calc(100% - 40px);
    padding: 30px;
  }
  .mod-icon {
    width: 56px;
    height: 56px;
  }
  .mod-title {
    margin-top: 20px;
  }
  .mod-descr {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .mod-close:hover svg {
    fill: #1B1B1B;
  }
}
/*-mod*/
/*pag*/
.pag-wrap {
  width: 740px;
  margin: auto;
}

.pag-title {
  margin-top: 40px;
}

.pag-content {
  margin-top: 60px;
}

@media (max-width: 1560px) {
  .pag-wrap {
    width: 582px;
  }
}
@media (max-width: 1200px) {
  .pag-wrap {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .pag-content {
    margin-top: 40px;
  }
}
/*-pag*/
/*mis*/
.mis {
  background: #0B315D;
  margin-bottom: -80px;
}

.mis-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
}

.mis-bg {
  position: absolute;
  right: 0;
  top: 115px;
  z-index: 1;
}

.mis-box {
  position: relative;
  z-index: 2;
  width: 74.7%;
  margin-left: auto;
}

.mis-descr {
  display: block;
  width: 360px;
  margin-top: 60px;
}

.mis-btn {
  width: 360px;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .mis-bg {
    top: 86px;
  }
  .mis-box {
    width: 100%;
  }
  .mis-descr {
    width: 100%;
    margin-top: 40px;
  }
  .mis-btn {
    width: 100%;
    margin-top: 20px;
  }
}
/*-mis*/
/*coc*/
.coc {
  position: fixed;
  z-index: 6;
  bottom: 50px;
  right: 50px;
  width: 100%;
  max-width: 730px;
  border-radius: 8px;
  background: #FFF;
  padding: 10px;
}

.coc.active {
  display: none;
}

.coc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coc-text {
  display: block;
  color: rgba(27, 27, 27, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.6px;
  margin-right: 20px;
}
.coc-text a {
  color: rgba(11, 49, 93, 0.7);
  text-decoration: underline;
  transition: 0.1s;
}

@media (max-width: 800px) {
  .coc {
    padding: 20px;
    bottom: 0;
    right: 0;
    max-width: 100%;
  }
  .coc-text {
    font-size: 16px;
    letter-spacing: -0.48px;
    margin-right: 15px;
  }
  .coc-btn {
    min-width: fit-content;
    padding: 12px 20px;
  }
}
@media (min-width: 1200px) {
  .coc-text a:hover {
    color: #1B1B1B;
  }
}
/*-coc*/