* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, sans-serif;
}

html,
body {
  overflow-x: hidden;
  background: #f5f5f5;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #CDDCFF;
}

main .wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

main p,
main span,
main h1,
main h2,
main h3,
main h4,
main h5,
main figcaption,
main li {
  color: #fff;
  font-family: Verdana, sans-serif;
}

main a {
  color: #fff;
  font-family: Verdana, sans-serif;
}

main a:hover {
  text-decoration: underline;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main ol,
main ul,
main figure,
main .general-table,
main .faq-container {
  margin: 0 auto;
  width: 100%;
}

main h2,
main h3,
main h4,
main h5 {
  width: 100%;
  background: linear-gradient(to right, #1E3CB4, #152B81, #1E3CB4);
}

main h1 {
  padding: 0;
  text-align: center;
}

main p {
  color: #1A1A1F;
  margin: 15px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

main li {
  color: #1A1A1F;
}

main h1 {
  background: linear-gradient(to right, #1E3CB4, #152B81, #1E3CB4);
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

main h2 {
  background: linear-gradient(to right, #1E3CB4, #152B81, #1E3CB4);
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

main h3 {
  background: #CDDCFF;
  color: #1C39AA;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

table,
tr,
td,
tbody,
thead {
  font-family: Verdana, sans-serif;
}

input,
button {
  font-family: Verdana, sans-serif;
  border: none;
  box-shadow: none;
  transition: 0.3s;
}

input {
  outline: none;
}

p,
span,
li,
a {
  font-size: 16px;
  line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  padding: 15px 0;
  color: #1e1e24;
}

h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.32px;
}

h3 {
  font-size: 18px;
  line-height: 20px;
}

h4 {
  font-size: 16px;
  line-height: 18px;
}

h5,
h6 {
  font-size: 14px;
  line-height: 16px;
}

p,
span,
li,
h1,
h2,
h3,
a,
i,
label,
input,
button,
tr,
figcaption {
  color: #1e1e24;
}

td,
b {
  color: #fff;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

i {
  font-style: normal;
  transition: 0.3s;
}

.wrapper {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.content {
  position: relative;
  flex-grow: 1;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 1400px;
  background-color: inherit;
  padding: 0 30px;
  padding-top: 104px;
}

.content .content-block {
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0);
}

.content .general-ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  counter-reset: counter-ol;
}


.content .general-ol li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 10px;
  width: 100%;
  background-color: #CDDCFF;
  min-height: 45px;
  padding-top: 5px;
  counter-increment: counter-ol;
  border-radius: 10px;
}

.content .general-ol li::before {
  position: absolute;
  content: counter(counter-ol) "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #fff;
  background: radial-gradient(circle, #1A5FFF, #1D3AAE);
  top: 10px;
  left: 10px;
  border-radius: 30%;
}

.content .general-ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.content .general-ul li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 45px;
  width: 100%;
  border-radius: 10px;
  background-color: #CDDCFF;
  display: flex;
  align-items: flex-start;
  padding-top: 10px;
}

.content .general-ul li::before {
  content: no-open-quote;
  background: url(/li-item.png) no-repeat;
  position: absolute;
  width: 25px;
  height: 25px;
  left: 10px;
  top: 10px;
  background-size: cover;
}

@media(max-width: 690px) {
  .content .general-ul, .content .general-ol {
    grid-template-columns: 1fr;
  }

  .content .general-ol li  {
    padding-top: 10px;
}

}

.contentMain a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 15px;
}
 
.general-table-wrapper {
  padding: 20px;
  background-color: #1C39AA;
  border-radius: 10px;
  overflow-x: auto;
}

.general-table {
  margin-bottom: 20px;
  border-collapse: separate;
  border-spacing: 15px;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  border-radius: 10px;

}

.general-table thead {
  background: #CDDCFF;
}

.general-table tr th {
  text-align: left;
  padding: 10px;
  text-align: center;
  color: #1C39AA;
  border: 1px solid rgba(251, 251, 251, 0.2);
  border-radius: 10px;
}

.general-table .general-tbody .general-tr {
  word-wrap: anywhere;
}

.general-table .general-tbody .general-td {
  font-size: 16px;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: 400;
}

.general-table-wrapper .general-tr .general-td {
  font-weight: 400;
  background: #1C39AA;
  border: 0.5px solid #fff;
  border-radius: 10px;
}

.faq-item {
  background: #18308F;
  border: none;
  border-radius: 12px;
  padding: 24px 36px;
  position: relative;
  margin: 0 auto 20px;
  transition: 0.4s;
}

.faq-question {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  position: relative;
  padding-top: 0;
  padding-right: 42px;
  margin: 0;
}

.faq-answer {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  height: 0;
  overflow: hidden;
  position: relative;
  opacity: 0;
  z-index: -1;
  margin: 0;
}

.icon {
  height: 20px;
  position: absolute;
  width: 20px;
  right: 16px;
  top: 23px;
  z-index: 2;
  background: #CDDCFF;
  padding: 15px;
  border-radius: 50%;
}

.icon:before,
.icon:after {
  background: #18308F;
  content: no-open-quote;
  height: 3px;
  right: 6px;
  top: 14px;
  width: 18px;
  transition: transform 0.4s;
  position: absolute;
}

.toggle {
  margin: 0;
  cursor: pointer;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
}

.toggle:not(:checked) ~ .icon:before {
  transform: rotate(180deg);
}

.toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
  padding-right: 20px;
  padding-top: 12px;
}

.toggle:not(:checked) ~ .icon:after {
  transform: rotate(90deg);
}

.toggle:checked ~ .icon:before,
.toggle:checked ~ .icon:after {
  background: #18308F;
}

.button-block {
  padding: 24px;
  text-align: center;
  margin: 20px 0;
  background: linear-gradient(to right, #1E3CB4, #152B81, #1E3CB4);
  border-radius: 10px;
}

.button-block button {
  padding: 18px 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50px;
  background: #FC7431;
  box-shadow: 0px 4px 12px 0px rgba(0, 26, 255, 0.26);
}

.button-block button:hover {
  background: #b5511e;
  box-shadow: 0px 0px 18px 0px #b5501ed1;
}

/* Header */
.header {
  background-color: #193296;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.header .headerInner .logo .btn-header-logo img {
  width: 220px;
  height: 36px;
}

.header .headerInner .header__top {
  display: flex;
  align-items: center;
}

.header .headerInner .header__top .logo {
  display: none;
}

.header .headerInner .logo a {
  display: block;
}

.header .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  max-height: 52px;
}

.header .menu .links {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.header .menu a {
  margin-right: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  padding: 10px;
}

.header .menu a:hover {
  color: #53be2e;
}

.buttons {
  display: flex;
  align-items: center;
}

.buttons .logButton {
  border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  padding: 15px 24px;
  text-transform: uppercase;
  background: #CDDCFF;
  transition: all 0.1s ease-in-out;
  color: #1B36A1;
}

.buttons .logButton:hover {
  background: #1D92CD;
}

.buttons .regButton {
  display: flex;
  justify-content: center;
  position: relative;
  margin-right: 12px;
  background: #FC7431;
  border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  padding: 15px 24px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.1s ease-in-out;
}

.buttons .regButton img {
  padding-right: 7px;
}

.buttons .regButton:hover,
.buttons .regButton:active {
  background: #FA4D00;
}

/* Footer */
.footer {
  margin-top: auto;
  background: #181970;
}

.footer .footer-menu {
  width: calc(100% - 40px);
  padding-top: 40px;
  margin: 0 auto;
}

.footer .footerInner {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.footer .footerInner .footer-menu a {
  margin: 0 15px 0px 15px;
  font-size:20px;
  text-decoration: underline;
}


.footer .copy {
  padding-bottom: 5px;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footerInner .copyright {
  display: block;
  color: #fff;
  font-size: 18px;
  padding-bottom: 10px;
}

.footer .scrollToTop {
  background: #ff6519;
  box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.1);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 60px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 20%;
  z-index: 5;
}

.footer .scrollToTop.pam_content {
  opacity: 1;
}

.footer .menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid #fff;
}

.footer .menu a {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.footer .menu a:hover {
  text-decoration: none;
  color: #fa7135;
}



/* Mobile Menu */
.burger {
  display: none;
  position: relative;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: 0%;
  display: block;
  z-index: 5;
  background: #193296;
  width: 100%;
  max-width: 100%;
  /* min-height: 100vh; */
  padding: 30px 20px;
  transition: right 0.8s;
  border-radius: 10px;
}

.mobileMenu .buttons {
  display: block;
  margin-top: 32px;
}

.mobileMenu .buttons button {
  display: block;
  margin: 0 auto 12px;
  width: 50%;
}

.mobileMenu[hidden] {
  right: -200%;
}

.mobileMenu .mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.mobileMenu .mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.mobileMenu .mobileMenuLinks a {
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  line-height: 10px;
  text-transform: uppercase;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: block;
}

.overlay[hidden] {
  display: none;
}


.headerInner .links{
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #2844B2;
  padding: 10px 40px;
  border-radius: 10px;
  text-transform: uppercase;
}


.mobileMenu .mobileNav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background-color: #2844B2;
  padding: 20px 50px;
  border-radius: 10px;
  text-transform: uppercase;
}
.mobileMenu .mobileNav a{
  color:#fff;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
}


.mobileMenu .mobileMenuTop{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 28px;         
  margin-bottom: 25px;
}

.mobileMenu .mobileMenuLogo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.mobileMenu .mobileMenuLogo img{
  height: 28px; 
  width: auto;
}

.mobileMenu .close{
  position: relative;
  z-index: 2; 
  display: flex;
  align-items: center;
}
/* Banner */
.banner_wrap {
  display: flex;
  background-image: url(/banner-bg.png);
  align-items: center;
  border-radius: 28px;
  margin-bottom: 24px;
  height: 373px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.banner_wrap .banner_left {
  max-width: 926px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner_wrap .banner_left .banner-info {
  display: flex;
  flex-direction: column;
  color: #1A57AE;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  border: 0.5px solid #1100A7;
  box-shadow: 0 4px 4px 0 #0500A0;
  padding: 20px 30px;
}

.banner_wrap .banner_left .banner-info h1 {
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.banner_wrap .banner_left .banner-info p {
  font-size: 16px;
  font-weight: 400;
  color: #003581;
  margin: 0;
  padding: 0;
  font-family: 'Verdana', sans-serif;
  line-height: 120%;
}

.banner_wrap .banner_left button {
  background: linear-gradient(#F55300, #FF8347);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 15px 32px;
  box-shadow: Inset 0px -6px 8px 1px #fff;
}

.banner_wrap .banner_right img {
  position: absolute;
  max-width: unset;
  border-radius: 0 28px 0 0;
  right: -10px;
  top: 20px;
}

/* 404 Page */
.content404Page.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-width: 100%;
  width: 100%;
  background: #044588;
}

.content404Page.wrapper .content404 {
  display: flex;
  flex-direction: column;
  width: 320px;
}

.content404Page.wrapper .content404 img {
  display: block;
  margin: 0 auto;
}

.content404Page.wrapper .content404 h1 {
  color: #fff;
  text-align: center;
}

.content404Page.wrapper .content404 button {
  display: inline-block;
  background: linear-gradient(270deg, #FF691C 0%, #FF5300 48.9%, #FF691C 100%);
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.content404Page.wrapper .content404 button:hover {
  background: #92c637;
}

/* Border Wrapper */
.border-wrapper {
  border-radius: 10px;
  border: 0.5px solid #1100A7;
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 20px;
}

.border-wrapper:last-child {
  margin-bottom: 0;
}

/* Contacts */
.contacts {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.contacts .contact-item {
  background-color: #CDDCFF;
  border-radius: 10px;
  padding: 5px 20px;
  width: 100%;
}

.contacts .contact-item p {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Verdana', sans-serif;
  color: #1A1A1F;
  margin: 0;
}

@media(max-width: 690px) {

  .contacts {
    flex-direction: column;
  }

}

/* Promo Block */
.promo-block {
  display: grid;
  grid-template-columns: 1fr 457px;
  gap: 15px;
  margin-block: 20px;
}

.promo-block .text-promo {
  background-color: #1C39AA;
  padding: 20px;
}

.promo-block .text-promo p {
  color: #fff;
  font-size: 16px;
  font-family: 'Verdana', sans-serif;
  font-weight: 400;
  margin: 0;
}

.promo-block .text-promo,
.promo-block .image-promo img {
  border-radius: 10px;
  width: 100%;
}


@media screen and (max-width: 1420px) {
  .content {
    padding: 0;
    width: calc(100% - 40px);
  }

  main .wrapper {
    width: calc(100% - 40px);
  }

  .footer-block-btn {
    display: none;
  }

  .banner_wrap .banner_left h1 {
    font-size: 23px;
    margin-bottom: 14px;
  }

}

.footer-block-btn {
  z-index: 4;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  padding-right: 10px;
  padding-left: 10px;
  background: linear-gradient(180deg, #082E53 0%, #063564 50.4%, #044588 100%);
  display: none;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  main .wrapper {
    padding: 0 10px;
  }

  .border-wrapper {
    padding: 16px;
  }

  h1 {
    font-size: 26px;
    line-height: 30px;
  }

  h2 {
    font-size: 22px;
    line-height: 32px;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
  }

  h4 {
    font-size: 18px;
    line-height: 28px;
  }

  h5,
  h6 {
    font-size: 16px;
    line-height: 26px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 10px 0;
  }

  .content {
    padding-top: 80px;
  }

  .content .contentMain {
    width: 100%;
  }

  .content .general-ol li,
  .content .general-ul li {
    width: 100%;
    padding-right: 10px;
  }

  .footer .menu,
  .footer hr {
    display: none;
  }

  .footer .footerInner {
    padding: 0;
  }


  .header .menu {
    display: none;
  }

  .header .headerInner .header__top {
    width: 100%;
  }

  .header .headerInner .header__top .logo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .buttons .regButton {
    margin-right: 12px;
  }

  .buttons .regButton,
  .buttons .logButton {
    font-size: 16px;
  }

  main h1 {
    margin-top: 0;
  }

  .promo-block {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1100px) {
  .banner_wrap .banner_left {
    padding: 24px;
  }

  main h2 {
    padding: 5px 10px;
  }

  .banner_wrap .banner_right img {
    right: -150px;
  }
  .headerInner .links {
    display: none;
  }

  .burger{
    display: flex;
  }

  .headerInner .buttons{
    margin-left: auto;         
    display: flex;
    align-items: center;
    gap: 10px;                
  }

  .headerInner .burger{
    margin-left: 10px;       
  }
  .buttons .regButton {
    margin-right: 0px;
  }
}

@media screen and (max-width: 1000px) {
  .general-table .general-tbody .general-td {
    font-size: 14px;
    line-height: 100%;
  }
}

@media screen and (max-width: 910px) {
  .banner_wrap .banner_right img {
    right: -210px;
  }
}

@media screen and (max-width: 850px) {
  .banner_wrap .banner_left {
    width: 100%;
  }

  .banner_wrap .banner_right {
    display: none;
  }

  .banner_wrap .banner_left button {
    display: block;
    margin: 0 auto;
  }

  .banner_wrap {
    height: auto;
  }

  .footer-block-btn {
    display: none;
    
  }

  .footer-block-btn .buttons {
    gap: 10px;
  }

}

@media screen and (max-width: 768px) {
  .footer .footer-menu {
    padding: 30px 30px 0 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px
  }

  .footer .footerInner .footer-menu a {
    font-size: 18px;
    margin: 0 5px 0px 5px;
  }

  .footer .copy {
    padding-top: 30px;
  }
}

@media screen and (max-width: 720px) {
  main .wrapper {
    padding: 0;
    min-width: unset;
  }

  .header .headerInner .logo .btn-header-logo img {
    width: 146px;
    height: 25px;
  }

  .buttons .regButton, .buttons .logButton {
    font-size: 14px;
    padding: 6px 12px;
    margin-right: 0;
  }


  .content .general-ol li {
    font-size: 14px;
    max-height: 99px;
    line-height: 100%;
  }

  .header{
    min-height: 60px;
  }
}

@media (max-width: 500px) {
  .footer-block-btn .buttons .logButton,
  .footer-block-btn .buttons .regButton {
    font-size: 12px;
    line-height: 16px;
  }

  .header .headerInner .logo .btn-header-logo img {
    width: 167px;
    height: 27px;
  }

  .header {
    min-height: 60px;
  }
}

@media screen and (max-width: 400px) {
  .general-table {
    overflow-x: auto;
    max-width: 100%;
  }
}


.headerInner{
  display: flex;
  align-items: center;
  flex-wrap: wrap;    
}

@media (max-width: 500px){
  .headerInner .buttons{
    width: 100%;           
    order: 10;              
    display: flex;
    justify-content: center; 
    gap: 10px;
    padding: 10px 0px;
  }
  .header .headerInner {
    padding: 10px 0px 0px 0px;
  }

  .headerInner .buttons button{
    flex: 1;
    max-width: 180px;     
  }
}